# HG changeset patch # User Kim F. Storm # Date 1112997788 0 # Node ID 499e1a6b0822168d3abc7b5467958b33ace259a7 # Parent cf9ed6277047969214b633f6bc43d18b0dccd42d (hi-green): Fix face spec. diff -r cf9ed6277047 -r 499e1a6b0822 lisp/hi-lock.el --- a/lisp/hi-lock.el Fri Apr 08 21:59:26 2005 +0000 +++ b/lisp/hi-lock.el Fri Apr 08 22:03:08 2005 +0000 @@ -119,7 +119,7 @@ :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 @@ :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)