diff options
Diffstat (limited to 'lisp/autoarg.el')
-rw-r--r-- | lisp/autoarg.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/autoarg.el b/lisp/autoarg.el index 924fdd97ba1..13be30e1808 100644 --- a/lisp/autoarg.el +++ b/lisp/autoarg.el @@ -67,7 +67,7 @@ (defun autoarg-kp-digit-argument (arg) "Part of the numeric argument for the next command, like `digit-argument'." (interactive "P") - (let ((digit (cdr (assq last-command-char autoarg-kp-digits)))) + (let ((digit (cdr (assq last-command-event autoarg-kp-digits)))) (cond ((integerp arg) (setq prefix-arg (+ (* arg 10) (if (< arg 0) (- digit) digit)))) |