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