summaryrefslogtreecommitdiff
path: root/lisp/hi-lock.el
diff options
context:
space:
mode:
authorKim F. Storm <storm@cua.dk>2005-04-08 22:03:42 +0000
committerKim F. Storm <storm@cua.dk>2005-04-08 22:03:42 +0000
commite0d815a220f503a57b6f0132307563c96ec8c5c7 (patch)
tree6602361b42afbc46cfebeb5d8b572023c11e1b6f /lisp/hi-lock.el
parent3306ed3bd022e857f7f7f45041bd24b960f5b916 (diff)
downloademacs-e0d815a220f503a57b6f0132307563c96ec8c5c7.tar.gz
(hi-green): Fix face spec.
Diffstat (limited to 'lisp/hi-lock.el')
-rw-r--r--lisp/hi-lock.el6
1 files changed, 3 insertions, 3 deletions
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)