# HG changeset patch # User Chong Yidong # Date 1216850088 0 # Node ID a34136e0b9612954d4ce67bcc8c4287e5d594a35 # Parent 54e09977a79705be2557cedf86d7e7562bde113c (flymake-errline, flymake-warnline): Use more suitable colors on dark displays. diff -r 54e09977a797 -r a34136e0b961 lisp/progmodes/flymake.el --- a/lisp/progmodes/flymake.el Wed Jul 23 21:54:39 2008 +0000 +++ b/lisp/progmodes/flymake.el Wed Jul 23 21:54:48 2008 +0000 @@ -787,15 +787,15 @@ has-flymake-overlays)) (defface flymake-errline - ;;+ '((((class color)) (:foreground "OrangeRed" :bold t :underline t)) - ;;+ '((((class color)) (:underline "OrangeRed")) - '((((class color)) (:background "LightPink")) + '((((background dark)) (:background "Firebrick4")) + (((background light)) (:background "LightPink")) (t (:bold t))) "Face used for marking error lines." :group 'flymake) (defface flymake-warnline - '((((class color)) (:background "LightBlue2")) + '((((background dark)) (:background "DarkBlue")) + (((background light)) (:background "LightBlue2")) (t (:bold t))) "Face used for marking warning lines." :group 'flymake)