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