Removed %T in mode-line-format. Trivial documentation changes.
[bpt/emacs.git] / src / keyboard.c
CommitLineData
284f4730 1/* Keyboard and mouse input; editor command loop.
b65c1b44 2 Copyright (C) 1985,86,87,88,89,93,94,95,96,97,99,2000,01,02,03,04
39aab679 3 Free Software Foundation, Inc.
284f4730
JB
4
5This file is part of GNU Emacs.
6
7GNU Emacs is free software; you can redistribute it and/or modify
8it under the terms of the GNU General Public License as published by
7b4aedb9 9the Free Software Foundation; either version 2, or (at your option)
284f4730
JB
10any later version.
11
12GNU Emacs is distributed in the hope that it will be useful,
13but WITHOUT ANY WARRANTY; without even the implied warranty of
14MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15GNU General Public License for more details.
16
17You should have received a copy of the GNU General Public License
18along with GNU Emacs; see the file COPYING. If not, write to
3b7ad313
EN
19the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
20Boston, MA 02111-1307, USA. */
284f4730 21
18160b98 22#include <config.h>
68c45bf0 23#include <signal.h>
284f4730 24#include <stdio.h>
9628b887 25#include "lisp.h"
284f4730
JB
26#include "termchar.h"
27#include "termopts.h"
428a555e 28#include "frame.h"
284f4730
JB
29#include "termhooks.h"
30#include "macros.h"
02639609 31#include "keyboard.h"
284f4730
JB
32#include "window.h"
33#include "commands.h"
34#include "buffer.h"
37cd9f30 35#include "charset.h"
284f4730 36#include "disptab.h"
f4255cd1 37#include "dispextern.h"
e39da3d7 38#include "syntax.h"
497ba7a1 39#include "intervals.h"
bdb7aa47 40#include "keymap.h"
9ac0d9e0 41#include "blockinput.h"
e8886a1d 42#include "puresize.h"
8a9f5d3c
GM
43#include "systime.h"
44#include "atimer.h"
284f4730
JB
45#include <setjmp.h>
46#include <errno.h>
47
80e4aa30
RS
48#ifdef MSDOS
49#include "msdos.h"
50#include <time.h>
51#else /* not MSDOS */
284f4730
JB
52#ifndef VMS
53#include <sys/ioctl.h>
284f4730 54#endif
80e4aa30 55#endif /* not MSDOS */
284f4730 56
52baf19e 57#include "syssignal.h"
52baf19e 58
03cee6ae
GM
59#include <sys/types.h>
60#ifdef HAVE_UNISTD_H
61#include <unistd.h>
62#endif
63
c5e3b6c5
RS
64/* This is to get the definitions of the XK_ symbols. */
65#ifdef HAVE_X_WINDOWS
66#include "xterm.h"
67#endif
68
e98a93eb
GV
69#ifdef HAVE_NTGUI
70#include "w32term.h"
71#endif /* HAVE_NTGUI */
72
e0f712ba 73#ifdef MAC_OS
1a578e9b
AC
74#include "macterm.h"
75#endif
76
02639609 77#ifndef USE_CRT_DLL
52baf19e 78extern int errno;
02639609 79#endif
52baf19e 80
9ac0d9e0
JB
81/* Variables for blockinput.h: */
82
83/* Non-zero if interrupt input is blocked right now. */
63927c41 84int interrupt_input_blocked;
9ac0d9e0
JB
85
86/* Nonzero means an input interrupt has arrived
87 during the current critical section. */
63927c41 88int interrupt_input_pending;
9ac0d9e0
JB
89
90
e98a93eb 91#ifdef HAVE_WINDOW_SYSTEM
284f4730 92/* Make all keyboard buffers much bigger when using X windows. */
e0f712ba
AC
93#ifdef MAC_OS8
94/* But not too big (local data > 32K error) if on Mac OS Classic. */
f019cded
RS
95#define KBD_BUFFER_SIZE 512
96#else
284f4730 97#define KBD_BUFFER_SIZE 4096
f019cded 98#endif
284f4730 99#else /* No X-windows, character input */
de11c1ea 100#define KBD_BUFFER_SIZE 4096
284f4730
JB
101#endif /* No X-windows */
102
222d557c
GM
103#define abs(x) ((x) >= 0 ? (x) : -(x))
104
284f4730
JB
105/* Following definition copied from eval.c */
106
107struct backtrace
108 {
109 struct backtrace *next;
110 Lisp_Object *function;
111 Lisp_Object *args; /* Points to vector of args. */
112 int nargs; /* length of vector. If nargs is UNEVALLED,
113 args points to slot holding list of
114 unevalled args */
115 char evalargs;
116 };
117
c5fdd383
KH
118#ifdef MULTI_KBOARD
119KBOARD *initial_kboard;
120KBOARD *current_kboard;
121KBOARD *all_kboards;
1e8bd3da 122int single_kboard;
6c6083a9 123#else
c5fdd383 124KBOARD the_only_kboard;
6c6083a9 125#endif
612b78ef 126
284f4730
JB
127/* Non-nil disable property on a command means
128 do not execute it; call disabled-command-hook's value instead. */
2e894dab 129Lisp_Object Qdisabled, Qdisabled_command_hook;
284f4730
JB
130
131#define NUM_RECENT_KEYS (100)
132int recent_keys_index; /* Index for storing next element into recent_keys */
133int total_keys; /* Total number of elements stored into recent_keys */
5160df46 134Lisp_Object recent_keys; /* A vector, holding the last 100 keystrokes */
284f4730 135
6569cc8d
JB
136/* Vector holding the key sequence that invoked the current command.
137 It is reused for each command, and it may be longer than the current
138 sequence; this_command_key_count indicates how many elements
139 actually mean something.
140 It's easier to staticpro a single Lisp_Object than an array. */
141Lisp_Object this_command_keys;
142int this_command_key_count;
284f4730 143
63020c46
RS
144/* 1 after calling Freset_this_command_lengths.
145 Usually it is 0. */
146int this_command_key_count_reset;
147
7d18f9ae
RS
148/* This vector is used as a buffer to record the events that were actually read
149 by read_key_sequence. */
150Lisp_Object raw_keybuf;
151int raw_keybuf_count;
152
153#define GROW_RAW_KEYBUF \
7189cad8 154 if (raw_keybuf_count == XVECTOR (raw_keybuf)->size) \
7d18f9ae
RS
155 { \
156 int newsize = 2 * XVECTOR (raw_keybuf)->size; \
157 Lisp_Object new; \
158 new = Fmake_vector (make_number (newsize), Qnil); \
159 bcopy (XVECTOR (raw_keybuf)->contents, XVECTOR (new)->contents, \
160 raw_keybuf_count * sizeof (Lisp_Object)); \
161 raw_keybuf = new; \
162 }
163
6321824f
RS
164/* Number of elements of this_command_keys
165 that precede this key sequence. */
166int this_single_command_key_start;
167
71918b75
RS
168/* Record values of this_command_key_count and echo_length ()
169 before this command was read. */
170static int before_command_key_count;
171static int before_command_echo_length;
71918b75 172
284f4730
JB
173extern int minbuf_level;
174
a59b172a
RS
175extern int message_enable_multibyte;
176
284f4730
JB
177extern struct backtrace *backtrace_list;
178
7ee32cda
GM
179/* If non-nil, the function that implements the display of help.
180 It's called with one argument, the help string to display. */
181
182Lisp_Object Vshow_help_function;
183
f0c1cc56
GM
184/* If a string, the message displayed before displaying a help-echo
185 in the echo area. */
186
187Lisp_Object Vpre_help_message;
188
284f4730 189/* Nonzero means do menu prompting. */
f0c1cc56 190
284f4730
JB
191static int menu_prompting;
192
193/* Character to see next line of menu prompt. */
f0c1cc56 194
284f4730
JB
195static Lisp_Object menu_prompt_more_char;
196
197/* For longjmp to where kbd input is being done. */
f0c1cc56 198
284f4730
JB
199static jmp_buf getcjmp;
200
201/* True while doing kbd input. */
202int waiting_for_input;
203
204/* True while displaying for echoing. Delays C-g throwing. */
985f9f66 205
c843d6c6 206int echoing;
284f4730 207
985f9f66
GM
208/* Non-null means we can start echoing at the next input pause even
209 though there is something in the echo area. */
210
211static struct kboard *ok_to_echo_at_next_pause;
212
59a84f8e
GM
213/* The kboard last echoing, or null for none. Reset to 0 in
214 cancel_echoing. If non-null, and a current echo area message
215 exists, and echo_message_buffer is eq to the current message
216 buffer, we know that the message comes from echo_kboard. */
985f9f66 217
f49aedfd 218struct kboard *echo_kboard;
1fc93d49 219
59a84f8e
GM
220/* The buffer used for echoing. Set in echo_now, reset in
221 cancel_echoing. */
222
c843d6c6 223Lisp_Object echo_message_buffer;
59a84f8e 224
03361bcc
RS
225/* Nonzero means disregard local maps for the menu bar. */
226static int inhibit_local_menu_bar_menus;
227
80e4aa30 228/* Nonzero means C-g should cause immediate error-signal. */
284f4730
JB
229int immediate_quit;
230
fa90970d
RS
231/* The user's ERASE setting. */
232Lisp_Object Vtty_erase_char;
233
284f4730 234/* Character to recognize as the help char. */
7e85b935 235Lisp_Object Vhelp_char;
284f4730 236
ecb7cb34
KH
237/* List of other event types to recognize as meaning "help". */
238Lisp_Object Vhelp_event_list;
239
284f4730
JB
240/* Form to execute when help char is typed. */
241Lisp_Object Vhelp_form;
242
7e85b935
RS
243/* Command to run when the help character follows a prefix key. */
244Lisp_Object Vprefix_help_command;
245
9f9c0e27
RS
246/* List of items that should move to the end of the menu bar. */
247Lisp_Object Vmenu_bar_final_items;
a73c5e29 248
6526ab49
RS
249/* Non-nil means show the equivalent key-binding for
250 any M-x command that has one.
251 The value can be a length of time to show the message for.
252 If the value is non-nil and not a number, we wait 2 seconds. */
253Lisp_Object Vsuggest_key_bindings;
254
00392ce6
MB
255/* How long to display an echo-area message when the minibuffer is active.
256 If the value is not a number, such messages don't time out. */
257Lisp_Object Vminibuffer_message_timeout;
258
284f4730
JB
259/* Character that causes a quit. Normally C-g.
260
261 If we are running on an ordinary terminal, this must be an ordinary
262 ASCII char, since we want to make it our interrupt character.
263
264 If we are not running on an ordinary terminal, it still needs to be
265 an ordinary ASCII char. This character needs to be recognized in
266 the input interrupt handler. At this point, the keystroke is
267 represented as a struct input_event, while the desired quit
268 character is specified as a lispy event. The mapping from struct
269 input_events to lispy events cannot run in an interrupt handler,
270 and the reverse mapping is difficult for anything but ASCII
271 keystrokes.
272
273 FOR THESE ELABORATE AND UNSATISFYING REASONS, quit_char must be an
274 ASCII character. */
275int quit_char;
276
277extern Lisp_Object current_global_map;
278extern int minibuf_level;
279
9dd3131c
RS
280/* If non-nil, this is a map that overrides all other local maps. */
281Lisp_Object Voverriding_local_map;
282
d0a49716
RS
283/* If non-nil, Voverriding_local_map applies to the menu bar. */
284Lisp_Object Voverriding_local_map_menu_flag;
285
7f07d5ca
RS
286/* Keymap that defines special misc events that should
287 be processed immediately at a low level. */
288Lisp_Object Vspecial_event_map;
289
284f4730
JB
290/* Current depth in recursive edits. */
291int command_loop_level;
292
293/* Total number of times command_loop has read a key sequence. */
31ade731 294EMACS_INT num_input_keys;
284f4730
JB
295
296/* Last input character read as a command. */
297Lisp_Object last_command_char;
298
7d6de002
RS
299/* Last input character read as a command, not counting menus
300 reached by the mouse. */
301Lisp_Object last_nonmenu_event;
302
284f4730
JB
303/* Last input character read for any purpose. */
304Lisp_Object last_input_char;
305
dbc4e1c1 306/* If not Qnil, a list of objects to be read as subsequent command input. */
24597608 307Lisp_Object Vunread_command_events;
284f4730 308
7d18f9ae
RS
309/* If not Qnil, a list of objects to be read as subsequent command input
310 including input method processing. */
311Lisp_Object Vunread_input_method_events;
312
313/* If not Qnil, a list of objects to be read as subsequent command input
314 but NOT including input method processing. */
315Lisp_Object Vunread_post_input_method_events;
316
86e5706b 317/* If not -1, an event to be read as subsequent command input. */
31ade731 318EMACS_INT unread_command_char;
86e5706b 319
cd21b839
JB
320/* If not Qnil, this is a switch-frame event which we decided to put
321 off until the end of a key sequence. This should be read as the
dbc4e1c1 322 next command input, after any unread_command_events.
8f805655
JB
323
324 read_key_sequence uses this to delay switch-frame events until the
325 end of the key sequence; Fread_char uses it to put off switch-frame
326 events until a non-ASCII event is acceptable as input. */
327Lisp_Object unread_switch_frame;
cd21b839 328
9fa4395d 329/* A mask of extra modifier bits to put into every keyboard char. */
31ade731 330EMACS_INT extra_keyboard_modifiers;
9fa4395d 331
284f4730
JB
332/* Char to use as prefix when a meta character is typed in.
333 This is bound on entry to minibuffer in case ESC is changed there. */
334
335Lisp_Object meta_prefix_char;
336
337/* Last size recorded for a current buffer which is not a minibuffer. */
338static int last_non_minibuf_size;
339
06ef7355 340/* Number of idle seconds before an auto-save and garbage collection. */
284f4730
JB
341static Lisp_Object Vauto_save_timeout;
342
343/* Total number of times read_char has returned. */
4abfba1f 344int num_input_events;
284f4730 345
51172b6d 346/* Total number of times read_char has returned, outside of macros. */
31ade731 347EMACS_INT num_nonmacro_input_events;
51172b6d 348
284f4730
JB
349/* Auto-save automatically when this many characters have been typed
350 since the last time. */
351
31ade731 352static EMACS_INT auto_save_interval;
284f4730 353
c43b1734 354/* Value of num_nonmacro_input_events as of last auto save. */
284f4730
JB
355
356int last_auto_save;
357
284f4730 358/* The command being executed by the command loop.
6c7178b9
KH
359 Commands may set this, and the value set will be copied into
360 current_kboard->Vlast_command instead of the actual command. */
d5eecefb
RS
361Lisp_Object Vthis_command;
362
363/* This is like Vthis_command, except that commands never set it. */
364Lisp_Object real_this_command;
284f4730 365
8b9940e6
KS
366/* If the lookup of the command returns a binding, the original
367 command is stored in this-original-command. It is nil otherwise. */
368Lisp_Object Vthis_original_command;
369
b453f72e
KH
370/* The value of point when the last command was executed. */
371int last_point_position;
372
047688cb
RS
373/* The buffer that was current when the last command was started. */
374Lisp_Object last_point_position_buffer;
375
4c52b668
KH
376/* The frame in which the last input event occurred, or Qmacro if the
377 last event came from a macro. We use this to determine when to
378 generate switch-frame events. This may be cleared by functions
379 like Fselect_frame, to make sure that a switch-frame event is
380 generated by the next character. */
381Lisp_Object internal_last_event_frame;
4c52b668
KH
382
383/* A user-visible version of the above, intended to allow users to
384 figure out where the last event came from, if the event doesn't
385 carry that information itself (i.e. if it was a character). */
386Lisp_Object Vlast_event_frame;
387
1113d9db
JB
388/* The timestamp of the last input event we received from the X server.
389 X Windows wants this for selection ownership. */
284f4730
JB
390unsigned long last_event_timestamp;
391
392Lisp_Object Qself_insert_command;
393Lisp_Object Qforward_char;
394Lisp_Object Qbackward_char;
e58aa385 395Lisp_Object Qundefined;
d925fb39 396Lisp_Object Qtimer_event_handler;
284f4730
JB
397
398/* read_key_sequence stores here the command definition of the
399 key sequence that it reads. */
400Lisp_Object read_key_sequence_cmd;
401
39aab679
DL
402/* Echo unfinished commands after this many seconds of pause. */
403Lisp_Object Vecho_keystrokes;
404
284f4730
JB
405/* Form to evaluate (if non-nil) when Emacs is started. */
406Lisp_Object Vtop_level;
407
a0acc6c7 408/* User-supplied table to translate input characters. */
284f4730
JB
409Lisp_Object Vkeyboard_translate_table;
410
411/* Keymap mapping ASCII function key sequences onto their preferred forms. */
412extern Lisp_Object Vfunction_key_map;
413
e0301c07
RS
414/* Another keymap that maps key sequences into key sequences.
415 This one takes precedence over ordinary definitions. */
416extern Lisp_Object Vkey_translation_map;
a612e298 417
7d18f9ae
RS
418/* If non-nil, this implements the current input method. */
419Lisp_Object Vinput_method_function;
420Lisp_Object Qinput_method_function;
421
d5eecefb
RS
422/* When we call Vinput_method_function,
423 this holds the echo area message that was just erased. */
424Lisp_Object Vinput_method_previous_message;
425
86e5706b
RS
426/* Non-nil means deactivate the mark at end of this command. */
427Lisp_Object Vdeactivate_mark;
428
48e416d4
RS
429/* Menu bar specified in Lucid Emacs fashion. */
430
431Lisp_Object Vlucid_menu_bar_dirty_flag;
432Lisp_Object Qrecompute_lucid_menubar, Qactivate_menubar_hook;
433
cf24f894 434Lisp_Object Qecho_area_clear_hook;
cdb9d665 435
86e5706b 436/* Hooks to run before and after each command. */
59aadc81
RS
437Lisp_Object Qpre_command_hook, Vpre_command_hook;
438Lisp_Object Qpost_command_hook, Vpost_command_hook;
40932d1a 439Lisp_Object Qcommand_hook_internal, Vcommand_hook_internal;
59aadc81
RS
440/* Hook run after a command if there's no more input soon. */
441Lisp_Object Qpost_command_idle_hook, Vpost_command_idle_hook;
442
443/* Delay time in microseconds before running post-command-idle-hook. */
31ade731 444EMACS_INT post_command_idle_delay;
86e5706b 445
8a792f3a
RS
446/* List of deferred actions to be performed at a later time.
447 The precise format isn't relevant here; we just check whether it is nil. */
448Lisp_Object Vdeferred_action_list;
449
450/* Function to call to handle deferred actions, when there are any. */
451Lisp_Object Vdeferred_action_function;
3ef14e46 452Lisp_Object Qdeferred_action_function;
8a792f3a 453
d5eecefb
RS
454Lisp_Object Qinput_method_exit_on_first_char;
455Lisp_Object Qinput_method_use_echo_area;
456
284f4730
JB
457/* File in which we write all commands we read. */
458FILE *dribble;
459
460/* Nonzero if input is available. */
461int input_pending;
462
3626fb1a
GM
463/* Non-zero means force key bindings update in parse_menu_item. */
464
465int update_menu_bindings;
466
284f4730
JB
467extern char *pending_malloc_warning;
468
beecf6a1 469/* Circular buffer for pre-read keyboard input. */
da8f7368 470
beecf6a1
KH
471static struct input_event kbd_buffer[KBD_BUFFER_SIZE];
472
beecf6a1
KH
473/* Pointer to next available character in kbd_buffer.
474 If kbd_fetch_ptr == kbd_store_ptr, the buffer is empty.
5cb6905d 475 This may be kbd_buffer + KBD_BUFFER_SIZE, meaning that the
beecf6a1
KH
476 next available char is in kbd_buffer[0]. */
477static struct input_event *kbd_fetch_ptr;
478
479/* Pointer to next place to store character in kbd_buffer. This
480 may be kbd_buffer + KBD_BUFFER_SIZE, meaning that the next
481 character should go in kbd_buffer[0]. */
7ee32cda 482static struct input_event * volatile kbd_store_ptr;
beecf6a1
KH
483
484/* The above pair of variables forms a "queue empty" flag. When we
485 enqueue a non-hook event, we increment kbd_store_ptr. When we
486 dequeue a non-hook event, we increment kbd_fetch_ptr. We say that
487 there is input available iff the two pointers are not equal.
488
489 Why not just have a flag set and cleared by the enqueuing and
490 dequeuing functions? Such a flag could be screwed up by interrupts
491 at inopportune times. */
492
f3253854 493/* If this flag is non-nil, we check mouse_moved to see when the
a9d77f1f
RS
494 mouse moves, and motion events will appear in the input stream.
495 Otherwise, mouse motion is ignored. */
e10da507 496Lisp_Object do_mouse_tracking;
284f4730 497
284f4730
JB
498/* Symbols to head events. */
499Lisp_Object Qmouse_movement;
3c370943 500Lisp_Object Qscroll_bar_movement;
cd21b839 501Lisp_Object Qswitch_frame;
bbdc2092 502Lisp_Object Qdelete_frame;
af17bd2b
KH
503Lisp_Object Qiconify_frame;
504Lisp_Object Qmake_frame_visible;
a697f886 505Lisp_Object Qselect_window;
7ee32cda 506Lisp_Object Qhelp_echo;
cd21b839 507
284f4730
JB
508/* Symbols to denote kinds of events. */
509Lisp_Object Qfunction_key;
510Lisp_Object Qmouse_click;
742fbed7 511#ifdef WINDOWSNT
1161d367 512Lisp_Object Qlanguage_change;
07de30b9 513#endif
a24dc617 514Lisp_Object Qdrag_n_drop;
4ebc27a5
JD
515Lisp_Object Qsave_session;
516
284f4730 517/* Lisp_Object Qmouse_movement; - also an event header */
284f4730
JB
518
519/* Properties of event headers. */
520Lisp_Object Qevent_kind;
88cb0656 521Lisp_Object Qevent_symbol_elements;
284f4730 522
e8886a1d
RS
523/* menu item parts */
524Lisp_Object Qmenu_alias;
598a9fa7 525Lisp_Object Qmenu_enable;
74c1de23
RS
526Lisp_Object QCenable, QCvisible, QChelp, QCfilter, QCkeys, QCkey_sequence;
527Lisp_Object QCbutton, QCtoggle, QCradio;
e8886a1d
RS
528extern Lisp_Object Vdefine_key_rebound_commands;
529extern Lisp_Object Qmenu_item;
598a9fa7 530
0a7f1fc0
JB
531/* An event header symbol HEAD may have a property named
532 Qevent_symbol_element_mask, which is of the form (BASE MODIFIERS);
533 BASE is the base, unmodified version of HEAD, and MODIFIERS is the
534 mask of modifiers applied to it. If present, this is used to help
535 speed up parse_modifiers. */
536Lisp_Object Qevent_symbol_element_mask;
537
538/* An unmodified event header BASE may have a property named
539 Qmodifier_cache, which is an alist mapping modifier masks onto
540 modified versions of BASE. If present, this helps speed up
541 apply_modifiers. */
542Lisp_Object Qmodifier_cache;
543
5ec75a55 544/* Symbols to use for parts of windows. */
284f4730 545Lisp_Object Qmode_line;
e5d77022 546Lisp_Object Qvertical_line;
3c370943 547Lisp_Object Qvertical_scroll_bar;
5ec75a55 548Lisp_Object Qmenu_bar;
7d60ad8a 549extern Lisp_Object Qleft_margin, Qright_margin;
3d566707 550extern Lisp_Object Qleft_fringe, Qright_fringe;
2e3f0f61 551extern Lisp_Object QCmap;
5ec75a55 552
f4255cd1
JB
553Lisp_Object recursive_edit_unwind (), command_loop ();
554Lisp_Object Fthis_command_keys ();
03b4122a 555Lisp_Object Qextended_command_history;
c04cbc3b 556EMACS_TIME timer_check ();
284f4730 557
a0acc6c7 558extern Lisp_Object Vhistory_length, Vtranslation_table_for_input;
f4385381 559
2c834fb3
KH
560extern char *x_get_keysym_name ();
561
8eb4d8ef 562static void record_menu_key ();
22b94eeb 563static int echo_length ();
8eb4d8ef 564
f4eef8b4
RS
565Lisp_Object Qpolling_period;
566
d9d4c147 567/* List of absolute timers. Appears in order of next scheduled event. */
c04cbc3b
RS
568Lisp_Object Vtimer_list;
569
d9d4c147
KH
570/* List of idle time timers. Appears in order of next scheduled event. */
571Lisp_Object Vtimer_idle_list;
572
87dd9b9b
RS
573/* Incremented whenever a timer is run. */
574int timers_run;
575
a9f16aa9
KH
576extern Lisp_Object Vprint_level, Vprint_length;
577
ffd56f97
JB
578/* Address (if not 0) of EMACS_TIME to zero out if a SIGIO interrupt
579 happens. */
580EMACS_TIME *input_available_clear_time;
284f4730
JB
581
582/* Nonzero means use SIGIO interrupts; zero means use CBREAK mode.
583 Default is 1 if INTERRUPT_INPUT is defined. */
584int interrupt_input;
585
586/* Nonzero while interrupts are temporarily deferred during redisplay. */
587int interrupts_deferred;
588
284f4730
JB
589/* Allow m- file to inhibit use of FIONREAD. */
590#ifdef BROKEN_FIONREAD
591#undef FIONREAD
592#endif
593
594/* We are unable to use interrupts if FIONREAD is not available,
595 so flush SIGIO so we won't try. */
596#ifndef FIONREAD
597#ifdef SIGIO
598#undef SIGIO
599#endif
600#endif
601
e98a93eb 602/* If we support a window system, turn on the code to poll periodically
34f04431 603 to detect C-g. It isn't actually used when doing interrupt input. */
742fbed7 604#if defined(HAVE_WINDOW_SYSTEM) && !defined(USE_ASYNC_EVENTS)
284f4730
JB
605#define POLL_FOR_INPUT
606#endif
adf5cb9c
KH
607
608/* After a command is executed, if point is moved into a region that
609 has specific properties (e.g. composition, display), we adjust
610 point to the boundary of the region. But, if a command sets this
27fd22dc 611 variable to non-nil, we suppress this point adjustment. This
adf5cb9c 612 variable is set to nil before reading a command. */
da8f7368 613
adf5cb9c
KH
614Lisp_Object Vdisable_point_adjustment;
615
616/* If non-nil, always disable point adjustment. */
da8f7368 617
adf5cb9c
KH
618Lisp_Object Vglobal_disable_point_adjustment;
619
fdbb67fe
GM
620/* The time when Emacs started being idle. */
621
622static EMACS_TIME timer_idleness_start_time;
623
3021d3a9
RS
624/* After Emacs stops being idle, this saves the last value
625 of timer_idleness_start_time from when it was idle. */
626
627static EMACS_TIME timer_last_idleness_start_time;
628
284f4730
JB
629\f
630/* Global variable declarations. */
631
632/* Function for init_keyboard to call with no args (if nonzero). */
633void (*keyboard_init_hook) ();
634
0bbfdc25
GM
635static int read_avail_input P_ ((int));
636static void get_input_pending P_ ((int *, int));
20057d52 637static void get_filtered_input_pending P_ ((int *, int, int));
0bbfdc25 638static int readable_events P_ ((int));
20057d52 639static int readable_filtered_events P_ ((int, int));
0bbfdc25
GM
640static Lisp_Object read_char_x_menu_prompt P_ ((int, Lisp_Object *,
641 Lisp_Object, int *));
8150596a 642static Lisp_Object read_char_x_menu_prompt ();
0bbfdc25
GM
643static Lisp_Object read_char_minibuf_menu_prompt P_ ((int, int,
644 Lisp_Object *));
645static Lisp_Object make_lispy_event P_ ((struct input_event *));
514354e9 646#ifdef HAVE_MOUSE
0bbfdc25
GM
647static Lisp_Object make_lispy_movement P_ ((struct frame *, Lisp_Object,
648 enum scroll_bar_part,
649 Lisp_Object, Lisp_Object,
650 unsigned long));
514354e9 651#endif
0bbfdc25
GM
652static Lisp_Object modify_event_symbol P_ ((int, unsigned, Lisp_Object,
653 Lisp_Object, char **,
654 Lisp_Object *, unsigned));
655static Lisp_Object make_lispy_switch_frame P_ ((Lisp_Object));
656static int parse_solitary_modifier P_ ((Lisp_Object));
3d31316f 657static int parse_solitary_modifier ();
0bbfdc25 658static void save_getcjmp P_ ((jmp_buf));
dfcf069d 659static void save_getcjmp ();
0bbfdc25 660static void restore_getcjmp P_ ((jmp_buf));
7ee32cda 661static Lisp_Object apply_modifiers P_ ((int, Lisp_Object));
0bbfdc25 662static void clear_event P_ ((struct input_event *));
9ce50b1e 663static void any_kboard_state P_ ((void));
5598c32e 664static SIGTYPE interrupt_signal P_ ((int signalnum));
114a8b8c 665static void handle_interrupt P_ ((void));
284f4730 666
8026024c
KH
667/* Nonzero means don't try to suspend even if the operating system seems
668 to support it. */
669static int cannot_suspend;
670
284f4730
JB
671/* Install the string STR as the beginning of the string of echoing,
672 so that it serves as a prompt for the next character.
673 Also start echoing. */
674
dfcf069d 675void
284f4730 676echo_prompt (str)
a4ef85ee 677 Lisp_Object str;
284f4730 678{
678e9d18 679 current_kboard->echo_string = str;
0d121f7c 680 current_kboard->echo_after_prompt = SCHARS (str);
3dbd9ee4 681 echo_now ();
284f4730
JB
682}
683
df0f2ba1 684/* Add C to the echo string, if echoing is going on.
284f4730
JB
685 C can be a character, which is printed prettily ("M-C-x" and all that
686 jazz), or a symbol, whose name is printed. */
687
dfcf069d 688void
284f4730
JB
689echo_char (c)
690 Lisp_Object c;
691{
c5fdd383 692 if (current_kboard->immediate_echo)
284f4730 693 {
678e9d18
GM
694 int size = KEY_DESCRIPTION_SIZE + 100;
695 char *buffer = (char *) alloca (size);
696 char *ptr = buffer;
697 Lisp_Object echo_string;
284f4730 698
0d121f7c 699 echo_string = current_kboard->echo_string;
c60ee5e7 700
284f4730 701 /* If someone has passed us a composite event, use its head symbol. */
88cb0656 702 c = EVENT_HEAD (c);
284f4730 703
8c18cbfb 704 if (INTEGERP (c))
284f4730 705 {
678e9d18 706 ptr = push_key_description (XINT (c), ptr, 1);
284f4730 707 }
8c18cbfb 708 else if (SYMBOLP (c))
284f4730 709 {
1b049b51
KR
710 Lisp_Object name = SYMBOL_NAME (c);
711 int nbytes = SBYTES (name);
c60ee5e7 712
0d121f7c 713 if (size - (ptr - buffer) < nbytes)
678e9d18
GM
714 {
715 int offset = ptr - buffer;
0d121f7c 716 size = max (2 * size, size + nbytes);
678e9d18
GM
717 buffer = (char *) alloca (size);
718 ptr = buffer + offset;
719 }
720
1b049b51
KR
721 ptr += copy_text (SDATA (name), ptr, nbytes,
722 STRING_MULTIBYTE (name), 1);
284f4730
JB
723 }
724
0d121f7c 725 if ((NILP (echo_string) || SCHARS (echo_string) == 0)
ecb7cb34 726 && help_char_p (c))
284f4730 727 {
678e9d18
GM
728 const char *text = " (Type ? for further options)";
729 int len = strlen (text);
c60ee5e7 730
678e9d18
GM
731 if (size - (ptr - buffer) < len)
732 {
733 int offset = ptr - buffer;
734 size += len;
735 buffer = (char *) alloca (size);
736 ptr = buffer + offset;
737 }
738
739 bcopy (text, ptr, len);
740 ptr += len;
284f4730
JB
741 }
742
0d121f7c
GM
743 /* Replace a dash from echo_dash with a space, otherwise
744 add a space at the end as a separator between keys. */
678e9d18 745 if (STRINGP (echo_string)
2ff4d3d9 746 && SCHARS (echo_string) > 1)
0d121f7c 747 {
2ff4d3d9
RS
748 Lisp_Object last_char, prev_char, idx;
749
750 idx = make_number (SCHARS (echo_string) - 2);
751 prev_char = Faref (echo_string, idx);
0d121f7c
GM
752
753 idx = make_number (SCHARS (echo_string) - 1);
754 last_char = Faref (echo_string, idx);
755
2ff4d3d9
RS
756 /* We test PREV_CHAR to make sure this isn't the echoing
757 of a minus-sign. */
758 if (XINT (last_char) == '-' && XINT (prev_char) != ' ')
0d121f7c
GM
759 Faset (echo_string, idx, make_number (' '));
760 else
761 echo_string = concat2 (echo_string, build_string (" "));
762 }
678e9d18
GM
763
764 current_kboard->echo_string
765 = concat2 (echo_string, make_string (buffer, ptr - buffer));
284f4730 766
3dbd9ee4 767 echo_now ();
284f4730
JB
768 }
769}
770
771/* Temporarily add a dash to the end of the echo string if it's not
772 empty, so that it serves as a mini-prompt for the very next character. */
773
dfcf069d 774void
284f4730
JB
775echo_dash ()
776{
678e9d18
GM
777 /* Do nothing if not echoing at all. */
778 if (NILP (current_kboard->echo_string))
779 return;
780
c5fdd383 781 if (!current_kboard->immediate_echo
0d121f7c 782 && SCHARS (current_kboard->echo_string) == 0)
284f4730 783 return;
c60ee5e7 784
7a80a6f6 785 /* Do nothing if we just printed a prompt. */
c5fdd383 786 if (current_kboard->echo_after_prompt
0d121f7c 787 == SCHARS (current_kboard->echo_string))
4bafa972 788 return;
c60ee5e7 789
284f4730
JB
790 /* Put a dash at the end of the buffer temporarily,
791 but make it go away when the next character is added. */
678e9d18
GM
792 current_kboard->echo_string = concat2 (current_kboard->echo_string,
793 build_string ("-"));
3dbd9ee4 794 echo_now ();
284f4730
JB
795}
796
797/* Display the current echo string, and begin echoing if not already
798 doing so. */
799
07a59269 800void
3dbd9ee4 801echo_now ()
284f4730 802{
c5fdd383 803 if (!current_kboard->immediate_echo)
284f4730
JB
804 {
805 int i;
c5fdd383 806 current_kboard->immediate_echo = 1;
284f4730
JB
807
808 for (i = 0; i < this_command_key_count; i++)
d0a57728
RS
809 {
810 Lisp_Object c;
22b94eeb
RS
811
812 /* Set before_command_echo_length to the value that would
813 have been saved before the start of this subcommand in
814 command_loop_1, if we had already been echoing then. */
815 if (i == this_single_command_key_start)
816 before_command_echo_length = echo_length ();
817
d0a57728
RS
818 c = XVECTOR (this_command_keys)->contents[i];
819 if (! (EVENT_HAS_PARAMETERS (c)
820 && EQ (EVENT_HEAD_KIND (EVENT_HEAD (c)), Qmouse_movement)))
821 echo_char (c);
822 }
22b94eeb
RS
823
824 /* Set before_command_echo_length to the value that would
825 have been saved before the start of this subcommand in
826 command_loop_1, if we had already been echoing then. */
827 if (this_command_key_count == this_single_command_key_start)
828 before_command_echo_length = echo_length ();
829
830 /* Put a dash at the end to invite the user to type more. */
284f4730
JB
831 echo_dash ();
832 }
833
834 echoing = 1;
678e9d18 835 message3_nolog (current_kboard->echo_string,
0d121f7c 836 SBYTES (current_kboard->echo_string),
d5db4077 837 STRING_MULTIBYTE (current_kboard->echo_string));
284f4730
JB
838 echoing = 0;
839
59a84f8e
GM
840 /* Record in what buffer we echoed, and from which kboard. */
841 echo_message_buffer = echo_area_buffer[0];
842 echo_kboard = current_kboard;
843
284f4730
JB
844 if (waiting_for_input && !NILP (Vquit_flag))
845 quit_throw_to_read_char ();
846}
847
848/* Turn off echoing, for the start of a new command. */
849
dfcf069d 850void
284f4730
JB
851cancel_echoing ()
852{
c5fdd383 853 current_kboard->immediate_echo = 0;
c5fdd383 854 current_kboard->echo_after_prompt = -1;
678e9d18 855 current_kboard->echo_string = Qnil;
59a84f8e
GM
856 ok_to_echo_at_next_pause = NULL;
857 echo_kboard = NULL;
858 echo_message_buffer = Qnil;
284f4730
JB
859}
860
861/* Return the length of the current echo string. */
862
863static int
864echo_length ()
865{
678e9d18 866 return (STRINGP (current_kboard->echo_string)
0d121f7c 867 ? SCHARS (current_kboard->echo_string)
678e9d18 868 : 0);
284f4730
JB
869}
870
871/* Truncate the current echo message to its first LEN chars.
872 This and echo_char get used by read_key_sequence when the user
ff11dfa1 873 switches frames while entering a key sequence. */
284f4730
JB
874
875static void
678e9d18
GM
876echo_truncate (nchars)
877 int nchars;
878{
879 if (STRINGP (current_kboard->echo_string))
880 current_kboard->echo_string
881 = Fsubstring (current_kboard->echo_string,
882 make_number (0), make_number (nchars));
883 truncate_echo_area (nchars);
284f4730
JB
884}
885
886\f
887/* Functions for manipulating this_command_keys. */
888static void
889add_command_key (key)
890 Lisp_Object key;
891{
22b94eeb
RS
892#if 0 /* Not needed after we made Freset_this_command_lengths
893 do the job immediately. */
71918b75
RS
894 /* If reset-this-command-length was called recently, obey it now.
895 See the doc string of that function for an explanation of why. */
896 if (before_command_restore_flag)
897 {
898 this_command_key_count = before_command_key_count_1;
6321824f
RS
899 if (this_command_key_count < this_single_command_key_start)
900 this_single_command_key_start = this_command_key_count;
71918b75
RS
901 echo_truncate (before_command_echo_length_1);
902 before_command_restore_flag = 0;
903 }
22b94eeb 904#endif
71918b75 905
f4e05d97
GM
906 if (this_command_key_count >= ASIZE (this_command_keys))
907 this_command_keys = larger_vector (this_command_keys,
908 2 * ASIZE (this_command_keys),
909 Qnil);
6569cc8d 910
f4e05d97
GM
911 AREF (this_command_keys, this_command_key_count) = key;
912 ++this_command_key_count;
284f4730 913}
f4e05d97 914
284f4730
JB
915\f
916Lisp_Object
917recursive_edit_1 ()
918{
aed13378 919 int count = SPECPDL_INDEX ();
284f4730
JB
920 Lisp_Object val;
921
922 if (command_loop_level > 0)
923 {
924 specbind (Qstandard_output, Qt);
925 specbind (Qstandard_input, Qt);
926 }
927
84265027 928#ifdef HAVE_X_WINDOWS
526a058f 929 /* The command loop has started an hourglass timer, so we have to
84265027 930 cancel it here, otherwise it will fire because the recursive edit
d8e2d5ba
PJ
931 can take some time. Do not check for display_hourglass_p here,
932 because it could already be nil. */
526a058f 933 cancel_hourglass ();
84265027
GM
934#endif
935
980a2d69
GM
936 /* This function may have been called from a debugger called from
937 within redisplay, for instance by Edebugging a function called
938 from fontification-functions. We want to allow redisplay in
939 the debugging session.
940
941 The recursive edit is left with a `(throw exit ...)'. The `exit'
942 tag is not caught anywhere in redisplay, i.e. when we leave the
943 recursive edit, the original redisplay leading to the recursive
944 edit will be unwound. The outcome should therefore be safe. */
945 specbind (Qinhibit_redisplay, Qnil);
946 redisplaying_p = 0;
947
284f4730
JB
948 val = command_loop ();
949 if (EQ (val, Qt))
950 Fsignal (Qquit, Qnil);
cb252880
RS
951 /* Handle throw from read_minibuf when using minibuffer
952 while it's active but we're in another window. */
953 if (STRINGP (val))
954 Fsignal (Qerror, Fcons (val, Qnil));
284f4730 955
cb5df6ae 956 return unbind_to (count, Qnil);
284f4730
JB
957}
958
959/* When an auto-save happens, record the "time", and don't do again soon. */
5846638c 960
07a59269 961void
284f4730
JB
962record_auto_save ()
963{
c43b1734 964 last_auto_save = num_nonmacro_input_events;
284f4730 965}
5846638c
RS
966
967/* Make an auto save happen as soon as possible at command level. */
968
dfcf069d 969void
5846638c
RS
970force_auto_save_soon ()
971{
972 last_auto_save = - auto_save_interval - 1;
241ceaf7
RS
973
974 record_asynch_buffer_change ();
5846638c 975}
284f4730 976\f
284f4730 977DEFUN ("recursive-edit", Frecursive_edit, Srecursive_edit, 0, 0, "",
4707d2d0
PJ
978 doc: /* Invoke the editor command loop recursively.
979To get out of the recursive edit, a command can do `(throw 'exit nil)';
980that tells this function to return.
981Alternately, `(throw 'exit t)' makes this function signal an error.
982This function is called by the editor initialization to begin editing. */)
983 ()
284f4730 984{
aed13378 985 int count = SPECPDL_INDEX ();
9ce50b1e 986 Lisp_Object buffer;
284f4730
JB
987
988 command_loop_level++;
989 update_mode_lines = 1;
990
9ce50b1e
GM
991 if (command_loop_level
992 && current_buffer != XBUFFER (XWINDOW (selected_window)->buffer))
993 buffer = Fcurrent_buffer ();
994 else
995 buffer = Qnil;
996
997 /* If we leave recursive_edit_1 below with a `throw' for instance,
998 like it is done in the splash screen display, we have to
999 make sure that we restore single_kboard as command_loop_1
1000 would have done if it were left normally. */
284f4730 1001 record_unwind_protect (recursive_edit_unwind,
9ce50b1e
GM
1002 Fcons (buffer, single_kboard ? Qt : Qnil));
1003
284f4730
JB
1004 recursive_edit_1 ();
1005 return unbind_to (count, Qnil);
1006}
1007
1008Lisp_Object
9ce50b1e
GM
1009recursive_edit_unwind (info)
1010 Lisp_Object info;
284f4730 1011{
9ce50b1e
GM
1012 if (BUFFERP (XCAR (info)))
1013 Fset_buffer (XCAR (info));
c60ee5e7 1014
9ce50b1e
GM
1015 if (NILP (XCDR (info)))
1016 any_kboard_state ();
1017 else
1018 single_kboard_state ();
c60ee5e7 1019
284f4730
JB
1020 command_loop_level--;
1021 update_mode_lines = 1;
1022 return Qnil;
1023}
9ce50b1e 1024
284f4730 1025\f
604ccd1d 1026static void
1e8bd3da 1027any_kboard_state ()
604ccd1d 1028{
1e8bd3da
RS
1029#ifdef MULTI_KBOARD
1030#if 0 /* Theory: if there's anything in Vunread_command_events,
1031 it will right away be read by read_key_sequence,
1032 and then if we do switch KBOARDS, it will go into the side
1033 queue then. So we don't need to do anything special here -- rms. */
604ccd1d 1034 if (CONSP (Vunread_command_events))
4524b161 1035 {
c5fdd383
KH
1036 current_kboard->kbd_queue
1037 = nconc2 (Vunread_command_events, current_kboard->kbd_queue);
1038 current_kboard->kbd_queue_has_data = 1;
4524b161 1039 }
604ccd1d 1040 Vunread_command_events = Qnil;
1e8bd3da
RS
1041#endif
1042 single_kboard = 0;
1043#endif
604ccd1d 1044}
1e8bd3da
RS
1045
1046/* Switch to the single-kboard state, making current_kboard
1047 the only KBOARD from which further input is accepted. */
1048
1049void
1050single_kboard_state ()
1051{
1052#ifdef MULTI_KBOARD
1053 single_kboard = 1;
604ccd1d 1054#endif
1e8bd3da
RS
1055}
1056
1057/* Maintain a stack of kboards, so other parts of Emacs
1058 can switch temporarily to the kboard of a given frame
1059 and then revert to the previous status. */
1060
1061struct kboard_stack
1062{
1063 KBOARD *kboard;
1064 struct kboard_stack *next;
1065};
1066
1067static struct kboard_stack *kboard_stack;
1068
1069void
1070push_frame_kboard (f)
1071 FRAME_PTR f;
1072{
ab48365b 1073#ifdef MULTI_KBOARD
1e8bd3da
RS
1074 struct kboard_stack *p
1075 = (struct kboard_stack *) xmalloc (sizeof (struct kboard_stack));
1076
1077 p->next = kboard_stack;
1078 p->kboard = current_kboard;
1079 kboard_stack = p;
1080
1081 current_kboard = FRAME_KBOARD (f);
ab48365b 1082#endif
1e8bd3da
RS
1083}
1084
1085void
1086pop_frame_kboard ()
1087{
ab48365b 1088#ifdef MULTI_KBOARD
1e8bd3da
RS
1089 struct kboard_stack *p = kboard_stack;
1090 current_kboard = p->kboard;
1091 kboard_stack = p->next;
1092 xfree (p);
ab48365b 1093#endif
1e8bd3da
RS
1094}
1095\f
1096/* Handle errors that are not handled at inner levels
1097 by printing an error message and returning to the editor command loop. */
604ccd1d 1098
284f4730
JB
1099Lisp_Object
1100cmd_error (data)
1101 Lisp_Object data;
a1341f75 1102{
a9f16aa9 1103 Lisp_Object old_level, old_length;
e881d8b2
RS
1104 char macroerror[50];
1105
160552c5
RS
1106#ifdef HAVE_X_WINDOWS
1107 if (display_hourglass_p)
1108 cancel_hourglass ();
1109#endif
1110
e881d8b2
RS
1111 if (!NILP (executing_macro))
1112 {
1113 if (executing_macro_iterations == 1)
1114 sprintf (macroerror, "After 1 kbd macro iteration: ");
1115 else
1116 sprintf (macroerror, "After %d kbd macro iterations: ",
1117 executing_macro_iterations);
1118 }
1119 else
1120 *macroerror = 0;
a9f16aa9 1121
a1341f75
RS
1122 Vstandard_output = Qt;
1123 Vstandard_input = Qt;
1124 Vexecuting_macro = Qnil;
9f58e89e 1125 executing_macro = Qnil;
d8bcf58e 1126 current_kboard->Vprefix_arg = Qnil;
75045dcb 1127 current_kboard->Vlast_prefix_arg = Qnil;
df0f2ba1 1128 cancel_echoing ();
a9f16aa9
KH
1129
1130 /* Avoid unquittable loop if data contains a circular list. */
1131 old_level = Vprint_level;
1132 old_length = Vprint_length;
0c04a67e
RS
1133 XSETFASTINT (Vprint_level, 10);
1134 XSETFASTINT (Vprint_length, 10);
e881d8b2 1135 cmd_error_internal (data, macroerror);
a9f16aa9
KH
1136 Vprint_level = old_level;
1137 Vprint_length = old_length;
a1341f75
RS
1138
1139 Vquit_flag = Qnil;
1140
1141 Vinhibit_quit = Qnil;
c5fdd383 1142#ifdef MULTI_KBOARD
1e8bd3da 1143 any_kboard_state ();
ff4b06d3 1144#endif
a1341f75
RS
1145
1146 return make_number (0);
1147}
1148
301738ed
RS
1149/* Take actions on handling an error. DATA is the data that describes
1150 the error.
1151
1152 CONTEXT is a C-string containing ASCII characters only which
1153 describes the context in which the error happened. If we need to
1154 generalize CONTEXT to allow multibyte characters, make it a Lisp
1155 string. */
1156
07a59269 1157void
a1341f75
RS
1158cmd_error_internal (data, context)
1159 Lisp_Object data;
1160 char *context;
284f4730 1161{
284f4730 1162 Lisp_Object stream;
7ee32cda 1163 int kill_emacs_p = 0;
788f89eb 1164 struct frame *sf = SELECTED_FRAME ();
284f4730
JB
1165
1166 Vquit_flag = Qnil;
1167 Vinhibit_quit = Qt;
985f9f66 1168 clear_message (1, 0);
284f4730 1169
ff11dfa1 1170 /* If the window system or terminal frame hasn't been initialized
284f4730
JB
1171 yet, or we're not interactive, it's best to dump this message out
1172 to stderr and exit. */
788f89eb 1173 if (!sf->glyphs_initialized_p
7ee32cda
GM
1174 /* This is the case of the frame dumped with Emacs, when we're
1175 running under a window system. */
114a8b8c 1176 || FRAME_INITIAL_P (sf)
284f4730 1177 || noninteractive)
7ee32cda
GM
1178 {
1179 stream = Qexternal_debugging_output;
1180 kill_emacs_p = 1;
1181 }
284f4730
JB
1182 else
1183 {
1184 Fdiscard_input ();
dc4854ce 1185 message_log_maybe_newline ();
284f4730
JB
1186 bitch_at_user ();
1187 stream = Qt;
1188 }
1189
dc4854ce
RS
1190 /* The immediate context is not interesting for Quits,
1191 since they are asyncronous. */
1192 if (EQ (XCAR (data), Qquit))
1193 Vsignaling_function = Qnil;
c60ee5e7 1194
dc4854ce 1195 print_error_message (data, stream, context, Vsignaling_function);
a1341f75 1196
dc4854ce 1197 Vsignaling_function = Qnil;
284f4730 1198
ff11dfa1 1199 /* If the window system or terminal frame hasn't been initialized
284f4730 1200 yet, or we're in -batch mode, this error should cause Emacs to exit. */
7ee32cda 1201 if (kill_emacs_p)
284f4730
JB
1202 {
1203 Fterpri (stream);
1204 Fkill_emacs (make_number (-1));
1205 }
284f4730
JB
1206}
1207\f
1208Lisp_Object command_loop_1 ();
1209Lisp_Object command_loop_2 ();
1210Lisp_Object top_level_1 ();
1211
1212/* Entry to editor-command-loop.
1213 This level has the catches for exiting/returning to editor command loop.
1214 It returns nil to exit recursive edit, t to abort it. */
1215
1216Lisp_Object
1217command_loop ()
1218{
1219 if (command_loop_level > 0 || minibuf_level > 0)
1220 {
07ba902e
RS
1221 Lisp_Object val;
1222 val = internal_catch (Qexit, command_loop_2, Qnil);
68c46464
RS
1223 executing_macro = Qnil;
1224 return val;
284f4730
JB
1225 }
1226 else
1227 while (1)
1228 {
1229 internal_catch (Qtop_level, top_level_1, Qnil);
1230 internal_catch (Qtop_level, command_loop_2, Qnil);
68c46464 1231 executing_macro = Qnil;
df0f2ba1 1232
284f4730
JB
1233 /* End of file in -batch run causes exit here. */
1234 if (noninteractive)
1235 Fkill_emacs (Qt);
1236 }
1237}
1238
1239/* Here we catch errors in execution of commands within the
1240 editing loop, and reenter the editing loop.
1241 When there is an error, cmd_error runs and returns a non-nil
27fd22dc 1242 value to us. A value of nil means that command_loop_1 itself
284f4730
JB
1243 returned due to end of file (or end of kbd macro). */
1244
1245Lisp_Object
1246command_loop_2 ()
1247{
1248 register Lisp_Object val;
1249
1250 do
1251 val = internal_condition_case (command_loop_1, Qerror, cmd_error);
1252 while (!NILP (val));
1253
1254 return Qnil;
1255}
1256
1257Lisp_Object
1258top_level_2 ()
1259{
1260 return Feval (Vtop_level);
1261}
1262
1263Lisp_Object
1264top_level_1 ()
1265{
1266 /* On entry to the outer level, run the startup file */
1267 if (!NILP (Vtop_level))
1268 internal_condition_case (top_level_2, Qerror, cmd_error);
1269 else if (!NILP (Vpurify_flag))
1270 message ("Bare impure Emacs (standard Lisp code not loaded)");
1271 else
1272 message ("Bare Emacs (standard Lisp code not loaded)");
1273 return Qnil;
1274}
1275
1276DEFUN ("top-level", Ftop_level, Stop_level, 0, 0, "",
4707d2d0
PJ
1277 doc: /* Exit all recursive editing levels. */)
1278 ()
284f4730 1279{
2c9cf2c8 1280#ifdef HAVE_X_WINDOWS
526a058f
GM
1281 if (display_hourglass_p)
1282 cancel_hourglass ();
2c9cf2c8 1283#endif
8c907a56 1284 return Fthrow (Qtop_level, Qnil);
284f4730
JB
1285}
1286
1287DEFUN ("exit-recursive-edit", Fexit_recursive_edit, Sexit_recursive_edit, 0, 0, "",
4707d2d0
PJ
1288 doc: /* Exit from the innermost recursive edit or minibuffer. */)
1289 ()
284f4730
JB
1290{
1291 if (command_loop_level > 0 || minibuf_level > 0)
1292 Fthrow (Qexit, Qnil);
1293
1294 error ("No recursive edit is in progress");
8c907a56 1295 return Qnil;
284f4730
JB
1296}
1297
1298DEFUN ("abort-recursive-edit", Fabort_recursive_edit, Sabort_recursive_edit, 0, 0, "",
4707d2d0
PJ
1299 doc: /* Abort the command that requested this recursive edit or minibuffer input. */)
1300 ()
284f4730
JB
1301{
1302 if (command_loop_level > 0 || minibuf_level > 0)
1303 Fthrow (Qexit, Qt);
1304
1305 error ("No recursive edit is in progress");
8c907a56 1306 return Qnil;
284f4730
JB
1307}
1308\f
1309/* This is the actual command reading loop,
1310 sans error-handling encapsulation. */
1311
a7b772c1
GM
1312static int read_key_sequence P_ ((Lisp_Object *, int, Lisp_Object,
1313 int, int, int));
1314void safe_run_hooks P_ ((Lisp_Object));
2a026b04 1315static void adjust_point_for_property P_ ((int, int));
284f4730 1316
0af912f0
JD
1317/* Cancel hourglass from protect_unwind.
1318 ARG is not used. */
bb8db7e1 1319#ifdef HAVE_X_WINDOWS
0af912f0
JD
1320static Lisp_Object
1321cancel_hourglass_unwind (arg)
1322 Lisp_Object arg;
1323{
1324 cancel_hourglass ();
1325}
bb8db7e1 1326#endif
0af912f0 1327
284f4730
JB
1328Lisp_Object
1329command_loop_1 ()
1330{
03cee6ae
GM
1331 Lisp_Object cmd;
1332 int lose;
284f4730
JB
1333 int nonundocount;
1334 Lisp_Object keybuf[30];
1335 int i;
284f4730 1336 int no_direct;
86e5706b 1337 int prev_modiff;
8c907a56 1338 struct buffer *prev_buffer = NULL;
c5fdd383 1339#ifdef MULTI_KBOARD
1e8bd3da 1340 int was_locked = single_kboard;
bded54dd 1341#endif
2764bebd 1342 int already_adjusted;
284f4730 1343
d9b641bb 1344 current_kboard->Vprefix_arg = Qnil;
75045dcb 1345 current_kboard->Vlast_prefix_arg = Qnil;
86e5706b 1346 Vdeactivate_mark = Qnil;
284f4730 1347 waiting_for_input = 0;
df0f2ba1 1348 cancel_echoing ();
284f4730 1349
284f4730 1350 nonundocount = 0;
284f4730 1351 this_command_key_count = 0;
63020c46 1352 this_command_key_count_reset = 0;
6321824f 1353 this_single_command_key_start = 0;
284f4730 1354
325309f5 1355 if (NILP (Vmemory_full))
59aadc81 1356 {
10ffcb64
RS
1357 /* Make sure this hook runs after commands that get errors and
1358 throw to top level. */
1359 /* Note that the value cell will never directly contain nil
1360 if the symbol is a local variable. */
1361 if (!NILP (Vpost_command_hook) && !NILP (Vrun_hooks))
1362 safe_run_hooks (Qpost_command_hook);
1363
1364 /* If displaying a message, resize the echo area window to fit
1365 that message's size exactly. */
1366 if (!NILP (echo_area_buffer[0]))
1367 resize_echo_area_exactly ();
1368
1369 if (!NILP (Vdeferred_action_list))
1370 call0 (Vdeferred_action_function);
1371
1372 if (!NILP (Vpost_command_idle_hook) && !NILP (Vrun_hooks))
1373 {
1374 if (NILP (Vunread_command_events)
1375 && NILP (Vunread_input_method_events)
1376 && NILP (Vunread_post_input_method_events)
1377 && NILP (Vexecuting_macro)
1378 && !NILP (sit_for (0, post_command_idle_delay, 0, 1, 1)))
1379 safe_run_hooks (Qpost_command_idle_hook);
1380 }
59aadc81
RS
1381 }
1382
10ffcb64
RS
1383 Vmemory_full = Qnil;
1384
51d5a2c9 1385 /* Do this after running Vpost_command_hook, for consistency. */
d5eecefb
RS
1386 current_kboard->Vlast_command = Vthis_command;
1387 current_kboard->Vreal_last_command = real_this_command;
51d5a2c9 1388
284f4730
JB
1389 while (1)
1390 {
788f89eb 1391 if (! FRAME_LIVE_P (XFRAME (selected_frame)))
a94a4335
KH
1392 Fkill_emacs (Qnil);
1393
284f4730
JB
1394 /* Make sure the current window's buffer is selected. */
1395 if (XBUFFER (XWINDOW (selected_window)->buffer) != current_buffer)
1396 set_buffer_internal (XBUFFER (XWINDOW (selected_window)->buffer));
1397
1398 /* Display any malloc warning that just came out. Use while because
1399 displaying one warning can cause another. */
1400
1401 while (pending_malloc_warning)
1402 display_malloc_warning ();
1403
1404 no_direct = 0;
1405
86e5706b
RS
1406 Vdeactivate_mark = Qnil;
1407
284f4730 1408 /* If minibuffer on and echo area in use,
00392ce6 1409 wait a short time and redraw minibuffer. */
284f4730 1410
7ee32cda 1411 if (minibuf_level
985f9f66 1412 && !NILP (echo_area_buffer[0])
00392ce6
MB
1413 && EQ (minibuf_window, echo_area_window)
1414 && NUMBERP (Vminibuffer_message_timeout))
284f4730 1415 {
f1bed6d8
RS
1416 /* Bind inhibit-quit to t so that C-g gets read in
1417 rather than quitting back to the minibuffer. */
aed13378 1418 int count = SPECPDL_INDEX ();
f1bed6d8 1419 specbind (Qinhibit_quit, Qt);
f1bed6d8 1420
00392ce6 1421 Fsit_for (Vminibuffer_message_timeout, Qnil, Qnil);
e6aa7813 1422 /* Clear the echo area. */
301738ed 1423 message2 (0, 0, 0);
cdb9d665 1424 safe_run_hooks (Qecho_area_clear_hook);
e6aa7813 1425
db08707d
RS
1426 unbind_to (count, Qnil);
1427
e6aa7813 1428 /* If a C-g came in before, treat it as input now. */
284f4730
JB
1429 if (!NILP (Vquit_flag))
1430 {
1431 Vquit_flag = Qnil;
24597608 1432 Vunread_command_events = Fcons (make_number (quit_char), Qnil);
284f4730
JB
1433 }
1434 }
1435
1436#ifdef C_ALLOCA
ff4b06d3 1437 alloca (0); /* Cause a garbage collection now */
284f4730
JB
1438 /* Since we can free the most stuff here. */
1439#endif /* C_ALLOCA */
1440
8f805655 1441#if 0
8f805655
JB
1442 /* Select the frame that the last event came from. Usually,
1443 switch-frame events will take care of this, but if some lisp
1444 code swallows a switch-frame event, we'll fix things up here.
1445 Is this a good idea? */
8c18cbfb 1446 if (FRAMEP (internal_last_event_frame)
788f89eb 1447 && !EQ (internal_last_event_frame, selected_frame))
3c370943 1448 Fselect_frame (internal_last_event_frame, Qnil);
284f4730 1449#endif
48e416d4
RS
1450 /* If it has changed current-menubar from previous value,
1451 really recompute the menubar from the value. */
a646e520
RS
1452 if (! NILP (Vlucid_menu_bar_dirty_flag)
1453 && !NILP (Ffboundp (Qrecompute_lucid_menubar)))
48e416d4
RS
1454 call0 (Qrecompute_lucid_menubar);
1455
71918b75
RS
1456 before_command_key_count = this_command_key_count;
1457 before_command_echo_length = echo_length ();
1458
d5eecefb
RS
1459 Vthis_command = Qnil;
1460 real_this_command = Qnil;
d7437ef6 1461
8f805655 1462 /* Read next key sequence; i gets its length. */
ce98e608 1463 i = read_key_sequence (keybuf, sizeof keybuf / sizeof keybuf[0],
f571ae0d 1464 Qnil, 0, 1, 1);
8f805655 1465
6fac1409 1466 /* A filter may have run while we were reading the input. */
788f89eb 1467 if (! FRAME_LIVE_P (XFRAME (selected_frame)))
a94a4335 1468 Fkill_emacs (Qnil);
6fac1409
RS
1469 if (XBUFFER (XWINDOW (selected_window)->buffer) != current_buffer)
1470 set_buffer_internal (XBUFFER (XWINDOW (selected_window)->buffer));
1471
8f805655
JB
1472 ++num_input_keys;
1473
284f4730
JB
1474 /* Now we have read a key sequence of length I,
1475 or else I is 0 and we found end of file. */
1476
1477 if (i == 0) /* End of file -- happens only in */
1478 return Qnil; /* a kbd macro, at the end. */
dcc408a0
RS
1479 /* -1 means read_key_sequence got a menu that was rejected.
1480 Just loop around and read another command. */
1481 if (i == -1)
1482 {
1483 cancel_echoing ();
1484 this_command_key_count = 0;
63020c46 1485 this_command_key_count_reset = 0;
6321824f 1486 this_single_command_key_start = 0;
ff4b06d3 1487 goto finalize;
dcc408a0 1488 }
284f4730 1489
284f4730
JB
1490 last_command_char = keybuf[i - 1];
1491
75c0b143
RS
1492 /* If the previous command tried to force a specific window-start,
1493 forget about that, in case this command moves point far away
c422836d
KH
1494 from that position. But also throw away beg_unchanged and
1495 end_unchanged information in that case, so that redisplay will
1496 update the whole window properly. */
1497 if (!NILP (XWINDOW (selected_window)->force_start))
1498 {
9351ebd0 1499 struct buffer *b;
c422836d 1500 XWINDOW (selected_window)->force_start = Qnil;
9351ebd0
GM
1501 b = XBUFFER (XWINDOW (selected_window)->buffer);
1502 BUF_BEG_UNCHANGED (b) = BUF_END_UNCHANGED (b) = 0;
c422836d 1503 }
75c0b143 1504
284f4730
JB
1505 cmd = read_key_sequence_cmd;
1506 if (!NILP (Vexecuting_macro))
1507 {
1508 if (!NILP (Vquit_flag))
1509 {
1510 Vexecuting_macro = Qt;
1511 QUIT; /* Make some noise. */
1512 /* Will return since macro now empty. */
1513 }
1514 }
1515
1516 /* Do redisplay processing after this command except in special
e35b6123 1517 cases identified below. */
86e5706b
RS
1518 prev_buffer = current_buffer;
1519 prev_modiff = MODIFF;
8746da95 1520 last_point_position = PT;
18cd2eeb 1521 XSETBUFFER (last_point_position_buffer, prev_buffer);
86e5706b 1522
adf5cb9c
KH
1523 /* By default, we adjust point to a boundary of a region that
1524 has such a property that should be treated intangible
1525 (e.g. composition, display). But, some commands will set
1526 this variable differently. */
1527 Vdisable_point_adjustment = Qnil;
a7b772c1 1528
be2488ca
GM
1529 /* Process filters and timers may have messed with deactivate-mark.
1530 reset it before we execute the command. */
1531 Vdeactivate_mark = Qnil;
1532
8b9940e6
KS
1533 /* Remap command through active keymaps */
1534 Vthis_original_command = cmd;
a34cb674 1535 if (SYMBOLP (cmd))
8b9940e6
KS
1536 {
1537 Lisp_Object cmd1;
023b93f6 1538 if (cmd1 = Fcommand_remapping (cmd), !NILP (cmd1))
8b9940e6
KS
1539 cmd = cmd1;
1540 }
1541
284f4730
JB
1542 /* Execute the command. */
1543
d5eecefb
RS
1544 Vthis_command = cmd;
1545 real_this_command = cmd;
a98ea3f9
RS
1546 /* Note that the value cell will never directly contain nil
1547 if the symbol is a local variable. */
e98a93eb 1548 if (!NILP (Vpre_command_hook) && !NILP (Vrun_hooks))
a98ea3f9 1549 safe_run_hooks (Qpre_command_hook);
c60ee5e7 1550
2764bebd
RS
1551 already_adjusted = 0;
1552
d5eecefb 1553 if (NILP (Vthis_command))
284f4730
JB
1554 {
1555 /* nil means key is undefined. */
1556 bitch_at_user ();
c5fdd383 1557 current_kboard->defining_kbd_macro = Qnil;
284f4730 1558 update_mode_lines = 1;
d8bcf58e 1559 current_kboard->Vprefix_arg = Qnil;
284f4730
JB
1560 }
1561 else
1562 {
d8bcf58e 1563 if (NILP (current_kboard->Vprefix_arg) && ! no_direct)
284f4730 1564 {
75045dcb
RS
1565 /* In case we jump to directly_done. */
1566 Vcurrent_prefix_arg = current_kboard->Vprefix_arg;
1567
284f4730
JB
1568 /* Recognize some common commands in common situations and
1569 do them directly. */
d5eecefb 1570 if (EQ (Vthis_command, Qforward_char) && PT < ZV)
284f4730 1571 {
51ad8a68 1572 struct Lisp_Char_Table *dp
284f4730 1573 = window_display_table (XWINDOW (selected_window));
aaf35234 1574 lose = FETCH_CHAR (PT_BYTE);
8458ede6 1575 SET_PT (PT + 1);
d86ba5c5
RS
1576 if (! NILP (Vpost_command_hook))
1577 /* Put this before calling adjust_point_for_property
1578 so it will only get called once in any case. */
1579 goto directly_done;
22b94eeb
RS
1580 if (current_buffer == prev_buffer
1581 && last_point_position != PT
1582 && NILP (Vdisable_point_adjustment)
1583 && NILP (Vglobal_disable_point_adjustment))
1584 adjust_point_for_property (last_point_position, 0);
2764bebd
RS
1585 already_adjusted = 1;
1586 if (PT == last_point_position + 1
1587 && (dp
1588 ? (VECTORP (DISP_CHAR_VECTOR (dp, lose))
1589 ? XVECTOR (DISP_CHAR_VECTOR (dp, lose))->size == 1
1590 : (NILP (DISP_CHAR_VECTOR (dp, lose))
1591 && (lose >= 0x20 && lose < 0x7f)))
1592 : (lose >= 0x20 && lose < 0x7f))
37cd9f30
KH
1593 /* To extract the case of continuation on
1594 wide-column characters. */
8458ede6 1595 && (WIDTH_BY_CHAR_HEAD (FETCH_BYTE (PT_BYTE)) == 1)
284f4730
JB
1596 && (XFASTINT (XWINDOW (selected_window)->last_modified)
1597 >= MODIFF)
598ba4c7
RS
1598 && (XFASTINT (XWINDOW (selected_window)->last_overlay_modified)
1599 >= OVERLAY_MODIFF)
284f4730 1600 && (XFASTINT (XWINDOW (selected_window)->last_point)
8001d352 1601 == PT - 1)
284f4730
JB
1602 && !windows_or_buffers_changed
1603 && EQ (current_buffer->selective_display, Qnil)
1604 && !detect_input_pending ()
962ae636 1605 && NILP (XWINDOW (selected_window)->column_number_displayed)
284f4730 1606 && NILP (Vexecuting_macro))
e35b6123 1607 direct_output_forward_char (1);
284f4730
JB
1608 goto directly_done;
1609 }
d5eecefb 1610 else if (EQ (Vthis_command, Qbackward_char) && PT > BEGV)
284f4730 1611 {
51ad8a68 1612 struct Lisp_Char_Table *dp
284f4730 1613 = window_display_table (XWINDOW (selected_window));
8458ede6 1614 SET_PT (PT - 1);
aaf35234 1615 lose = FETCH_CHAR (PT_BYTE);
d86ba5c5
RS
1616 if (! NILP (Vpost_command_hook))
1617 goto directly_done;
22b94eeb
RS
1618 if (current_buffer == prev_buffer
1619 && last_point_position != PT
1620 && NILP (Vdisable_point_adjustment)
1621 && NILP (Vglobal_disable_point_adjustment))
1622 adjust_point_for_property (last_point_position, 0);
2764bebd
RS
1623 already_adjusted = 1;
1624 if (PT == last_point_position - 1
1625 && (dp
1626 ? (VECTORP (DISP_CHAR_VECTOR (dp, lose))
1627 ? XVECTOR (DISP_CHAR_VECTOR (dp, lose))->size == 1
1628 : (NILP (DISP_CHAR_VECTOR (dp, lose))
1629 && (lose >= 0x20 && lose < 0x7f)))
1630 : (lose >= 0x20 && lose < 0x7f))
284f4730
JB
1631 && (XFASTINT (XWINDOW (selected_window)->last_modified)
1632 >= MODIFF)
598ba4c7
RS
1633 && (XFASTINT (XWINDOW (selected_window)->last_overlay_modified)
1634 >= OVERLAY_MODIFF)
284f4730 1635 && (XFASTINT (XWINDOW (selected_window)->last_point)
8001d352 1636 == PT + 1)
284f4730
JB
1637 && !windows_or_buffers_changed
1638 && EQ (current_buffer->selective_display, Qnil)
1639 && !detect_input_pending ()
962ae636 1640 && NILP (XWINDOW (selected_window)->column_number_displayed)
284f4730 1641 && NILP (Vexecuting_macro))
e35b6123 1642 direct_output_forward_char (-1);
284f4730
JB
1643 goto directly_done;
1644 }
d5eecefb 1645 else if (EQ (Vthis_command, Qself_insert_command)
14e40288
SM
1646 /* Try this optimization only on char keystrokes. */
1647 && NATNUMP (last_command_char)
1648 && CHAR_VALID_P (XFASTINT (last_command_char), 0))
284f4730 1649 {
d86ba5c5
RS
1650 unsigned int c
1651 = translate_char (Vtranslation_table_for_input,
1652 XFASTINT (last_command_char), 0, 0, 0);
fc9cce4e 1653 int value;
fc9cce4e
RS
1654 if (NILP (Vexecuting_macro)
1655 && !EQ (minibuf_window, selected_window))
284f4730
JB
1656 {
1657 if (!nonundocount || nonundocount >= 20)
1658 {
1659 Fundo_boundary ();
1660 nonundocount = 0;
1661 }
1662 nonundocount++;
1663 }
c60ee5e7 1664
fc9cce4e
RS
1665 lose = ((XFASTINT (XWINDOW (selected_window)->last_modified)
1666 < MODIFF)
598ba4c7
RS
1667 || (XFASTINT (XWINDOW (selected_window)->last_overlay_modified)
1668 < OVERLAY_MODIFF)
fc9cce4e
RS
1669 || (XFASTINT (XWINDOW (selected_window)->last_point)
1670 != PT)
4c61f38e 1671 || MODIFF <= SAVE_MODIFF
fc9cce4e
RS
1672 || windows_or_buffers_changed
1673 || !EQ (current_buffer->selective_display, Qnil)
1674 || detect_input_pending ()
962ae636 1675 || !NILP (XWINDOW (selected_window)->column_number_displayed)
fc9cce4e 1676 || !NILP (Vexecuting_macro));
c60ee5e7 1677
fc9cce4e 1678 value = internal_self_insert (c, 0);
7ee32cda 1679
fc9cce4e
RS
1680 if (value == 2)
1681 nonundocount = 0;
1682
294d643a
RS
1683 if (! NILP (Vpost_command_hook))
1684 /* Put this before calling adjust_point_for_property
1685 so it will only get called once in any case. */
1686 goto directly_done;
1687
7ee32cda
GM
1688 /* VALUE == 1 when AFTER-CHANGE functions are
1689 installed which is the case most of the time
1690 because FONT-LOCK installs one. */
1691 if (!lose && !value)
e35b6123 1692 direct_output_for_insert (c);
284f4730
JB
1693 goto directly_done;
1694 }
1695 }
1696
1697 /* Here for a command that isn't executed directly */
1698
0af912f0 1699 {
7ee32cda 1700#ifdef HAVE_X_WINDOWS
0af912f0
JD
1701 int scount = SPECPDL_INDEX ();
1702
1703 if (display_hourglass_p
1704 && NILP (Vexecuting_macro))
1705 {
1706 record_unwind_protect (cancel_hourglass_unwind, Qnil);
1707 start_hourglass ();
1708 }
7ee32cda
GM
1709#endif
1710
0af912f0
JD
1711 nonundocount = 0;
1712 if (NILP (current_kboard->Vprefix_arg))
1713 Fundo_boundary ();
1714 Fcommand_execute (Vthis_command, Qnil, Qnil, Qnil);
d0c48478
GM
1715
1716#ifdef HAVE_X_WINDOWS
4fbcc9b1
PJ
1717 /* Do not check display_hourglass_p here, because
1718 Fcommand_execute could change it, but we should cancel
e1204d39
RS
1719 hourglass cursor anyway.
1720 But don't cancel the hourglass within a macro
1721 just because a command in the macro finishes. */
1722 if (NILP (Vexecuting_macro))
0af912f0 1723 unbind_to (scount, Qnil);
d0c48478 1724#endif
0af912f0 1725 }
284f4730 1726 }
a764a753 1727 directly_done: ;
75045dcb 1728 current_kboard->Vlast_prefix_arg = Vcurrent_prefix_arg;
284f4730 1729
84ee6048
RS
1730 /* Note that the value cell will never directly contain nil
1731 if the symbol is a local variable. */
1732 if (!NILP (Vpost_command_hook) && !NILP (Vrun_hooks))
1733 safe_run_hooks (Qpost_command_hook);
1734
8f12e41d
GM
1735 /* If displaying a message, resize the echo area window to fit
1736 that message's size exactly. */
1737 if (!NILP (echo_area_buffer[0]))
f09c15ed 1738 resize_echo_area_exactly ();
8f12e41d 1739
84ee6048
RS
1740 if (!NILP (Vdeferred_action_list))
1741 safe_run_hooks (Qdeferred_action_function);
1742
1743 if (!NILP (Vpost_command_idle_hook) && !NILP (Vrun_hooks))
1744 {
1745 if (NILP (Vunread_command_events)
7d18f9ae
RS
1746 && NILP (Vunread_input_method_events)
1747 && NILP (Vunread_post_input_method_events)
84ee6048
RS
1748 && NILP (Vexecuting_macro)
1749 && !NILP (sit_for (0, post_command_idle_delay, 0, 1, 1)))
1750 safe_run_hooks (Qpost_command_idle_hook);
1751 }
1752
284f4730 1753 /* If there is a prefix argument,
6c7178b9
KH
1754 1) We don't want Vlast_command to be ``universal-argument''
1755 (that would be dumb), so don't set Vlast_command,
284f4730
JB
1756 2) we want to leave echoing on so that the prefix will be
1757 echoed as part of this key sequence, so don't call
1758 cancel_echoing, and
1759 3) we want to leave this_command_key_count non-zero, so that
1760 read_char will realize that it is re-reading a character, and
217258d5
KH
1761 not echo it a second time.
1762
1763 If the command didn't actually create a prefix arg,
1764 but is merely a frame event that is transparent to prefix args,
1765 then the above doesn't apply. */
1766 if (NILP (current_kboard->Vprefix_arg) || CONSP (last_command_char))
284f4730 1767 {
d5eecefb
RS
1768 current_kboard->Vlast_command = Vthis_command;
1769 current_kboard->Vreal_last_command = real_this_command;
284f4730
JB
1770 cancel_echoing ();
1771 this_command_key_count = 0;
63020c46 1772 this_command_key_count_reset = 0;
6321824f 1773 this_single_command_key_start = 0;
284f4730 1774 }
86e5706b 1775
88ce066e 1776 if (!NILP (current_buffer->mark_active) && !NILP (Vrun_hooks))
86e5706b
RS
1777 {
1778 if (!NILP (Vdeactivate_mark) && !NILP (Vtransient_mark_mode))
1779 {
2e1a49ad
SM
1780 /* We could also call `deactivate'mark'. */
1781 if (EQ (Vtransient_mark_mode, Qlambda))
1782 Vtransient_mark_mode = Qnil;
1783 else
1784 {
1785 current_buffer->mark_active = Qnil;
1786 call1 (Vrun_hooks, intern ("deactivate-mark-hook"));
1787 }
86e5706b
RS
1788 }
1789 else if (current_buffer != prev_buffer || MODIFF != prev_modiff)
1790 call1 (Vrun_hooks, intern ("activate-mark-hook"));
1791 }
ff4b06d3
KH
1792
1793 finalize:
adf5cb9c
KH
1794
1795 if (current_buffer == prev_buffer
1796 && last_point_position != PT
1797 && NILP (Vdisable_point_adjustment)
2764bebd
RS
1798 && NILP (Vglobal_disable_point_adjustment)
1799 && !already_adjusted)
2a026b04 1800 adjust_point_for_property (last_point_position, MODIFF != prev_modiff);
adf5cb9c 1801
ff4b06d3
KH
1802 /* Install chars successfully executed in kbd macro. */
1803
d8bcf58e
KH
1804 if (!NILP (current_kboard->defining_kbd_macro)
1805 && NILP (current_kboard->Vprefix_arg))
ff4b06d3
KH
1806 finalize_kbd_macro_chars ();
1807
c5fdd383 1808#ifdef MULTI_KBOARD
604ccd1d 1809 if (!was_locked)
1e8bd3da 1810 any_kboard_state ();
ff4b06d3 1811#endif
284f4730
JB
1812 }
1813}
1c9784c9 1814
adf5cb9c
KH
1815extern Lisp_Object Qcomposition, Qdisplay;
1816
1817/* Adjust point to a boundary of a region that has such a property
1818 that should be treated intangible. For the moment, we check
7e16ef60
SM
1819 `composition', `display' and `invisible' properties.
1820 LAST_PT is the last position of point. */
adf5cb9c 1821
14e40288
SM
1822extern Lisp_Object Qafter_string, Qbefore_string;
1823extern Lisp_Object get_pos_property P_ ((Lisp_Object, Lisp_Object, Lisp_Object));
1824
adf5cb9c 1825static void
2a026b04 1826adjust_point_for_property (last_pt, modified)
adf5cb9c 1827 int last_pt;
2a026b04 1828 int modified;
adf5cb9c 1829{
7e16ef60
SM
1830 int beg, end;
1831 Lisp_Object val, overlay, tmp;
1832 int check_composition = 1, check_display = 1, check_invisible = 1;
0bbdffbd 1833 int orig_pt = PT;
adf5cb9c 1834
0bbdffbd
SM
1835 /* FIXME: cycling is probably not necessary because these properties
1836 can't be usefully combined anyway. */
7e16ef60 1837 while (check_composition || check_display || check_invisible)
adf5cb9c
KH
1838 {
1839 if (check_composition
1840 && PT > BEGV && PT < ZV
7e16ef60
SM
1841 && get_property_and_range (PT, Qcomposition, &val, &beg, &end, Qnil)
1842 && COMPOSITION_VALID_P (beg, end, val)
1843 && beg < PT /* && end > PT <- It's always the case. */
1844 && (last_pt <= beg || last_pt >= end))
adf5cb9c 1845 {
14e40288 1846 xassert (end > PT);
7e16ef60 1847 SET_PT (PT < last_pt ? beg : end);
14e40288 1848 check_display = check_invisible = 1;
adf5cb9c
KH
1849 }
1850 check_composition = 0;
1851 if (check_display
1852 && PT > BEGV && PT < ZV
7e16ef60
SM
1853 && !NILP (val = get_char_property_and_overlay
1854 (make_number (PT), Qdisplay, Qnil, &overlay))
3e9ac4b7 1855 && display_prop_intangible_p (val)
7e16ef60
SM
1856 && (!OVERLAYP (overlay)
1857 ? get_property_and_range (PT, Qdisplay, &val, &beg, &end, Qnil)
1858 : (beg = OVERLAY_POSITION (OVERLAY_START (overlay)),
1859 end = OVERLAY_POSITION (OVERLAY_END (overlay))))
14e40288 1860 && beg < PT) /* && end > PT <- It's always the case. */
adf5cb9c 1861 {
14e40288 1862 xassert (end > PT);
7e16ef60 1863 SET_PT (PT < last_pt ? beg : end);
14e40288 1864 check_composition = check_invisible = 1;
adf5cb9c
KH
1865 }
1866 check_display = 0;
14e40288 1867 if (check_invisible && PT > BEGV && PT < ZV)
7e16ef60 1868 {
14e40288
SM
1869 int inv, ellipsis = 0;
1870 beg = end = PT;
1871
1872 /* Find boundaries `beg' and `end' of the invisible area, if any. */
1873 while (end < ZV
1874 && !NILP (val = get_char_property_and_overlay
1875 (make_number (end), Qinvisible, Qnil, &overlay))
1876 && (inv = TEXT_PROP_MEANS_INVISIBLE (val)))
1877 {
1878 ellipsis = ellipsis || inv > 1
1879 || (OVERLAYP (overlay)
1880 && (!NILP (Foverlay_get (overlay, Qafter_string))
1881 || !NILP (Foverlay_get (overlay, Qbefore_string))));
1882 tmp = Fnext_single_char_property_change
1883 (make_number (end), Qinvisible, Qnil, Qnil);
1884 end = NATNUMP (tmp) ? XFASTINT (tmp) : ZV;
1885 }
1886 while (beg > BEGV
1887 && !NILP (val = get_char_property_and_overlay
1888 (make_number (beg - 1), Qinvisible, Qnil, &overlay))
1889 && (inv = TEXT_PROP_MEANS_INVISIBLE (val)))
1890 {
1891 ellipsis = ellipsis || inv > 1
1892 || (OVERLAYP (overlay)
1893 && (!NILP (Foverlay_get (overlay, Qafter_string))
1894 || !NILP (Foverlay_get (overlay, Qbefore_string))));
1895 tmp = Fprevious_single_char_property_change
1896 (make_number (beg), Qinvisible, Qnil, Qnil);
1897 beg = NATNUMP (tmp) ? XFASTINT (tmp) : BEGV;
1898 }
c60ee5e7 1899
14e40288
SM
1900 /* Move away from the inside area. */
1901 if (beg < PT && end > PT)
1902 {
0bbdffbd
SM
1903 SET_PT ((orig_pt == PT && (last_pt < beg || last_pt > end))
1904 /* We haven't moved yet (so we don't need to fear
1905 infinite-looping) and we were outside the range
1906 before (so either end of the range still corresponds
1907 to a move in the right direction): pretend we moved
1908 less than we actually did, so that we still have
1909 more freedom below in choosing which end of the range
1910 to go to. */
9465a86c 1911 ? (orig_pt = -1, PT < last_pt ? end : beg)
0bbdffbd
SM
1912 /* We either have moved already or the last point
1913 was already in the range: we don't get to choose
1914 which end of the range we have to go to. */
1915 : (PT < last_pt ? beg : end));
14e40288
SM
1916 check_composition = check_display = 1;
1917 }
1918 xassert (PT == beg || PT == end);
2a026b04
KH
1919 /* Pretend the area doesn't exist if the buffer is not
1920 modified. */
1921 if (!modified && !ellipsis && beg < end)
14e40288
SM
1922 {
1923 if (last_pt == beg && PT == end && end < ZV)
1924 (check_composition = check_display = 1, SET_PT (end + 1));
1925 else if (last_pt == end && PT == beg && beg > BEGV)
1926 (check_composition = check_display = 1, SET_PT (beg - 1));
1927 else if (PT == ((PT < last_pt) ? beg : end))
1928 /* We've already moved as far as we can. Trying to go
1929 to the other end would mean moving backwards and thus
1930 could lead to an infinite loop. */
1931 ;
1932 else if (val = get_pos_property (make_number (PT),
1933 Qinvisible, Qnil),
1934 TEXT_PROP_MEANS_INVISIBLE (val)
1935 && (val = get_pos_property
1936 (make_number (PT == beg ? end : beg),
1937 Qinvisible, Qnil),
1938 !TEXT_PROP_MEANS_INVISIBLE (val)))
1939 (check_composition = check_display = 1,
1940 SET_PT (PT == beg ? end : beg));
1941 }
7e16ef60
SM
1942 }
1943 check_invisible = 0;
adf5cb9c
KH
1944 }
1945}
1946
0bc3db2b
RS
1947/* Subroutine for safe_run_hooks: run the hook HOOK. */
1948
1949static Lisp_Object
1950safe_run_hooks_1 (hook)
1951 Lisp_Object hook;
1952{
1953 return call1 (Vrun_hooks, Vinhibit_quit);
1954}
1955
1956/* Subroutine for safe_run_hooks: handle an error by clearing out the hook. */
1957
1958static Lisp_Object
1959safe_run_hooks_error (data)
1960 Lisp_Object data;
1961{
adec392e
SM
1962 Lisp_Object args[3];
1963 args[0] = build_string ("Error in %s: %s");
1964 args[1] = Vinhibit_quit;
1965 args[2] = data;
1966 Fmessage (3, args);
30690496 1967 return Fset (Vinhibit_quit, Qnil);
0bc3db2b
RS
1968}
1969
1c9784c9
KH
1970/* If we get an error while running the hook, cause the hook variable
1971 to be nil. Also inhibit quits, so that C-g won't cause the hook
1972 to mysteriously evaporate. */
0bc3db2b 1973
68f297c5 1974void
1c9784c9 1975safe_run_hooks (hook)
a98ea3f9 1976 Lisp_Object hook;
1c9784c9 1977{
aed13378 1978 int count = SPECPDL_INDEX ();
0bc3db2b
RS
1979 specbind (Qinhibit_quit, hook);
1980
e702932d 1981 internal_condition_case (safe_run_hooks_1, Qt, safe_run_hooks_error);
1c9784c9
KH
1982
1983 unbind_to (count, Qnil);
1984}
8a9f5d3c 1985
284f4730 1986\f
8a9f5d3c
GM
1987/* Number of seconds between polling for input. This is a Lisp
1988 variable that can be bound. */
1989
31ade731 1990EMACS_INT polling_period;
284f4730 1991
eb8c3be9 1992/* Nonzero means polling for input is temporarily suppressed. */
8a9f5d3c 1993
284f4730
JB
1994int poll_suppress_count;
1995
8a9f5d3c
GM
1996/* Asynchronous timer for polling. */
1997
1998struct atimer *poll_timer;
1999
284f4730 2000
36922b18
RS
2001#ifdef POLL_FOR_INPUT
2002
8a9f5d3c
GM
2003/* Poll for input, so what we catch a C-g if it comes in. This
2004 function is called from x_make_frame_visible, see comment
2005 there. */
284f4730 2006
8a9f5d3c
GM
2007void
2008poll_for_input_1 ()
284f4730 2009{
9ac0d9e0
JB
2010 if (interrupt_input_blocked == 0
2011 && !waiting_for_input)
2012 read_avail_input (0);
284f4730
JB
2013}
2014
8a9f5d3c
GM
2015/* Timer callback function for poll_timer. TIMER is equal to
2016 poll_timer. */
2017
2018void
2019poll_for_input (timer)
2020 struct atimer *timer;
2021{
2022 if (poll_suppress_count == 0)
2023 poll_for_input_1 ();
2024}
2025
2026#endif /* POLL_FOR_INPUT */
284f4730
JB
2027
2028/* Begin signals to poll for input, if they are appropriate.
2029 This function is called unconditionally from various places. */
2030
07a59269 2031void
284f4730
JB
2032start_polling ()
2033{
2034#ifdef POLL_FOR_INPUT
428a555e
KL
2035 /* XXX This condition was (read_socket_hook && !interrupt_input),
2036 but read_socket_hook is not global anymore. Let's pretend that
2037 it's always set. */
2038 if (!interrupt_input)
284f4730 2039 {
8a9f5d3c
GM
2040 /* Turn alarm handling on unconditionally. It might have
2041 been turned off in process.c. */
2042 turn_on_atimers (1);
c60ee5e7 2043
8a9f5d3c
GM
2044 /* If poll timer doesn't exist, are we need one with
2045 a different interval, start a new one. */
2046 if (poll_timer == NULL
2047 || EMACS_SECS (poll_timer->interval) != polling_period)
284f4730 2048 {
8a9f5d3c
GM
2049 EMACS_TIME interval;
2050
2051 if (poll_timer)
2052 cancel_atimer (poll_timer);
c60ee5e7 2053
8a9f5d3c
GM
2054 EMACS_SET_SECS_USECS (interval, polling_period, 0);
2055 poll_timer = start_atimer (ATIMER_CONTINUOUS, interval,
2056 poll_for_input, NULL);
284f4730 2057 }
8a9f5d3c
GM
2058
2059 /* Let the timer's callback function poll for input
2060 if this becomes zero. */
2061 --poll_suppress_count;
284f4730
JB
2062 }
2063#endif
2064}
2065
1d3195db
RS
2066/* Nonzero if we are using polling to handle input asynchronously. */
2067
2068int
2069input_polling_used ()
2070{
2071#ifdef POLL_FOR_INPUT
428a555e
KL
2072 /* XXX This condition was (read_socket_hook && !interrupt_input),
2073 but read_socket_hook is not global anymore. Let's pretend that
2074 it's always set. */
2075 return !interrupt_input;
1d3195db
RS
2076#else
2077 return 0;
2078#endif
2079}
2080
284f4730
JB
2081/* Turn off polling. */
2082
07a59269 2083void
284f4730
JB
2084stop_polling ()
2085{
2086#ifdef POLL_FOR_INPUT
428a555e
KL
2087 /* XXX This condition was (read_socket_hook && !interrupt_input),
2088 but read_socket_hook is not global anymore. Let's pretend that
2089 it's always set. */
2090 if (!interrupt_input)
8a9f5d3c 2091 ++poll_suppress_count;
284f4730
JB
2092#endif
2093}
fe8aeef3
RS
2094
2095/* Set the value of poll_suppress_count to COUNT
2096 and start or stop polling accordingly. */
2097
2098void
2099set_poll_suppress_count (count)
2100 int count;
2101{
2102#ifdef POLL_FOR_INPUT
2103 if (count == 0 && poll_suppress_count != 0)
2104 {
2105 poll_suppress_count = 1;
2106 start_polling ();
2107 }
2108 else if (count != 0 && poll_suppress_count == 0)
2109 {
2110 stop_polling ();
2111 }
2112 poll_suppress_count = count;
2113#endif
2114}
f4eef8b4 2115
d0a57728
RS
2116/* Bind polling_period to a value at least N.
2117 But don't decrease it. */
2118
07a59269 2119void
f4eef8b4
RS
2120bind_polling_period (n)
2121 int n;
2122{
2123#ifdef POLL_FOR_INPUT
d0a57728
RS
2124 int new = polling_period;
2125
2126 if (n > new)
2127 new = n;
2128
6fe007f7 2129 stop_other_atimers (poll_timer);
f4eef8b4 2130 stop_polling ();
d0a57728
RS
2131 specbind (Qpolling_period, make_number (new));
2132 /* Start a new alarm with the new period. */
f4eef8b4
RS
2133 start_polling ();
2134#endif
2135}
284f4730 2136\f
6da3dd3a
RS
2137/* Apply the control modifier to CHARACTER. */
2138
faf5e407
JB
2139int
2140make_ctrl_char (c)
2141 int c;
2142{
d205953b
JB
2143 /* Save the upper bits here. */
2144 int upper = c & ~0177;
2145
2146 c &= 0177;
2147
2148 /* Everything in the columns containing the upper-case letters
2149 denotes a control character. */
2150 if (c >= 0100 && c < 0140)
2151 {
2152 int oc = c;
2153 c &= ~0140;
2154 /* Set the shift modifier for a control char
2155 made from a shifted letter. But only for letters! */
2156 if (oc >= 'A' && oc <= 'Z')
2157 c |= shift_modifier;
2158 }
2159
2160 /* The lower-case letters denote control characters too. */
2161 else if (c >= 'a' && c <= 'z')
2162 c &= ~0140;
2163
2164 /* Include the bits for control and shift
2165 only if the basic ASCII code can't indicate them. */
2166 else if (c >= ' ')
2167 c |= ctrl_modifier;
2168
2169 /* Replace the high bits. */
2170 c |= (upper & ~ctrl_modifier);
faf5e407
JB
2171
2172 return c;
2173}
2174
d4e68eea
GM
2175/* Display help echo in the echo area.
2176
8dfd92c9
GM
2177 HELP a string means display that string, HELP nil means clear the
2178 help echo. If HELP is a function, call it with OBJECT and POS as
2179 arguments; the function should return a help string or nil for
2180 none. For all other types of HELP evaluate it to obtain a string.
2181
2190735a
GM
2182 WINDOW is the window in which the help was generated, if any.
2183 It is nil if not in a window.
2184
5b2ec2d0
GM
2185 If OBJECT is a buffer, POS is the position in the buffer where the
2186 `help-echo' text property was found.
2187
2188 If OBJECT is an overlay, that overlay has a `help-echo' property,
2189 and POS is the position in the overlay's buffer under the mouse.
2190
2191 If OBJECT is a string (an overlay string or a string displayed with
2192 the `display' property). POS is the position in that string under
2193 the mouse.
d4e68eea 2194
27fd22dc 2195 OK_TO_OVERWRITE_KEYSTROKE_ECHO non-zero means it's okay if the help
d4e68eea
GM
2196 echo overwrites a keystroke echo currently displayed in the echo
2197 area.
2198
8dfd92c9
GM
2199 Note: this function may only be called with HELP nil or a string
2200 from X code running asynchronously. */
d4e68eea 2201
31f84d03 2202void
2190735a
GM
2203show_help_echo (help, window, object, pos, ok_to_overwrite_keystroke_echo)
2204 Lisp_Object help, window, object, pos;
adc84f48 2205 int ok_to_overwrite_keystroke_echo;
31f84d03 2206{
8dfd92c9 2207 if (!NILP (help) && !STRINGP (help))
d4e68eea 2208 {
8dfd92c9
GM
2209 if (FUNCTIONP (help))
2210 {
2190735a 2211 Lisp_Object args[4];
8dfd92c9 2212 args[0] = help;
2190735a
GM
2213 args[1] = window;
2214 args[2] = object;
2215 args[3] = pos;
1db0076e 2216 help = safe_call (4, args);
8dfd92c9
GM
2217 }
2218 else
1db0076e 2219 help = safe_eval (help);
c60ee5e7 2220
8dfd92c9 2221 if (!STRINGP (help))
d4e68eea 2222 return;
31f84d03
SM
2223 }
2224
8dfd92c9 2225 if (STRINGP (help) || NILP (help))
d4e68eea
GM
2226 {
2227 if (!NILP (Vshow_help_function))
8dfd92c9 2228 call1 (Vshow_help_function, help);
d4e68eea
GM
2229 else if (/* Don't overwrite minibuffer contents. */
2230 !MINI_WINDOW_P (XWINDOW (selected_window))
2231 /* Don't overwrite a keystroke echo. */
8dfd92c9
GM
2232 && (NILP (echo_message_buffer)
2233 || ok_to_overwrite_keystroke_echo)
d4e68eea
GM
2234 /* Don't overwrite a prompt. */
2235 && !cursor_in_echo_area)
2236 {
8dfd92c9 2237 if (STRINGP (help))
d4e68eea 2238 {
331379bf 2239 int count = SPECPDL_INDEX ();
f0c1cc56
GM
2240
2241 if (!help_echo_showing_p)
2242 Vpre_help_message = current_message ();
c60ee5e7 2243
d4e68eea 2244 specbind (Qmessage_truncate_lines, Qt);
d5db4077 2245 message3_nolog (help, SBYTES (help),
8dfd92c9 2246 STRING_MULTIBYTE (help));
d4e68eea
GM
2247 unbind_to (count, Qnil);
2248 }
f0c1cc56
GM
2249 else if (STRINGP (Vpre_help_message))
2250 {
2251 message3_nolog (Vpre_help_message,
d5db4077 2252 SBYTES (Vpre_help_message),
f0c1cc56
GM
2253 STRING_MULTIBYTE (Vpre_help_message));
2254 Vpre_help_message = Qnil;
2255 }
d4e68eea 2256 else
f0c1cc56 2257 message (0);
d4e68eea 2258 }
c60ee5e7 2259
5295a500 2260 help_echo_showing_p = STRINGP (help);
d4e68eea 2261 }
31f84d03
SM
2262}
2263
faf5e407
JB
2264
2265\f
284f4730
JB
2266/* Input of single characters from keyboard */
2267
2268Lisp_Object print_help ();
2269static Lisp_Object kbd_buffer_get_event ();
e4fe371d 2270static void record_char ();
284f4730 2271
c5fdd383
KH
2272#ifdef MULTI_KBOARD
2273static jmp_buf wrong_kboard_jmpbuf;
bded54dd 2274#endif
beecf6a1 2275
184c3d81
RS
2276#define STOP_POLLING \
2277do { if (! polling_stopped_here) stop_polling (); \
2278 polling_stopped_here = 1; } while (0)
2279
2280#define RESUME_POLLING \
2281do { if (polling_stopped_here) start_polling (); \
2282 polling_stopped_here = 0; } while (0)
2283
284f4730
JB
2284/* read a character from the keyboard; call the redisplay if needed */
2285/* commandflag 0 means do not do auto-saving, but do do redisplay.
2286 -1 means do not do redisplay, but do do autosaving.
2287 1 means do both. */
2288
7d6de002
RS
2289/* The arguments MAPS and NMAPS are for menu prompting.
2290 MAPS is an array of keymaps; NMAPS is the length of MAPS.
2291
2292 PREV_EVENT is the previous input event, or nil if we are reading
b638f328
RS
2293 the first event of a key sequence (or not reading a key sequence).
2294 If PREV_EVENT is t, that is a "magic" value that says
2295 not to run input methods, but in other respects to act as if
2296 not reading a key sequence.
7d6de002 2297
83d68044 2298 If USED_MOUSE_MENU is non-null, then we set *USED_MOUSE_MENU to 1
6569cc8d 2299 if we used a mouse menu to read the input, or zero otherwise. If
83d68044 2300 USED_MOUSE_MENU is null, we don't dereference it.
dcc408a0
RS
2301
2302 Value is t if we showed a menu and the user rejected it. */
7d6de002 2303
284f4730 2304Lisp_Object
7d6de002 2305read_char (commandflag, nmaps, maps, prev_event, used_mouse_menu)
284f4730 2306 int commandflag;
7d6de002
RS
2307 int nmaps;
2308 Lisp_Object *maps;
2309 Lisp_Object prev_event;
2310 int *used_mouse_menu;
284f4730 2311{
8c907a56 2312 volatile Lisp_Object c;
284f4730 2313 int count;
410d4de9 2314 jmp_buf local_getcjmp;
284f4730 2315 jmp_buf save_jump;
8c907a56 2316 volatile int key_already_recorded = 0;
017c7cb6 2317 Lisp_Object tem, save;
8c907a56
GM
2318 volatile Lisp_Object previous_echo_area_message;
2319 volatile Lisp_Object also_record;
2320 volatile int reread;
d5eecefb 2321 struct gcpro gcpro1, gcpro2;
fdbb67fe 2322 EMACS_TIME last_idle_start;
184c3d81 2323 int polling_stopped_here = 0;
7c3bc944 2324
e4fe371d 2325 also_record = Qnil;
284f4730 2326
22b94eeb 2327#if 0 /* This was commented out as part of fixing echo for C-u left. */
71918b75
RS
2328 before_command_key_count = this_command_key_count;
2329 before_command_echo_length = echo_length ();
22b94eeb 2330#endif
ef6661f7 2331 c = Qnil;
7ee32cda 2332 previous_echo_area_message = Qnil;
71918b75 2333
7ee32cda 2334 GCPRO2 (c, previous_echo_area_message);
7c3bc944 2335
7f07d5ca
RS
2336 retry:
2337
7d18f9ae
RS
2338 reread = 0;
2339 if (CONSP (Vunread_post_input_method_events))
284f4730 2340 {
7539e11f 2341 c = XCAR (Vunread_post_input_method_events);
7d18f9ae 2342 Vunread_post_input_method_events
7539e11f 2343 = XCDR (Vunread_post_input_method_events);
284f4730 2344
2479e91e
RS
2345 /* Undo what read_char_x_menu_prompt did when it unread
2346 additional keys returned by Fx_popup_menu. */
2347 if (CONSP (c)
7539e11f
KR
2348 && (SYMBOLP (XCAR (c)) || INTEGERP (XCAR (c)))
2349 && NILP (XCDR (c)))
2350 c = XCAR (c);
2479e91e 2351
7d18f9ae
RS
2352 reread = 1;
2353 goto reread_first;
284f4730
JB
2354 }
2355
86e5706b
RS
2356 if (unread_command_char != -1)
2357 {
18cd2eeb 2358 XSETINT (c, unread_command_char);
86e5706b
RS
2359 unread_command_char = -1;
2360
7d18f9ae
RS
2361 reread = 1;
2362 goto reread_first;
2363 }
2364
2365 if (CONSP (Vunread_command_events))
2366 {
7539e11f
KR
2367 c = XCAR (Vunread_command_events);
2368 Vunread_command_events = XCDR (Vunread_command_events);
7d18f9ae
RS
2369
2370 /* Undo what read_char_x_menu_prompt did when it unread
2371 additional keys returned by Fx_popup_menu. */
2372 if (CONSP (c)
f4e05d97
GM
2373 && EQ (XCDR (c), Qdisabled)
2374 && (SYMBOLP (XCAR (c)) || INTEGERP (XCAR (c))))
7539e11f 2375 c = XCAR (c);
c60ee5e7 2376
d17e49a8
GM
2377 /* If the queued event is something that used the mouse,
2378 set used_mouse_menu accordingly. */
2379 if (used_mouse_menu
2380 && (EQ (c, Qtool_bar) || EQ (c, Qmenu_bar)))
2381 *used_mouse_menu = 1;
c60ee5e7 2382
7d18f9ae
RS
2383 reread = 1;
2384 goto reread_for_input_method;
2385 }
2386
2387 if (CONSP (Vunread_input_method_events))
2388 {
7539e11f
KR
2389 c = XCAR (Vunread_input_method_events);
2390 Vunread_input_method_events = XCDR (Vunread_input_method_events);
7d18f9ae
RS
2391
2392 /* Undo what read_char_x_menu_prompt did when it unread
2393 additional keys returned by Fx_popup_menu. */
2394 if (CONSP (c)
7539e11f
KR
2395 && (SYMBOLP (XCAR (c)) || INTEGERP (XCAR (c)))
2396 && NILP (XCDR (c)))
2397 c = XCAR (c);
7d18f9ae
RS
2398 reread = 1;
2399 goto reread_for_input_method;
86e5706b
RS
2400 }
2401
63020c46
RS
2402 this_command_key_count_reset = 0;
2403
284f4730
JB
2404 if (!NILP (Vexecuting_macro))
2405 {
fce33686
JB
2406 /* We set this to Qmacro; since that's not a frame, nobody will
2407 try to switch frames on us, and the selected window will
2408 remain unchanged.
2409
2410 Since this event came from a macro, it would be misleading to
eb8c3be9 2411 leave internal_last_event_frame set to wherever the last
3c370943
JB
2412 real event came from. Normally, a switch-frame event selects
2413 internal_last_event_frame after each command is read, but
2414 events read from a macro should never cause a new frame to be
2415 selected. */
4c52b668 2416 Vlast_event_frame = internal_last_event_frame = Qmacro;
fce33686 2417
663258f2
JB
2418 /* Exit the macro if we are at the end.
2419 Also, some things replace the macro with t
2420 to force an early exit. */
2421 if (EQ (Vexecuting_macro, Qt)
2422 || executing_macro_index >= XFASTINT (Flength (Vexecuting_macro)))
284f4730 2423 {
18cd2eeb 2424 XSETINT (c, -1);
184c3d81 2425 goto exit;
284f4730 2426 }
df0f2ba1 2427
284f4730 2428 c = Faref (Vexecuting_macro, make_number (executing_macro_index));
8c18cbfb 2429 if (STRINGP (Vexecuting_macro)
86e5706b 2430 && (XINT (c) & 0x80))
bb9e9bed 2431 XSETFASTINT (c, CHAR_META | (XINT (c) & ~0x80));
86e5706b 2432
284f4730
JB
2433 executing_macro_index++;
2434
2435 goto from_macro;
2436 }
2437
cd21b839
JB
2438 if (!NILP (unread_switch_frame))
2439 {
2440 c = unread_switch_frame;
2441 unread_switch_frame = Qnil;
2442
2443 /* This event should make it into this_command_keys, and get echoed
7d18f9ae 2444 again, so we do not set `reread'. */
f4255cd1 2445 goto reread_first;
cd21b839
JB
2446 }
2447
adc1d5c8 2448 /* if redisplay was requested */
6e4e64a8
RS
2449 if (commandflag >= 0)
2450 {
adc1d5c8
RS
2451 /* If there is pending input, process any events which are not
2452 user-visible, such as X selection_request events. */
6e4e64a8
RS
2453 if (input_pending
2454 || detect_input_pending_run_timers (0))
adc1d5c8 2455 swallow_events (0); /* may clear input_pending */
6e4e64a8 2456
adc1d5c8
RS
2457 /* Redisplay if no pending input. */
2458 while (!input_pending)
2459 {
5295a500 2460 if (help_echo_showing_p && !EQ (selected_window, minibuf_window))
3007ebfb 2461 redisplay_preserve_echo_area (5);
5295a500
GM
2462 else
2463 redisplay ();
adc1d5c8
RS
2464
2465 if (!input_pending)
2466 /* Normal case: no input arrived during redisplay. */
2467 break;
2468
2469 /* Input arrived and pre-empted redisplay.
2470 Process any events which are not user-visible. */
2471 swallow_events (0);
2472 /* If that cleared input_pending, try again to redisplay. */
2473 }
6e4e64a8 2474 }
e9bf89a0 2475
59a84f8e 2476 /* Message turns off echoing unless more keystrokes turn it on again.
c60ee5e7 2477
59a84f8e
GM
2478 The code in 20.x for the condition was
2479
2480 1. echo_area_glyphs && *echo_area_glyphs
2481 2. && echo_area_glyphs != current_kboard->echobuf
2482 3. && ok_to_echo_at_next_pause != echo_area_glyphs
2483
2484 (1) means there's a current message displayed
c60ee5e7 2485
59a84f8e
GM
2486 (2) means it's not the message from echoing from the current
2487 kboard.
c60ee5e7 2488
59a84f8e
GM
2489 (3) There's only one place in 20.x where ok_to_echo_at_next_pause
2490 is set to a non-null value. This is done in read_char and it is
2491 set to echo_area_glyphs after a call to echo_char. That means
2492 ok_to_echo_at_next_pause is either null or
2493 current_kboard->echobuf with the appropriate current_kboard at
2494 that time.
2495
2496 So, condition (3) means in clear text ok_to_echo_at_next_pause
2497 must be either null, or the current message isn't from echoing at
2498 all, or it's from echoing from a different kboard than the
2499 current one. */
c60ee5e7 2500
27fd22dc 2501 if (/* There currently is something in the echo area. */
985f9f66 2502 !NILP (echo_area_buffer[0])
59a84f8e
GM
2503 && (/* And it's either not from echoing. */
2504 !EQ (echo_area_buffer[0], echo_message_buffer)
2505 /* Or it's an echo from a different kboard. */
2506 || echo_kboard != current_kboard
2507 /* Or we explicitly allow overwriting whatever there is. */
2508 || ok_to_echo_at_next_pause == NULL))
7ee32cda 2509 cancel_echoing ();
410d4de9 2510 else
410d4de9 2511 echo_dash ();
c60ee5e7 2512
410d4de9
RS
2513 /* Try reading a character via menu prompting in the minibuf.
2514 Try this before the sit-for, because the sit-for
2515 would do the wrong thing if we are supposed to do
2516 menu prompting. If EVENT_HAS_PARAMETERS then we are reading
2517 after a mouse event so don't try a minibuf menu. */
2518 c = Qnil;
2519 if (nmaps > 0 && INTERACTIVE
2520 && !NILP (prev_event) && ! EVENT_HAS_PARAMETERS (prev_event)
2521 /* Don't bring up a menu if we already have another event. */
2522 && NILP (Vunread_command_events)
2523 && unread_command_char < 0
4ec4ed6a 2524 && !detect_input_pending_run_timers (0))
410d4de9
RS
2525 {
2526 c = read_char_minibuf_menu_prompt (commandflag, nmaps, maps);
2527 if (! NILP (c))
2528 {
2529 key_already_recorded = 1;
2530 goto non_reread_1;
2531 }
2532 }
284f4730 2533
410d4de9
RS
2534 /* Make a longjmp point for quits to use, but don't alter getcjmp just yet.
2535 We will do that below, temporarily for short sections of code,
2536 when appropriate. local_getcjmp must be in effect
2537 around any call to sit_for or kbd_buffer_get_event;
2538 it *must not* be in effect when we call redisplay. */
284f4730 2539
410d4de9 2540 if (_setjmp (local_getcjmp))
284f4730 2541 {
18cd2eeb 2542 XSETINT (c, quit_char);
788f89eb 2543 internal_last_event_frame = selected_frame;
4c52b668 2544 Vlast_event_frame = internal_last_event_frame;
04904c29
RS
2545 /* If we report the quit char as an event,
2546 don't do so more than once. */
2547 if (!NILP (Vinhibit_quit))
2548 Vquit_flag = Qnil;
284f4730 2549
c5fdd383 2550#ifdef MULTI_KBOARD
df0f2ba1 2551 {
788f89eb 2552 KBOARD *kb = FRAME_KBOARD (XFRAME (selected_frame));
c5fdd383 2553 if (kb != current_kboard)
df0f2ba1 2554 {
f3fbd155 2555 Lisp_Object link = kb->kbd_queue;
1e8bd3da
RS
2556 /* We shouldn't get here if we were in single-kboard mode! */
2557 if (single_kboard)
df0f2ba1 2558 abort ();
f3fbd155
KR
2559 if (CONSP (link))
2560 {
2561 while (CONSP (XCDR (link)))
2562 link = XCDR (link);
2563 if (!NILP (XCDR (link)))
2564 abort ();
2565 }
2566 if (!CONSP (link))
2567 kb->kbd_queue = Fcons (c, Qnil);
2568 else
2569 XSETCDR (link, Fcons (c, Qnil));
c5fdd383
KH
2570 kb->kbd_queue_has_data = 1;
2571 current_kboard = kb;
ef6661f7
RS
2572 /* This is going to exit from read_char
2573 so we had better get rid of this frame's stuff. */
2574 UNGCPRO;
c5fdd383 2575 longjmp (wrong_kboard_jmpbuf, 1);
df0f2ba1
KH
2576 }
2577 }
2578#endif
284f4730
JB
2579 goto non_reread;
2580 }
2581
d9d4c147
KH
2582 timer_start_idle ();
2583
284f4730
JB
2584 /* If in middle of key sequence and minibuffer not active,
2585 start echoing if enough time elapses. */
410d4de9 2586
c60ee5e7 2587 if (minibuf_level == 0
7ee32cda 2588 && !current_kboard->immediate_echo
6c6083a9 2589 && this_command_key_count > 0
27203ead 2590 && ! noninteractive
f2647d04
DL
2591 && (FLOATP (Vecho_keystrokes) || INTEGERP (Vecho_keystrokes))
2592 && NILP (Fzerop (Vecho_keystrokes))
985f9f66
GM
2593 && (/* No message. */
2594 NILP (echo_area_buffer[0])
2595 /* Or empty message. */
2596 || (BUF_BEG (XBUFFER (echo_area_buffer[0]))
2597 == BUF_Z (XBUFFER (echo_area_buffer[0])))
2598 /* Or already echoing from same kboard. */
2599 || (echo_kboard && ok_to_echo_at_next_pause == echo_kboard)
2600 /* Or not echoing before and echoing allowed. */
2601 || (!echo_kboard && ok_to_echo_at_next_pause)))
284f4730
JB
2602 {
2603 Lisp_Object tem0;
c60ee5e7 2604
7d6de002
RS
2605 /* After a mouse event, start echoing right away.
2606 This is because we are probably about to display a menu,
2607 and we don't want to delay before doing so. */
dbc4e1c1 2608 if (EVENT_HAS_PARAMETERS (prev_event))
3dbd9ee4 2609 echo_now ();
7d6de002
RS
2610 else
2611 {
39aab679
DL
2612 int sec, usec;
2613 double duration = extract_float (Vecho_keystrokes);
2614 sec = (int) duration;
15fa88ab 2615 usec = (duration - sec) * 1000000;
410d4de9
RS
2616 save_getcjmp (save_jump);
2617 restore_getcjmp (local_getcjmp);
39aab679 2618 tem0 = sit_for (sec, usec, 1, 1, 0);
410d4de9 2619 restore_getcjmp (save_jump);
303b5b3f
RS
2620 if (EQ (tem0, Qt)
2621 && ! CONSP (Vunread_command_events))
3dbd9ee4 2622 echo_now ();
7d6de002 2623 }
284f4730
JB
2624 }
2625
410d4de9 2626 /* Maybe auto save due to number of keystrokes. */
284f4730
JB
2627
2628 if (commandflag != 0
2629 && auto_save_interval > 0
c43b1734 2630 && num_nonmacro_input_events - last_auto_save > max (auto_save_interval, 20)
4ec4ed6a 2631 && !detect_input_pending_run_timers (0))
284f4730 2632 {
284f4730 2633 Fdo_auto_save (Qnil, Qnil);
ef8fd672
RS
2634 /* Hooks can actually change some buffers in auto save. */
2635 redisplay ();
284f4730
JB
2636 }
2637
8150596a 2638 /* Try reading using an X menu.
24597608
RS
2639 This is never confused with reading using the minibuf
2640 because the recursive call of read_char in read_char_minibuf_menu_prompt
2641 does not pass on any keymaps. */
410d4de9 2642
24597608 2643 if (nmaps > 0 && INTERACTIVE
5a8d99e0
KH
2644 && !NILP (prev_event)
2645 && EVENT_HAS_PARAMETERS (prev_event)
7539e11f
KR
2646 && !EQ (XCAR (prev_event), Qmenu_bar)
2647 && !EQ (XCAR (prev_event), Qtool_bar)
24597608
RS
2648 /* Don't bring up a menu if we already have another event. */
2649 && NILP (Vunread_command_events)
b8556aee 2650 && unread_command_char < 0)
8eb4d8ef
RS
2651 {
2652 c = read_char_x_menu_prompt (nmaps, maps, prev_event, used_mouse_menu);
2653
2654 /* Now that we have read an event, Emacs is not idle. */
2655 timer_stop_idle ();
2656
184c3d81 2657 goto exit;
8eb4d8ef 2658 }
7d6de002 2659
410d4de9
RS
2660 /* Maybe autosave and/or garbage collect due to idleness. */
2661
26c1639e 2662 if (INTERACTIVE && NILP (c))
7d6de002
RS
2663 {
2664 int delay_level, buffer_size;
2665
410d4de9
RS
2666 /* Slow down auto saves logarithmically in size of current buffer,
2667 and garbage collect while we're at it. */
7d6de002
RS
2668 if (! MINI_WINDOW_P (XWINDOW (selected_window)))
2669 last_non_minibuf_size = Z - BEG;
2670 buffer_size = (last_non_minibuf_size >> 8) + 1;
2671 delay_level = 0;
2672 while (buffer_size > 64)
2673 delay_level++, buffer_size -= buffer_size >> 2;
2674 if (delay_level < 4) delay_level = 4;
2675 /* delay_level is 4 for files under around 50k, 7 at 100k,
2676 9 at 200k, 11 at 300k, and 12 at 500k. It is 15 at 1 meg. */
2677
2678 /* Auto save if enough time goes by without input. */
2679 if (commandflag != 0
c43b1734 2680 && num_nonmacro_input_events > last_auto_save
8c18cbfb 2681 && INTEGERP (Vauto_save_timeout)
7d6de002
RS
2682 && XINT (Vauto_save_timeout) > 0)
2683 {
2684 Lisp_Object tem0;
410d4de9
RS
2685
2686 save_getcjmp (save_jump);
2687 restore_getcjmp (local_getcjmp);
d9d4c147 2688 tem0 = sit_for (delay_level * XFASTINT (Vauto_save_timeout) / 4,
41365083 2689 0, 1, 1, 0);
410d4de9
RS
2690 restore_getcjmp (save_jump);
2691
303b5b3f
RS
2692 if (EQ (tem0, Qt)
2693 && ! CONSP (Vunread_command_events))
7d6de002 2694 {
7d6de002 2695 Fdo_auto_save (Qnil, Qnil);
7d6de002
RS
2696
2697 /* If we have auto-saved and there is still no input
2698 available, garbage collect if there has been enough
2699 consing going on to make it worthwhile. */
4ec4ed6a 2700 if (!detect_input_pending_run_timers (0)
7d6de002 2701 && consing_since_gc > gc_cons_threshold / 2)
ef8fd672 2702 Fgarbage_collect ();
410d4de9 2703
ef8fd672 2704 redisplay ();
7d6de002
RS
2705 }
2706 }
2707 }
284f4730 2708
303b5b3f
RS
2709 /* If this has become non-nil here, it has been set by a timer
2710 or sentinel or filter. */
2711 if (CONSP (Vunread_command_events))
2712 {
7539e11f
KR
2713 c = XCAR (Vunread_command_events);
2714 Vunread_command_events = XCDR (Vunread_command_events);
303b5b3f
RS
2715 }
2716
410d4de9
RS
2717 /* Read something from current KBOARD's side queue, if possible. */
2718
beecf6a1 2719 if (NILP (c))
1e12dd87 2720 {
c5fdd383 2721 if (current_kboard->kbd_queue_has_data)
beecf6a1 2722 {
c5fdd383 2723 if (!CONSP (current_kboard->kbd_queue))
4524b161 2724 abort ();
7539e11f 2725 c = XCAR (current_kboard->kbd_queue);
c5fdd383 2726 current_kboard->kbd_queue
7539e11f 2727 = XCDR (current_kboard->kbd_queue);
c5fdd383
KH
2728 if (NILP (current_kboard->kbd_queue))
2729 current_kboard->kbd_queue_has_data = 0;
d9d4c147 2730 input_pending = readable_events (0);
4c52b668
KH
2731 if (EVENT_HAS_PARAMETERS (c)
2732 && EQ (EVENT_HEAD_KIND (EVENT_HEAD (c)), Qswitch_frame))
7539e11f 2733 internal_last_event_frame = XCAR (XCDR (c));
4c52b668 2734 Vlast_event_frame = internal_last_event_frame;
beecf6a1 2735 }
1e8bd3da
RS
2736 }
2737
c5fdd383 2738#ifdef MULTI_KBOARD
1e8bd3da
RS
2739 /* If current_kboard's side queue is empty check the other kboards.
2740 If one of them has data that we have not yet seen here,
2741 switch to it and process the data waiting for it.
2742
2743 Note: if the events queued up for another kboard
2744 have already been seen here, and therefore are not a complete command,
2745 the kbd_queue_has_data field is 0, so we skip that kboard here.
2746 That's to avoid an infinite loop switching between kboards here. */
2747 if (NILP (c) && !single_kboard)
2748 {
2749 KBOARD *kb;
2750 for (kb = all_kboards; kb; kb = kb->next_kboard)
2751 if (kb->kbd_queue_has_data)
2752 {
2753 current_kboard = kb;
ef6661f7
RS
2754 /* This is going to exit from read_char
2755 so we had better get rid of this frame's stuff. */
2756 UNGCPRO;
1e8bd3da
RS
2757 longjmp (wrong_kboard_jmpbuf, 1);
2758 }
2759 }
df0f2ba1
KH
2760#endif
2761
410d4de9
RS
2762 wrong_kboard:
2763
184c3d81 2764 STOP_POLLING;
410d4de9 2765
1e8bd3da
RS
2766 /* Finally, we read from the main queue,
2767 and if that gives us something we can't use yet, we put it on the
2768 appropriate side queue and try again. */
410d4de9 2769
1e8bd3da
RS
2770 if (NILP (c))
2771 {
2772 KBOARD *kb;
2773
1e8bd3da 2774 /* Actually read a character, waiting if necessary. */
410d4de9
RS
2775 save_getcjmp (save_jump);
2776 restore_getcjmp (local_getcjmp);
5b7bc0da 2777 timer_start_idle ();
83d68044 2778 c = kbd_buffer_get_event (&kb, used_mouse_menu);
410d4de9
RS
2779 restore_getcjmp (save_jump);
2780
c5fdd383 2781#ifdef MULTI_KBOARD
410d4de9 2782 if (! NILP (c) && (kb != current_kboard))
1e8bd3da 2783 {
f3fbd155
KR
2784 Lisp_Object link = kb->kbd_queue;
2785 if (CONSP (link))
2786 {
2787 while (CONSP (XCDR (link)))
2788 link = XCDR (link);
2789 if (!NILP (XCDR (link)))
2790 abort ();
2791 }
2792 if (!CONSP (link))
2793 kb->kbd_queue = Fcons (c, Qnil);
2794 else
2795 XSETCDR (link, Fcons (c, Qnil));
1e8bd3da 2796 kb->kbd_queue_has_data = 1;
46b84797 2797 c = Qnil;
1e8bd3da
RS
2798 if (single_kboard)
2799 goto wrong_kboard;
2800 current_kboard = kb;
ef6661f7
RS
2801 /* This is going to exit from read_char
2802 so we had better get rid of this frame's stuff. */
2803 UNGCPRO;
1e8bd3da 2804 longjmp (wrong_kboard_jmpbuf, 1);
df0f2ba1 2805 }
1e8bd3da 2806#endif
beecf6a1 2807 }
1e8bd3da 2808
284f4730 2809 /* Terminate Emacs in batch mode if at eof. */
8c18cbfb 2810 if (noninteractive && INTEGERP (c) && XINT (c) < 0)
284f4730
JB
2811 Fkill_emacs (make_number (1));
2812
8c18cbfb 2813 if (INTEGERP (c))
80645119
JB
2814 {
2815 /* Add in any extra modifiers, where appropriate. */
2816 if ((extra_keyboard_modifiers & CHAR_CTL)
2817 || ((extra_keyboard_modifiers & 0177) < ' '
2818 && (extra_keyboard_modifiers & 0177) != 0))
faf5e407 2819 XSETINT (c, make_ctrl_char (XINT (c)));
80645119
JB
2820
2821 /* Transfer any other modifier bits directly from
2822 extra_keyboard_modifiers to c. Ignore the actual character code
2823 in the low 16 bits of extra_keyboard_modifiers. */
b8d9050d 2824 XSETINT (c, XINT (c) | (extra_keyboard_modifiers & ~0xff7f & ~CHAR_CTL));
80645119 2825 }
9fa4395d 2826
284f4730
JB
2827 non_reread:
2828
fdbb67fe
GM
2829 /* Record the last idle start time so that we can reset it
2830 should the next event read be a help-echo. */
2831 last_idle_start = timer_idleness_start_time;
2fb9049e 2832 timer_stop_idle ();
184c3d81 2833 RESUME_POLLING;
284f4730 2834
410d4de9
RS
2835 if (NILP (c))
2836 {
2837 if (commandflag >= 0
4ec4ed6a 2838 && !input_pending && !detect_input_pending_run_timers (0))
410d4de9
RS
2839 redisplay ();
2840
2841 goto wrong_kboard;
2842 }
2843
2844 non_reread_1:
2845
dfd11da7 2846 /* Buffer switch events are only for internal wakeups
7c3bc944
RS
2847 so don't show them to the user.
2848 Also, don't record a key if we already did. */
2849 if (BUFFERP (c) || key_already_recorded)
184c3d81 2850 goto exit;
a1341f75 2851
7f07d5ca
RS
2852 /* Process special events within read_char
2853 and loop around to read another event. */
017c7cb6
RS
2854 save = Vquit_flag;
2855 Vquit_flag = Qnil;
02067692 2856 tem = access_keymap (get_keymap (Vspecial_event_map, 0, 1), c, 0, 0, 1);
017c7cb6 2857 Vquit_flag = save;
7f07d5ca
RS
2858
2859 if (!NILP (tem))
2860 {
ba8dfba8
RS
2861 int was_locked = single_kboard;
2862
7f07d5ca 2863 last_input_char = c;
158f7532 2864 Fcommand_execute (tem, Qnil, Fvector (1, &last_input_char), Qt);
ba8dfba8 2865
5d12f14d
EZ
2866 if (CONSP (c) && EQ (XCAR (c), Qselect_window))
2867 /* We stopped being idle for this event; undo that. This
2868 prevents automatic window selection (under
0b9a1d3d 2869 mouse_autoselect_window from acting as a real input event, for
5d12f14d
EZ
2870 example banishing the mouse under mouse-avoidance-mode. */
2871 timer_idleness_start_time = last_idle_start;
2872
ba8dfba8
RS
2873 /* Resume allowing input from any kboard, if that was true before. */
2874 if (!was_locked)
2875 any_kboard_state ();
2876
7f07d5ca
RS
2877 goto retry;
2878 }
2879
284f4730 2880 /* Handle things that only apply to characters. */
8c18cbfb 2881 if (INTEGERP (c))
284f4730
JB
2882 {
2883 /* If kbd_buffer_get_event gave us an EOF, return that. */
86e5706b 2884 if (XINT (c) == -1)
184c3d81 2885 goto exit;
284f4730 2886
301738ed 2887 if ((STRINGP (Vkeyboard_translate_table)
d5db4077 2888 && SCHARS (Vkeyboard_translate_table) > (unsigned) XFASTINT (c))
301738ed
RS
2889 || (VECTORP (Vkeyboard_translate_table)
2890 && XVECTOR (Vkeyboard_translate_table)->size > (unsigned) XFASTINT (c))
2891 || (CHAR_TABLE_P (Vkeyboard_translate_table)
5e3cb80d 2892 && CHAR_VALID_P (XINT (c), 0)))
f9414d62
RS
2893 {
2894 Lisp_Object d;
2895 d = Faref (Vkeyboard_translate_table, c);
2896 /* nil in keyboard-translate-table means no translation. */
2897 if (!NILP (d))
2898 c = d;
2899 }
284f4730
JB
2900 }
2901
e4fe371d
RS
2902 /* If this event is a mouse click in the menu bar,
2903 return just menu-bar for now. Modify the mouse click event
2904 so we won't do this twice, then queue it up. */
2905 if (EVENT_HAS_PARAMETERS (c)
7539e11f 2906 && CONSP (XCDR (c))
e4fe371d 2907 && CONSP (EVENT_START (c))
7539e11f 2908 && CONSP (XCDR (EVENT_START (c))))
284f4730 2909 {
e4fe371d 2910 Lisp_Object posn;
284f4730 2911
eee5863b 2912 posn = POSN_POSN (EVENT_START (c));
e4fe371d
RS
2913 /* Handle menu-bar events:
2914 insert the dummy prefix event `menu-bar'. */
9ea173e8 2915 if (EQ (posn, Qmenu_bar) || EQ (posn, Qtool_bar))
e4fe371d
RS
2916 {
2917 /* Change menu-bar to (menu-bar) as the event "position". */
eee5863b 2918 POSN_SET_POSN (EVENT_START (c), Fcons (posn, Qnil));
284f4730 2919
e4fe371d
RS
2920 also_record = c;
2921 Vunread_command_events = Fcons (c, Vunread_command_events);
2922 c = posn;
284f4730 2923 }
284f4730
JB
2924 }
2925
7d18f9ae
RS
2926 /* Store these characters into recent_keys, the dribble file if any,
2927 and the keyboard macro being defined, if any. */
e4fe371d
RS
2928 record_char (c);
2929 if (! NILP (also_record))
2930 record_char (also_record);
51172b6d 2931
d5eecefb
RS
2932 /* Wipe the echo area.
2933 But first, if we are about to use an input method,
2934 save the echo area contents for it to refer to. */
2935 if (INTEGERP (c)
2936 && ! NILP (Vinput_method_function)
2937 && (unsigned) XINT (c) >= ' '
8d769115
KH
2938 && (unsigned) XINT (c) != 127
2939 && (unsigned) XINT (c) < 256)
7ee32cda
GM
2940 {
2941 previous_echo_area_message = Fcurrent_message ();
2942 Vinput_method_previous_message = previous_echo_area_message;
2943 }
d5eecefb 2944
1172eb8d
GM
2945 /* Now wipe the echo area, except for help events which do their
2946 own stuff with the echo area. */
4d2e9f95
GM
2947 if (!CONSP (c)
2948 || (!(EQ (Qhelp_echo, XCAR (c)))
2949 && !(EQ (Qswitch_frame, XCAR (c)))))
1172eb8d
GM
2950 {
2951 if (!NILP (echo_area_buffer[0]))
2952 safe_run_hooks (Qecho_area_clear_hook);
2953 clear_message (1, 0);
2954 }
d5eecefb 2955
7d18f9ae 2956 reread_for_input_method:
284f4730 2957 from_macro:
7d18f9ae 2958 /* Pass this to the input method, if appropriate. */
d5eecefb
RS
2959 if (INTEGERP (c)
2960 && ! NILP (Vinput_method_function)
b638f328
RS
2961 /* Don't run the input method within a key sequence,
2962 after the first event of the key sequence. */
2963 && NILP (prev_event)
d5eecefb 2964 && (unsigned) XINT (c) >= ' '
8d769115
KH
2965 && (unsigned) XINT (c) != 127
2966 && (unsigned) XINT (c) < 256)
d5eecefb 2967 {
c60ee5e7 2968 Lisp_Object keys;
63020c46 2969 int key_count, key_count_reset;
d5eecefb 2970 struct gcpro gcpro1;
aed13378 2971 int count = SPECPDL_INDEX ();
d5eecefb 2972
6e5742a0
RS
2973 /* Save the echo status. */
2974 int saved_immediate_echo = current_kboard->immediate_echo;
985f9f66 2975 struct kboard *saved_ok_to_echo = ok_to_echo_at_next_pause;
6e5742a0
RS
2976 int saved_echo_after_prompt = current_kboard->echo_after_prompt;
2977
22b94eeb 2978#if 0
6e5742a0
RS
2979 if (before_command_restore_flag)
2980 {
2981 this_command_key_count = before_command_key_count_1;
2982 if (this_command_key_count < this_single_command_key_start)
2983 this_single_command_key_start = this_command_key_count;
2984 echo_truncate (before_command_echo_length_1);
2985 before_command_restore_flag = 0;
2986 }
22b94eeb 2987#endif
6e5742a0
RS
2988
2989 /* Save the this_command_keys status. */
2990 key_count = this_command_key_count;
63020c46 2991 key_count_reset = this_command_key_count_reset;
6e5742a0
RS
2992
2993 if (key_count > 0)
2994 keys = Fcopy_sequence (this_command_keys);
2995 else
2996 keys = Qnil;
d5eecefb 2997 GCPRO1 (keys);
6e5742a0
RS
2998
2999 /* Clear out this_command_keys. */
3000 this_command_key_count = 0;
63020c46 3001 this_command_key_count_reset = 0;
6e5742a0
RS
3002
3003 /* Now wipe the echo area. */
985f9f66 3004 if (!NILP (echo_area_buffer[0]))
6e5742a0 3005 safe_run_hooks (Qecho_area_clear_hook);
985f9f66 3006 clear_message (1, 0);
6e5742a0
RS
3007 echo_truncate (0);
3008
b638f328
RS
3009 /* If we are not reading a key sequence,
3010 never use the echo area. */
3011 if (maps == 0)
3012 {
b638f328
RS
3013 specbind (Qinput_method_use_echo_area, Qt);
3014 }
3015
6e5742a0 3016 /* Call the input method. */
d5eecefb 3017 tem = call1 (Vinput_method_function, c);
b638f328
RS
3018
3019 tem = unbind_to (count, tem);
3020
6e5742a0
RS
3021 /* Restore the saved echoing state
3022 and this_command_keys state. */
3023 this_command_key_count = key_count;
63020c46 3024 this_command_key_count_reset = key_count_reset;
6e5742a0
RS
3025 if (key_count > 0)
3026 this_command_keys = keys;
3027
3028 cancel_echoing ();
3029 ok_to_echo_at_next_pause = saved_ok_to_echo;
3030 current_kboard->echo_after_prompt = saved_echo_after_prompt;
3031 if (saved_immediate_echo)
3032 echo_now ();
3033
d5eecefb 3034 UNGCPRO;
6e5742a0 3035
d5eecefb
RS
3036 /* The input method can return no events. */
3037 if (! CONSP (tem))
7d18f9ae 3038 {
d5eecefb 3039 /* Bring back the previous message, if any. */
7ee32cda
GM
3040 if (! NILP (previous_echo_area_message))
3041 message_with_string ("%s", previous_echo_area_message, 0);
d5eecefb 3042 goto retry;
7d18f9ae 3043 }
d5eecefb 3044 /* It returned one event or more. */
7539e11f 3045 c = XCAR (tem);
d5eecefb 3046 Vunread_post_input_method_events
7539e11f 3047 = nconc2 (XCDR (tem), Vunread_post_input_method_events);
7d18f9ae 3048 }
7c3bc944 3049
7d18f9ae 3050 reread_first:
284f4730 3051
7ee32cda 3052 /* Display help if not echoing. */
1172eb8d 3053 if (CONSP (c) && EQ (XCAR (c), Qhelp_echo))
7ee32cda 3054 {
2190735a 3055 /* (help-echo FRAME HELP WINDOW OBJECT POS). */
d31053f9
RS
3056 Lisp_Object help, object, position, window, tem;
3057
3058 tem = Fcdr (XCDR (c));
3059 help = Fcar (tem);
3060 tem = Fcdr (tem);
3061 window = Fcar (tem);
3062 tem = Fcdr (tem);
3063 object = Fcar (tem);
3064 tem = Fcdr (tem);
3065 position = Fcar (tem);
3066
2190735a 3067 show_help_echo (help, window, object, position, 0);
fdbb67fe
GM
3068
3069 /* We stopped being idle for this event; undo that. */
3070 timer_idleness_start_time = last_idle_start;
7ee32cda
GM
3071 goto retry;
3072 }
c60ee5e7 3073
63020c46
RS
3074 if (! reread || this_command_key_count == 0
3075 || this_command_key_count_reset)
e4fe371d 3076 {
7d18f9ae
RS
3077
3078 /* Don't echo mouse motion events. */
f2647d04
DL
3079 if ((FLOATP (Vecho_keystrokes) || INTEGERP (Vecho_keystrokes))
3080 && NILP (Fzerop (Vecho_keystrokes))
7d18f9ae
RS
3081 && ! (EVENT_HAS_PARAMETERS (c)
3082 && EQ (EVENT_HEAD_KIND (EVENT_HEAD (c)), Qmouse_movement)))
3083 {
3084 echo_char (c);
3085 if (! NILP (also_record))
3086 echo_char (also_record);
3087 /* Once we reread a character, echoing can happen
3088 the next time we pause to read a new one. */
985f9f66 3089 ok_to_echo_at_next_pause = current_kboard;
7d18f9ae
RS
3090 }
3091
3092 /* Record this character as part of the current key. */
3093 add_command_key (c);
e4fe371d 3094 if (! NILP (also_record))
7d18f9ae 3095 add_command_key (also_record);
e4fe371d 3096 }
b8556aee 3097
284f4730 3098 last_input_char = c;
c43b1734 3099 num_input_events++;
284f4730
JB
3100
3101 /* Process the help character specially if enabled */
ecb7cb34 3102 if (!NILP (Vhelp_form) && help_char_p (c))
284f4730
JB
3103 {
3104 Lisp_Object tem0;
aed13378 3105 count = SPECPDL_INDEX ();
284f4730
JB
3106
3107 record_unwind_protect (Fset_window_configuration,
3108 Fcurrent_window_configuration (Qnil));
3109
3110 tem0 = Feval (Vhelp_form);
8c18cbfb 3111 if (STRINGP (tem0))
284f4730
JB
3112 internal_with_output_to_temp_buffer ("*Help*", print_help, tem0);
3113
3114 cancel_echoing ();
3cb81011
KH
3115 do
3116 c = read_char (0, 0, 0, Qnil, 0);
8c18cbfb 3117 while (BUFFERP (c));
ff11dfa1 3118 /* Remove the help from the frame */
284f4730 3119 unbind_to (count, Qnil);
410d4de9 3120
284f4730
JB
3121 redisplay ();
3122 if (EQ (c, make_number (040)))
3123 {
3124 cancel_echoing ();
3cb81011
KH
3125 do
3126 c = read_char (0, 0, 0, Qnil, 0);
8c18cbfb 3127 while (BUFFERP (c));
284f4730
JB
3128 }
3129 }
3130
184c3d81
RS
3131 exit:
3132 RESUME_POLLING;
7c3bc944 3133 RETURN_UNGCPRO (c);
284f4730
JB
3134}
3135
8eb4d8ef
RS
3136/* Record a key that came from a mouse menu.
3137 Record it for echoing, for this-command-keys, and so on. */
3138
3139static void
3140record_menu_key (c)
3141 Lisp_Object c;
3142{
3143 /* Wipe the echo area. */
985f9f66 3144 clear_message (1, 0);
8eb4d8ef
RS
3145
3146 record_char (c);
3147
22b94eeb 3148#if 0
8eb4d8ef
RS
3149 before_command_key_count = this_command_key_count;
3150 before_command_echo_length = echo_length ();
22b94eeb 3151#endif
8eb4d8ef
RS
3152
3153 /* Don't echo mouse motion events. */
f2647d04
DL
3154 if ((FLOATP (Vecho_keystrokes) || INTEGERP (Vecho_keystrokes))
3155 && NILP (Fzerop (Vecho_keystrokes)))
8eb4d8ef
RS
3156 {
3157 echo_char (c);
3158
3159 /* Once we reread a character, echoing can happen
3160 the next time we pause to read a new one. */
3161 ok_to_echo_at_next_pause = 0;
3162 }
3163
3164 /* Record this character as part of the current key. */
3165 add_command_key (c);
3166
3167 /* Re-reading in the middle of a command */
3168 last_input_char = c;
c43b1734 3169 num_input_events++;
8eb4d8ef
RS
3170}
3171
ecb7cb34
KH
3172/* Return 1 if should recognize C as "the help character". */
3173
3174int
3175help_char_p (c)
3176 Lisp_Object c;
3177{
3178 Lisp_Object tail;
3179
3180 if (EQ (c, Vhelp_char))
3181 return 1;
7539e11f
KR
3182 for (tail = Vhelp_event_list; CONSP (tail); tail = XCDR (tail))
3183 if (EQ (c, XCAR (tail)))
ecb7cb34
KH
3184 return 1;
3185 return 0;
3186}
3187
e4fe371d
RS
3188/* Record the input event C in various ways. */
3189
3190static void
3191record_char (c)
3192 Lisp_Object c;
3193{
090c68b9 3194 int recorded = 0;
52be17cc 3195
090c68b9
KS
3196 if (CONSP (c) && (EQ (XCAR (c), Qhelp_echo) || EQ (XCAR (c), Qmouse_movement)))
3197 {
3198 /* To avoid filling recent_keys with help-echo and mouse-movement
3199 events, we filter out repeated help-echo events, only store the
3200 first and last in a series of mouse-movement events, and don't
3201 store repeated help-echo events which are only separated by
3202 mouse-movement events. */
3203
3204 Lisp_Object ev1, ev2, ev3;
3205 int ix1, ix2, ix3;
c60ee5e7 3206
090c68b9
KS
3207 if ((ix1 = recent_keys_index - 1) < 0)
3208 ix1 = NUM_RECENT_KEYS - 1;
3209 ev1 = AREF (recent_keys, ix1);
c60ee5e7 3210
090c68b9
KS
3211 if ((ix2 = ix1 - 1) < 0)
3212 ix2 = NUM_RECENT_KEYS - 1;
3213 ev2 = AREF (recent_keys, ix2);
c60ee5e7 3214
090c68b9
KS
3215 if ((ix3 = ix2 - 1) < 0)
3216 ix3 = NUM_RECENT_KEYS - 1;
3217 ev3 = AREF (recent_keys, ix3);
c60ee5e7 3218
090c68b9
KS
3219 if (EQ (XCAR (c), Qhelp_echo))
3220 {
3221 /* Don't record `help-echo' in recent_keys unless it shows some help
a978004d 3222 message, and a different help than the previously recorded
090c68b9
KS
3223 event. */
3224 Lisp_Object help, last_help;
3225
3226 help = Fcar_safe (Fcdr_safe (XCDR (c)));
3227 if (!STRINGP (help))
3228 recorded = 1;
3229 else if (CONSP (ev1) && EQ (XCAR (ev1), Qhelp_echo)
3230 && (last_help = Fcar_safe (Fcdr_safe (XCDR (ev1))), EQ (last_help, help)))
3231 recorded = 1;
3232 else if (CONSP (ev1) && EQ (XCAR (ev1), Qmouse_movement)
3233 && CONSP (ev2) && EQ (XCAR (ev2), Qhelp_echo)
3234 && (last_help = Fcar_safe (Fcdr_safe (XCDR (ev2))), EQ (last_help, help)))
3235 recorded = -1;
3236 else if (CONSP (ev1) && EQ (XCAR (ev1), Qmouse_movement)
3237 && CONSP (ev2) && EQ (XCAR (ev2), Qmouse_movement)
3238 && CONSP (ev3) && EQ (XCAR (ev3), Qhelp_echo)
3239 && (last_help = Fcar_safe (Fcdr_safe (XCDR (ev3))), EQ (last_help, help)))
3240 recorded = -2;
3241 }
3242 else if (EQ (XCAR (c), Qmouse_movement))
52be17cc 3243 {
090c68b9
KS
3244 /* Only record one pair of `mouse-movement' on a window in recent_keys.
3245 So additional mouse movement events replace the last element. */
3246 Lisp_Object last_window, window;
3247
3248 window = Fcar_safe (Fcar_safe (XCDR (c)));
3249 if (CONSP (ev1) && EQ (XCAR (ev1), Qmouse_movement)
3250 && (last_window = Fcar_safe (Fcar_safe (XCDR (ev1))), EQ (last_window, window))
3251 && CONSP (ev2) && EQ (XCAR (ev2), Qmouse_movement)
3252 && (last_window = Fcar_safe (Fcar_safe (XCDR (ev2))), EQ (last_window, window)))
52be17cc 3253 {
090c68b9
KS
3254 ASET (recent_keys, ix1, c);
3255 recorded = 1;
52be17cc
GM
3256 }
3257 }
3258 }
3259 else
090c68b9
KS
3260 store_kbd_macro_char (c);
3261
3262 if (!recorded)
e8a50785
GM
3263 {
3264 total_keys++;
3265 ASET (recent_keys, recent_keys_index, c);
3266 if (++recent_keys_index >= NUM_RECENT_KEYS)
3267 recent_keys_index = 0;
3268 }
090c68b9
KS
3269 else if (recorded < 0)
3270 {
3271 /* We need to remove one or two events from recent_keys.
3272 To do this, we simply put nil at those events and move the
3273 recent_keys_index backwards over those events. Usually,
3274 users will never see those nil events, as they will be
3275 overwritten by the command keys entered to see recent_keys
3276 (e.g. C-h l). */
3277
3278 while (recorded++ < 0 && total_keys > 0)
3279 {
3280 if (total_keys < NUM_RECENT_KEYS)
3281 total_keys--;
3282 if (--recent_keys_index < 0)
3283 recent_keys_index = NUM_RECENT_KEYS - 1;
3284 ASET (recent_keys, recent_keys_index, Qnil);
3285 }
3286 }
3287
3288 num_nonmacro_input_events++;
c60ee5e7 3289
e4fe371d
RS
3290 /* Write c to the dribble file. If c is a lispy event, write
3291 the event's symbol to the dribble file, in <brackets>. Bleaugh.
3292 If you, dear reader, have a better idea, you've got the source. :-) */
3293 if (dribble)
3294 {
3295 if (INTEGERP (c))
3296 {
3297 if (XUINT (c) < 0x100)
3298 putc (XINT (c), dribble);
3299 else
6de34814 3300 fprintf (dribble, " 0x%x", (int) XUINT (c));
e4fe371d
RS
3301 }
3302 else
3303 {
3304 Lisp_Object dribblee;
3305
3306 /* If it's a structured event, take the event header. */
3307 dribblee = EVENT_HEAD (c);
3308
3309 if (SYMBOLP (dribblee))
3310 {
3311 putc ('<', dribble);
d5db4077
KR
3312 fwrite (SDATA (SYMBOL_NAME (dribblee)), sizeof (char),
3313 SBYTES (SYMBOL_NAME (dribblee)),
e4fe371d
RS
3314 dribble);
3315 putc ('>', dribble);
3316 }
3317 }
3318
3319 fflush (dribble);
3320 }
e4fe371d
RS
3321}
3322
284f4730
JB
3323Lisp_Object
3324print_help (object)
3325 Lisp_Object object;
3326{
622de3e9 3327 struct buffer *old = current_buffer;
284f4730 3328 Fprinc (object, Qnil);
622de3e9
KH
3329 set_buffer_internal (XBUFFER (Vstandard_output));
3330 call0 (intern ("help-mode"));
3331 set_buffer_internal (old);
284f4730
JB
3332 return Qnil;
3333}
3334
3335/* Copy out or in the info on where C-g should throw to.
3336 This is used when running Lisp code from within get_char,
3337 in case get_char is called recursively.
3338 See read_process_output. */
3339
dfcf069d 3340static void
284f4730
JB
3341save_getcjmp (temp)
3342 jmp_buf temp;
3343{
3344 bcopy (getcjmp, temp, sizeof getcjmp);
3345}
3346
dfcf069d 3347static void
284f4730
JB
3348restore_getcjmp (temp)
3349 jmp_buf temp;
3350{
3351 bcopy (temp, getcjmp, sizeof getcjmp);
3352}
284f4730 3353\f
2eb6bfbe
RM
3354#ifdef HAVE_MOUSE
3355
284f4730
JB
3356/* Restore mouse tracking enablement. See Ftrack_mouse for the only use
3357 of this function. */
a9d77f1f 3358
284f4730
JB
3359static Lisp_Object
3360tracking_off (old_value)
3361 Lisp_Object old_value;
3362{
71edead1
RS
3363 do_mouse_tracking = old_value;
3364 if (NILP (old_value))
284f4730 3365 {
284f4730
JB
3366 /* Redisplay may have been preempted because there was input
3367 available, and it assumes it will be called again after the
3368 input has been processed. If the only input available was
3369 the sort that we have just disabled, then we need to call
3370 redisplay. */
d9d4c147 3371 if (!readable_events (1))
284f4730 3372 {
3007ebfb 3373 redisplay_preserve_echo_area (6);
d9d4c147 3374 get_input_pending (&input_pending, 1);
284f4730
JB
3375 }
3376 }
30690496 3377 return Qnil;
284f4730
JB
3378}
3379
3380DEFUN ("track-mouse", Ftrack_mouse, Strack_mouse, 0, UNEVALLED, 0,
4707d2d0
PJ
3381 doc: /* Evaluate BODY with mouse movement events enabled.
3382Within a `track-mouse' form, mouse motion generates input events that
3383you can read with `read-event'.
3384Normally, mouse motion is ignored.
3385usage: (track-mouse BODY ...) */)
3386 (args)
284f4730
JB
3387 Lisp_Object args;
3388{
aed13378 3389 int count = SPECPDL_INDEX ();
284f4730
JB
3390 Lisp_Object val;
3391
a9d77f1f 3392 record_unwind_protect (tracking_off, do_mouse_tracking);
284f4730 3393
f3253854 3394 do_mouse_tracking = Qt;
df0f2ba1 3395
284f4730
JB
3396 val = Fprogn (args);
3397 return unbind_to (count, val);
3398}
2eb6bfbe 3399
f3253854
KH
3400/* If mouse has moved on some frame, return one of those frames.
3401 Return 0 otherwise. */
3402
3403static FRAME_PTR
3404some_mouse_moved ()
3405{
3406 Lisp_Object tail, frame;
3407
3408 FOR_EACH_FRAME (tail, frame)
3409 {
3410 if (XFRAME (frame)->mouse_moved)
3411 return XFRAME (frame);
3412 }
3413
3414 return 0;
3415}
3416
2eb6bfbe 3417#endif /* HAVE_MOUSE */
a612e298
RS
3418\f
3419/* Low level keyboard/mouse input.
3420 kbd_buffer_store_event places events in kbd_buffer, and
0646c0dd 3421 kbd_buffer_get_event retrieves them. */
a612e298
RS
3422
3423/* Return true iff there are any events in the queue that read-char
3424 would return. If this returns false, a read-char would block. */
3425static int
20057d52 3426readable_filtered_events (do_timers_now, filter_events)
d9d4c147 3427 int do_timers_now;
20057d52 3428 int filter_events;
a612e298 3429{
4ec4ed6a
RS
3430 if (do_timers_now)
3431 timer_check (do_timers_now);
3432
a0ba8995 3433 /* If the buffer contains only FOCUS_IN_EVENT events,
20057d52 3434 and FILTER_EVENTS is nonzero, report it as empty. */
beecf6a1 3435 if (kbd_fetch_ptr != kbd_store_ptr)
a0ba8995 3436 {
20057d52 3437 int have_live_event = 1;
a0ba8995 3438
20057d52
JD
3439 if (filter_events)
3440 {
3441 struct input_event *event;
3442
3443 event = ((kbd_fetch_ptr < kbd_buffer + KBD_BUFFER_SIZE)
3444 ? kbd_fetch_ptr
3445 : kbd_buffer);
3446
3447 while (have_live_event && event->kind == FOCUS_IN_EVENT)
3448 {
3449 event++;
3450 if (event == kbd_buffer + KBD_BUFFER_SIZE)
3451 event = kbd_buffer;
3452 if (event == kbd_store_ptr)
3453 have_live_event = 0;
3454 }
3455 }
3456 if (have_live_event) return 1;
a0ba8995
RS
3457 }
3458
beecf6a1 3459#ifdef HAVE_MOUSE
f3253854 3460 if (!NILP (do_mouse_tracking) && some_mouse_moved ())
beecf6a1
KH
3461 return 1;
3462#endif
1e8bd3da 3463 if (single_kboard)
4c52b668 3464 {
c5fdd383 3465 if (current_kboard->kbd_queue_has_data)
4c52b668
KH
3466 return 1;
3467 }
3468 else
3469 {
c5fdd383
KH
3470 KBOARD *kb;
3471 for (kb = all_kboards; kb; kb = kb->next_kboard)
3472 if (kb->kbd_queue_has_data)
4c52b668
KH
3473 return 1;
3474 }
beecf6a1 3475 return 0;
a612e298
RS
3476}
3477
20057d52
JD
3478/* Return true iff there are any events in the queue that read-char
3479 would return. If this returns false, a read-char would block. */
3480static int
3481readable_events (do_timers_now)
3482 int do_timers_now;
3483{
3484 return readable_filtered_events (do_timers_now, 0);
3485}
3486
a612e298
RS
3487/* Set this for debugging, to have a way to get out */
3488int stop_character;
284f4730 3489
c5fdd383
KH
3490#ifdef MULTI_KBOARD
3491static KBOARD *
3492event_to_kboard (event)
5798cf15
KH
3493 struct input_event *event;
3494{
3495 Lisp_Object frame;
3496 frame = event->frame_or_window;
3497 if (CONSP (frame))
7539e11f 3498 frame = XCAR (frame);
5798cf15
KH
3499 else if (WINDOWP (frame))
3500 frame = WINDOW_FRAME (XWINDOW (frame));
3501
3502 /* There are still some events that don't set this field.
f5b56972
KH
3503 For now, just ignore the problem.
3504 Also ignore dead frames here. */
3505 if (!FRAMEP (frame) || !FRAME_LIVE_P (XFRAME (frame)))
5798cf15
KH
3506 return 0;
3507 else
c5fdd383 3508 return FRAME_KBOARD (XFRAME (frame));
5798cf15
KH
3509}
3510#endif
3511
284f4730
JB
3512/* Store an event obtained at interrupt level into kbd_buffer, fifo */
3513
3514void
3515kbd_buffer_store_event (event)
3516 register struct input_event *event;
3517{
3b8f9651 3518 if (event->kind == NO_EVENT)
284f4730
JB
3519 abort ();
3520
3b8f9651 3521 if (event->kind == ASCII_KEYSTROKE_EVENT)
284f4730 3522 {
e9bf89a0 3523 register int c = event->code & 0377;
284f4730 3524
faf5e407
JB
3525 if (event->modifiers & ctrl_modifier)
3526 c = make_ctrl_char (c);
3527
9fd7d808
RS
3528 c |= (event->modifiers
3529 & (meta_modifier | alt_modifier
3530 | hyper_modifier | super_modifier));
3531
86e5706b 3532 if (c == quit_char)
284f4730 3533 {
c5fdd383
KH
3534#ifdef MULTI_KBOARD
3535 KBOARD *kb;
5798cf15
KH
3536 struct input_event *sp;
3537
1e8bd3da 3538 if (single_kboard
c5fdd383
KH
3539 && (kb = FRAME_KBOARD (XFRAME (event->frame_or_window)),
3540 kb != current_kboard))
5798cf15 3541 {
c5fdd383 3542 kb->kbd_queue
5798cf15
KH
3543 = Fcons (make_lispy_switch_frame (event->frame_or_window),
3544 Fcons (make_number (c), Qnil));
c5fdd383 3545 kb->kbd_queue_has_data = 1;
5798cf15
KH
3546 for (sp = kbd_fetch_ptr; sp != kbd_store_ptr; sp++)
3547 {
3548 if (sp == kbd_buffer + KBD_BUFFER_SIZE)
3549 sp = kbd_buffer;
3550
c5fdd383 3551 if (event_to_kboard (sp) == kb)
5798cf15 3552 {
3b8f9651 3553 sp->kind = NO_EVENT;
5798cf15 3554 sp->frame_or_window = Qnil;
da8f7368 3555 sp->arg = Qnil;
5798cf15
KH
3556 }
3557 }
3558 return;
3559 }
3560#endif
3e51c7b7 3561
284f4730 3562 /* If this results in a quit_char being returned to Emacs as
3c370943 3563 input, set Vlast_event_frame properly. If this doesn't
284f4730 3564 get returned to Emacs as an event, the next event read
ff11dfa1 3565 will set Vlast_event_frame again, so this is safe to do. */
4bb994d1 3566 {
9b8eb840 3567 Lisp_Object focus;
4bb994d1 3568
9b8eb840 3569 focus = FRAME_FOCUS_FRAME (XFRAME (event->frame_or_window));
4bb994d1 3570 if (NILP (focus))
beecf6a1 3571 focus = event->frame_or_window;
4c52b668
KH
3572 internal_last_event_frame = focus;
3573 Vlast_event_frame = focus;
4bb994d1 3574 }
3e51c7b7 3575
ffd56f97 3576 last_event_timestamp = event->timestamp;
114a8b8c 3577 handle_interrupt ();
284f4730
JB
3578 return;
3579 }
3580
3581 if (c && c == stop_character)
3582 {
3583 sys_suspend ();
3584 return;
3585 }
284f4730 3586 }
3b8f9651 3587 /* Don't insert two BUFFER_SWITCH_EVENT's in a row.
3fe8e9a2 3588 Just ignore the second one. */
3b8f9651 3589 else if (event->kind == BUFFER_SWITCH_EVENT
3fe8e9a2 3590 && kbd_fetch_ptr != kbd_store_ptr
3b8f9651 3591 && kbd_store_ptr->kind == BUFFER_SWITCH_EVENT)
3fe8e9a2 3592 return;
284f4730 3593
beecf6a1
KH
3594 if (kbd_store_ptr - kbd_buffer == KBD_BUFFER_SIZE)
3595 kbd_store_ptr = kbd_buffer;
284f4730
JB
3596
3597 /* Don't let the very last slot in the buffer become full,
3598 since that would make the two pointers equal,
3599 and that is indistinguishable from an empty buffer.
3600 Discard the event if it would fill the last slot. */
beecf6a1 3601 if (kbd_fetch_ptr - 1 != kbd_store_ptr)
284f4730 3602 {
c60ee5e7 3603
3b8f9651 3604#if 0 /* The SELECTION_REQUEST_EVENT case looks bogus, and it's error
da8f7368
GM
3605 prone to assign individual members for other events, in case
3606 the input_event structure is changed. --2000-07-13, gerd. */
7ee32cda 3607 struct input_event *sp = kbd_store_ptr;
612b78ef 3608 sp->kind = event->kind;
3b8f9651 3609 if (event->kind == SELECTION_REQUEST_EVENT)
27203ead
RS
3610 {
3611 /* We must not use the ordinary copying code for this case,
3612 since `part' is an enum and copying it might not copy enough
3613 in this case. */
612b78ef 3614 bcopy (event, (char *) sp, sizeof (*event));
27203ead
RS
3615 }
3616 else
da8f7368 3617
27203ead 3618 {
612b78ef
KH
3619 sp->code = event->code;
3620 sp->part = event->part;
3621 sp->frame_or_window = event->frame_or_window;
da8f7368 3622 sp->arg = event->arg;
612b78ef
KH
3623 sp->modifiers = event->modifiers;
3624 sp->x = event->x;
3625 sp->y = event->y;
3626 sp->timestamp = event->timestamp;
27203ead 3627 }
da8f7368
GM
3628#else
3629 *kbd_store_ptr = *event;
3630#endif
284f4730 3631
da8f7368 3632 ++kbd_store_ptr;
284f4730
JB
3633 }
3634}
8dfd92c9
GM
3635
3636
f139e559 3637/* Generate HELP_EVENT input_events in BUFP which has room for
0bbfdc25
GM
3638 SIZE events. If there's not enough room in BUFP, ignore this
3639 event.
8dfd92c9
GM
3640
3641 HELP is the help form.
3642
3643 FRAME is the frame on which the help is generated. OBJECT is the
5b2ec2d0
GM
3644 Lisp object where the help was found (a buffer, a string, an
3645 overlay, or nil if neither from a string nor from a buffer. POS is
3646 the position within OBJECT where the help was found.
8dfd92c9
GM
3647
3648 Value is the number of input_events generated. */
3649
3650int
0bbfdc25 3651gen_help_event (bufp, size, help, frame, window, object, pos)
8dfd92c9 3652 struct input_event *bufp;
0bbfdc25 3653 int size;
2190735a 3654 Lisp_Object help, frame, object, window;
8dfd92c9
GM
3655 int pos;
3656{
2e1a49ad 3657 if (size >= 1)
0bbfdc25
GM
3658 {
3659 bufp->kind = HELP_EVENT;
3660 bufp->frame_or_window = frame;
3661 bufp->arg = object;
2e1a49ad
SM
3662 bufp->x = WINDOWP (window) ? window : frame;
3663 bufp->y = help;
78134789 3664 bufp->code = pos;
2e1a49ad 3665 return 1;
0bbfdc25 3666 }
2e1a49ad 3667 return 0;
8dfd92c9
GM
3668}
3669
3670
3671/* Store HELP_EVENTs for HELP on FRAME in the input queue. */
3672
3673void
3674kbd_buffer_store_help_event (frame, help)
3675 Lisp_Object frame, help;
3676{
3677 struct input_event event;
3678
3679 event.kind = HELP_EVENT;
3680 event.frame_or_window = frame;
3681 event.arg = Qnil;
2e1a49ad
SM
3682 event.x = Qnil;
3683 event.y = help;
8dfd92c9
GM
3684 event.code = 0;
3685 kbd_buffer_store_event (&event);
8dfd92c9
GM
3686}
3687
a612e298 3688\f
07de30b9 3689/* Discard any mouse events in the event buffer by setting them to
3b8f9651 3690 NO_EVENT. */
07de30b9
GV
3691void
3692discard_mouse_events ()
3693{
3694 struct input_event *sp;
3695 for (sp = kbd_fetch_ptr; sp != kbd_store_ptr; sp++)
3696 {
3697 if (sp == kbd_buffer + KBD_BUFFER_SIZE)
3698 sp = kbd_buffer;
3699
3b8f9651 3700 if (sp->kind == MOUSE_CLICK_EVENT
8006e4bb 3701 || sp->kind == WHEEL_EVENT
07de30b9 3702#ifdef WINDOWSNT
3b8f9651 3703 || sp->kind == W32_SCROLL_BAR_CLICK_EVENT
07de30b9 3704#endif
3b8f9651 3705 || sp->kind == SCROLL_BAR_CLICK_EVENT)
07de30b9 3706 {
3b8f9651 3707 sp->kind = NO_EVENT;
07de30b9
GV
3708 }
3709 }
3710}
eeabfe76 3711
0bbfdc25
GM
3712
3713/* Return non-zero if there are any real events waiting in the event
3b8f9651 3714 buffer, not counting `NO_EVENT's.
0bbfdc25 3715
3b8f9651 3716 If DISCARD is non-zero, discard NO_EVENT events at the front of
0bbfdc25
GM
3717 the input queue, possibly leaving the input queue empty if there
3718 are no real input events. */
3719
eeabfe76
EZ
3720int
3721kbd_buffer_events_waiting (discard)
3722 int discard;
3723{
3724 struct input_event *sp;
c60ee5e7 3725
0bbfdc25 3726 for (sp = kbd_fetch_ptr;
3b8f9651 3727 sp != kbd_store_ptr && sp->kind == NO_EVENT;
0bbfdc25 3728 ++sp)
eeabfe76
EZ
3729 {
3730 if (sp == kbd_buffer + KBD_BUFFER_SIZE)
3731 sp = kbd_buffer;
eeabfe76 3732 }
0bbfdc25 3733
eeabfe76
EZ
3734 if (discard)
3735 kbd_fetch_ptr = sp;
0bbfdc25 3736
3b8f9651 3737 return sp != kbd_store_ptr && sp->kind != NO_EVENT;
eeabfe76 3738}
0bbfdc25 3739
07de30b9 3740\f
0bbfdc25
GM
3741/* Clear input event EVENT. */
3742
3743static INLINE void
3744clear_event (event)
3745 struct input_event *event;
3746{
3b8f9651 3747 event->kind = NO_EVENT;
0bbfdc25
GM
3748}
3749
3750
a612e298
RS
3751/* Read one event from the event buffer, waiting if necessary.
3752 The value is a Lisp object representing the event.
3753 The value is nil for an event that should be ignored,
3754 or that was handled here.
3755 We always read and discard one event. */
284f4730
JB
3756
3757static Lisp_Object
83d68044 3758kbd_buffer_get_event (kbp, used_mouse_menu)
410d4de9 3759 KBOARD **kbp;
83d68044 3760 int *used_mouse_menu;
284f4730
JB
3761{
3762 register int c;
3763 Lisp_Object obj;
3764
3765 if (noninteractive)
3766 {
3767 c = getchar ();
18cd2eeb 3768 XSETINT (obj, c);
f5b56972 3769 *kbp = current_kboard;
284f4730
JB
3770 return obj;
3771 }
3772
3773 /* Wait until there is input available. */
3774 for (;;)
3775 {
beecf6a1
KH
3776 if (kbd_fetch_ptr != kbd_store_ptr)
3777 break;
3778#ifdef HAVE_MOUSE
f3253854 3779 if (!NILP (do_mouse_tracking) && some_mouse_moved ())
284f4730 3780 break;
beecf6a1 3781#endif
284f4730
JB
3782
3783 /* If the quit flag is set, then read_char will return
3784 quit_char, so that counts as "available input." */
3785 if (!NILP (Vquit_flag))
3786 quit_throw_to_read_char ();
3787
3788 /* One way or another, wait until input is available; then, if
3789 interrupt handlers have not read it, read it now. */
3790
3791#ifdef OLDVMS
3792 wait_for_kbd_input ();
3793#else
3794/* Note SIGIO has been undef'd if FIONREAD is missing. */
3795#ifdef SIGIO
3796 gobble_input (0);
3797#endif /* SIGIO */
beecf6a1
KH
3798 if (kbd_fetch_ptr != kbd_store_ptr)
3799 break;
3800#ifdef HAVE_MOUSE
f3253854 3801 if (!NILP (do_mouse_tracking) && some_mouse_moved ())
beecf6a1
KH
3802 break;
3803#endif
3804 {
3805 Lisp_Object minus_one;
f76475ad 3806
beecf6a1 3807 XSETINT (minus_one, -1);
d9d4c147 3808 wait_reading_process_input (0, 0, minus_one, 1);
284f4730 3809
beecf6a1
KH
3810 if (!interrupt_input && kbd_fetch_ptr == kbd_store_ptr)
3811 /* Pass 1 for EXPECT since we just waited to have input. */
3812 read_avail_input (1);
3813 }
284f4730
JB
3814#endif /* not VMS */
3815 }
3816
303b5b3f
RS
3817 if (CONSP (Vunread_command_events))
3818 {
3819 Lisp_Object first;
7539e11f
KR
3820 first = XCAR (Vunread_command_events);
3821 Vunread_command_events = XCDR (Vunread_command_events);
303b5b3f
RS
3822 *kbp = current_kboard;
3823 return first;
3824 }
3825
284f4730
JB
3826 /* At this point, we know that there is a readable event available
3827 somewhere. If the event queue is empty, then there must be a
3828 mouse movement enabled and available. */
beecf6a1 3829 if (kbd_fetch_ptr != kbd_store_ptr)
284f4730 3830 {
cd21b839 3831 struct input_event *event;
3e51c7b7 3832
beecf6a1
KH
3833 event = ((kbd_fetch_ptr < kbd_buffer + KBD_BUFFER_SIZE)
3834 ? kbd_fetch_ptr
3835 : kbd_buffer);
3e51c7b7 3836
cd21b839 3837 last_event_timestamp = event->timestamp;
cd21b839 3838
c5fdd383
KH
3839#ifdef MULTI_KBOARD
3840 *kbp = event_to_kboard (event);
3841 if (*kbp == 0)
3842 *kbp = current_kboard; /* Better than returning null ptr? */
5798cf15 3843#else
c5fdd383 3844 *kbp = &the_only_kboard;
5798cf15 3845#endif
beecf6a1 3846
4bb994d1
JB
3847 obj = Qnil;
3848
48e416d4 3849 /* These two kinds of events get special handling
a612e298
RS
3850 and don't actually appear to the command loop.
3851 We return nil for them. */
3b8f9651 3852 if (event->kind == SELECTION_REQUEST_EVENT)
48e416d4 3853 {
598a9fa7 3854#ifdef HAVE_X11
1e8bd3da
RS
3855 struct input_event copy;
3856
4581e928
RS
3857 /* Remove it from the buffer before processing it,
3858 since otherwise swallow_events will see it
3859 and process it again. */
1e8bd3da 3860 copy = *event;
beecf6a1 3861 kbd_fetch_ptr = event + 1;
d9d4c147 3862 input_pending = readable_events (0);
4581e928 3863 x_handle_selection_request (&copy);
598a9fa7
JB
3864#else
3865 /* We're getting selection request events, but we don't have
3866 a window system. */
3867 abort ();
3868#endif
48e416d4
RS
3869 }
3870
3b8f9651 3871 else if (event->kind == SELECTION_CLEAR_EVENT)
48e416d4 3872 {
598a9fa7 3873#ifdef HAVE_X11
e0301c07
RS
3874 struct input_event copy;
3875
3876 /* Remove it from the buffer before processing it. */
3877 copy = *event;
beecf6a1 3878 kbd_fetch_ptr = event + 1;
d9d4c147 3879 input_pending = readable_events (0);
90c2bb0c 3880 x_handle_selection_clear (&copy);
598a9fa7
JB
3881#else
3882 /* We're getting selection request events, but we don't have
3883 a window system. */
3884 abort ();
3885#endif
48e416d4 3886 }
e0f712ba 3887#if defined (HAVE_X11) || defined (HAVE_NTGUI) || defined (MAC_OS)
3b8f9651 3888 else if (event->kind == DELETE_WINDOW_EVENT)
990acea3 3889 {
bbdc2092
RS
3890 /* Make an event (delete-frame (FRAME)). */
3891 obj = Fcons (event->frame_or_window, Qnil);
af17bd2b 3892 obj = Fcons (Qdelete_frame, Fcons (obj, Qnil));
beecf6a1 3893 kbd_fetch_ptr = event + 1;
af17bd2b 3894 }
1a578e9b
AC
3895#endif
3896#if defined (HAVE_X11) || defined (HAVE_NTGUI)
3b8f9651 3897 else if (event->kind == ICONIFY_EVENT)
af17bd2b
KH
3898 {
3899 /* Make an event (iconify-frame (FRAME)). */
3900 obj = Fcons (event->frame_or_window, Qnil);
3901 obj = Fcons (Qiconify_frame, Fcons (obj, Qnil));
beecf6a1 3902 kbd_fetch_ptr = event + 1;
af17bd2b 3903 }
3b8f9651 3904 else if (event->kind == DEICONIFY_EVENT)
af17bd2b
KH
3905 {
3906 /* Make an event (make-frame-visible (FRAME)). */
3907 obj = Fcons (event->frame_or_window, Qnil);
3908 obj = Fcons (Qmake_frame_visible, Fcons (obj, Qnil));
beecf6a1 3909 kbd_fetch_ptr = event + 1;
990acea3
RS
3910 }
3911#endif
3b8f9651 3912 else if (event->kind == BUFFER_SWITCH_EVENT)
a8015ab5
KH
3913 {
3914 /* The value doesn't matter here; only the type is tested. */
18cd2eeb 3915 XSETBUFFER (obj, current_buffer);
beecf6a1 3916 kbd_fetch_ptr = event + 1;
a8015ab5 3917 }
488dd4c4
JD
3918#if defined (USE_X_TOOLKIT) || defined (HAVE_NTGUI) || defined (MAC_OS) \
3919 || defined (USE_GTK)
3b8f9651 3920 else if (event->kind == MENU_BAR_ACTIVATE_EVENT)
099787c1
RS
3921 {
3922 kbd_fetch_ptr = event + 1;
d9d4c147 3923 input_pending = readable_events (0);
e649d076
RS
3924 if (FRAME_LIVE_P (XFRAME (event->frame_or_window)))
3925 x_activate_menubar (XFRAME (event->frame_or_window));
099787c1 3926 }
1161d367
GV
3927#endif
3928#ifdef WINDOWSNT
3b8f9651 3929 else if (event->kind == LANGUAGE_CHANGE_EVENT)
1161d367
GV
3930 {
3931 /* Make an event (language-change (FRAME CHARSET LCID)). */
3932 obj = Fcons (event->modifiers, Qnil);
15fdc2e3 3933 obj = Fcons (event->code, obj);
1161d367
GV
3934 obj = Fcons (event->frame_or_window, obj);
3935 obj = Fcons (Qlanguage_change, Fcons (obj, Qnil));
3936 kbd_fetch_ptr = event + 1;
3937 }
099787c1 3938#endif
3b8f9651 3939 else if (event->kind == SAVE_SESSION_EVENT)
4ebc27a5
JD
3940 {
3941 obj = Fcons (Qsave_session, Qnil);
3942 kbd_fetch_ptr = event + 1;
3943 }
a612e298 3944 /* Just discard these, by returning nil.
c5fdd383 3945 With MULTI_KBOARD, these events are used as placeholders
5798cf15
KH
3946 when we need to randomly delete events from the queue.
3947 (They shouldn't otherwise be found in the buffer,
3948 but on some machines it appears they do show up
c5fdd383 3949 even without MULTI_KBOARD.) */
3b8f9651 3950 /* On Windows NT/9X, NO_EVENT is used to delete extraneous
07de30b9 3951 mouse events during a popup-menu call. */
3b8f9651 3952 else if (event->kind == NO_EVENT)
beecf6a1 3953 kbd_fetch_ptr = event + 1;
7ee32cda
GM
3954 else if (event->kind == HELP_EVENT)
3955 {
2190735a 3956 Lisp_Object object, position, help, frame, window;
e4457b09 3957
8dfd92c9
GM
3958 frame = event->frame_or_window;
3959 object = event->arg;
2e1a49ad
SM
3960 position = make_number (event->code);
3961 window = event->x;
3962 help = event->y;
0bbfdc25 3963 clear_event (event);
e4457b09
GM
3964
3965 kbd_fetch_ptr = event + 1;
2190735a
GM
3966 if (!WINDOWP (window))
3967 window = Qnil;
3968 obj = Fcons (Qhelp_echo,
3969 list5 (frame, help, window, object, position));
7ee32cda 3970 }
c51c7093
GM
3971 else if (event->kind == FOCUS_IN_EVENT)
3972 {
3973 /* Notification of a FocusIn event. The frame receiving the
3974 focus is in event->frame_or_window. Generate a
3975 switch-frame event if necessary. */
3976 Lisp_Object frame, focus;
3977
3978 frame = event->frame_or_window;
3979 focus = FRAME_FOCUS_FRAME (XFRAME (frame));
3980 if (FRAMEP (focus))
3981 frame = focus;
3982
3983 if (!EQ (frame, internal_last_event_frame)
3984 && !EQ (frame, selected_frame))
3985 obj = make_lispy_switch_frame (frame);
3986 internal_last_event_frame = frame;
3987 kbd_fetch_ptr = event + 1;
3988 }
1e12dd87
RS
3989 else
3990 {
c51c7093
GM
3991 /* If this event is on a different frame, return a switch-frame this
3992 time, and leave the event in the queue for next time. */
9b8eb840 3993 Lisp_Object frame;
1e12dd87 3994 Lisp_Object focus;
7b4aedb9 3995
9b8eb840 3996 frame = event->frame_or_window;
2470a66f 3997 if (CONSP (frame))
7539e11f 3998 frame = XCAR (frame);
2470a66f 3999 else if (WINDOWP (frame))
1e12dd87 4000 frame = WINDOW_FRAME (XWINDOW (frame));
4bb994d1 4001
1e12dd87
RS
4002 focus = FRAME_FOCUS_FRAME (XFRAME (frame));
4003 if (! NILP (focus))
4004 frame = focus;
07d2b8de 4005
4c52b668 4006 if (! EQ (frame, internal_last_event_frame)
788f89eb 4007 && !EQ (frame, selected_frame))
1e12dd87 4008 obj = make_lispy_switch_frame (frame);
4c52b668 4009 internal_last_event_frame = frame;
4bb994d1 4010
1e12dd87
RS
4011 /* If we didn't decide to make a switch-frame event, go ahead
4012 and build a real event from the queue entry. */
cd21b839 4013
1e12dd87
RS
4014 if (NILP (obj))
4015 {
4016 obj = make_lispy_event (event);
c60ee5e7 4017
488dd4c4
JD
4018#if defined (USE_X_TOOLKIT) || defined (HAVE_NTGUI) || defined(MAC_OS) \
4019 || defined (USE_GTK)
83d68044
KH
4020 /* If this was a menu selection, then set the flag to inhibit
4021 writing to last_nonmenu_event. Don't do this if the event
4022 we're returning is (menu-bar), though; that indicates the
4023 beginning of the menu sequence, and we might as well leave
4024 that as the `event with parameters' for this selection. */
da8f7368
GM
4025 if (used_mouse_menu
4026 && !EQ (event->frame_or_window, event->arg)
4027 && (event->kind == MENU_BAR_EVENT
4028 || event->kind == TOOL_BAR_EVENT))
83d68044
KH
4029 *used_mouse_menu = 1;
4030#endif
1e12dd87
RS
4031
4032 /* Wipe out this event, to catch bugs. */
0bbfdc25 4033 clear_event (event);
beecf6a1 4034 kbd_fetch_ptr = event + 1;
1e12dd87 4035 }
4bb994d1 4036 }
284f4730 4037 }
2eb6bfbe 4038#ifdef HAVE_MOUSE
a612e298 4039 /* Try generating a mouse motion event. */
f3253854 4040 else if (!NILP (do_mouse_tracking) && some_mouse_moved ())
284f4730 4041 {
f3253854 4042 FRAME_PTR f = some_mouse_moved ();
7b4aedb9 4043 Lisp_Object bar_window;
3c370943 4044 enum scroll_bar_part part;
e5d77022
JB
4045 Lisp_Object x, y;
4046 unsigned long time;
284f4730 4047
c5fdd383 4048 *kbp = current_kboard;
e177ac3a
RS
4049 /* Note that this uses F to determine which display to look at.
4050 If there is no valid info, it does not store anything
4051 so x remains nil. */
4052 x = Qnil;
428a555e
KL
4053 if (f && FRAME_DISPLAY (f)->mouse_position_hook) /* XXX Can f or mouse_position_hook be NULL here? */
4054 (*FRAME_DISPLAY (f)->mouse_position_hook) (&f, 0, &bar_window, &part, &x, &y, &time);
4bb994d1
JB
4055
4056 obj = Qnil;
284f4730 4057
4bb994d1
JB
4058 /* Decide if we should generate a switch-frame event. Don't
4059 generate switch-frame events for motion outside of all Emacs
4060 frames. */
e177ac3a 4061 if (!NILP (x) && f)
cd21b839 4062 {
9b8eb840 4063 Lisp_Object frame;
4bb994d1 4064
9b8eb840 4065 frame = FRAME_FOCUS_FRAME (f);
4bb994d1 4066 if (NILP (frame))
18cd2eeb 4067 XSETFRAME (frame, f);
4bb994d1 4068
4c52b668 4069 if (! EQ (frame, internal_last_event_frame)
788f89eb 4070 && !EQ (frame, selected_frame))
764cb3f9 4071 obj = make_lispy_switch_frame (frame);
4c52b668 4072 internal_last_event_frame = frame;
cd21b839 4073 }
4bb994d1 4074
df0f2ba1 4075 /* If we didn't decide to make a switch-frame event, go ahead and
4bb994d1 4076 return a mouse-motion event. */
e177ac3a 4077 if (!NILP (x) && NILP (obj))
7b4aedb9 4078 obj = make_lispy_movement (f, bar_window, part, x, y, time);
6cbff1cb 4079 }
2eb6bfbe 4080#endif /* HAVE_MOUSE */
284f4730
JB
4081 else
4082 /* We were promised by the above while loop that there was
4083 something for us to read! */
4084 abort ();
4085
d9d4c147 4086 input_pending = readable_events (0);
284f4730 4087
4c52b668 4088 Vlast_event_frame = internal_last_event_frame;
3c370943 4089
284f4730
JB
4090 return (obj);
4091}
a612e298
RS
4092\f
4093/* Process any events that are not user-visible,
4094 then return, without reading any user-visible events. */
3a3b9632
RS
4095
4096void
d9d4c147
KH
4097swallow_events (do_display)
4098 int do_display;
3a3b9632 4099{
87dd9b9b
RS
4100 int old_timers_run;
4101
beecf6a1 4102 while (kbd_fetch_ptr != kbd_store_ptr)
3a3b9632
RS
4103 {
4104 struct input_event *event;
4105
beecf6a1
KH
4106 event = ((kbd_fetch_ptr < kbd_buffer + KBD_BUFFER_SIZE)
4107 ? kbd_fetch_ptr
4108 : kbd_buffer);
3a3b9632
RS
4109
4110 last_event_timestamp = event->timestamp;
4111
4112 /* These two kinds of events get special handling
4113 and don't actually appear to the command loop. */
3b8f9651 4114 if (event->kind == SELECTION_REQUEST_EVENT)
3a3b9632
RS
4115 {
4116#ifdef HAVE_X11
4581e928 4117 struct input_event copy;
e0301c07
RS
4118
4119 /* Remove it from the buffer before processing it,
4120 since otherwise swallow_events called recursively could see it
4121 and process it again. */
4581e928 4122 copy = *event;
beecf6a1 4123 kbd_fetch_ptr = event + 1;
d9d4c147 4124 input_pending = readable_events (0);
4581e928 4125 x_handle_selection_request (&copy);
3a3b9632
RS
4126#else
4127 /* We're getting selection request events, but we don't have
4128 a window system. */
4129 abort ();
4130#endif
4131 }
4132
3b8f9651 4133 else if (event->kind == SELECTION_CLEAR_EVENT)
3a3b9632
RS
4134 {
4135#ifdef HAVE_X11
e0301c07
RS
4136 struct input_event copy;
4137
4138 /* Remove it from the buffer before processing it, */
4139 copy = *event;
4140
beecf6a1 4141 kbd_fetch_ptr = event + 1;
d9d4c147 4142 input_pending = readable_events (0);
90c2bb0c 4143 x_handle_selection_clear (&copy);
3a3b9632
RS
4144#else
4145 /* We're getting selection request events, but we don't have
4146 a window system. */
4147 abort ();
4148#endif
4149 }
4150 else
4151 break;
4152 }
4153
87dd9b9b 4154 old_timers_run = timers_run;
d9d4c147 4155 get_input_pending (&input_pending, 1);
87dd9b9b
RS
4156
4157 if (timers_run != old_timers_run && do_display)
3007ebfb 4158 redisplay_preserve_echo_area (7);
3a3b9632 4159}
a612e298 4160\f
d9d4c147
KH
4161/* Record the start of when Emacs is idle,
4162 for the sake of running idle-time timers. */
4163
07a59269 4164void
d9d4c147
KH
4165timer_start_idle ()
4166{
4167 Lisp_Object timers;
4168
4169 /* If we are already in the idle state, do nothing. */
4170 if (! EMACS_TIME_NEG_P (timer_idleness_start_time))
4171 return;
4172
4173 EMACS_GET_TIME (timer_idleness_start_time);
4174
3021d3a9
RS
4175 timer_last_idleness_start_time = timer_idleness_start_time;
4176
d9d4c147 4177 /* Mark all idle-time timers as once again candidates for running. */
7539e11f 4178 for (timers = Vtimer_idle_list; CONSP (timers); timers = XCDR (timers))
d9d4c147
KH
4179 {
4180 Lisp_Object timer;
4181
7539e11f 4182 timer = XCAR (timers);
d9d4c147
KH
4183
4184 if (!VECTORP (timer) || XVECTOR (timer)->size != 8)
4185 continue;
4186 XVECTOR (timer)->contents[0] = Qnil;
4187 }
4188}
4189
4190/* Record that Emacs is no longer idle, so stop running idle-time timers. */
4191
07a59269 4192void
d9d4c147
KH
4193timer_stop_idle ()
4194{
4195 EMACS_SET_SECS_USECS (timer_idleness_start_time, -1, -1);
4196}
4197
e044e87c
RS
4198/* This is only for debugging. */
4199struct input_event last_timer_event;
4200
c04cbc3b
RS
4201/* Check whether a timer has fired. To prevent larger problems we simply
4202 disregard elements that are not proper timers. Do not make a circular
4203 timer list for the time being.
4204
4205 Returns the number of seconds to wait until the next timer fires. If a
4206 timer is triggering now, return zero seconds.
4207 If no timer is active, return -1 seconds.
4208
4ec4ed6a
RS
4209 If a timer is ripe, we run it, with quitting turned off.
4210
4211 DO_IT_NOW is now ignored. It used to mean that we should
4212 run the timer directly instead of queueing a timer-event.
4213 Now we always run timers directly. */
c04cbc3b
RS
4214
4215EMACS_TIME
4216timer_check (do_it_now)
4217 int do_it_now;
4218{
4219 EMACS_TIME nexttime;
9291c072
RS
4220 EMACS_TIME now, idleness_now;
4221 Lisp_Object timers, idle_timers, chosen_timer;
9291c072 4222 struct gcpro gcpro1, gcpro2, gcpro3;
c04cbc3b 4223
c04cbc3b
RS
4224 EMACS_SET_SECS (nexttime, -1);
4225 EMACS_SET_USECS (nexttime, -1);
4226
9291c072 4227 /* Always consider the ordinary timers. */
7ea13e12 4228 timers = Vtimer_list;
9291c072
RS
4229 /* Consider the idle timers only if Emacs is idle. */
4230 if (! EMACS_TIME_NEG_P (timer_idleness_start_time))
4231 idle_timers = Vtimer_idle_list;
4232 else
4233 idle_timers = Qnil;
4234 chosen_timer = Qnil;
4235 GCPRO3 (timers, idle_timers, chosen_timer);
7ea13e12 4236
9291c072 4237 if (CONSP (timers) || CONSP (idle_timers))
c04cbc3b 4238 {
9291c072
RS
4239 EMACS_GET_TIME (now);
4240 if (! EMACS_TIME_NEG_P (timer_idleness_start_time))
4241 EMACS_SUB_TIME (idleness_now, now, timer_idleness_start_time);
4242 }
c04cbc3b 4243
9291c072
RS
4244 while (CONSP (timers) || CONSP (idle_timers))
4245 {
9291c072 4246 Lisp_Object *vector;
8c907a56 4247 Lisp_Object timer = Qnil, idle_timer = Qnil;
9291c072
RS
4248 EMACS_TIME timer_time, idle_timer_time;
4249 EMACS_TIME difference, timer_difference, idle_timer_difference;
4250
4251 /* Skip past invalid timers and timers already handled. */
4252 if (!NILP (timers))
c04cbc3b 4253 {
7539e11f 4254 timer = XCAR (timers);
9291c072
RS
4255 if (!VECTORP (timer) || XVECTOR (timer)->size != 8)
4256 {
7539e11f 4257 timers = XCDR (timers);
9291c072
RS
4258 continue;
4259 }
4260 vector = XVECTOR (timer)->contents;
d9d4c147 4261
9291c072
RS
4262 if (!INTEGERP (vector[1]) || !INTEGERP (vector[2])
4263 || !INTEGERP (vector[3])
4264 || ! NILP (vector[0]))
4265 {
7539e11f 4266 timers = XCDR (timers);
9291c072
RS
4267 continue;
4268 }
4269 }
4270 if (!NILP (idle_timers))
4271 {
7539e11f 4272 timer = XCAR (idle_timers);
d9d4c147 4273 if (!VECTORP (timer) || XVECTOR (timer)->size != 8)
9291c072 4274 {
7539e11f 4275 idle_timers = XCDR (idle_timers);
9291c072
RS
4276 continue;
4277 }
d9d4c147
KH
4278 vector = XVECTOR (timer)->contents;
4279
4280 if (!INTEGERP (vector[1]) || !INTEGERP (vector[2])
9291c072
RS
4281 || !INTEGERP (vector[3])
4282 || ! NILP (vector[0]))
4283 {
7539e11f 4284 idle_timers = XCDR (idle_timers);
9291c072
RS
4285 continue;
4286 }
4287 }
d9d4c147 4288
9291c072
RS
4289 /* Set TIMER, TIMER_TIME and TIMER_DIFFERENCE
4290 based on the next ordinary timer.
4291 TIMER_DIFFERENCE is the distance in time from NOW to when
4292 this timer becomes ripe (negative if it's already ripe). */
4293 if (!NILP (timers))
4294 {
7539e11f 4295 timer = XCAR (timers);
9291c072 4296 vector = XVECTOR (timer)->contents;
d9d4c147
KH
4297 EMACS_SET_SECS (timer_time,
4298 (XINT (vector[1]) << 16) | (XINT (vector[2])));
4299 EMACS_SET_USECS (timer_time, XINT (vector[3]));
9291c072
RS
4300 EMACS_SUB_TIME (timer_difference, timer_time, now);
4301 }
ba8dfba8 4302
9291c072
RS
4303 /* Set IDLE_TIMER, IDLE_TIMER_TIME and IDLE_TIMER_DIFFERENCE
4304 based on the next idle timer. */
4305 if (!NILP (idle_timers))
4306 {
7539e11f 4307 idle_timer = XCAR (idle_timers);
9291c072
RS
4308 vector = XVECTOR (idle_timer)->contents;
4309 EMACS_SET_SECS (idle_timer_time,
4310 (XINT (vector[1]) << 16) | (XINT (vector[2])));
4311 EMACS_SET_USECS (idle_timer_time, XINT (vector[3]));
4312 EMACS_SUB_TIME (idle_timer_difference, idle_timer_time, idleness_now);
4313 }
ba8dfba8 4314
9291c072
RS
4315 /* Decide which timer is the next timer,
4316 and set CHOSEN_TIMER, VECTOR and DIFFERENCE accordingly.
4317 Also step down the list where we found that timer. */
d9d4c147 4318
9291c072
RS
4319 if (! NILP (timers) && ! NILP (idle_timers))
4320 {
4321 EMACS_TIME temp;
4322 EMACS_SUB_TIME (temp, timer_difference, idle_timer_difference);
4323 if (EMACS_TIME_NEG_P (temp))
4324 {
4325 chosen_timer = timer;
7539e11f 4326 timers = XCDR (timers);
9291c072 4327 difference = timer_difference;
c04cbc3b 4328 }
d9d4c147 4329 else
d9d4c147 4330 {
9291c072 4331 chosen_timer = idle_timer;
7539e11f 4332 idle_timers = XCDR (idle_timers);
9291c072 4333 difference = idle_timer_difference;
d9d4c147 4334 }
7ea13e12 4335 }
9291c072
RS
4336 else if (! NILP (timers))
4337 {
4338 chosen_timer = timer;
7539e11f 4339 timers = XCDR (timers);
9291c072
RS
4340 difference = timer_difference;
4341 }
4342 else
4343 {
4344 chosen_timer = idle_timer;
7539e11f 4345 idle_timers = XCDR (idle_timers);
9291c072
RS
4346 difference = idle_timer_difference;
4347 }
4348 vector = XVECTOR (chosen_timer)->contents;
c60ee5e7 4349
bd55b860 4350 /* If timer is ripe, run it if it hasn't been run. */
9291c072
RS
4351 if (EMACS_TIME_NEG_P (difference)
4352 || (EMACS_SECS (difference) == 0
4353 && EMACS_USECS (difference) == 0))
4354 {
4355 if (NILP (vector[0]))
4356 {
d925fb39 4357 int was_locked = single_kboard;
331379bf 4358 int count = SPECPDL_INDEX ();
d0bbfc99 4359 Lisp_Object old_deactivate_mark = Vdeactivate_mark;
d925fb39 4360
9291c072
RS
4361 /* Mark the timer as triggered to prevent problems if the lisp
4362 code fails to reschedule it right. */
4363 vector[0] = Qt;
4364
d925fb39 4365 specbind (Qinhibit_quit, Qt);
c60ee5e7 4366
d925fb39 4367 call1 (Qtimer_event_handler, chosen_timer);
d0bbfc99 4368 Vdeactivate_mark = old_deactivate_mark;
d925fb39 4369 timers_run++;
d925fb39 4370 unbind_to (count, Qnil);
4ec4ed6a 4371
d925fb39
RS
4372 /* Resume allowing input from any kboard, if that was true before. */
4373 if (!was_locked)
4374 any_kboard_state ();
9291c072 4375
d925fb39
RS
4376 /* Since we have handled the event,
4377 we don't need to tell the caller to wake up and do it. */
9291c072
RS
4378 }
4379 }
4380 else
4381 /* When we encounter a timer that is still waiting,
4382 return the amount of time to wait before it is ripe. */
4383 {
4384 UNGCPRO;
9291c072
RS
4385 return difference;
4386 }
c04cbc3b 4387 }
9291c072 4388
7ea13e12
RS
4389 /* No timers are pending in the future. */
4390 /* Return 0 if we generated an event, and -1 if not. */
4391 UNGCPRO;
c04cbc3b
RS
4392 return nexttime;
4393}
4394\f
284f4730 4395/* Caches for modify_event_symbol. */
e9bf89a0 4396static Lisp_Object accent_key_syms;
284f4730
JB
4397static Lisp_Object func_key_syms;
4398static Lisp_Object mouse_syms;
8006e4bb 4399static Lisp_Object wheel_syms;
a24dc617 4400static Lisp_Object drag_n_drop_syms;
284f4730 4401
e9bf89a0
RS
4402/* This is a list of keysym codes for special "accent" characters.
4403 It parallels lispy_accent_keys. */
4404
4405static int lispy_accent_codes[] =
4406{
79a7046c 4407#ifdef XK_dead_circumflex
e9bf89a0 4408 XK_dead_circumflex,
79a7046c
RS
4409#else
4410 0,
4411#endif
4412#ifdef XK_dead_grave
e9bf89a0 4413 XK_dead_grave,
79a7046c
RS
4414#else
4415 0,
4416#endif
4417#ifdef XK_dead_tilde
e9bf89a0 4418 XK_dead_tilde,
79a7046c
RS
4419#else
4420 0,
4421#endif
4422#ifdef XK_dead_diaeresis
e9bf89a0 4423 XK_dead_diaeresis,
79a7046c
RS
4424#else
4425 0,
4426#endif
4427#ifdef XK_dead_macron
e9bf89a0 4428 XK_dead_macron,
79a7046c
RS
4429#else
4430 0,
4431#endif
4432#ifdef XK_dead_degree
e9bf89a0 4433 XK_dead_degree,
79a7046c
RS
4434#else
4435 0,
4436#endif
4437#ifdef XK_dead_acute
e9bf89a0 4438 XK_dead_acute,
79a7046c
RS
4439#else
4440 0,
4441#endif
4442#ifdef XK_dead_cedilla
e9bf89a0 4443 XK_dead_cedilla,
79a7046c
RS
4444#else
4445 0,
4446#endif
4447#ifdef XK_dead_breve
e9bf89a0 4448 XK_dead_breve,
79a7046c
RS
4449#else
4450 0,
4451#endif
4452#ifdef XK_dead_ogonek
e9bf89a0 4453 XK_dead_ogonek,
79a7046c
RS
4454#else
4455 0,
4456#endif
4457#ifdef XK_dead_caron
e9bf89a0 4458 XK_dead_caron,
79a7046c
RS
4459#else
4460 0,
4461#endif
4462#ifdef XK_dead_doubleacute
e9bf89a0 4463 XK_dead_doubleacute,
79a7046c
RS
4464#else
4465 0,
4466#endif
4467#ifdef XK_dead_abovedot
e9bf89a0 4468 XK_dead_abovedot,
79a7046c
RS
4469#else
4470 0,
4471#endif
ed3230db
DL
4472#ifdef XK_dead_abovering
4473 XK_dead_abovering,
4474#else
4475 0,
4476#endif
4477#ifdef XK_dead_iota
4478 XK_dead_iota,
4479#else
4480 0,
4481#endif
4482#ifdef XK_dead_belowdot
4483 XK_dead_belowdot,
4484#else
4485 0,
4486#endif
4487#ifdef XK_dead_voiced_sound
4488 XK_dead_voiced_sound,
4489#else
4490 0,
4491#endif
4492#ifdef XK_dead_semivoiced_sound
4493 XK_dead_semivoiced_sound,
4494#else
4495 0,
4496#endif
4497#ifdef XK_dead_hook
4498 XK_dead_hook,
4499#else
4500 0,
4501#endif
4502#ifdef XK_dead_horn
4503 XK_dead_horn,
4504#else
4505 0,
4506#endif
e9bf89a0
RS
4507};
4508
4509/* This is a list of Lisp names for special "accent" characters.
4510 It parallels lispy_accent_codes. */
4511
4512static char *lispy_accent_keys[] =
4513{
4514 "dead-circumflex",
4515 "dead-grave",
4516 "dead-tilde",
4517 "dead-diaeresis",
4518 "dead-macron",
4519 "dead-degree",
4520 "dead-acute",
4521 "dead-cedilla",
4522 "dead-breve",
4523 "dead-ogonek",
4524 "dead-caron",
4525 "dead-doubleacute",
4526 "dead-abovedot",
ed3230db
DL
4527 "dead-abovering",
4528 "dead-iota",
4529 "dead-belowdot",
4530 "dead-voiced-sound",
4531 "dead-semivoiced-sound",
4532 "dead-hook",
4533 "dead-horn",
e9bf89a0
RS
4534};
4535
e98a93eb
GV
4536#ifdef HAVE_NTGUI
4537#define FUNCTION_KEY_OFFSET 0x0
4538
4539char *lispy_function_keys[] =
4540 {
4541 0, /* 0 */
c60ee5e7 4542
e98a93eb
GV
4543 0, /* VK_LBUTTON 0x01 */
4544 0, /* VK_RBUTTON 0x02 */
4545 "cancel", /* VK_CANCEL 0x03 */
4546 0, /* VK_MBUTTON 0x04 */
c60ee5e7 4547
e98a93eb 4548 0, 0, 0, /* 0x05 .. 0x07 */
c60ee5e7 4549
e98a93eb
GV
4550 "backspace", /* VK_BACK 0x08 */
4551 "tab", /* VK_TAB 0x09 */
c60ee5e7 4552
e98a93eb 4553 0, 0, /* 0x0A .. 0x0B */
c60ee5e7 4554
e98a93eb
GV
4555 "clear", /* VK_CLEAR 0x0C */
4556 "return", /* VK_RETURN 0x0D */
c60ee5e7 4557
e98a93eb 4558 0, 0, /* 0x0E .. 0x0F */
c60ee5e7 4559
1161d367
GV
4560 0, /* VK_SHIFT 0x10 */
4561 0, /* VK_CONTROL 0x11 */
4562 0, /* VK_MENU 0x12 */
e98a93eb 4563 "pause", /* VK_PAUSE 0x13 */
1161d367 4564 "capslock", /* VK_CAPITAL 0x14 */
c60ee5e7 4565
e98a93eb 4566 0, 0, 0, 0, 0, 0, /* 0x15 .. 0x1A */
c60ee5e7 4567
1161d367 4568 "escape", /* VK_ESCAPE 0x1B */
c60ee5e7 4569
e98a93eb 4570 0, 0, 0, 0, /* 0x1C .. 0x1F */
c60ee5e7 4571
e98a93eb
GV
4572 0, /* VK_SPACE 0x20 */
4573 "prior", /* VK_PRIOR 0x21 */
4574 "next", /* VK_NEXT 0x22 */
4575 "end", /* VK_END 0x23 */
4576 "home", /* VK_HOME 0x24 */
4577 "left", /* VK_LEFT 0x25 */
4578 "up", /* VK_UP 0x26 */
4579 "right", /* VK_RIGHT 0x27 */
4580 "down", /* VK_DOWN 0x28 */
4581 "select", /* VK_SELECT 0x29 */
4582 "print", /* VK_PRINT 0x2A */
4583 "execute", /* VK_EXECUTE 0x2B */
4584 "snapshot", /* VK_SNAPSHOT 0x2C */
4585 "insert", /* VK_INSERT 0x2D */
4586 "delete", /* VK_DELETE 0x2E */
4587 "help", /* VK_HELP 0x2F */
c60ee5e7 4588
e98a93eb 4589 /* VK_0 thru VK_9 are the same as ASCII '0' thru '9' (0x30 - 0x39) */
c60ee5e7 4590
e98a93eb 4591 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
c60ee5e7 4592
e98a93eb 4593 0, 0, 0, 0, 0, 0, 0, /* 0x3A .. 0x40 */
c60ee5e7 4594
e98a93eb 4595 /* VK_A thru VK_Z are the same as ASCII 'A' thru 'Z' (0x41 - 0x5A) */
c60ee5e7
JB
4596
4597 0, 0, 0, 0, 0, 0, 0, 0, 0,
4598 0, 0, 0, 0, 0, 0, 0, 0, 0,
e98a93eb 4599 0, 0, 0, 0, 0, 0, 0, 0,
c60ee5e7 4600
e376f90d
RS
4601 "lwindow", /* VK_LWIN 0x5B */
4602 "rwindow", /* VK_RWIN 0x5C */
4603 "apps", /* VK_APPS 0x5D */
c60ee5e7 4604
e98a93eb 4605 0, 0, /* 0x5E .. 0x5F */
c60ee5e7 4606
e98a93eb
GV
4607 "kp-0", /* VK_NUMPAD0 0x60 */
4608 "kp-1", /* VK_NUMPAD1 0x61 */
4609 "kp-2", /* VK_NUMPAD2 0x62 */
4610 "kp-3", /* VK_NUMPAD3 0x63 */
4611 "kp-4", /* VK_NUMPAD4 0x64 */
4612 "kp-5", /* VK_NUMPAD5 0x65 */
4613 "kp-6", /* VK_NUMPAD6 0x66 */
4614 "kp-7", /* VK_NUMPAD7 0x67 */
4615 "kp-8", /* VK_NUMPAD8 0x68 */
4616 "kp-9", /* VK_NUMPAD9 0x69 */
4617 "kp-multiply", /* VK_MULTIPLY 0x6A */
4618 "kp-add", /* VK_ADD 0x6B */
4619 "kp-separator", /* VK_SEPARATOR 0x6C */
4620 "kp-subtract", /* VK_SUBTRACT 0x6D */
4621 "kp-decimal", /* VK_DECIMAL 0x6E */
4622 "kp-divide", /* VK_DIVIDE 0x6F */
4623 "f1", /* VK_F1 0x70 */
4624 "f2", /* VK_F2 0x71 */
4625 "f3", /* VK_F3 0x72 */
4626 "f4", /* VK_F4 0x73 */
4627 "f5", /* VK_F5 0x74 */
4628 "f6", /* VK_F6 0x75 */
4629 "f7", /* VK_F7 0x76 */
4630 "f8", /* VK_F8 0x77 */
4631 "f9", /* VK_F9 0x78 */
4632 "f10", /* VK_F10 0x79 */
4633 "f11", /* VK_F11 0x7A */
4634 "f12", /* VK_F12 0x7B */
4635 "f13", /* VK_F13 0x7C */
4636 "f14", /* VK_F14 0x7D */
4637 "f15", /* VK_F15 0x7E */
4638 "f16", /* VK_F16 0x7F */
4639 "f17", /* VK_F17 0x80 */
4640 "f18", /* VK_F18 0x81 */
4641 "f19", /* VK_F19 0x82 */
4642 "f20", /* VK_F20 0x83 */
4643 "f21", /* VK_F21 0x84 */
4644 "f22", /* VK_F22 0x85 */
4645 "f23", /* VK_F23 0x86 */
4646 "f24", /* VK_F24 0x87 */
c60ee5e7 4647
e98a93eb
GV
4648 0, 0, 0, 0, /* 0x88 .. 0x8B */
4649 0, 0, 0, 0, /* 0x8C .. 0x8F */
c60ee5e7 4650
e98a93eb
GV
4651 "kp-numlock", /* VK_NUMLOCK 0x90 */
4652 "scroll", /* VK_SCROLL 0x91 */
c60ee5e7 4653
e376f90d
RS
4654 "kp-space", /* VK_NUMPAD_CLEAR 0x92 */
4655 "kp-enter", /* VK_NUMPAD_ENTER 0x93 */
4656 "kp-prior", /* VK_NUMPAD_PRIOR 0x94 */
4657 "kp-next", /* VK_NUMPAD_NEXT 0x95 */
4658 "kp-end", /* VK_NUMPAD_END 0x96 */
4659 "kp-home", /* VK_NUMPAD_HOME 0x97 */
4660 "kp-left", /* VK_NUMPAD_LEFT 0x98 */
4661 "kp-up", /* VK_NUMPAD_UP 0x99 */
4662 "kp-right", /* VK_NUMPAD_RIGHT 0x9A */
4663 "kp-down", /* VK_NUMPAD_DOWN 0x9B */
4664 "kp-insert", /* VK_NUMPAD_INSERT 0x9C */
4665 "kp-delete", /* VK_NUMPAD_DELETE 0x9D */
4666
4667 0, 0, /* 0x9E .. 0x9F */
4668
e98a93eb
GV
4669 /*
4670 * VK_L* & VK_R* - left and right Alt, Ctrl and Shift virtual keys.
e8886a1d 4671 * Used only as parameters to GetAsyncKeyState and GetKeyState.
e98a93eb
GV
4672 * No other API or message will distinguish left and right keys this way.
4673 */
4674 /* 0xA0 .. 0xEF */
c60ee5e7 4675
e98a93eb
GV
4676 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
4677 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
4678 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
4679 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
4680 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
c60ee5e7 4681
e98a93eb 4682 /* 0xF0 .. 0xF5 */
c60ee5e7 4683
e98a93eb 4684 0, 0, 0, 0, 0, 0,
c60ee5e7 4685
e98a93eb
GV
4686 "attn", /* VK_ATTN 0xF6 */
4687 "crsel", /* VK_CRSEL 0xF7 */
4688 "exsel", /* VK_EXSEL 0xF8 */
4689 "ereof", /* VK_EREOF 0xF9 */
4690 "play", /* VK_PLAY 0xFA */
4691 "zoom", /* VK_ZOOM 0xFB */
4692 "noname", /* VK_NONAME 0xFC */
4693 "pa1", /* VK_PA1 0xFD */
4694 "oem_clear", /* VK_OEM_CLEAR 0xFE */
1161d367 4695 0 /* 0xFF */
e98a93eb
GV
4696 };
4697
04f215f0 4698#else /* not HAVE_NTGUI */
e98a93eb 4699
ed3230db
DL
4700/* This should be dealt with in XTread_socket now, and that doesn't
4701 depend on the client system having the Kana syms defined. See also
4702 the XK_kana_A case below. */
4703#if 0
37cd9f30
KH
4704#ifdef XK_kana_A
4705static char *lispy_kana_keys[] =
4706 {
4707 /* X Keysym value */
4708 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, /* 0x400 .. 0x40f */
4709 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, /* 0x410 .. 0x41f */
4710 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, /* 0x420 .. 0x42f */
4711 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, /* 0x430 .. 0x43f */
4712 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, /* 0x440 .. 0x44f */
4713 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, /* 0x450 .. 0x45f */
4714 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, /* 0x460 .. 0x46f */
4715 0,0,0,0,0,0,0,0,0,0,0,0,0,0,"overline",0,
4716 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, /* 0x480 .. 0x48f */
4717 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, /* 0x490 .. 0x49f */
c60ee5e7 4718 0, "kana-fullstop", "kana-openingbracket", "kana-closingbracket",
37cd9f30
KH
4719 "kana-comma", "kana-conjunctive", "kana-WO", "kana-a",
4720 "kana-i", "kana-u", "kana-e", "kana-o",
4721 "kana-ya", "kana-yu", "kana-yo", "kana-tsu",
4722 "prolongedsound", "kana-A", "kana-I", "kana-U",
4723 "kana-E", "kana-O", "kana-KA", "kana-KI",
4724 "kana-KU", "kana-KE", "kana-KO", "kana-SA",
4725 "kana-SHI", "kana-SU", "kana-SE", "kana-SO",
4726 "kana-TA", "kana-CHI", "kana-TSU", "kana-TE",
4727 "kana-TO", "kana-NA", "kana-NI", "kana-NU",
4728 "kana-NE", "kana-NO", "kana-HA", "kana-HI",
4729 "kana-FU", "kana-HE", "kana-HO", "kana-MA",
4730 "kana-MI", "kana-MU", "kana-ME", "kana-MO",
4731 "kana-YA", "kana-YU", "kana-YO", "kana-RA",
4732 "kana-RI", "kana-RU", "kana-RE", "kana-RO",
4733 "kana-WA", "kana-N", "voicedsound", "semivoicedsound",
4734 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, /* 0x4e0 .. 0x4ef */
4735 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, /* 0x4f0 .. 0x4ff */
4736 };
4737#endif /* XK_kana_A */
ed3230db 4738#endif /* 0 */
37cd9f30 4739
04f215f0
RS
4740#define FUNCTION_KEY_OFFSET 0xff00
4741
284f4730
JB
4742/* You'll notice that this table is arranged to be conveniently
4743 indexed by X Windows keysym values. */
4744static char *lispy_function_keys[] =
4745 {
4746 /* X Keysym value */
4747
75045dcb
RS
4748 0, 0, 0, 0, 0, 0, 0, 0, /* 0xff00...0f */
4749 "backspace", "tab", "linefeed", "clear",
4750 0, "return", 0, 0,
4751 0, 0, 0, "pause", /* 0xff10...1f */
4752 0, 0, 0, 0, 0, 0, 0, "escape",
86e5706b 4753 0, 0, 0, 0,
75045dcb
RS
4754 0, "kanji", "muhenkan", "henkan", /* 0xff20...2f */
4755 "romaji", "hiragana", "katakana", "hiragana-katakana",
4756 "zenkaku", "hankaku", "zenkaku-hankaku", "touroku",
4757 "massyo", "kana-lock", "kana-shift", "eisu-shift",
4758 "eisu-toggle", /* 0xff30...3f */
4759 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
86e5706b
RS
4760 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, /* 0xff40...4f */
4761
75045dcb
RS
4762 "home", "left", "up", "right", /* 0xff50 */ /* IsCursorKey */
4763 "down", "prior", "next", "end",
4764 "begin", 0, 0, 0, 0, 0, 0, 0,
284f4730
JB
4765 "select", /* 0xff60 */ /* IsMiscFunctionKey */
4766 "print",
4767 "execute",
4768 "insert",
4769 0, /* 0xff64 */
4770 "undo",
4771 "redo",
4772 "menu",
4773 "find",
4774 "cancel",
4775 "help",
4776 "break", /* 0xff6b */
4777
75045dcb
RS
4778 0, 0, 0, 0,
4779 0, 0, 0, 0, "backtab", 0, 0, 0, /* 0xff70... */
4780 0, 0, 0, 0, 0, 0, 0, "kp-numlock", /* 0xff78... */
284f4730
JB
4781 "kp-space", /* 0xff80 */ /* IsKeypadKey */
4782 0, 0, 0, 0, 0, 0, 0, 0,
4783 "kp-tab", /* 0xff89 */
4784 0, 0, 0,
4785 "kp-enter", /* 0xff8d */
4786 0, 0, 0,
4787 "kp-f1", /* 0xff91 */
4788 "kp-f2",
4789 "kp-f3",
4790 "kp-f4",
872157e7
RS
4791 "kp-home", /* 0xff95 */
4792 "kp-left",
4793 "kp-up",
4794 "kp-right",
4795 "kp-down",
4796 "kp-prior", /* kp-page-up */
4797 "kp-next", /* kp-page-down */
4798 "kp-end",
4799 "kp-begin",
4800 "kp-insert",
4801 "kp-delete",
4802 0, /* 0xffa0 */
4803 0, 0, 0, 0, 0, 0, 0, 0, 0,
284f4730
JB
4804 "kp-multiply", /* 0xffaa */
4805 "kp-add",
4806 "kp-separator",
4807 "kp-subtract",
4808 "kp-decimal",
4809 "kp-divide", /* 0xffaf */
4810 "kp-0", /* 0xffb0 */
4811 "kp-1", "kp-2", "kp-3", "kp-4", "kp-5", "kp-6", "kp-7", "kp-8", "kp-9",
4812 0, /* 0xffba */
4813 0, 0,
4814 "kp-equal", /* 0xffbd */
4815 "f1", /* 0xffbe */ /* IsFunctionKey */
86e5706b
RS
4816 "f2",
4817 "f3", "f4", "f5", "f6", "f7", "f8", "f9", "f10", /* 0xffc0 */
4818 "f11", "f12", "f13", "f14", "f15", "f16", "f17", "f18",
4819 "f19", "f20", "f21", "f22", "f23", "f24", "f25", "f26", /* 0xffd0 */
4820 "f27", "f28", "f29", "f30", "f31", "f32", "f33", "f34",
4821 "f35", 0, 0, 0, 0, 0, 0, 0, /* 0xffe0 */
4822 0, 0, 0, 0, 0, 0, 0, 0,
4823 0, 0, 0, 0, 0, 0, 0, 0, /* 0xfff0 */
4824 0, 0, 0, 0, 0, 0, 0, "delete"
04f215f0 4825 };
284f4730 4826
04f215f0
RS
4827/* ISO 9995 Function and Modifier Keys; the first byte is 0xFE. */
4828#define ISO_FUNCTION_KEY_OFFSET 0xfe00
4829
4830static char *iso_lispy_function_keys[] =
4831 {
4832 0, 0, 0, 0, 0, 0, 0, 0, /* 0xfe00 */
4833 0, 0, 0, 0, 0, 0, 0, 0, /* 0xfe08 */
4834 0, 0, 0, 0, 0, 0, 0, 0, /* 0xfe10 */
4835 0, 0, 0, 0, 0, 0, 0, 0, /* 0xfe18 */
4836 "iso-lefttab", /* 0xfe20 */
c60ee5e7
JB
4837 "iso-move-line-up", "iso-move-line-down",
4838 "iso-partial-line-up", "iso-partial-line-down",
4839 "iso-partial-space-left", "iso-partial-space-right",
04f215f0
RS
4840 "iso-set-margin-left", "iso-set-margin-right", /* 0xffe27, 28 */
4841 "iso-release-margin-left", "iso-release-margin-right",
4842 "iso-release-both-margins",
4843 "iso-fast-cursor-left", "iso-fast-cursor-right",
4844 "iso-fast-cursor-up", "iso-fast-cursor-down",
4845 "iso-continuous-underline", "iso-discontinuous-underline", /* 0xfe30, 31 */
4846 "iso-emphasize", "iso-center-object", "iso-enter", /* ... 0xfe34 */
4847 };
4848
4849#endif /* not HAVE_NTGUI */
e98a93eb 4850
8e1e4240 4851Lisp_Object Vlispy_mouse_stem;
284f4730 4852
8006e4bb
JR
4853static char *lispy_wheel_names[] =
4854{
4855 "wheel-up", "wheel-down"
4856};
4857
a24dc617
RS
4858/* drag-n-drop events are generated when a set of selected files are
4859 dragged from another application and dropped onto an Emacs window. */
4860static char *lispy_drag_n_drop_names[] =
4861{
4862 "drag-n-drop"
4863};
4864
3c370943 4865/* Scroll bar parts. */
4bb994d1 4866Lisp_Object Qabove_handle, Qhandle, Qbelow_handle;
7ee32cda 4867Lisp_Object Qup, Qdown, Qbottom, Qend_scroll;
eef28553 4868Lisp_Object Qtop, Qratio;
4bb994d1 4869
3c370943
JB
4870/* An array of scroll bar parts, indexed by an enum scroll_bar_part value. */
4871Lisp_Object *scroll_bar_parts[] = {
db08707d 4872 &Qabove_handle, &Qhandle, &Qbelow_handle,
eef28553 4873 &Qup, &Qdown, &Qtop, &Qbottom, &Qend_scroll, &Qratio
4bb994d1
JB
4874};
4875
5bf68f6e
AS
4876/* User signal events. */
4877Lisp_Object Qusr1_signal, Qusr2_signal;
4878
4879Lisp_Object *lispy_user_signals[] =
4880{
4881 &Qusr1_signal, &Qusr2_signal
4882};
4883
4bb994d1 4884
7b4aedb9 4885/* A vector, indexed by button number, giving the down-going location
3c370943 4886 of currently depressed buttons, both scroll bar and non-scroll bar.
7b4aedb9
JB
4887
4888 The elements have the form
4889 (BUTTON-NUMBER MODIFIER-MASK . REST)
4890 where REST is the cdr of a position as it would be reported in the event.
4891
4892 The make_lispy_event function stores positions here to tell the
4893 difference between click and drag events, and to store the starting
4894 location to be included in drag events. */
4895
4896static Lisp_Object button_down_location;
88cb0656 4897
fbcd35bd
JB
4898/* Information about the most recent up-going button event: Which
4899 button, what location, and what time. */
4900
559f9d04
RS
4901static int last_mouse_button;
4902static int last_mouse_x;
4903static int last_mouse_y;
4904static unsigned long button_down_time;
fbcd35bd 4905
222d557c
GM
4906/* The maximum time between clicks to make a double-click, or Qnil to
4907 disable double-click detection, or Qt for no time limit. */
4908
564dc952 4909Lisp_Object Vdouble_click_time;
fbcd35bd 4910
222d557c
GM
4911/* Maximum number of pixels the mouse may be moved between clicks
4912 to make a double-click. */
4913
31ade731 4914EMACS_INT double_click_fuzz;
222d557c 4915
fbcd35bd
JB
4916/* The number of clicks in this multiple-click. */
4917
4918int double_click_count;
4919
3d566707
KS
4920/* Return position of a mouse click or wheel event */
4921
4922static Lisp_Object
4923make_lispy_position (f, x, y, time)
4924 struct frame *f;
4925 Lisp_Object *x, *y;
4926 unsigned long time;
4927{
4928 Lisp_Object window;
4929 enum window_part part;
4930 Lisp_Object posn = Qnil;
4931 Lisp_Object extra_info = Qnil;
4932 int wx, wy;
4933
4934 /* Set `window' to the window under frame pixel coordinates (x,y) */
4935 if (f)
4936 window = window_from_coordinates (f, XINT (*x), XINT (*y),
4937 &part, &wx, &wy, 0);
4938 else
4939 window = Qnil;
4940
4941 if (WINDOWP (window))
4942 {
4943 /* It's a click in window window at frame coordinates (x,y) */
4944 struct window *w = XWINDOW (window);
eee5863b 4945 Lisp_Object string_info = Qnil;
3d566707 4946 int textpos = -1, rx = -1, ry = -1;
45de137a 4947 int dx = -1, dy = -1;
eee5863b
KS
4948 int width = -1, height = -1;
4949 Lisp_Object object = Qnil;
3d566707
KS
4950
4951 /* Set event coordinates to window-relative coordinates
4952 for constructing the Lisp event below. */
4953 XSETINT (*x, wx);
4954 XSETINT (*y, wy);
4955
4956 if (part == ON_MODE_LINE || part == ON_HEADER_LINE)
4957 {
4958 /* Mode line or header line. Look for a string under
4959 the mouse that may have a `local-map' property. */
4960 Lisp_Object string;
4961 int charpos;
4962
4963 posn = part == ON_MODE_LINE ? Qmode_line : Qheader_line;
4964 rx = wx, ry = wy;
eee5863b
KS
4965 string = mode_line_string (w, part, &rx, &ry, &charpos,
4966 &object, &dx, &dy, &width, &height);
3d566707 4967 if (STRINGP (string))
eee5863b 4968 string_info = Fcons (string, make_number (charpos));
3d566707
KS
4969 if (w == XWINDOW (selected_window))
4970 textpos = PT;
4971 else
4972 textpos = XMARKER (w->pointm)->charpos;
4973 }
4974 else if (part == ON_VERTICAL_BORDER)
4975 {
4976 posn = Qvertical_line;
4977 wx = -1;
45de137a 4978 dx = 0;
eee5863b 4979 width = 1;
3d566707
KS
4980 }
4981 else if (part == ON_LEFT_MARGIN || part == ON_RIGHT_MARGIN)
4982 {
4983 Lisp_Object string;
4984 int charpos;
4985
4986 posn = (part == ON_LEFT_MARGIN) ? Qleft_margin : Qright_margin;
4987 rx = wx, ry = wy;
eee5863b
KS
4988 string = marginal_area_string (w, part, &rx, &ry, &charpos,
4989 &object, &dx, &dy, &width, &height);
3d566707 4990 if (STRINGP (string))
eee5863b 4991 string_info = Fcons (string, make_number (charpos));
3d566707
KS
4992 }
4993 else if (part == ON_LEFT_FRINGE || part == ON_RIGHT_FRINGE)
4994 {
4995 posn = (part == ON_LEFT_FRINGE) ? Qleft_fringe : Qright_fringe;
4996 rx = 0;
45de137a
KS
4997 dx = wx;
4998 if (part == ON_RIGHT_FRINGE)
4999 dx -= (window_box_width (w, LEFT_MARGIN_AREA)
5000 + window_box_width (w, TEXT_AREA)
5001 + (WINDOW_HAS_FRINGES_OUTSIDE_MARGINS (w)
5002 ? window_box_width (w, RIGHT_MARGIN_AREA)
5003 : 0));
5004 else if (!WINDOW_HAS_FRINGES_OUTSIDE_MARGINS (w))
5005 dx -= window_box_width (w, LEFT_MARGIN_AREA);
3d566707
KS
5006 }
5007
5008 if (textpos < 0)
5009 {
eee5863b 5010 Lisp_Object string2, object2 = Qnil;
3d566707 5011 struct display_pos p;
45de137a 5012 int dx2, dy2;
eee5863b 5013 int width2, height2;
3d566707 5014 wx = max (WINDOW_LEFT_MARGIN_WIDTH (w), wx);
eee5863b
KS
5015 string2 = buffer_posn_from_coords (w, &wx, &wy, &p,
5016 &object2, &dx2, &dy2,
5017 &width2, &height2);
3d566707 5018 textpos = CHARPOS (p.pos);
45de137a
KS
5019 if (rx < 0) rx = wx;
5020 if (ry < 0) ry = wy;
5021 if (dx < 0) dx = dx2;
5022 if (dy < 0) dy = dy2;
eee5863b
KS
5023 if (width < 0) width = width2;
5024 if (height < 0) height = height2;
3d566707
KS
5025
5026 if (NILP (posn))
5027 {
5028 posn = make_number (textpos);
eee5863b
KS
5029 if (STRINGP (string2))
5030 string_info = Fcons (string2,
5031 make_number (CHARPOS (p.string_pos)));
3d566707 5032 }
eee5863b
KS
5033 if (NILP (object))
5034 object = object2;
3d566707
KS
5035 }
5036
eee5863b
KS
5037#ifdef HAVE_WINDOW_SYSTEM
5038 if (IMAGEP (object))
5039 {
5040 Lisp_Object image_map, hotspot;
5041 if ((image_map = Fplist_get (XCDR (object), QCmap),
5042 !NILP (image_map))
5043 && (hotspot = find_hot_spot (image_map, dx, dy),
5044 CONSP (hotspot))
5045 && (hotspot = XCDR (hotspot), CONSP (hotspot)))
5046 posn = XCAR (hotspot);
5047 }
5048#endif
5049
5050 /* Object info */
3d566707 5051 extra_info = Fcons (object,
eee5863b
KS
5052 Fcons (Fcons (make_number (dx),
5053 make_number (dy)),
5054 Fcons (Fcons (make_number (width),
5055 make_number (height)),
5056 Qnil)));
5057
5058 /* String info */
5059 extra_info = Fcons (string_info,
3d566707
KS
5060 Fcons (make_number (textpos),
5061 Fcons (Fcons (make_number (rx),
5062 make_number (ry)),
eee5863b 5063 extra_info)));
3d566707
KS
5064 }
5065 else if (f != 0)
5066 {
5067 XSETFRAME (window, f);
5068 }
5069 else
5070 {
5071 window = Qnil;
5072 XSETFASTINT (*x, 0);
5073 XSETFASTINT (*y, 0);
5074 }
5075
5076 return Fcons (window,
5077 Fcons (posn,
5078 Fcons (Fcons (*x, *y),
5079 Fcons (make_number (time),
5080 extra_info))));
5081}
5082
284f4730
JB
5083/* Given a struct input_event, build the lisp event which represents
5084 it. If EVENT is 0, build a mouse movement event from the mouse
88cb0656
JB
5085 movement buffer, which should have a movement event in it.
5086
5087 Note that events must be passed to this function in the order they
5088 are received; this function stores the location of button presses
5089 in order to build drag events when the button is released. */
284f4730
JB
5090
5091static Lisp_Object
5092make_lispy_event (event)
5093 struct input_event *event;
5094{
79a7046c
RS
5095 int i;
5096
0220c518 5097 switch (SWITCH_ENUM_CAST (event->kind))
284f4730 5098 {
284f4730 5099 /* A simple keystroke. */
3b8f9651 5100 case ASCII_KEYSTROKE_EVENT:
86e5706b 5101 {
9343ab07 5102 Lisp_Object lispy_c;
e9bf89a0 5103 int c = event->code & 0377;
5a1c6df8
JB
5104 /* Turn ASCII characters into control characters
5105 when proper. */
5106 if (event->modifiers & ctrl_modifier)
d205953b
JB
5107 c = make_ctrl_char (c);
5108
5109 /* Add in the other modifier bits. We took care of ctrl_modifier
5110 just above, and the shift key was taken care of by the X code,
5111 and applied to control characters by make_ctrl_char. */
86e5706b
RS
5112 c |= (event->modifiers
5113 & (meta_modifier | alt_modifier
5114 | hyper_modifier | super_modifier));
32454a9f
RS
5115 /* Distinguish Shift-SPC from SPC. */
5116 if ((event->code & 0377) == 040
5117 && event->modifiers & shift_modifier)
5118 c |= shift_modifier;
559f9d04 5119 button_down_time = 0;
bb9e9bed 5120 XSETFASTINT (lispy_c, c);
9343ab07 5121 return lispy_c;
86e5706b 5122 }
284f4730 5123
3b8f9651 5124 case MULTIBYTE_CHAR_KEYSTROKE_EVENT:
a50e723f
KH
5125 {
5126 Lisp_Object lispy_c;
24d80a06 5127 int c = event->code;
a50e723f 5128
24d80a06
SM
5129 /* Add in the other modifier bits. We took care of ctrl_modifier
5130 just above, and the shift key was taken care of by the X code,
5131 and applied to control characters by make_ctrl_char. */
5132 c |= (event->modifiers
5133 & (meta_modifier | alt_modifier
5134 | hyper_modifier | super_modifier | ctrl_modifier));
5135 /* What about the `shift' modifier ? */
5136 button_down_time = 0;
5137 XSETFASTINT (lispy_c, c);
a50e723f
KH
5138 return lispy_c;
5139 }
5140
284f4730
JB
5141 /* A function key. The symbol may need to have modifier prefixes
5142 tacked onto it. */
3b8f9651 5143 case NON_ASCII_KEYSTROKE_EVENT:
559f9d04 5144 button_down_time = 0;
e9bf89a0
RS
5145
5146 for (i = 0; i < sizeof (lispy_accent_codes) / sizeof (int); i++)
5147 if (event->code == lispy_accent_codes[i])
5148 return modify_event_symbol (i,
5149 event->modifiers,
80e4aa30 5150 Qfunction_key, Qnil,
e9bf89a0
RS
5151 lispy_accent_keys, &accent_key_syms,
5152 (sizeof (lispy_accent_keys)
5153 / sizeof (lispy_accent_keys[0])));
5154
ed3230db 5155#if 0
37cd9f30
KH
5156#ifdef XK_kana_A
5157 if (event->code >= 0x400 && event->code < 0x500)
5158 return modify_event_symbol (event->code - 0x400,
5159 event->modifiers & ~shift_modifier,
5160 Qfunction_key, Qnil,
5161 lispy_kana_keys, &func_key_syms,
5162 (sizeof (lispy_kana_keys)
5163 / sizeof (lispy_kana_keys[0])));
5164#endif /* XK_kana_A */
ed3230db 5165#endif /* 0 */
37cd9f30 5166
111c4138 5167#ifdef ISO_FUNCTION_KEY_OFFSET
04f215f0
RS
5168 if (event->code < FUNCTION_KEY_OFFSET
5169 && event->code >= ISO_FUNCTION_KEY_OFFSET)
5170 return modify_event_symbol (event->code - ISO_FUNCTION_KEY_OFFSET,
5171 event->modifiers,
5172 Qfunction_key, Qnil,
5173 iso_lispy_function_keys, &func_key_syms,
5174 (sizeof (iso_lispy_function_keys)
5175 / sizeof (iso_lispy_function_keys[0])));
111c4138 5176#endif
656280a6 5177
4c8bc894
SM
5178 /* Handle system-specific or unknown keysyms. */
5179 if (event->code & (1 << 28)
5180 || event->code - FUNCTION_KEY_OFFSET < 0
656280a6 5181 || (event->code - FUNCTION_KEY_OFFSET
4c8bc894
SM
5182 >= sizeof lispy_function_keys / sizeof *lispy_function_keys)
5183 || !lispy_function_keys[event->code - FUNCTION_KEY_OFFSET])
656280a6 5184 {
4c8bc894
SM
5185 /* We need to use an alist rather than a vector as the cache
5186 since we can't make a vector long enuf. */
5187 if (NILP (current_kboard->system_key_syms))
5188 current_kboard->system_key_syms = Fcons (Qnil, Qnil);
5189 return modify_event_symbol (event->code,
5190 event->modifiers,
5191 Qfunction_key,
5192 current_kboard->Vsystem_key_alist,
5193 0, &current_kboard->system_key_syms,
5194 (unsigned) -1);
656280a6 5195 }
656280a6
GM
5196
5197 return modify_event_symbol (event->code - FUNCTION_KEY_OFFSET,
5198 event->modifiers,
5199 Qfunction_key, Qnil,
5200 lispy_function_keys, &func_key_syms,
5201 (sizeof (lispy_function_keys)
5202 / sizeof (lispy_function_keys[0])));
284f4730 5203
514354e9 5204#ifdef HAVE_MOUSE
df0f2ba1 5205 /* A mouse click. Figure out where it is, decide whether it's
88cb0656 5206 a press, click or drag, and build the appropriate structure. */
3b8f9651 5207 case MOUSE_CLICK_EVENT:
7ee32cda 5208#ifndef USE_TOOLKIT_SCROLL_BARS
3b8f9651 5209 case SCROLL_BAR_CLICK_EVENT:
7ee32cda 5210#endif
284f4730 5211 {
e9bf89a0 5212 int button = event->code;
559f9d04 5213 int is_double;
7b4aedb9 5214 Lisp_Object position;
dbc4e1c1
JB
5215 Lisp_Object *start_pos_ptr;
5216 Lisp_Object start_pos;
284f4730 5217
8c907a56
GM
5218 position = Qnil;
5219
7b4aedb9 5220 /* Build the position as appropriate for this mouse click. */
3b8f9651 5221 if (event->kind == MOUSE_CLICK_EVENT)
284f4730 5222 {
c5cf2109 5223 struct frame *f = XFRAME (event->frame_or_window);
3d566707 5224#if ! defined (USE_X_TOOLKIT) && ! defined (USE_GTK)
9e20143a 5225 int row, column;
3d566707 5226#endif
9e20143a 5227
5da3133a
RS
5228 /* Ignore mouse events that were made on frame that
5229 have been deleted. */
5230 if (! FRAME_LIVE_P (f))
5231 return Qnil;
5232
3d566707 5233#if ! defined (USE_X_TOOLKIT) && ! defined (USE_GTK)
7ee32cda
GM
5234 /* EVENT->x and EVENT->y are frame-relative pixel
5235 coordinates at this place. Under old redisplay, COLUMN
5236 and ROW are set to frame relative glyph coordinates
5237 which are then used to determine whether this click is
5238 in a menu (non-toolkit version). */
5239 pixel_to_glyph_coords (f, XINT (event->x), XINT (event->y),
5240 &column, &row, NULL, 1);
7b4aedb9 5241
eef045bf
RS
5242 /* In the non-toolkit version, clicks on the menu bar
5243 are ordinary button events in the event buffer.
5244 Distinguish them, and invoke the menu.
5245
5246 (In the toolkit version, the toolkit handles the menu bar
5247 and Emacs doesn't know about it until after the user
5248 makes a selection.) */
2ee250ec
RS
5249 if (row >= 0 && row < FRAME_MENU_BAR_LINES (f)
5250 && (event->modifiers & down_modifier))
bb936752 5251 {
b7c49376 5252 Lisp_Object items, item;
0a0e8fe6
RS
5253 int hpos;
5254 int i;
5255
2ee250ec 5256#if 0
0a0e8fe6
RS
5257 /* Activate the menu bar on the down event. If the
5258 up event comes in before the menu code can deal with it,
5259 just ignore it. */
5260 if (! (event->modifiers & down_modifier))
5261 return Qnil;
2ee250ec 5262#endif
0aafc975 5263
7ee32cda 5264 /* Find the menu bar item under `column'. */
f2ae6b3f 5265 item = Qnil;
5ec75a55 5266 items = FRAME_MENU_BAR_ITEMS (f);
35b3402f 5267 for (i = 0; i < XVECTOR (items)->size; i += 4)
5ec75a55
RS
5268 {
5269 Lisp_Object pos, string;
129004d3
GM
5270 string = AREF (items, i + 1);
5271 pos = AREF (items, i + 3);
b7c49376
RS
5272 if (NILP (string))
5273 break;
9e20143a 5274 if (column >= XINT (pos)
d5db4077 5275 && column < XINT (pos) + SCHARS (string))
b7c49376 5276 {
129004d3 5277 item = AREF (items, i);
b7c49376
RS
5278 break;
5279 }
5ec75a55 5280 }
9e20143a 5281
7ee32cda
GM
5282 /* ELisp manual 2.4b says (x y) are window relative but
5283 code says they are frame-relative. */
5ec75a55
RS
5284 position
5285 = Fcons (event->frame_or_window,
5286 Fcons (Qmenu_bar,
5287 Fcons (Fcons (event->x, event->y),
5288 Fcons (make_number (event->timestamp),
5289 Qnil))));
5290
b7c49376 5291 return Fcons (item, Fcons (position, Qnil));
5ec75a55 5292 }
488dd4c4 5293#endif /* not USE_X_TOOLKIT && not USE_GTK */
0aafc975 5294
3d566707
KS
5295 position = make_lispy_position (f, &event->x, &event->y,
5296 event->timestamp);
284f4730 5297 }
7ee32cda 5298#ifndef USE_TOOLKIT_SCROLL_BARS
7b4aedb9 5299 else
88cb0656 5300 {
7ee32cda 5301 /* It's a scrollbar click. */
3d566707 5302 Lisp_Object window;
9e20143a
RS
5303 Lisp_Object portion_whole;
5304 Lisp_Object part;
5305
5306 window = event->frame_or_window;
5307 portion_whole = Fcons (event->x, event->y);
5308 part = *scroll_bar_parts[(int) event->part];
7b4aedb9 5309
db08707d
RS
5310 position
5311 = Fcons (window,
5312 Fcons (Qvertical_scroll_bar,
5313 Fcons (portion_whole,
5314 Fcons (make_number (event->timestamp),
5315 Fcons (part, Qnil)))));
88cb0656 5316 }
7ee32cda 5317#endif /* not USE_TOOLKIT_SCROLL_BARS */
88cb0656 5318
129004d3 5319 if (button >= ASIZE (button_down_location))
8e1e4240
GM
5320 {
5321 button_down_location = larger_vector (button_down_location,
5322 button + 1, Qnil);
5323 mouse_syms = larger_vector (mouse_syms, button + 1, Qnil);
5324 }
c60ee5e7 5325
129004d3 5326 start_pos_ptr = &AREF (button_down_location, button);
dbc4e1c1
JB
5327 start_pos = *start_pos_ptr;
5328 *start_pos_ptr = Qnil;
7b4aedb9 5329
c5cf2109
GM
5330 {
5331 /* On window-system frames, use the value of
5332 double-click-fuzz as is. On other frames, interpret it
5333 as a multiple of 1/8 characters. */
5334 struct frame *f;
5335 int fuzz;
5336
5337 if (WINDOWP (event->frame_or_window))
5338 f = XFRAME (XWINDOW (event->frame_or_window)->frame);
5339 else if (FRAMEP (event->frame_or_window))
5340 f = XFRAME (event->frame_or_window);
5341 else
5342 abort ();
5343
5344 if (FRAME_WINDOW_P (f))
5345 fuzz = double_click_fuzz;
5346 else
5347 fuzz = double_click_fuzz / 8;
5348
5349 is_double = (button == last_mouse_button
5350 && (abs (XINT (event->x) - last_mouse_x) <= fuzz)
5351 && (abs (XINT (event->y) - last_mouse_y) <= fuzz)
5352 && button_down_time != 0
5353 && (EQ (Vdouble_click_time, Qt)
5354 || (INTEGERP (Vdouble_click_time)
5355 && ((int)(event->timestamp - button_down_time)
5356 < XINT (Vdouble_click_time)))));
5357 }
c60ee5e7 5358
559f9d04
RS
5359 last_mouse_button = button;
5360 last_mouse_x = XINT (event->x);
5361 last_mouse_y = XINT (event->y);
5362
7b4aedb9
JB
5363 /* If this is a button press, squirrel away the location, so
5364 we can decide later whether it was a click or a drag. */
5365 if (event->modifiers & down_modifier)
559f9d04
RS
5366 {
5367 if (is_double)
5368 {
5369 double_click_count++;
5370 event->modifiers |= ((double_click_count > 2)
5371 ? triple_modifier
5372 : double_modifier);
5373 }
5374 else
5375 double_click_count = 1;
5376 button_down_time = event->timestamp;
5377 *start_pos_ptr = Fcopy_alist (position);
5378 }
7b4aedb9 5379
88cb0656 5380 /* Now we're releasing a button - check the co-ordinates to
7b4aedb9 5381 see if this was a click or a drag. */
88cb0656
JB
5382 else if (event->modifiers & up_modifier)
5383 {
129004d3
GM
5384 /* If we did not see a down before this up, ignore the up.
5385 Probably this happened because the down event chose a
5386 menu item. It would be an annoyance to treat the
5387 release of the button that chose the menu item as a
5388 separate event. */
48e416d4 5389
8c18cbfb 5390 if (!CONSP (start_pos))
48e416d4
RS
5391 return Qnil;
5392
88cb0656 5393 event->modifiers &= ~up_modifier;
48e416d4 5394#if 0 /* Formerly we treated an up with no down as a click event. */
8c18cbfb 5395 if (!CONSP (start_pos))
dbc4e1c1
JB
5396 event->modifiers |= click_modifier;
5397 else
48e416d4 5398#endif
dbc4e1c1 5399 {
9b8eb840 5400 Lisp_Object down;
d31053f9 5401 EMACS_INT xdiff = double_click_fuzz, ydiff = double_click_fuzz;
dbc4e1c1 5402
d31053f9
RS
5403 /* The third element of every position
5404 should be the (x,y) pair. */
5405 down = Fcar (Fcdr (Fcdr (start_pos)));
7a6a97d7
SM
5406 if (CONSP (down)
5407 && INTEGERP (XCAR (down)) && INTEGERP (XCDR (down)))
d31053f9 5408 {
7a6a97d7
SM
5409 xdiff = XFASTINT (event->x) - XFASTINT (XCAR (down));
5410 ydiff = XFASTINT (event->y) - XFASTINT (XCDR (down));
d31053f9
RS
5411 }
5412
5413 if (xdiff < double_click_fuzz && xdiff > - double_click_fuzz
5414 && ydiff < double_click_fuzz
5415 && ydiff > - double_click_fuzz)
5416 /* Mouse hasn't moved (much). */
129004d3 5417 event->modifiers |= click_modifier;
fbcd35bd
JB
5418 else
5419 {
d31053f9
RS
5420 button_down_time = 0;
5421 event->modifiers |= drag_modifier;
fbcd35bd 5422 }
c60ee5e7 5423
bc536d84
RS
5424 /* Don't check is_double; treat this as multiple
5425 if the down-event was multiple. */
5426 if (double_click_count > 1)
5427 event->modifiers |= ((double_click_count > 2)
5428 ? triple_modifier
5429 : double_modifier);
dbc4e1c1 5430 }
88cb0656
JB
5431 }
5432 else
5433 /* Every mouse event should either have the down_modifier or
7b4aedb9 5434 the up_modifier set. */
88cb0656
JB
5435 abort ();
5436
88cb0656 5437 {
7b4aedb9 5438 /* Get the symbol we should use for the mouse click. */
9b8eb840
KH
5439 Lisp_Object head;
5440
5441 head = modify_event_symbol (button,
5442 event->modifiers,
8e1e4240
GM
5443 Qmouse_click, Vlispy_mouse_stem,
5444 NULL,
5445 &mouse_syms,
5446 XVECTOR (mouse_syms)->size);
88cb0656 5447 if (event->modifiers & drag_modifier)
dbc4e1c1
JB
5448 return Fcons (head,
5449 Fcons (start_pos,
5450 Fcons (position,
5451 Qnil)));
fbcd35bd
JB
5452 else if (event->modifiers & (double_modifier | triple_modifier))
5453 return Fcons (head,
5454 Fcons (position,
5455 Fcons (make_number (double_click_count),
5456 Qnil)));
88cb0656
JB
5457 else
5458 return Fcons (head,
7b4aedb9 5459 Fcons (position,
88cb0656
JB
5460 Qnil));
5461 }
284f4730 5462 }
db08707d 5463
8006e4bb
JR
5464 case WHEEL_EVENT:
5465 {
5466 Lisp_Object position;
8006e4bb
JR
5467 Lisp_Object head;
5468
87d386ff 5469 /* Build the position as appropriate for this mouse click. */
87d386ff 5470 struct frame *f = XFRAME (event->frame_or_window);
87d386ff
JR
5471
5472 /* Ignore wheel events that were made on frame that have been
5473 deleted. */
5474 if (! FRAME_LIVE_P (f))
5475 return Qnil;
5476
3d566707
KS
5477 position = make_lispy_position (f, &event->x, &event->y,
5478 event->timestamp);
87d386ff
JR
5479
5480 /* Set double or triple modifiers to indicate the wheel speed. */
5481 {
5482 /* On window-system frames, use the value of
5483 double-click-fuzz as is. On other frames, interpret it
5484 as a multiple of 1/8 characters. */
5485 struct frame *f;
5486 int fuzz;
5487 int is_double;
5488
5489 if (WINDOWP (event->frame_or_window))
5490 f = XFRAME (XWINDOW (event->frame_or_window)->frame);
5491 else if (FRAMEP (event->frame_or_window))
5492 f = XFRAME (event->frame_or_window);
5493 else
5494 abort ();
5495
5496 if (FRAME_WINDOW_P (f))
5497 fuzz = double_click_fuzz;
5498 else
5499 fuzz = double_click_fuzz / 8;
5500
5501 is_double = (last_mouse_button < 0
5502 && (abs (XINT (event->x) - last_mouse_x) <= fuzz)
5503 && (abs (XINT (event->y) - last_mouse_y) <= fuzz)
5504 && button_down_time != 0
5505 && (EQ (Vdouble_click_time, Qt)
5506 || (INTEGERP (Vdouble_click_time)
5507 && ((int)(event->timestamp - button_down_time)
5508 < XINT (Vdouble_click_time)))));
5509 if (is_double)
5510 {
5511 double_click_count++;
5512 event->modifiers |= ((double_click_count > 2)
5513 ? triple_modifier
5514 : double_modifier);
5515 }
5516 else
5517 {
5518 double_click_count = 1;
5519 event->modifiers |= click_modifier;
5520 }
5521
5522 button_down_time = event->timestamp;
5523 /* Use a negative value to distinguish wheel from mouse button. */
5524 last_mouse_button = -1;
5525 last_mouse_x = XINT (event->x);
5526 last_mouse_y = XINT (event->y);
5527 }
5528
5529 {
5530 int symbol_num;
5531
5532 if (event->modifiers & up_modifier)
5533 {
5534 /* Emit a wheel-up event. */
5535 event->modifiers &= ~up_modifier;
5536 symbol_num = 0;
5537 }
5538 else if (event->modifiers & down_modifier)
5539 {
5540 /* Emit a wheel-down event. */
5541 event->modifiers &= ~down_modifier;
5542 symbol_num = 1;
5543 }
5544 else
5545 /* Every wheel event should either have the down_modifier or
5546 the up_modifier set. */
5547 abort ();
5548
5549 /* Get the symbol we should use for the wheel event. */
5550 head = modify_event_symbol (symbol_num,
5551 event->modifiers,
5552 Qmouse_click,
5553 Qnil,
5554 lispy_wheel_names,
5555 &wheel_syms,
5556 ASIZE (wheel_syms));
5557 }
5558
5559 if (event->modifiers & (double_modifier | triple_modifier))
5560 return Fcons (head,
5561 Fcons (position,
5562 Fcons (make_number (double_click_count),
5563 Qnil)));
5564 else
5565 return Fcons (head,
5566 Fcons (position,
5567 Qnil));
8006e4bb
JR
5568 }
5569
5570
05be3964 5571#ifdef USE_TOOLKIT_SCROLL_BARS
7ee32cda
GM
5572
5573 /* We don't have down and up events if using toolkit scroll bars,
5574 so make this always a click event. Store in the `part' of
5575 the Lisp event a symbol which maps to the following actions:
5576
5577 `above_handle' page up
5578 `below_handle' page down
5579 `up' line up
5580 `down' line down
5581 `top' top of buffer
5582 `bottom' bottom of buffer
5583 `handle' thumb has been dragged.
5584 `end-scroll' end of interaction with scroll bar
5585
5586 The incoming input_event contains in its `part' member an
5587 index of type `enum scroll_bar_part' which we can use as an
5588 index in scroll_bar_parts to get the appropriate symbol. */
c60ee5e7 5589
3b8f9651 5590 case SCROLL_BAR_CLICK_EVENT:
7ee32cda
GM
5591 {
5592 Lisp_Object position, head, window, portion_whole, part;
5593
5594 window = event->frame_or_window;
5595 portion_whole = Fcons (event->x, event->y);
5596 part = *scroll_bar_parts[(int) event->part];
5597
5598 position
5599 = Fcons (window,
5600 Fcons (Qvertical_scroll_bar,
5601 Fcons (portion_whole,
5602 Fcons (make_number (event->timestamp),
5603 Fcons (part, Qnil)))));
5604
5605 /* Always treat scroll bar events as clicks. */
5606 event->modifiers |= click_modifier;
05be3964 5607 event->modifiers &= ~up_modifier;
7ee32cda 5608
257f40f2
JD
5609 if (event->code >= ASIZE (mouse_syms))
5610 mouse_syms = larger_vector (mouse_syms, event->code + 1, Qnil);
5611
7ee32cda
GM
5612 /* Get the symbol we should use for the mouse click. */
5613 head = modify_event_symbol (event->code,
5614 event->modifiers,
14e40288 5615 Qmouse_click,
8e1e4240
GM
5616 Vlispy_mouse_stem,
5617 NULL, &mouse_syms,
5618 XVECTOR (mouse_syms)->size);
7ee32cda
GM
5619 return Fcons (head, Fcons (position, Qnil));
5620 }
c60ee5e7 5621
7ee32cda
GM
5622#endif /* USE_TOOLKIT_SCROLL_BARS */
5623
db08707d 5624#ifdef WINDOWSNT
3b8f9651 5625 case W32_SCROLL_BAR_CLICK_EVENT:
db08707d
RS
5626 {
5627 int button = event->code;
5628 int is_double;
5629 Lisp_Object position;
5630 Lisp_Object *start_pos_ptr;
5631 Lisp_Object start_pos;
5632
db08707d
RS
5633 {
5634 Lisp_Object window;
5635 Lisp_Object portion_whole;
5636 Lisp_Object part;
5637
5638 window = event->frame_or_window;
5639 portion_whole = Fcons (event->x, event->y);
5640 part = *scroll_bar_parts[(int) event->part];
5641
e8886a1d
RS
5642 position
5643 = Fcons (window,
5644 Fcons (Qvertical_scroll_bar,
5645 Fcons (portion_whole,
5646 Fcons (make_number (event->timestamp),
5647 Fcons (part, Qnil)))));
db08707d
RS
5648 }
5649
fbd6baed 5650 /* Always treat W32 scroll bar events as clicks. */
db08707d
RS
5651 event->modifiers |= click_modifier;
5652
5653 {
5654 /* Get the symbol we should use for the mouse click. */
5655 Lisp_Object head;
5656
5657 head = modify_event_symbol (button,
5658 event->modifiers,
c60ee5e7 5659 Qmouse_click,
8e1e4240
GM
5660 Vlispy_mouse_stem,
5661 NULL, &mouse_syms,
5662 XVECTOR (mouse_syms)->size);
db08707d
RS
5663 return Fcons (head,
5664 Fcons (position,
5665 Qnil));
5666 }
5667 }
1e7c162f 5668#endif /* WINDOWSNT */
a24dc617 5669
3b8f9651 5670 case DRAG_N_DROP_EVENT:
a24dc617 5671 {
a24dc617 5672 FRAME_PTR f;
3d566707 5673 Lisp_Object head, position;
a24dc617 5674 Lisp_Object files;
a24dc617
RS
5675
5676 /* The frame_or_window field should be a cons of the frame in
5677 which the event occurred and a list of the filenames
5678 dropped. */
5679 if (! CONSP (event->frame_or_window))
5680 abort ();
5681
7539e11f
KR
5682 f = XFRAME (XCAR (event->frame_or_window));
5683 files = XCDR (event->frame_or_window);
a24dc617
RS
5684
5685 /* Ignore mouse events that were made on frames that
5686 have been deleted. */
5687 if (! FRAME_LIVE_P (f))
5688 return Qnil;
afabdbe5 5689
3d566707
KS
5690 position = make_lispy_position (f, &event->x, &event->y,
5691 event->timestamp);
5692
5693 head = modify_event_symbol (0, event->modifiers,
5694 Qdrag_n_drop, Qnil,
5695 lispy_drag_n_drop_names,
5696 &drag_n_drop_syms, 1);
5697 return Fcons (head,
5698 Fcons (position,
5699 Fcons (files,
5700 Qnil)));
a24dc617 5701 }
514354e9 5702#endif /* HAVE_MOUSE */
284f4730 5703
488dd4c4
JD
5704#if defined (USE_X_TOOLKIT) || defined (HAVE_NTGUI) || defined (MAC_OS) \
5705 || defined (USE_GTK)
da8f7368
GM
5706 case MENU_BAR_EVENT:
5707 if (EQ (event->arg, event->frame_or_window))
5708 /* This is the prefix key. We translate this to
5709 `(menu_bar)' because the code in keyboard.c for menu
5710 events, which we use, relies on this. */
5711 return Fcons (Qmenu_bar, Qnil);
5712 return event->arg;
2470a66f
KH
5713#endif
5714
a4e19f6e
SM
5715 case SELECT_WINDOW_EVENT:
5716 /* Make an event (select-window (WINDOW)). */
5717 return Fcons (Qselect_window,
5718 Fcons (Fcons (event->frame_or_window, Qnil),
5719 Qnil));
5720
9ea173e8 5721 case TOOL_BAR_EVENT:
da8f7368
GM
5722 if (EQ (event->arg, event->frame_or_window))
5723 /* This is the prefix key. We translate this to
27fd22dc 5724 `(tool_bar)' because the code in keyboard.c for tool bar
da8f7368
GM
5725 events, which we use, relies on this. */
5726 return Fcons (Qtool_bar, Qnil);
5727 else if (SYMBOLP (event->arg))
5728 return apply_modifiers (event->modifiers, event->arg);
5729 return event->arg;
5730
5731 case USER_SIGNAL_EVENT:
5bf68f6e
AS
5732 /* A user signal. */
5733 return *lispy_user_signals[event->code];
c60ee5e7 5734
3b8f9651 5735 case SAVE_SESSION_EVENT:
4ebc27a5 5736 return Qsave_session;
c60ee5e7 5737
284f4730
JB
5738 /* The 'kind' field of the event is something we don't recognize. */
5739 default:
48e416d4 5740 abort ();
284f4730
JB
5741 }
5742}
5743
514354e9 5744#ifdef HAVE_MOUSE
6cbff1cb 5745
284f4730 5746static Lisp_Object
7b4aedb9 5747make_lispy_movement (frame, bar_window, part, x, y, time)
ff11dfa1 5748 FRAME_PTR frame;
7b4aedb9 5749 Lisp_Object bar_window;
3c370943 5750 enum scroll_bar_part part;
284f4730 5751 Lisp_Object x, y;
e5d77022 5752 unsigned long time;
284f4730 5753{
3c370943 5754 /* Is it a scroll bar movement? */
7b4aedb9 5755 if (frame && ! NILP (bar_window))
4bb994d1 5756 {
9b8eb840 5757 Lisp_Object part_sym;
4bb994d1 5758
9b8eb840 5759 part_sym = *scroll_bar_parts[(int) part];
3c370943 5760 return Fcons (Qscroll_bar_movement,
7b4aedb9 5761 (Fcons (Fcons (bar_window,
3c370943 5762 Fcons (Qvertical_scroll_bar,
4bb994d1
JB
5763 Fcons (Fcons (x, y),
5764 Fcons (make_number (time),
cb5df6ae 5765 Fcons (part_sym,
4bb994d1
JB
5766 Qnil))))),
5767 Qnil)));
5768 }
5769
5770 /* Or is it an ordinary mouse movement? */
284f4730
JB
5771 else
5772 {
3d566707 5773 Lisp_Object position;
4bb994d1 5774
3d566707 5775 position = make_lispy_position (frame, &x, &y, time);
284f4730 5776
4bb994d1 5777 return Fcons (Qmouse_movement,
3d566707 5778 Fcons (position,
4bb994d1
JB
5779 Qnil));
5780 }
284f4730
JB
5781}
5782
514354e9 5783#endif /* HAVE_MOUSE */
6cbff1cb 5784
cd21b839
JB
5785/* Construct a switch frame event. */
5786static Lisp_Object
5787make_lispy_switch_frame (frame)
5788 Lisp_Object frame;
5789{
5790 return Fcons (Qswitch_frame, Fcons (frame, Qnil));
5791}
0a7f1fc0
JB
5792\f
5793/* Manipulating modifiers. */
284f4730 5794
0a7f1fc0 5795/* Parse the name of SYMBOL, and return the set of modifiers it contains.
284f4730 5796
0a7f1fc0
JB
5797 If MODIFIER_END is non-zero, set *MODIFIER_END to the position in
5798 SYMBOL's name of the end of the modifiers; the string from this
5799 position is the unmodified symbol name.
284f4730 5800
0a7f1fc0 5801 This doesn't use any caches. */
6da3dd3a 5802
0a7f1fc0
JB
5803static int
5804parse_modifiers_uncached (symbol, modifier_end)
284f4730 5805 Lisp_Object symbol;
0a7f1fc0 5806 int *modifier_end;
284f4730 5807{
1b049b51 5808 Lisp_Object name;
284f4730
JB
5809 int i;
5810 int modifiers;
284f4730 5811
b7826503 5812 CHECK_SYMBOL (symbol);
df0f2ba1 5813
284f4730 5814 modifiers = 0;
1b049b51 5815 name = SYMBOL_NAME (symbol);
284f4730 5816
1b049b51 5817 for (i = 0; i+2 <= SBYTES (name); )
6da3dd3a
RS
5818 {
5819 int this_mod_end = 0;
5820 int this_mod = 0;
284f4730 5821
6da3dd3a
RS
5822 /* See if the name continues with a modifier word.
5823 Check that the word appears, but don't check what follows it.
5824 Set this_mod and this_mod_end to record what we find. */
fce33686 5825
1b049b51 5826 switch (SREF (name, i))
6da3dd3a
RS
5827 {
5828#define SINGLE_LETTER_MOD(BIT) \
5829 (this_mod_end = i + 1, this_mod = BIT)
5830
6da3dd3a
RS
5831 case 'A':
5832 SINGLE_LETTER_MOD (alt_modifier);
5833 break;
284f4730 5834
6da3dd3a
RS
5835 case 'C':
5836 SINGLE_LETTER_MOD (ctrl_modifier);
5837 break;
284f4730 5838
6da3dd3a
RS
5839 case 'H':
5840 SINGLE_LETTER_MOD (hyper_modifier);
5841 break;
5842
6da3dd3a
RS
5843 case 'M':
5844 SINGLE_LETTER_MOD (meta_modifier);
5845 break;
5846
6da3dd3a
RS
5847 case 'S':
5848 SINGLE_LETTER_MOD (shift_modifier);
5849 break;
5850
5851 case 's':
6da3dd3a
RS
5852 SINGLE_LETTER_MOD (super_modifier);
5853 break;
5854
0a7f1fc0 5855#undef SINGLE_LETTER_MOD
65470b52
SM
5856
5857#define MULTI_LETTER_MOD(BIT, NAME, LEN) \
5858 if (i + LEN + 1 <= SBYTES (name) \
5859 && ! strncmp (SDATA (name) + i, NAME, LEN)) \
5860 { \
5861 this_mod_end = i + LEN; \
5862 this_mod = BIT; \
5863 }
5864
5865 case 'd':
5866 MULTI_LETTER_MOD (drag_modifier, "drag", 4);
5867 MULTI_LETTER_MOD (down_modifier, "down", 4);
5868 MULTI_LETTER_MOD (double_modifier, "double", 6);
5869 break;
5870
5871 case 't':
5872 MULTI_LETTER_MOD (triple_modifier, "triple", 6);
5873 break;
5874#undef MULTI_LETTER_MOD
5875
6da3dd3a
RS
5876 }
5877
5878 /* If we found no modifier, stop looking for them. */
5879 if (this_mod_end == 0)
5880 break;
5881
5882 /* Check there is a dash after the modifier, so that it
5883 really is a modifier. */
1b049b51
KR
5884 if (this_mod_end >= SBYTES (name)
5885 || SREF (name, this_mod_end) != '-')
6da3dd3a
RS
5886 break;
5887
5888 /* This modifier is real; look for another. */
5889 modifiers |= this_mod;
5890 i = this_mod_end + 1;
5891 }
284f4730 5892
0a7f1fc0 5893 /* Should we include the `click' modifier? */
fbcd35bd
JB
5894 if (! (modifiers & (down_modifier | drag_modifier
5895 | double_modifier | triple_modifier))
1b049b51
KR
5896 && i + 7 == SBYTES (name)
5897 && strncmp (SDATA (name) + i, "mouse-", 6) == 0
5898 && ('0' <= SREF (name, i + 6) && SREF (name, i + 6) <= '9'))
0a7f1fc0
JB
5899 modifiers |= click_modifier;
5900
5901 if (modifier_end)
5902 *modifier_end = i;
5903
5904 return modifiers;
5905}
5906
0a7f1fc0
JB
5907/* Return a symbol whose name is the modifier prefixes for MODIFIERS
5908 prepended to the string BASE[0..BASE_LEN-1].
5909 This doesn't use any caches. */
5910static Lisp_Object
301738ed 5911apply_modifiers_uncached (modifiers, base, base_len, base_len_byte)
0a7f1fc0
JB
5912 int modifiers;
5913 char *base;
301738ed 5914 int base_len, base_len_byte;
0a7f1fc0
JB
5915{
5916 /* Since BASE could contain nulls, we can't use intern here; we have
5917 to use Fintern, which expects a genuine Lisp_String, and keeps a
5918 reference to it. */
301738ed
RS
5919 char *new_mods
5920 = (char *) alloca (sizeof ("A-C-H-M-S-s-down-drag-double-triple-"));
0a7f1fc0 5921 int mod_len;
284f4730 5922
284f4730 5923 {
0a7f1fc0
JB
5924 char *p = new_mods;
5925
5926 /* Only the event queue may use the `up' modifier; it should always
5927 be turned into a click or drag event before presented to lisp code. */
5928 if (modifiers & up_modifier)
5929 abort ();
5930
5931 if (modifiers & alt_modifier) { *p++ = 'A'; *p++ = '-'; }
5932 if (modifiers & ctrl_modifier) { *p++ = 'C'; *p++ = '-'; }
5933 if (modifiers & hyper_modifier) { *p++ = 'H'; *p++ = '-'; }
5934 if (modifiers & meta_modifier) { *p++ = 'M'; *p++ = '-'; }
5935 if (modifiers & shift_modifier) { *p++ = 'S'; *p++ = '-'; }
86e5706b 5936 if (modifiers & super_modifier) { *p++ = 's'; *p++ = '-'; }
fbcd35bd
JB
5937 if (modifiers & double_modifier) { strcpy (p, "double-"); p += 7; }
5938 if (modifiers & triple_modifier) { strcpy (p, "triple-"); p += 7; }
559f9d04
RS
5939 if (modifiers & down_modifier) { strcpy (p, "down-"); p += 5; }
5940 if (modifiers & drag_modifier) { strcpy (p, "drag-"); p += 5; }
0a7f1fc0
JB
5941 /* The click modifier is denoted by the absence of other modifiers. */
5942
5943 *p = '\0';
5944
5945 mod_len = p - new_mods;
5946 }
284f4730 5947
0a7f1fc0 5948 {
9b8eb840 5949 Lisp_Object new_name;
df0f2ba1 5950
301738ed
RS
5951 new_name = make_uninit_multibyte_string (mod_len + base_len,
5952 mod_len + base_len_byte);
d5db4077
KR
5953 bcopy (new_mods, SDATA (new_name), mod_len);
5954 bcopy (base, SDATA (new_name) + mod_len, base_len_byte);
284f4730
JB
5955
5956 return Fintern (new_name, Qnil);
5957 }
5958}
5959
5960
0a7f1fc0
JB
5961static char *modifier_names[] =
5962{
fbcd35bd 5963 "up", "down", "drag", "click", "double", "triple", 0, 0,
f335fabe 5964 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
86e5706b 5965 0, 0, "alt", "super", "hyper", "shift", "control", "meta"
0a7f1fc0 5966};
80645119 5967#define NUM_MOD_NAMES (sizeof (modifier_names) / sizeof (modifier_names[0]))
0a7f1fc0
JB
5968
5969static Lisp_Object modifier_symbols;
5970
5971/* Return the list of modifier symbols corresponding to the mask MODIFIERS. */
5972static Lisp_Object
5973lispy_modifier_list (modifiers)
5974 int modifiers;
5975{
5976 Lisp_Object modifier_list;
5977 int i;
5978
5979 modifier_list = Qnil;
80645119 5980 for (i = 0; (1<<i) <= modifiers && i < NUM_MOD_NAMES; i++)
0a7f1fc0 5981 if (modifiers & (1<<i))
80645119
JB
5982 modifier_list = Fcons (XVECTOR (modifier_symbols)->contents[i],
5983 modifier_list);
0a7f1fc0
JB
5984
5985 return modifier_list;
5986}
5987
5988
5989/* Parse the modifiers on SYMBOL, and return a list like (UNMODIFIED MASK),
5990 where UNMODIFIED is the unmodified form of SYMBOL,
5991 MASK is the set of modifiers present in SYMBOL's name.
5992 This is similar to parse_modifiers_uncached, but uses the cache in
5993 SYMBOL's Qevent_symbol_element_mask property, and maintains the
5994 Qevent_symbol_elements property. */
3d31316f 5995
1161d367 5996Lisp_Object
0a7f1fc0
JB
5997parse_modifiers (symbol)
5998 Lisp_Object symbol;
5999{
9b8eb840 6000 Lisp_Object elements;
0a7f1fc0 6001
9b8eb840 6002 elements = Fget (symbol, Qevent_symbol_element_mask);
0a7f1fc0
JB
6003 if (CONSP (elements))
6004 return elements;
6005 else
6006 {
6007 int end;
ec0faad2 6008 int modifiers = parse_modifiers_uncached (symbol, &end);
9b8eb840 6009 Lisp_Object unmodified;
0a7f1fc0
JB
6010 Lisp_Object mask;
6011
d5db4077
KR
6012 unmodified = Fintern (make_string (SDATA (SYMBOL_NAME (symbol)) + end,
6013 SBYTES (SYMBOL_NAME (symbol)) - end),
9b8eb840
KH
6014 Qnil);
6015
e22216b8 6016 if (modifiers & ~INTMASK)
734fef94 6017 abort ();
bb9e9bed 6018 XSETFASTINT (mask, modifiers);
0a7f1fc0
JB
6019 elements = Fcons (unmodified, Fcons (mask, Qnil));
6020
6021 /* Cache the parsing results on SYMBOL. */
6022 Fput (symbol, Qevent_symbol_element_mask,
6023 elements);
6024 Fput (symbol, Qevent_symbol_elements,
6025 Fcons (unmodified, lispy_modifier_list (modifiers)));
6026
6027 /* Since we know that SYMBOL is modifiers applied to unmodified,
6028 it would be nice to put that in unmodified's cache.
6029 But we can't, since we're not sure that parse_modifiers is
6030 canonical. */
6031
6032 return elements;
6033 }
6034}
6035
6036/* Apply the modifiers MODIFIERS to the symbol BASE.
6037 BASE must be unmodified.
6038
6039 This is like apply_modifiers_uncached, but uses BASE's
6040 Qmodifier_cache property, if present. It also builds
cd21b839
JB
6041 Qevent_symbol_elements properties, since it has that info anyway.
6042
6043 apply_modifiers copies the value of BASE's Qevent_kind property to
6044 the modified symbol. */
0a7f1fc0
JB
6045static Lisp_Object
6046apply_modifiers (modifiers, base)
6047 int modifiers;
6048 Lisp_Object base;
6049{
7b4aedb9 6050 Lisp_Object cache, index, entry, new_symbol;
0a7f1fc0 6051
80645119 6052 /* Mask out upper bits. We don't know where this value's been. */
e22216b8 6053 modifiers &= INTMASK;
80645119 6054
0a7f1fc0 6055 /* The click modifier never figures into cache indices. */
0a7f1fc0 6056 cache = Fget (base, Qmodifier_cache);
bb9e9bed 6057 XSETFASTINT (index, (modifiers & ~click_modifier));
697e4895 6058 entry = assq_no_quit (index, cache);
0a7f1fc0
JB
6059
6060 if (CONSP (entry))
7539e11f 6061 new_symbol = XCDR (entry);
7b4aedb9
JB
6062 else
6063 {
df0f2ba1 6064 /* We have to create the symbol ourselves. */
7b4aedb9 6065 new_symbol = apply_modifiers_uncached (modifiers,
d5db4077
KR
6066 SDATA (SYMBOL_NAME (base)),
6067 SCHARS (SYMBOL_NAME (base)),
6068 SBYTES (SYMBOL_NAME (base)));
7b4aedb9
JB
6069
6070 /* Add the new symbol to the base's cache. */
6071 entry = Fcons (index, new_symbol);
6072 Fput (base, Qmodifier_cache, Fcons (entry, cache));
6073
35fb885d
SM
6074 /* We have the parsing info now for free, so we could add it to
6075 the caches:
6076 XSETFASTINT (index, modifiers);
6077 Fput (new_symbol, Qevent_symbol_element_mask,
6078 Fcons (base, Fcons (index, Qnil)));
6079 Fput (new_symbol, Qevent_symbol_elements,
6080 Fcons (base, lispy_modifier_list (modifiers)));
6081 Sadly, this is only correct if `base' is indeed a base event,
6082 which is not necessarily the case. -stef */
7b4aedb9 6083 }
0a7f1fc0 6084
df0f2ba1 6085 /* Make sure this symbol is of the same kind as BASE.
7b4aedb9
JB
6086
6087 You'd think we could just set this once and for all when we
6088 intern the symbol above, but reorder_modifiers may call us when
6089 BASE's property isn't set right; we can't assume that just
80645119
JB
6090 because it has a Qmodifier_cache property it must have its
6091 Qevent_kind set right as well. */
7b4aedb9
JB
6092 if (NILP (Fget (new_symbol, Qevent_kind)))
6093 {
9b8eb840 6094 Lisp_Object kind;
7b4aedb9 6095
9b8eb840 6096 kind = Fget (base, Qevent_kind);
7b4aedb9
JB
6097 if (! NILP (kind))
6098 Fput (new_symbol, Qevent_kind, kind);
6099 }
6100
6101 return new_symbol;
0a7f1fc0
JB
6102}
6103
6104
6105/* Given a symbol whose name begins with modifiers ("C-", "M-", etc),
6106 return a symbol with the modifiers placed in the canonical order.
6107 Canonical order is alphabetical, except for down and drag, which
6108 always come last. The 'click' modifier is never written out.
6109
6110 Fdefine_key calls this to make sure that (for example) C-M-foo
6111 and M-C-foo end up being equivalent in the keymap. */
6112
6113Lisp_Object
6114reorder_modifiers (symbol)
6115 Lisp_Object symbol;
6116{
6117 /* It's hopefully okay to write the code this way, since everything
6118 will soon be in caches, and no consing will be done at all. */
9b8eb840 6119 Lisp_Object parsed;
0a7f1fc0 6120
9b8eb840 6121 parsed = parse_modifiers (symbol);
7539e11f
KR
6122 return apply_modifiers ((int) XINT (XCAR (XCDR (parsed))),
6123 XCAR (parsed));
0a7f1fc0
JB
6124}
6125
6126
284f4730
JB
6127/* For handling events, we often want to produce a symbol whose name
6128 is a series of modifier key prefixes ("M-", "C-", etcetera) attached
6129 to some base, like the name of a function key or mouse button.
6130 modify_event_symbol produces symbols of this sort.
6131
6132 NAME_TABLE should point to an array of strings, such that NAME_TABLE[i]
6133 is the name of the i'th symbol. TABLE_SIZE is the number of elements
6134 in the table.
6135
8e1e4240
GM
6136 Alternatively, NAME_ALIST_OR_STEM is either an alist mapping codes
6137 into symbol names, or a string specifying a name stem used to
a50e723f 6138 construct a symbol name or the form `STEM-N', where N is the decimal
8e1e4240
GM
6139 representation of SYMBOL_NUM. NAME_ALIST_OR_STEM is used if it is
6140 non-nil; otherwise NAME_TABLE is used.
80e4aa30 6141
284f4730
JB
6142 SYMBOL_TABLE should be a pointer to a Lisp_Object whose value will
6143 persist between calls to modify_event_symbol that it can use to
6144 store a cache of the symbols it's generated for this NAME_TABLE
80e4aa30 6145 before. The object stored there may be a vector or an alist.
284f4730
JB
6146
6147 SYMBOL_NUM is the number of the base name we want from NAME_TABLE.
df0f2ba1 6148
284f4730
JB
6149 MODIFIERS is a set of modifier bits (as given in struct input_events)
6150 whose prefixes should be applied to the symbol name.
6151
6152 SYMBOL_KIND is the value to be placed in the event_kind property of
df0f2ba1 6153 the returned symbol.
88cb0656
JB
6154
6155 The symbols we create are supposed to have an
eb8c3be9 6156 `event-symbol-elements' property, which lists the modifiers present
88cb0656
JB
6157 in the symbol's name. */
6158
284f4730 6159static Lisp_Object
8e1e4240 6160modify_event_symbol (symbol_num, modifiers, symbol_kind, name_alist_or_stem,
80e4aa30 6161 name_table, symbol_table, table_size)
284f4730
JB
6162 int symbol_num;
6163 unsigned modifiers;
6164 Lisp_Object symbol_kind;
8e1e4240 6165 Lisp_Object name_alist_or_stem;
284f4730
JB
6166 char **name_table;
6167 Lisp_Object *symbol_table;
2c834fb3 6168 unsigned int table_size;
284f4730 6169{
80e4aa30
RS
6170 Lisp_Object value;
6171 Lisp_Object symbol_int;
6172
2c834fb3
KH
6173 /* Get rid of the "vendor-specific" bit here. */
6174 XSETINT (symbol_int, symbol_num & 0xffffff);
284f4730
JB
6175
6176 /* Is this a request for a valid symbol? */
88cb0656 6177 if (symbol_num < 0 || symbol_num >= table_size)
0c2611c5 6178 return Qnil;
284f4730 6179
80e4aa30
RS
6180 if (CONSP (*symbol_table))
6181 value = Fcdr (assq_no_quit (symbol_int, *symbol_table));
6182
0a7f1fc0 6183 /* If *symbol_table doesn't seem to be initialized properly, fix that.
88cb0656 6184 *symbol_table should be a lisp vector TABLE_SIZE elements long,
4bb994d1
JB
6185 where the Nth element is the symbol for NAME_TABLE[N], or nil if
6186 we've never used that symbol before. */
80e4aa30 6187 else
88cb0656 6188 {
80e4aa30
RS
6189 if (! VECTORP (*symbol_table)
6190 || XVECTOR (*symbol_table)->size != table_size)
6191 {
6192 Lisp_Object size;
0a7f1fc0 6193
bb9e9bed 6194 XSETFASTINT (size, table_size);
80e4aa30
RS
6195 *symbol_table = Fmake_vector (size, Qnil);
6196 }
284f4730 6197
80e4aa30
RS
6198 value = XVECTOR (*symbol_table)->contents[symbol_num];
6199 }
284f4730 6200
0a7f1fc0 6201 /* Have we already used this symbol before? */
80e4aa30 6202 if (NILP (value))
284f4730 6203 {
0a7f1fc0 6204 /* No; let's create it. */
8e1e4240
GM
6205 if (CONSP (name_alist_or_stem))
6206 value = Fcdr_safe (Fassq (symbol_int, name_alist_or_stem));
6207 else if (STRINGP (name_alist_or_stem))
6208 {
d5db4077 6209 int len = SBYTES (name_alist_or_stem);
8e1e4240 6210 char *buf = (char *) alloca (len + 50);
ed3230db
DL
6211 if (sizeof (int) == sizeof (EMACS_INT))
6212 sprintf (buf, "%s-%d", SDATA (name_alist_or_stem),
6213 XINT (symbol_int) + 1);
6214 else if (sizeof (long) == sizeof (EMACS_INT))
6215 sprintf (buf, "%s-%ld", SDATA (name_alist_or_stem),
6216 XINT (symbol_int) + 1);
8e1e4240
GM
6217 value = intern (buf);
6218 }
2ff6714d 6219 else if (name_table != 0 && name_table[symbol_num])
80e4aa30 6220 value = intern (name_table[symbol_num]);
b64b4075 6221
e98a93eb 6222#ifdef HAVE_WINDOW_SYSTEM
2c834fb3
KH
6223 if (NILP (value))
6224 {
6225 char *name = x_get_keysym_name (symbol_num);
6226 if (name)
6227 value = intern (name);
6228 }
6229#endif
6230
b64b4075 6231 if (NILP (value))
d1f50460
RS
6232 {
6233 char buf[20];
6234 sprintf (buf, "key-%d", symbol_num);
80e4aa30 6235 value = intern (buf);
d1f50460 6236 }
0a7f1fc0 6237
80e4aa30 6238 if (CONSP (*symbol_table))
4205cb08 6239 *symbol_table = Fcons (Fcons (symbol_int, value), *symbol_table);
80e4aa30
RS
6240 else
6241 XVECTOR (*symbol_table)->contents[symbol_num] = value;
6242
df0f2ba1 6243 /* Fill in the cache entries for this symbol; this also
0a7f1fc0
JB
6244 builds the Qevent_symbol_elements property, which the user
6245 cares about. */
80e4aa30
RS
6246 apply_modifiers (modifiers & click_modifier, value);
6247 Fput (value, Qevent_kind, symbol_kind);
284f4730 6248 }
88cb0656 6249
0a7f1fc0 6250 /* Apply modifiers to that symbol. */
80e4aa30 6251 return apply_modifiers (modifiers, value);
284f4730 6252}
6da3dd3a
RS
6253\f
6254/* Convert a list that represents an event type,
6255 such as (ctrl meta backspace), into the usual representation of that
6256 event type as a number or a symbol. */
6257
a1706c30 6258DEFUN ("event-convert-list", Fevent_convert_list, Sevent_convert_list, 1, 1, 0,
4707d2d0
PJ
6259 doc: /* Convert the event description list EVENT-DESC to an event type.
6260EVENT-DESC should contain one base event type (a character or symbol)
6261and zero or more modifier names (control, meta, hyper, super, shift, alt,
6262drag, down, double or triple). The base must be last.
6263The return value is an event type (a character or symbol) which
6264has the same base event type and all the specified modifiers. */)
6265 (event_desc)
e57d8fd8 6266 Lisp_Object event_desc;
6da3dd3a
RS
6267{
6268 Lisp_Object base;
6269 int modifiers = 0;
6270 Lisp_Object rest;
6271
6272 base = Qnil;
e57d8fd8 6273 rest = event_desc;
6da3dd3a
RS
6274 while (CONSP (rest))
6275 {
6276 Lisp_Object elt;
6277 int this = 0;
6278
7539e11f
KR
6279 elt = XCAR (rest);
6280 rest = XCDR (rest);
6da3dd3a 6281
3d31316f 6282 /* Given a symbol, see if it is a modifier name. */
377f24f5 6283 if (SYMBOLP (elt) && CONSP (rest))
3d31316f 6284 this = parse_solitary_modifier (elt);
6da3dd3a
RS
6285
6286 if (this != 0)
6287 modifiers |= this;
6288 else if (!NILP (base))
6289 error ("Two bases given in one event");
6290 else
6291 base = elt;
6292
6da3dd3a
RS
6293 }
6294
3d31316f 6295 /* Let the symbol A refer to the character A. */
d5db4077 6296 if (SYMBOLP (base) && SCHARS (SYMBOL_NAME (base)) == 1)
4069e0f8 6297 XSETINT (base, SREF (SYMBOL_NAME (base), 0));
3d31316f 6298
6da3dd3a
RS
6299 if (INTEGERP (base))
6300 {
3d31316f
RS
6301 /* Turn (shift a) into A. */
6302 if ((modifiers & shift_modifier) != 0
6303 && (XINT (base) >= 'a' && XINT (base) <= 'z'))
6304 {
6305 XSETINT (base, XINT (base) - ('a' - 'A'));
6306 modifiers &= ~shift_modifier;
6307 }
6308
6309 /* Turn (control a) into C-a. */
6da3dd3a 6310 if (modifiers & ctrl_modifier)
3d31316f 6311 return make_number ((modifiers & ~ctrl_modifier)
6da3dd3a
RS
6312 | make_ctrl_char (XINT (base)));
6313 else
6314 return make_number (modifiers | XINT (base));
6315 }
6316 else if (SYMBOLP (base))
6317 return apply_modifiers (modifiers, base);
6318 else
8c907a56
GM
6319 {
6320 error ("Invalid base event");
6321 return Qnil;
6322 }
6da3dd3a
RS
6323}
6324
3d31316f
RS
6325/* Try to recognize SYMBOL as a modifier name.
6326 Return the modifier flag bit, or 0 if not recognized. */
6327
6328static int
6329parse_solitary_modifier (symbol)
6330 Lisp_Object symbol;
6331{
1b049b51 6332 Lisp_Object name = SYMBOL_NAME (symbol);
3d31316f 6333
1b049b51 6334 switch (SREF (name, 0))
3d31316f
RS
6335 {
6336#define SINGLE_LETTER_MOD(BIT) \
1b049b51 6337 if (SBYTES (name) == 1) \
3d31316f
RS
6338 return BIT;
6339
6340#define MULTI_LETTER_MOD(BIT, NAME, LEN) \
1b049b51
KR
6341 if (LEN == SBYTES (name) \
6342 && ! strncmp (SDATA (name), NAME, LEN)) \
3d31316f
RS
6343 return BIT;
6344
6345 case 'A':
6346 SINGLE_LETTER_MOD (alt_modifier);
6347 break;
6348
6349 case 'a':
6350 MULTI_LETTER_MOD (alt_modifier, "alt", 3);
6351 break;
6352
6353 case 'C':
6354 SINGLE_LETTER_MOD (ctrl_modifier);
6355 break;
6356
6357 case 'c':
6358 MULTI_LETTER_MOD (ctrl_modifier, "ctrl", 4);
6359 MULTI_LETTER_MOD (ctrl_modifier, "control", 7);
6360 break;
6361
6362 case 'H':
6363 SINGLE_LETTER_MOD (hyper_modifier);
6364 break;
6365
6366 case 'h':
6367 MULTI_LETTER_MOD (hyper_modifier, "hyper", 5);
6368 break;
6369
6370 case 'M':
6371 SINGLE_LETTER_MOD (meta_modifier);
6372 break;
6373
6374 case 'm':
6375 MULTI_LETTER_MOD (meta_modifier, "meta", 4);
6376 break;
6377
6378 case 'S':
6379 SINGLE_LETTER_MOD (shift_modifier);
6380 break;
6381
6382 case 's':
6383 MULTI_LETTER_MOD (shift_modifier, "shift", 5);
6384 MULTI_LETTER_MOD (super_modifier, "super", 5);
6385 SINGLE_LETTER_MOD (super_modifier);
6386 break;
6387
6388 case 'd':
6389 MULTI_LETTER_MOD (drag_modifier, "drag", 4);
6390 MULTI_LETTER_MOD (down_modifier, "down", 4);
6391 MULTI_LETTER_MOD (double_modifier, "double", 6);
6392 break;
6393
6394 case 't':
6395 MULTI_LETTER_MOD (triple_modifier, "triple", 6);
6396 break;
6397
6398#undef SINGLE_LETTER_MOD
6399#undef MULTI_LETTER_MOD
6400 }
6401
6402 return 0;
6403}
6404
6da3dd3a
RS
6405/* Return 1 if EVENT is a list whose elements are all integers or symbols.
6406 Such a list is not valid as an event,
6407 but it can be a Lucid-style event type list. */
6408
6409int
6410lucid_event_type_list_p (object)
6411 Lisp_Object object;
6412{
6413 Lisp_Object tail;
6414
6415 if (! CONSP (object))
6416 return 0;
902ae620
GM
6417
6418 if (EQ (XCAR (object), Qhelp_echo)
6419 || EQ (XCAR (object), Qvertical_line)
6420 || EQ (XCAR (object), Qmode_line)
6421 || EQ (XCAR (object), Qheader_line))
6422 return 0;
6da3dd3a 6423
7539e11f 6424 for (tail = object; CONSP (tail); tail = XCDR (tail))
6da3dd3a
RS
6425 {
6426 Lisp_Object elt;
7539e11f 6427 elt = XCAR (tail);
6da3dd3a
RS
6428 if (! (INTEGERP (elt) || SYMBOLP (elt)))
6429 return 0;
6430 }
6431
6432 return NILP (tail);
6433}
284f4730 6434\f
284f4730
JB
6435/* Store into *addr a value nonzero if terminal input chars are available.
6436 Serves the purpose of ioctl (0, FIONREAD, addr)
6437 but works even if FIONREAD does not exist.
d9d4c147
KH
6438 (In fact, this may actually read some input.)
6439
20057d52
JD
6440 If DO_TIMERS_NOW is nonzero, actually run timer events that are ripe.
6441 If FILTER_EVENTS is nonzero, ignore internal events (FOCUS_IN_EVENT). */
284f4730
JB
6442
6443static void
20057d52 6444get_filtered_input_pending (addr, do_timers_now, filter_events)
284f4730 6445 int *addr;
d9d4c147 6446 int do_timers_now;
20057d52 6447 int filter_events;
284f4730
JB
6448{
6449 /* First of all, have we already counted some input? */
20057d52
JD
6450 *addr = (!NILP (Vquit_flag)
6451 || readable_filtered_events (do_timers_now, filter_events));
284f4730
JB
6452
6453 /* If input is being read as it arrives, and we have none, there is none. */
6454 if (*addr > 0 || (interrupt_input && ! interrupts_deferred))
6455 return;
6548cf00 6456
284f4730
JB
6457 /* Try to read some input and see how much we get. */
6458 gobble_input (0);
20057d52
JD
6459 *addr = (!NILP (Vquit_flag)
6460 || readable_filtered_events (do_timers_now, filter_events));
6461}
6462
6463/* Store into *addr a value nonzero if terminal input chars are available.
6464 Serves the purpose of ioctl (0, FIONREAD, addr)
6465 but works even if FIONREAD does not exist.
6466 (In fact, this may actually read some input.)
6467
6468 If DO_TIMERS_NOW is nonzero, actually run timer events that are ripe. */
6469
6470static void
6471get_input_pending (addr, do_timers_now)
6472 int *addr;
6473 int do_timers_now;
6474{
6475 get_filtered_input_pending (addr, do_timers_now, 0);
284f4730
JB
6476}
6477
81931ba1 6478/* Interface to read_avail_input, blocking SIGIO or SIGALRM if necessary. */
284f4730 6479
07a59269 6480void
284f4730
JB
6481gobble_input (expected)
6482 int expected;
6483{
6484#ifndef VMS
6485#ifdef SIGIO
6486 if (interrupt_input)
6487 {
32676c08 6488 SIGMASKTYPE mask;
4f8aaa74 6489 mask = sigblock (sigmask (SIGIO));
284f4730 6490 read_avail_input (expected);
e065a56e 6491 sigsetmask (mask);
284f4730
JB
6492 }
6493 else
81931ba1 6494#ifdef POLL_FOR_INPUT
428a555e
KL
6495 /* XXX This condition was (read_socket_hook && !interrupt_input),
6496 but read_socket_hook is not global anymore. Let's pretend that
6497 it's always set. */
6498 if (!interrupt_input && poll_suppress_count == 0)
81931ba1
RS
6499 {
6500 SIGMASKTYPE mask;
4f8aaa74 6501 mask = sigblock (sigmask (SIGALRM));
81931ba1
RS
6502 read_avail_input (expected);
6503 sigsetmask (mask);
6504 }
6505 else
87485d6f 6506#endif
284f4730
JB
6507#endif
6508 read_avail_input (expected);
6509#endif
6510}
a8015ab5 6511
3b8f9651 6512/* Put a BUFFER_SWITCH_EVENT in the buffer
241ceaf7
RS
6513 so that read_key_sequence will notice the new current buffer. */
6514
07a59269 6515void
a8015ab5
KH
6516record_asynch_buffer_change ()
6517{
6518 struct input_event event;
a30f0615 6519 Lisp_Object tem;
1269a761 6520 EVENT_INIT (event);
a30f0615 6521
3b8f9651 6522 event.kind = BUFFER_SWITCH_EVENT;
a8015ab5 6523 event.frame_or_window = Qnil;
da8f7368 6524 event.arg = Qnil;
241ceaf7 6525
f65e6f7d 6526#ifdef subprocesses
a30f0615
RS
6527 /* We don't need a buffer-switch event unless Emacs is waiting for input.
6528 The purpose of the event is to make read_key_sequence look up the
6529 keymaps again. If we aren't in read_key_sequence, we don't need one,
6530 and the event could cause trouble by messing up (input-pending-p). */
6531 tem = Fwaiting_for_user_input_p ();
6532 if (NILP (tem))
6533 return;
f65e6f7d
RS
6534#else
6535 /* We never need these events if we have no asynchronous subprocesses. */
6536 return;
6537#endif
a30f0615 6538
241ceaf7
RS
6539 /* Make sure no interrupt happens while storing the event. */
6540#ifdef SIGIO
6541 if (interrupt_input)
6542 {
6543 SIGMASKTYPE mask;
4f8aaa74 6544 mask = sigblock (sigmask (SIGIO));
241ceaf7
RS
6545 kbd_buffer_store_event (&event);
6546 sigsetmask (mask);
6547 }
6548 else
6549#endif
6550 {
6551 stop_polling ();
6552 kbd_buffer_store_event (&event);
6553 start_polling ();
6554 }
a8015ab5 6555}
284f4730
JB
6556\f
6557#ifndef VMS
6558
6559/* Read any terminal input already buffered up by the system
6560 into the kbd_buffer, but do not wait.
6561
6562 EXPECTED should be nonzero if the caller knows there is some input.
6563
6564 Except on VMS, all input is read by this function.
6565 If interrupt_input is nonzero, this function MUST be called
6566 only when SIGIO is blocked.
6567
6568 Returns the number of keyboard chars read, or -1 meaning
6569 this is a bad time to try to read input. */
6570
6571static int
6572read_avail_input (expected)
6573 int expected;
6574{
6575 struct input_event buf[KBD_BUFFER_SIZE];
6576 register int i;
8f1ce423 6577 struct display *d;
7b00d185 6578 int nread = 0;
6548cf00 6579
1269a761
SM
6580 for (i = 0; i < KBD_BUFFER_SIZE; i++)
6581 EVENT_INIT (buf[i]);
6582
d448e982
KL
6583 d = display_list;
6584 while (d)
8f1ce423 6585 {
d448e982
KL
6586 struct display *next = d->next_display;
6587
8f1ce423
KL
6588 if (d->read_socket_hook)
6589 /* No need for FIONREAD or fcntl; just say don't wait. */
6590 nread = (*d->read_socket_hook) (d, buf, KBD_BUFFER_SIZE, expected);
daf01701 6591
d448e982
KL
6592 if (nread == -2)
6593 {
6594 /* The display device terminated; it should be closed. */
6595
6596 /* Kill Emacs if this was our last display. */
6597 if (! display_list->next_display)
6598 kill (getpid (), SIGHUP);
6599
6600 /* XXX Is calling delete_display safe here? It calls Fdelete_frame. */
6601 if (d->delete_display_hook)
6602 (*d->delete_display_hook) (d);
6603 else
6604 delete_display (d);
6605 }
6606 else if (nread > 0)
6607 {
6608 /* We've got input. */
6609 break;
6610 }
6611
6612 d = next;
8f1ce423 6613 }
428a555e 6614
8f1ce423
KL
6615 /* Scan the chars for C-g and store them in kbd_buffer. */
6616 for (i = 0; i < nread; i++)
284f4730 6617 {
8f1ce423
KL
6618 kbd_buffer_store_event (&buf[i]);
6619 /* Don't look at input that follows a C-g too closely.
6620 This reduces lossage due to autorepeat on C-g. */
6621 if (buf[i].kind == ASCII_KEYSTROKE_EVENT
6622 && buf[i].code == quit_char)
6623 break;
6624 }
6625
6626 return nread;
6627}
6628
6629/* This is the tty way of reading available input.
6630
6631 Note that each terminal device has its own `struct display' object,
6632 and so this function is called once for each individual termcap
6633 display. The first parameter indicates which device to read from. */
d448e982 6634
8f1ce423
KL
6635int
6636tty_read_avail_input (struct display *display,
6637 struct input_event *buf,
6638 int numchars, int expected)
6639{
6640 /* Using KBD_BUFFER_SIZE - 1 here avoids reading more than
6641 the kbd_buffer can really hold. That may prevent loss
6642 of characters on some systems when input is stuffed at us. */
6643 unsigned char cbuf[KBD_BUFFER_SIZE - 1];
6644 int n_to_read, i;
6645 struct tty_display_info *tty = display->display_info.tty;
6646 Lisp_Object frame;
6647 int nread = 0;
6648
6649 if (display->type != output_termcap)
6650 abort ();
6651
6652 /* XXX I think the following code should be moved to separate
6653 functions in system-dependent files. */
bc536d84 6654#ifdef WINDOWSNT
8f1ce423 6655 return 0;
bc536d84 6656#else /* not WINDOWSNT */
80e4aa30 6657#ifdef MSDOS
8f1ce423
KL
6658 n_to_read = dos_keysns ();
6659 if (n_to_read == 0)
6660 return 0;
6661
6662 cbuf[0] = dos_keyread ();
6663 nread = 1;
6664
c3a2738c 6665#else /* not MSDOS */
9628b887 6666
8f1ce423
KL
6667 if (! tty->term_initted)
6668 return 0;
fca177d4 6669
8f1ce423 6670 /* Determine how many characters we should *try* to read. */
284f4730 6671#ifdef FIONREAD
8f1ce423
KL
6672 /* Find out how much input is available. */
6673 if (ioctl (fileno (TTY_INPUT (tty)), FIONREAD, &n_to_read) < 0)
6674 {
6675 if (! noninteractive)
d448e982 6676 return -2; /* Close this display. */
8f1ce423 6677 else
d448e982 6678 n_to_read = 0;
8f1ce423
KL
6679 }
6680 if (n_to_read == 0)
6681 return 0;
6682 if (n_to_read > sizeof cbuf)
6683 n_to_read = sizeof cbuf;
284f4730 6684#else /* no FIONREAD */
c60ee5e7 6685#if defined (USG) || defined (DGUX) || defined(CYGWIN)
8f1ce423
KL
6686 /* Read some input if available, but don't wait. */
6687 n_to_read = sizeof cbuf;
6688 fcntl (fileno (TTY_INPUT (tty)), F_SETFL, O_NDELAY);
284f4730 6689#else
8f1ce423 6690 you lose;
284f4730
JB
6691#endif
6692#endif
8f1ce423
KL
6693
6694 /* Now read; for one reason or another, this will not block.
6695 NREAD is set to the number of chars read. */
6696 do
6697 {
6698 nread = emacs_read (fileno (TTY_INPUT (tty)), cbuf, n_to_read);
6699 /* POSIX infers that processes which are not in the session leader's
6700 process group won't get SIGHUP's at logout time. BSDI adheres to
6701 this part standard and returns -1 from read (0) with errno==EIO
6702 when the control tty is taken away.
6703 Jeffrey Honig <jch@bsdi.com> says this is generally safe. */
6704 if (nread == -1 && errno == EIO)
6705 {
d448e982 6706 return -2; /* Close this display. */
8f1ce423 6707 }
762f2b92 6708#if defined (AIX) && (! defined (aix386) && defined (_BSD))
8f1ce423
KL
6709 /* The kernel sometimes fails to deliver SIGHUP for ptys.
6710 This looks incorrect, but it isn't, because _BSD causes
6711 O_NDELAY to be defined in fcntl.h as O_NONBLOCK,
6712 and that causes a value other than 0 when there is no input. */
6713 if (nread == 0)
6714 {
d448e982 6715 return -2; /* Close this display. */
8f1ce423 6716 }
284f4730 6717#endif
8f1ce423
KL
6718 }
6719 while (
6720 /* We used to retry the read if it was interrupted.
6721 But this does the wrong thing when O_NDELAY causes
6722 an EAGAIN error. Does anybody know of a situation
6723 where a retry is actually needed? */
791587ee 6724#if 0
8f1ce423 6725 nread < 0 && (errno == EAGAIN
6aec06f5 6726#ifdef EFAULT
8f1ce423 6727 || errno == EFAULT
80e4aa30 6728#endif
284f4730 6729#ifdef EBADSLT
8f1ce423 6730 || errno == EBADSLT
284f4730 6731#endif
8f1ce423 6732 )
791587ee 6733#else
8f1ce423 6734 0
791587ee 6735#endif
8f1ce423
KL
6736 );
6737
284f4730 6738#ifndef FIONREAD
c60ee5e7 6739#if defined (USG) || defined (DGUX) || defined (CYGWIN)
8f1ce423 6740 fcntl (fileno (TTY_INPUT (tty)), F_SETFL, 0);
c60ee5e7 6741#endif /* USG or DGUX or CYGWIN */
284f4730 6742#endif /* no FIONREAD */
8f1ce423
KL
6743
6744 if (nread <= 0)
6745 return nread;
6746
9628b887
KL
6747#endif /* not MSDOS */
6748#endif /* not WINDOWSNT */
8f1ce423
KL
6749
6750 /* Select the frame corresponding to the active tty. Note that the
6751 value of selected_frame is not reliable here, redisplay tends to
6752 temporarily change it. */
6753 frame = tty->top_frame;
6754
284f4730
JB
6755 for (i = 0; i < nread; i++)
6756 {
8f1ce423
KL
6757 buf[i].kind = ASCII_KEYSTROKE_EVENT;
6758 buf[i].modifiers = 0;
6759 if (tty->meta_key == 1 && (cbuf[i] & 0x80))
6760 buf[i].modifiers = meta_modifier;
6761 if (tty->meta_key != 2)
6762 cbuf[i] &= ~0x80;
6763
6764 buf[i].code = cbuf[i];
6765 buf[i].frame_or_window = frame;
6766 buf[i].arg = Qnil;
284f4730
JB
6767 }
6768
6769 return nread;
6770}
8f1ce423 6771
284f4730
JB
6772#endif /* not VMS */
6773\f
b65c1b44
SM
6774void
6775handle_async_input ()
6776{
6777#ifdef BSD4_1
6778 extern int select_alarmed;
6779#endif
6780 interrupt_input_pending = 0;
6781
6782 while (1)
6783 {
6784 int nread;
6785 nread = read_avail_input (1);
6786 /* -1 means it's not ok to read the input now.
6787 UNBLOCK_INPUT will read it later; now, avoid infinite loop.
6788 0 means there was no keyboard input available. */
6789 if (nread <= 0)
6790 break;
6791
6792#ifdef BSD4_1
6793 select_alarmed = 1; /* Force the select emulator back to life */
6794#endif
6795 }
6796}
6797
284f4730
JB
6798#ifdef SIGIO /* for entire page */
6799/* Note SIGIO has been undef'd if FIONREAD is missing. */
6800
4216b545 6801static SIGTYPE
284f4730
JB
6802input_available_signal (signo)
6803 int signo;
6804{
6805 /* Must preserve main program's value of errno. */
6806 int old_errno = errno;
284f4730 6807
5970a8cb 6808#if defined (USG) && !defined (POSIX_SIGNALS)
284f4730
JB
6809 /* USG systems forget handlers when they are used;
6810 must reestablish each time */
6811 signal (signo, input_available_signal);
6812#endif /* USG */
6813
6814#ifdef BSD4_1
6815 sigisheld (SIGIO);
6816#endif
6817
ffd56f97
JB
6818 if (input_available_clear_time)
6819 EMACS_SET_SECS_USECS (*input_available_clear_time, 0, 0);
284f4730 6820
b65c1b44
SM
6821#ifdef SYNC_INPUT
6822 interrupt_input_pending = 1;
6823#else
6824 handle_async_input ();
284f4730 6825#endif
284f4730
JB
6826
6827#ifdef BSD4_1
6828 sigfree ();
6829#endif
6830 errno = old_errno;
6831}
6832#endif /* SIGIO */
ad163903
JB
6833
6834/* Send ourselves a SIGIO.
6835
6836 This function exists so that the UNBLOCK_INPUT macro in
6837 blockinput.h can have some way to take care of input we put off
6838 dealing with, without assuming that every file which uses
6839 UNBLOCK_INPUT also has #included the files necessary to get SIGIO. */
6840void
6841reinvoke_input_signal ()
6842{
df0f2ba1 6843#ifdef SIGIO
b65c1b44 6844 handle_async_input ();
ad163903
JB
6845#endif
6846}
6847
6848
284f4730 6849\f
318ab85c
SM
6850static void menu_bar_item P_ ((Lisp_Object, Lisp_Object, Lisp_Object, void*));
6851static Lisp_Object menu_bar_one_keymap_changed_items;
b7c49376
RS
6852
6853/* These variables hold the vector under construction within
6854 menu_bar_items and its subroutines, and the current index
6855 for storing into that vector. */
6856static Lisp_Object menu_bar_items_vector;
9343ab07 6857static int menu_bar_items_index;
5ec75a55 6858
b7c49376
RS
6859/* Return a vector of menu items for a menu bar, appropriate
6860 to the current buffer. Each item has three elements in the vector:
f5e09c8b 6861 KEY STRING MAPLIST.
b7c49376
RS
6862
6863 OLD is an old vector we can optionally reuse, or nil. */
5ec75a55
RS
6864
6865Lisp_Object
b7c49376
RS
6866menu_bar_items (old)
6867 Lisp_Object old;
5ec75a55
RS
6868{
6869 /* The number of keymaps we're scanning right now, and the number of
6870 keymaps we have allocated space for. */
6871 int nmaps;
6872
6873 /* maps[0..nmaps-1] are the prefix definitions of KEYBUF[0..t-1]
6874 in the current keymaps, or nil where it is not a prefix. */
6875 Lisp_Object *maps;
6876
aebfea68 6877 Lisp_Object def, tail;
5ec75a55
RS
6878
6879 Lisp_Object result;
6880
6881 int mapno;
47d319aa 6882 Lisp_Object oquit;
5ec75a55 6883
b7c49376
RS
6884 int i;
6885
6886 struct gcpro gcpro1;
6887
db60d856
JB
6888 /* In order to build the menus, we need to call the keymap
6889 accessors. They all call QUIT. But this function is called
6890 during redisplay, during which a quit is fatal. So inhibit
47d319aa
RS
6891 quitting while building the menus.
6892 We do this instead of specbind because (1) errors will clear it anyway
6893 and (2) this avoids risk of specpdl overflow. */
6894 oquit = Vinhibit_quit;
df0f2ba1 6895 Vinhibit_quit = Qt;
db60d856 6896
b7c49376
RS
6897 if (!NILP (old))
6898 menu_bar_items_vector = old;
6899 else
6900 menu_bar_items_vector = Fmake_vector (make_number (24), Qnil);
6901 menu_bar_items_index = 0;
6902
6903 GCPRO1 (menu_bar_items_vector);
6904
5ec75a55
RS
6905 /* Build our list of keymaps.
6906 If we recognize a function key and replace its escape sequence in
6907 keybuf with its symbol, or if the sequence starts with a mouse
6908 click and we need to switch buffers, we jump back here to rebuild
6909 the initial keymaps from the current buffer. */
df0f2ba1 6910 {
5ec75a55
RS
6911 Lisp_Object *tmaps;
6912
217258d5 6913 /* Should overriding-terminal-local-map and overriding-local-map apply? */
d0a49716 6914 if (!NILP (Voverriding_local_map_menu_flag))
9dd3131c 6915 {
217258d5
KH
6916 /* Yes, use them (if non-nil) as well as the global map. */
6917 maps = (Lisp_Object *) alloca (3 * sizeof (maps[0]));
6918 nmaps = 0;
6919 if (!NILP (current_kboard->Voverriding_terminal_local_map))
6920 maps[nmaps++] = current_kboard->Voverriding_terminal_local_map;
6921 if (!NILP (Voverriding_local_map))
6922 maps[nmaps++] = Voverriding_local_map;
9dd3131c
RS
6923 }
6924 else
6925 {
fd646341
KS
6926 /* No, so use major and minor mode keymaps and keymap property.
6927 Note that menu-bar bindings in the local-map and keymap
6928 properties may not work reliable, as they are only
6929 recognized when the menu-bar (or mode-line) is updated,
6930 which does not normally happen after every command. */
6931 Lisp_Object tem;
6932 int nminor;
6933 nminor = current_minor_maps (NULL, &tmaps);
6934 maps = (Lisp_Object *) alloca ((nminor + 3) * sizeof (maps[0]));
6935 nmaps = 0;
6936 if (tem = get_local_map (PT, current_buffer, Qkeymap), !NILP (tem))
6937 maps[nmaps++] = tem;
6938 bcopy (tmaps, (void *) (maps + nmaps), nminor * sizeof (maps[0]));
6939 nmaps += nminor;
6940 maps[nmaps++] = get_local_map (PT, current_buffer, Qlocal_map);
9dd3131c 6941 }
217258d5 6942 maps[nmaps++] = current_global_map;
5ec75a55
RS
6943 }
6944
6945 /* Look up in each map the dummy prefix key `menu-bar'. */
6946
6947 result = Qnil;
6948
e58aa385 6949 for (mapno = nmaps - 1; mapno >= 0; mapno--)
25126faa
GM
6950 if (!NILP (maps[mapno]))
6951 {
341a09cf
SM
6952 def = get_keymap (access_keymap (maps[mapno], Qmenu_bar, 1, 0, 1),
6953 0, 1);
02067692 6954 if (CONSP (def))
4216b545
SM
6955 {
6956 menu_bar_one_keymap_changed_items = Qnil;
6957 map_keymap (def, menu_bar_item, Qnil, NULL, 1);
6958 }
25126faa 6959 }
5ec75a55 6960
b7c49376
RS
6961 /* Move to the end those items that should be at the end. */
6962
7539e11f 6963 for (tail = Vmenu_bar_final_items; CONSP (tail); tail = XCDR (tail))
9f9c0e27 6964 {
b7c49376
RS
6965 int i;
6966 int end = menu_bar_items_index;
6967
35b3402f 6968 for (i = 0; i < end; i += 4)
7539e11f 6969 if (EQ (XCAR (tail), XVECTOR (menu_bar_items_vector)->contents[i]))
b7c49376 6970 {
35b3402f 6971 Lisp_Object tem0, tem1, tem2, tem3;
0301268e
RS
6972 /* Move the item at index I to the end,
6973 shifting all the others forward. */
6974 tem0 = XVECTOR (menu_bar_items_vector)->contents[i + 0];
6975 tem1 = XVECTOR (menu_bar_items_vector)->contents[i + 1];
6976 tem2 = XVECTOR (menu_bar_items_vector)->contents[i + 2];
35b3402f
RS
6977 tem3 = XVECTOR (menu_bar_items_vector)->contents[i + 3];
6978 if (end > i + 4)
6979 bcopy (&XVECTOR (menu_bar_items_vector)->contents[i + 4],
0301268e 6980 &XVECTOR (menu_bar_items_vector)->contents[i],
35b3402f
RS
6981 (end - i - 4) * sizeof (Lisp_Object));
6982 XVECTOR (menu_bar_items_vector)->contents[end - 4] = tem0;
6983 XVECTOR (menu_bar_items_vector)->contents[end - 3] = tem1;
6984 XVECTOR (menu_bar_items_vector)->contents[end - 2] = tem2;
6985 XVECTOR (menu_bar_items_vector)->contents[end - 1] = tem3;
0301268e 6986 break;
b7c49376
RS
6987 }
6988 }
9f9c0e27 6989
0c9071cd 6990 /* Add nil, nil, nil, nil at the end. */
b7c49376 6991 i = menu_bar_items_index;
35b3402f 6992 if (i + 4 > XVECTOR (menu_bar_items_vector)->size)
b7c49376
RS
6993 {
6994 Lisp_Object tem;
b7c49376
RS
6995 tem = Fmake_vector (make_number (2 * i), Qnil);
6996 bcopy (XVECTOR (menu_bar_items_vector)->contents,
6997 XVECTOR (tem)->contents, i * sizeof (Lisp_Object));
6998 menu_bar_items_vector = tem;
9f9c0e27 6999 }
b7c49376
RS
7000 /* Add this item. */
7001 XVECTOR (menu_bar_items_vector)->contents[i++] = Qnil;
7002 XVECTOR (menu_bar_items_vector)->contents[i++] = Qnil;
7003 XVECTOR (menu_bar_items_vector)->contents[i++] = Qnil;
35b3402f 7004 XVECTOR (menu_bar_items_vector)->contents[i++] = Qnil;
b7c49376 7005 menu_bar_items_index = i;
a73c5e29 7006
47d319aa 7007 Vinhibit_quit = oquit;
b7c49376
RS
7008 UNGCPRO;
7009 return menu_bar_items_vector;
5ec75a55
RS
7010}
7011\f
f5e09c8b
RS
7012/* Add one item to menu_bar_items_vector, for KEY, ITEM_STRING and DEF.
7013 If there's already an item for KEY, add this DEF to it. */
7014
e8886a1d
RS
7015Lisp_Object item_properties;
7016
b7c49376 7017static void
4216b545
SM
7018menu_bar_item (key, item, dummy1, dummy2)
7019 Lisp_Object key, item, dummy1;
7020 void *dummy2;
5ec75a55 7021{
e8886a1d 7022 struct gcpro gcpro1;
b7c49376 7023 int i;
759860a6 7024 Lisp_Object tem;
5ec75a55 7025
e8886a1d 7026 if (EQ (item, Qundefined))
e58aa385 7027 {
f5e09c8b 7028 /* If a map has an explicit `undefined' as definition,
e58aa385 7029 discard any previously made menu bar item. */
b7c49376 7030
35b3402f 7031 for (i = 0; i < menu_bar_items_index; i += 4)
b7c49376
RS
7032 if (EQ (key, XVECTOR (menu_bar_items_vector)->contents[i]))
7033 {
35b3402f
RS
7034 if (menu_bar_items_index > i + 4)
7035 bcopy (&XVECTOR (menu_bar_items_vector)->contents[i + 4],
b7c49376 7036 &XVECTOR (menu_bar_items_vector)->contents[i],
35b3402f
RS
7037 (menu_bar_items_index - i - 4) * sizeof (Lisp_Object));
7038 menu_bar_items_index -= 4;
b7c49376 7039 }
e58aa385
RS
7040 }
7041
759860a6
RS
7042 /* If this keymap has already contributed to this KEY,
7043 don't contribute to it a second time. */
7044 tem = Fmemq (key, menu_bar_one_keymap_changed_items);
9cd2ced7 7045 if (!NILP (tem) || NILP (item))
759860a6
RS
7046 return;
7047
7048 menu_bar_one_keymap_changed_items
7049 = Fcons (key, menu_bar_one_keymap_changed_items);
7050
9cd2ced7
SM
7051 /* We add to menu_bar_one_keymap_changed_items before doing the
7052 parse_menu_item, so that if it turns out it wasn't a menu item,
7053 it still correctly hides any further menu item. */
7054 GCPRO1 (key);
7055 i = parse_menu_item (item, 0, 1);
7056 UNGCPRO;
7057 if (!i)
7058 return;
7059
e8886a1d
RS
7060 item = XVECTOR (item_properties)->contents[ITEM_PROPERTY_DEF];
7061
f5e09c8b 7062 /* Find any existing item for this KEY. */
35b3402f 7063 for (i = 0; i < menu_bar_items_index; i += 4)
b7c49376
RS
7064 if (EQ (key, XVECTOR (menu_bar_items_vector)->contents[i]))
7065 break;
7066
f5e09c8b 7067 /* If we did not find this KEY, add it at the end. */
b7c49376
RS
7068 if (i == menu_bar_items_index)
7069 {
7070 /* If vector is too small, get a bigger one. */
35b3402f 7071 if (i + 4 > XVECTOR (menu_bar_items_vector)->size)
b7c49376
RS
7072 {
7073 Lisp_Object tem;
b7c49376
RS
7074 tem = Fmake_vector (make_number (2 * i), Qnil);
7075 bcopy (XVECTOR (menu_bar_items_vector)->contents,
7076 XVECTOR (tem)->contents, i * sizeof (Lisp_Object));
7077 menu_bar_items_vector = tem;
7078 }
e8886a1d 7079
b7c49376
RS
7080 /* Add this item. */
7081 XVECTOR (menu_bar_items_vector)->contents[i++] = key;
e8886a1d
RS
7082 XVECTOR (menu_bar_items_vector)->contents[i++]
7083 = XVECTOR (item_properties)->contents[ITEM_PROPERTY_NAME];
7084 XVECTOR (menu_bar_items_vector)->contents[i++] = Fcons (item, Qnil);
35b3402f 7085 XVECTOR (menu_bar_items_vector)->contents[i++] = make_number (0);
b7c49376
RS
7086 menu_bar_items_index = i;
7087 }
e8886a1d 7088 /* We did find an item for this KEY. Add ITEM to its list of maps. */
f5e09c8b
RS
7089 else
7090 {
7091 Lisp_Object old;
7092 old = XVECTOR (menu_bar_items_vector)->contents[i + 2];
4216b545
SM
7093 /* If the new and the old items are not both keymaps,
7094 the lookup will only find `item'. */
7095 item = Fcons (item, KEYMAPP (item) && KEYMAPP (XCAR (old)) ? old : Qnil);
7096 XVECTOR (menu_bar_items_vector)->contents[i + 2] = item;
f5e09c8b 7097 }
5ec75a55
RS
7098}
7099\f
e8886a1d
RS
7100 /* This is used as the handler when calling menu_item_eval_property. */
7101static Lisp_Object
7102menu_item_eval_property_1 (arg)
7103 Lisp_Object arg;
7104{
7105 /* If we got a quit from within the menu computation,
7106 quit all the way out of it. This takes care of C-] in the debugger. */
7539e11f 7107 if (CONSP (arg) && EQ (XCAR (arg), Qquit))
e8886a1d
RS
7108 Fsignal (Qquit, Qnil);
7109
7110 return Qnil;
7111}
7112
c60ee5e7 7113/* Evaluate an expression and return the result (or nil if something
e8886a1d 7114 went wrong). Used to evaluate dynamic parts of menu items. */
7ee32cda 7115Lisp_Object
e8886a1d
RS
7116menu_item_eval_property (sexpr)
7117 Lisp_Object sexpr;
7118{
aed13378 7119 int count = SPECPDL_INDEX ();
e8886a1d 7120 Lisp_Object val;
44e553a3 7121 specbind (Qinhibit_redisplay, Qt);
e8886a1d
RS
7122 val = internal_condition_case_1 (Feval, sexpr, Qerror,
7123 menu_item_eval_property_1);
44e553a3 7124 return unbind_to (count, val);
e8886a1d
RS
7125}
7126
7127/* This function parses a menu item and leaves the result in the
7128 vector item_properties.
7129 ITEM is a key binding, a possible menu item.
7130 If NOTREAL is nonzero, only check for equivalent key bindings, don't
7131 evaluate dynamic expressions in the menu item.
fd3613d7 7132 INMENUBAR is > 0 when this is considered for an entry in a menu bar
e8886a1d 7133 top level.
fd3613d7 7134 INMENUBAR is < 0 when this is considered for an entry in a keyboard menu.
e8886a1d
RS
7135 parse_menu_item returns true if the item is a menu item and false
7136 otherwise. */
7137
7138int
7139parse_menu_item (item, notreal, inmenubar)
7140 Lisp_Object item;
7141 int notreal, inmenubar;
7142{
adc1d5c8 7143 Lisp_Object def, tem, item_string, start;
07ba902e
RS
7144 Lisp_Object cachelist;
7145 Lisp_Object filter;
7146 Lisp_Object keyhint;
e8886a1d 7147 int i;
74c1de23
RS
7148 int newcache = 0;
7149
07ba902e
RS
7150 cachelist = Qnil;
7151 filter = Qnil;
7152 keyhint = Qnil;
7153
e8886a1d
RS
7154 if (!CONSP (item))
7155 return 0;
7156
e8886a1d
RS
7157 /* Create item_properties vector if necessary. */
7158 if (NILP (item_properties))
7159 item_properties
7160 = Fmake_vector (make_number (ITEM_PROPERTY_ENABLE + 1), Qnil);
7161
7162 /* Initialize optional entries. */
7163 for (i = ITEM_PROPERTY_DEF; i < ITEM_PROPERTY_ENABLE; i++)
3626fb1a
GM
7164 AREF (item_properties, i) = Qnil;
7165 AREF (item_properties, ITEM_PROPERTY_ENABLE) = Qt;
c60ee5e7 7166
e8886a1d 7167 /* Save the item here to protect it from GC. */
3626fb1a 7168 AREF (item_properties, ITEM_PROPERTY_ITEM) = item;
e8886a1d 7169
7539e11f 7170 item_string = XCAR (item);
e8886a1d
RS
7171
7172 start = item;
7539e11f 7173 item = XCDR (item);
e8886a1d
RS
7174 if (STRINGP (item_string))
7175 {
7176 /* Old format menu item. */
3626fb1a 7177 AREF (item_properties, ITEM_PROPERTY_NAME) = item_string;
e8886a1d
RS
7178
7179 /* Maybe help string. */
7539e11f 7180 if (CONSP (item) && STRINGP (XCAR (item)))
e8886a1d 7181 {
3626fb1a 7182 AREF (item_properties, ITEM_PROPERTY_HELP) = XCAR (item);
e8886a1d 7183 start = item;
7539e11f 7184 item = XCDR (item);
e8886a1d 7185 }
c60ee5e7 7186
31f84d03 7187 /* Maybe key binding cache. */
7539e11f
KR
7188 if (CONSP (item) && CONSP (XCAR (item))
7189 && (NILP (XCAR (XCAR (item)))
7190 || VECTORP (XCAR (XCAR (item)))))
e8886a1d 7191 {
7539e11f
KR
7192 cachelist = XCAR (item);
7193 item = XCDR (item);
e8886a1d 7194 }
c60ee5e7 7195
e8886a1d 7196 /* This is the real definition--the function to run. */
3626fb1a 7197 AREF (item_properties, ITEM_PROPERTY_DEF) = item;
e8886a1d
RS
7198
7199 /* Get enable property, if any. */
7200 if (SYMBOLP (item))
7201 {
7202 tem = Fget (item, Qmenu_enable);
7203 if (!NILP (tem))
3626fb1a 7204 AREF (item_properties, ITEM_PROPERTY_ENABLE) = tem;
e8886a1d
RS
7205 }
7206 }
7207 else if (EQ (item_string, Qmenu_item) && CONSP (item))
7208 {
7209 /* New format menu item. */
3626fb1a 7210 AREF (item_properties, ITEM_PROPERTY_NAME) = XCAR (item);
7539e11f 7211 start = XCDR (item);
e8886a1d
RS
7212 if (CONSP (start))
7213 {
7214 /* We have a real binding. */
3626fb1a 7215 AREF (item_properties, ITEM_PROPERTY_DEF) = XCAR (start);
e8886a1d 7216
7539e11f 7217 item = XCDR (start);
e8886a1d 7218 /* Is there a cache list with key equivalences. */
7539e11f 7219 if (CONSP (item) && CONSP (XCAR (item)))
e8886a1d 7220 {
7539e11f
KR
7221 cachelist = XCAR (item);
7222 item = XCDR (item);
e8886a1d
RS
7223 }
7224
7225 /* Parse properties. */
7539e11f 7226 while (CONSP (item) && CONSP (XCDR (item)))
e8886a1d 7227 {
7539e11f
KR
7228 tem = XCAR (item);
7229 item = XCDR (item);
e8886a1d
RS
7230
7231 if (EQ (tem, QCenable))
3626fb1a 7232 AREF (item_properties, ITEM_PROPERTY_ENABLE) = XCAR (item);
e8886a1d
RS
7233 else if (EQ (tem, QCvisible) && !notreal)
7234 {
7235 /* If got a visible property and that evaluates to nil
7236 then ignore this item. */
7539e11f 7237 tem = menu_item_eval_property (XCAR (item));
e8886a1d 7238 if (NILP (tem))
adc1d5c8 7239 return 0;
e8886a1d
RS
7240 }
7241 else if (EQ (tem, QChelp))
3626fb1a 7242 AREF (item_properties, ITEM_PROPERTY_HELP) = XCAR (item);
e8886a1d 7243 else if (EQ (tem, QCfilter))
74c1de23
RS
7244 filter = item;
7245 else if (EQ (tem, QCkey_sequence))
7246 {
7539e11f 7247 tem = XCAR (item);
74c1de23
RS
7248 if (NILP (cachelist)
7249 && (SYMBOLP (tem) || STRINGP (tem) || VECTORP (tem)))
7250 /* Be GC protected. Set keyhint to item instead of tem. */
7251 keyhint = item;
7252 }
7253 else if (EQ (tem, QCkeys))
7254 {
7539e11f 7255 tem = XCAR (item);
03cee6ae 7256 if (CONSP (tem) || (STRINGP (tem) && NILP (cachelist)))
3626fb1a 7257 AREF (item_properties, ITEM_PROPERTY_KEYEQ) = tem;
74c1de23 7258 }
7539e11f 7259 else if (EQ (tem, QCbutton) && CONSP (XCAR (item)))
e8886a1d 7260 {
74c1de23 7261 Lisp_Object type;
7539e11f
KR
7262 tem = XCAR (item);
7263 type = XCAR (tem);
e8886a1d
RS
7264 if (EQ (type, QCtoggle) || EQ (type, QCradio))
7265 {
3626fb1a 7266 AREF (item_properties, ITEM_PROPERTY_SELECTED)
7539e11f 7267 = XCDR (tem);
3626fb1a 7268 AREF (item_properties, ITEM_PROPERTY_TYPE)
e8886a1d
RS
7269 = type;
7270 }
7271 }
7539e11f 7272 item = XCDR (item);
e8886a1d
RS
7273 }
7274 }
7275 else if (inmenubar || !NILP (start))
adc1d5c8 7276 return 0;
e8886a1d
RS
7277 }
7278 else
adc1d5c8 7279 return 0; /* not a menu item */
e8886a1d
RS
7280
7281 /* If item string is not a string, evaluate it to get string.
7282 If we don't get a string, skip this item. */
3626fb1a 7283 item_string = AREF (item_properties, ITEM_PROPERTY_NAME);
e8886a1d
RS
7284 if (!(STRINGP (item_string) || notreal))
7285 {
7286 item_string = menu_item_eval_property (item_string);
7287 if (!STRINGP (item_string))
adc1d5c8 7288 return 0;
3626fb1a 7289 AREF (item_properties, ITEM_PROPERTY_NAME) = item_string;
e8886a1d 7290 }
c60ee5e7 7291
e8886a1d 7292 /* If got a filter apply it on definition. */
3626fb1a 7293 def = AREF (item_properties, ITEM_PROPERTY_DEF);
e8886a1d
RS
7294 if (!NILP (filter))
7295 {
7539e11f 7296 def = menu_item_eval_property (list2 (XCAR (filter),
c5c5a6f8
RS
7297 list2 (Qquote, def)));
7298
3626fb1a 7299 AREF (item_properties, ITEM_PROPERTY_DEF) = def;
e8886a1d
RS
7300 }
7301
e8886a1d 7302 /* Enable or disable selection of item. */
3626fb1a 7303 tem = AREF (item_properties, ITEM_PROPERTY_ENABLE);
e8886a1d
RS
7304 if (!EQ (tem, Qt))
7305 {
7306 if (notreal)
7307 tem = Qt;
7308 else
7309 tem = menu_item_eval_property (tem);
7310 if (inmenubar && NILP (tem))
adc1d5c8 7311 return 0; /* Ignore disabled items in menu bar. */
3626fb1a 7312 AREF (item_properties, ITEM_PROPERTY_ENABLE) = tem;
e8886a1d
RS
7313 }
7314
7189cad8
SM
7315 /* If we got no definition, this item is just unselectable text which
7316 is OK in a submenu but not in the menubar. */
7317 if (NILP (def))
7318 return (inmenubar ? 0 : 1);
c60ee5e7 7319
e8886a1d 7320 /* See if this is a separate pane or a submenu. */
3626fb1a 7321 def = AREF (item_properties, ITEM_PROPERTY_DEF);
02067692 7322 tem = get_keymap (def, 0, 1);
9ac425d1 7323 /* For a subkeymap, just record its details and exit. */
02067692 7324 if (CONSP (tem))
e8886a1d 7325 {
3626fb1a
GM
7326 AREF (item_properties, ITEM_PROPERTY_MAP) = tem;
7327 AREF (item_properties, ITEM_PROPERTY_DEF) = tem;
e8886a1d
RS
7328 return 1;
7329 }
c60ee5e7 7330
9ac425d1
RS
7331 /* At the top level in the menu bar, do likewise for commands also.
7332 The menu bar does not display equivalent key bindings anyway.
7333 ITEM_PROPERTY_DEF is already set up properly. */
7334 if (inmenubar > 0)
7335 return 1;
e8886a1d
RS
7336
7337 /* This is a command. See if there is an equivalent key binding. */
7338 if (NILP (cachelist))
7339 {
74c1de23 7340 /* We have to create a cachelist. */
e8886a1d 7341 CHECK_IMPURE (start);
f3fbd155 7342 XSETCDR (start, Fcons (Fcons (Qnil, Qnil), XCDR (start)));
7539e11f 7343 cachelist = XCAR (XCDR (start));
74c1de23 7344 newcache = 1;
3626fb1a 7345 tem = AREF (item_properties, ITEM_PROPERTY_KEYEQ);
74c1de23
RS
7346 if (!NILP (keyhint))
7347 {
f3fbd155 7348 XSETCAR (cachelist, XCAR (keyhint));
74c1de23
RS
7349 newcache = 0;
7350 }
7351 else if (STRINGP (tem))
7352 {
f3fbd155
KR
7353 XSETCDR (cachelist, Fsubstitute_command_keys (tem));
7354 XSETCAR (cachelist, Qt);
74c1de23
RS
7355 }
7356 }
c60ee5e7 7357
7539e11f 7358 tem = XCAR (cachelist);
74c1de23
RS
7359 if (!EQ (tem, Qt))
7360 {
7361 int chkcache = 0;
7362 Lisp_Object prefix;
7363
7364 if (!NILP (tem))
8b9940e6 7365 tem = Fkey_binding (tem, Qnil, Qnil);
74c1de23 7366
3626fb1a 7367 prefix = AREF (item_properties, ITEM_PROPERTY_KEYEQ);
74c1de23
RS
7368 if (CONSP (prefix))
7369 {
7539e11f
KR
7370 def = XCAR (prefix);
7371 prefix = XCDR (prefix);
74c1de23 7372 }
e8886a1d 7373 else
3626fb1a 7374 def = AREF (item_properties, ITEM_PROPERTY_DEF);
74c1de23 7375
3626fb1a
GM
7376 if (!update_menu_bindings)
7377 chkcache = 0;
7378 else if (NILP (XCAR (cachelist))) /* Have no saved key. */
74c1de23
RS
7379 {
7380 if (newcache /* Always check first time. */
7381 /* Should we check everything when precomputing key
7382 bindings? */
74c1de23
RS
7383 /* If something had no key binding before, don't recheck it
7384 because that is too slow--except if we have a list of
7385 rebound commands in Vdefine_key_rebound_commands, do
7386 recheck any command that appears in that list. */
7387 || (CONSP (Vdefine_key_rebound_commands)
7388 && !NILP (Fmemq (def, Vdefine_key_rebound_commands))))
7389 chkcache = 1;
7390 }
7391 /* We had a saved key. Is it still bound to the command? */
7392 else if (NILP (tem)
03cee6ae
GM
7393 || (!EQ (tem, def)
7394 /* If the command is an alias for another
7395 (such as lmenu.el set it up), check if the
7396 original command matches the cached command. */
7397 && !(SYMBOLP (def) && EQ (tem, XSYMBOL (def)->function))))
74c1de23
RS
7398 chkcache = 1; /* Need to recompute key binding. */
7399
7400 if (chkcache)
7401 {
7402 /* Recompute equivalent key binding. If the command is an alias
7403 for another (such as lmenu.el set it up), see if the original
7404 command name has equivalent keys. Otherwise look up the
7405 specified command itself. We don't try both, because that
7406 makes lmenu menus slow. */
3626fb1a
GM
7407 if (SYMBOLP (def)
7408 && SYMBOLP (XSYMBOL (def)->function)
74c1de23
RS
7409 && ! NILP (Fget (def, Qmenu_alias)))
7410 def = XSYMBOL (def)->function;
8b9940e6 7411 tem = Fwhere_is_internal (def, Qnil, Qt, Qnil, Qt);
f3fbd155 7412 XSETCAR (cachelist, tem);
74c1de23
RS
7413 if (NILP (tem))
7414 {
f3fbd155 7415 XSETCDR (cachelist, Qnil);
74c1de23
RS
7416 chkcache = 0;
7417 }
7418 }
7539e11f 7419 else if (!NILP (keyhint) && !NILP (XCAR (cachelist)))
74c1de23 7420 {
7539e11f 7421 tem = XCAR (cachelist);
74c1de23
RS
7422 chkcache = 1;
7423 }
7424
7425 newcache = chkcache;
7426 if (chkcache)
7427 {
7428 tem = Fkey_description (tem);
7429 if (CONSP (prefix))
7430 {
7539e11f
KR
7431 if (STRINGP (XCAR (prefix)))
7432 tem = concat2 (XCAR (prefix), tem);
7433 if (STRINGP (XCDR (prefix)))
7434 tem = concat2 (tem, XCDR (prefix));
74c1de23 7435 }
f3fbd155 7436 XSETCDR (cachelist, tem);
74c1de23
RS
7437 }
7438 }
7439
7539e11f 7440 tem = XCDR (cachelist);
74c1de23 7441 if (newcache && !NILP (tem))
e8886a1d 7442 {
74c1de23 7443 tem = concat3 (build_string (" ("), tem, build_string (")"));
f3fbd155 7444 XSETCDR (cachelist, tem);
e8886a1d
RS
7445 }
7446
7447 /* If we only want to precompute equivalent key bindings, stop here. */
7448 if (notreal)
adc1d5c8 7449 return 1;
e8886a1d
RS
7450
7451 /* If we have an equivalent key binding, use that. */
3626fb1a 7452 AREF (item_properties, ITEM_PROPERTY_KEYEQ) = tem;
adc1d5c8
RS
7453
7454 /* Include this when menu help is implemented.
7455 tem = XVECTOR (item_properties)->contents[ITEM_PROPERTY_HELP];
7456 if (!(NILP (tem) || STRINGP (tem)))
7457 {
7458 tem = menu_item_eval_property (tem);
7459 if (!STRINGP (tem))
7460 tem = Qnil;
7461 XVECTOR (item_properties)->contents[ITEM_PROPERTY_HELP] = tem;
7462 }
e8886a1d
RS
7463 */
7464
c60ee5e7 7465 /* Handle radio buttons or toggle boxes. */
3626fb1a 7466 tem = AREF (item_properties, ITEM_PROPERTY_SELECTED);
e8886a1d 7467 if (!NILP (tem))
3626fb1a 7468 AREF (item_properties, ITEM_PROPERTY_SELECTED)
e8886a1d
RS
7469 = menu_item_eval_property (tem);
7470
e8886a1d
RS
7471 return 1;
7472}
7ee32cda
GM
7473
7474
7475\f
7476/***********************************************************************
7477 Tool-bars
7478 ***********************************************************************/
7479
9ea173e8 7480/* A vector holding tool bar items while they are parsed in function
27fd22dc 7481 tool_bar_items. Each item occupies TOOL_BAR_ITEM_NSCLOTS elements
9ea173e8 7482 in the vector. */
7ee32cda 7483
9ea173e8 7484static Lisp_Object tool_bar_items_vector;
7ee32cda 7485
9ea173e8
GM
7486/* A vector holding the result of parse_tool_bar_item. Layout is like
7487 the one for a single item in tool_bar_items_vector. */
7ee32cda 7488
9ea173e8 7489static Lisp_Object tool_bar_item_properties;
7ee32cda 7490
9ea173e8 7491/* Next free index in tool_bar_items_vector. */
7ee32cda 7492
9ea173e8 7493static int ntool_bar_items;
7ee32cda 7494
9ea173e8 7495/* The symbols `tool-bar', and `:image'. */
7ee32cda 7496
9ea173e8 7497extern Lisp_Object Qtool_bar;
7ee32cda
GM
7498Lisp_Object QCimage;
7499
7500/* Function prototypes. */
7501
9ea173e8
GM
7502static void init_tool_bar_items P_ ((Lisp_Object));
7503static void process_tool_bar_item P_ ((Lisp_Object, Lisp_Object));
7504static int parse_tool_bar_item P_ ((Lisp_Object, Lisp_Object));
7505static void append_tool_bar_item P_ ((void));
7ee32cda
GM
7506
7507
9ea173e8 7508/* Return a vector of tool bar items for keymaps currently in effect.
7ee32cda 7509 Reuse vector REUSE if non-nil. Return in *NITEMS the number of
9ea173e8 7510 tool bar items found. */
7ee32cda
GM
7511
7512Lisp_Object
9ea173e8 7513tool_bar_items (reuse, nitems)
7ee32cda
GM
7514 Lisp_Object reuse;
7515 int *nitems;
7516{
7517 Lisp_Object *maps;
7518 int nmaps, i;
7519 Lisp_Object oquit;
7520 Lisp_Object *tmaps;
7ee32cda
GM
7521
7522 *nitems = 0;
7523
7524 /* In order to build the menus, we need to call the keymap
7525 accessors. They all call QUIT. But this function is called
7526 during redisplay, during which a quit is fatal. So inhibit
7527 quitting while building the menus. We do this instead of
7528 specbind because (1) errors will clear it anyway and (2) this
7529 avoids risk of specpdl overflow. */
7530 oquit = Vinhibit_quit;
7531 Vinhibit_quit = Qt;
c60ee5e7 7532
9ea173e8
GM
7533 /* Initialize tool_bar_items_vector and protect it from GC. */
7534 init_tool_bar_items (reuse);
7ee32cda
GM
7535
7536 /* Build list of keymaps in maps. Set nmaps to the number of maps
7537 to process. */
c60ee5e7 7538
7ee32cda
GM
7539 /* Should overriding-terminal-local-map and overriding-local-map apply? */
7540 if (!NILP (Voverriding_local_map_menu_flag))
7541 {
7542 /* Yes, use them (if non-nil) as well as the global map. */
7543 maps = (Lisp_Object *) alloca (3 * sizeof (maps[0]));
7544 nmaps = 0;
7545 if (!NILP (current_kboard->Voverriding_terminal_local_map))
7546 maps[nmaps++] = current_kboard->Voverriding_terminal_local_map;
7547 if (!NILP (Voverriding_local_map))
7548 maps[nmaps++] = Voverriding_local_map;
7549 }
7550 else
7551 {
fd646341
KS
7552 /* No, so use major and minor mode keymaps and keymap property.
7553 Note that tool-bar bindings in the local-map and keymap
7554 properties may not work reliable, as they are only
7555 recognized when the tool-bar (or mode-line) is updated,
7556 which does not normally happen after every command. */
7557 Lisp_Object tem;
7558 int nminor;
7559 nminor = current_minor_maps (NULL, &tmaps);
7560 maps = (Lisp_Object *) alloca ((nminor + 3) * sizeof (maps[0]));
7561 nmaps = 0;
7562 if (tem = get_local_map (PT, current_buffer, Qkeymap), !NILP (tem))
7563 maps[nmaps++] = tem;
7564 bcopy (tmaps, (void *) (maps + nmaps), nminor * sizeof (maps[0]));
7565 nmaps += nminor;
7566 maps[nmaps++] = get_local_map (PT, current_buffer, Qlocal_map);
7ee32cda
GM
7567 }
7568
7569 /* Add global keymap at the end. */
7570 maps[nmaps++] = current_global_map;
7571
7572 /* Process maps in reverse order and look up in each map the prefix
9ea173e8 7573 key `tool-bar'. */
7ee32cda
GM
7574 for (i = nmaps - 1; i >= 0; --i)
7575 if (!NILP (maps[i]))
7576 {
7577 Lisp_Object keymap;
db785038 7578
341a09cf 7579 keymap = get_keymap (access_keymap (maps[i], Qtool_bar, 1, 0, 1), 0, 1);
02067692 7580 if (CONSP (keymap))
7ee32cda
GM
7581 {
7582 Lisp_Object tail;
c60ee5e7 7583
7ee32cda 7584 /* KEYMAP is a list `(keymap (KEY . BINDING) ...)'. */
7539e11f 7585 for (tail = keymap; CONSP (tail); tail = XCDR (tail))
7ee32cda
GM
7586 {
7587 Lisp_Object keydef = XCAR (tail);
7588 if (CONSP (keydef))
9ea173e8 7589 process_tool_bar_item (XCAR (keydef), XCDR (keydef));
7ee32cda
GM
7590 }
7591 }
7592 }
7593
7594 Vinhibit_quit = oquit;
9ea173e8
GM
7595 *nitems = ntool_bar_items / TOOL_BAR_ITEM_NSLOTS;
7596 return tool_bar_items_vector;
7ee32cda
GM
7597}
7598
7599
7600/* Process the definition of KEY which is DEF. */
7601
7602static void
9ea173e8 7603process_tool_bar_item (key, def)
7ee32cda
GM
7604 Lisp_Object key, def;
7605{
7606 int i;
7607 extern Lisp_Object Qundefined;
7608 struct gcpro gcpro1, gcpro2;
7609
9ea173e8 7610 /* Protect KEY and DEF from GC because parse_tool_bar_item may call
7ee32cda
GM
7611 eval. */
7612 GCPRO2 (key, def);
7613
7614 if (EQ (def, Qundefined))
7615 {
7616 /* If a map has an explicit `undefined' as definition,
7617 discard any previously made item. */
9ea173e8 7618 for (i = 0; i < ntool_bar_items; i += TOOL_BAR_ITEM_NSLOTS)
7ee32cda 7619 {
9ea173e8 7620 Lisp_Object *v = XVECTOR (tool_bar_items_vector)->contents + i;
c60ee5e7 7621
9ea173e8 7622 if (EQ (key, v[TOOL_BAR_ITEM_KEY]))
7ee32cda 7623 {
9ea173e8
GM
7624 if (ntool_bar_items > i + TOOL_BAR_ITEM_NSLOTS)
7625 bcopy (v + TOOL_BAR_ITEM_NSLOTS, v,
7626 ((ntool_bar_items - i - TOOL_BAR_ITEM_NSLOTS)
7ee32cda 7627 * sizeof (Lisp_Object)));
9ea173e8 7628 ntool_bar_items -= TOOL_BAR_ITEM_NSLOTS;
7ee32cda
GM
7629 break;
7630 }
7631 }
7632 }
9ea173e8
GM
7633 else if (parse_tool_bar_item (key, def))
7634 /* Append a new tool bar item to tool_bar_items_vector. Accept
7ee32cda 7635 more than one definition for the same key. */
9ea173e8 7636 append_tool_bar_item ();
7ee32cda
GM
7637
7638 UNGCPRO;
7639}
7640
7641
9ea173e8
GM
7642/* Parse a tool bar item specification ITEM for key KEY and return the
7643 result in tool_bar_item_properties. Value is zero if ITEM is
7ee32cda
GM
7644 invalid.
7645
7646 ITEM is a list `(menu-item CAPTION BINDING PROPS...)'.
c60ee5e7 7647
7ee32cda
GM
7648 CAPTION is the caption of the item, If it's not a string, it is
7649 evaluated to get a string.
c60ee5e7 7650
9ea173e8 7651 BINDING is the tool bar item's binding. Tool-bar items with keymaps
7ee32cda
GM
7652 as binding are currently ignored.
7653
7654 The following properties are recognized:
7655
7656 - `:enable FORM'.
c60ee5e7 7657
9ea173e8
GM
7658 FORM is evaluated and specifies whether the tool bar item is
7659 enabled or disabled.
c60ee5e7 7660
7ee32cda 7661 - `:visible FORM'
c60ee5e7 7662
9ea173e8 7663 FORM is evaluated and specifies whether the tool bar item is visible.
c60ee5e7 7664
7ee32cda
GM
7665 - `:filter FUNCTION'
7666
7667 FUNCTION is invoked with one parameter `(quote BINDING)'. Its
7668 result is stored as the new binding.
c60ee5e7 7669
7ee32cda
GM
7670 - `:button (TYPE SELECTED)'
7671
7672 TYPE must be one of `:radio' or `:toggle'. SELECTED is evaluated
7673 and specifies whether the button is selected (pressed) or not.
c60ee5e7 7674
7ee32cda
GM
7675 - `:image IMAGES'
7676
7677 IMAGES is either a single image specification or a vector of four
9ea173e8 7678 image specifications. See enum tool_bar_item_images.
c60ee5e7 7679
7ee32cda 7680 - `:help HELP-STRING'.
c60ee5e7 7681
9ea173e8 7682 Gives a help string to display for the tool bar item. */
7ee32cda
GM
7683
7684static int
9ea173e8 7685parse_tool_bar_item (key, item)
7ee32cda
GM
7686 Lisp_Object key, item;
7687{
9ea173e8
GM
7688 /* Access slot with index IDX of vector tool_bar_item_properties. */
7689#define PROP(IDX) XVECTOR (tool_bar_item_properties)->contents[IDX]
7ee32cda
GM
7690
7691 Lisp_Object filter = Qnil;
7692 Lisp_Object caption;
7ee32cda 7693 int i;
7ee32cda 7694
8c907a56
GM
7695 /* Defininition looks like `(menu-item CAPTION BINDING PROPS...)'.
7696 Rule out items that aren't lists, don't start with
7697 `menu-item' or whose rest following `tool-bar-item' is not a
7ee32cda
GM
7698 list. */
7699 if (!CONSP (item)
7700 || !EQ (XCAR (item), Qmenu_item)
7701 || (item = XCDR (item),
7702 !CONSP (item)))
7703 return 0;
7704
9ea173e8 7705 /* Create tool_bar_item_properties vector if necessary. Reset it to
7ee32cda 7706 defaults. */
9ea173e8 7707 if (VECTORP (tool_bar_item_properties))
7ee32cda 7708 {
9ea173e8 7709 for (i = 0; i < TOOL_BAR_ITEM_NSLOTS; ++i)
7ee32cda
GM
7710 PROP (i) = Qnil;
7711 }
7712 else
9ea173e8
GM
7713 tool_bar_item_properties
7714 = Fmake_vector (make_number (TOOL_BAR_ITEM_NSLOTS), Qnil);
c60ee5e7 7715
7ee32cda 7716 /* Set defaults. */
9ea173e8
GM
7717 PROP (TOOL_BAR_ITEM_KEY) = key;
7718 PROP (TOOL_BAR_ITEM_ENABLED_P) = Qt;
c60ee5e7 7719
7ee32cda
GM
7720 /* Get the caption of the item. If the caption is not a string,
7721 evaluate it to get a string. If we don't get a string, skip this
7722 item. */
7723 caption = XCAR (item);
7724 if (!STRINGP (caption))
7725 {
7726 caption = menu_item_eval_property (caption);
7727 if (!STRINGP (caption))
7728 return 0;
7729 }
9ea173e8 7730 PROP (TOOL_BAR_ITEM_CAPTION) = caption;
7ee32cda
GM
7731
7732 /* Give up if rest following the caption is not a list. */
7733 item = XCDR (item);
7734 if (!CONSP (item))
7735 return 0;
7736
7737 /* Store the binding. */
9ea173e8 7738 PROP (TOOL_BAR_ITEM_BINDING) = XCAR (item);
7ee32cda
GM
7739 item = XCDR (item);
7740
8c907a56
GM
7741 /* Ignore cached key binding, if any. */
7742 if (CONSP (item) && CONSP (XCAR (item)))
7743 item = XCDR (item);
7744
7ee32cda
GM
7745 /* Process the rest of the properties. */
7746 for (; CONSP (item) && CONSP (XCDR (item)); item = XCDR (XCDR (item)))
7747 {
7748 Lisp_Object key, value;
7749
7750 key = XCAR (item);
7751 value = XCAR (XCDR (item));
7752
7753 if (EQ (key, QCenable))
7754 /* `:enable FORM'. */
9ea173e8 7755 PROP (TOOL_BAR_ITEM_ENABLED_P) = value;
7ee32cda
GM
7756 else if (EQ (key, QCvisible))
7757 {
7758 /* `:visible FORM'. If got a visible property and that
7759 evaluates to nil then ignore this item. */
7760 if (NILP (menu_item_eval_property (value)))
7761 return 0;
7762 }
7763 else if (EQ (key, QChelp))
7764 /* `:help HELP-STRING'. */
9ea173e8 7765 PROP (TOOL_BAR_ITEM_HELP) = value;
7ee32cda
GM
7766 else if (EQ (key, QCfilter))
7767 /* ':filter FORM'. */
7768 filter = value;
7769 else if (EQ (key, QCbutton) && CONSP (value))
7770 {
7771 /* `:button (TYPE . SELECTED)'. */
7772 Lisp_Object type, selected;
7773
7774 type = XCAR (value);
7775 selected = XCDR (value);
7776 if (EQ (type, QCtoggle) || EQ (type, QCradio))
7777 {
9ea173e8
GM
7778 PROP (TOOL_BAR_ITEM_SELECTED_P) = selected;
7779 PROP (TOOL_BAR_ITEM_TYPE) = type;
7ee32cda
GM
7780 }
7781 }
7782 else if (EQ (key, QCimage)
7783 && (CONSP (value)
7784 || (VECTORP (value) && XVECTOR (value)->size == 4)))
7785 /* Value is either a single image specification or a vector
27fd22dc 7786 of 4 such specifications for the different button states. */
9ea173e8 7787 PROP (TOOL_BAR_ITEM_IMAGES) = value;
7ee32cda
GM
7788 }
7789
7790 /* If got a filter apply it on binding. */
7791 if (!NILP (filter))
9ea173e8 7792 PROP (TOOL_BAR_ITEM_BINDING)
7ee32cda
GM
7793 = menu_item_eval_property (list2 (filter,
7794 list2 (Qquote,
9ea173e8 7795 PROP (TOOL_BAR_ITEM_BINDING))));
7ee32cda
GM
7796
7797 /* See if the binding is a keymap. Give up if it is. */
02067692 7798 if (CONSP (get_keymap (PROP (TOOL_BAR_ITEM_BINDING), 0, 1)))
7ee32cda
GM
7799 return 0;
7800
7801 /* Enable or disable selection of item. */
9ea173e8
GM
7802 if (!EQ (PROP (TOOL_BAR_ITEM_ENABLED_P), Qt))
7803 PROP (TOOL_BAR_ITEM_ENABLED_P)
7804 = menu_item_eval_property (PROP (TOOL_BAR_ITEM_ENABLED_P));
7ee32cda 7805
c60ee5e7 7806 /* Handle radio buttons or toggle boxes. */
9ea173e8
GM
7807 if (!NILP (PROP (TOOL_BAR_ITEM_SELECTED_P)))
7808 PROP (TOOL_BAR_ITEM_SELECTED_P)
7809 = menu_item_eval_property (PROP (TOOL_BAR_ITEM_SELECTED_P));
7ee32cda
GM
7810
7811 return 1;
c60ee5e7 7812
7ee32cda
GM
7813#undef PROP
7814}
7815
7816
9ea173e8
GM
7817/* Initialize tool_bar_items_vector. REUSE, if non-nil, is a vector
7818 that can be reused. */
7ee32cda
GM
7819
7820static void
9ea173e8 7821init_tool_bar_items (reuse)
7ee32cda
GM
7822 Lisp_Object reuse;
7823{
7824 if (VECTORP (reuse))
9ea173e8 7825 tool_bar_items_vector = reuse;
7ee32cda 7826 else
9ea173e8
GM
7827 tool_bar_items_vector = Fmake_vector (make_number (64), Qnil);
7828 ntool_bar_items = 0;
7ee32cda
GM
7829}
7830
7831
9ea173e8
GM
7832/* Append parsed tool bar item properties from
7833 tool_bar_item_properties */
7ee32cda
GM
7834
7835static void
9ea173e8 7836append_tool_bar_item ()
7ee32cda
GM
7837{
7838 Lisp_Object *to, *from;
c60ee5e7 7839
9ea173e8
GM
7840 /* Enlarge tool_bar_items_vector if necessary. */
7841 if (ntool_bar_items + TOOL_BAR_ITEM_NSLOTS
7842 >= XVECTOR (tool_bar_items_vector)->size)
7ee32cda
GM
7843 {
7844 Lisp_Object new_vector;
9ea173e8 7845 int old_size = XVECTOR (tool_bar_items_vector)->size;
7ee32cda
GM
7846
7847 new_vector = Fmake_vector (make_number (2 * old_size), Qnil);
9ea173e8 7848 bcopy (XVECTOR (tool_bar_items_vector)->contents,
7ee32cda
GM
7849 XVECTOR (new_vector)->contents,
7850 old_size * sizeof (Lisp_Object));
9ea173e8 7851 tool_bar_items_vector = new_vector;
7ee32cda
GM
7852 }
7853
9ea173e8
GM
7854 /* Append entries from tool_bar_item_properties to the end of
7855 tool_bar_items_vector. */
7856 to = XVECTOR (tool_bar_items_vector)->contents + ntool_bar_items;
7857 from = XVECTOR (tool_bar_item_properties)->contents;
7858 bcopy (from, to, TOOL_BAR_ITEM_NSLOTS * sizeof *to);
7859 ntool_bar_items += TOOL_BAR_ITEM_NSLOTS;
7ee32cda
GM
7860}
7861
7862
7863
7864
e8886a1d 7865\f
dcc408a0
RS
7866/* Read a character using menus based on maps in the array MAPS.
7867 NMAPS is the length of MAPS. Return nil if there are no menus in the maps.
7868 Return t if we displayed a menu but the user rejected it.
7d6de002
RS
7869
7870 PREV_EVENT is the previous input event, or nil if we are reading
7871 the first event of a key sequence.
7872
83d68044 7873 If USED_MOUSE_MENU is non-null, then we set *USED_MOUSE_MENU to 1
6569cc8d 7874 if we used a mouse menu to read the input, or zero otherwise. If
83d68044 7875 USED_MOUSE_MENU is null, we don't dereference it.
284f4730
JB
7876
7877 The prompting is done based on the prompt-string of the map
df0f2ba1 7878 and the strings associated with various map elements.
8150596a
RS
7879
7880 This can be done with X menus or with menus put in the minibuf.
7881 These are done in different ways, depending on how the input will be read.
7882 Menus using X are done after auto-saving in read-char, getting the input
7883 event from Fx_popup_menu; menus using the minibuf use read_char recursively
7884 and do auto-saving in the inner call of read_char. */
284f4730 7885
7617111f 7886static Lisp_Object
8150596a 7887read_char_x_menu_prompt (nmaps, maps, prev_event, used_mouse_menu)
7d6de002
RS
7888 int nmaps;
7889 Lisp_Object *maps;
7890 Lisp_Object prev_event;
7891 int *used_mouse_menu;
284f4730 7892{
7d6de002 7893 int mapno;
14e40288 7894 register Lisp_Object name = Qnil;
7d6de002 7895
6569cc8d
JB
7896 if (used_mouse_menu)
7897 *used_mouse_menu = 0;
284f4730
JB
7898
7899 /* Use local over global Menu maps */
7900
7d6de002
RS
7901 if (! menu_prompting)
7902 return Qnil;
7903
03361bcc
RS
7904 /* Optionally disregard all but the global map. */
7905 if (inhibit_local_menu_bar_menus)
7906 {
7907 maps += (nmaps - 1);
7908 nmaps = 1;
7909 }
7910
7d6de002
RS
7911 /* Get the menu name from the first map that has one (a prompt string). */
7912 for (mapno = 0; mapno < nmaps; mapno++)
7913 {
bdb7aa47 7914 name = Fkeymap_prompt (maps[mapno]);
7d6de002
RS
7915 if (!NILP (name))
7916 break;
7917 }
284f4730 7918
7d6de002 7919 /* If we don't have any menus, just read a character normally. */
fa113341 7920 if (!STRINGP (name))
7d6de002
RS
7921 return Qnil;
7922
1f5b1641 7923#ifdef HAVE_MENUS
7d6de002
RS
7924 /* If we got to this point via a mouse click,
7925 use a real menu for mouse selection. */
5a8d99e0 7926 if (EVENT_HAS_PARAMETERS (prev_event)
7539e11f
KR
7927 && !EQ (XCAR (prev_event), Qmenu_bar)
7928 && !EQ (XCAR (prev_event), Qtool_bar))
7d6de002
RS
7929 {
7930 /* Display the menu and get the selection. */
7931 Lisp_Object *realmaps
7932 = (Lisp_Object *) alloca (nmaps * sizeof (Lisp_Object));
7933 Lisp_Object value;
7934 int nmaps1 = 0;
7935
7936 /* Use the maps that are not nil. */
7937 for (mapno = 0; mapno < nmaps; mapno++)
7938 if (!NILP (maps[mapno]))
7939 realmaps[nmaps1++] = maps[mapno];
7940
7941 value = Fx_popup_menu (prev_event, Flist (nmaps1, realmaps));
663258f2
JB
7942 if (CONSP (value))
7943 {
68f297c5
RS
7944 Lisp_Object tem;
7945
7539e11f 7946 record_menu_key (XCAR (value));
8eb4d8ef 7947
68f297c5
RS
7948 /* If we got multiple events, unread all but
7949 the first.
7950 There is no way to prevent those unread events
7951 from showing up later in last_nonmenu_event.
7952 So turn symbol and integer events into lists,
7953 to indicate that they came from a mouse menu,
7954 so that when present in last_nonmenu_event
7955 they won't confuse things. */
f4e05d97 7956 for (tem = XCDR (value); !NILP (tem); tem = XCDR (tem))
8eb4d8ef 7957 {
7539e11f
KR
7958 record_menu_key (XCAR (tem));
7959 if (SYMBOLP (XCAR (tem))
7960 || INTEGERP (XCAR (tem)))
f3fbd155 7961 XSETCAR (tem, Fcons (XCAR (tem), Qdisabled));
8eb4d8ef 7962 }
68f297c5 7963
663258f2
JB
7964 /* If we got more than one event, put all but the first
7965 onto this list to be read later.
7966 Return just the first event now. */
24597608 7967 Vunread_command_events
7539e11f
KR
7968 = nconc2 (XCDR (value), Vunread_command_events);
7969 value = XCAR (value);
663258f2 7970 }
1c90c381 7971 else if (NILP (value))
dcc408a0 7972 value = Qt;
6569cc8d
JB
7973 if (used_mouse_menu)
7974 *used_mouse_menu = 1;
7d6de002
RS
7975 return value;
7976 }
1f5b1641 7977#endif /* HAVE_MENUS */
8150596a
RS
7978 return Qnil ;
7979}
7980
af2b7cc9
KS
7981/* Buffer in use so far for the minibuf prompts for menu keymaps.
7982 We make this bigger when necessary, and never free it. */
7983static char *read_char_minibuf_menu_text;
7984/* Size of that buffer. */
7985static int read_char_minibuf_menu_width;
7986
8150596a 7987static Lisp_Object
24597608 7988read_char_minibuf_menu_prompt (commandflag, nmaps, maps)
8150596a
RS
7989 int commandflag ;
7990 int nmaps;
7991 Lisp_Object *maps;
7992{
7993 int mapno;
7994 register Lisp_Object name;
af2b7cc9 7995 int nlength;
14e40288 7996 /* FIXME: Use the minibuffer's frame width. */
2cdbe73e 7997 int width = FRAME_COLS (SELECTED_FRAME ()) - 4;
8150596a 7998 int idx = -1;
af2b7cc9 7999 int nobindings = 1;
8150596a 8000 Lisp_Object rest, vector;
af2b7cc9 8001 char *menu;
8150596a 8002
8c907a56 8003 vector = Qnil;
7189cad8 8004 name = Qnil;
8c907a56 8005
8150596a
RS
8006 if (! menu_prompting)
8007 return Qnil;
8008
af2b7cc9
KS
8009 /* Make sure we have a big enough buffer for the menu text. */
8010 if (read_char_minibuf_menu_text == 0)
8011 {
8012 read_char_minibuf_menu_width = width + 4;
8013 read_char_minibuf_menu_text = (char *) xmalloc (width + 4);
8014 }
8015 else if (width + 4 > read_char_minibuf_menu_width)
8016 {
8017 read_char_minibuf_menu_width = width + 4;
8018 read_char_minibuf_menu_text
8019 = (char *) xrealloc (read_char_minibuf_menu_text, width + 4);
8020 }
8021 menu = read_char_minibuf_menu_text;
8022
8150596a
RS
8023 /* Get the menu name from the first map that has one (a prompt string). */
8024 for (mapno = 0; mapno < nmaps; mapno++)
8025 {
bdb7aa47 8026 name = Fkeymap_prompt (maps[mapno]);
8150596a
RS
8027 if (!NILP (name))
8028 break;
8029 }
8030
8031 /* If we don't have any menus, just read a character normally. */
fa113341 8032 if (!STRINGP (name))
8150596a 8033 return Qnil;
284f4730 8034
af2b7cc9 8035 /* Prompt string always starts with map's prompt, and a space. */
d5db4077
KR
8036 strcpy (menu, SDATA (name));
8037 nlength = SBYTES (name);
af2b7cc9
KS
8038 menu[nlength++] = ':';
8039 menu[nlength++] = ' ';
8040 menu[nlength] = 0;
8041
7d6de002
RS
8042 /* Start prompting at start of first map. */
8043 mapno = 0;
8044 rest = maps[mapno];
284f4730 8045
af2b7cc9
KS
8046 /* Present the documented bindings, a line at a time. */
8047 while (1)
284f4730 8048 {
af2b7cc9
KS
8049 int notfirst = 0;
8050 int i = nlength;
8051 Lisp_Object obj;
8052 int ch;
8053 Lisp_Object orig_defn_macro;
284f4730 8054
af2b7cc9
KS
8055 /* Loop over elements of map. */
8056 while (i < width)
284f4730 8057 {
af2b7cc9 8058 Lisp_Object elt;
284f4730 8059
af2b7cc9
KS
8060 /* If reached end of map, start at beginning of next map. */
8061 if (NILP (rest))
8062 {
8063 mapno++;
8064 /* At end of last map, wrap around to first map if just starting,
8065 or end this line if already have something on it. */
8066 if (mapno == nmaps)
8067 {
8068 mapno = 0;
8069 if (notfirst || nobindings) break;
8070 }
8071 rest = maps[mapno];
8072 }
7d6de002 8073
af2b7cc9
KS
8074 /* Look at the next element of the map. */
8075 if (idx >= 0)
8076 elt = XVECTOR (vector)->contents[idx];
8077 else
8078 elt = Fcar_safe (rest);
7d6de002 8079
af2b7cc9 8080 if (idx < 0 && VECTORP (elt))
284f4730 8081 {
af2b7cc9
KS
8082 /* If we found a dense table in the keymap,
8083 advanced past it, but start scanning its contents. */
8084 rest = Fcdr_safe (rest);
8085 vector = elt;
8086 idx = 0;
284f4730 8087 }
7d6de002
RS
8088 else
8089 {
af2b7cc9
KS
8090 /* An ordinary element. */
8091 Lisp_Object event, tem;
7d6de002 8092
af2b7cc9
KS
8093 if (idx < 0)
8094 {
8095 event = Fcar_safe (elt); /* alist */
8096 elt = Fcdr_safe (elt);
8097 }
8098 else
8099 {
8100 XSETINT (event, idx); /* vector */
8101 }
284f4730 8102
af2b7cc9
KS
8103 /* Ignore the element if it has no prompt string. */
8104 if (INTEGERP (event) && parse_menu_item (elt, 0, -1))
8105 {
8106 /* 1 if the char to type matches the string. */
8107 int char_matches;
8108 Lisp_Object upcased_event, downcased_event;
8109 Lisp_Object desc = Qnil;
8110 Lisp_Object s
8111 = XVECTOR (item_properties)->contents[ITEM_PROPERTY_NAME];
8112
8113 upcased_event = Fupcase (event);
8114 downcased_event = Fdowncase (event);
d5db4077
KR
8115 char_matches = (XINT (upcased_event) == SREF (s, 0)
8116 || XINT (downcased_event) == SREF (s, 0));
af2b7cc9
KS
8117 if (! char_matches)
8118 desc = Fsingle_key_description (event, Qnil);
8119
8120#if 0 /* It is redundant to list the equivalent key bindings because
8121 the prefix is what the user has already typed. */
8122 tem
8123 = XVECTOR (item_properties)->contents[ITEM_PROPERTY_KEYEQ];
8124 if (!NILP (tem))
8125 /* Insert equivalent keybinding. */
8126 s = concat2 (s, tem);
8127#endif
8128 tem
8129 = XVECTOR (item_properties)->contents[ITEM_PROPERTY_TYPE];
8130 if (EQ (tem, QCradio) || EQ (tem, QCtoggle))
8131 {
8132 /* Insert button prefix. */
8133 Lisp_Object selected
8134 = XVECTOR (item_properties)->contents[ITEM_PROPERTY_SELECTED];
8135 if (EQ (tem, QCradio))
8136 tem = build_string (NILP (selected) ? "(*) " : "( ) ");
8137 else
8138 tem = build_string (NILP (selected) ? "[X] " : "[ ] ");
8139 s = concat2 (tem, s);
8140 }
c60ee5e7 8141
af2b7cc9
KS
8142
8143 /* If we have room for the prompt string, add it to this line.
8144 If this is the first on the line, always add it. */
d5db4077
KR
8145 if ((SCHARS (s) + i + 2
8146 + (char_matches ? 0 : SCHARS (desc) + 3))
af2b7cc9
KS
8147 < width
8148 || !notfirst)
8149 {
8150 int thiswidth;
8151
8152 /* Punctuate between strings. */
8153 if (notfirst)
8154 {
8155 strcpy (menu + i, ", ");
8156 i += 2;
8157 }
8158 notfirst = 1;
8159 nobindings = 0 ;
8160
8161 /* If the char to type doesn't match the string's
8162 first char, explicitly show what char to type. */
8163 if (! char_matches)
8164 {
8165 /* Add as much of string as fits. */
d5db4077 8166 thiswidth = SCHARS (desc);
af2b7cc9
KS
8167 if (thiswidth + i > width)
8168 thiswidth = width - i;
d5db4077 8169 bcopy (SDATA (desc), menu + i, thiswidth);
af2b7cc9
KS
8170 i += thiswidth;
8171 strcpy (menu + i, " = ");
8172 i += 3;
8173 }
8174
8175 /* Add as much of string as fits. */
d5db4077 8176 thiswidth = SCHARS (s);
af2b7cc9
KS
8177 if (thiswidth + i > width)
8178 thiswidth = width - i;
d5db4077 8179 bcopy (SDATA (s), menu + i, thiswidth);
af2b7cc9
KS
8180 i += thiswidth;
8181 menu[i] = 0;
8182 }
8183 else
8184 {
8185 /* If this element does not fit, end the line now,
8186 and save the element for the next line. */
8187 strcpy (menu + i, "...");
8188 break;
8189 }
8190 }
8191
8192 /* Move past this element. */
8193 if (idx >= 0 && idx + 1 >= XVECTOR (vector)->size)
8194 /* Handle reaching end of dense table. */
8195 idx = -1;
8196 if (idx >= 0)
8197 idx++;
8198 else
8199 rest = Fcdr_safe (rest);
8200 }
325309f5 8201 }
8150596a 8202
af2b7cc9 8203 /* Prompt with that and read response. */
c60ee5e7 8204 message2_nolog (menu, strlen (menu),
af2b7cc9 8205 ! NILP (current_buffer->enable_multibyte_characters));
284f4730 8206
af2b7cc9
KS
8207 /* Make believe its not a keyboard macro in case the help char
8208 is pressed. Help characters are not recorded because menu prompting
8209 is not used on replay.
8210 */
8211 orig_defn_macro = current_kboard->defining_kbd_macro;
8212 current_kboard->defining_kbd_macro = Qnil;
8213 do
8214 obj = read_char (commandflag, 0, 0, Qt, 0);
8215 while (BUFFERP (obj));
8216 current_kboard->defining_kbd_macro = orig_defn_macro;
284f4730 8217
af2b7cc9
KS
8218 if (!INTEGERP (obj))
8219 return obj;
8220 else
8221 ch = XINT (obj);
8222
8223 if (! EQ (obj, menu_prompt_more_char)
8224 && (!INTEGERP (menu_prompt_more_char)
8225 || ! EQ (obj, make_number (Ctl (XINT (menu_prompt_more_char))))))
8226 {
8227 if (!NILP (current_kboard->defining_kbd_macro))
8228 store_kbd_macro_char (obj);
8229 return obj;
8230 }
8231 /* Help char - go round again */
8232 }
284f4730 8233}
284f4730
JB
8234\f
8235/* Reading key sequences. */
8236
8237/* Follow KEY in the maps in CURRENT[0..NMAPS-1], placing its bindings
8238 in DEFS[0..NMAPS-1]. Set NEXT[i] to DEFS[i] if DEFS[i] is a
8239 keymap, or nil otherwise. Return the index of the first keymap in
8240 which KEY has any binding, or NMAPS if no map has a binding.
8241
8242 If KEY is a meta ASCII character, treat it like meta-prefix-char
8243 followed by the corresponding non-meta character. Keymaps in
8244 CURRENT with non-prefix bindings for meta-prefix-char become nil in
8245 NEXT.
8246
88cb0656
JB
8247 If KEY has no bindings in any of the CURRENT maps, NEXT is left
8248 unmodified.
8249
569871d2 8250 NEXT may be the same array as CURRENT. */
284f4730
JB
8251
8252static int
4e50f26a 8253follow_key (key, nmaps, current, defs, next)
284f4730
JB
8254 Lisp_Object key;
8255 Lisp_Object *current, *defs, *next;
8256 int nmaps;
8257{
8258 int i, first_binding;
8259
284f4730
JB
8260 first_binding = nmaps;
8261 for (i = nmaps - 1; i >= 0; i--)
8262 {
8263 if (! NILP (current[i]))
8264 {
fe5b94c5 8265 defs[i] = access_keymap (current[i], key, 1, 0, 1);
284f4730
JB
8266 if (! NILP (defs[i]))
8267 first_binding = i;
8268 }
8269 else
8270 defs[i] = Qnil;
8271 }
8272
284f4730 8273 /* Given the set of bindings we've found, produce the next set of maps. */
0a7f1fc0
JB
8274 if (first_binding < nmaps)
8275 for (i = 0; i < nmaps; i++)
02067692 8276 next[i] = NILP (defs[i]) ? Qnil : get_keymap (defs[i], 0, 1);
284f4730
JB
8277
8278 return first_binding;
8279}
8280
a7f26f28
SM
8281/* Structure used to keep track of partial application of key remapping
8282 such as Vfunction_key_map and Vkey_translation_map. */
8283typedef struct keyremap
8284{
24d80a06 8285 Lisp_Object map, parent;
a7f26f28
SM
8286 int start, end;
8287} keyremap;
8288
fe5b94c5
SM
8289/* Lookup KEY in MAP.
8290 MAP is a keymap mapping keys to key vectors or functions.
8291 If the mapping is a function and DO_FUNCTION is non-zero, then
8292 the function is called with PROMPT as parameter and its return
8293 value is used as the return value of this function (after checking
8294 that it is indeed a vector). */
8295
8296static Lisp_Object
8297access_keymap_keyremap (map, key, prompt, do_funcall)
8298 Lisp_Object map, key, prompt;
8299 int do_funcall;
8300{
8301 Lisp_Object next;
8302
8303 next = access_keymap (map, key, 1, 0, 1);
8304
8305 /* Handle symbol with autoload definition. */
8306 if (SYMBOLP (next) && !NILP (Ffboundp (next))
8307 && CONSP (XSYMBOL (next)->function)
8308 && EQ (XCAR (XSYMBOL (next)->function), Qautoload))
8309 do_autoload (XSYMBOL (next)->function, next);
8310
8311 /* Handle a symbol whose function definition is a keymap
8312 or an array. */
8313 if (SYMBOLP (next) && !NILP (Ffboundp (next))
8314 && (!NILP (Farrayp (XSYMBOL (next)->function))
8315 || KEYMAPP (XSYMBOL (next)->function)))
8316 next = XSYMBOL (next)->function;
8317
8318 /* If the keymap gives a function, not an
8319 array, then call the function with one arg and use
8320 its value instead. */
8321 if (SYMBOLP (next) && !NILP (Ffboundp (next)) && do_funcall)
8322 {
8323 Lisp_Object tem;
8324 tem = next;
8325
8326 next = call1 (next, prompt);
8327 /* If the function returned something invalid,
8328 barf--don't ignore it.
8329 (To ignore it safely, we would need to gcpro a bunch of
8330 other variables.) */
8331 if (! (VECTORP (next) || STRINGP (next)))
8332 error ("Function %s returns invalid key sequence", tem);
8333 }
8334 return next;
8335}
8336
8337/* Do one step of the key remapping used for function-key-map and
8338 key-translation-map:
8339 KEYBUF is the buffer holding the input events.
8340 BUFSIZE is its maximum size.
8341 FKEY is a pointer to the keyremap structure to use.
8342 INPUT is the index of the last element in KEYBUF.
8343 DOIT if non-zero says that the remapping can actually take place.
8344 DIFF is used to return the number of keys added/removed by the remapping.
8345 PARENT is the root of the keymap.
8346 PROMPT is the prompt to use if the remapping happens through a function.
8347 The return value is non-zero if the remapping actually took place. */
8348
8349static int
24d80a06
SM
8350keyremap_step (keybuf, bufsize, fkey, input, doit, diff, prompt)
8351 Lisp_Object *keybuf, prompt;
fe5b94c5
SM
8352 keyremap *fkey;
8353 int input, doit, *diff, bufsize;
8354{
8355 Lisp_Object next, key;
8356
8357 key = keybuf[fkey->end++];
8358 next = access_keymap_keyremap (fkey->map, key, prompt, doit);
8359
8360 /* If keybuf[fkey->start..fkey->end] is bound in the
8361 map and we're in a position to do the key remapping, replace it with
8362 the binding and restart with fkey->start at the end. */
8363 if ((VECTORP (next) || STRINGP (next)) && doit)
8364 {
8365 int len = XFASTINT (Flength (next));
8366 int i;
8367
8368 *diff = len - (fkey->end - fkey->start);
8369
8370 if (input + *diff >= bufsize)
8371 error ("Key sequence too long");
8372
8373 /* Shift the keys that follow fkey->end. */
8374 if (*diff < 0)
8375 for (i = fkey->end; i < input; i++)
8376 keybuf[i + *diff] = keybuf[i];
8377 else if (*diff > 0)
8378 for (i = input - 1; i >= fkey->end; i--)
8379 keybuf[i + *diff] = keybuf[i];
8380 /* Overwrite the old keys with the new ones. */
8381 for (i = 0; i < len; i++)
8382 keybuf[fkey->start + i]
8383 = Faref (next, make_number (i));
8384
8385 fkey->start = fkey->end += *diff;
24d80a06 8386 fkey->map = fkey->parent;
fe5b94c5
SM
8387
8388 return 1;
8389 }
8390
8391 fkey->map = get_keymap (next, 0, 1);
8392
8393 /* If we no longer have a bound suffix, try a new position for
8394 fkey->start. */
8395 if (!CONSP (fkey->map))
8396 {
8397 fkey->end = ++fkey->start;
24d80a06 8398 fkey->map = fkey->parent;
fe5b94c5
SM
8399 }
8400 return 0;
8401}
a7f26f28 8402
df0f2ba1 8403/* Read a sequence of keys that ends with a non prefix character,
f4255cd1
JB
8404 storing it in KEYBUF, a buffer of size BUFSIZE.
8405 Prompt with PROMPT.
284f4730 8406 Return the length of the key sequence stored.
dcc408a0 8407 Return -1 if the user rejected a command menu.
284f4730 8408
f4255cd1
JB
8409 Echo starting immediately unless `prompt' is 0.
8410
8411 Where a key sequence ends depends on the currently active keymaps.
8412 These include any minor mode keymaps active in the current buffer,
8413 the current buffer's local map, and the global map.
8414
8415 If a key sequence has no other bindings, we check Vfunction_key_map
8416 to see if some trailing subsequence might be the beginning of a
8417 function key's sequence. If so, we try to read the whole function
8418 key, and substitute its symbolic name into the key sequence.
8419
fbcd35bd
JB
8420 We ignore unbound `down-' mouse clicks. We turn unbound `drag-' and
8421 `double-' events into similar click events, if that would make them
8422 bound. We try to turn `triple-' events first into `double-' events,
8423 then into clicks.
f4255cd1
JB
8424
8425 If we get a mouse click in a mode line, vertical divider, or other
8426 non-text area, we treat the click as if it were prefixed by the
8427 symbol denoting that area - `mode-line', `vertical-line', or
8428 whatever.
8429
8430 If the sequence starts with a mouse click, we read the key sequence
8431 with respect to the buffer clicked on, not the current buffer.
284f4730 8432
f4255cd1
JB
8433 If the user switches frames in the midst of a key sequence, we put
8434 off the switch-frame event until later; the next call to
f571ae0d
RS
8435 read_char will return it.
8436
8437 If FIX_CURRENT_BUFFER is nonzero, we restore current_buffer
8438 from the selected window's buffer. */
48e416d4 8439
284f4730 8440static int
ce98e608 8441read_key_sequence (keybuf, bufsize, prompt, dont_downcase_last,
f571ae0d 8442 can_return_switch_frame, fix_current_buffer)
284f4730
JB
8443 Lisp_Object *keybuf;
8444 int bufsize;
84d91fda 8445 Lisp_Object prompt;
309b0fc8 8446 int dont_downcase_last;
ce98e608 8447 int can_return_switch_frame;
f571ae0d 8448 int fix_current_buffer;
284f4730 8449{
db14cfc5 8450 volatile Lisp_Object from_string;
aed13378 8451 volatile int count = SPECPDL_INDEX ();
f4255cd1 8452
284f4730 8453 /* How many keys there are in the current key sequence. */
8c907a56 8454 volatile int t;
284f4730 8455
284f4730
JB
8456 /* The length of the echo buffer when we started reading, and
8457 the length of this_command_keys when we started reading. */
8c907a56
GM
8458 volatile int echo_start;
8459 volatile int keys_start;
284f4730
JB
8460
8461 /* The number of keymaps we're scanning right now, and the number of
8462 keymaps we have allocated space for. */
8c907a56
GM
8463 volatile int nmaps;
8464 volatile int nmaps_allocated = 0;
284f4730 8465
284f4730
JB
8466 /* defs[0..nmaps-1] are the definitions of KEYBUF[0..t-1] in
8467 the current keymaps. */
8c907a56 8468 Lisp_Object *volatile defs = NULL;
284f4730 8469
f4255cd1
JB
8470 /* submaps[0..nmaps-1] are the prefix definitions of KEYBUF[0..t-1]
8471 in the current keymaps, or nil where it is not a prefix. */
8c907a56 8472 Lisp_Object *volatile submaps = NULL;
f4255cd1 8473
e0dff5f6 8474 /* The local map to start out with at start of key sequence. */
8c907a56 8475 volatile Lisp_Object orig_local_map;
e0dff5f6 8476
30690496
DL
8477 /* The map from the `keymap' property to start out with at start of
8478 key sequence. */
8c907a56 8479 volatile Lisp_Object orig_keymap;
30690496 8480
e0dff5f6
RS
8481 /* 1 if we have already considered switching to the local-map property
8482 of the place where a mouse click occurred. */
8c907a56 8483 volatile int localized_local_map = 0;
e0dff5f6 8484
f4255cd1
JB
8485 /* The index in defs[] of the first keymap that has a binding for
8486 this key sequence. In other words, the lowest i such that
8487 defs[i] is non-nil. */
8c907a56 8488 volatile int first_binding;
7189cad8 8489 /* Index of the first key that has no binding.
a7f26f28 8490 It is useless to try fkey.start larger than that. */
7189cad8 8491 volatile int first_unbound;
284f4730 8492
f4255cd1 8493 /* If t < mock_input, then KEYBUF[t] should be read as the next
253598e4
JB
8494 input key.
8495
8496 We use this to recover after recognizing a function key. Once we
8497 realize that a suffix of the current key sequence is actually a
8498 function key's escape sequence, we replace the suffix with the
8499 function key's binding from Vfunction_key_map. Now keybuf
f4255cd1
JB
8500 contains a new and different key sequence, so the echo area,
8501 this_command_keys, and the submaps and defs arrays are wrong. In
8502 this situation, we set mock_input to t, set t to 0, and jump to
8503 restart_sequence; the loop will read keys from keybuf up until
8504 mock_input, thus rebuilding the state; and then it will resume
8505 reading characters from the keyboard. */
8c907a56 8506 volatile int mock_input = 0;
284f4730 8507
253598e4 8508 /* If the sequence is unbound in submaps[], then
a7f26f28
SM
8509 keybuf[fkey.start..fkey.end-1] is a prefix in Vfunction_key_map,
8510 and fkey.map is its binding.
253598e4 8511
f4255cd1
JB
8512 These might be > t, indicating that all function key scanning
8513 should hold off until t reaches them. We do this when we've just
8514 recognized a function key, to avoid searching for the function
8515 key's again in Vfunction_key_map. */
a7f26f28 8516 volatile keyremap fkey;
284f4730 8517
a612e298 8518 /* Likewise, for key_translation_map. */
a7f26f28 8519 volatile keyremap keytran;
a612e298 8520
fe5b94c5
SM
8521 /* If we receive a `switch-frame' or `select-window' event in the middle of
8522 a key sequence, we put it off for later.
8523 While we're reading, we keep the event here. */
8c907a56 8524 volatile Lisp_Object delayed_switch_frame;
cd21b839 8525
51763820
BF
8526 /* See the comment below... */
8527#if defined (GOBBLE_FIRST_EVENT)
4efda7dd 8528 Lisp_Object first_event;
51763820 8529#endif
4efda7dd 8530
8c907a56
GM
8531 volatile Lisp_Object original_uppercase;
8532 volatile int original_uppercase_position = -1;
309b0fc8 8533
bc536d84 8534 /* Gets around Microsoft compiler limitations. */
309b0fc8 8535 int dummyflag = 0;
bc536d84 8536
3b9189f8
RS
8537 struct buffer *starting_buffer;
8538
2dc00208
GM
8539 /* List of events for which a fake prefix key has been generated. */
8540 volatile Lisp_Object fake_prefixed_keys = Qnil;
8541
03cee6ae 8542#if defined (GOBBLE_FIRST_EVENT)
4efda7dd 8543 int junk;
03cee6ae 8544#endif
4efda7dd 8545
2dc00208
GM
8546 struct gcpro gcpro1;
8547
8548 GCPRO1 (fake_prefixed_keys);
7d18f9ae
RS
8549 raw_keybuf_count = 0;
8550
4efda7dd
RS
8551 last_nonmenu_event = Qnil;
8552
8553 delayed_switch_frame = Qnil;
24d80a06
SM
8554 fkey.map = fkey.parent = Vfunction_key_map;
8555 keytran.map = keytran.parent = Vkey_translation_map;
a7f26f28
SM
8556 /* If there is no translation-map, turn off scanning. */
8557 fkey.start = fkey.end = KEYMAPP (fkey.map) ? 0 : bufsize + 1;
8558 keytran.start = keytran.end = KEYMAPP (keytran.map) ? 0 : bufsize + 1;
a612e298 8559
284f4730
JB
8560 if (INTERACTIVE)
8561 {
84d91fda 8562 if (!NILP (prompt))
a4ef85ee 8563 echo_prompt (prompt);
f2647d04
DL
8564 else if (cursor_in_echo_area
8565 && (FLOATP (Vecho_keystrokes) || INTEGERP (Vecho_keystrokes))
8566 && NILP (Fzerop (Vecho_keystrokes)))
284f4730
JB
8567 /* This doesn't put in a dash if the echo buffer is empty, so
8568 you don't always see a dash hanging out in the minibuffer. */
8569 echo_dash ();
284f4730
JB
8570 }
8571
f4255cd1
JB
8572 /* Record the initial state of the echo area and this_command_keys;
8573 we will need to restore them if we replay a key sequence. */
0a7f1fc0 8574 if (INTERACTIVE)
df0f2ba1 8575 echo_start = echo_length ();
f4255cd1 8576 keys_start = this_command_key_count;
6321824f 8577 this_single_command_key_start = keys_start;
0a7f1fc0 8578
51763820
BF
8579#if defined (GOBBLE_FIRST_EVENT)
8580 /* This doesn't quite work, because some of the things that read_char
8581 does cannot safely be bypassed. It seems too risky to try to make
df0f2ba1 8582 this work right. */
51763820 8583
4efda7dd
RS
8584 /* Read the first char of the sequence specially, before setting
8585 up any keymaps, in case a filter runs and switches buffers on us. */
84d91fda 8586 first_event = read_char (NILP (prompt), 0, submaps, last_nonmenu_event,
4efda7dd 8587 &junk);
51763820 8588#endif /* GOBBLE_FIRST_EVENT */
4efda7dd 8589
24a40fbb
GM
8590 orig_local_map = get_local_map (PT, current_buffer, Qlocal_map);
8591 orig_keymap = get_local_map (PT, current_buffer, Qkeymap);
db14cfc5 8592 from_string = Qnil;
e0dff5f6 8593
7b4aedb9
JB
8594 /* We jump here when the key sequence has been thoroughly changed, and
8595 we need to rescan it starting from the beginning. When we jump here,
8596 keybuf[0..mock_input] holds the sequence we should reread. */
07d2b8de 8597 replay_sequence:
7b4aedb9 8598
3b9189f8 8599 starting_buffer = current_buffer;
7189cad8 8600 first_unbound = bufsize + 1;
3b9189f8 8601
f4255cd1 8602 /* Build our list of keymaps.
07d2b8de
JB
8603 If we recognize a function key and replace its escape sequence in
8604 keybuf with its symbol, or if the sequence starts with a mouse
8605 click and we need to switch buffers, we jump back here to rebuild
8606 the initial keymaps from the current buffer. */
4cbedc16 8607 nmaps = 0;
284f4730 8608
4cbedc16
RS
8609 if (!NILP (current_kboard->Voverriding_terminal_local_map)
8610 || !NILP (Voverriding_local_map))
8611 {
8612 if (3 > nmaps_allocated)
8613 {
8614 submaps = (Lisp_Object *) alloca (3 * sizeof (submaps[0]));
8615 defs = (Lisp_Object *) alloca (3 * sizeof (defs[0]));
8616 nmaps_allocated = 3;
8617 }
8618 if (!NILP (current_kboard->Voverriding_terminal_local_map))
8619 submaps[nmaps++] = current_kboard->Voverriding_terminal_local_map;
8620 if (!NILP (Voverriding_local_map))
8621 submaps[nmaps++] = Voverriding_local_map;
8622 }
8623 else
8624 {
4cbedc16
RS
8625 int nminor;
8626 int total;
8627 Lisp_Object *maps;
8628
8629 nminor = current_minor_maps (0, &maps);
8630 total = nminor + (!NILP (orig_keymap) ? 3 : 2);
8631
8632 if (total > nmaps_allocated)
8633 {
8634 submaps = (Lisp_Object *) alloca (total * sizeof (submaps[0]));
8635 defs = (Lisp_Object *) alloca (total * sizeof (defs[0]));
8636 nmaps_allocated = total;
8637 }
8638
8639 if (!NILP (orig_keymap))
8640 submaps[nmaps++] = orig_keymap;
8641
7d1c4866 8642 bcopy (maps, (void *) (submaps + nmaps),
4cbedc16
RS
8643 nminor * sizeof (submaps[0]));
8644
8645 nmaps += nminor;
8646
8647 submaps[nmaps++] = orig_local_map;
8648 }
8649 submaps[nmaps++] = current_global_map;
284f4730
JB
8650
8651 /* Find an accurate initial value for first_binding. */
8652 for (first_binding = 0; first_binding < nmaps; first_binding++)
253598e4 8653 if (! NILP (submaps[first_binding]))
284f4730
JB
8654 break;
8655
3b9189f8 8656 /* Start from the beginning in keybuf. */
f4255cd1
JB
8657 t = 0;
8658
8659 /* These are no-ops the first time through, but if we restart, they
8660 revert the echo area and this_command_keys to their original state. */
8661 this_command_key_count = keys_start;
df0f2ba1 8662 if (INTERACTIVE && t < mock_input)
f4255cd1
JB
8663 echo_truncate (echo_start);
8664
cca310da
JB
8665 /* If the best binding for the current key sequence is a keymap, or
8666 we may be looking at a function key's escape sequence, keep on
8667 reading. */
a7f26f28
SM
8668 while (first_binding < nmaps
8669 /* Keep reading as long as there's a prefix binding. */
8670 ? !NILP (submaps[first_binding])
e9bf89a0
RS
8671 /* Don't return in the middle of a possible function key sequence,
8672 if the only bindings we found were via case conversion.
8673 Thus, if ESC O a has a function-key-map translation
8674 and ESC o has a binding, don't return after ESC O,
8675 so that we can translate ESC O plus the next character. */
a7f26f28 8676 : (fkey.start < t || keytran.start < t))
284f4730
JB
8677 {
8678 Lisp_Object key;
7d6de002 8679 int used_mouse_menu = 0;
284f4730 8680
7b4aedb9
JB
8681 /* Where the last real key started. If we need to throw away a
8682 key that has expanded into more than one element of keybuf
8683 (say, a mouse click on the mode line which is being treated
8684 as [mode-line (mouse-...)], then we backtrack to this point
8685 of keybuf. */
8c907a56 8686 volatile int last_real_key_start;
7b4aedb9 8687
0a7f1fc0
JB
8688 /* These variables are analogous to echo_start and keys_start;
8689 while those allow us to restart the entire key sequence,
8690 echo_local_start and keys_local_start allow us to throw away
8691 just one key. */
8c907a56 8692 volatile int echo_local_start, keys_local_start, local_first_binding;
f4255cd1 8693
fe5b94c5
SM
8694 eassert (fkey.end == t || (fkey.end > t && fkey.end <= mock_input));
8695 eassert (fkey.start <= fkey.end);
8696 eassert (keytran.start <= keytran.end);
2cf4b7b2 8697 /* key-translation-map is applied *after* function-key-map. */
a7f26f28 8698 eassert (keytran.end <= fkey.start);
7189cad8 8699
a7f26f28 8700 if (first_unbound < fkey.start && first_unbound < keytran.start)
7189cad8
SM
8701 { /* The prefix upto first_unbound has no binding and has
8702 no translation left to do either, so we know it's unbound.
8703 If we don't stop now, we risk staying here indefinitely
8704 (if the user keeps entering fkey or keytran prefixes
8705 like C-c ESC ESC ESC ESC ...) */
8706 int i;
8707 for (i = first_unbound + 1; i < t; i++)
8708 keybuf[i - first_unbound - 1] = keybuf[i];
8709 mock_input = t - first_unbound - 1;
a7f26f28 8710 fkey.end = fkey.start -= first_unbound + 1;
24d80a06 8711 fkey.map = fkey.parent;
a7f26f28 8712 keytran.end = keytran.start -= first_unbound + 1;
24d80a06 8713 keytran.map = keytran.parent;
7189cad8
SM
8714 goto replay_sequence;
8715 }
8716
284f4730 8717 if (t >= bufsize)
3fe8e9a2 8718 error ("Key sequence too long");
284f4730 8719
f4255cd1
JB
8720 if (INTERACTIVE)
8721 echo_local_start = echo_length ();
8722 keys_local_start = this_command_key_count;
8723 local_first_binding = first_binding;
df0f2ba1 8724
f4255cd1 8725 replay_key:
0a7f1fc0 8726 /* These are no-ops, unless we throw away a keystroke below and
f4255cd1
JB
8727 jumped back up to replay_key; in that case, these restore the
8728 variables to their original state, allowing us to replay the
0a7f1fc0 8729 loop. */
40932d1a 8730 if (INTERACTIVE && t < mock_input)
f4255cd1 8731 echo_truncate (echo_local_start);
0a7f1fc0
JB
8732 this_command_key_count = keys_local_start;
8733 first_binding = local_first_binding;
8734
7e85b935
RS
8735 /* By default, assume each event is "real". */
8736 last_real_key_start = t;
8737
f4255cd1 8738 /* Does mock_input indicate that we are re-reading a key sequence? */
284f4730
JB
8739 if (t < mock_input)
8740 {
8741 key = keybuf[t];
8742 add_command_key (key);
f2647d04
DL
8743 if ((FLOATP (Vecho_keystrokes) || INTEGERP (Vecho_keystrokes))
8744 && NILP (Fzerop (Vecho_keystrokes)))
a98ea3f9 8745 echo_char (key);
284f4730 8746 }
253598e4
JB
8747
8748 /* If not, we should actually read a character. */
284f4730
JB
8749 else
8750 {
beecf6a1 8751 {
c5fdd383
KH
8752#ifdef MULTI_KBOARD
8753 KBOARD *interrupted_kboard = current_kboard;
788f89eb 8754 struct frame *interrupted_frame = SELECTED_FRAME ();
c5fdd383 8755 if (setjmp (wrong_kboard_jmpbuf))
beecf6a1 8756 {
5798cf15
KH
8757 if (!NILP (delayed_switch_frame))
8758 {
c5fdd383 8759 interrupted_kboard->kbd_queue
5798cf15 8760 = Fcons (delayed_switch_frame,
c5fdd383 8761 interrupted_kboard->kbd_queue);
5798cf15
KH
8762 delayed_switch_frame = Qnil;
8763 }
beecf6a1 8764 while (t > 0)
c5fdd383
KH
8765 interrupted_kboard->kbd_queue
8766 = Fcons (keybuf[--t], interrupted_kboard->kbd_queue);
5798cf15
KH
8767
8768 /* If the side queue is non-empty, ensure it begins with a
8769 switch-frame, so we'll replay it in the right context. */
c5fdd383 8770 if (CONSP (interrupted_kboard->kbd_queue)
7539e11f 8771 && (key = XCAR (interrupted_kboard->kbd_queue),
5798cf15
KH
8772 !(EVENT_HAS_PARAMETERS (key)
8773 && EQ (EVENT_HEAD_KIND (EVENT_HEAD (key)),
8774 Qswitch_frame))))
df0f2ba1
KH
8775 {
8776 Lisp_Object frame;
8777 XSETFRAME (frame, interrupted_frame);
c5fdd383 8778 interrupted_kboard->kbd_queue
df0f2ba1 8779 = Fcons (make_lispy_switch_frame (frame),
c5fdd383 8780 interrupted_kboard->kbd_queue);
df0f2ba1 8781 }
beecf6a1 8782 mock_input = 0;
24a40fbb
GM
8783 orig_local_map = get_local_map (PT, current_buffer, Qlocal_map);
8784 orig_keymap = get_local_map (PT, current_buffer, Qkeymap);
beecf6a1
KH
8785 goto replay_sequence;
8786 }
bded54dd 8787#endif
8c907a56
GM
8788 key = read_char (NILP (prompt), nmaps,
8789 (Lisp_Object *) submaps, last_nonmenu_event,
beecf6a1
KH
8790 &used_mouse_menu);
8791 }
284f4730 8792
dcc408a0
RS
8793 /* read_char returns t when it shows a menu and the user rejects it.
8794 Just return -1. */
8795 if (EQ (key, Qt))
7d18f9ae
RS
8796 {
8797 unbind_to (count, Qnil);
2dc00208 8798 UNGCPRO;
7d18f9ae
RS
8799 return -1;
8800 }
dcc408a0 8801
f4255cd1 8802 /* read_char returns -1 at the end of a macro.
284f4730
JB
8803 Emacs 18 handles this by returning immediately with a
8804 zero, so that's what we'll do. */
8c18cbfb 8805 if (INTEGERP (key) && XINT (key) == -1)
cd21b839 8806 {
f4255cd1 8807 t = 0;
bc536d84
RS
8808 /* The Microsoft C compiler can't handle the goto that
8809 would go here. */
309b0fc8 8810 dummyflag = 1;
bc536d84 8811 break;
cd21b839 8812 }
df0f2ba1 8813
3cb81011
KH
8814 /* If the current buffer has been changed from under us, the
8815 keymap may have changed, so replay the sequence. */
8c18cbfb 8816 if (BUFFERP (key))
3cb81011 8817 {
e431fcda
DL
8818 EMACS_TIME initial_idleness_start_time;
8819 EMACS_SET_SECS_USECS (initial_idleness_start_time,
8820 EMACS_SECS (timer_last_idleness_start_time),
8821 EMACS_USECS (timer_last_idleness_start_time));
3021d3a9
RS
8822
8823 /* Resume idle state, using the same start-time as before. */
8824 timer_start_idle ();
8825 timer_idleness_start_time = initial_idleness_start_time;
8826
3cb81011 8827 mock_input = t;
f571ae0d
RS
8828 /* Reset the current buffer from the selected window
8829 in case something changed the former and not the latter.
8830 This is to be more consistent with the behavior
8831 of the command_loop_1. */
8832 if (fix_current_buffer)
a94a4335 8833 {
788f89eb 8834 if (! FRAME_LIVE_P (XFRAME (selected_frame)))
a94a4335
KH
8835 Fkill_emacs (Qnil);
8836 if (XBUFFER (XWINDOW (selected_window)->buffer) != current_buffer)
8837 Fset_buffer (XWINDOW (selected_window)->buffer);
8838 }
f571ae0d 8839
24a40fbb
GM
8840 orig_local_map = get_local_map (PT, current_buffer, Qlocal_map);
8841 orig_keymap = get_local_map (PT, current_buffer, Qkeymap);
3cb81011
KH
8842 goto replay_sequence;
8843 }
8844
3b9189f8
RS
8845 /* If we have a quit that was typed in another frame, and
8846 quit_throw_to_read_char switched buffers,
8847 replay to get the right keymap. */
f4e05d97
GM
8848 if (INTEGERP (key)
8849 && XINT (key) == quit_char
8850 && current_buffer != starting_buffer)
3b9189f8 8851 {
7d18f9ae
RS
8852 GROW_RAW_KEYBUF;
8853 XVECTOR (raw_keybuf)->contents[raw_keybuf_count++] = key;
3b9189f8
RS
8854 keybuf[t++] = key;
8855 mock_input = t;
8856 Vquit_flag = Qnil;
24a40fbb
GM
8857 orig_local_map = get_local_map (PT, current_buffer, Qlocal_map);
8858 orig_keymap = get_local_map (PT, current_buffer, Qkeymap);
3b9189f8
RS
8859 goto replay_sequence;
8860 }
3cb81011 8861
284f4730 8862 Vquit_flag = Qnil;
7d18f9ae
RS
8863
8864 if (EVENT_HAS_PARAMETERS (key)
fe5b94c5 8865 /* Either a `switch-frame' or a `select-window' event. */
7d18f9ae
RS
8866 && EQ (EVENT_HEAD_KIND (EVENT_HEAD (key)), Qswitch_frame))
8867 {
8868 /* If we're at the beginning of a key sequence, and the caller
8869 says it's okay, go ahead and return this event. If we're
8870 in the midst of a key sequence, delay it until the end. */
8871 if (t > 0 || !can_return_switch_frame)
8872 {
8873 delayed_switch_frame = key;
8874 goto replay_key;
8875 }
8876 }
8877
8878 GROW_RAW_KEYBUF;
8879 XVECTOR (raw_keybuf)->contents[raw_keybuf_count++] = key;
7e85b935 8880 }
284f4730 8881
df0f2ba1 8882 /* Clicks in non-text areas get prefixed by the symbol
7e85b935
RS
8883 in their CHAR-ADDRESS field. For example, a click on
8884 the mode line is prefixed by the symbol `mode-line'.
8885
8886 Furthermore, key sequences beginning with mouse clicks
8887 are read using the keymaps of the buffer clicked on, not
8888 the current buffer. So we may have to switch the buffer
8889 here.
8890
8891 When we turn one event into two events, we must make sure
8892 that neither of the two looks like the original--so that,
8893 if we replay the events, they won't be expanded again.
8894 If not for this, such reexpansion could happen either here
8895 or when user programs play with this-command-keys. */
8896 if (EVENT_HAS_PARAMETERS (key))
8897 {
9b8eb840 8898 Lisp_Object kind;
45de137a 8899 Lisp_Object string;
cca310da 8900
9b8eb840 8901 kind = EVENT_HEAD_KIND (EVENT_HEAD (key));
7e85b935 8902 if (EQ (kind, Qmouse_click))
0a7f1fc0 8903 {
9b8eb840 8904 Lisp_Object window, posn;
f4255cd1 8905
9b8eb840 8906 window = POSN_WINDOW (EVENT_START (key));
eee5863b 8907 posn = POSN_POSN (EVENT_START (key));
7ee32cda 8908
2cf066c3
GM
8909 if (CONSP (posn)
8910 || (!NILP (fake_prefixed_keys)
8911 && !NILP (Fmemq (key, fake_prefixed_keys))))
0a7f1fc0 8912 {
2cf066c3
GM
8913 /* We're looking a second time at an event for which
8914 we generated a fake prefix key. Set
7e85b935
RS
8915 last_real_key_start appropriately. */
8916 if (t > 0)
8917 last_real_key_start = t - 1;
cd21b839 8918 }
7e85b935
RS
8919
8920 /* Key sequences beginning with mouse clicks are
8921 read using the keymaps in the buffer clicked on,
8922 not the current buffer. If we're at the
8923 beginning of a key sequence, switch buffers. */
8924 if (last_real_key_start == 0
8c18cbfb
KH
8925 && WINDOWP (window)
8926 && BUFFERP (XWINDOW (window)->buffer)
7e85b935 8927 && XBUFFER (XWINDOW (window)->buffer) != current_buffer)
cd21b839 8928 {
7d18f9ae 8929 XVECTOR (raw_keybuf)->contents[raw_keybuf_count++] = key;
7e85b935
RS
8930 keybuf[t] = key;
8931 mock_input = t + 1;
8932
8933 /* Arrange to go back to the original buffer once we're
8934 done reading the key sequence. Note that we can't
8935 use save_excursion_{save,restore} here, because they
8936 save point as well as the current buffer; we don't
8937 want to save point, because redisplay may change it,
8938 to accommodate a Fset_window_start or something. We
8939 don't want to do this at the top of the function,
8940 because we may get input from a subprocess which
8941 wants to change the selected window and stuff (say,
8942 emacsclient). */
8943 record_unwind_protect (Fset_buffer, Fcurrent_buffer ());
8944
788f89eb 8945 if (! FRAME_LIVE_P (XFRAME (selected_frame)))
a94a4335 8946 Fkill_emacs (Qnil);
24a40fbb 8947 set_buffer_internal (XBUFFER (XWINDOW (window)->buffer));
30690496 8948 orig_local_map = get_local_map (PT, current_buffer,
24a40fbb
GM
8949 Qlocal_map);
8950 orig_keymap = get_local_map (PT, current_buffer, Qkeymap);
7e85b935 8951 goto replay_sequence;
0a7f1fc0 8952 }
c60ee5e7 8953
e0dff5f6
RS
8954 /* For a mouse click, get the local text-property keymap
8955 of the place clicked on, rather than point. */
7ee32cda 8956 if (last_real_key_start == 0
7539e11f 8957 && CONSP (XCDR (key))
e0dff5f6 8958 && ! localized_local_map)
5ec75a55 8959 {
e0dff5f6
RS
8960 Lisp_Object map_here, start, pos;
8961
8962 localized_local_map = 1;
8963 start = EVENT_START (key);
c60ee5e7 8964
eee5863b 8965 if (CONSP (start) && POSN_INBUFFER_P (start))
e0dff5f6
RS
8966 {
8967 pos = POSN_BUFFER_POSN (start);
b78ce8fb
RS
8968 if (INTEGERP (pos)
8969 && XINT (pos) >= BEG && XINT (pos) <= Z)
e0dff5f6 8970 {
30690496 8971 map_here = get_local_map (XINT (pos),
24a40fbb 8972 current_buffer, Qlocal_map);
e0dff5f6
RS
8973 if (!EQ (map_here, orig_local_map))
8974 {
8975 orig_local_map = map_here;
8976 keybuf[t] = key;
8977 mock_input = t + 1;
5ec75a55 8978
30690496
DL
8979 goto replay_sequence;
8980 }
8981 map_here = get_local_map (XINT (pos),
24a40fbb 8982 current_buffer, Qkeymap);
30690496
DL
8983 if (!EQ (map_here, orig_keymap))
8984 {
8985 orig_keymap = map_here;
8986 keybuf[t] = key;
8987 mock_input = t + 1;
8988
e0dff5f6
RS
8989 goto replay_sequence;
8990 }
8991 }
8992 }
8993 }
8994
8995 /* Expand mode-line and scroll-bar events into two events:
8996 use posn as a fake prefix key. */
2dc00208
GM
8997 if (SYMBOLP (posn)
8998 && (NILP (fake_prefixed_keys)
8999 || NILP (Fmemq (key, fake_prefixed_keys))))
e0dff5f6 9000 {
7e85b935 9001 if (t + 1 >= bufsize)
3fe8e9a2 9002 error ("Key sequence too long");
c60ee5e7 9003
2dc00208
GM
9004 keybuf[t] = posn;
9005 keybuf[t + 1] = key;
9006 mock_input = t + 2;
9007
9008 /* Record that a fake prefix key has been generated
9009 for KEY. Don't modify the event; this would
9010 prevent proper action when the event is pushed
c7f4f573 9011 back into unread-command-events. */
2dc00208 9012 fake_prefixed_keys = Fcons (key, fake_prefixed_keys);
7ee32cda
GM
9013
9014 /* If on a mode line string with a local keymap,
9015 reconsider the key sequence with that keymap. */
45de137a
KS
9016 if (string = POSN_STRING (EVENT_START (key)),
9017 (CONSP (string) && STRINGP (XCAR (string))))
7ee32cda 9018 {
45de137a 9019 Lisp_Object pos, map, map2;
7ee32cda 9020
7ee32cda
GM
9021 pos = XCDR (string);
9022 string = XCAR (string);
52e386c2 9023 if (XINT (pos) >= 0
d5db4077 9024 && XINT (pos) < SCHARS (string))
30690496
DL
9025 {
9026 map = Fget_text_property (pos, Qlocal_map, string);
9027 if (!NILP (map))
9028 orig_local_map = map;
9029 map2 = Fget_text_property (pos, Qkeymap, string);
9030 if (!NILP (map2))
9031 orig_keymap = map2;
9032 if (!NILP (map) || !NILP (map2))
9033 goto replay_sequence;
9034 }
7ee32cda
GM
9035 }
9036
7e85b935 9037 goto replay_key;
5ec75a55 9038 }
45de137a
KS
9039 else if (NILP (from_string)
9040 && (string = POSN_STRING (EVENT_START (key)),
9041 (CONSP (string) && STRINGP (XCAR (string)))))
db14cfc5
GM
9042 {
9043 /* For a click on a string, i.e. overlay string or a
9044 string displayed via the `display' property,
9045 consider `local-map' and `keymap' properties of
9046 that string. */
45de137a 9047 Lisp_Object pos, map, map2;
db14cfc5 9048
db14cfc5
GM
9049 pos = XCDR (string);
9050 string = XCAR (string);
9051 if (XINT (pos) >= 0
d5db4077 9052 && XINT (pos) < SCHARS (string))
db14cfc5
GM
9053 {
9054 map = Fget_text_property (pos, Qlocal_map, string);
9055 if (!NILP (map))
9056 orig_local_map = map;
9057 map2 = Fget_text_property (pos, Qkeymap, string);
9058 if (!NILP (map2))
9059 orig_keymap = map2;
9060
9061 if (!NILP (map) || !NILP (map2))
9062 {
9063 from_string = string;
9064 goto replay_sequence;
9065 }
9066 }
9067 }
0a7f1fc0 9068 }
7539e11f 9069 else if (CONSP (XCDR (key))
7a80a6f6 9070 && CONSP (EVENT_START (key))
7539e11f 9071 && CONSP (XCDR (EVENT_START (key))))
7e85b935 9072 {
9b8eb840 9073 Lisp_Object posn;
7e85b935 9074
eee5863b 9075 posn = POSN_POSN (EVENT_START (key));
7e85b935
RS
9076 /* Handle menu-bar events:
9077 insert the dummy prefix event `menu-bar'. */
9ea173e8 9078 if (EQ (posn, Qmenu_bar) || EQ (posn, Qtool_bar))
7e85b935
RS
9079 {
9080 if (t + 1 >= bufsize)
3fe8e9a2 9081 error ("Key sequence too long");
7e85b935
RS
9082 keybuf[t] = posn;
9083 keybuf[t+1] = key;
9084
9085 /* Zap the position in key, so we know that we've
9086 expanded it, and don't try to do so again. */
eee5863b
KS
9087 POSN_SET_POSN (EVENT_START (key),
9088 Fcons (posn, Qnil));
7e85b935
RS
9089
9090 mock_input = t + 2;
9091 goto replay_sequence;
9092 }
8c18cbfb 9093 else if (CONSP (posn))
7e85b935
RS
9094 {
9095 /* We're looking at the second event of a
9096 sequence which we expanded before. Set
9097 last_real_key_start appropriately. */
9098 if (last_real_key_start == t && t > 0)
9099 last_real_key_start = t - 1;
9100 }
a6d53864 9101 }
284f4730 9102 }
f4255cd1
JB
9103
9104 /* We have finally decided that KEY is something we might want
9105 to look up. */
284f4730
JB
9106 first_binding = (follow_key (key,
9107 nmaps - first_binding,
253598e4 9108 submaps + first_binding,
284f4730 9109 defs + first_binding,
4e50f26a 9110 submaps + first_binding)
284f4730 9111 + first_binding);
0a7f1fc0 9112
f4255cd1 9113 /* If KEY wasn't bound, we'll try some fallbacks. */
65e0fbbf
SM
9114 if (first_binding < nmaps)
9115 /* This is needed for the following scenario:
9116 event 0: a down-event that gets dropped by calling replay_key.
9117 event 1: some normal prefix like C-h.
a7f26f28
SM
9118 After event 0, first_unbound is 0, after event 1 fkey.start
9119 and keytran.start are both 1, so when we see that C-h is bound,
65e0fbbf
SM
9120 we need to update first_unbound. */
9121 first_unbound = max (t + 1, first_unbound);
9122 else
0a7f1fc0 9123 {
9b8eb840 9124 Lisp_Object head;
c60ee5e7 9125
a7f26f28 9126 /* Remember the position to put an upper bound on fkey.start. */
7189cad8 9127 first_unbound = min (t, first_unbound);
0a7f1fc0 9128
9b8eb840 9129 head = EVENT_HEAD (key);
24736fbc 9130 if (help_char_p (head) && t > 0)
7e85b935
RS
9131 {
9132 read_key_sequence_cmd = Vprefix_help_command;
9133 keybuf[t++] = key;
9134 last_nonmenu_event = key;
bc536d84
RS
9135 /* The Microsoft C compiler can't handle the goto that
9136 would go here. */
309b0fc8 9137 dummyflag = 1;
0d882d52 9138 break;
7e85b935
RS
9139 }
9140
8c18cbfb 9141 if (SYMBOLP (head))
0a7f1fc0 9142 {
9b8eb840
KH
9143 Lisp_Object breakdown;
9144 int modifiers;
0a7f1fc0 9145
9b8eb840 9146 breakdown = parse_modifiers (head);
7539e11f 9147 modifiers = XINT (XCAR (XCDR (breakdown)));
559f9d04
RS
9148 /* Attempt to reduce an unbound mouse event to a simpler
9149 event that is bound:
9150 Drags reduce to clicks.
9151 Double-clicks reduce to clicks.
9152 Triple-clicks reduce to double-clicks, then to clicks.
9153 Down-clicks are eliminated.
9154 Double-downs reduce to downs, then are eliminated.
9155 Triple-downs reduce to double-downs, then to downs,
9156 then are eliminated. */
9157 if (modifiers & (down_modifier | drag_modifier
9158 | double_modifier | triple_modifier))
0a7f1fc0 9159 {
559f9d04
RS
9160 while (modifiers & (down_modifier | drag_modifier
9161 | double_modifier | triple_modifier))
fbcd35bd
JB
9162 {
9163 Lisp_Object new_head, new_click;
9164 if (modifiers & triple_modifier)
9165 modifiers ^= (double_modifier | triple_modifier);
bc536d84
RS
9166 else if (modifiers & double_modifier)
9167 modifiers &= ~double_modifier;
9168 else if (modifiers & drag_modifier)
9169 modifiers &= ~drag_modifier;
559f9d04
RS
9170 else
9171 {
9172 /* Dispose of this `down' event by simply jumping
9173 back to replay_key, to get another event.
9174
9175 Note that if this event came from mock input,
9176 then just jumping back to replay_key will just
9177 hand it to us again. So we have to wipe out any
9178 mock input.
9179
9180 We could delete keybuf[t] and shift everything
9181 after that to the left by one spot, but we'd also
9182 have to fix up any variable that points into
9183 keybuf, and shifting isn't really necessary
9184 anyway.
9185
9186 Adding prefixes for non-textual mouse clicks
9187 creates two characters of mock input, and both
9188 must be thrown away. If we're only looking at
9189 the prefix now, we can just jump back to
9190 replay_key. On the other hand, if we've already
9191 processed the prefix, and now the actual click
9192 itself is giving us trouble, then we've lost the
9193 state of the keymaps we want to backtrack to, and
9194 we need to replay the whole sequence to rebuild
9195 it.
9196
9197 Beyond that, only function key expansion could
9198 create more than two keys, but that should never
9199 generate mouse events, so it's okay to zero
9200 mock_input in that case too.
9201
65e0fbbf
SM
9202 FIXME: The above paragraph seems just plain
9203 wrong, if you consider things like
9204 xterm-mouse-mode. -stef
9205
559f9d04 9206 Isn't this just the most wonderful code ever? */
017be6c7
SM
9207
9208 /* If mock_input > t + 1, the above simplification
9209 will actually end up dropping keys on the floor.
9210 This is probably OK for now, but even
9211 if mock_input <= t + 1, we need to adjust fkey
9212 and keytran.
9213 Typical case [header-line down-mouse-N]:
9214 mock_input = 2, t = 1, fkey.end = 1,
9215 last_real_key_start = 0. */
9216 if (fkey.end > last_real_key_start)
9217 {
9218 fkey.end = fkey.start
9219 = min (last_real_key_start, fkey.start);
9220 fkey.map = fkey.parent;
9221 if (keytran.end > last_real_key_start)
9222 {
9223 keytran.end = keytran.start
9224 = min (last_real_key_start, keytran.start);
9225 keytran.map = keytran.parent;
9226 }
9227 }
559f9d04
RS
9228 if (t == last_real_key_start)
9229 {
9230 mock_input = 0;
9231 goto replay_key;
9232 }
9233 else
9234 {
9235 mock_input = last_real_key_start;
9236 goto replay_sequence;
9237 }
9238 }
9239
27203ead 9240 new_head
7539e11f 9241 = apply_modifiers (modifiers, XCAR (breakdown));
27203ead
RS
9242 new_click
9243 = Fcons (new_head, Fcons (EVENT_START (key), Qnil));
fbcd35bd
JB
9244
9245 /* Look for a binding for this new key. follow_key
9246 promises that it didn't munge submaps the
9247 last time we called it, since key was unbound. */
27203ead
RS
9248 first_binding
9249 = (follow_key (new_click,
9250 nmaps - local_first_binding,
9251 submaps + local_first_binding,
9252 defs + local_first_binding,
4e50f26a 9253 submaps + local_first_binding)
27203ead 9254 + local_first_binding);
fbcd35bd
JB
9255
9256 /* If that click is bound, go for it. */
9257 if (first_binding < nmaps)
9258 {
9259 key = new_click;
9260 break;
9261 }
9262 /* Otherwise, we'll leave key set to the drag event. */
9263 }
0a7f1fc0
JB
9264 }
9265 }
9266 }
9267
284f4730 9268 keybuf[t++] = key;
7d6de002
RS
9269 /* Normally, last_nonmenu_event gets the previous key we read.
9270 But when a mouse popup menu is being used,
9271 we don't update last_nonmenu_event; it continues to hold the mouse
9272 event that preceded the first level of menu. */
9273 if (!used_mouse_menu)
9274 last_nonmenu_event = key;
284f4730 9275
6321824f
RS
9276 /* Record what part of this_command_keys is the current key sequence. */
9277 this_single_command_key_start = this_command_key_count - t;
9278
65e0fbbf
SM
9279 if (first_binding < nmaps && NILP (submaps[first_binding]))
9280 /* There is a binding and it's not a prefix.
9281 There is thus no function-key in this sequence.
9282 Moving fkey.start is important in this case to allow keytran.start
9283 to go over the sequence before we return (since we keep the
9284 invariant that keytran.end <= fkey.start). */
9285 {
a7f26f28 9286 if (fkey.start < t)
24d80a06 9287 (fkey.start = fkey.end = t, fkey.map = fkey.parent);
65e0fbbf
SM
9288 }
9289 else
9290 /* If the sequence is unbound, see if we can hang a function key
9291 off the end of it. */
fe5b94c5
SM
9292 /* Continue scan from fkey.end until we find a bound suffix. */
9293 while (fkey.end < t)
a612e298 9294 {
fe5b94c5
SM
9295 struct gcpro gcpro1, gcpro2, gcpro3;
9296 int done, diff;
9297
9298 GCPRO3 (fkey.map, keytran.map, delayed_switch_frame);
9299 done = keyremap_step (keybuf, bufsize, &fkey,
9300 max (t, mock_input),
9301 /* If there's a binding (i.e.
9302 first_binding >= nmaps) we don't want
9303 to apply this function-key-mapping. */
9304 fkey.end + 1 == t && first_binding >= nmaps,
24d80a06 9305 &diff, prompt);
fe5b94c5
SM
9306 UNGCPRO;
9307 if (done)
a612e298 9308 {
fe5b94c5 9309 mock_input = diff + max (t, mock_input);
a612e298
RS
9310 goto replay_sequence;
9311 }
fe5b94c5 9312 }
a612e298 9313
fe5b94c5
SM
9314 /* Look for this sequence in key-translation-map.
9315 Scan from keytran.end until we find a bound suffix. */
9316 while (keytran.end < fkey.start)
9317 {
9318 struct gcpro gcpro1, gcpro2, gcpro3;
9319 int done, diff;
a612e298 9320
fe5b94c5
SM
9321 GCPRO3 (fkey.map, keytran.map, delayed_switch_frame);
9322 done = keyremap_step (keybuf, bufsize, &keytran, max (t, mock_input),
24d80a06 9323 1, &diff, prompt);
fe5b94c5
SM
9324 UNGCPRO;
9325 if (done)
9326 {
9327 mock_input = diff + max (t, mock_input);
9328 /* Adjust the function-key-map counters. */
9329 fkey.end += diff;
9330 fkey.start += diff;
9331
9332 goto replay_sequence;
9333 }
9334 }
4e50f26a
RS
9335
9336 /* If KEY is not defined in any of the keymaps,
9337 and cannot be part of a function key or translation,
9338 and is an upper case letter
9339 use the corresponding lower-case letter instead. */
65e0fbbf 9340 if (first_binding >= nmaps
a7f26f28 9341 && fkey.start >= t && keytran.start >= t
8c18cbfb 9342 && INTEGERP (key)
4e50f26a 9343 && ((((XINT (key) & 0x3ffff)
301738ed 9344 < XCHAR_TABLE (current_buffer->downcase_table)->size)
4e50f26a
RS
9345 && UPPERCASEP (XINT (key) & 0x3ffff))
9346 || (XINT (key) & shift_modifier)))
9347 {
569871d2 9348 Lisp_Object new_key;
569871d2 9349
309b0fc8
RS
9350 original_uppercase = key;
9351 original_uppercase_position = t - 1;
9352
831f35a2 9353 if (XINT (key) & shift_modifier)
569871d2 9354 XSETINT (new_key, XINT (key) & ~shift_modifier);
4e50f26a 9355 else
569871d2
RS
9356 XSETINT (new_key, (DOWNCASE (XINT (key) & 0x3ffff)
9357 | (XINT (key) & ~0x3ffff)));
9358
3fe8e9a2
RS
9359 /* We have to do this unconditionally, regardless of whether
9360 the lower-case char is defined in the keymaps, because they
9361 might get translated through function-key-map. */
9362 keybuf[t - 1] = new_key;
2cf4b7b2 9363 mock_input = max (t, mock_input);
3fe8e9a2
RS
9364
9365 goto replay_sequence;
4e50f26a 9366 }
ef8fd672
RS
9367 /* If KEY is not defined in any of the keymaps,
9368 and cannot be part of a function key or translation,
9369 and is a shifted function key,
9370 use the corresponding unshifted function key instead. */
65e0fbbf 9371 if (first_binding >= nmaps
a7f26f28 9372 && fkey.start >= t && keytran.start >= t
ef8fd672
RS
9373 && SYMBOLP (key))
9374 {
9375 Lisp_Object breakdown;
9376 int modifiers;
9377
9378 breakdown = parse_modifiers (key);
7539e11f 9379 modifiers = XINT (XCAR (XCDR (breakdown)));
ef8fd672
RS
9380 if (modifiers & shift_modifier)
9381 {
569871d2 9382 Lisp_Object new_key;
3fe8e9a2
RS
9383
9384 original_uppercase = key;
9385 original_uppercase_position = t - 1;
ef8fd672 9386
569871d2
RS
9387 modifiers &= ~shift_modifier;
9388 new_key = apply_modifiers (modifiers,
7539e11f 9389 XCAR (breakdown));
569871d2 9390
3fe8e9a2 9391 keybuf[t - 1] = new_key;
2cf4b7b2 9392 mock_input = max (t, mock_input);
f1871a7d
RS
9393 fkey.start = fkey.end = KEYMAPP (fkey.map) ? 0 : bufsize + 1;
9394 keytran.start = keytran.end = KEYMAPP (keytran.map) ? 0 : bufsize + 1;
3fe8e9a2
RS
9395
9396 goto replay_sequence;
ef8fd672
RS
9397 }
9398 }
284f4730
JB
9399 }
9400
309b0fc8 9401 if (!dummyflag)
bc536d84
RS
9402 read_key_sequence_cmd = (first_binding < nmaps
9403 ? defs[first_binding]
9404 : Qnil);
284f4730 9405
cd21b839 9406 unread_switch_frame = delayed_switch_frame;
f4255cd1 9407 unbind_to (count, Qnil);
07f76a14 9408
3fe8e9a2
RS
9409 /* Don't downcase the last character if the caller says don't.
9410 Don't downcase it if the result is undefined, either. */
9411 if ((dont_downcase_last || first_binding >= nmaps)
9412 && t - 1 == original_uppercase_position)
309b0fc8
RS
9413 keybuf[t - 1] = original_uppercase;
9414
07f76a14
JB
9415 /* Occasionally we fabricate events, perhaps by expanding something
9416 according to function-key-map, or by adding a prefix symbol to a
9417 mouse click in the scroll bar or modeline. In this cases, return
9418 the entire generated key sequence, even if we hit an unbound
9419 prefix or a definition before the end. This means that you will
9420 be able to push back the event properly, and also means that
9421 read-key-sequence will always return a logical unit.
9422
9423 Better ideas? */
cca310da
JB
9424 for (; t < mock_input; t++)
9425 {
f2647d04
DL
9426 if ((FLOATP (Vecho_keystrokes) || INTEGERP (Vecho_keystrokes))
9427 && NILP (Fzerop (Vecho_keystrokes)))
a98ea3f9 9428 echo_char (keybuf[t]);
cca310da
JB
9429 add_command_key (keybuf[t]);
9430 }
07f76a14 9431
c60ee5e7 9432
7d18f9ae 9433
2dc00208 9434 UNGCPRO;
284f4730
JB
9435 return t;
9436}
9437
d5eecefb 9438DEFUN ("read-key-sequence", Fread_key_sequence, Sread_key_sequence, 1, 5, 0,
4707d2d0
PJ
9439 doc: /* Read a sequence of keystrokes and return as a string or vector.
9440The sequence is sufficient to specify a non-prefix command in the
9441current local and global maps.
9442
9443First arg PROMPT is a prompt string. If nil, do not prompt specially.
9444Second (optional) arg CONTINUE-ECHO, if non-nil, means this key echos
9445as a continuation of the previous key.
9446
9447The third (optional) arg DONT-DOWNCASE-LAST, if non-nil, means do not
9448convert the last event to lower case. (Normally any upper case event
9449is converted to lower case if the original event is undefined and the lower
9450case equivalent is defined.) A non-nil value is appropriate for reading
9451a key sequence to be defined.
9452
9453A C-g typed while in this function is treated like any other character,
9454and `quit-flag' is not set.
9455
9456If the key sequence starts with a mouse click, then the sequence is read
9457using the keymaps of the buffer of the window clicked in, not the buffer
9458of the selected window as normal.
9459
9460`read-key-sequence' drops unbound button-down events, since you normally
9461only care about the click or drag events which follow them. If a drag
9462or multi-click event is unbound, but the corresponding click event would
9463be bound, `read-key-sequence' turns the event into a click event at the
9464drag's starting position. This means that you don't have to distinguish
9465between click and drag, double, or triple events unless you want to.
9466
9467`read-key-sequence' prefixes mouse events on mode lines, the vertical
9468lines separating windows, and scroll bars with imaginary keys
9469`mode-line', `vertical-line', and `vertical-scroll-bar'.
9470
9471Optional fourth argument CAN-RETURN-SWITCH-FRAME non-nil means that this
9472function will process a switch-frame event if the user switches frames
9473before typing anything. If the user switches frames in the middle of a
9474key sequence, or at the start of the sequence but CAN-RETURN-SWITCH-FRAME
9475is nil, then the event will be put off until after the current key sequence.
9476
9477`read-key-sequence' checks `function-key-map' for function key
9478sequences, where they wouldn't conflict with ordinary bindings. See
9479`function-key-map' for more details.
9480
9481The optional fifth argument COMMAND-LOOP, if non-nil, means
9482that this key sequence is being read by something that will
9483read commands one after another. It should be nil if the caller
9484will read just one key sequence. */)
d5eecefb
RS
9485 (prompt, continue_echo, dont_downcase_last, can_return_switch_frame,
9486 command_loop)
309b0fc8 9487 Lisp_Object prompt, continue_echo, dont_downcase_last;
d5eecefb 9488 Lisp_Object can_return_switch_frame, command_loop;
284f4730
JB
9489{
9490 Lisp_Object keybuf[30];
9491 register int i;
03cee6ae 9492 struct gcpro gcpro1;
aed13378 9493 int count = SPECPDL_INDEX ();
284f4730
JB
9494
9495 if (!NILP (prompt))
b7826503 9496 CHECK_STRING (prompt);
284f4730
JB
9497 QUIT;
9498
d5eecefb
RS
9499 specbind (Qinput_method_exit_on_first_char,
9500 (NILP (command_loop) ? Qt : Qnil));
9501 specbind (Qinput_method_use_echo_area,
9502 (NILP (command_loop) ? Qt : Qnil));
9503
284f4730
JB
9504 bzero (keybuf, sizeof keybuf);
9505 GCPRO1 (keybuf[0]);
9506 gcpro1.nvars = (sizeof keybuf/sizeof (keybuf[0]));
9507
daa37602 9508 if (NILP (continue_echo))
6321824f
RS
9509 {
9510 this_command_key_count = 0;
63020c46 9511 this_command_key_count_reset = 0;
6321824f
RS
9512 this_single_command_key_start = 0;
9513 }
c0a58692 9514
d0c48478 9515#ifdef HAVE_X_WINDOWS
526a058f
GM
9516 if (display_hourglass_p)
9517 cancel_hourglass ();
d0c48478
GM
9518#endif
9519
309b0fc8 9520 i = read_key_sequence (keybuf, (sizeof keybuf/sizeof (keybuf[0])),
ce98e608 9521 prompt, ! NILP (dont_downcase_last),
f571ae0d 9522 ! NILP (can_return_switch_frame), 0);
284f4730 9523
ae18aa3b 9524#if 0 /* The following is fine for code reading a key sequence and
f95c4fe5 9525 then proceeding with a lenghty computation, but it's not good
ae18aa3b 9526 for code reading keys in a loop, like an input method. */
d0c48478 9527#ifdef HAVE_X_WINDOWS
526a058f
GM
9528 if (display_hourglass_p)
9529 start_hourglass ();
ae18aa3b 9530#endif
d0c48478
GM
9531#endif
9532
dcc408a0
RS
9533 if (i == -1)
9534 {
9535 Vquit_flag = Qt;
9536 QUIT;
9537 }
284f4730 9538 UNGCPRO;
d5eecefb 9539 return unbind_to (count, make_event_array (i, keybuf));
284f4730 9540}
e39da3d7
RS
9541
9542DEFUN ("read-key-sequence-vector", Fread_key_sequence_vector,
d5eecefb 9543 Sread_key_sequence_vector, 1, 5, 0,
4707d2d0
PJ
9544 doc: /* Like `read-key-sequence' but always return a vector. */)
9545 (prompt, continue_echo, dont_downcase_last, can_return_switch_frame,
9546 command_loop)
e39da3d7 9547 Lisp_Object prompt, continue_echo, dont_downcase_last;
d5eecefb 9548 Lisp_Object can_return_switch_frame, command_loop;
e39da3d7
RS
9549{
9550 Lisp_Object keybuf[30];
9551 register int i;
03cee6ae 9552 struct gcpro gcpro1;
aed13378 9553 int count = SPECPDL_INDEX ();
e39da3d7
RS
9554
9555 if (!NILP (prompt))
b7826503 9556 CHECK_STRING (prompt);
e39da3d7
RS
9557 QUIT;
9558
d5eecefb
RS
9559 specbind (Qinput_method_exit_on_first_char,
9560 (NILP (command_loop) ? Qt : Qnil));
9561 specbind (Qinput_method_use_echo_area,
9562 (NILP (command_loop) ? Qt : Qnil));
9563
e39da3d7
RS
9564 bzero (keybuf, sizeof keybuf);
9565 GCPRO1 (keybuf[0]);
9566 gcpro1.nvars = (sizeof keybuf/sizeof (keybuf[0]));
9567
9568 if (NILP (continue_echo))
9569 {
9570 this_command_key_count = 0;
63020c46 9571 this_command_key_count_reset = 0;
e39da3d7
RS
9572 this_single_command_key_start = 0;
9573 }
9574
d0c48478 9575#ifdef HAVE_X_WINDOWS
526a058f
GM
9576 if (display_hourglass_p)
9577 cancel_hourglass ();
d0c48478
GM
9578#endif
9579
e39da3d7
RS
9580 i = read_key_sequence (keybuf, (sizeof keybuf/sizeof (keybuf[0])),
9581 prompt, ! NILP (dont_downcase_last),
9582 ! NILP (can_return_switch_frame), 0);
9583
d0c48478 9584#ifdef HAVE_X_WINDOWS
526a058f
GM
9585 if (display_hourglass_p)
9586 start_hourglass ();
d0c48478
GM
9587#endif
9588
e39da3d7
RS
9589 if (i == -1)
9590 {
9591 Vquit_flag = Qt;
9592 QUIT;
9593 }
9594 UNGCPRO;
d5eecefb 9595 return unbind_to (count, Fvector (i, keybuf));
e39da3d7 9596}
284f4730 9597\f
158f7532 9598DEFUN ("command-execute", Fcommand_execute, Scommand_execute, 1, 4, 0,
4707d2d0
PJ
9599 doc: /* Execute CMD as an editor command.
9600CMD must be a symbol that satisfies the `commandp' predicate.
9601Optional second arg RECORD-FLAG non-nil
9602means unconditionally put this command in `command-history'.
9603Otherwise, that is done only if an arg is read using the minibuffer.
9604The argument KEYS specifies the value to use instead of (this-command-keys)
9605when reading the arguments; if it is nil, (this-command-keys) is used.
9606The argument SPECIAL, if non-nil, means that this command is executing
9607a special event, so ignore the prefix argument and don't clear it. */)
158f7532
RS
9608 (cmd, record_flag, keys, special)
9609 Lisp_Object cmd, record_flag, keys, special;
284f4730
JB
9610{
9611 register Lisp_Object final;
9612 register Lisp_Object tem;
9613 Lisp_Object prefixarg;
9614 struct backtrace backtrace;
9615 extern int debug_on_next_call;
9616
284f4730
JB
9617 debug_on_next_call = 0;
9618
158f7532
RS
9619 if (NILP (special))
9620 {
9621 prefixarg = current_kboard->Vprefix_arg;
9622 Vcurrent_prefix_arg = prefixarg;
9623 current_kboard->Vprefix_arg = Qnil;
9624 }
9625 else
9626 prefixarg = Qnil;
9627
8c18cbfb 9628 if (SYMBOLP (cmd))
284f4730
JB
9629 {
9630 tem = Fget (cmd, Qdisabled);
88ce066e 9631 if (!NILP (tem) && !NILP (Vrun_hooks))
b78ce8fb
RS
9632 {
9633 tem = Fsymbol_value (Qdisabled_command_hook);
9634 if (!NILP (tem))
9635 return call1 (Vrun_hooks, Qdisabled_command_hook);
9636 }
284f4730
JB
9637 }
9638
01e26217 9639 while (1)
284f4730 9640 {
ffd56f97 9641 final = Findirect_function (cmd);
284f4730
JB
9642
9643 if (CONSP (final) && (tem = Fcar (final), EQ (tem, Qautoload)))
b516a185
RS
9644 {
9645 struct gcpro gcpro1, gcpro2;
9646
9647 GCPRO2 (cmd, prefixarg);
9648 do_autoload (final, cmd);
9649 UNGCPRO;
9650 }
284f4730
JB
9651 else
9652 break;
9653 }
9654
8c18cbfb 9655 if (STRINGP (final) || VECTORP (final))
284f4730
JB
9656 {
9657 /* If requested, place the macro in the command history. For
9658 other sorts of commands, call-interactively takes care of
9659 this. */
e57d8fd8 9660 if (!NILP (record_flag))
f4385381
RS
9661 {
9662 Vcommand_history
9663 = Fcons (Fcons (Qexecute_kbd_macro,
9664 Fcons (final, Fcons (prefixarg, Qnil))),
9665 Vcommand_history);
9666
9667 /* Don't keep command history around forever. */
9668 if (NUMBERP (Vhistory_length) && XINT (Vhistory_length) > 0)
9669 {
9670 tem = Fnthcdr (Vhistory_length, Vcommand_history);
9671 if (CONSP (tem))
f3fbd155 9672 XSETCDR (tem, Qnil);
f4385381
RS
9673 }
9674 }
284f4730 9675
caa06051 9676 return Fexecute_kbd_macro (final, prefixarg, Qnil);
284f4730 9677 }
f4385381 9678
8c18cbfb 9679 if (CONSP (final) || SUBRP (final) || COMPILEDP (final))
284f4730
JB
9680 {
9681 backtrace.next = backtrace_list;
9682 backtrace_list = &backtrace;
9683 backtrace.function = &Qcall_interactively;
9684 backtrace.args = &cmd;
9685 backtrace.nargs = 1;
9686 backtrace.evalargs = 0;
9687
e57d8fd8 9688 tem = Fcall_interactively (cmd, record_flag, keys);
284f4730
JB
9689
9690 backtrace_list = backtrace.next;
9691 return tem;
9692 }
9693 return Qnil;
9694}
c970a760
GM
9695
9696
284f4730 9697\f
284f4730 9698DEFUN ("execute-extended-command", Fexecute_extended_command, Sexecute_extended_command,
4707d2d0
PJ
9699 1, 1, "P",
9700 doc: /* Read function name, then read its arguments and call it. */)
9701 (prefixarg)
284f4730
JB
9702 Lisp_Object prefixarg;
9703{
9704 Lisp_Object function;
9705 char buf[40];
2e1a49ad
SM
9706 int saved_last_point_position;
9707 Lisp_Object saved_keys, saved_last_point_position_buffer;
5434fce6 9708 Lisp_Object bindings, value;
2e1a49ad 9709 struct gcpro gcpro1, gcpro2, gcpro3;
284f4730 9710
b0f2a7bf
KH
9711 saved_keys = Fvector (this_command_key_count,
9712 XVECTOR (this_command_keys)->contents);
2e1a49ad
SM
9713 saved_last_point_position_buffer = last_point_position_buffer;
9714 saved_last_point_position = last_point_position;
284f4730 9715 buf[0] = 0;
2e1a49ad 9716 GCPRO3 (saved_keys, prefixarg, saved_last_point_position_buffer);
284f4730
JB
9717
9718 if (EQ (prefixarg, Qminus))
9719 strcpy (buf, "- ");
7539e11f 9720 else if (CONSP (prefixarg) && XINT (XCAR (prefixarg)) == 4)
284f4730 9721 strcpy (buf, "C-u ");
7539e11f 9722 else if (CONSP (prefixarg) && INTEGERP (XCAR (prefixarg)))
5d5b907f
RS
9723 {
9724 if (sizeof (int) == sizeof (EMACS_INT))
7539e11f 9725 sprintf (buf, "%d ", XINT (XCAR (prefixarg)));
5d5b907f 9726 else if (sizeof (long) == sizeof (EMACS_INT))
7539e11f 9727 sprintf (buf, "%ld ", (long) XINT (XCAR (prefixarg)));
5d5b907f
RS
9728 else
9729 abort ();
9730 }
8c18cbfb 9731 else if (INTEGERP (prefixarg))
5d5b907f
RS
9732 {
9733 if (sizeof (int) == sizeof (EMACS_INT))
9734 sprintf (buf, "%d ", XINT (prefixarg));
9735 else if (sizeof (long) == sizeof (EMACS_INT))
03cee6ae 9736 sprintf (buf, "%ld ", (long) XINT (prefixarg));
5d5b907f
RS
9737 else
9738 abort ();
9739 }
284f4730
JB
9740
9741 /* This isn't strictly correct if execute-extended-command
9742 is bound to anything else. Perhaps it should use
9743 this_command_keys? */
9744 strcat (buf, "M-x ");
9745
9746 /* Prompt with buf, and then read a string, completing from and
9747 restricting to the set of all defined commands. Don't provide
51763820 9748 any initial input. Save the command read on the extended-command
03b4122a 9749 history list. */
284f4730
JB
9750 function = Fcompleting_read (build_string (buf),
9751 Vobarray, Qcommandp,
4328577a
KH
9752 Qt, Qnil, Qextended_command_history, Qnil,
9753 Qnil);
284f4730 9754
d5db4077 9755 if (STRINGP (function) && SCHARS (function) == 0)
1f5b1641
RS
9756 error ("No command name given");
9757
1113d9db
JB
9758 /* Set this_command_keys to the concatenation of saved_keys and
9759 function, followed by a RET. */
284f4730 9760 {
b0f2a7bf 9761 Lisp_Object *keys;
284f4730 9762 int i;
284f4730 9763
1113d9db 9764 this_command_key_count = 0;
63020c46 9765 this_command_key_count_reset = 0;
6321824f 9766 this_single_command_key_start = 0;
1113d9db 9767
b0f2a7bf
KH
9768 keys = XVECTOR (saved_keys)->contents;
9769 for (i = 0; i < XVECTOR (saved_keys)->size; i++)
9770 add_command_key (keys[i]);
1113d9db 9771
1b049b51 9772 for (i = 0; i < SCHARS (function); i++)
301738ed 9773 add_command_key (Faref (function, make_number (i)));
1113d9db 9774
301738ed 9775 add_command_key (make_number ('\015'));
284f4730
JB
9776 }
9777
2e1a49ad
SM
9778 last_point_position = saved_last_point_position;
9779 last_point_position_buffer = saved_last_point_position_buffer;
9780
284f4730
JB
9781 UNGCPRO;
9782
0a7f1fc0 9783 function = Fintern (function, Qnil);
d8bcf58e 9784 current_kboard->Vprefix_arg = prefixarg;
d5eecefb
RS
9785 Vthis_command = function;
9786 real_this_command = function;
284f4730 9787
6526ab49
RS
9788 /* If enabled, show which key runs this command. */
9789 if (!NILP (Vsuggest_key_bindings)
71012575 9790 && NILP (Vexecuting_macro)
6526ab49 9791 && SYMBOLP (function))
5434fce6 9792 bindings = Fwhere_is_internal (function, Voverriding_local_map,
8b9940e6 9793 Qt, Qnil, Qnil);
5434fce6
RS
9794 else
9795 bindings = Qnil;
6526ab49 9796
5434fce6
RS
9797 value = Qnil;
9798 GCPRO2 (bindings, value);
9799 value = Fcommand_execute (function, Qt, Qnil, Qnil);
6526ab49 9800
5434fce6 9801 /* If the command has a key binding, print it now. */
3ababa60 9802 if (!NILP (bindings)
ee112567
KH
9803 && ! (VECTORP (bindings) && EQ (Faref (bindings, make_number (0)),
9804 Qmouse_movement)))
5434fce6
RS
9805 {
9806 /* But first wait, and skip the message if there is input. */
426939cc 9807 int delay_time;
985f9f66 9808 if (!NILP (echo_area_buffer[0]))
426939cc
RS
9809 /* This command displayed something in the echo area;
9810 so wait a few seconds, then display our suggestion message. */
9811 delay_time = (NUMBERP (Vsuggest_key_bindings)
9812 ? XINT (Vsuggest_key_bindings) : 2);
9813 else
9814 /* This command left the echo area empty,
9815 so display our message immediately. */
9816 delay_time = 0;
9817
9818 if (!NILP (Fsit_for (make_number (delay_time), Qnil, Qnil))
303b5b3f 9819 && ! CONSP (Vunread_command_events))
6526ab49 9820 {
5434fce6
RS
9821 Lisp_Object binding;
9822 char *newmessage;
985f9f66 9823 int message_p = push_message ();
331379bf 9824 int count = SPECPDL_INDEX ();
5434fce6 9825
65efd7da 9826 record_unwind_protect (pop_message_unwind, Qnil);
5434fce6
RS
9827 binding = Fkey_description (bindings);
9828
9829 newmessage
d5db4077
KR
9830 = (char *) alloca (SCHARS (SYMBOL_NAME (function))
9831 + SBYTES (binding)
5434fce6 9832 + 100);
3ababa60 9833 sprintf (newmessage, "You can run the command `%s' with %s",
d5db4077
KR
9834 SDATA (SYMBOL_NAME (function)),
9835 SDATA (binding));
301738ed
RS
9836 message2_nolog (newmessage,
9837 strlen (newmessage),
9838 STRING_MULTIBYTE (binding));
5434fce6
RS
9839 if (!NILP (Fsit_for ((NUMBERP (Vsuggest_key_bindings)
9840 ? Vsuggest_key_bindings : make_number (2)),
985f9f66
GM
9841 Qnil, Qnil))
9842 && message_p)
9843 restore_message ();
9844
c970a760 9845 unbind_to (count, Qnil);
6526ab49
RS
9846 }
9847 }
9848
5434fce6 9849 RETURN_UNGCPRO (value);
284f4730 9850}
6526ab49 9851
284f4730 9852\f
d9d4c147 9853/* Return nonzero if input events are pending. */
284f4730 9854
dfcf069d 9855int
284f4730
JB
9856detect_input_pending ()
9857{
9858 if (!input_pending)
d9d4c147
KH
9859 get_input_pending (&input_pending, 0);
9860
9861 return input_pending;
9862}
9863
b1878f45 9864/* Return nonzero if input events are pending, and run any pending timers. */
d9d4c147 9865
dfcf069d 9866int
87dd9b9b
RS
9867detect_input_pending_run_timers (do_display)
9868 int do_display;
d9d4c147 9869{
87dd9b9b
RS
9870 int old_timers_run = timers_run;
9871
d9d4c147
KH
9872 if (!input_pending)
9873 get_input_pending (&input_pending, 1);
284f4730 9874
87dd9b9b 9875 if (old_timers_run != timers_run && do_display)
7ee32cda 9876 {
3007ebfb 9877 redisplay_preserve_echo_area (8);
7ee32cda
GM
9878 /* The following fixes a bug when using lazy-lock with
9879 lazy-lock-defer-on-the-fly set to t, i.e. when fontifying
9880 from an idle timer function. The symptom of the bug is that
9881 the cursor sometimes doesn't become visible until the next X
9882 event is processed. --gerd. */
fa971ac3
KL
9883 {
9884 Lisp_Object tail, frame;
9885 FOR_EACH_FRAME (tail, frame)
9886 if (FRAME_RIF (XFRAME (frame)))
9887 FRAME_RIF (XFRAME (frame))->flush_display (XFRAME (frame));
9888 }
7ee32cda 9889 }
87dd9b9b 9890
284f4730
JB
9891 return input_pending;
9892}
9893
ffd56f97
JB
9894/* This is called in some cases before a possible quit.
9895 It cases the next call to detect_input_pending to recompute input_pending.
9896 So calling this function unnecessarily can't do any harm. */
07a59269
KH
9897
9898void
ffd56f97
JB
9899clear_input_pending ()
9900{
9901 input_pending = 0;
9902}
9903
b1878f45
RS
9904/* Return nonzero if there are pending requeued events.
9905 This isn't used yet. The hope is to make wait_reading_process_input
27fd22dc 9906 call it, and return if it runs Lisp code that unreads something.
b1878f45
RS
9907 The problem is, kbd_buffer_get_event needs to be fixed to know what
9908 to do in that case. It isn't trivial. */
9909
dfcf069d 9910int
b1878f45
RS
9911requeued_events_pending_p ()
9912{
9913 return (!NILP (Vunread_command_events) || unread_command_char != -1);
9914}
9915
9916
284f4730 9917DEFUN ("input-pending-p", Finput_pending_p, Sinput_pending_p, 0, 0, 0,
a064684d
RS
9918 doc: /* Return t if command input is currently available with no wait.
9919Actually, the value is nil only if we can be sure that no input is available;
9920if there is a doubt, the value is t. */)
4707d2d0 9921 ()
284f4730 9922{
24597608 9923 if (!NILP (Vunread_command_events) || unread_command_char != -1)
284f4730
JB
9924 return (Qt);
9925
20057d52 9926 get_filtered_input_pending (&input_pending, 1, 1);
d9d4c147 9927 return input_pending > 0 ? Qt : Qnil;
284f4730
JB
9928}
9929
9930DEFUN ("recent-keys", Frecent_keys, Srecent_keys, 0, 0, 0,
4707d2d0
PJ
9931 doc: /* Return vector of last 100 events, not counting those from keyboard macros. */)
9932 ()
284f4730 9933{
5160df46 9934 Lisp_Object *keys = XVECTOR (recent_keys)->contents;
284f4730
JB
9935 Lisp_Object val;
9936
9937 if (total_keys < NUM_RECENT_KEYS)
5160df46 9938 return Fvector (total_keys, keys);
284f4730
JB
9939 else
9940 {
5160df46
JB
9941 val = Fvector (NUM_RECENT_KEYS, keys);
9942 bcopy (keys + recent_keys_index,
284f4730
JB
9943 XVECTOR (val)->contents,
9944 (NUM_RECENT_KEYS - recent_keys_index) * sizeof (Lisp_Object));
5160df46 9945 bcopy (keys,
284f4730
JB
9946 XVECTOR (val)->contents + NUM_RECENT_KEYS - recent_keys_index,
9947 recent_keys_index * sizeof (Lisp_Object));
9948 return val;
9949 }
9950}
9951
9952DEFUN ("this-command-keys", Fthis_command_keys, Sthis_command_keys, 0, 0, 0,
4707d2d0 9953 doc: /* Return the key sequence that invoked this command.
92501652 9954However, if the command has called `read-key-sequence', it returns
4052e7bb 9955the last key sequence that has been read.
4707d2d0
PJ
9956The value is a string or a vector. */)
9957 ()
284f4730 9958{
86e5706b
RS
9959 return make_event_array (this_command_key_count,
9960 XVECTOR (this_command_keys)->contents);
284f4730
JB
9961}
9962
e39da3d7 9963DEFUN ("this-command-keys-vector", Fthis_command_keys_vector, Sthis_command_keys_vector, 0, 0, 0,
92501652
RS
9964 doc: /* Return the key sequence that invoked this command, as a vector.
9965However, if the command has called `read-key-sequence', it returns
4052e7bb 9966the last key sequence that has been read. */)
4707d2d0 9967 ()
e39da3d7
RS
9968{
9969 return Fvector (this_command_key_count,
9970 XVECTOR (this_command_keys)->contents);
9971}
9972
6321824f
RS
9973DEFUN ("this-single-command-keys", Fthis_single_command_keys,
9974 Sthis_single_command_keys, 0, 0, 0,
4707d2d0 9975 doc: /* Return the key sequence that invoked this command.
92501652
RS
9976More generally, it returns the last key sequence read, either by
9977the command loop or by `read-key-sequence'.
4707d2d0
PJ
9978Unlike `this-command-keys', this function's value
9979does not include prefix arguments.
9980The value is always a vector. */)
9981 ()
6321824f 9982{
e39da3d7
RS
9983 return Fvector (this_command_key_count
9984 - this_single_command_key_start,
9985 (XVECTOR (this_command_keys)->contents
9986 + this_single_command_key_start));
6321824f
RS
9987}
9988
7d18f9ae
RS
9989DEFUN ("this-single-command-raw-keys", Fthis_single_command_raw_keys,
9990 Sthis_single_command_raw_keys, 0, 0, 0,
4707d2d0 9991 doc: /* Return the raw events that were read for this command.
92501652
RS
9992More generally, it returns the last key sequence read, either by
9993the command loop or by `read-key-sequence'.
4707d2d0
PJ
9994Unlike `this-single-command-keys', this function's value
9995shows the events before all translations (except for input methods).
9996The value is always a vector. */)
9997 ()
7d18f9ae
RS
9998{
9999 return Fvector (raw_keybuf_count,
10000 (XVECTOR (raw_keybuf)->contents));
10001}
10002
71918b75 10003DEFUN ("reset-this-command-lengths", Freset_this_command_lengths,
4707d2d0 10004 Sreset_this_command_lengths, 0, 0, 0,
63020c46
RS
10005 doc: /* Make the unread events replace the last command and echo.
10006Used in `universal-argument-other-key'.
4707d2d0
PJ
10007
10008`universal-argument-other-key' rereads the event just typed.
10009It then gets translated through `function-key-map'.
63020c46
RS
10010The translated event has to replace the real events,
10011both in the value of (this-command-keys) and in echoing.
10012To achieve this, `universal-argument-other-key' calls
10013`reset-this-command-lengths', which discards the record of reading
10014these events the first time. */)
4707d2d0 10015 ()
71918b75 10016{
22b94eeb
RS
10017 this_command_key_count = before_command_key_count;
10018 if (this_command_key_count < this_single_command_key_start)
10019 this_single_command_key_start = this_command_key_count;
63020c46 10020
22b94eeb
RS
10021 echo_truncate (before_command_echo_length);
10022
63020c46
RS
10023 /* Cause whatever we put into unread-command-events
10024 to echo as if it were being freshly read from the keyboard. */
10025 this_command_key_count_reset = 1;
10026
6e5742a0 10027 return Qnil;
71918b75
RS
10028}
10029
82e6e5af 10030DEFUN ("clear-this-command-keys", Fclear_this_command_keys,
ab1959fc 10031 Sclear_this_command_keys, 0, 1, 0,
4707d2d0 10032 doc: /* Clear out the vector that `this-command-keys' returns.
ab1959fc
KS
10033Also clear the record of the last 100 events, unless optional arg
10034KEEP-RECORD is non-nil. */)
10035 (keep_record)
10036 Lisp_Object keep_record;
82e6e5af 10037{
fb0dde6c 10038 int i;
c60ee5e7 10039
82e6e5af 10040 this_command_key_count = 0;
63020c46 10041 this_command_key_count_reset = 0;
fb0dde6c 10042
ab1959fc
KS
10043 if (NILP (keep_record))
10044 {
10045 for (i = 0; i < XVECTOR (recent_keys)->size; ++i)
10046 XVECTOR (recent_keys)->contents[i] = Qnil;
10047 total_keys = 0;
10048 recent_keys_index = 0;
10049 }
82e6e5af
RS
10050 return Qnil;
10051}
10052
284f4730 10053DEFUN ("recursion-depth", Frecursion_depth, Srecursion_depth, 0, 0, 0,
4707d2d0
PJ
10054 doc: /* Return the current depth in recursive edits. */)
10055 ()
284f4730
JB
10056{
10057 Lisp_Object temp;
bb9e9bed 10058 XSETFASTINT (temp, command_loop_level + minibuf_level);
284f4730
JB
10059 return temp;
10060}
10061
10062DEFUN ("open-dribble-file", Fopen_dribble_file, Sopen_dribble_file, 1, 1,
4707d2d0
PJ
10063 "FOpen dribble file: ",
10064 doc: /* Start writing all keyboard characters to a dribble file called FILE.
10065If FILE is nil, close any open dribble file. */)
10066 (file)
284f4730
JB
10067 Lisp_Object file;
10068{
6cb52def 10069 if (dribble)
284f4730 10070 {
6cb52def
KH
10071 fclose (dribble);
10072 dribble = 0;
284f4730 10073 }
6cb52def 10074 if (!NILP (file))
284f4730
JB
10075 {
10076 file = Fexpand_file_name (file, Qnil);
d5db4077 10077 dribble = fopen (SDATA (file), "w");
ab6ca1de
KH
10078 if (dribble == 0)
10079 report_file_error ("Opening dribble", Fcons (file, Qnil));
284f4730
JB
10080 }
10081 return Qnil;
10082}
10083
10084DEFUN ("discard-input", Fdiscard_input, Sdiscard_input, 0, 0, 0,
4707d2d0 10085 doc: /* Discard the contents of the terminal input buffer.
2b17d5ed 10086Also end any kbd macro being defined. */)
4707d2d0 10087 ()
284f4730 10088{
2b17d5ed
KS
10089 if (!NILP (current_kboard->defining_kbd_macro))
10090 {
10091 /* Discard the last command from the macro. */
10092 Fcancel_kbd_macro_events ();
10093 end_kbd_macro ();
10094 }
10095
284f4730
JB
10096 update_mode_lines++;
10097
24597608 10098 Vunread_command_events = Qnil;
86e5706b 10099 unread_command_char = -1;
284f4730
JB
10100
10101 discard_tty_input ();
10102
7ee32cda 10103 kbd_fetch_ptr = kbd_store_ptr;
284f4730
JB
10104 input_pending = 0;
10105
10106 return Qnil;
10107}
10108\f
10109DEFUN ("suspend-emacs", Fsuspend_emacs, Ssuspend_emacs, 0, 1, "",
4707d2d0
PJ
10110 doc: /* Stop Emacs and return to superior process. You can resume later.
10111If `cannot-suspend' is non-nil, or if the system doesn't support job
10112control, run a subshell instead.
10113
10114If optional arg STUFFSTRING is non-nil, its characters are stuffed
10115to be read as terminal input by Emacs's parent, after suspension.
10116
10117Before suspending, run the normal hook `suspend-hook'.
10118After resumption run the normal hook `suspend-resume-hook'.
10119
10120Some operating systems cannot stop the Emacs process and resume it later.
10121On such systems, Emacs starts a subshell instead of suspending. */)
10122 (stuffstring)
284f4730
JB
10123 Lisp_Object stuffstring;
10124{
aed13378 10125 int count = SPECPDL_INDEX ();
284f4730
JB
10126 int old_height, old_width;
10127 int width, height;
03cee6ae 10128 struct gcpro gcpro1;
284f4730 10129
9628b887
KL
10130 if (tty_list && tty_list->next)
10131 error ("Suspend is not supported with multiple ttys");
10132
284f4730 10133 if (!NILP (stuffstring))
b7826503 10134 CHECK_STRING (stuffstring);
284f4730 10135
1e95ed28
JB
10136 /* Run the functions in suspend-hook. */
10137 if (!NILP (Vrun_hooks))
10138 call1 (Vrun_hooks, intern ("suspend-hook"));
284f4730 10139
b7d2ebbf 10140 GCPRO1 (stuffstring);
16c290d8 10141 get_tty_size (fileno (TTY_INPUT (CURTTY ())), &old_width, &old_height);
28d440ab 10142 reset_all_sys_modes ();
284f4730
JB
10143 /* sys_suspend can get an error if it tries to fork a subshell
10144 and the system resources aren't available for that. */
91a0da02 10145 record_unwind_protect ((Lisp_Object (*) P_ ((Lisp_Object))) init_sys_modes,
fca177d4 10146 (Lisp_Object)CURTTY()); /* XXX */
284f4730 10147 stuff_buffered_input (stuffstring);
8026024c
KH
10148 if (cannot_suspend)
10149 sys_subshell ();
10150 else
10151 sys_suspend ();
284f4730
JB
10152 unbind_to (count, Qnil);
10153
10154 /* Check if terminal/window size has changed.
10155 Note that this is not useful when we are running directly
10156 with a window system; but suspend should be disabled in that case. */
16c290d8 10157 get_tty_size (fileno (TTY_INPUT (CURTTY ())), &width, &height);
284f4730 10158 if (width != old_width || height != old_height)
788f89eb 10159 change_frame_size (SELECTED_FRAME (), height, width, 0, 0, 0);
284f4730 10160
1e95ed28 10161 /* Run suspend-resume-hook. */
284f4730
JB
10162 if (!NILP (Vrun_hooks))
10163 call1 (Vrun_hooks, intern ("suspend-resume-hook"));
df0f2ba1 10164
284f4730
JB
10165 UNGCPRO;
10166 return Qnil;
10167}
10168
10169/* If STUFFSTRING is a string, stuff its contents as pending terminal input.
eb8c3be9 10170 Then in any case stuff anything Emacs has read ahead and not used. */
284f4730 10171
07a59269 10172void
284f4730
JB
10173stuff_buffered_input (stuffstring)
10174 Lisp_Object stuffstring;
10175{
284f4730 10176/* stuff_char works only in BSD, versions 4.2 and up. */
6df54671 10177#ifdef BSD_SYSTEM
284f4730 10178#ifndef BSD4_1
612b78ef 10179 register unsigned char *p;
612b78ef 10180
8c18cbfb 10181 if (STRINGP (stuffstring))
284f4730
JB
10182 {
10183 register int count;
10184
d5db4077
KR
10185 p = SDATA (stuffstring);
10186 count = SBYTES (stuffstring);
284f4730
JB
10187 while (count-- > 0)
10188 stuff_char (*p++);
10189 stuff_char ('\n');
10190 }
c60ee5e7 10191
284f4730 10192 /* Anything we have read ahead, put back for the shell to read. */
beecf6a1 10193 /* ?? What should this do when we have multiple keyboards??
c5fdd383 10194 Should we ignore anything that was typed in at the "wrong" kboard? */
beecf6a1 10195 for (; kbd_fetch_ptr != kbd_store_ptr; kbd_fetch_ptr++)
284f4730 10196 {
c60ee5e7 10197
beecf6a1
KH
10198 if (kbd_fetch_ptr == kbd_buffer + KBD_BUFFER_SIZE)
10199 kbd_fetch_ptr = kbd_buffer;
3b8f9651 10200 if (kbd_fetch_ptr->kind == ASCII_KEYSTROKE_EVENT)
beecf6a1 10201 stuff_char (kbd_fetch_ptr->code);
c60ee5e7 10202
d92f48d3 10203 clear_event (kbd_fetch_ptr);
284f4730 10204 }
c60ee5e7 10205
284f4730
JB
10206 input_pending = 0;
10207#endif
6df54671 10208#endif /* BSD_SYSTEM and not BSD4_1 */
284f4730
JB
10209}
10210\f
dfcf069d 10211void
ffd56f97
JB
10212set_waiting_for_input (time_to_clear)
10213 EMACS_TIME *time_to_clear;
284f4730 10214{
ffd56f97 10215 input_available_clear_time = time_to_clear;
284f4730 10216
114a8b8c 10217 /* Tell handle_interrupt to throw back to read_char, */
284f4730
JB
10218 waiting_for_input = 1;
10219
114a8b8c 10220 /* If handle_interrupt was called before and buffered a C-g,
284f4730
JB
10221 make it run again now, to avoid timing error. */
10222 if (!NILP (Vquit_flag))
10223 quit_throw_to_read_char ();
284f4730
JB
10224}
10225
07a59269 10226void
284f4730
JB
10227clear_waiting_for_input ()
10228{
114a8b8c 10229 /* Tell handle_interrupt not to throw back to read_char, */
284f4730 10230 waiting_for_input = 0;
ffd56f97 10231 input_available_clear_time = 0;
284f4730
JB
10232}
10233
da8e1115 10234/* The SIGINT handler.
114a8b8c 10235
da8e1115
KL
10236 If we have a frame on the controlling tty, the SIGINT was generated
10237 by C-g, so we call handle_interrupt. Otherwise, the handler kills
10238 Emacs. */
284f4730 10239
14e40288 10240static SIGTYPE
91c049d4
RS
10241interrupt_signal (signalnum) /* If we don't have an argument, */
10242 int signalnum; /* some compilers complain in signal calls. */
284f4730 10243{
284f4730
JB
10244 /* Must preserve main program's value of errno. */
10245 int old_errno = errno;
4ca927b4 10246 struct display *display;
284f4730 10247
5970a8cb 10248#if defined (USG) && !defined (POSIX_SIGNALS)
7b00d185
KL
10249 /* USG systems forget handlers when they are used;
10250 must reestablish each time */
10251 signal (SIGINT, interrupt_signal);
10252 signal (SIGQUIT, interrupt_signal);
284f4730
JB
10253#endif /* USG */
10254
4ca927b4
KL
10255 /* See if we have a display on our controlling terminal. */
10256 display = get_named_tty_display (NULL);
10257 if (!display)
3224dac1 10258 {
4ca927b4
KL
10259 /* If there are no frames there, let's pretend that we are a
10260 well-behaving UN*X program and quit. */
3224dac1 10261 Fkill_emacs (Qnil);
3224dac1 10262 }
4ca927b4
KL
10263 else
10264 {
10265 /* Otherwise, the SIGINT was probably generated by C-g. */
10266
10267 /* Set internal_last_event_frame to the top frame of the
10268 controlling tty, if we have a frame there. We disable the
10269 interrupt key on secondary ttys, so the SIGINT must have come
10270 from the controlling tty. */
10271 internal_last_event_frame = display->display_info.tty->top_frame;
10272
10273 handle_interrupt ();
4ca927b4 10274 }
114a8b8c
KL
10275
10276 errno = old_errno;
10277}
10278
da8e1115
KL
10279/* This routine is called at interrupt level in response to C-g.
10280
10281 It is called from the SIGINT handler or kbd_buffer_store_event.
10282
10283 If `waiting_for_input' is non zero, then unless `echoing' is
10284 nonzero, immediately throw back to read_char.
10285
10286 Otherwise it sets the Lisp variable quit-flag not-nil. This causes
10287 eval to throw, when it gets a chance. If quit-flag is already
10288 non-nil, it stops the job right away. */
114a8b8c 10289
114a8b8c
KL
10290static void
10291handle_interrupt ()
10292{
10293 char c;
10294 struct frame *sf = SELECTED_FRAME ();
10295
284f4730
JB
10296 cancel_echoing ();
10297
3224dac1 10298 /* XXX This code needs to be revised for multi-tty support. */
31e4e97b 10299 if (!NILP (Vquit_flag)
788f89eb 10300 && (FRAME_TERMCAP_P (sf) || FRAME_MSDOS_P (sf)))
284f4730 10301 {
31e4e97b
EZ
10302 /* If SIGINT isn't blocked, don't let us be interrupted by
10303 another SIGINT, it might be harmful due to non-reentrancy
10304 in I/O functions. */
10305 sigblock (sigmask (SIGINT));
10306
284f4730 10307 fflush (stdout);
28d440ab 10308 reset_all_sys_modes ();
31e4e97b 10309
284f4730
JB
10310#ifdef SIGTSTP /* Support possible in later USG versions */
10311/*
10312 * On systems which can suspend the current process and return to the original
10313 * shell, this command causes the user to end up back at the shell.
10314 * The "Auto-save" and "Abort" questions are not asked until
10315 * the user elects to return to emacs, at which point he can save the current
10316 * job and either dump core or continue.
10317 */
10318 sys_suspend ();
10319#else
10320#ifdef VMS
10321 if (sys_suspend () == -1)
10322 {
10323 printf ("Not running as a subprocess;\n");
10324 printf ("you can continue or abort.\n");
10325 }
10326#else /* not VMS */
10327 /* Perhaps should really fork an inferior shell?
10328 But that would not provide any way to get back
10329 to the original shell, ever. */
10330 printf ("No support for stopping a process on this operating system;\n");
10331 printf ("you can continue or abort.\n");
10332#endif /* not VMS */
10333#endif /* not SIGTSTP */
80e4aa30
RS
10334#ifdef MSDOS
10335 /* We must remain inside the screen area when the internal terminal
10336 is used. Note that [Enter] is not echoed by dos. */
10337 cursor_to (0, 0);
10338#endif
118d6ca9
RS
10339 /* It doesn't work to autosave while GC is in progress;
10340 the code used for auto-saving doesn't cope with the mark bit. */
10341 if (!gc_in_progress)
9fd7d808 10342 {
118d6ca9
RS
10343 printf ("Auto-save? (y or n) ");
10344 fflush (stdout);
10345 if (((c = getchar ()) & ~040) == 'Y')
10346 {
10347 Fdo_auto_save (Qt, Qnil);
80e4aa30 10348#ifdef MSDOS
118d6ca9 10349 printf ("\r\nAuto-save done");
80e4aa30 10350#else /* not MSDOS */
118d6ca9 10351 printf ("Auto-save done\n");
80e4aa30 10352#endif /* not MSDOS */
118d6ca9
RS
10353 }
10354 while (c != '\n') c = getchar ();
9fd7d808 10355 }
c60ee5e7 10356 else
118d6ca9
RS
10357 {
10358 /* During GC, it must be safe to reenable quitting again. */
10359 Vinhibit_quit = Qnil;
10360#ifdef MSDOS
10361 printf ("\r\n");
10362#endif /* not MSDOS */
10363 printf ("Garbage collection in progress; cannot auto-save now\r\n");
10364 printf ("but will instead do a real quit after garbage collection ends\r\n");
10365 fflush (stdout);
10366 }
10367
80e4aa30
RS
10368#ifdef MSDOS
10369 printf ("\r\nAbort? (y or n) ");
10370#else /* not MSDOS */
284f4730
JB
10371#ifdef VMS
10372 printf ("Abort (and enter debugger)? (y or n) ");
10373#else /* not VMS */
10374 printf ("Abort (and dump core)? (y or n) ");
10375#endif /* not VMS */
80e4aa30 10376#endif /* not MSDOS */
284f4730
JB
10377 fflush (stdout);
10378 if (((c = getchar ()) & ~040) == 'Y')
10379 abort ();
10380 while (c != '\n') c = getchar ();
80e4aa30
RS
10381#ifdef MSDOS
10382 printf ("\r\nContinuing...\r\n");
10383#else /* not MSDOS */
284f4730 10384 printf ("Continuing...\n");
80e4aa30 10385#endif /* not MSDOS */
284f4730 10386 fflush (stdout);
28d440ab 10387 init_all_sys_modes ();
31e4e97b 10388 sigfree ();
284f4730
JB
10389 }
10390 else
10391 {
10392 /* If executing a function that wants to be interrupted out of
10393 and the user has not deferred quitting by binding `inhibit-quit'
10394 then quit right away. */
10395 if (immediate_quit && NILP (Vinhibit_quit))
10396 {
e39da3d7
RS
10397 struct gl_state_s saved;
10398 struct gcpro gcpro1, gcpro2, gcpro3, gcpro4;
10399
284f4730
JB
10400 immediate_quit = 0;
10401 sigfree ();
e39da3d7
RS
10402 saved = gl_state;
10403 GCPRO4 (saved.object, saved.global_code,
10404 saved.current_syntax_table, saved.old_prop);
284f4730 10405 Fsignal (Qquit, Qnil);
e39da3d7
RS
10406 gl_state = saved;
10407 UNGCPRO;
284f4730
JB
10408 }
10409 else
10410 /* Else request quit when it's safe */
10411 Vquit_flag = Qt;
10412 }
10413
10414 if (waiting_for_input && !echoing)
4ca927b4 10415 quit_throw_to_read_char ();
284f4730
JB
10416}
10417
10418/* Handle a C-g by making read_char return C-g. */
10419
07a59269 10420void
284f4730
JB
10421quit_throw_to_read_char ()
10422{
284f4730
JB
10423 sigfree ();
10424 /* Prevent another signal from doing this before we finish. */
f76475ad 10425 clear_waiting_for_input ();
284f4730
JB
10426 input_pending = 0;
10427
24597608 10428 Vunread_command_events = Qnil;
86e5706b 10429 unread_command_char = -1;
284f4730 10430
087feab3
RS
10431#if 0 /* Currently, sit_for is called from read_char without turning
10432 off polling. And that can call set_waiting_for_input.
10433 It seems to be harmless. */
e6b01c14
JB
10434#ifdef POLL_FOR_INPUT
10435 /* May be > 1 if in recursive minibuffer. */
10436 if (poll_suppress_count == 0)
10437 abort ();
10438#endif
087feab3 10439#endif
4c52b668 10440 if (FRAMEP (internal_last_event_frame)
788f89eb 10441 && !EQ (internal_last_event_frame, selected_frame))
719191cf 10442 do_switch_frame (make_lispy_switch_frame (internal_last_event_frame),
827c686c 10443 0, 0);
e6b01c14 10444
284f4730
JB
10445 _longjmp (getcjmp, 1);
10446}
10447\f
10448DEFUN ("set-input-mode", Fset_input_mode, Sset_input_mode, 3, 4, 0,
4707d2d0
PJ
10449 doc: /* Set mode of reading keyboard input.
10450First arg INTERRUPT non-nil means use input interrupts;
10451 nil means use CBREAK mode.
10452Second arg FLOW non-nil means use ^S/^Q flow control for output to terminal
10453 (no effect except in CBREAK mode).
10454Third arg META t means accept 8-bit input (for a Meta key).
10455 META nil means ignore the top bit, on the assumption it is parity.
10456 Otherwise, accept 8-bit input and don't use the top bit for Meta.
10457Optional fourth arg QUIT if non-nil specifies character to use for quitting.
10458See also `current-input-mode'. */)
10459 (interrupt, flow, meta, quit)
284f4730
JB
10460 Lisp_Object interrupt, flow, meta, quit;
10461{
428a555e
KL
10462 /* XXX This function needs to be revised for multi-device support.
10463 Currently it compiles fine, but its semantics are wrong. It sets
10464 global parameters (e.g. interrupt_input) based on only the
10465 current frame's device. */
10466
284f4730 10467 if (!NILP (quit)
8c18cbfb 10468 && (!INTEGERP (quit) || XINT (quit) < 0 || XINT (quit) > 0400))
34f04431
RS
10469 error ("set-input-mode: QUIT must be an ASCII character");
10470
10471#ifdef POLL_FOR_INPUT
10472 stop_polling ();
10473#endif
284f4730 10474
07de30b9 10475#ifndef DOS_NT
2ee250ec 10476 /* this causes startup screen to be restored and messes with the mouse */
2246281f 10477 reset_all_sys_modes ();
2ee250ec
RS
10478#endif
10479
284f4730
JB
10480#ifdef SIGIO
10481/* Note SIGIO has been undef'd if FIONREAD is missing. */
428a555e 10482 if (FRAME_DISPLAY (SELECTED_FRAME ())->read_socket_hook)
9a0f60bb
KH
10483 {
10484 /* When using X, don't give the user a real choice,
10485 because we haven't implemented the mechanisms to support it. */
10486#ifdef NO_SOCK_SIGIO
10487 interrupt_input = 0;
10488#else /* not NO_SOCK_SIGIO */
10489 interrupt_input = 1;
284f4730 10490#endif /* NO_SOCK_SIGIO */
9a0f60bb
KH
10491 }
10492 else
284f4730
JB
10493 interrupt_input = !NILP (interrupt);
10494#else /* not SIGIO */
10495 interrupt_input = 0;
10496#endif /* not SIGIO */
9a0f60bb 10497
284f4730
JB
10498/* Our VMS input only works by interrupts, as of now. */
10499#ifdef VMS
10500 interrupt_input = 1;
10501#endif
9a0f60bb 10502
daf01701
KL
10503 if (FRAME_TERMCAP_P (XFRAME (selected_frame)))
10504 {
10505 struct tty_display_info *tty = CURTTY ();
10506 tty->flow_control = !NILP (flow);
10507 if (NILP (meta))
10508 tty->meta_key = 0;
10509 else if (EQ (meta, Qt))
10510 tty->meta_key = 1;
10511 else
10512 tty->meta_key = 2;
10513 }
10514
2246281f 10515 if (!NILP (quit))
284f4730 10516 /* Don't let this value be out of range. */
2246281f 10517 quit_char = XINT (quit) & (NILP (meta) ? 0177 : 0377);
284f4730 10518
07de30b9 10519#ifndef DOS_NT
2246281f 10520 init_all_sys_modes ();
2ee250ec 10521#endif
34f04431
RS
10522
10523#ifdef POLL_FOR_INPUT
10524 poll_suppress_count = 1;
10525 start_polling ();
10526#endif
284f4730
JB
10527 return Qnil;
10528}
80645119
JB
10529
10530DEFUN ("current-input-mode", Fcurrent_input_mode, Scurrent_input_mode, 0, 0, 0,
4707d2d0
PJ
10531 doc: /* Return information about the way Emacs currently reads keyboard input.
10532The value is a list of the form (INTERRUPT FLOW META QUIT), where
10533 INTERRUPT is non-nil if Emacs is using interrupt-driven input; if
10534 nil, Emacs is using CBREAK mode.
10535 FLOW is non-nil if Emacs uses ^S/^Q flow control for output to the
10536 terminal; this does not apply if Emacs uses interrupt-driven input.
10537 META is t if accepting 8-bit input with 8th bit as Meta flag.
10538 META nil means ignoring the top bit, on the assumption it is parity.
10539 META is neither t nor nil if accepting 8-bit input and using
10540 all 8 bits as the character code.
10541 QUIT is the character Emacs currently uses to quit.
10542The elements of this list correspond to the arguments of
10543`set-input-mode'. */)
10544 ()
80645119
JB
10545{
10546 Lisp_Object val[4];
daf01701
KL
10547 struct frame *sf = XFRAME (selected_frame);
10548
80645119 10549 val[0] = interrupt_input ? Qt : Qnil;
daf01701
KL
10550 if (FRAME_TERMCAP_P (sf))
10551 {
10552 val[1] = FRAME_TTY (sf)->flow_control ? Qt : Qnil;
10553 val[2] = FRAME_TTY (sf)->meta_key == 2
10554 ? make_number (0)
10555 : CURTTY ()->meta_key == 1 ? Qt : Qnil;
10556 }
10557 else
10558 {
10559 val[1] = Qnil;
10560 val[2] = Qt;
10561 }
bb9e9bed 10562 XSETFASTINT (val[3], quit_char);
80645119 10563
bf673a7a 10564 return Flist (sizeof (val) / sizeof (val[0]), val);
80645119
JB
10565}
10566
284f4730 10567\f
6c6083a9 10568/*
c5fdd383 10569 * Set up a new kboard object with reasonable initial values.
6c6083a9
KH
10570 */
10571void
c5fdd383
KH
10572init_kboard (kb)
10573 KBOARD *kb;
6c6083a9 10574{
217258d5 10575 kb->Voverriding_terminal_local_map = Qnil;
6c7178b9 10576 kb->Vlast_command = Qnil;
75045dcb 10577 kb->Vreal_last_command = Qnil;
d8bcf58e 10578 kb->Vprefix_arg = Qnil;
75045dcb 10579 kb->Vlast_prefix_arg = Qnil;
c5fdd383
KH
10580 kb->kbd_queue = Qnil;
10581 kb->kbd_queue_has_data = 0;
10582 kb->immediate_echo = 0;
678e9d18 10583 kb->echo_string = Qnil;
c5fdd383
KH
10584 kb->echo_after_prompt = -1;
10585 kb->kbd_macro_buffer = 0;
10586 kb->kbd_macro_bufsize = 0;
10587 kb->defining_kbd_macro = Qnil;
10588 kb->Vlast_kbd_macro = Qnil;
10589 kb->reference_count = 0;
7c97ffdc 10590 kb->Vsystem_key_alist = Qnil;
142e6c73 10591 kb->system_key_syms = Qnil;
9ba47203 10592 kb->Vdefault_minibuffer_frame = Qnil;
6c6083a9
KH
10593}
10594
10595/*
c5fdd383 10596 * Destroy the contents of a kboard object, but not the object itself.
8e6208c5 10597 * We use this just before deleting it, or if we're going to initialize
6c6083a9
KH
10598 * it a second time.
10599 */
e50b8090 10600static void
c5fdd383
KH
10601wipe_kboard (kb)
10602 KBOARD *kb;
6c6083a9 10603{
c5fdd383
KH
10604 if (kb->kbd_macro_buffer)
10605 xfree (kb->kbd_macro_buffer);
6c6083a9
KH
10606}
10607
e50b8090 10608#ifdef MULTI_KBOARD
a122a38e
GM
10609
10610/* Free KB and memory referenced from it. */
10611
e50b8090
KH
10612void
10613delete_kboard (kb)
a122a38e 10614 KBOARD *kb;
e50b8090
KH
10615{
10616 KBOARD **kbp;
c60ee5e7 10617
e50b8090
KH
10618 for (kbp = &all_kboards; *kbp != kb; kbp = &(*kbp)->next_kboard)
10619 if (*kbp == NULL)
10620 abort ();
10621 *kbp = kb->next_kboard;
a122a38e
GM
10622
10623 /* Prevent a dangling reference to KB. */
18f534df
GM
10624 if (kb == current_kboard
10625 && FRAMEP (selected_frame)
10626 && FRAME_LIVE_P (XFRAME (selected_frame)))
a122a38e 10627 {
18f534df 10628 current_kboard = XFRAME (selected_frame)->kboard;
a122a38e
GM
10629 if (current_kboard == kb)
10630 abort ();
10631 }
c60ee5e7 10632
e50b8090
KH
10633 wipe_kboard (kb);
10634 xfree (kb);
10635}
a122a38e
GM
10636
10637#endif /* MULTI_KBOARD */
e50b8090 10638
dfcf069d 10639void
284f4730
JB
10640init_keyboard ()
10641{
284f4730
JB
10642 /* This is correct before outermost invocation of the editor loop */
10643 command_loop_level = -1;
10644 immediate_quit = 0;
10645 quit_char = Ctl ('g');
24597608 10646 Vunread_command_events = Qnil;
86e5706b 10647 unread_command_char = -1;
87dd9b9b 10648 EMACS_SET_SECS_USECS (timer_idleness_start_time, -1, -1);
284f4730 10649 total_keys = 0;
9deb415a 10650 recent_keys_index = 0;
beecf6a1
KH
10651 kbd_fetch_ptr = kbd_buffer;
10652 kbd_store_ptr = kbd_buffer;
2eb6bfbe 10653#ifdef HAVE_MOUSE
a9d77f1f 10654 do_mouse_tracking = Qnil;
2eb6bfbe 10655#endif
284f4730
JB
10656 input_pending = 0;
10657
4c52b668
KH
10658 /* This means that command_loop_1 won't try to select anything the first
10659 time through. */
10660 internal_last_event_frame = Qnil;
10661 Vlast_event_frame = internal_last_event_frame;
4c52b668 10662
c5fdd383 10663#ifdef MULTI_KBOARD
aaca43a1 10664 current_kboard = initial_kboard;
6c6083a9 10665#endif
aaca43a1 10666 wipe_kboard (current_kboard);
c5fdd383 10667 init_kboard (current_kboard);
07d2b8de 10668
7b00d185 10669 if (!noninteractive)
284f4730 10670 {
3224dac1
KL
10671 /* Before multi-tty support, these handlers used to be installed
10672 only if the current session was a tty session. Now an Emacs
10673 session may have multiple display types, so we always handle
10674 SIGINT. There is special code in interrupt_signal to exit
4ca927b4
KL
10675 Emacs on SIGINT when there are no termcap frames on the
10676 controlling terminal. */
284f4730 10677 signal (SIGINT, interrupt_signal);
cb5df6ae 10678#if defined (HAVE_TERMIO) || defined (HAVE_TERMIOS)
284f4730
JB
10679 /* For systems with SysV TERMIO, C-g is set up for both SIGINT and
10680 SIGQUIT and we can't tell which one it will give us. */
10681 signal (SIGQUIT, interrupt_signal);
10682#endif /* HAVE_TERMIO */
7a80a6f6 10683 }
284f4730
JB
10684/* Note SIGIO has been undef'd if FIONREAD is missing. */
10685#ifdef SIGIO
7a80a6f6
RS
10686 if (!noninteractive)
10687 signal (SIGIO, input_available_signal);
8ea0a720 10688#endif /* SIGIO */
284f4730
JB
10689
10690/* Use interrupt input by default, if it works and noninterrupt input
10691 has deficiencies. */
10692
10693#ifdef INTERRUPT_INPUT
10694 interrupt_input = 1;
10695#else
10696 interrupt_input = 0;
10697#endif
10698
10699/* Our VMS input only works by interrupts, as of now. */
10700#ifdef VMS
10701 interrupt_input = 1;
10702#endif
10703
10704 sigfree ();
10705 dribble = 0;
10706
10707 if (keyboard_init_hook)
10708 (*keyboard_init_hook) ();
10709
10710#ifdef POLL_FOR_INPUT
10711 poll_suppress_count = 1;
10712 start_polling ();
10713#endif
365fa1b3
AC
10714
10715#ifdef MAC_OSX
10716 /* At least provide an escape route since C-g doesn't work. */
10717 signal (SIGINT, interrupt_signal);
10718#endif
284f4730
JB
10719}
10720
df0f2ba1 10721/* This type's only use is in syms_of_keyboard, to initialize the
284f4730
JB
10722 event header symbols and put properties on them. */
10723struct event_head {
10724 Lisp_Object *var;
10725 char *name;
10726 Lisp_Object *kind;
10727};
10728
10729struct event_head head_table[] = {
7406e988
PJ
10730 {&Qmouse_movement, "mouse-movement", &Qmouse_movement},
10731 {&Qscroll_bar_movement, "scroll-bar-movement", &Qmouse_movement},
10732 {&Qswitch_frame, "switch-frame", &Qswitch_frame},
10733 {&Qdelete_frame, "delete-frame", &Qdelete_frame},
10734 {&Qiconify_frame, "iconify-frame", &Qiconify_frame},
a697f886 10735 {&Qmake_frame_visible, "make-frame-visible", &Qmake_frame_visible},
6901b111
SM
10736 /* `select-window' should be handled just like `switch-frame'
10737 in read_key_sequence. */
10738 {&Qselect_window, "select-window", &Qswitch_frame}
284f4730
JB
10739};
10740
dfcf069d 10741void
284f4730
JB
10742syms_of_keyboard ()
10743{
f0c1cc56
GM
10744 Vpre_help_message = Qnil;
10745 staticpro (&Vpre_help_message);
c60ee5e7 10746
8e1e4240
GM
10747 Vlispy_mouse_stem = build_string ("mouse");
10748 staticpro (&Vlispy_mouse_stem);
f0c1cc56 10749
9ea173e8 10750 /* Tool-bars. */
7ee32cda
GM
10751 QCimage = intern (":image");
10752 staticpro (&QCimage);
10753
10754 staticpro (&Qhelp_echo);
10755 Qhelp_echo = intern ("help-echo");
10756
e8886a1d
RS
10757 staticpro (&item_properties);
10758 item_properties = Qnil;
10759
9ea173e8
GM
10760 staticpro (&tool_bar_item_properties);
10761 tool_bar_item_properties = Qnil;
10762 staticpro (&tool_bar_items_vector);
10763 tool_bar_items_vector = Qnil;
7ee32cda 10764
d5eecefb
RS
10765 staticpro (&real_this_command);
10766 real_this_command = Qnil;
10767
d925fb39
RS
10768 Qtimer_event_handler = intern ("timer-event-handler");
10769 staticpro (&Qtimer_event_handler);
10770
2e894dab
RS
10771 Qdisabled_command_hook = intern ("disabled-command-hook");
10772 staticpro (&Qdisabled_command_hook);
10773
284f4730
JB
10774 Qself_insert_command = intern ("self-insert-command");
10775 staticpro (&Qself_insert_command);
10776
10777 Qforward_char = intern ("forward-char");
10778 staticpro (&Qforward_char);
10779
10780 Qbackward_char = intern ("backward-char");
10781 staticpro (&Qbackward_char);
10782
10783 Qdisabled = intern ("disabled");
10784 staticpro (&Qdisabled);
10785
e58aa385
RS
10786 Qundefined = intern ("undefined");
10787 staticpro (&Qundefined);
10788
86e5706b
RS
10789 Qpre_command_hook = intern ("pre-command-hook");
10790 staticpro (&Qpre_command_hook);
10791
10792 Qpost_command_hook = intern ("post-command-hook");
10793 staticpro (&Qpost_command_hook);
10794
59aadc81
RS
10795 Qpost_command_idle_hook = intern ("post-command-idle-hook");
10796 staticpro (&Qpost_command_idle_hook);
10797
3ef14e46
RS
10798 Qdeferred_action_function = intern ("deferred-action-function");
10799 staticpro (&Qdeferred_action_function);
10800
40932d1a
RS
10801 Qcommand_hook_internal = intern ("command-hook-internal");
10802 staticpro (&Qcommand_hook_internal);
10803
284f4730
JB
10804 Qfunction_key = intern ("function-key");
10805 staticpro (&Qfunction_key);
13b5e56c 10806 Qmouse_click = intern ("mouse-click");
284f4730 10807 staticpro (&Qmouse_click);
742fbed7 10808#ifdef WINDOWSNT
1161d367
GV
10809 Qlanguage_change = intern ("language-change");
10810 staticpro (&Qlanguage_change);
07de30b9 10811#endif
a24dc617
RS
10812 Qdrag_n_drop = intern ("drag-n-drop");
10813 staticpro (&Qdrag_n_drop);
284f4730 10814
4ebc27a5
JD
10815 Qsave_session = intern ("save-session");
10816 staticpro(&Qsave_session);
c60ee5e7 10817
5bf68f6e
AS
10818 Qusr1_signal = intern ("usr1-signal");
10819 staticpro (&Qusr1_signal);
10820 Qusr2_signal = intern ("usr2-signal");
10821 staticpro (&Qusr2_signal);
10822
598a9fa7
JB
10823 Qmenu_enable = intern ("menu-enable");
10824 staticpro (&Qmenu_enable);
e8886a1d
RS
10825 Qmenu_alias = intern ("menu-alias");
10826 staticpro (&Qmenu_alias);
10827 QCenable = intern (":enable");
10828 staticpro (&QCenable);
10829 QCvisible = intern (":visible");
10830 staticpro (&QCvisible);
7ee32cda
GM
10831 QChelp = intern (":help");
10832 staticpro (&QChelp);
e8886a1d
RS
10833 QCfilter = intern (":filter");
10834 staticpro (&QCfilter);
10835 QCbutton = intern (":button");
10836 staticpro (&QCbutton);
74c1de23
RS
10837 QCkeys = intern (":keys");
10838 staticpro (&QCkeys);
10839 QCkey_sequence = intern (":key-sequence");
10840 staticpro (&QCkey_sequence);
e8886a1d
RS
10841 QCtoggle = intern (":toggle");
10842 staticpro (&QCtoggle);
10843 QCradio = intern (":radio");
10844 staticpro (&QCradio);
598a9fa7 10845
284f4730
JB
10846 Qmode_line = intern ("mode-line");
10847 staticpro (&Qmode_line);
e5d77022
JB
10848 Qvertical_line = intern ("vertical-line");
10849 staticpro (&Qvertical_line);
3c370943
JB
10850 Qvertical_scroll_bar = intern ("vertical-scroll-bar");
10851 staticpro (&Qvertical_scroll_bar);
5ec75a55
RS
10852 Qmenu_bar = intern ("menu-bar");
10853 staticpro (&Qmenu_bar);
4bb994d1
JB
10854
10855 Qabove_handle = intern ("above-handle");
10856 staticpro (&Qabove_handle);
10857 Qhandle = intern ("handle");
10858 staticpro (&Qhandle);
10859 Qbelow_handle = intern ("below-handle");
10860 staticpro (&Qbelow_handle);
db08707d
RS
10861 Qup = intern ("up");
10862 staticpro (&Qup);
10863 Qdown = intern ("down");
10864 staticpro (&Qdown);
7ee32cda
GM
10865 Qtop = intern ("top");
10866 staticpro (&Qtop);
10867 Qbottom = intern ("bottom");
10868 staticpro (&Qbottom);
10869 Qend_scroll = intern ("end-scroll");
10870 staticpro (&Qend_scroll);
eef28553
SM
10871 Qratio = intern ("ratio");
10872 staticpro (&Qratio);
284f4730 10873
cd21b839 10874 Qevent_kind = intern ("event-kind");
284f4730 10875 staticpro (&Qevent_kind);
88cb0656
JB
10876 Qevent_symbol_elements = intern ("event-symbol-elements");
10877 staticpro (&Qevent_symbol_elements);
0a7f1fc0
JB
10878 Qevent_symbol_element_mask = intern ("event-symbol-element-mask");
10879 staticpro (&Qevent_symbol_element_mask);
10880 Qmodifier_cache = intern ("modifier-cache");
10881 staticpro (&Qmodifier_cache);
284f4730 10882
48e416d4
RS
10883 Qrecompute_lucid_menubar = intern ("recompute-lucid-menubar");
10884 staticpro (&Qrecompute_lucid_menubar);
10885 Qactivate_menubar_hook = intern ("activate-menubar-hook");
10886 staticpro (&Qactivate_menubar_hook);
10887
f4eef8b4
RS
10888 Qpolling_period = intern ("polling-period");
10889 staticpro (&Qpolling_period);
10890
7d18f9ae
RS
10891 Qinput_method_function = intern ("input-method-function");
10892 staticpro (&Qinput_method_function);
10893
d5eecefb
RS
10894 Qinput_method_exit_on_first_char = intern ("input-method-exit-on-first-char");
10895 staticpro (&Qinput_method_exit_on_first_char);
10896 Qinput_method_use_echo_area = intern ("input-method-use-echo-area");
10897 staticpro (&Qinput_method_use_echo_area);
10898
10899 Fset (Qinput_method_exit_on_first_char, Qnil);
10900 Fset (Qinput_method_use_echo_area, Qnil);
10901
e18dfbf4
KR
10902 last_point_position_buffer = Qnil;
10903
284f4730
JB
10904 {
10905 struct event_head *p;
10906
10907 for (p = head_table;
10908 p < head_table + (sizeof (head_table) / sizeof (head_table[0]));
10909 p++)
10910 {
10911 *p->var = intern (p->name);
10912 staticpro (p->var);
10913 Fput (*p->var, Qevent_kind, *p->kind);
88cb0656 10914 Fput (*p->var, Qevent_symbol_elements, Fcons (*p->var, Qnil));
284f4730
JB
10915 }
10916 }
10917
8e1e4240 10918 button_down_location = Fmake_vector (make_number (1), Qnil);
7b4aedb9 10919 staticpro (&button_down_location);
8e1e4240
GM
10920 mouse_syms = Fmake_vector (make_number (1), Qnil);
10921 staticpro (&mouse_syms);
8006e4bb
JR
10922 wheel_syms = Fmake_vector (make_number (2), Qnil);
10923 staticpro (&wheel_syms);
88cb0656
JB
10924
10925 {
10926 int i;
10927 int len = sizeof (modifier_names) / sizeof (modifier_names[0]);
10928
10929 modifier_symbols = Fmake_vector (make_number (len), Qnil);
10930 for (i = 0; i < len; i++)
86e5706b
RS
10931 if (modifier_names[i])
10932 XVECTOR (modifier_symbols)->contents[i] = intern (modifier_names[i]);
88cb0656
JB
10933 staticpro (&modifier_symbols);
10934 }
10935
9deb415a
JB
10936 recent_keys = Fmake_vector (make_number (NUM_RECENT_KEYS), Qnil);
10937 staticpro (&recent_keys);
10938
6569cc8d 10939 this_command_keys = Fmake_vector (make_number (40), Qnil);
715d9345 10940 staticpro (&this_command_keys);
6569cc8d 10941
7d18f9ae
RS
10942 raw_keybuf = Fmake_vector (make_number (30), Qnil);
10943 staticpro (&raw_keybuf);
10944
03b4122a
BF
10945 Qextended_command_history = intern ("extended-command-history");
10946 Fset (Qextended_command_history, Qnil);
10947 staticpro (&Qextended_command_history);
10948
24597608
RS
10949 accent_key_syms = Qnil;
10950 staticpro (&accent_key_syms);
10951
284f4730
JB
10952 func_key_syms = Qnil;
10953 staticpro (&func_key_syms);
10954
a24dc617
RS
10955 drag_n_drop_syms = Qnil;
10956 staticpro (&drag_n_drop_syms);
07de30b9 10957
cd21b839
JB
10958 unread_switch_frame = Qnil;
10959 staticpro (&unread_switch_frame);
10960
fe412364
EN
10961 internal_last_event_frame = Qnil;
10962 staticpro (&internal_last_event_frame);
10963
10964 read_key_sequence_cmd = Qnil;
10965 staticpro (&read_key_sequence_cmd);
10966
759860a6
RS
10967 menu_bar_one_keymap_changed_items = Qnil;
10968 staticpro (&menu_bar_one_keymap_changed_items);
10969
a1706c30 10970 defsubr (&Sevent_convert_list);
284f4730 10971 defsubr (&Sread_key_sequence);
e39da3d7 10972 defsubr (&Sread_key_sequence_vector);
284f4730 10973 defsubr (&Srecursive_edit);
2eb6bfbe 10974#ifdef HAVE_MOUSE
284f4730 10975 defsubr (&Strack_mouse);
2eb6bfbe 10976#endif
284f4730
JB
10977 defsubr (&Sinput_pending_p);
10978 defsubr (&Scommand_execute);
10979 defsubr (&Srecent_keys);
10980 defsubr (&Sthis_command_keys);
e39da3d7 10981 defsubr (&Sthis_command_keys_vector);
6321824f 10982 defsubr (&Sthis_single_command_keys);
7d18f9ae 10983 defsubr (&Sthis_single_command_raw_keys);
71918b75 10984 defsubr (&Sreset_this_command_lengths);
82e6e5af 10985 defsubr (&Sclear_this_command_keys);
284f4730
JB
10986 defsubr (&Ssuspend_emacs);
10987 defsubr (&Sabort_recursive_edit);
10988 defsubr (&Sexit_recursive_edit);
10989 defsubr (&Srecursion_depth);
10990 defsubr (&Stop_level);
10991 defsubr (&Sdiscard_input);
10992 defsubr (&Sopen_dribble_file);
10993 defsubr (&Sset_input_mode);
80645119 10994 defsubr (&Scurrent_input_mode);
284f4730
JB
10995 defsubr (&Sexecute_extended_command);
10996
284f4730 10997 DEFVAR_LISP ("last-command-char", &last_command_char,
4707d2d0 10998 doc: /* Last input event that was part of a command. */);
86e5706b 10999
186cf719 11000 DEFVAR_LISP_NOPRO ("last-command-event", &last_command_char,
4707d2d0 11001 doc: /* Last input event that was part of a command. */);
284f4730 11002
7d6de002 11003 DEFVAR_LISP ("last-nonmenu-event", &last_nonmenu_event,
4707d2d0
PJ
11004 doc: /* Last input event in a command, except for mouse menu events.
11005Mouse menus give back keys that don't look like mouse events;
11006this variable holds the actual mouse event that led to the menu,
11007so that you can determine whether the command was run by mouse or not. */);
7d6de002 11008
284f4730 11009 DEFVAR_LISP ("last-input-char", &last_input_char,
fa1361cb 11010 doc: /* Last input event. */);
86e5706b 11011
186cf719 11012 DEFVAR_LISP_NOPRO ("last-input-event", &last_input_char,
4707d2d0 11013 doc: /* Last input event. */);
284f4730 11014
24597608 11015 DEFVAR_LISP ("unread-command-events", &Vunread_command_events,
4707d2d0
PJ
11016 doc: /* List of events to be read as the command input.
11017These events are processed first, before actual keyboard input. */);
7d18f9ae 11018 Vunread_command_events = Qnil;
284f4730 11019
86e5706b 11020 DEFVAR_INT ("unread-command-char", &unread_command_char,
4707d2d0 11021 doc: /* If not -1, an object to be read as next command input event. */);
86e5706b 11022
7d18f9ae 11023 DEFVAR_LISP ("unread-post-input-method-events", &Vunread_post_input_method_events,
4707d2d0
PJ
11024 doc: /* List of events to be processed as input by input methods.
11025These events are processed after `unread-command-events', but
11026before actual keyboard input. */);
7d18f9ae
RS
11027 Vunread_post_input_method_events = Qnil;
11028
11029 DEFVAR_LISP ("unread-input-method-events", &Vunread_input_method_events,
4707d2d0
PJ
11030 doc: /* List of events to be processed as input by input methods.
11031These events are processed after `unread-command-events', but
11032before actual keyboard input. */);
7d18f9ae
RS
11033 Vunread_input_method_events = Qnil;
11034
284f4730 11035 DEFVAR_LISP ("meta-prefix-char", &meta_prefix_char,
4707d2d0
PJ
11036 doc: /* Meta-prefix character code.
11037Meta-foo as command input turns into this character followed by foo. */);
18cd2eeb 11038 XSETINT (meta_prefix_char, 033);
284f4730 11039
6c7178b9 11040 DEFVAR_KBOARD ("last-command", Vlast_command,
4707d2d0
PJ
11041 doc: /* The last command executed.
11042Normally a symbol with a function definition, but can be whatever was found
11043in the keymap, or whatever the variable `this-command' was set to by that
11044command.
11045
11046The value `mode-exit' is special; it means that the previous command
11047read an event that told it to exit, and it did so and unread that event.
11048In other words, the present command is the event that made the previous
11049command exit.
11050
11051The value `kill-region' is special; it means that the previous command
11052was a kill command. */);
284f4730 11053
75045dcb 11054 DEFVAR_KBOARD ("real-last-command", Vreal_last_command,
4707d2d0 11055 doc: /* Same as `last-command', but never altered by Lisp code. */);
75045dcb 11056
d5eecefb 11057 DEFVAR_LISP ("this-command", &Vthis_command,
4707d2d0
PJ
11058 doc: /* The command now being executed.
11059The command can set this variable; whatever is put here
11060will be in `last-command' during the following command. */);
d5eecefb 11061 Vthis_command = Qnil;
284f4730 11062
8b9940e6 11063 DEFVAR_LISP ("this-original-command", &Vthis_original_command,
f5613d1e
KS
11064 doc: /* The command bound to the current key sequence before remapping.
11065It equals `this-command' if the original command was not remapped through
11066any of the active keymaps. Otherwise, the value of `this-command' is the
177c0ea7 11067result of looking up the original command in the active keymaps. */);
8b9940e6
KS
11068 Vthis_original_command = Qnil;
11069
284f4730 11070 DEFVAR_INT ("auto-save-interval", &auto_save_interval,
4707d2d0
PJ
11071 doc: /* *Number of input events between auto-saves.
11072Zero means disable autosaving due to number of characters typed. */);
284f4730
JB
11073 auto_save_interval = 300;
11074
11075 DEFVAR_LISP ("auto-save-timeout", &Vauto_save_timeout,
4707d2d0
PJ
11076 doc: /* *Number of seconds idle time before auto-save.
11077Zero or nil means disable auto-saving due to idleness.
11078After auto-saving due to this many seconds of idle time,
11079Emacs also does a garbage collection if that seems to be warranted. */);
bb9e9bed 11080 XSETFASTINT (Vauto_save_timeout, 30);
284f4730 11081
39aab679 11082 DEFVAR_LISP ("echo-keystrokes", &Vecho_keystrokes,
4707d2d0
PJ
11083 doc: /* *Nonzero means echo unfinished commands after this many seconds of pause.
11084The value may be integer or floating point. */);
39aab679 11085 Vecho_keystrokes = make_number (1);
284f4730
JB
11086
11087 DEFVAR_INT ("polling-period", &polling_period,
4707d2d0
PJ
11088 doc: /* *Interval between polling for input during Lisp execution.
11089The reason for polling is to make C-g work to stop a running program.
11090Polling is needed only when using X windows and SIGIO does not work.
11091Polling is automatically disabled in all other cases. */);
284f4730 11092 polling_period = 2;
df0f2ba1 11093
564dc952 11094 DEFVAR_LISP ("double-click-time", &Vdouble_click_time,
4707d2d0
PJ
11095 doc: /* *Maximum time between mouse clicks to make a double-click.
11096Measured in milliseconds. nil means disable double-click recognition;
11097t means double-clicks have no time limit and are detected
11098by position only. */);
aab06933 11099 Vdouble_click_time = make_number (500);
fbcd35bd 11100
222d557c 11101 DEFVAR_INT ("double-click-fuzz", &double_click_fuzz,
4707d2d0
PJ
11102 doc: /* *Maximum mouse movement between clicks to make a double-click.
11103On window-system frames, value is the number of pixels the mouse may have
11104moved horizontally or vertically between two clicks to make a double-click.
11105On non window-system frames, value is interpreted in units of 1/8 characters
1ca6a9c4
RS
11106instead of pixels.
11107
11108This variable is also the threshold for motion of the mouse
11109to count as a drag. */);
222d557c 11110 double_click_fuzz = 3;
c60ee5e7 11111
03361bcc 11112 DEFVAR_BOOL ("inhibit-local-menu-bar-menus", &inhibit_local_menu_bar_menus,
4707d2d0 11113 doc: /* *Non-nil means inhibit local map menu bar menus. */);
03361bcc
RS
11114 inhibit_local_menu_bar_menus = 0;
11115
284f4730 11116 DEFVAR_INT ("num-input-keys", &num_input_keys,
4707d2d0
PJ
11117 doc: /* Number of complete key sequences read as input so far.
11118This includes key sequences read from keyboard macros.
11119The number is effectively the number of interactive command invocations. */);
284f4730
JB
11120 num_input_keys = 0;
11121
c43b1734 11122 DEFVAR_INT ("num-nonmacro-input-events", &num_nonmacro_input_events,
4707d2d0
PJ
11123 doc: /* Number of input events read from the keyboard so far.
11124This does not include events generated by keyboard macros. */);
c43b1734 11125 num_nonmacro_input_events = 0;
fa90970d 11126
4c52b668 11127 DEFVAR_LISP ("last-event-frame", &Vlast_event_frame,
4707d2d0
PJ
11128 doc: /* The frame in which the most recently read event occurred.
11129If the last event came from a keyboard macro, this is set to `macro'. */);
4c52b668
KH
11130 Vlast_event_frame = Qnil;
11131
fa90970d
RS
11132 /* This variable is set up in sysdep.c. */
11133 DEFVAR_LISP ("tty-erase-char", &Vtty_erase_char,
4707d2d0 11134 doc: /* The ERASE character as set by the user with stty. */);
fa90970d 11135
7e85b935 11136 DEFVAR_LISP ("help-char", &Vhelp_char,
4707d2d0
PJ
11137 doc: /* Character to recognize as meaning Help.
11138When it is read, do `(eval help-form)', and display result if it's a string.
11139If the value of `help-form' is nil, this char can be read normally. */);
18cd2eeb 11140 XSETINT (Vhelp_char, Ctl ('H'));
284f4730 11141
ecb7cb34 11142 DEFVAR_LISP ("help-event-list", &Vhelp_event_list,
4707d2d0
PJ
11143 doc: /* List of input events to recognize as meaning Help.
11144These work just like the value of `help-char' (see that). */);
ecb7cb34
KH
11145 Vhelp_event_list = Qnil;
11146
284f4730 11147 DEFVAR_LISP ("help-form", &Vhelp_form,
4707d2d0
PJ
11148 doc: /* Form to execute when character `help-char' is read.
11149If the form returns a string, that string is displayed.
11150If `help-form' is nil, the help char is not recognized. */);
284f4730
JB
11151 Vhelp_form = Qnil;
11152
7e85b935 11153 DEFVAR_LISP ("prefix-help-command", &Vprefix_help_command,
4707d2d0
PJ
11154 doc: /* Command to run when `help-char' character follows a prefix key.
11155This command is used only when there is no actual binding
11156for that character after that prefix key. */);
7e85b935
RS
11157 Vprefix_help_command = Qnil;
11158
284f4730 11159 DEFVAR_LISP ("top-level", &Vtop_level,
4707d2d0
PJ
11160 doc: /* Form to evaluate when Emacs starts up.
11161Useful to set before you dump a modified Emacs. */);
284f4730
JB
11162 Vtop_level = Qnil;
11163
11164 DEFVAR_LISP ("keyboard-translate-table", &Vkeyboard_translate_table,
4707d2d0
PJ
11165 doc: /* Translate table for keyboard input, or nil.
11166Each character is looked up in this string and the contents used instead.
11167The value may be a string, a vector, or a char-table.
11168If it is a string or vector of length N,
11169character codes N and up are untranslated.
a0acc6c7
DL
11170In a vector or a char-table, an element which is nil means "no translation".
11171
11172This is applied to the characters supplied to input methods, not their
11173output. See also `translation-table-for-input'. */);
284f4730
JB
11174 Vkeyboard_translate_table = Qnil;
11175
8026024c 11176 DEFVAR_BOOL ("cannot-suspend", &cannot_suspend,
4707d2d0
PJ
11177 doc: /* Non-nil means to always spawn a subshell instead of suspending.
11178\(Even if the operating system has support for stopping a process.\) */);
8026024c
KH
11179 cannot_suspend = 0;
11180
284f4730 11181 DEFVAR_BOOL ("menu-prompting", &menu_prompting,
4707d2d0
PJ
11182 doc: /* Non-nil means prompt with menus when appropriate.
11183This is done when reading from a keymap that has a prompt string,
11184for elements that have prompt strings.
11185The menu is displayed on the screen
11186if X menus were enabled at configuration
11187time and the previous event was a mouse click prefix key.
11188Otherwise, menu prompting uses the echo area. */);
284f4730
JB
11189 menu_prompting = 1;
11190
11191 DEFVAR_LISP ("menu-prompt-more-char", &menu_prompt_more_char,
4707d2d0
PJ
11192 doc: /* Character to see next line of menu prompt.
11193Type this character while in a menu prompt to rotate around the lines of it. */);
18cd2eeb 11194 XSETINT (menu_prompt_more_char, ' ');
9fa4395d
RS
11195
11196 DEFVAR_INT ("extra-keyboard-modifiers", &extra_keyboard_modifiers,
4707d2d0
PJ
11197 doc: /* A mask of additional modifier keys to use with every keyboard character.
11198Emacs applies the modifiers of the character stored here to each keyboard
11199character it reads. For example, after evaluating the expression
11200 (setq extra-keyboard-modifiers ?\\C-x)
11201all input characters will have the control modifier applied to them.
11202
11203Note that the character ?\\C-@, equivalent to the integer zero, does
11204not count as a control character; rather, it counts as a character
11205with no modifiers; thus, setting `extra-keyboard-modifiers' to zero
11206cancels any modification. */);
9fa4395d 11207 extra_keyboard_modifiers = 0;
86e5706b
RS
11208
11209 DEFVAR_LISP ("deactivate-mark", &Vdeactivate_mark,
4707d2d0
PJ
11210 doc: /* If an editing command sets this to t, deactivate the mark afterward.
11211The command loop sets this to nil before each command,
11212and tests the value when the command returns.
11213Buffer modification stores t in this variable. */);
86e5706b
RS
11214 Vdeactivate_mark = Qnil;
11215
b0f2a7bf 11216 DEFVAR_LISP ("command-hook-internal", &Vcommand_hook_internal,
4707d2d0 11217 doc: /* Temporary storage of pre-command-hook or post-command-hook. */);
b0f2a7bf
KH
11218 Vcommand_hook_internal = Qnil;
11219
86e5706b 11220 DEFVAR_LISP ("pre-command-hook", &Vpre_command_hook,
4707d2d0
PJ
11221 doc: /* Normal hook run before each command is executed.
11222If an unhandled error happens in running this hook,
11223the hook value is set to nil, since otherwise the error
11224might happen repeatedly and make Emacs nonfunctional. */);
86e5706b
RS
11225 Vpre_command_hook = Qnil;
11226
11227 DEFVAR_LISP ("post-command-hook", &Vpost_command_hook,
4707d2d0
PJ
11228 doc: /* Normal hook run after each command is executed.
11229If an unhandled error happens in running this hook,
11230the hook value is set to nil, since otherwise the error
11231might happen repeatedly and make Emacs nonfunctional. */);
86e5706b 11232 Vpost_command_hook = Qnil;
48e416d4 11233
59aadc81 11234 DEFVAR_LISP ("post-command-idle-hook", &Vpost_command_idle_hook,
4707d2d0 11235 doc: /* Normal hook run after each command is executed, if idle.
cf9b6656 11236Errors running the hook are caught and ignored. */);
59aadc81
RS
11237 Vpost_command_idle_hook = Qnil;
11238
11239 DEFVAR_INT ("post-command-idle-delay", &post_command_idle_delay,
4707d2d0
PJ
11240 doc: /* Delay time before running `post-command-idle-hook'.
11241This is measured in microseconds. */);
59aadc81
RS
11242 post_command_idle_delay = 100000;
11243
cf24f894
RS
11244#if 0
11245 DEFVAR_LISP ("echo-area-clear-hook", ...,
4707d2d0 11246 doc: /* Normal hook run when clearing the echo area. */);
cf24f894
RS
11247#endif
11248 Qecho_area_clear_hook = intern ("echo-area-clear-hook");
11249 SET_SYMBOL_VALUE (Qecho_area_clear_hook, Qnil);
cdb9d665 11250
48e416d4 11251 DEFVAR_LISP ("lucid-menu-bar-dirty-flag", &Vlucid_menu_bar_dirty_flag,
fa1361cb 11252 doc: /* Non-nil means menu bar, specified Lucid style, needs to be recomputed. */);
48e416d4 11253 Vlucid_menu_bar_dirty_flag = Qnil;
a73c5e29 11254
9f9c0e27 11255 DEFVAR_LISP ("menu-bar-final-items", &Vmenu_bar_final_items,
4707d2d0
PJ
11256 doc: /* List of menu bar items to move to the end of the menu bar.
11257The elements of the list are event types that may have menu bar bindings. */);
9f9c0e27 11258 Vmenu_bar_final_items = Qnil;
e9bf89a0 11259
217258d5
KH
11260 DEFVAR_KBOARD ("overriding-terminal-local-map",
11261 Voverriding_terminal_local_map,
4707d2d0
PJ
11262 doc: /* Per-terminal keymap that overrides all other local keymaps.
11263If this variable is non-nil, it is used as a keymap instead of the
11264buffer's local map, and the minor mode keymaps and text property keymaps.
11265This variable is intended to let commands such as `universal-argument'
11266set up a different keymap for reading the next command. */);
217258d5 11267
9dd3131c 11268 DEFVAR_LISP ("overriding-local-map", &Voverriding_local_map,
4707d2d0
PJ
11269 doc: /* Keymap that overrides all other local keymaps.
11270If this variable is non-nil, it is used as a keymap instead of the
11271buffer's local map, and the minor mode keymaps and text property keymaps. */);
9dd3131c
RS
11272 Voverriding_local_map = Qnil;
11273
d0a49716 11274 DEFVAR_LISP ("overriding-local-map-menu-flag", &Voverriding_local_map_menu_flag,
4707d2d0
PJ
11275 doc: /* Non-nil means `overriding-local-map' applies to the menu bar.
11276Otherwise, the menu bar continues to reflect the buffer's local map
11277and the minor mode maps regardless of `overriding-local-map'. */);
d0a49716
RS
11278 Voverriding_local_map_menu_flag = Qnil;
11279
7f07d5ca 11280 DEFVAR_LISP ("special-event-map", &Vspecial_event_map,
4707d2d0 11281 doc: /* Keymap defining bindings for special events to execute at low level. */);
7f07d5ca
RS
11282 Vspecial_event_map = Fcons (intern ("keymap"), Qnil);
11283
71edead1 11284 DEFVAR_LISP ("track-mouse", &do_mouse_tracking,
4707d2d0 11285 doc: /* *Non-nil means generate motion events for mouse motion. */);
80e4aa30 11286
7c97ffdc 11287 DEFVAR_KBOARD ("system-key-alist", Vsystem_key_alist,
4707d2d0
PJ
11288 doc: /* Alist of system-specific X windows key symbols.
11289Each element should have the form (N . SYMBOL) where N is the
11290numeric keysym code (sans the \"system-specific\" bit 1<<28)
11291and SYMBOL is its name. */);
8a792f3a
RS
11292
11293 DEFVAR_LISP ("deferred-action-list", &Vdeferred_action_list,
4707d2d0
PJ
11294 doc: /* List of deferred actions to be performed at a later time.
11295The precise format isn't relevant here; we just check whether it is nil. */);
8a792f3a
RS
11296 Vdeferred_action_list = Qnil;
11297
11298 DEFVAR_LISP ("deferred-action-function", &Vdeferred_action_function,
4707d2d0
PJ
11299 doc: /* Function to call to handle deferred actions, after each command.
11300This function is called with no arguments after each command
11301whenever `deferred-action-list' is non-nil. */);
8a792f3a 11302 Vdeferred_action_function = Qnil;
6526ab49
RS
11303
11304 DEFVAR_LISP ("suggest-key-bindings", &Vsuggest_key_bindings,
4707d2d0
PJ
11305 doc: /* *Non-nil means show the equivalent key-binding when M-x command has one.
11306The value can be a length of time to show the message for.
11307If the value is non-nil and not a number, we wait 2 seconds. */);
6526ab49 11308 Vsuggest_key_bindings = Qt;
8bb1c042 11309
c04cbc3b 11310 DEFVAR_LISP ("timer-list", &Vtimer_list,
4707d2d0 11311 doc: /* List of active absolute time timers in order of increasing time. */);
c04cbc3b 11312 Vtimer_list = Qnil;
d9d4c147
KH
11313
11314 DEFVAR_LISP ("timer-idle-list", &Vtimer_idle_list,
4707d2d0 11315 doc: /* List of active idle-time timers in order of increasing time. */);
d9d4c147 11316 Vtimer_idle_list = Qnil;
7d18f9ae
RS
11317
11318 DEFVAR_LISP ("input-method-function", &Vinput_method_function,
4707d2d0
PJ
11319 doc: /* If non-nil, the function that implements the current input method.
11320It's called with one argument, a printing character that was just read.
11321\(That means a character with code 040...0176.)
11322Typically this function uses `read-event' to read additional events.
11323When it does so, it should first bind `input-method-function' to nil
11324so it will not be called recursively.
11325
11326The function should return a list of zero or more events
11327to be used as input. If it wants to put back some events
11328to be reconsidered, separately, by the input method,
11329it can add them to the beginning of `unread-command-events'.
11330
11331The input method function can find in `input-method-previous-method'
11332the previous echo area message.
11333
11334The input method function should refer to the variables
11335`input-method-use-echo-area' and `input-method-exit-on-first-char'
11336for guidance on what to do. */);
7d18f9ae 11337 Vinput_method_function = Qnil;
d5eecefb
RS
11338
11339 DEFVAR_LISP ("input-method-previous-message",
11340 &Vinput_method_previous_message,
4707d2d0
PJ
11341 doc: /* When `input-method-function' is called, hold the previous echo area message.
11342This variable exists because `read-event' clears the echo area
11343before running the input method. It is nil if there was no message. */);
d5eecefb 11344 Vinput_method_previous_message = Qnil;
7ee32cda
GM
11345
11346 DEFVAR_LISP ("show-help-function", &Vshow_help_function,
4707d2d0
PJ
11347 doc: /* If non-nil, the function that implements the display of help.
11348It's called with one argument, the help string to display. */);
7ee32cda 11349 Vshow_help_function = Qnil;
adf5cb9c
KH
11350
11351 DEFVAR_LISP ("disable-point-adjustment", &Vdisable_point_adjustment,
4707d2d0
PJ
11352 doc: /* If non-nil, suppress point adjustment after executing a command.
11353
11354After a command is executed, if point is moved into a region that has
11355special properties (e.g. composition, display), we adjust point to
11356the boundary of the region. But, several special commands sets this
11357variable to non-nil, then we suppress the point adjustment.
11358
11359This variable is set to nil before reading a command, and is checked
11360just after executing the command. */);
adf5cb9c
KH
11361 Vdisable_point_adjustment = Qnil;
11362
11363 DEFVAR_LISP ("global-disable-point-adjustment",
11364 &Vglobal_disable_point_adjustment,
4707d2d0
PJ
11365 doc: /* *If non-nil, always suppress point adjustment.
11366
11367The default value is nil, in which case, point adjustment are
11368suppressed only after special commands that set
11369`disable-point-adjustment' (which see) to non-nil. */);
adf5cb9c 11370 Vglobal_disable_point_adjustment = Qnil;
3626fb1a 11371
a1d34b1e 11372 DEFVAR_BOOL ("update-menu-bindings", &update_menu_bindings,
4707d2d0
PJ
11373 doc: /* Non-nil means updating menu bindings is allowed.
11374A value of nil means menu bindings should not be updated.
11375Used during Emacs' startup. */);
3626fb1a 11376 update_menu_bindings = 1;
00392ce6
MB
11377
11378 DEFVAR_LISP ("minibuffer-message-timeout", &Vminibuffer_message_timeout,
4707d2d0
PJ
11379 doc: /* *How long to display an echo-area message when the minibuffer is active.
11380If the value is not a number, such messages don't time out. */);
00392ce6 11381 Vminibuffer_message_timeout = make_number (2);
284f4730
JB
11382}
11383
dfcf069d 11384void
284f4730
JB
11385keys_of_keyboard ()
11386{
11387 initial_define_key (global_map, Ctl ('Z'), "suspend-emacs");
11388 initial_define_key (control_x_map, Ctl ('Z'), "suspend-emacs");
11389 initial_define_key (meta_map, Ctl ('C'), "exit-recursive-edit");
11390 initial_define_key (global_map, Ctl (']'), "abort-recursive-edit");
11391 initial_define_key (meta_map, 'x', "execute-extended-command");
7f07d5ca
RS
11392
11393 initial_define_lispy_key (Vspecial_event_map, "delete-frame",
11394 "handle-delete-frame");
11395 initial_define_lispy_key (Vspecial_event_map, "iconify-frame",
11396 "ignore-event");
11397 initial_define_lispy_key (Vspecial_event_map, "make-frame-visible",
11398 "ignore-event");
a4e19f6e
SM
11399 /* Handling it at such a low-level causes read_key_sequence to get
11400 * confused because it doesn't realize that the current_buffer was
11401 * changed by read_char.
11402 *
11403 * initial_define_lispy_key (Vspecial_event_map, "select-window",
11404 * "handle-select-window"); */
4ebc27a5
JD
11405 initial_define_lispy_key (Vspecial_event_map, "save-session",
11406 "handle-save-session");
284f4730 11407}
1269a761
SM
11408
11409/* Mark the pointers in the kboard objects.
11410 Called by the Fgarbage_collector. */
11411void
11412mark_kboards ()
11413{
11414 KBOARD *kb;
11415 Lisp_Object *p;
11416 for (kb = all_kboards; kb; kb = kb->next_kboard)
11417 {
11418 if (kb->kbd_macro_buffer)
11419 for (p = kb->kbd_macro_buffer; p < kb->kbd_macro_ptr; p++)
3ebb8729
SM
11420 mark_object (*p);
11421 mark_object (kb->Voverriding_terminal_local_map);
11422 mark_object (kb->Vlast_command);
11423 mark_object (kb->Vreal_last_command);
11424 mark_object (kb->Vprefix_arg);
11425 mark_object (kb->Vlast_prefix_arg);
11426 mark_object (kb->kbd_queue);
11427 mark_object (kb->defining_kbd_macro);
11428 mark_object (kb->Vlast_kbd_macro);
11429 mark_object (kb->Vsystem_key_alist);
11430 mark_object (kb->system_key_syms);
11431 mark_object (kb->Vdefault_minibuffer_frame);
11432 mark_object (kb->echo_string);
1269a761
SM
11433 }
11434 {
11435 struct input_event *event;
11436 for (event = kbd_fetch_ptr; event != kbd_store_ptr; event++)
11437 {
11438 if (event == kbd_buffer + KBD_BUFFER_SIZE)
11439 event = kbd_buffer;
3ebb8729
SM
11440 mark_object (event->x);
11441 mark_object (event->y);
11442 mark_object (event->frame_or_window);
11443 mark_object (event->arg);
1269a761
SM
11444 }
11445 }
11446}
ab5796a9
MB
11447
11448/* arch-tag: 774e34d7-6d31-42f3-8397-e079a4e4c9ca
11449 (do not change this comment) */