summaryrefslogtreecommitdiff
path: root/lisp/emulation/vip.el
diff options
context:
space:
mode:
authorGlenn Morris <rgm@gnu.org>2009-01-09 04:36:00 +0000
committerGlenn Morris <rgm@gnu.org>2009-01-09 04:36:00 +0000
commita4d9b7bca3dc69efe89eecbd81ed96859f7cd818 (patch)
treea946b8d6c185093144a33d99a33c9fbaed0eb068 /lisp/emulation/vip.el
parent61a846fbec62231eb19bdd41e08fd89f57787195 (diff)
Replace last-command-char with last-command-event.
Diffstat (limited to 'lisp/emulation/vip.el')
-rw-r--r--lisp/emulation/vip.el4
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/emulation/vip.el b/lisp/emulation/vip.el
index 0d00b36b7e..560a7e6e84 100644
--- a/lisp/emulation/vip.el
+++ b/lisp/emulation/vip.el
@@ -606,7 +606,7 @@ obtained so far, and COM is the command part obtained so far."
(defun vip-digit-argument (arg)
"Begin numeric argument for the next command."
(interactive "P")
- (vip-prefix-arg-value last-command-char nil
+ (vip-prefix-arg-value last-command-event nil
(if (consp arg) (cdr arg) nil)))
(defun vip-command-argument (arg)
@@ -614,7 +614,7 @@ obtained so far, and COM is the command part obtained so far."
(interactive "P")
(condition-case conditions
(vip-prefix-arg-com
- last-command-char
+ last-command-event
(cond ((null arg) nil)
((consp arg) (car arg))
((numberp arg) arg)