changeset 91585:4fe734146ac9

revert the `vc-status' keybindings
author Sam Steingold <sds@gnu.org>
date Wed, 06 Feb 2008 19:06:34 +0000
parents c72722ab4a01
children cac14d4ce88f
files lisp/ChangeLog lisp/vc-hooks.el
diffstat 2 files changed, 5 insertions(+), 5 deletions(-) [+]
line wrap: on
line diff
--- a/lisp/ChangeLog	Wed Feb 06 17:52:35 2008 +0000
+++ b/lisp/ChangeLog	Wed Feb 06 19:06:34 2008 +0000
@@ -1,8 +1,6 @@
 2008-02-06  Sam Steingold  <sds@gnu.org>
 
-	* vc-hooks.el (vc-prefix-map): Bind `vc-status' to "?".
-	(vc-prefix-key): New user-customizable variable.
-	(vc-menu-map): Add `vc-status'.
+	* vc-hooks.el (vc-prefix-key): New user-customizable variable.
 
 2008-02-06  Stefan Monnier  <monnier@iro.umontreal.ca>
 
--- a/lisp/vc-hooks.el	Wed Feb 06 17:52:35 2008 +0000
+++ b/lisp/vc-hooks.el	Wed Feb 06 19:06:34 2008 +0000
@@ -968,7 +968,8 @@
     (define-key map "+" 'vc-update)
     (define-key map "=" 'vc-diff)
     (define-key map "~" 'vc-revision-other-window)
-    (define-key map "?" 'vc-status)
+    ;; `vc-status' is a not-quite-ready replacement for `vc-directory'
+    ;; (define-key map "?" 'vc-status)
     map))
 (fset 'vc-prefix-map vc-prefix-map)
 (defcustom vc-prefix-key "\C-xv" "*The prefix for the VC bindings."
@@ -989,7 +990,8 @@
     (define-key map [vc-create-snapshot]
       '("Create Snapshot" . vc-create-snapshot))
     (define-key map [vc-directory] '("VC Directory Listing" . vc-directory))
-    (define-key map [vc-status] '("VC Status" . vc-status))
+    ;; `vc-status' is a not-quite-ready replacement for `vc-directory'
+    ;; (define-key map [vc-status] '("VC Status" . vc-status))
     (define-key map [separator1] '("----"))
     (define-key map [vc-annotate] '("Annotate" . vc-annotate))
     (define-key map [vc-rename-file] '("Rename File" . vc-rename-file))