diff options
| author | Glenn Morris | 2012-08-31 13:38:50 -0400 |
|---|---|---|
| committer | Glenn Morris | 2012-08-31 13:38:50 -0400 |
| commit | 723088480da2c8320e0944bc23f9b72fccb54319 (patch) | |
| tree | 8ef6b25079cf71b9a5ac80074f9319360dc8aed5 /lisp/textmodes | |
| parent | 3aca1291d030ea97eab8b99d7a3e916a980b0bae (diff) | |
| download | emacs-723088480da2c8320e0944bc23f9b72fccb54319.tar.gz emacs-723088480da2c8320e0944bc23f9b72fccb54319.zip | |
Fix right and left key remapping issue (bug#12317)
* lisp/emulation/cua-rect.el (cua--init-rectangles):
* lisp/textmodes/picture.el (picture-mode-map):
* lisp/play/blackbox.el (blackbox-mode-map):
Remap right-char and left-char like forward-char and backward-char.
Diffstat (limited to 'lisp/textmodes')
| -rw-r--r-- | lisp/textmodes/picture.el | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lisp/textmodes/picture.el b/lisp/textmodes/picture.el index 9e8cbb216d1..5662e905714 100644 --- a/lisp/textmodes/picture.el +++ b/lisp/textmodes/picture.el | |||
| @@ -620,7 +620,9 @@ Leaves the region surrounding the rectangle." | |||
| 620 | (picture-substitute 'completion-separator-self-insert-autofilling | 620 | (picture-substitute 'completion-separator-self-insert-autofilling |
| 621 | 'picture-self-insert) | 621 | 'picture-self-insert) |
| 622 | (picture-substitute 'forward-char 'picture-forward-column) | 622 | (picture-substitute 'forward-char 'picture-forward-column) |
| 623 | (picture-substitute 'right-char 'picture-forward-column) | ||
| 623 | (picture-substitute 'backward-char 'picture-backward-column) | 624 | (picture-substitute 'backward-char 'picture-backward-column) |
| 625 | (picture-substitute 'left-char 'picture-backward-column) | ||
| 624 | (picture-substitute 'delete-char 'picture-clear-column) | 626 | (picture-substitute 'delete-char 'picture-clear-column) |
| 625 | ;; There are two possibilities for what is normally on DEL. | 627 | ;; There are two possibilities for what is normally on DEL. |
| 626 | (picture-substitute 'backward-delete-char-untabify 'picture-backward-clear-column) | 628 | (picture-substitute 'backward-delete-char-untabify 'picture-backward-clear-column) |