comparison src/keyboard.h @ 97141:840bd675fd85 before-remove-vms

* s/ms-w32.h (MULTI_KBOARD): Remove. * xterm.c: * xselect.c: * xfns.c: * window.c: * w32term.c: * w32fns.c: * terminal.c: * termhooks.h: * term.c: * sysdep.c: * keyboard.h: * keyboard.c: * frame.h: * frame.c: * frame.c: Remove references to MULTI_KBOARD, it is now the default. * config.in: Regenerate. * config.nt (MULTI_KBOARD): Remove. * configure.in (MULTI_KBOARD): Remove.
author Dan Nicolaescu <dann@ics.uci.edu>
date Thu, 31 Jul 2008 02:47:32 +0000
parents ebf3bd5f0017
children cf43f4e3ecc8
comparison
equal deleted inserted replaced
97140:9637a590d441 97141:840bd675fd85
169 /* If we have echoed a prompt string specified by the user, 169 /* If we have echoed a prompt string specified by the user,
170 this is its length in characters. Otherwise this is -1. */ 170 this is its length in characters. Otherwise this is -1. */
171 char echo_after_prompt; 171 char echo_after_prompt;
172 }; 172 };
173 173
174 #ifdef MULTI_KBOARD
175 /* Temporarily used before a frame has been opened. */ 174 /* Temporarily used before a frame has been opened. */
176 extern KBOARD *initial_kboard; 175 extern KBOARD *initial_kboard;
177 176
178 /* In the single-kboard state, this is the kboard 177 /* In the single-kboard state, this is the kboard
179 from which input is accepted. 178 from which input is accepted.
186 /* A list of all kboard objects, linked through next_kboard. */ 185 /* A list of all kboard objects, linked through next_kboard. */
187 extern KBOARD *all_kboards; 186 extern KBOARD *all_kboards;
188 187
189 /* Nonzero in the single-kboard state, 0 in the any-kboard state. */ 188 /* Nonzero in the single-kboard state, 0 in the any-kboard state. */
190 extern int single_kboard; 189 extern int single_kboard;
191 #else
192 extern KBOARD the_only_kboard;
193 #define current_kboard (&the_only_kboard)
194 #define all_kboards (&the_only_kboard)
195 #define single_kboard 1
196 #endif
197 190
198 /* Total number of times read_char has returned. */ 191 /* Total number of times read_char has returned. */
199 extern int num_input_events; 192 extern int num_input_events;
200 193
201 /* Total number of times read_char has returned, outside of macros. */ 194 /* Total number of times read_char has returned, outside of macros. */