summaryrefslogtreecommitdiff
path: root/lisp/vc-dispatcher.el
diff options
context:
space:
mode:
authorAndreas Schwab <schwab@suse.de>2008-05-17 20:00:41 +0000
committerAndreas Schwab <schwab@suse.de>2008-05-17 20:00:41 +0000
commit53b2b69f6f0f465cc2a7f13d2a5f8075fd5ad1c4 (patch)
tree8a5e401455d67265709f6c2c2f2bee2851079bff /lisp/vc-dispatcher.el
parent046ca5827e7b6569dc3abc9525d322fea1d3f982 (diff)
downloademacs-53b2b69f6f0f465cc2a7f13d2a5f8075fd5ad1c4.tar.gz
(vc-dir-mode-map): Fix M-down and M-up binding.
Diffstat (limited to 'lisp/vc-dispatcher.el')
-rw-r--r--lisp/vc-dispatcher.el4
1 files changed, 2 insertions, 2 deletions
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'."
;;; Rebind paragraph-movement commands.
(define-key map "\M-}" 'vc-dir-next-directory)
(define-key map "\M-{" 'vc-dir-prev-directory)
- (define-key map "\M-<down>" 'vc-dir-next-directory)
- (define-key map "\M-<up>" 'vc-dir-prev-directory)
+ (define-key map [M-down] 'vc-dir-next-directory)
+ (define-key map [M-up] 'vc-dir-prev-directory)
;; The remainder.
(define-key map "f" 'vc-dir-find-file)
(define-key map "\C-m" 'vc-dir-find-file)