# HG changeset patch # User Karl Heuer # Date 803278565 0 # Node ID 572f267636d5ed7aa5188772ca1fd00398ce693a # Parent 95ebca0a74d832dc4c4fb24ea5aa8b191c6ca658 (struct kboard): Add Voverriding_terminal_local_map. diff -r 95ebca0a74d8 -r 572f267636d5 src/keyboard.h --- a/src/keyboard.h Fri Jun 16 04:39:46 1995 +0000 +++ b/src/keyboard.h Fri Jun 16 04:56:05 1995 +0000 @@ -66,6 +66,13 @@ { KBOARD *next_kboard; + /* If non-nil, a keymap that overrides all others but applies only to + this KBOARD. Lisp code that uses this instead of calling read-char + can effectively wait for input in the any-kboard state, and hence + avoid blocking out the other KBOARDs. See universal-argument in + lisp/simple.el for an example. */ + Lisp_Object Voverriding_terminal_local_map; + /* Last command executed by the editor command loop, not counting commands that set the prefix argument. */ Lisp_Object Vlast_command;