summaryrefslogtreecommitdiff
path: root/lisp/vc-dir.el
diff options
context:
space:
mode:
authorDan Nicolaescu <dann@ics.uci.edu>2008-11-04 08:58:24 +0000
committerDan Nicolaescu <dann@ics.uci.edu>2008-11-04 08:58:24 +0000
commita72000251e06a5720b99fdb12068210809941e63 (patch)
treef27931a1b09528c44356f1cbdc97baad22a1351c /lisp/vc-dir.el
parent3dcde186bee61b10891774b957d2f10431707c58 (diff)
(vc-dir-headers): Undo previous change.
Diffstat (limited to 'lisp/vc-dir.el')
-rw-r--r--lisp/vc-dir.el7
1 files changed, 5 insertions, 2 deletions
diff --git a/lisp/vc-dir.el b/lisp/vc-dir.el
index 4fbdc99d50..63f239ead3 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."