1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2024-11-27 07:37:33 +00:00

Add terminal class check to faces in last change.

This commit is contained in:
Chong Yidong 2008-07-23 22:03:40 +00:00
parent 0880f4fcb1
commit 928b4203c1

View File

@ -787,15 +787,15 @@ Return t if it has at least one flymake overlay, nil if no overlay."
has-flymake-overlays))
(defface flymake-errline
'((((background dark)) (:background "Firebrick4"))
(((background light)) (:background "LightPink"))
'((((class color) (background dark)) (:background "Firebrick4"))
(((class color) (background light)) (:background "LightPink"))
(t (:bold t)))
"Face used for marking error lines."
:group 'flymake)
(defface flymake-warnline
'((((background dark)) (:background "DarkBlue"))
(((background light)) (:background "LightBlue2"))
'((((class color) (background dark)) (:background "DarkBlue"))
(((class color) (background light)) (:background "LightBlue2"))
(t (:bold t)))
"Face used for marking warning lines."
:group 'flymake)