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