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