aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDan Nicolaescu2008-05-10 03:55:00 +0000
committerDan Nicolaescu2008-05-10 03:55:00 +0000
commit0108dbd656861a5611cc2d786b70642a7c636898 (patch)
tree68b84b2be551515c36a14781cf6b851e0a9ed7ce
parent9ad5de0c1c0222b96134593e0d87ebb80e317201 (diff)
downloademacs-0108dbd656861a5611cc2d786b70642a7c636898.tar.gz
emacs-0108dbd656861a5611cc2d786b70642a7c636898.zip
(vc-prefix-map): Remove duplicate binding.
-rw-r--r--lisp/ChangeLog11
-rw-r--r--lisp/vc-hooks.el1
2 files changed, 8 insertions, 4 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index cbb2eb4dc47..f01d7dc292b 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,6 +1,11 @@
12008-05-10 Dan Nicolaescu <dann@ics.uci.edu>
2
3 * vc-hooks.el (vc-prefix-map): Remove duplicate binding.
4
12008-05-09 Eric S. Raymond <esr@snark.thyrsus.com> 52008-05-09 Eric S. Raymond <esr@snark.thyrsus.com>
2 6
3 * vc.el (vc-dir), vc-hooks.el: Tweak the VC directory bindings. 7 * vc.el (vc-dir):
8 * vc-hooks.el: Tweak the VC directory bindings.
4 These are now documented in the manual. 9 These are now documented in the manual.
5 * vc-dispatcher.el (vc-dir-update, vc-dir-parent-marked-p, 10 * vc-dispatcher.el (vc-dir-update, vc-dir-parent-marked-p,
6 vc-dir-children-marked-p): Remove the vc-dir-insert-directories global. 11 vc-dir-children-marked-p): Remove the vc-dir-insert-directories global.
@@ -18,8 +23,8 @@
18 23
19 * vc-sccs.el, vc.svn.el, vc-git.el, vc-hg.el, vc-mtn.el: Remove 24 * vc-sccs.el, vc.svn.el, vc-git.el, vc-hg.el, vc-mtn.el: Remove
20 stub implementations of, and references to, wash-log. 25 stub implementations of, and references to, wash-log.
21 * vc-rcs.el (vc-rcs-comment-history), 26 * vc-rcs.el (vc-rcs-comment-history):
22 vc-cvs.el (vc-cvs-comment-history): 27 * vc-cvs.el (vc-cvs-comment-history):
23 Inline the code that used to be wash-log. 28 Inline the code that used to be wash-log.
24 29
25 * vc-sccs.el (vc-sccs-checkin, vc-sccs-checkout, vc-sccs-rollback) 30 * vc-sccs.el (vc-sccs-checkin, vc-sccs-checkout, vc-sccs-rollback)
diff --git a/lisp/vc-hooks.el b/lisp/vc-hooks.el
index be1e9f91fb3..e8c04684619 100644
--- a/lisp/vc-hooks.el
+++ b/lisp/vc-hooks.el
@@ -995,7 +995,6 @@ Used in `find-file-not-found-functions'."
995 (define-key map "+" 'vc-update) 995 (define-key map "+" 'vc-update)
996 (define-key map "=" 'vc-diff) 996 (define-key map "=" 'vc-diff)
997 (define-key map "~" 'vc-revision-other-window) 997 (define-key map "~" 'vc-revision-other-window)
998 (define-key map "?" 'vc-dir)
999 map)) 998 map))
1000(fset 'vc-prefix-map vc-prefix-map) 999(fset 'vc-prefix-map vc-prefix-map)
1001(define-key global-map "\C-xv" 'vc-prefix-map) 1000(define-key global-map "\C-xv" 'vc-prefix-map)