diff options
Diffstat (limited to 'lisp/calc/calc-store.el')
-rw-r--r-- | lisp/calc/calc-store.el | 6 |
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) |