--- Begin Message ---
Subject: |
flymake faces hard to read on dark backgrounds |
Date: |
Sun, 15 Jun 2008 23:00:15 +0200 |
User-agent: |
Gnus/5.11 (Gnus v5.11) Emacs/22.2.50 (darwin) |
Hello,
flymake-errline and flymake-warnline faces are very hard to read on dark
backgrounds.
regards,
Nikolaj Schumacher
diff -du
/Users/nik/emacs/var/backup/\!Applications\!Emacs.app\!Contents\!Resources\!share\!emacs\!22.2.50\!lisp\!progmodes\!flymake.el.\~1\~
/Applications/Emacs.app/Contents/Resources/share/emacs/22.2.50/lisp/progmodes/flymake.el
--- lisp/progmodes/flymake.el 2008-06-12 23:22:42.000000000 +0200
+++ lisp/progmodes/flymake.el 2008-06-15 22:28:02.000000000 +0200
@@ -799,15 +799,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)
Diff finished. Sun Jun 15 22:28:11 2008
--- End Message ---