make it show up with eight colors.
from 2007-08-30.
http://lists.gnu.org/archive/html/emacs-devel/2007-08/msg01632.html
-** dired-warning face not colored on 8-color ttys
-Report by <trentbuck@gmail.com> on bug-gnu-emacs from 2007-08-30.
-http://lists.gnu.org/archive/html/bug-gnu-emacs/2007-08/msg00212.html
-
** mouse-autoselect-window with click-to-focus window managers
Report by Drew Adams <drew.adams@oracle.com> on emacs-devel from
2007-09-05.
+2007-09-12 Martin Rudalics <rudalics@gmx.at>
+
+ * dired.el (dired-warning): Inherit from font-lock-warning-face to
+ make it show up with eight colors.
+
2007-09-12 Stefan Monnier <monnier@iro.umontreal.ca>
* diff-mode.el (diff-sanity-check-hunk): Fix up the case when unified
"Face name used for flagged files.")
(defface dired-warning
- '((t (:inherit font-lock-comment-face)))
+ ;; Inherit from font-lock-warning-face since with min-colors 8
+ ;; font-lock-comment-face is not colored any more.
+ '((t (:inherit font-lock-warning-face)))
"Face used to highlight a part of a buffer that needs user attention."
:group 'dired-faces
:version "22.1")