diff options
| -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) |