* lisp/image-mode.el (image-mode-map): Remap left-char and right-char.

This commit is contained in:
Stefan Monnier 2010-06-13 23:19:46 -04:00
parent b263a4c43f
commit d8b0cdddb3
2 changed files with 4 additions and 0 deletions

View file

@ -1,5 +1,7 @@
2010-06-14 Stefan Monnier <monnier@iro.umontreal.ca>
* image-mode.el (image-mode-map): Remap left-char and right-char.
* nxml/nxml-mode.el (nxml-indent-line): Standardize indent behavior.
2010-06-12 Chong Yidong <cyd@stupidchicken.com>

View file

@ -298,6 +298,8 @@ This variable is used to display the current image type in the mode line.")
(define-key map (kbd "DEL") 'image-scroll-down)
(define-key map [remap forward-char] 'image-forward-hscroll)
(define-key map [remap backward-char] 'image-backward-hscroll)
(define-key map [remap right-char] 'image-forward-hscroll)
(define-key map [remap left-char] 'image-backward-hscroll)
(define-key map [remap previous-line] 'image-previous-line)
(define-key map [remap next-line] 'image-next-line)
(define-key map [remap scroll-up] 'image-scroll-up)