X-Git-Url: https://code.delx.au/gnu-emacs/blobdiff_plain/ae940284fa77a6928f5162b7de859e67bdc7506c..c71a0d48f3c880248a7f7f25e92ddbcbad5ef0e7:/lisp/autoarg.el diff --git a/lisp/autoarg.el b/lisp/autoarg.el index 924fdd97ba..378ec1318b 100644 --- a/lisp/autoarg.el +++ b/lisp/autoarg.el @@ -1,7 +1,6 @@ ;;; autoarg.el --- make digit keys supply prefix args -;; Copyright (C) 1998, 2000, 2001, 2002, 2003, 2004, -;; 2005, 2006, 2007, 2008, 2009 Free Software Foundation, Inc. +;; Copyright (C) 1998, 2000-2011 Free Software Foundation, Inc. ;; Author: Dave Love ;; Created: 1998-09-04 @@ -67,7 +66,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)))) @@ -144,5 +143,4 @@ which invoked this function, excluding the Autoarg keymap." (provide 'autoarg) -;; arch-tag: 2ba2ab4f-d60e-402a-ae4d-37e29af723c2 ;;; autoarg.el ends here