diff options
author | Eric S. Raymond <esr@snark.thyrsus.com> | 2007-10-11 16:02:53 +0000 |
---|---|---|
committer | Eric S. Raymond <esr@snark.thyrsus.com> | 2007-10-11 16:02:53 +0000 |
commit | 0a0ca7f11fe17ee09259e07bed63e5c193997463 (patch) | |
tree | 36ed37f8ea22e88ac4cd48c85febf143a34882ce /lisp/vc-hooks.el | |
parent | ebd0c5ba614d2079228fac0d731c57c12ed976f3 (diff) | |
download | emacs-0a0ca7f11fe17ee09259e07bed63e5c193997463.tar.gz |
Follow through on the VC terminology change (version -> revision).
Diffstat (limited to 'lisp/vc-hooks.el')
-rw-r--r-- | lisp/vc-hooks.el | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/lisp/vc-hooks.el b/lisp/vc-hooks.el index 64ce29ddaf4..92c6c734483 100644 --- a/lisp/vc-hooks.el +++ b/lisp/vc-hooks.el @@ -925,7 +925,7 @@ Used in `find-file-not-found-functions'." (define-key map "v" 'vc-next-action) (define-key map "+" 'vc-update) (define-key map "=" 'vc-diff) - (define-key map "~" 'vc-version-other-window) + (define-key map "~" 'vc-revision-other-window) map)) (fset 'vc-prefix-map vc-prefix-map) (define-key global-map "\C-xv" 'vc-prefix-map) @@ -942,8 +942,8 @@ Used in `find-file-not-found-functions'." (define-key map [separator1] '("----")) (define-key map [vc-annotate] '("Annotate" . vc-annotate)) (define-key map [vc-rename-file] '("Rename File" . vc-rename-file)) - (define-key map [vc-version-other-window] - '("Show Other Version" . vc-version-other-window)) + (define-key map [vc-revision-other-window] + '("Show Other Version" . vc-revision-other-window)) (define-key map [vc-diff] '("Compare with Base Version" . vc-diff)) (define-key map [vc-update-change-log] '("Update ChangeLog" . vc-update-change-log)) @@ -985,7 +985,7 @@ Used in `find-file-not-found-functions'." ;;(put 'vc-rename-file 'menu-enable 'vc-mode) ;;(put 'vc-annotate 'menu-enable '(eq (vc-buffer-backend) 'CVS)) -;;(put 'vc-version-other-window 'menu-enable 'vc-mode) +;;(put 'vc-revision-other-window 'menu-enable 'vc-mode) ;;(put 'vc-diff 'menu-enable 'vc-mode) ;;(put 'vc-update-change-log 'menu-enable ;; '(member (vc-buffer-backend) '(RCS CVS))) |