(hi-green): Fix face spec.

This commit is contained in:
Kim F. Storm 2005-04-08 22:03:42 +00:00
parent 3306ed3bd0
commit e0d815a220
2 changed files with 4 additions and 3 deletions

View file

@ -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>

View file

@ -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)