diff options
author | Glenn Morris <rgm@gnu.org> | 2009-01-09 03:57:12 +0000 |
---|---|---|
committer | Glenn Morris <rgm@gnu.org> | 2009-01-09 03:57:12 +0000 |
commit | e93c003eb15f85f744a39c28a8fb43b8c6da9904 (patch) | |
tree | 3a9d6acabbc4bd35bdb1b1680eb16e12b4761651 /lisp/calc/calc-store.el | |
parent | 4b09796d423bb241d597f147ce0d53567ce10b3f (diff) | |
download | emacs-e93c003eb15f85f744a39c28a8fb43b8c6da9904.tar.gz emacs-e93c003eb15f85f744a39c28a8fb43b8c6da9904.tar.bz2 emacs-e93c003eb15f85f744a39c28a8fb43b8c6da9904.zip |
Replace last-command-char with last-command-event.
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) |