diff options
| author | Karl Heuer | 1995-06-16 04:56:05 +0000 |
|---|---|---|
| committer | Karl Heuer | 1995-06-16 04:56:05 +0000 |
| commit | 063c96e6754f8f3cb55f0afaf7f8dc4419205b03 (patch) | |
| tree | f62034e53c8b94c67b860152fefebbd0f6a30291 /src | |
| parent | 7dd1926ebeedeb4e1331ea7e6e982ab061a7de60 (diff) | |
| download | emacs-063c96e6754f8f3cb55f0afaf7f8dc4419205b03.tar.gz emacs-063c96e6754f8f3cb55f0afaf7f8dc4419205b03.zip | |
(struct kboard): Add Voverriding_terminal_local_map.
Diffstat (limited to 'src')
| -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 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; |