mirror of
git://git.sv.gnu.org/emacs.git
synced 2026-02-16 17:24:23 +00:00
More uses of error' and warning' faces.
* lisp/battery.el (battery-update): Use the face `error' instead of `font-lock-warning-face'. * lisp/ibuffer.el (ibuffer-marked-face): Change default face from `font-lock-warning-face' to `warning'. (ibuffer-deletion-face): Change default face from `font-lock-type-face' to `error'. * lisp/proced.el (proced-marked): Inherit from `error' instead of `font-lock-warning-face'. Fixes: debbugs:6117
This commit is contained in:
parent
6a93965ee8
commit
f22f4808a0
4 changed files with 17 additions and 4 deletions
|
|
@ -1,3 +1,16 @@
|
|||
2011-08-24 Juri Linkov <juri@jurta.org>
|
||||
|
||||
* proced.el (proced-marked): Inherit from `error' instead of
|
||||
`font-lock-warning-face'.
|
||||
|
||||
* ibuffer.el (ibuffer-marked-face): Change default face from
|
||||
`font-lock-warning-face' to `warning'.
|
||||
(ibuffer-deletion-face): Change default face from
|
||||
`font-lock-type-face' to `error'.
|
||||
|
||||
* battery.el (battery-update): Use the face `error' instead of
|
||||
`font-lock-warning-face' (bug#6117).
|
||||
|
||||
2011-08-24 Juri Linkov <juri@jurta.org>
|
||||
|
||||
* faces.el (success): Change face color from "Green3" to
|
||||
|
|
|
|||
|
|
@ -199,7 +199,7 @@ seconds."
|
|||
'face
|
||||
(and (<= (car (read-from-string (cdr (assq ?p data))))
|
||||
battery-load-critical)
|
||||
'font-lock-warning-face)
|
||||
'error)
|
||||
'help-echo "Battery status information")))
|
||||
(force-mode-line-update))
|
||||
|
||||
|
|
|
|||
|
|
@ -356,12 +356,12 @@ directory, like `default-directory'."
|
|||
:type 'hook
|
||||
:group 'ibuffer)
|
||||
|
||||
(defcustom ibuffer-marked-face 'font-lock-warning-face
|
||||
(defcustom ibuffer-marked-face 'warning
|
||||
"Face used for displaying marked buffers."
|
||||
:type 'face
|
||||
:group 'ibuffer)
|
||||
|
||||
(defcustom ibuffer-deletion-face 'font-lock-type-face
|
||||
(defcustom ibuffer-deletion-face 'error
|
||||
"Face used for displaying buffers marked for deletion."
|
||||
:type 'face
|
||||
:group 'ibuffer)
|
||||
|
|
|
|||
|
|
@ -395,7 +395,7 @@ It is a list of lists (KEY PREDICATE REVERSE).")
|
|||
:group 'proced-faces)
|
||||
|
||||
(defface proced-marked
|
||||
'((t (:inherit font-lock-warning-face)))
|
||||
'((t (:inherit error)))
|
||||
"Face used for marked processes."
|
||||
:group 'proced-faces)
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue