aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJuanma Barranquero2010-05-30 20:52:56 +0200
committerJuanma Barranquero2010-05-30 20:52:56 +0200
commit61a0807183d810cfb2cfe289cea050c9223f6b58 (patch)
tree487da6ee9e124b961dae603c600999c79c15ca40
parent5feec8cac13043a08abf3abb396911b042275fea (diff)
downloademacs-61a0807183d810cfb2cfe289cea050c9223f6b58.tar.gz
emacs-61a0807183d810cfb2cfe289cea050c9223f6b58.zip
emulation/cua-base.el: Recognize also `right-word' and `left-word'.
-rw-r--r--lisp/ChangeLog5
-rw-r--r--lisp/emulation/cua-base.el1
2 files changed, 6 insertions, 0 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index e335ee5c344..90b04f6c7c7 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,8 @@
12010-05-30 Juanma Barranquero <lekktu@gmail.com>
2
3 * emulation/cua-base.el: Recognize also `right-word' and `left-word'.
4 Suggested by Eli Zaretskii <eliz@gnu.org>.
5
12010-05-30 Stefan Monnier <monnier@iro.umontreal.ca> 62010-05-30 Stefan Monnier <monnier@iro.umontreal.ca>
2 7
3 * minibuffer.el (completion-file-name-table): Don't return a boundary 8 * minibuffer.el (completion-file-name-table): Don't return a boundary
diff --git a/lisp/emulation/cua-base.el b/lisp/emulation/cua-base.el
index 17a96e10c1c..c2ac7e3b3d0 100644
--- a/lisp/emulation/cua-base.el
+++ b/lisp/emulation/cua-base.el
@@ -1498,6 +1498,7 @@ If ARG is the atom `-', scroll upward by nearly full screen."
1498(dolist (cmd 1498(dolist (cmd
1499 '(forward-char backward-char 1499 '(forward-char backward-char
1500 right-char left-char 1500 right-char left-char
1501 right-word left-word
1501 next-line previous-line 1502 next-line previous-line
1502 forward-word backward-word 1503 forward-word backward-word
1503 end-of-line beginning-of-line 1504 end-of-line beginning-of-line