summaryrefslogtreecommitdiff
path: root/lisp/calc/calc-store.el
diff options
context:
space:
mode:
authorGlenn Morris <rgm@gnu.org>2009-01-09 03:57:12 +0000
committerGlenn Morris <rgm@gnu.org>2009-01-09 03:57:12 +0000
commite93c003eb15f85f744a39c28a8fb43b8c6da9904 (patch)
tree3a9d6acabbc4bd35bdb1b1680eb16e12b4761651 /lisp/calc/calc-store.el
parent4b09796d423bb241d597f147ce0d53567ce10b3f (diff)
downloademacs-e93c003eb15f85f744a39c28a8fb43b8c6da9904.tar.gz
Replace last-command-char with last-command-event.
Diffstat (limited to 'lisp/calc/calc-store.el')
-rw-r--r--lisp/calc/calc-store.el6
1 files changed, 3 insertions, 3 deletions
diff --git a/lisp/calc/calc-store.el b/lisp/calc/calc-store.el
index dcd5fb68348..32ba169f658 100644
--- a/lisp/calc/calc-store.el
+++ b/lisp/calc/calc-store.el
@@ -381,15 +381,15 @@
(defun calc-store-quick ()
(interactive)
- (calc-store (intern (format "var-q%c" last-command-char))))
+ (calc-store (intern (format "var-q%c" last-command-event))))
(defun calc-store-into-quick ()
(interactive)
- (calc-store-into (intern (format "var-q%c" last-command-char))))
+ (calc-store-into (intern (format "var-q%c" last-command-event))))
(defun calc-recall-quick ()
(interactive)
- (calc-recall (intern (format "var-q%c" last-command-char))))
+ (calc-recall (intern (format "var-q%c" last-command-event))))
(defun calc-copy-special-constant (&optional sconst var)
(interactive)