Mercurial > emacs
changeset 22385:15200c139d9f
(struct kboard): New elts Vreal_last_command and Vlast_prefix_arg.
author | Richard M. Stallman <rms@gnu.org> |
---|---|
date | Sun, 07 Jun 1998 22:38:17 +0000 |
parents | 9ec0714b3e0b |
children | c760c9b2e5bf |
files | src/keyboard.h |
diffstat | 1 files changed, 7 insertions(+), 0 deletions(-) [+] |
line wrap: on
line diff
--- a/src/keyboard.h Sun Jun 07 22:37:36 1998 +0000 +++ b/src/keyboard.h Sun Jun 07 22:38:17 1998 +0000 @@ -78,9 +78,16 @@ commands that set the prefix argument. */ Lisp_Object Vlast_command; + /* Normally same as last-command, but never modified by + other commands. */ + Lisp_Object Vreal_last_command; + /* The prefix argument for the next command, in raw form. */ Lisp_Object Vprefix_arg; + /* Saved prefix argument for the last command, in raw form. */ + Lisp_Object Vlast_prefix_arg; + /* Unread events specific to this kboard. */ Lisp_Object kbd_queue;