aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard M. Stallman1998-06-07 22:38:17 +0000
committerRichard M. Stallman1998-06-07 22:38:17 +0000
commitd94a2d9ab6829fc4d376bcd858eeb8bbb6c957eb (patch)
tree870e62d1c6877a3da0eaab4631b19df771a99267
parent75045dcbffddb463735a9a27bd905b6cfcb7bc45 (diff)
downloademacs-d94a2d9ab6829fc4d376bcd858eeb8bbb6c957eb.tar.gz
emacs-d94a2d9ab6829fc4d376bcd858eeb8bbb6c957eb.zip
(struct kboard): New elts Vreal_last_command and Vlast_prefix_arg.
-rw-r--r--src/keyboard.h7
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
78 commands that set the prefix argument. */ 78 commands that set the prefix argument. */
79 Lisp_Object Vlast_command; 79 Lisp_Object Vlast_command;
80 80
81 /* Normally same as last-command, but never modified by
82 other commands. */
83 Lisp_Object Vreal_last_command;
84
81 /* The prefix argument for the next command, in raw form. */ 85 /* The prefix argument for the next command, in raw form. */
82 Lisp_Object Vprefix_arg; 86 Lisp_Object Vprefix_arg;
83 87
88 /* Saved prefix argument for the last command, in raw form. */
89 Lisp_Object Vlast_prefix_arg;
90
84 /* Unread events specific to this kboard. */ 91 /* Unread events specific to this kboard. */
85 Lisp_Object kbd_queue; 92 Lisp_Object kbd_queue;
86 93