diff options
author | Richard M. Stallman <rms@gnu.org> | 1998-06-07 22:38:17 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 1998-06-07 22:38:17 +0000 |
commit | d94a2d9ab6829fc4d376bcd858eeb8bbb6c957eb (patch) | |
tree | 870e62d1c6877a3da0eaab4631b19df771a99267 /src/keyboard.h | |
parent | 75045dcbffddb463735a9a27bd905b6cfcb7bc45 (diff) | |
download | emacs-d94a2d9ab6829fc4d376bcd858eeb8bbb6c957eb.tar.gz |
(struct kboard): New elts Vreal_last_command and Vlast_prefix_arg.
Diffstat (limited to 'src/keyboard.h')
-rw-r--r-- | src/keyboard.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/keyboard.h b/src/keyboard.h index 6d6f4d4c095..0874af8f0a8 100644 --- a/src/keyboard.h +++ b/src/keyboard.h @@ -78,9 +78,16 @@ struct kboard 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; |