diff options
author | Juanma Barranquero <lekktu@gmail.com> | 2010-10-19 13:44:07 +0200 |
---|---|---|
committer | Juanma Barranquero <lekktu@gmail.com> | 2010-10-19 13:44:07 +0200 |
commit | ca3fa30248b923c17c021c0fcdb945271d14e8c2 (patch) | |
tree | 8283b1da72c771a21410f5fe621d3a299fe66b53 /lisp/repeat.el | |
parent | 3224b54d5cc5964af5e6509579fd942eae04f1d1 (diff) | |
parent | bca0f839a56a1edd8562ada5962b809323f39efc (diff) | |
download | emacs-ca3fa30248b923c17c021c0fcdb945271d14e8c2.tar.gz |
Merge changes from emacs-23 branch.
Diffstat (limited to 'lisp/repeat.el')
-rw-r--r-- | lisp/repeat.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/repeat.el b/lisp/repeat.el index 86484ec68d6..abab47e7dc8 100644 --- a/lisp/repeat.el +++ b/lisp/repeat.el @@ -335,7 +335,7 @@ recently executed command not bound to an input event\"." (setq real-last-command 'repeat) (setq repeat-undo-count 1) (unwind-protect - (while (let ((evt (read-event))) ;FIXME: read-key maybe? + (while (let ((evt (read-key))) ;; For clicks, we need to strip the meta-data to ;; check the underlying event name. (eq (or (car-safe evt) evt) |