Skip to content

Commit

Permalink
[ccl] Change visibility of foreground-mode
Browse files Browse the repository at this point in the history
  • Loading branch information
gorozhin committed Jul 1, 2023
1 parent 6867b44 commit e28be29
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions src/style.lisp
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,12 @@
(defmethod equal-mode ((x background-mode) (y background-mode))
t)
(define-constant +foreground-mode+ (make-instance 'foreground-mode)
:test #'equal-mode)
:test #'equal-mode)
(define-constant +background-mode+ (make-instance 'background-mode)
:test #'equal-mode))
:test #'equal-mode)
(defmethod make-load-form ((m color-mode) &optional env)
(declare (ignore env))
(make-load-form-saving-slots m)))

(defclass style ()
((bold :type boolean
Expand Down

0 comments on commit e28be29

Please sign in to comment.