]> git.eshelyaron.com Git - emacs.git/commitdiff
(vc-mode-line): Put `RCS' or `SCCS' before version num.
authorRichard M. Stallman <rms@gnu.org>
Sun, 4 Jul 1993 04:53:58 +0000 (04:53 +0000)
committerRichard M. Stallman <rms@gnu.org>
Sun, 4 Jul 1993 04:53:58 +0000 (04:53 +0000)
lisp/vc-hooks.el

index e5d71471a27216d9f87f30614ae1eb04bfd49fec..211dab8e5a0a65a2167cebc8b69fcc819b94c6f2 100644 (file)
@@ -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))