diff options
| author | Stefan Monnier | 2010-06-13 23:19:46 -0400 |
|---|---|---|
| committer | Stefan Monnier | 2010-06-13 23:19:46 -0400 |
| commit | d8b0cdddb3c1e4555a50423a9b69234f55fc8f9b (patch) | |
| tree | 0a868e9c01c50d0cac478f02a4119e3c701d6e53 /lisp | |
| parent | b263a4c43f492f50e0201c6656033b1e54224d54 (diff) | |
| download | emacs-d8b0cdddb3c1e4555a50423a9b69234f55fc8f9b.tar.gz emacs-d8b0cdddb3c1e4555a50423a9b69234f55fc8f9b.zip | |
* lisp/image-mode.el (image-mode-map): Remap left-char and right-char.
Diffstat (limited to 'lisp')
| -rw-r--r-- | lisp/ChangeLog | 2 | ||||
| -rw-r--r-- | lisp/image-mode.el | 2 |
2 files changed, 4 insertions, 0 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index cae64856263..49e1ee9fc6a 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,5 +1,7 @@ | |||
| 1 | 2010-06-14 Stefan Monnier <monnier@iro.umontreal.ca> | 1 | 2010-06-14 Stefan Monnier <monnier@iro.umontreal.ca> |
| 2 | 2 | ||
| 3 | * image-mode.el (image-mode-map): Remap left-char and right-char. | ||
| 4 | |||
| 3 | * nxml/nxml-mode.el (nxml-indent-line): Standardize indent behavior. | 5 | * nxml/nxml-mode.el (nxml-indent-line): Standardize indent behavior. |
| 4 | 6 | ||
| 5 | 2010-06-12 Chong Yidong <cyd@stupidchicken.com> | 7 | 2010-06-12 Chong Yidong <cyd@stupidchicken.com> |
diff --git a/lisp/image-mode.el b/lisp/image-mode.el index 04a81f9038e..585d82e9beb 100644 --- a/lisp/image-mode.el +++ b/lisp/image-mode.el | |||
| @@ -298,6 +298,8 @@ This variable is used to display the current image type in the mode line.") | |||
| 298 | (define-key map (kbd "DEL") 'image-scroll-down) | 298 | (define-key map (kbd "DEL") 'image-scroll-down) |
| 299 | (define-key map [remap forward-char] 'image-forward-hscroll) | 299 | (define-key map [remap forward-char] 'image-forward-hscroll) |
| 300 | (define-key map [remap backward-char] 'image-backward-hscroll) | 300 | (define-key map [remap backward-char] 'image-backward-hscroll) |
| 301 | (define-key map [remap right-char] 'image-forward-hscroll) | ||
| 302 | (define-key map [remap left-char] 'image-backward-hscroll) | ||
| 301 | (define-key map [remap previous-line] 'image-previous-line) | 303 | (define-key map [remap previous-line] 'image-previous-line) |
| 302 | (define-key map [remap next-line] 'image-next-line) | 304 | (define-key map [remap next-line] 'image-next-line) |
| 303 | (define-key map [remap scroll-up] 'image-scroll-up) | 305 | (define-key map [remap scroll-up] 'image-scroll-up) |