diff options
| author | Andreas Schwab | 2008-05-17 20:00:41 +0000 |
|---|---|---|
| committer | Andreas Schwab | 2008-05-17 20:00:41 +0000 |
| commit | 53b2b69f6f0f465cc2a7f13d2a5f8075fd5ad1c4 (patch) | |
| tree | 8a5e401455d67265709f6c2c2f2bee2851079bff | |
| parent | 046ca5827e7b6569dc3abc9525d322fea1d3f982 (diff) | |
| download | emacs-53b2b69f6f0f465cc2a7f13d2a5f8075fd5ad1c4.tar.gz emacs-53b2b69f6f0f465cc2a7f13d2a5f8075fd5ad1c4.zip | |
(vc-dir-mode-map): Fix M-down and M-up binding.
| -rw-r--r-- | lisp/ChangeLog | 4 | ||||
| -rw-r--r-- | lisp/vc-dispatcher.el | 4 |
2 files changed, 6 insertions, 2 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 4aebc471f0b..3b87fa0e02b 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,7 @@ | |||
| 1 | 2008-05-17 Andreas Schwab <schwab@suse.de> | ||
| 2 | |||
| 3 | * vc-dispatcher.el (vc-dir-mode-map): Fix M-down and M-up binding. | ||
| 4 | |||
| 1 | 2008-05-17 Dan Nicolaescu <dann@ics.uci.edu> | 5 | 2008-05-17 Dan Nicolaescu <dann@ics.uci.edu> |
| 2 | 6 | ||
| 3 | * vc.el (vc-annotate-show-diff-revision-at-line): Change | 7 | * vc.el (vc-annotate-show-diff-revision-at-line): Change |
diff --git a/lisp/vc-dispatcher.el b/lisp/vc-dispatcher.el index b257025d501..1145ee260c9 100644 --- a/lisp/vc-dispatcher.el +++ b/lisp/vc-dispatcher.el | |||
| @@ -783,8 +783,8 @@ See `run-hooks'." | |||
| 783 | ;;; Rebind paragraph-movement commands. | 783 | ;;; Rebind paragraph-movement commands. |
| 784 | (define-key map "\M-}" 'vc-dir-next-directory) | 784 | (define-key map "\M-}" 'vc-dir-next-directory) |
| 785 | (define-key map "\M-{" 'vc-dir-prev-directory) | 785 | (define-key map "\M-{" 'vc-dir-prev-directory) |
| 786 | (define-key map "\M-<down>" 'vc-dir-next-directory) | 786 | (define-key map [M-down] 'vc-dir-next-directory) |
| 787 | (define-key map "\M-<up>" 'vc-dir-prev-directory) | 787 | (define-key map [M-up] 'vc-dir-prev-directory) |
| 788 | ;; The remainder. | 788 | ;; The remainder. |
| 789 | (define-key map "f" 'vc-dir-find-file) | 789 | (define-key map "f" 'vc-dir-find-file) |
| 790 | (define-key map "\C-m" 'vc-dir-find-file) | 790 | (define-key map "\C-m" 'vc-dir-find-file) |