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