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