]> git.eshelyaron.com Git - emacs.git/commitdiff
(vc-menu-map): Disable Register when no visited file.
authorKarl Heuer <kwzh@gnu.org>
Wed, 7 Jun 1995 18:55:22 +0000 (18:55 +0000)
committerKarl Heuer <kwzh@gnu.org>
Wed, 7 Jun 1995 18:55:22 +0000 (18:55 +0000)
lisp/vc-hooks.el

index 4b41ef1ca404dd13bf7646e4aed23905795623a7..c875a581024696901a75a3c2509d83e64f0e0e2c 100644 (file)
@@ -829,7 +829,7 @@ Returns t if checkout was successful, nil otherwise."
   (put 'vc-insert-headers 'menu-enable 'vc-mode)
   (put 'vc-next-action 'menu-enable '(and vc-mode (not buffer-read-only)))
   (put 'vc-toggle-read-only 'menu-enable '(and vc-mode buffer-read-only))
-  (put 'vc-register 'menu-enable '(not vc-mode))
+  (put 'vc-register 'menu-enable '(and buffer-file-name (not vc-mode)))
   )
 
 (provide 'vc-hooks)