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