diff options
| author | Chong Yidong | 2008-07-23 21:54:48 +0000 |
|---|---|---|
| committer | Chong Yidong | 2008-07-23 21:54:48 +0000 |
| commit | 0880f4fcb17d77cff1f7e839467fa0f0c96e847f (patch) | |
| tree | a0dcca999e4241b14f42f7a0ad4c0dabd254bd5b | |
| parent | 3689dfeeb4a2d8bb4c15b11be0f21c4c122e40a5 (diff) | |
| download | emacs-0880f4fcb17d77cff1f7e839467fa0f0c96e847f.tar.gz emacs-0880f4fcb17d77cff1f7e839467fa0f0c96e847f.zip | |
(flymake-errline, flymake-warnline): Use more suitable colors on dark
displays.
| -rw-r--r-- | lisp/progmodes/flymake.el | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/lisp/progmodes/flymake.el b/lisp/progmodes/flymake.el index b6e71b0a5d6..02a73bd4de6 100644 --- a/lisp/progmodes/flymake.el +++ b/lisp/progmodes/flymake.el | |||
| @@ -787,15 +787,15 @@ Return t if it has at least one flymake overlay, nil if no overlay." | |||
| 787 | has-flymake-overlays)) | 787 | has-flymake-overlays)) |
| 788 | 788 | ||
| 789 | (defface flymake-errline | 789 | (defface flymake-errline |
| 790 | ;;+ '((((class color)) (:foreground "OrangeRed" :bold t :underline t)) | 790 | '((((background dark)) (:background "Firebrick4")) |
| 791 | ;;+ '((((class color)) (:underline "OrangeRed")) | 791 | (((background light)) (:background "LightPink")) |
| 792 | '((((class color)) (:background "LightPink")) | ||
| 793 | (t (:bold t))) | 792 | (t (:bold t))) |
| 794 | "Face used for marking error lines." | 793 | "Face used for marking error lines." |
| 795 | :group 'flymake) | 794 | :group 'flymake) |
| 796 | 795 | ||
| 797 | (defface flymake-warnline | 796 | (defface flymake-warnline |
| 798 | '((((class color)) (:background "LightBlue2")) | 797 | '((((background dark)) (:background "DarkBlue")) |
| 798 | (((background light)) (:background "LightBlue2")) | ||
| 799 | (t (:bold t))) | 799 | (t (:bold t))) |
| 800 | "Face used for marking warning lines." | 800 | "Face used for marking warning lines." |
| 801 | :group 'flymake) | 801 | :group 'flymake) |