From: Kim F. Storm Date: Fri, 8 Apr 2005 22:03:42 +0000 (+0000) Subject: (hi-green): Fix face spec. X-Git-Tag: ttn-vms-21-2-B4~1130 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=e0d815a220f503a57b6f0132307563c96ec8c5c7;p=emacs.git (hi-green): Fix face spec. --- 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 * comint.el (comint-highlight-prompt): Fix face spec. + * hi-lock.el (hi-green): Likewise. 2005-04-08 Dan Nicolaescu 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)