aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJari Aalto2011-05-22 15:36:07 -0400
committerChong Yidong2011-05-22 15:36:07 -0400
commitf0fb8059468647825797cd3bd7f6e1ec8b38fd20 (patch)
tree7bbea8d0fe68255d380f39c1225147f3c48f2ed8
parentd5b44c937b53864aa35d9ad290196f16bbd9cb4f (diff)
downloademacs-f0fb8059468647825797cd3bd7f6e1ec8b38fd20.tar.gz
emacs-f0fb8059468647825797cd3bd7f6e1ec8b38fd20.zip
Maked "edited" tag stand out in vc-dir (Bug#8178).
* vc/vc-dir.el (vc-default-dir-printer): Give edited tag a different face.
-rw-r--r--lisp/ChangeLog5
-rw-r--r--lisp/vc/vc-dir.el1
2 files changed, 6 insertions, 0 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index ea1c659a89e..60d94457182 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,8 @@
12011-01-22 Jari Aalto <jari.aalto@cante.net>
2
3 * vc/vc-dir.el (vc-default-dir-printer): Give edited tag a
4 different face (Bug#8178).
5
12011-05-22 Chong Yidong <cyd@stupidchicken.com> 62011-05-22 Chong Yidong <cyd@stupidchicken.com>
2 7
3 * vc/diff-mode.el (diff-changed): Don't use terminal specs for 8 * 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:
1238 (format "%-20s" state) 1238 (format "%-20s" state)
1239 'face (cond ((eq state 'up-to-date) 'font-lock-builtin-face) 1239 'face (cond ((eq state 'up-to-date) 'font-lock-builtin-face)
1240 ((memq state '(missing conflict)) 'font-lock-warning-face) 1240 ((memq state '(missing conflict)) 'font-lock-warning-face)
1241 ((eq state 'edited) 'font-lock-constant-face)
1241 (t 'font-lock-variable-name-face)) 1242 (t 'font-lock-variable-name-face))
1242 'mouse-face 'highlight) 1243 'mouse-face 'highlight)
1243 " " 1244 " "