diff options
author | Dan Nicolaescu <dann@ics.uci.edu> | 2008-11-04 08:58:24 +0000 |
---|---|---|
committer | Dan Nicolaescu <dann@ics.uci.edu> | 2008-11-04 08:58:24 +0000 |
commit | a72000251e06a5720b99fdb12068210809941e63 (patch) | |
tree | f27931a1b09528c44356f1cbdc97baad22a1351c /lisp/vc-dir.el | |
parent | 3dcde186bee61b10891774b957d2f10431707c58 (diff) | |
download | emacs-a72000251e06a5720b99fdb12068210809941e63.tar.gz |
(vc-dir-headers): Undo previous change.
Diffstat (limited to 'lisp/vc-dir.el')
-rw-r--r-- | lisp/vc-dir.el | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/lisp/vc-dir.el b/lisp/vc-dir.el index 4fbdc99d501..63f239ead32 100644 --- a/lisp/vc-dir.el +++ b/lisp/vc-dir.el @@ -929,11 +929,14 @@ commands act on the files in those directories displayed in the It calls the `dir-extra-headers' backend method to display backend specific headers." (concat - (vc-call-backend backend 'dir-extra-headers dir) + ;; First layout the common 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" dir) 'face 'font-lock-variable-name-face) + ;; Then the backend specific ones. + (vc-call-backend backend 'dir-extra-headers dir) + "\n")) (defun vc-dir-refresh-files (files default-state) "Refresh some files in the *VC-dir* buffer." |