1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2024-11-28 07:45:00 +00:00

* vc-dir.el (vc-dir-headers): Abbreviate the working dir.

This commit is contained in:
Stefan Monnier 2010-03-24 13:33:39 -04:00
parent 5f2484c238
commit b2b8574b8d
2 changed files with 6 additions and 1 deletions

View File

@ -1,3 +1,7 @@
2010-03-24 Stefan Monnier <monnier@iro.umontreal.ca>
* vc-dir.el (vc-dir-headers): Abbreviate the working dir.
2010-03-24 Glenn Morris <rgm@gnu.org>
* vc-bzr.el (vc-bzr-log-edit-mode): Add --fixes support to

View File

@ -950,7 +950,8 @@ specific headers."
(propertize "VC backend : " 'face 'font-lock-type-face)
(propertize (format "%s\n" backend) 'face 'font-lock-variable-name-face)
(propertize "Working dir: " 'face 'font-lock-type-face)
(propertize (format "%s\n" dir) 'face 'font-lock-variable-name-face)
(propertize (format "%s\n" (abbreviate-file-name dir))
'face 'font-lock-variable-name-face)
;; Then the backend specific ones.
(vc-call-backend backend 'dir-extra-headers dir)
"\n"))