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