diff options
author | Kim F. Storm <storm@cua.dk> | 2005-04-08 22:03:42 +0000 |
---|---|---|
committer | Kim F. Storm <storm@cua.dk> | 2005-04-08 22:03:42 +0000 |
commit | e0d815a220f503a57b6f0132307563c96ec8c5c7 (patch) | |
tree | 6602361b42afbc46cfebeb5d8b572023c11e1b6f | |
parent | 3306ed3bd022e857f7f7f45041bd24b960f5b916 (diff) | |
download | emacs-e0d815a220f503a57b6f0132307563c96ec8c5c7.tar.gz |
(hi-green): Fix face spec.
-rw-r--r-- | lisp/ChangeLog | 1 | ||||
-rw-r--r-- | lisp/hi-lock.el | 6 |
2 files changed, 4 insertions, 3 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 223f95a2446..f4fbfed00d2 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,6 +1,7 @@ 2005-04-08 Kim F. Storm <storm@cua.dk> * comint.el (comint-highlight-prompt): Fix face spec. + * hi-lock.el (hi-green): Likewise. 2005-04-08 Dan Nicolaescu <dann@ics.uci.edu> diff --git a/lisp/hi-lock.el b/lisp/hi-lock.el index 137d3cf20da..a924c89ba37 100644 --- a/lisp/hi-lock.el +++ b/lisp/hi-lock.el @@ -119,7 +119,7 @@ calls." :group 'hi-lock-interactive-text-highlighting) (defface hi-yellow - '((((min-colors 88) (background dark)) + '((((min-colors 88) (background dark)) (:background "yellow1" :foreground "black")) (((background dark)) (:background "yellow" :foreground "black")) (((min-colors 88)) (:background "yellow1")) @@ -134,10 +134,10 @@ calls." :group 'hi-lock-faces) (defface hi-green - '((((min-colors 88) (background dark)) + '((((min-colors 88) (background dark)) (:background "green1" :foreground "black")) (((background dark)) (:background "green" :foreground "black")) - ((min-colors 88) (:background "green1")) + (((min-colors 88)) (:background "green1")) (t (:background "green"))) "Face for hi-lock mode." :group 'hi-lock-faces) |