aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorStefan Monnier2010-03-24 13:33:39 -0400
committerStefan Monnier2010-03-24 13:33:39 -0400
commitb2b8574b8d03673f5673e2154d17c2cb80f59a0b (patch)
tree379e942798a475c4145c7c8ec51981060262741e
parent5f2484c238e76640773d6093a1ebbdbf0e98b1e3 (diff)
downloademacs-b2b8574b8d03673f5673e2154d17c2cb80f59a0b.tar.gz
emacs-b2b8574b8d03673f5673e2154d17c2cb80f59a0b.zip
* vc-dir.el (vc-dir-headers): Abbreviate the working dir.
-rw-r--r--lisp/ChangeLog4
-rw-r--r--lisp/vc-dir.el3
2 files changed, 6 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index b9992188bf4..3c9888182f8 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,7 @@
12010-03-24 Stefan Monnier <monnier@iro.umontreal.ca>
2
3 * vc-dir.el (vc-dir-headers): Abbreviate the working dir.
4
12010-03-24 Glenn Morris <rgm@gnu.org> 52010-03-24 Glenn Morris <rgm@gnu.org>
2 6
3 * vc-bzr.el (vc-bzr-log-edit-mode): Add --fixes support to 7 * vc-bzr.el (vc-bzr-log-edit-mode): Add --fixes support to
diff --git a/lisp/vc-dir.el b/lisp/vc-dir.el
index a0350eb3013..1eaec28e8be 100644
--- a/lisp/vc-dir.el
+++ b/lisp/vc-dir.el
@@ -950,7 +950,8 @@ specific headers."
950 (propertize "VC backend : " 'face 'font-lock-type-face) 950 (propertize "VC backend : " 'face 'font-lock-type-face)
951 (propertize (format "%s\n" backend) 'face 'font-lock-variable-name-face) 951 (propertize (format "%s\n" backend) 'face 'font-lock-variable-name-face)
952 (propertize "Working dir: " 'face 'font-lock-type-face) 952 (propertize "Working dir: " 'face 'font-lock-type-face)
953 (propertize (format "%s\n" dir) 'face 'font-lock-variable-name-face) 953 (propertize (format "%s\n" (abbreviate-file-name dir))
954 'face 'font-lock-variable-name-face)
954 ;; Then the backend specific ones. 955 ;; Then the backend specific ones.
955 (vc-call-backend backend 'dir-extra-headers dir) 956 (vc-call-backend backend 'dir-extra-headers dir)
956 "\n")) 957 "\n"))