]> git.eshelyaron.com Git - emacs.git/commitdiff
(hi-green): Fix face spec.
authorKim F. Storm <storm@cua.dk>
Fri, 8 Apr 2005 22:03:42 +0000 (22:03 +0000)
committerKim F. Storm <storm@cua.dk>
Fri, 8 Apr 2005 22:03:42 +0000 (22:03 +0000)
lisp/ChangeLog
lisp/hi-lock.el

index 223f95a2446a7c1e1a177328e5a284c5d5386003..f4fbfed00d28a577d1a3770b306d8701ff7626d3 100644 (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>
 
index 137d3cf20da853605f373ab9b6b1035d532f98fa..a924c89ba376586cd1241c0765c464d5ef584470 100644 (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)