(vc-mode-line): Put RCS' or
SCCS' before version num.
This commit is contained in:
parent
d3e6f8be7b
commit
b45d89b0ef
1 changed files with 3 additions and 3 deletions
|
@ -131,9 +131,9 @@ visiting FILE."
|
|||
(let ((vc-type (vc-backend-deduce file)))
|
||||
(if vc-type
|
||||
(setq vc-mode
|
||||
(concat (if (and vc-rcs-status (eq vc-type 'RCS))
|
||||
(vc-rcs-status file))
|
||||
" " (or label (symbol-name vc-type)))))
|
||||
(concat " " (or label (symbol-name vc-type))
|
||||
(if (and vc-rcs-status (eq vc-type 'RCS))
|
||||
(vc-rcs-status file)))))
|
||||
;; force update of mode line
|
||||
(set-buffer-modified-p (buffer-modified-p))
|
||||
vc-type))
|
||||
|
|
Loading…
Add table
Reference in a new issue