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