diff options
author | Glenn Morris <rgm@gnu.org> | 2009-01-09 05:00:56 +0000 |
---|---|---|
committer | Glenn Morris <rgm@gnu.org> | 2009-01-09 05:00:56 +0000 |
commit | 1e4bd40da283e6bbd9f501b7fcbc748353173f41 (patch) | |
tree | 023038713fe26febec1d66ff460fe26aea104dc4 /lisp/double.el | |
parent | cfa29281070a1f7868ed42f330d9a666b2fc39e2 (diff) | |
download | emacs-1e4bd40da283e6bbd9f501b7fcbc748353173f41.tar.gz emacs-1e4bd40da283e6bbd9f501b7fcbc748353173f41.tar.bz2 emacs-1e4bd40da283e6bbd9f501b7fcbc748353173f41.zip |
Replace last-input-char with last-input-event.
Diffstat (limited to 'lisp/double.el')
-rw-r--r-- | lisp/double.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/double.el b/lisp/double.el index 7204e3300df..e7f6e6c75b4 100644 --- a/lisp/double.el +++ b/lisp/double.el @@ -103,7 +103,7 @@ but not `C-u X' or `ESC X' since the X is not the prefix key." (defun double-translate-key (prompt) ;; Translate input events using double map. - (let ((key last-input-char)) + (let ((key last-input-event)) (cond (unread-command-events ;; Artificial event, ignore it. (vector key)) |