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