From: Jari Aalto Date: Sun, 22 May 2011 19:36:07 +0000 (-0400) Subject: Maked "edited" tag stand out in vc-dir (Bug#8178). X-Git-Tag: emacs-pretest-24.0.90~104^2~618^2~210 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=f0fb8059468647825797cd3bd7f6e1ec8b38fd20;p=emacs.git Maked "edited" tag stand out in vc-dir (Bug#8178). * vc/vc-dir.el (vc-default-dir-printer): Give edited tag a different face. --- diff --git a/lisp/ChangeLog b/lisp/ChangeLog index ea1c659a89e..60d94457182 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,3 +1,8 @@ +2011-01-22 Jari Aalto + + * vc/vc-dir.el (vc-default-dir-printer): Give edited tag a + different face (Bug#8178). + 2011-05-22 Chong Yidong * vc/diff-mode.el (diff-changed): Don't use terminal specs for diff --git a/lisp/vc/vc-dir.el b/lisp/vc/vc-dir.el index 01b6f2fc26e..5f3a9a21b59 100644 --- a/lisp/vc/vc-dir.el +++ b/lisp/vc/vc-dir.el @@ -1238,6 +1238,7 @@ These are the commands available for use in the file status buffer: (format "%-20s" state) 'face (cond ((eq state 'up-to-date) 'font-lock-builtin-face) ((memq state '(missing conflict)) 'font-lock-warning-face) + ((eq state 'edited) 'font-lock-constant-face) (t 'font-lock-variable-name-face)) 'mouse-face 'highlight) " "