# HG changeset patch # User Chong Yidong # Date 1216850620 0 # Node ID bf970fafde221f2807456eee10e953f24c5bdedc # Parent a34136e0b9612954d4ce67bcc8c4287e5d594a35 Add terminal class check to faces in last change. diff -r a34136e0b961 -r bf970fafde22 lisp/progmodes/flymake.el --- a/lisp/progmodes/flymake.el Wed Jul 23 21:54:48 2008 +0000 +++ b/lisp/progmodes/flymake.el Wed Jul 23 22:03:40 2008 +0000 @@ -787,15 +787,15 @@ 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)