diff lisp/vc-hooks.el @ 4338:0e9960f5e99c

(vc-mode-line): Set vc-mode to nil if FILE no longer is version-controlled.
author Paul Eggert <eggert@twinsun.com>
date Thu, 29 Jul 1993 04:58:47 +0000
parents 52d82c1a3948
children 604a401e05a4
line wrap: on
line diff
--- a/lisp/vc-hooks.el	Thu Jul 29 04:50:27 1993 +0000
+++ b/lisp/vc-hooks.el	Thu Jul 29 04:58:47 1993 +0000
@@ -142,11 +142,11 @@
 visiting FILE."
   (interactive (list buffer-file-name nil))
   (let ((vc-type (vc-backend-deduce file)))
-    (if vc-type
-        (setq vc-mode
-              (concat " " (or label (symbol-name vc-type))
-		      (if (and vc-rcs-status (eq vc-type 'RCS))
-                          (vc-rcs-status file)))))
+    (setq vc-mode
+	  (and 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))