diff options
author | Juri Linkov <juri@jurta.org> | 2011-08-18 14:36:19 +0300 |
---|---|---|
committer | Juri Linkov <juri@jurta.org> | 2011-08-18 14:36:19 +0300 |
commit | bc987f8b80cbab4d8319d05a9499c615213a0685 (patch) | |
tree | 3ec5356d94c610a669aa2e2a0081af2729bfa782 /lisp/font-lock.el | |
parent | c094bb0cf7eee9defdd76b8432dcbc24a7c6856d (diff) | |
download | emacs-bc987f8b80cbab4d8319d05a9499c615213a0685.tar.gz emacs-bc987f8b80cbab4d8319d05a9499c615213a0685.tar.bz2 emacs-bc987f8b80cbab4d8319d05a9499c615213a0685.zip |
* lisp/faces.el (error, warning, success): New faces with definitions
copied from old default values of `font-lock-warning-face',
`compilation-warning', `compilation-info'.
* lisp/font-lock.el (font-lock-warning-face): Inherit from `error'.
* lisp/progmodes/compile.el (compilation-error): Inherit from `error'.
(compilation-warning): Inherit from `warning'.
(compilation-info): Inherit from `success'.
* lisp/dired.el (dired-marked): Inherit from `warning'.
(dired-flagged): Inherit from `error'.
Fixes: debbugs:6117
Diffstat (limited to 'lisp/font-lock.el')
-rw-r--r-- | lisp/font-lock.el | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/lisp/font-lock.el b/lisp/font-lock.el index 6902ce98ab1..9cf889e1aec 100644 --- a/lisp/font-lock.el +++ b/lisp/font-lock.el @@ -1959,12 +1959,7 @@ Sets various variables using `font-lock-defaults' and :group 'font-lock-faces) (defface font-lock-warning-face - '((((class color) (min-colors 88) (background light)) (:foreground "Red1" :weight bold)) - (((class color) (min-colors 88) (background dark)) (:foreground "Pink" :weight bold)) - (((class color) (min-colors 16) (background light)) (:foreground "Red1" :weight bold)) - (((class color) (min-colors 16) (background dark)) (:foreground "Pink" :weight bold)) - (((class color) (min-colors 8)) (:foreground "red")) - (t (:inverse-video t :weight bold))) + '((t :inherit error)) "Font Lock mode face used to highlight warnings." :group 'font-lock-faces) |