aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/keyboard.h7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/keyboard.h b/src/keyboard.h
index f974b749857..7521cfcc941 100644
--- a/src/keyboard.h
+++ b/src/keyboard.h
@@ -66,6 +66,13 @@ struct kboard
66 { 66 {
67 KBOARD *next_kboard; 67 KBOARD *next_kboard;
68 68
69 /* If non-nil, a keymap that overrides all others but applies only to
70 this KBOARD. Lisp code that uses this instead of calling read-char
71 can effectively wait for input in the any-kboard state, and hence
72 avoid blocking out the other KBOARDs. See universal-argument in
73 lisp/simple.el for an example. */
74 Lisp_Object Voverriding_terminal_local_map;
75
69 /* Last command executed by the editor command loop, not counting 76 /* Last command executed by the editor command loop, not counting
70 commands that set the prefix argument. */ 77 commands that set the prefix argument. */
71 Lisp_Object Vlast_command; 78 Lisp_Object Vlast_command;