summaryrefslogtreecommitdiff
path: root/lisp/calc
diff options
context:
space:
mode:
authorGlenn Morris <rgm@gnu.org>2009-01-09 05:00:56 +0000
committerGlenn Morris <rgm@gnu.org>2009-01-09 05:00:56 +0000
commit1e4bd40da283e6bbd9f501b7fcbc748353173f41 (patch)
tree023038713fe26febec1d66ff460fe26aea104dc4 /lisp/calc
parentcfa29281070a1f7868ed42f330d9a666b2fc39e2 (diff)
downloademacs-1e4bd40da283e6bbd9f501b7fcbc748353173f41.tar.gz
emacs-1e4bd40da283e6bbd9f501b7fcbc748353173f41.tar.bz2
emacs-1e4bd40da283e6bbd9f501b7fcbc748353173f41.zip
Replace last-input-char with last-input-event.
Diffstat (limited to 'lisp/calc')
-rw-r--r--lisp/calc/calc.el4
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/calc/calc.el b/lisp/calc/calc.el
index 0d372ce1959..59b4b682417 100644
--- a/lisp/calc/calc.el
+++ b/lisp/calc/calc.el
@@ -2199,8 +2199,8 @@ See calc-keypad for details."
(or (memq last-command-event '(32 13))
(progn (setq prefix-arg current-prefix-arg)
(calc-unread-command (if (and (eq last-command-event 27)
- (>= last-input-char 128))
- last-input-char
+ (>= last-input-event 128))
+ last-input-event
nil))))
(exit-minibuffer)))