diff options
| author | Richard M. Stallman | 1992-10-24 20:07:08 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 1992-10-24 20:07:08 +0000 |
| commit | accd90bd673f69a656918497a1a1c0706b0c9e54 (patch) | |
| tree | 763003ecc045f9720bf6f50b0ecf19460d0eb267 | |
| parent | 7516b7d5218575461fb4d1b15515a1174554f349 (diff) | |
| download | emacs-accd90bd673f69a656918497a1a1c0706b0c9e54.tar.gz emacs-accd90bd673f69a656918497a1a1c0706b0c9e54.zip | |
(vc-prefix-map): Put vc-diff on = and vc-directory on d.
| -rw-r--r-- | lisp/vc-hooks.el | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lisp/vc-hooks.el b/lisp/vc-hooks.el index 36bf47a9648..fc84af99958 100644 --- a/lisp/vc-hooks.el +++ b/lisp/vc-hooks.el | |||
| @@ -5,7 +5,7 @@ | |||
| 5 | ;; Author: Eric S. Raymond <esr@snark.thyrsus.com> | 5 | ;; Author: Eric S. Raymond <esr@snark.thyrsus.com> |
| 6 | ;; Version: 4.0 | 6 | ;; Version: 4.0 |
| 7 | 7 | ||
| 8 | ;; $Id: vc-hooks.el,v 1.4 1992/10/20 06:44:21 rms Exp rms $ | 8 | ;; $Id: vc-hooks.el,v 1.5 1992/10/20 18:43:33 rms Exp rms $ |
| 9 | 9 | ||
| 10 | ;; This file is part of GNU Emacs. | 10 | ;; This file is part of GNU Emacs. |
| 11 | 11 | ||
| @@ -167,7 +167,7 @@ Returns t if checkout was successful, nil otherwise." | |||
| 167 | (define-key global-map "\C-xv" vc-prefix-map) | 167 | (define-key global-map "\C-xv" vc-prefix-map) |
| 168 | (define-key vc-prefix-map "a" 'vc-update-change-log) | 168 | (define-key vc-prefix-map "a" 'vc-update-change-log) |
| 169 | (define-key vc-prefix-map "c" 'vc-cancel-version) | 169 | (define-key vc-prefix-map "c" 'vc-cancel-version) |
| 170 | (define-key vc-prefix-map "d" 'vc-diff) | 170 | (define-key vc-prefix-map "d" 'vc-directory) |
| 171 | (define-key vc-prefix-map "h" 'vc-insert-headers) | 171 | (define-key vc-prefix-map "h" 'vc-insert-headers) |
| 172 | (define-key vc-prefix-map "i" 'vc-register) | 172 | (define-key vc-prefix-map "i" 'vc-register) |
| 173 | (define-key vc-prefix-map "l" 'vc-print-log) | 173 | (define-key vc-prefix-map "l" 'vc-print-log) |
| @@ -175,7 +175,7 @@ Returns t if checkout was successful, nil otherwise." | |||
| 175 | (define-key vc-prefix-map "s" 'vc-create-snapshot) | 175 | (define-key vc-prefix-map "s" 'vc-create-snapshot) |
| 176 | (define-key vc-prefix-map "u" 'vc-revert-buffer) | 176 | (define-key vc-prefix-map "u" 'vc-revert-buffer) |
| 177 | (define-key vc-prefix-map "v" 'vc-next-action) | 177 | (define-key vc-prefix-map "v" 'vc-next-action) |
| 178 | (define-key vc-prefix-map "=" 'vc-directory) | 178 | (define-key vc-prefix-map "=" 'vc-diff) |
| 179 | )) | 179 | )) |
| 180 | 180 | ||
| 181 | (provide 'vc-hooks) | 181 | (provide 'vc-hooks) |