1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2026-03-03 04:21:28 -08:00

(vc-dir-mode-map): Fix M-down and M-up binding.

This commit is contained in:
Andreas Schwab 2008-05-17 20:00:41 +00:00
parent 046ca5827e
commit 53b2b69f6f
2 changed files with 6 additions and 2 deletions

View file

@ -1,3 +1,7 @@
2008-05-17 Andreas Schwab <schwab@suse.de>
* vc-dispatcher.el (vc-dir-mode-map): Fix M-down and M-up binding.
2008-05-17 Dan Nicolaescu <dann@ics.uci.edu>
* vc.el (vc-annotate-show-diff-revision-at-line): Change

View file

@ -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)