aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-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