(unwind_to_catch): Call set_poll_suppress_count.
[bpt/emacs.git] / src / keyboard.c
CommitLineData
284f4730 1/* Keyboard and mouse input; editor command loop.
86e5706b 2 Copyright (C) 1985, 1986, 1987, 1988, 1989, 1993 Free Software Foundation, Inc.
284f4730
JB
3
4This file is part of GNU Emacs.
5
6GNU Emacs is free software; you can redistribute it and/or modify
7it under the terms of the GNU General Public License as published by
7b4aedb9 8the Free Software Foundation; either version 2, or (at your option)
284f4730
JB
9any later version.
10
11GNU Emacs is distributed in the hope that it will be useful,
12but WITHOUT ANY WARRANTY; without even the implied warranty of
13MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14GNU General Public License for more details.
15
16You should have received a copy of the GNU General Public License
17along with GNU Emacs; see the file COPYING. If not, write to
18the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */
19
20/* Allow config.h to undefine symbols found here. */
21#include <signal.h>
22
23#include "config.h"
24#include <stdio.h>
25#undef NULL
26#include "termchar.h"
27#include "termopts.h"
28#include "lisp.h"
29#include "termhooks.h"
30#include "macros.h"
ff11dfa1 31#include "frame.h"
284f4730
JB
32#include "window.h"
33#include "commands.h"
34#include "buffer.h"
35#include "disptab.h"
f4255cd1 36#include "dispextern.h"
284f4730 37#include "keyboard.h"
497ba7a1 38#include "intervals.h"
9ac0d9e0 39#include "blockinput.h"
284f4730
JB
40#include <setjmp.h>
41#include <errno.h>
42
284f4730
JB
43#ifndef VMS
44#include <sys/ioctl.h>
284f4730
JB
45#endif
46
52baf19e 47#include "syssignal.h"
6ef5b54f 48#include "systty.h"
ffd56f97 49#include "systime.h"
52baf19e
JB
50
51extern int errno;
52
9ac0d9e0
JB
53/* Variables for blockinput.h: */
54
55/* Non-zero if interrupt input is blocked right now. */
63927c41 56int interrupt_input_blocked;
9ac0d9e0
JB
57
58/* Nonzero means an input interrupt has arrived
59 during the current critical section. */
63927c41 60int interrupt_input_pending;
9ac0d9e0
JB
61
62
284f4730
JB
63#ifdef HAVE_X_WINDOWS
64extern Lisp_Object Vmouse_grabbed;
65
66/* Make all keyboard buffers much bigger when using X windows. */
67#define KBD_BUFFER_SIZE 4096
68#else /* No X-windows, character input */
69#define KBD_BUFFER_SIZE 256
70#endif /* No X-windows */
71
72/* Following definition copied from eval.c */
73
74struct backtrace
75 {
76 struct backtrace *next;
77 Lisp_Object *function;
78 Lisp_Object *args; /* Points to vector of args. */
79 int nargs; /* length of vector. If nargs is UNEVALLED,
80 args points to slot holding list of
81 unevalled args */
82 char evalargs;
83 };
84
85/* Non-nil disable property on a command means
86 do not execute it; call disabled-command-hook's value instead. */
2e894dab 87Lisp_Object Qdisabled, Qdisabled_command_hook;
284f4730
JB
88
89#define NUM_RECENT_KEYS (100)
90int recent_keys_index; /* Index for storing next element into recent_keys */
91int total_keys; /* Total number of elements stored into recent_keys */
5160df46 92Lisp_Object recent_keys; /* A vector, holding the last 100 keystrokes */
284f4730 93
6569cc8d
JB
94/* Vector holding the key sequence that invoked the current command.
95 It is reused for each command, and it may be longer than the current
96 sequence; this_command_key_count indicates how many elements
97 actually mean something.
98 It's easier to staticpro a single Lisp_Object than an array. */
99Lisp_Object this_command_keys;
100int this_command_key_count;
284f4730
JB
101
102extern int minbuf_level;
103
104extern struct backtrace *backtrace_list;
105
106/* Nonzero means do menu prompting. */
107static int menu_prompting;
108
109/* Character to see next line of menu prompt. */
110static Lisp_Object menu_prompt_more_char;
111
112/* For longjmp to where kbd input is being done. */
113static jmp_buf getcjmp;
114
115/* True while doing kbd input. */
116int waiting_for_input;
117
118/* True while displaying for echoing. Delays C-g throwing. */
119static int echoing;
120
121/* Nonzero means C-G should cause immediate error-signal. */
122int immediate_quit;
123
124/* Character to recognize as the help char. */
7e85b935 125Lisp_Object Vhelp_char;
284f4730
JB
126
127/* Form to execute when help char is typed. */
128Lisp_Object Vhelp_form;
129
7e85b935
RS
130/* Command to run when the help character follows a prefix key. */
131Lisp_Object Vprefix_help_command;
132
9f9c0e27
RS
133/* List of items that should move to the end of the menu bar. */
134Lisp_Object Vmenu_bar_final_items;
a73c5e29 135
284f4730
JB
136/* Character that causes a quit. Normally C-g.
137
138 If we are running on an ordinary terminal, this must be an ordinary
139 ASCII char, since we want to make it our interrupt character.
140
141 If we are not running on an ordinary terminal, it still needs to be
142 an ordinary ASCII char. This character needs to be recognized in
143 the input interrupt handler. At this point, the keystroke is
144 represented as a struct input_event, while the desired quit
145 character is specified as a lispy event. The mapping from struct
146 input_events to lispy events cannot run in an interrupt handler,
147 and the reverse mapping is difficult for anything but ASCII
148 keystrokes.
149
150 FOR THESE ELABORATE AND UNSATISFYING REASONS, quit_char must be an
151 ASCII character. */
152int quit_char;
153
154extern Lisp_Object current_global_map;
155extern int minibuf_level;
156
157/* Current depth in recursive edits. */
158int command_loop_level;
159
160/* Total number of times command_loop has read a key sequence. */
161int num_input_keys;
162
163/* Last input character read as a command. */
164Lisp_Object last_command_char;
165
7d6de002
RS
166/* Last input character read as a command, not counting menus
167 reached by the mouse. */
168Lisp_Object last_nonmenu_event;
169
284f4730
JB
170/* Last input character read for any purpose. */
171Lisp_Object last_input_char;
172
dbc4e1c1
JB
173/* If not Qnil, a list of objects to be read as subsequent command input. */
174Lisp_Object unread_command_events;
284f4730 175
86e5706b
RS
176/* If not -1, an event to be read as subsequent command input. */
177int unread_command_char;
178
cd21b839
JB
179/* If not Qnil, this is a switch-frame event which we decided to put
180 off until the end of a key sequence. This should be read as the
dbc4e1c1 181 next command input, after any unread_command_events.
8f805655
JB
182
183 read_key_sequence uses this to delay switch-frame events until the
184 end of the key sequence; Fread_char uses it to put off switch-frame
185 events until a non-ASCII event is acceptable as input. */
186Lisp_Object unread_switch_frame;
cd21b839 187
9fa4395d
RS
188/* A mask of extra modifier bits to put into every keyboard char. */
189int extra_keyboard_modifiers;
190
284f4730
JB
191/* Char to use as prefix when a meta character is typed in.
192 This is bound on entry to minibuffer in case ESC is changed there. */
193
194Lisp_Object meta_prefix_char;
195
196/* Last size recorded for a current buffer which is not a minibuffer. */
197static int last_non_minibuf_size;
198
06ef7355 199/* Number of idle seconds before an auto-save and garbage collection. */
284f4730
JB
200static Lisp_Object Vauto_save_timeout;
201
202/* Total number of times read_char has returned. */
203int num_input_chars;
204
51172b6d
RS
205/* Total number of times read_char has returned, outside of macros. */
206int num_nonmacro_input_chars;
207
284f4730
JB
208/* Auto-save automatically when this many characters have been typed
209 since the last time. */
210
211static int auto_save_interval;
212
51172b6d 213/* Value of num_nonmacro_input_chars as of last auto save. */
284f4730
JB
214
215int last_auto_save;
216
217/* Last command executed by the editor command loop, not counting
218 commands that set the prefix argument. */
219
220Lisp_Object last_command;
221
222/* The command being executed by the command loop.
223 Commands may set this, and the value set will be copied into last_command
224 instead of the actual command. */
225Lisp_Object this_command;
226
07d2b8de 227#ifdef MULTI_FRAME
fce33686 228/* The frame in which the last input event occurred, or Qmacro if the
3c370943
JB
229 last event came from a macro. We use this to determine when to
230 generate switch-frame events. This may be cleared by functions
231 like Fselect_frame, to make sure that a switch-frame event is
232 generated by the next character. */
233Lisp_Object internal_last_event_frame;
234
235/* A user-visible version of the above, intended to allow users to
236 figure out where the last event came from, if the event doesn't
237 carry that information itself (i.e. if it was a character). */
ff11dfa1 238Lisp_Object Vlast_event_frame;
07d2b8de 239#endif
284f4730 240
1113d9db
JB
241/* The timestamp of the last input event we received from the X server.
242 X Windows wants this for selection ownership. */
284f4730
JB
243unsigned long last_event_timestamp;
244
245Lisp_Object Qself_insert_command;
246Lisp_Object Qforward_char;
247Lisp_Object Qbackward_char;
e58aa385 248Lisp_Object Qundefined;
284f4730
JB
249
250/* read_key_sequence stores here the command definition of the
251 key sequence that it reads. */
252Lisp_Object read_key_sequence_cmd;
253
254/* Form to evaluate (if non-nil) when Emacs is started. */
255Lisp_Object Vtop_level;
256
257/* User-supplied string to translate input characters through. */
258Lisp_Object Vkeyboard_translate_table;
259
260/* Keymap mapping ASCII function key sequences onto their preferred forms. */
261extern Lisp_Object Vfunction_key_map;
262
a612e298
RS
263/* Keymap mapping ASCII function key sequences onto their preferred forms. */
264Lisp_Object Vkey_translation_map;
265
86e5706b
RS
266/* Non-nil means deactivate the mark at end of this command. */
267Lisp_Object Vdeactivate_mark;
268
48e416d4
RS
269/* Menu bar specified in Lucid Emacs fashion. */
270
271Lisp_Object Vlucid_menu_bar_dirty_flag;
272Lisp_Object Qrecompute_lucid_menubar, Qactivate_menubar_hook;
273
86e5706b
RS
274/* Hooks to run before and after each command. */
275Lisp_Object Qpre_command_hook, Qpost_command_hook;
276Lisp_Object Vpre_command_hook, Vpost_command_hook;
277
284f4730
JB
278/* File in which we write all commands we read. */
279FILE *dribble;
280
281/* Nonzero if input is available. */
282int input_pending;
283
b04904fb
RS
284/* 1 if should obey 0200 bit in input chars as "Meta", 2 if should
285 keep 0200 bit in input chars. 0 to ignore the 0200 bit. */
286
284f4730
JB
287int meta_key;
288
289extern char *pending_malloc_warning;
290
291/* Circular buffer for pre-read keyboard input. */
292static struct input_event kbd_buffer[KBD_BUFFER_SIZE];
293
7b4aedb9 294/* Vector to GCPRO the frames and windows mentioned in kbd_buffer.
4bb994d1 295
7b4aedb9
JB
296 The interrupt-level event handlers will never enqueue an event on a
297 frame which is not in Vframe_list, and once an event is dequeued,
3c370943
JB
298 internal_last_event_frame or the event itself points to the frame.
299 So that's all fine.
4bb994d1
JB
300
301 But while the event is sitting in the queue, it's completely
302 unprotected. Suppose the user types one command which will run for
303 a while and then delete a frame, and then types another event at
304 the frame that will be deleted, before the command gets around to
305 it. Suppose there are no references to this frame elsewhere in
306 Emacs, and a GC occurs before the second event is dequeued. Now we
307 have an event referring to a freed frame, which will crash Emacs
308 when it is dequeued.
309
3c370943 310 Similar things happen when an event on a scroll bar is enqueued; the
7b4aedb9 311 window may be deleted while the event is in the queue.
4bb994d1 312
7b4aedb9
JB
313 So, we use this vector to protect the frame_or_window field in the
314 event queue. That way, they'll be dequeued as dead frames or
315 windows, but still valid lisp objects.
316
317 If kbd_buffer[i].kind != no_event, then
318 (XVECTOR (kbd_buffer_frame_or_window)->contents[i]
319 == kbd_buffer[i].frame_or_window. */
320static Lisp_Object kbd_buffer_frame_or_window;
4bb994d1 321
284f4730
JB
322/* Pointer to next available character in kbd_buffer.
323 If kbd_fetch_ptr == kbd_store_ptr, the buffer is empty.
324 This may be kbd_buffer + KBD_BUFFER_SIZE, meaning that the the
325 next available char is in kbd_buffer[0]. */
326static struct input_event *kbd_fetch_ptr;
327
328/* Pointer to next place to store character in kbd_buffer. This
329 may be kbd_buffer + KBD_BUFFER_SIZE, meaning that the next
330 character should go in kbd_buffer[0]. */
ff0b5f4c
JB
331#ifdef __STDC__
332volatile
333#endif
284f4730
JB
334static struct input_event *kbd_store_ptr;
335
336/* The above pair of variables forms a "queue empty" flag. When we
337 enqueue a non-hook event, we increment kbd_write_count. When we
338 dequeue a non-hook event, we increment kbd_read_count. We say that
4bb994d1 339 there is input available iff the two counters are not equal.
284f4730
JB
340
341 Why not just have a flag set and cleared by the enqueuing and
342 dequeuing functions? Such a flag could be screwed up by interrupts
343 at inopportune times. */
344
663258f2 345/* If this flag is non-zero, we check mouse_moved to see when the
4bb994d1 346 mouse moves, and motion events will appear in the input stream. If
663258f2
JB
347 it is zero, mouse motion is ignored. */
348static int do_mouse_tracking;
284f4730
JB
349
350/* The window system handling code should set this if the mouse has
351 moved since the last call to the mouse_position_hook. Calling that
352 hook should clear this. Code assumes that if this is set, it can
353 call mouse_position_hook to get the promised position, so don't set
354 it unless you're prepared to substantiate the claim! */
355int mouse_moved;
356
357/* True iff there is an event in kbd_buffer, or if mouse tracking is
358 enabled and there is a new mouse position in the mouse movement
359 buffer. Note that if this is false, that doesn't mean that there
360 is readable input; all the events in the queue might be button-up
361 events, and do_mouse_tracking might be off. */
362#define EVENT_QUEUES_EMPTY \
363 ((kbd_fetch_ptr == kbd_store_ptr) && (!do_mouse_tracking || !mouse_moved))
364
365
366/* Symbols to head events. */
367Lisp_Object Qmouse_movement;
3c370943 368Lisp_Object Qscroll_bar_movement;
cd21b839
JB
369Lisp_Object Qswitch_frame;
370
284f4730
JB
371/* Symbols to denote kinds of events. */
372Lisp_Object Qfunction_key;
373Lisp_Object Qmouse_click;
374/* Lisp_Object Qmouse_movement; - also an event header */
284f4730
JB
375
376/* Properties of event headers. */
377Lisp_Object Qevent_kind;
88cb0656 378Lisp_Object Qevent_symbol_elements;
284f4730 379
598a9fa7
JB
380Lisp_Object Qmenu_enable;
381
0a7f1fc0
JB
382/* An event header symbol HEAD may have a property named
383 Qevent_symbol_element_mask, which is of the form (BASE MODIFIERS);
384 BASE is the base, unmodified version of HEAD, and MODIFIERS is the
385 mask of modifiers applied to it. If present, this is used to help
386 speed up parse_modifiers. */
387Lisp_Object Qevent_symbol_element_mask;
388
389/* An unmodified event header BASE may have a property named
390 Qmodifier_cache, which is an alist mapping modifier masks onto
391 modified versions of BASE. If present, this helps speed up
392 apply_modifiers. */
393Lisp_Object Qmodifier_cache;
394
5ec75a55 395/* Symbols to use for parts of windows. */
284f4730 396Lisp_Object Qmode_line;
e5d77022 397Lisp_Object Qvertical_line;
3c370943 398Lisp_Object Qvertical_scroll_bar;
5ec75a55
RS
399Lisp_Object Qmenu_bar;
400
401extern Lisp_Object Qmenu_enable;
284f4730 402
f4255cd1
JB
403Lisp_Object recursive_edit_unwind (), command_loop ();
404Lisp_Object Fthis_command_keys ();
284f4730 405
ffd56f97
JB
406/* Address (if not 0) of EMACS_TIME to zero out if a SIGIO interrupt
407 happens. */
408EMACS_TIME *input_available_clear_time;
284f4730
JB
409
410/* Nonzero means use SIGIO interrupts; zero means use CBREAK mode.
411 Default is 1 if INTERRUPT_INPUT is defined. */
412int interrupt_input;
413
414/* Nonzero while interrupts are temporarily deferred during redisplay. */
415int interrupts_deferred;
416
417/* nonzero means use ^S/^Q for flow control. */
418int flow_control;
419
284f4730
JB
420/* Allow m- file to inhibit use of FIONREAD. */
421#ifdef BROKEN_FIONREAD
422#undef FIONREAD
423#endif
424
425/* We are unable to use interrupts if FIONREAD is not available,
426 so flush SIGIO so we won't try. */
427#ifndef FIONREAD
428#ifdef SIGIO
429#undef SIGIO
430#endif
431#endif
432
34f04431
RS
433/* If we support X Windows, turn on the code to poll periodically
434 to detect C-g. It isn't actually used when doing interrupt input. */
284f4730 435#ifdef HAVE_X_WINDOWS
284f4730
JB
436#define POLL_FOR_INPUT
437#endif
284f4730
JB
438\f
439/* Global variable declarations. */
440
441/* Function for init_keyboard to call with no args (if nonzero). */
442void (*keyboard_init_hook) ();
443
444static int read_avail_input ();
445static void get_input_pending ();
9fd7d808 446static int readable_events ();
7617111f 447static Lisp_Object read_char_menu_prompt ();
a612e298
RS
448static Lisp_Object make_lispy_event ();
449static Lisp_Object make_lispy_movement ();
450static Lisp_Object modify_event_symbol ();
451static Lisp_Object make_lispy_switch_frame ();
284f4730
JB
452
453/* > 0 if we are to echo keystrokes. */
454static int echo_keystrokes;
455
456/* Nonzero means echo each character as typed. */
457static int immediate_echo;
458
459/* The text we're echoing in the modeline - partial key sequences,
f4255cd1
JB
460 usually. '\0'-terminated. This really shouldn't have a fixed size. */
461static char echobuf[300];
284f4730
JB
462
463/* Where to append more text to echobuf if we want to. */
464static char *echoptr;
465
466#define min(a,b) ((a)<(b)?(a):(b))
467#define max(a,b) ((a)>(b)?(a):(b))
468
469/* Install the string STR as the beginning of the string of echoing,
470 so that it serves as a prompt for the next character.
471 Also start echoing. */
472
473echo_prompt (str)
474 char *str;
475{
476 int len = strlen (str);
477 if (len > sizeof echobuf - 4)
478 len = sizeof echobuf - 4;
0a7f1fc0 479 bcopy (str, echobuf, len);
284f4730 480 echoptr = echobuf + len;
0a7f1fc0 481 *echoptr = '\0';
284f4730
JB
482
483 echo ();
484}
485
486/* Add C to the echo string, if echoing is going on.
487 C can be a character, which is printed prettily ("M-C-x" and all that
488 jazz), or a symbol, whose name is printed. */
489
490echo_char (c)
491 Lisp_Object c;
492{
493 extern char *push_key_description ();
494
495 if (immediate_echo)
496 {
497 char *ptr = echoptr;
498
499 if (ptr != echobuf)
500 *ptr++ = ' ';
501
502 /* If someone has passed us a composite event, use its head symbol. */
88cb0656 503 c = EVENT_HEAD (c);
284f4730
JB
504
505 if (XTYPE (c) == Lisp_Int)
506 {
507 if (ptr - echobuf > sizeof echobuf - 6)
508 return;
509
cb5df6ae 510 ptr = push_key_description (XINT (c), ptr);
284f4730
JB
511 }
512 else if (XTYPE (c) == Lisp_Symbol)
513 {
514 struct Lisp_String *name = XSYMBOL (c)->name;
515 if (((ptr - echobuf) + name->size + 4) > sizeof echobuf)
516 return;
517 bcopy (name->data, ptr, name->size);
518 ptr += name->size;
519 }
520
7e85b935 521 if (echoptr == echobuf && EQ (c, Vhelp_char))
284f4730
JB
522 {
523 strcpy (ptr, " (Type ? for further options)");
524 ptr += strlen (ptr);
525 }
526
527 *ptr = 0;
528 echoptr = ptr;
529
530 echo ();
531 }
532}
533
534/* Temporarily add a dash to the end of the echo string if it's not
535 empty, so that it serves as a mini-prompt for the very next character. */
536
537echo_dash ()
538{
539 if (!immediate_echo && echoptr == echobuf)
540 return;
4bafa972
JB
541 /* Do nothing if not echoing at all. */
542 if (echoptr == 0)
543 return;
284f4730
JB
544
545 /* Put a dash at the end of the buffer temporarily,
546 but make it go away when the next character is added. */
547 echoptr[0] = '-';
548 echoptr[1] = 0;
549
550 echo ();
551}
552
553/* Display the current echo string, and begin echoing if not already
554 doing so. */
555
556echo ()
557{
558 if (!immediate_echo)
559 {
560 int i;
561 immediate_echo = 1;
562
563 for (i = 0; i < this_command_key_count; i++)
6569cc8d 564 echo_char (XVECTOR (this_command_keys)->contents[i]);
284f4730
JB
565 echo_dash ();
566 }
567
568 echoing = 1;
569 message1 (echobuf);
570 echoing = 0;
571
572 if (waiting_for_input && !NILP (Vquit_flag))
573 quit_throw_to_read_char ();
574}
575
576/* Turn off echoing, for the start of a new command. */
577
578cancel_echoing ()
579{
580 immediate_echo = 0;
581 echoptr = echobuf;
582}
583
584/* Return the length of the current echo string. */
585
586static int
587echo_length ()
588{
589 return echoptr - echobuf;
590}
591
592/* Truncate the current echo message to its first LEN chars.
593 This and echo_char get used by read_key_sequence when the user
ff11dfa1 594 switches frames while entering a key sequence. */
284f4730
JB
595
596static void
597echo_truncate (len)
598 int len;
599{
600 echobuf[len] = '\0';
0a7f1fc0 601 echoptr = echobuf + len;
284f4730
JB
602}
603
604\f
605/* Functions for manipulating this_command_keys. */
606static void
607add_command_key (key)
608 Lisp_Object key;
609{
6569cc8d
JB
610 int size = XVECTOR (this_command_keys)->size;
611
612 if (this_command_key_count >= size)
284f4730 613 {
6569cc8d
JB
614 Lisp_Object new_keys = Fmake_vector (make_number (size * 2), Qnil);
615
616 bcopy (XVECTOR (this_command_keys)->contents,
617 XVECTOR (new_keys)->contents,
8f805655 618 size * sizeof (Lisp_Object));
6569cc8d
JB
619
620 this_command_keys = new_keys;
284f4730 621 }
6569cc8d
JB
622
623 XVECTOR (this_command_keys)->contents[this_command_key_count++] = key;
284f4730
JB
624}
625\f
626Lisp_Object
627recursive_edit_1 ()
628{
629 int count = specpdl_ptr - specpdl;
630 Lisp_Object val;
631
632 if (command_loop_level > 0)
633 {
634 specbind (Qstandard_output, Qt);
635 specbind (Qstandard_input, Qt);
636 }
637
638 val = command_loop ();
639 if (EQ (val, Qt))
640 Fsignal (Qquit, Qnil);
641
cb5df6ae 642 return unbind_to (count, Qnil);
284f4730
JB
643}
644
645/* When an auto-save happens, record the "time", and don't do again soon. */
646record_auto_save ()
647{
51172b6d 648 last_auto_save = num_nonmacro_input_chars;
284f4730
JB
649}
650\f
284f4730
JB
651DEFUN ("recursive-edit", Frecursive_edit, Srecursive_edit, 0, 0, "",
652 "Invoke the editor command loop recursively.\n\
653To get out of the recursive edit, a command can do `(throw 'exit nil)';\n\
654that tells this function to return.\n\
655Alternately, `(throw 'exit t)' makes this function signal an error.\n\
656This function is called by the editor initialization to begin editing.")
657 ()
658{
659 int count = specpdl_ptr - specpdl;
660 Lisp_Object val;
661
662 command_loop_level++;
663 update_mode_lines = 1;
664
665 record_unwind_protect (recursive_edit_unwind,
666 (command_loop_level
667 && current_buffer != XBUFFER (XWINDOW (selected_window)->buffer))
668 ? Fcurrent_buffer ()
669 : Qnil);
670 recursive_edit_1 ();
671 return unbind_to (count, Qnil);
672}
673
674Lisp_Object
675recursive_edit_unwind (buffer)
676 Lisp_Object buffer;
677{
678 if (!NILP (buffer))
679 Fset_buffer (buffer);
680
681 command_loop_level--;
682 update_mode_lines = 1;
683 return Qnil;
684}
685\f
686Lisp_Object
687cmd_error (data)
688 Lisp_Object data;
689{
690 Lisp_Object errmsg, tail, errname, file_error;
691 Lisp_Object stream;
692 struct gcpro gcpro1;
693 int i;
694
695 Vquit_flag = Qnil;
696 Vinhibit_quit = Qt;
697 Vstandard_output = Qt;
698 Vstandard_input = Qt;
699 Vexecuting_macro = Qnil;
700 echo_area_glyphs = 0;
701
ff11dfa1 702 /* If the window system or terminal frame hasn't been initialized
284f4730
JB
703 yet, or we're not interactive, it's best to dump this message out
704 to stderr and exit. */
ff11dfa1 705 if (! FRAME_MESSAGE_BUF (selected_frame)
284f4730
JB
706 || noninteractive)
707 stream = Qexternal_debugging_output;
708 else
709 {
710 Fdiscard_input ();
711 bitch_at_user ();
712 stream = Qt;
713 }
714
715 errname = Fcar (data);
716
717 if (EQ (errname, Qerror))
718 {
719 data = Fcdr (data);
720 if (!CONSP (data)) data = Qnil;
721 errmsg = Fcar (data);
722 file_error = Qnil;
723 }
724 else
725 {
726 errmsg = Fget (errname, Qerror_message);
727 file_error = Fmemq (Qfile_error,
728 Fget (errname, Qerror_conditions));
729 }
730
731 /* Print an error message including the data items.
732 This is done by printing it into a scratch buffer
733 and then making a copy of the text in the buffer. */
734
735 if (!CONSP (data)) data = Qnil;
736 tail = Fcdr (data);
737 GCPRO1 (tail);
738
739 /* For file-error, make error message by concatenating
740 all the data items. They are all strings. */
741 if (!NILP (file_error) && !NILP (tail))
742 errmsg = XCONS (tail)->car, tail = XCONS (tail)->cdr;
743
744 if (XTYPE (errmsg) == Lisp_String)
745 Fprinc (errmsg, stream);
746 else
747 write_string_1 ("peculiar error", -1, stream);
748
749 for (i = 0; CONSP (tail); tail = Fcdr (tail), i++)
750 {
751 write_string_1 (i ? ", " : ": ", 2, stream);
752 if (!NILP (file_error))
753 Fprinc (Fcar (tail), stream);
754 else
755 Fprin1 (Fcar (tail), stream);
756 }
757 UNGCPRO;
758
ff11dfa1 759 /* If the window system or terminal frame hasn't been initialized
284f4730 760 yet, or we're in -batch mode, this error should cause Emacs to exit. */
ff11dfa1 761 if (! FRAME_MESSAGE_BUF (selected_frame)
284f4730
JB
762 || noninteractive)
763 {
764 Fterpri (stream);
765 Fkill_emacs (make_number (-1));
766 }
767
768 Vquit_flag = Qnil;
769
770 Vinhibit_quit = Qnil;
771 return make_number (0);
772}
773\f
774Lisp_Object command_loop_1 ();
775Lisp_Object command_loop_2 ();
776Lisp_Object top_level_1 ();
777
778/* Entry to editor-command-loop.
779 This level has the catches for exiting/returning to editor command loop.
780 It returns nil to exit recursive edit, t to abort it. */
781
782Lisp_Object
783command_loop ()
784{
785 if (command_loop_level > 0 || minibuf_level > 0)
786 {
787 return internal_catch (Qexit, command_loop_2, Qnil);
788 }
789 else
790 while (1)
791 {
792 internal_catch (Qtop_level, top_level_1, Qnil);
793 internal_catch (Qtop_level, command_loop_2, Qnil);
794
795 /* End of file in -batch run causes exit here. */
796 if (noninteractive)
797 Fkill_emacs (Qt);
798 }
799}
800
801/* Here we catch errors in execution of commands within the
802 editing loop, and reenter the editing loop.
803 When there is an error, cmd_error runs and returns a non-nil
804 value to us. A value of nil means that cmd_loop_1 itself
805 returned due to end of file (or end of kbd macro). */
806
807Lisp_Object
808command_loop_2 ()
809{
810 register Lisp_Object val;
811
812 do
813 val = internal_condition_case (command_loop_1, Qerror, cmd_error);
814 while (!NILP (val));
815
816 return Qnil;
817}
818
819Lisp_Object
820top_level_2 ()
821{
822 return Feval (Vtop_level);
823}
824
825Lisp_Object
826top_level_1 ()
827{
828 /* On entry to the outer level, run the startup file */
829 if (!NILP (Vtop_level))
830 internal_condition_case (top_level_2, Qerror, cmd_error);
831 else if (!NILP (Vpurify_flag))
832 message ("Bare impure Emacs (standard Lisp code not loaded)");
833 else
834 message ("Bare Emacs (standard Lisp code not loaded)");
835 return Qnil;
836}
837
838DEFUN ("top-level", Ftop_level, Stop_level, 0, 0, "",
839 "Exit all recursive editing levels.")
840 ()
841{
842 Fthrow (Qtop_level, Qnil);
843}
844
845DEFUN ("exit-recursive-edit", Fexit_recursive_edit, Sexit_recursive_edit, 0, 0, "",
846 "Exit from the innermost recursive edit or minibuffer.")
847 ()
848{
849 if (command_loop_level > 0 || minibuf_level > 0)
850 Fthrow (Qexit, Qnil);
851
852 error ("No recursive edit is in progress");
853}
854
855DEFUN ("abort-recursive-edit", Fabort_recursive_edit, Sabort_recursive_edit, 0, 0, "",
856 "Abort the command that requested this recursive edit or minibuffer input.")
857 ()
858{
859 if (command_loop_level > 0 || minibuf_level > 0)
860 Fthrow (Qexit, Qt);
861
862 error ("No recursive edit is in progress");
863}
864\f
865/* This is the actual command reading loop,
866 sans error-handling encapsulation. */
867
868Lisp_Object Fcommand_execute ();
869static int read_key_sequence ();
870
871Lisp_Object
872command_loop_1 ()
873{
48e416d4 874 Lisp_Object cmd, tem;
284f4730
JB
875 int lose;
876 int nonundocount;
877 Lisp_Object keybuf[30];
878 int i;
879 int no_redisplay;
880 int no_direct;
86e5706b
RS
881 int prev_modiff;
882 struct buffer *prev_buffer;
284f4730
JB
883
884 Vprefix_arg = Qnil;
86e5706b 885 Vdeactivate_mark = Qnil;
284f4730
JB
886 waiting_for_input = 0;
887 cancel_echoing ();
888
889 /* Don't clear out last_command at the beginning of a macro. */
890 if (XTYPE (Vexecuting_macro) != Lisp_String)
891 last_command = Qt;
892
893 nonundocount = 0;
894 no_redisplay = 0;
895 this_command_key_count = 0;
896
a612e298
RS
897 /* Make sure this hook runs after commands that get errors and
898 throw to top level. */
899 if (!NILP (Vpost_command_hook))
900 call1 (Vrun_hooks, Qpost_command_hook);
901
284f4730
JB
902 while (1)
903 {
904 /* Install chars successfully executed in kbd macro. */
905
906 if (defining_kbd_macro && NILP (Vprefix_arg))
907 finalize_kbd_macro_chars ();
908
909 /* Make sure the current window's buffer is selected. */
910 if (XBUFFER (XWINDOW (selected_window)->buffer) != current_buffer)
911 set_buffer_internal (XBUFFER (XWINDOW (selected_window)->buffer));
912
913 /* Display any malloc warning that just came out. Use while because
914 displaying one warning can cause another. */
915
916 while (pending_malloc_warning)
917 display_malloc_warning ();
918
919 no_direct = 0;
920
86e5706b
RS
921 Vdeactivate_mark = Qnil;
922
284f4730 923 /* If minibuffer on and echo area in use,
eb8c3be9 924 wait 2 sec and redraw minibuffer. */
284f4730
JB
925
926 if (minibuf_level && echo_area_glyphs)
927 {
f1bed6d8
RS
928 /* Bind inhibit-quit to t so that C-g gets read in
929 rather than quitting back to the minibuffer. */
930 int count = specpdl_ptr - specpdl;
931 specbind (Qinhibit_quit, Qt);
284f4730 932 Fsit_for (make_number (2), Qnil, Qnil);
cb5df6ae 933 unbind_to (count, Qnil);
f1bed6d8 934
284f4730
JB
935 echo_area_glyphs = 0;
936 no_direct = 1;
937 if (!NILP (Vquit_flag))
938 {
939 Vquit_flag = Qnil;
dbc4e1c1 940 unread_command_events = Fcons (make_number (quit_char), Qnil);
284f4730
JB
941 }
942 }
943
944#ifdef C_ALLOCA
945 alloca (0); /* Cause a garbage collection now */
946 /* Since we can free the most stuff here. */
947#endif /* C_ALLOCA */
948
8f805655 949#if 0
ff11dfa1 950#ifdef MULTI_FRAME
8f805655
JB
951 /* Select the frame that the last event came from. Usually,
952 switch-frame events will take care of this, but if some lisp
953 code swallows a switch-frame event, we'll fix things up here.
954 Is this a good idea? */
3c370943
JB
955 if (XTYPE (internal_last_event_frame) == Lisp_Frame
956 && XFRAME (internal_last_event_frame) != selected_frame)
957 Fselect_frame (internal_last_event_frame, Qnil);
cd21b839 958#endif
284f4730 959#endif
48e416d4
RS
960 /* If it has changed current-menubar from previous value,
961 really recompute the menubar from the value. */
a646e520
RS
962 if (! NILP (Vlucid_menu_bar_dirty_flag)
963 && !NILP (Ffboundp (Qrecompute_lucid_menubar)))
48e416d4
RS
964 call0 (Qrecompute_lucid_menubar);
965
0e9d6dd3 966#if 0 /* This is done in xdisp.c now. */
48e416d4
RS
967#ifdef MULTI_FRAME
968 for (tem = Vframe_list; CONSP (tem); tem = XCONS (tem)->cdr)
969 {
970 struct frame *f = XFRAME (XCONS (tem)->car);
971 struct window *w = XWINDOW (FRAME_SELECTED_WINDOW (f));
598a9fa7
JB
972
973 /* If the user has switched buffers or windows, we need to
974 recompute to reflect the new bindings. But we'll
975 recompute when update_mode_lines is set too; that means
976 that people can use force-mode-line-update to request
977 that the menu bar be recomputed. The adverse effect on
978 the rest of the redisplay algorithm is about the same as
979 windows_or_buffers_changed anyway. */
48e416d4 980 if (windows_or_buffers_changed
598a9fa7 981 || update_mode_lines
48e416d4
RS
982 || (XFASTINT (w->last_modified) < MODIFF
983 && (XFASTINT (w->last_modified)
984 <= XBUFFER (w->buffer)->save_modified)))
985 {
986 struct buffer *prev = current_buffer;
987 current_buffer = XBUFFER (w->buffer);
988 FRAME_MENU_BAR_ITEMS (f) = menu_bar_items ();
989 current_buffer = prev;
990 }
991 }
992#endif /* MULTI_FRAME */
0e9d6dd3 993#endif /* 0 */
284f4730 994
8f805655
JB
995 /* Read next key sequence; i gets its length. */
996 i = read_key_sequence (keybuf, (sizeof keybuf / sizeof (keybuf[0])), 0);
997
998 ++num_input_keys;
999
284f4730
JB
1000 /* Now we have read a key sequence of length I,
1001 or else I is 0 and we found end of file. */
1002
1003 if (i == 0) /* End of file -- happens only in */
1004 return Qnil; /* a kbd macro, at the end. */
dcc408a0
RS
1005 /* -1 means read_key_sequence got a menu that was rejected.
1006 Just loop around and read another command. */
1007 if (i == -1)
1008 {
1009 cancel_echoing ();
1010 this_command_key_count = 0;
1011 continue;
1012 }
284f4730 1013
284f4730
JB
1014 last_command_char = keybuf[i - 1];
1015
75c0b143
RS
1016 /* If the previous command tried to force a specific window-start,
1017 forget about that, in case this command moves point far away
1018 from that position. */
1019 XWINDOW (selected_window)->force_start = Qnil;
1020
284f4730
JB
1021 cmd = read_key_sequence_cmd;
1022 if (!NILP (Vexecuting_macro))
1023 {
1024 if (!NILP (Vquit_flag))
1025 {
1026 Vexecuting_macro = Qt;
1027 QUIT; /* Make some noise. */
1028 /* Will return since macro now empty. */
1029 }
1030 }
1031
1032 /* Do redisplay processing after this command except in special
1033 cases identified below that set no_redisplay to 1. */
1034 no_redisplay = 0;
1035
86e5706b
RS
1036 prev_buffer = current_buffer;
1037 prev_modiff = MODIFF;
1038
284f4730
JB
1039 /* Execute the command. */
1040
86e5706b
RS
1041 this_command = cmd;
1042 if (!NILP (Vpre_command_hook))
1043 call1 (Vrun_hooks, Qpre_command_hook);
1044
258bf746 1045 if (NILP (this_command))
284f4730
JB
1046 {
1047 /* nil means key is undefined. */
1048 bitch_at_user ();
1049 defining_kbd_macro = 0;
1050 update_mode_lines = 1;
1051 Vprefix_arg = Qnil;
86e5706b 1052
284f4730
JB
1053 }
1054 else
1055 {
284f4730
JB
1056 if (NILP (Vprefix_arg) && ! no_direct)
1057 {
1058 /* Recognize some common commands in common situations and
1059 do them directly. */
258bf746 1060 if (EQ (this_command, Qforward_char) && point < ZV)
284f4730
JB
1061 {
1062 struct Lisp_Vector *dp
1063 = window_display_table (XWINDOW (selected_window));
1064 lose = FETCH_CHAR (point);
1065 SET_PT (point + 1);
0f7a8fee
JB
1066 if ((dp
1067 ? (XTYPE (DISP_CHAR_VECTOR (dp, lose)) != Lisp_Vector
06ddfb24 1068 && XVECTOR (DISP_CHAR_VECTOR (dp, lose))->size == 1)
0f7a8fee 1069 : (lose >= 0x20 && lose < 0x7f))
284f4730
JB
1070 && (XFASTINT (XWINDOW (selected_window)->last_modified)
1071 >= MODIFF)
1072 && (XFASTINT (XWINDOW (selected_window)->last_point)
1073 == point - 1)
1074 && !windows_or_buffers_changed
1075 && EQ (current_buffer->selective_display, Qnil)
1076 && !detect_input_pending ()
1077 && NILP (Vexecuting_macro))
1078 no_redisplay = direct_output_forward_char (1);
1079 goto directly_done;
1080 }
258bf746 1081 else if (EQ (this_command, Qbackward_char) && point > BEGV)
284f4730
JB
1082 {
1083 struct Lisp_Vector *dp
1084 = window_display_table (XWINDOW (selected_window));
1085 SET_PT (point - 1);
1086 lose = FETCH_CHAR (point);
0f7a8fee
JB
1087 if ((dp
1088 ? (XTYPE (DISP_CHAR_VECTOR (dp, lose)) != Lisp_Vector
06ddfb24 1089 && XVECTOR (DISP_CHAR_VECTOR (dp, lose))->size == 1)
0f7a8fee 1090 : (lose >= 0x20 && lose < 0x7f))
284f4730
JB
1091 && (XFASTINT (XWINDOW (selected_window)->last_modified)
1092 >= MODIFF)
1093 && (XFASTINT (XWINDOW (selected_window)->last_point)
1094 == point + 1)
1095 && !windows_or_buffers_changed
1096 && EQ (current_buffer->selective_display, Qnil)
1097 && !detect_input_pending ()
1098 && NILP (Vexecuting_macro))
1099 no_redisplay = direct_output_forward_char (-1);
1100 goto directly_done;
1101 }
258bf746 1102 else if (EQ (this_command, Qself_insert_command)
284f4730
JB
1103 /* Try this optimization only on ascii keystrokes. */
1104 && XTYPE (last_command_char) == Lisp_Int)
1105 {
1106 unsigned char c = XINT (last_command_char);
1107
1108 if (NILP (Vexecuting_macro) &&
1109 !EQ (minibuf_window, selected_window))
1110 {
1111 if (!nonundocount || nonundocount >= 20)
1112 {
1113 Fundo_boundary ();
1114 nonundocount = 0;
1115 }
1116 nonundocount++;
1117 }
1118 lose = (XFASTINT (XWINDOW (selected_window)->last_modified)
1119 < MODIFF)
1120 || (XFASTINT (XWINDOW (selected_window)->last_point)
1121 != point)
1122 || MODIFF <= current_buffer->save_modified
1123 || windows_or_buffers_changed
1124 || !EQ (current_buffer->selective_display, Qnil)
1125 || detect_input_pending ()
1126 || !NILP (Vexecuting_macro);
b8d9050d 1127 if (internal_self_insert (c, 0))
284f4730
JB
1128 {
1129 lose = 1;
1130 nonundocount = 0;
1131 }
1132 if (!lose &&
1133 (point == ZV || FETCH_CHAR (point) == '\n'))
1134 {
1135 struct Lisp_Vector *dp
1136 = window_display_table (XWINDOW (selected_window));
b8d9050d 1137 int lose = c;
284f4730 1138
0f7a8fee
JB
1139 if (dp)
1140 {
1141 Lisp_Object obj = DISP_CHAR_VECTOR (dp, lose);
1142
1143 if (XTYPE (obj) == Lisp_Vector
1144 && XVECTOR (obj)->size == 1
1145 && (XTYPE (obj = XVECTOR (obj)->contents[0])
1146 == Lisp_Int))
1147 no_redisplay =
1148 direct_output_for_insert (XINT (obj));
1149 }
1150 else
1151 {
1152 if (lose >= 0x20 && lose <= 0x7e)
1153 no_redisplay = direct_output_for_insert (lose);
1154 }
284f4730
JB
1155 }
1156 goto directly_done;
1157 }
1158 }
1159
1160 /* Here for a command that isn't executed directly */
1161
1162 nonundocount = 0;
1163 if (NILP (Vprefix_arg))
1164 Fundo_boundary ();
258bf746 1165 Fcommand_execute (this_command, Qnil);
284f4730 1166
284f4730 1167 }
a764a753 1168 directly_done: ;
284f4730 1169
86e5706b
RS
1170 if (!NILP (Vpost_command_hook))
1171 call1 (Vrun_hooks, Qpost_command_hook);
1172
284f4730
JB
1173 /* If there is a prefix argument,
1174 1) We don't want last_command to be ``universal-argument''
1175 (that would be dumb), so don't set last_command,
1176 2) we want to leave echoing on so that the prefix will be
1177 echoed as part of this key sequence, so don't call
1178 cancel_echoing, and
1179 3) we want to leave this_command_key_count non-zero, so that
1180 read_char will realize that it is re-reading a character, and
1181 not echo it a second time. */
1182 if (NILP (Vprefix_arg))
1183 {
1184 last_command = this_command;
1185 cancel_echoing ();
1186 this_command_key_count = 0;
1187 }
86e5706b
RS
1188
1189 if (!NILP (current_buffer->mark_active))
1190 {
1191 if (!NILP (Vdeactivate_mark) && !NILP (Vtransient_mark_mode))
1192 {
1193 current_buffer->mark_active = Qnil;
1194 call1 (Vrun_hooks, intern ("deactivate-mark-hook"));
1195 }
1196 else if (current_buffer != prev_buffer || MODIFF != prev_modiff)
1197 call1 (Vrun_hooks, intern ("activate-mark-hook"));
1198 }
284f4730
JB
1199 }
1200}
1201\f
1202/* Number of seconds between polling for input. */
1203int polling_period;
1204
eb8c3be9 1205/* Nonzero means polling for input is temporarily suppressed. */
284f4730
JB
1206int poll_suppress_count;
1207
1208#ifdef POLL_FOR_INPUT
1209int polling_for_input;
1210
1211/* Handle an alarm once each second and read pending input
1212 so as to handle a C-g if it comces in. */
1213
1214SIGTYPE
1215input_poll_signal ()
1216{
9ac0d9e0
JB
1217 if (interrupt_input_blocked == 0
1218 && !waiting_for_input)
1219 read_avail_input (0);
284f4730
JB
1220 signal (SIGALRM, input_poll_signal);
1221 alarm (polling_period);
1222}
1223
1224#endif
1225
1226/* Begin signals to poll for input, if they are appropriate.
1227 This function is called unconditionally from various places. */
1228
1229start_polling ()
1230{
1231#ifdef POLL_FOR_INPUT
34f04431 1232 if (read_socket_hook && !interrupt_input)
284f4730
JB
1233 {
1234 poll_suppress_count--;
1235 if (poll_suppress_count == 0)
1236 {
1237 signal (SIGALRM, input_poll_signal);
1238 polling_for_input = 1;
1239 alarm (polling_period);
1240 }
1241 }
1242#endif
1243}
1244
1245/* Turn off polling. */
1246
1247stop_polling ()
1248{
1249#ifdef POLL_FOR_INPUT
34f04431 1250 if (read_socket_hook && !interrupt_input)
284f4730
JB
1251 {
1252 if (poll_suppress_count == 0)
1253 {
1254 polling_for_input = 0;
1255 alarm (0);
1256 }
1257 poll_suppress_count++;
1258 }
1259#endif
1260}
1261\f
faf5e407
JB
1262/* Applying the control modifier to CHARACTER. */
1263int
1264make_ctrl_char (c)
1265 int c;
1266{
d205953b
JB
1267 /* Save the upper bits here. */
1268 int upper = c & ~0177;
1269
1270 c &= 0177;
1271
1272 /* Everything in the columns containing the upper-case letters
1273 denotes a control character. */
1274 if (c >= 0100 && c < 0140)
1275 {
1276 int oc = c;
1277 c &= ~0140;
1278 /* Set the shift modifier for a control char
1279 made from a shifted letter. But only for letters! */
1280 if (oc >= 'A' && oc <= 'Z')
1281 c |= shift_modifier;
1282 }
1283
1284 /* The lower-case letters denote control characters too. */
1285 else if (c >= 'a' && c <= 'z')
1286 c &= ~0140;
1287
1288 /* Include the bits for control and shift
1289 only if the basic ASCII code can't indicate them. */
1290 else if (c >= ' ')
1291 c |= ctrl_modifier;
1292
1293 /* Replace the high bits. */
1294 c |= (upper & ~ctrl_modifier);
faf5e407
JB
1295
1296 return c;
1297}
1298
1299
1300\f
284f4730
JB
1301/* Input of single characters from keyboard */
1302
1303Lisp_Object print_help ();
1304static Lisp_Object kbd_buffer_get_event ();
1305
1306/* read a character from the keyboard; call the redisplay if needed */
1307/* commandflag 0 means do not do auto-saving, but do do redisplay.
1308 -1 means do not do redisplay, but do do autosaving.
1309 1 means do both. */
1310
7d6de002
RS
1311/* The arguments MAPS and NMAPS are for menu prompting.
1312 MAPS is an array of keymaps; NMAPS is the length of MAPS.
1313
1314 PREV_EVENT is the previous input event, or nil if we are reading
1315 the first event of a key sequence.
1316
6569cc8d
JB
1317 If USED_MOUSE_MENU is non-zero, then we set *USED_MOUSE_MENU to 1
1318 if we used a mouse menu to read the input, or zero otherwise. If
dcc408a0
RS
1319 USED_MOUSE_MENU is zero, *USED_MOUSE_MENU is left alone.
1320
1321 Value is t if we showed a menu and the user rejected it. */
7d6de002 1322
284f4730 1323Lisp_Object
7d6de002 1324read_char (commandflag, nmaps, maps, prev_event, used_mouse_menu)
284f4730 1325 int commandflag;
7d6de002
RS
1326 int nmaps;
1327 Lisp_Object *maps;
1328 Lisp_Object prev_event;
1329 int *used_mouse_menu;
284f4730
JB
1330{
1331 register Lisp_Object c;
1332 int count;
1333 jmp_buf save_jump;
1334
dbc4e1c1 1335 if (CONSP (unread_command_events))
284f4730 1336 {
dbc4e1c1
JB
1337 c = XCONS (unread_command_events)->car;
1338 unread_command_events = XCONS (unread_command_events)->cdr;
284f4730 1339
284f4730
JB
1340 if (this_command_key_count == 0)
1341 goto reread_first;
1342 else
1343 goto reread;
1344 }
1345
86e5706b
RS
1346 if (unread_command_char != -1)
1347 {
1348 XSET (c, Lisp_Int, unread_command_char);
1349 unread_command_char = -1;
1350
1351 if (this_command_key_count == 0)
1352 goto reread_first;
1353 else
1354 goto reread;
1355 }
1356
284f4730
JB
1357 if (!NILP (Vexecuting_macro))
1358 {
07d2b8de 1359#ifdef MULTI_FRAME
fce33686
JB
1360 /* We set this to Qmacro; since that's not a frame, nobody will
1361 try to switch frames on us, and the selected window will
1362 remain unchanged.
1363
1364 Since this event came from a macro, it would be misleading to
eb8c3be9 1365 leave internal_last_event_frame set to wherever the last
3c370943
JB
1366 real event came from. Normally, a switch-frame event selects
1367 internal_last_event_frame after each command is read, but
1368 events read from a macro should never cause a new frame to be
1369 selected. */
1370 Vlast_event_frame = internal_last_event_frame = Qmacro;
07d2b8de 1371#endif
fce33686 1372
663258f2
JB
1373 /* Exit the macro if we are at the end.
1374 Also, some things replace the macro with t
1375 to force an early exit. */
1376 if (EQ (Vexecuting_macro, Qt)
1377 || executing_macro_index >= XFASTINT (Flength (Vexecuting_macro)))
284f4730
JB
1378 {
1379 XSET (c, Lisp_Int, -1);
1380 return c;
1381 }
1382
1383 c = Faref (Vexecuting_macro, make_number (executing_macro_index));
86e5706b
RS
1384 if (XTYPE (Vexecuting_macro) == Lisp_String
1385 && (XINT (c) & 0x80))
1386 XFASTINT (c) = CHAR_META | (XINT (c) & ~0x80);
1387
284f4730
JB
1388 executing_macro_index++;
1389
1390 goto from_macro;
1391 }
1392
cd21b839
JB
1393 if (!NILP (unread_switch_frame))
1394 {
1395 c = unread_switch_frame;
1396 unread_switch_frame = Qnil;
1397
1398 /* This event should make it into this_command_keys, and get echoed
f4255cd1
JB
1399 again, so we go to reread_first, rather than reread. */
1400 goto reread_first;
cd21b839
JB
1401 }
1402
284f4730 1403 /* Save outer setjmp data, in case called recursively. */
f76475ad 1404 save_getcjmp (save_jump);
284f4730
JB
1405
1406 stop_polling ();
1407
1408 if (commandflag >= 0 && !input_pending && !detect_input_pending ())
1409 redisplay ();
1410
1411 if (_setjmp (getcjmp))
1412 {
1413 XSET (c, Lisp_Int, quit_char);
07d2b8de 1414#ifdef MULTI_FRAME
3c370943
JB
1415 XSET (internal_last_event_frame, Lisp_Frame, selected_frame);
1416 Vlast_event_frame = internal_last_event_frame;
07d2b8de 1417#endif
04904c29
RS
1418 /* If we report the quit char as an event,
1419 don't do so more than once. */
1420 if (!NILP (Vinhibit_quit))
1421 Vquit_flag = Qnil;
284f4730 1422
284f4730
JB
1423 goto non_reread;
1424 }
1425
1426 /* Message turns off echoing unless more keystrokes turn it on again. */
1427 if (echo_area_glyphs && *echo_area_glyphs && echo_area_glyphs != echobuf)
1428 cancel_echoing ();
1429 else
1430 /* If already echoing, continue. */
1431 echo_dash ();
1432
1433 /* If in middle of key sequence and minibuffer not active,
1434 start echoing if enough time elapses. */
1435 if (minibuf_level == 0 && !immediate_echo && this_command_key_count > 0
1436 && echo_keystrokes > 0
1437 && (echo_area_glyphs == 0 || *echo_area_glyphs == 0))
1438 {
1439 Lisp_Object tem0;
1440
7d6de002
RS
1441 /* After a mouse event, start echoing right away.
1442 This is because we are probably about to display a menu,
1443 and we don't want to delay before doing so. */
dbc4e1c1 1444 if (EVENT_HAS_PARAMETERS (prev_event))
284f4730 1445 echo ();
7d6de002
RS
1446 else
1447 {
1448 tem0 = sit_for (echo_keystrokes, 0, 1, 1);
1449 if (EQ (tem0, Qt))
1450 echo ();
1451 }
284f4730
JB
1452 }
1453
1454 /* Maybe auto save due to number of keystrokes or idle time. */
1455
1456 if (commandflag != 0
1457 && auto_save_interval > 0
51172b6d 1458 && num_nonmacro_input_chars - last_auto_save > max (auto_save_interval, 20)
284f4730
JB
1459 && !detect_input_pending ())
1460 {
1461 jmp_buf temp;
1462 save_getcjmp (temp);
1463 Fdo_auto_save (Qnil, Qnil);
1464 restore_getcjmp (temp);
1465 }
1466
7d6de002
RS
1467 /* Try reading a character via menu prompting.
1468 Try this before the sit-for, because the sit-for
1469 would do the wrong thing if we are supposed to do
1470 menu prompting. */
1471 c = Qnil;
1472 if (INTERACTIVE && !NILP (prev_event))
1473 c = read_char_menu_prompt (nmaps, maps, prev_event, used_mouse_menu);
1474
284f4730
JB
1475 /* Slow down auto saves logarithmically in size of current buffer,
1476 and garbage collect while we're at it. */
26c1639e 1477 if (INTERACTIVE && NILP (c))
7d6de002
RS
1478 {
1479 int delay_level, buffer_size;
1480
1481 if (! MINI_WINDOW_P (XWINDOW (selected_window)))
1482 last_non_minibuf_size = Z - BEG;
1483 buffer_size = (last_non_minibuf_size >> 8) + 1;
1484 delay_level = 0;
1485 while (buffer_size > 64)
1486 delay_level++, buffer_size -= buffer_size >> 2;
1487 if (delay_level < 4) delay_level = 4;
1488 /* delay_level is 4 for files under around 50k, 7 at 100k,
1489 9 at 200k, 11 at 300k, and 12 at 500k. It is 15 at 1 meg. */
1490
1491 /* Auto save if enough time goes by without input. */
1492 if (commandflag != 0
51172b6d 1493 && num_nonmacro_input_chars > last_auto_save
7d6de002
RS
1494 && XTYPE (Vauto_save_timeout) == Lisp_Int
1495 && XINT (Vauto_save_timeout) > 0)
1496 {
1497 Lisp_Object tem0;
1498 int delay = delay_level * XFASTINT (Vauto_save_timeout) / 4;
1499 tem0 = sit_for (delay, 0, 1, 1);
1500 if (EQ (tem0, Qt))
1501 {
1502 jmp_buf temp;
1503 save_getcjmp (temp);
1504 Fdo_auto_save (Qnil, Qnil);
1505 restore_getcjmp (temp);
1506
1507 /* If we have auto-saved and there is still no input
1508 available, garbage collect if there has been enough
1509 consing going on to make it worthwhile. */
1510 if (!detect_input_pending ()
1511 && consing_since_gc > gc_cons_threshold / 2)
7e85b935
RS
1512 {
1513 Fgarbage_collect ();
1514 redisplay ();
1515 }
7d6de002
RS
1516 }
1517 }
1518 }
284f4730
JB
1519
1520 /* Actually read a character, waiting if necessary. */
4eb4f926 1521 while (NILP (c))
1e12dd87
RS
1522 {
1523 c = kbd_buffer_get_event ();
1524 if (!NILP (c))
1525 break;
1526 if (commandflag >= 0 && !input_pending && !detect_input_pending ())
1527 redisplay ();
1528 }
284f4730 1529
284f4730 1530 /* Terminate Emacs in batch mode if at eof. */
7d6de002 1531 if (noninteractive && XTYPE (c) == Lisp_Int && XINT (c) < 0)
284f4730
JB
1532 Fkill_emacs (make_number (1));
1533
80645119
JB
1534 if (XTYPE (c) == Lisp_Int)
1535 {
1536 /* Add in any extra modifiers, where appropriate. */
1537 if ((extra_keyboard_modifiers & CHAR_CTL)
1538 || ((extra_keyboard_modifiers & 0177) < ' '
1539 && (extra_keyboard_modifiers & 0177) != 0))
faf5e407 1540 XSETINT (c, make_ctrl_char (XINT (c)));
80645119
JB
1541
1542 /* Transfer any other modifier bits directly from
1543 extra_keyboard_modifiers to c. Ignore the actual character code
1544 in the low 16 bits of extra_keyboard_modifiers. */
b8d9050d 1545 XSETINT (c, XINT (c) | (extra_keyboard_modifiers & ~0xff7f & ~CHAR_CTL));
80645119 1546 }
9fa4395d 1547
284f4730
JB
1548 non_reread:
1549
f76475ad 1550 restore_getcjmp (save_jump);
284f4730
JB
1551
1552 start_polling ();
1553
1554 echo_area_glyphs = 0;
1555
1556 /* Handle things that only apply to characters. */
1557 if (XTYPE (c) == Lisp_Int)
1558 {
1559 /* If kbd_buffer_get_event gave us an EOF, return that. */
86e5706b 1560 if (XINT (c) == -1)
284f4730
JB
1561 return c;
1562
284f4730 1563 if (XTYPE (Vkeyboard_translate_table) == Lisp_String
f4255cd1
JB
1564 && XSTRING (Vkeyboard_translate_table)->size > XFASTINT (c))
1565 XSETINT (c, XSTRING (Vkeyboard_translate_table)->data[XFASTINT (c)]);
284f4730
JB
1566 }
1567
1568 total_keys++;
5160df46
JB
1569 XVECTOR (recent_keys)->contents[recent_keys_index] = c;
1570 if (++recent_keys_index >= NUM_RECENT_KEYS)
284f4730
JB
1571 recent_keys_index = 0;
1572
1573 /* Write c to the dribble file. If c is a lispy event, write
1574 the event's symbol to the dribble file, in <brackets>. Bleaugh.
1575 If you, dear reader, have a better idea, you've got the source. :-) */
1576 if (dribble)
1577 {
1578 if (XTYPE (c) == Lisp_Int)
f4255cd1 1579 putc (XINT (c), dribble);
284f4730
JB
1580 else
1581 {
1582 Lisp_Object dribblee = c;
1583
1584 /* If it's a structured event, take the event header. */
88cb0656 1585 dribblee = EVENT_HEAD (dribblee);
284f4730 1586
8f805655 1587 if (XTYPE (dribblee) == Lisp_Symbol)
284f4730
JB
1588 {
1589 putc ('<', dribble);
8f805655
JB
1590 fwrite (XSYMBOL (dribblee)->name->data, sizeof (char),
1591 XSYMBOL (dribblee)->name->size,
284f4730
JB
1592 dribble);
1593 putc ('>', dribble);
1594 }
1595 }
1596
1597 fflush (dribble);
1598 }
1599
1600 store_kbd_macro_char (c);
1601
51172b6d
RS
1602 num_nonmacro_input_chars++;
1603
284f4730
JB
1604 from_macro:
1605 reread_first:
284f4730 1606
4bb994d1
JB
1607 /* Record this character as part of the current key.
1608 Don't record mouse motion; it should never matter. */
1609 if (! (EVENT_HAS_PARAMETERS (c)
1610 && EQ (EVENT_HEAD_KIND (EVENT_HEAD (c)), Qmouse_movement)))
7b4aedb9
JB
1611 {
1612 echo_char (c);
1613 add_command_key (c);
1614 }
284f4730
JB
1615
1616 /* Re-reading in the middle of a command */
1617 reread:
1618 last_input_char = c;
1619 num_input_chars++;
1620
1621 /* Process the help character specially if enabled */
7e85b935 1622 if (EQ (c, Vhelp_char) && !NILP (Vhelp_form))
284f4730
JB
1623 {
1624 Lisp_Object tem0;
1625 count = specpdl_ptr - specpdl;
1626
1627 record_unwind_protect (Fset_window_configuration,
1628 Fcurrent_window_configuration (Qnil));
1629
1630 tem0 = Feval (Vhelp_form);
1631 if (XTYPE (tem0) == Lisp_String)
1632 internal_with_output_to_temp_buffer ("*Help*", print_help, tem0);
1633
1634 cancel_echoing ();
6569cc8d 1635 c = read_char (0, 0, 0, Qnil, 0);
ff11dfa1 1636 /* Remove the help from the frame */
284f4730
JB
1637 unbind_to (count, Qnil);
1638 redisplay ();
1639 if (EQ (c, make_number (040)))
1640 {
1641 cancel_echoing ();
7d6de002 1642 c = read_char (0, 0, 0, Qnil, 0);
284f4730
JB
1643 }
1644 }
1645
1646 return c;
1647}
1648
1649Lisp_Object
1650print_help (object)
1651 Lisp_Object object;
1652{
1653 Fprinc (object, Qnil);
1654 return Qnil;
1655}
1656
1657/* Copy out or in the info on where C-g should throw to.
1658 This is used when running Lisp code from within get_char,
1659 in case get_char is called recursively.
1660 See read_process_output. */
1661
1662save_getcjmp (temp)
1663 jmp_buf temp;
1664{
1665 bcopy (getcjmp, temp, sizeof getcjmp);
1666}
1667
1668restore_getcjmp (temp)
1669 jmp_buf temp;
1670{
1671 bcopy (temp, getcjmp, sizeof getcjmp);
1672}
1673
1674\f
284f4730
JB
1675/* Restore mouse tracking enablement. See Ftrack_mouse for the only use
1676 of this function. */
1677static Lisp_Object
1678tracking_off (old_value)
1679 Lisp_Object old_value;
1680{
1681 if (! XFASTINT (old_value))
1682 {
1683 do_mouse_tracking = 0;
1684
1685 /* Redisplay may have been preempted because there was input
1686 available, and it assumes it will be called again after the
1687 input has been processed. If the only input available was
1688 the sort that we have just disabled, then we need to call
1689 redisplay. */
1690 if (!readable_events ())
1691 {
1692 redisplay_preserve_echo_area ();
1693 get_input_pending (&input_pending);
1694 }
1695 }
1696}
1697
1698DEFUN ("track-mouse", Ftrack_mouse, Strack_mouse, 0, UNEVALLED, 0,
4bb994d1
JB
1699 "Evaluate BODY with mouse movement events enabled.\n\
1700Within a `track-mouse' form, mouse motion generates input events that\n\
1701you can read with `read-event'.\n\
1702Normally, mouse motion is ignored.")
284f4730
JB
1703 (args)
1704 Lisp_Object args;
1705{
1706 int count = specpdl_ptr - specpdl;
1707 Lisp_Object val;
1708
1709 XSET (val, Lisp_Int, do_mouse_tracking);
1710 record_unwind_protect (tracking_off, val);
1711
1712 do_mouse_tracking = 1;
1713
1714 val = Fprogn (args);
1715 return unbind_to (count, val);
1716}
a612e298
RS
1717\f
1718/* Low level keyboard/mouse input.
1719 kbd_buffer_store_event places events in kbd_buffer, and
1720 kbd_buffer_get_event retrieves them.
1721 mouse_moved indicates when the mouse has moved again, and
1722 *mouse_position_hook provides the mouse position. */
1723
1724/* Return true iff there are any events in the queue that read-char
1725 would return. If this returns false, a read-char would block. */
1726static int
1727readable_events ()
1728{
1729 return ! EVENT_QUEUES_EMPTY;
1730}
1731
1732/* Set this for debugging, to have a way to get out */
1733int stop_character;
284f4730
JB
1734
1735/* Store an event obtained at interrupt level into kbd_buffer, fifo */
1736
1737void
1738kbd_buffer_store_event (event)
1739 register struct input_event *event;
1740{
1741 if (event->kind == no_event)
1742 abort ();
1743
1744 if (event->kind == ascii_keystroke)
1745 {
1746 register int c = XFASTINT (event->code) & 0377;
1747
faf5e407
JB
1748 if (event->modifiers & ctrl_modifier)
1749 c = make_ctrl_char (c);
1750
9fd7d808
RS
1751 c |= (event->modifiers
1752 & (meta_modifier | alt_modifier
1753 | hyper_modifier | super_modifier));
1754
86e5706b 1755 if (c == quit_char)
284f4730 1756 {
3e51c7b7
JB
1757 extern SIGTYPE interrupt_signal ();
1758
07d2b8de 1759#ifdef MULTI_FRAME
284f4730 1760 /* If this results in a quit_char being returned to Emacs as
3c370943 1761 input, set Vlast_event_frame properly. If this doesn't
284f4730 1762 get returned to Emacs as an event, the next event read
ff11dfa1 1763 will set Vlast_event_frame again, so this is safe to do. */
4bb994d1 1764 {
7b4aedb9
JB
1765 Lisp_Object focus =
1766 FRAME_FOCUS_FRAME (XFRAME (event->frame_or_window));
4bb994d1
JB
1767
1768 if (NILP (focus))
3c370943 1769 internal_last_event_frame = event->frame_or_window;
4bb994d1 1770 else
3c370943
JB
1771 internal_last_event_frame = focus;
1772 Vlast_event_frame = internal_last_event_frame;
4bb994d1 1773 }
07d2b8de 1774#endif
3e51c7b7 1775
ffd56f97 1776 last_event_timestamp = event->timestamp;
284f4730
JB
1777 interrupt_signal ();
1778 return;
1779 }
1780
1781 if (c && c == stop_character)
1782 {
1783 sys_suspend ();
1784 return;
1785 }
284f4730
JB
1786 }
1787
1788 if (kbd_store_ptr - kbd_buffer == KBD_BUFFER_SIZE)
1789 kbd_store_ptr = kbd_buffer;
1790
1791 /* Don't let the very last slot in the buffer become full,
1792 since that would make the two pointers equal,
1793 and that is indistinguishable from an empty buffer.
1794 Discard the event if it would fill the last slot. */
1795 if (kbd_fetch_ptr - 1 != kbd_store_ptr)
1796 {
1797 kbd_store_ptr->kind = event->kind;
1798 kbd_store_ptr->code = event->code;
1799 kbd_store_ptr->part = event->part;
7b4aedb9 1800 kbd_store_ptr->frame_or_window = event->frame_or_window;
284f4730
JB
1801 kbd_store_ptr->modifiers = event->modifiers;
1802 kbd_store_ptr->x = event->x;
1803 kbd_store_ptr->y = event->y;
1804 kbd_store_ptr->timestamp = event->timestamp;
7b4aedb9
JB
1805 (XVECTOR (kbd_buffer_frame_or_window)->contents[kbd_store_ptr
1806 - kbd_buffer]
1807 = event->frame_or_window);
284f4730
JB
1808
1809 kbd_store_ptr++;
1810 }
1811}
a612e298
RS
1812\f
1813/* Read one event from the event buffer, waiting if necessary.
1814 The value is a Lisp object representing the event.
1815 The value is nil for an event that should be ignored,
1816 or that was handled here.
1817 We always read and discard one event. */
284f4730
JB
1818
1819static Lisp_Object
1820kbd_buffer_get_event ()
1821{
1822 register int c;
1823 Lisp_Object obj;
1824
1825 if (noninteractive)
1826 {
1827 c = getchar ();
1828 XSET (obj, Lisp_Int, c);
1829 return obj;
1830 }
1831
1832 /* Wait until there is input available. */
1833 for (;;)
1834 {
284f4730
JB
1835 if (!EVENT_QUEUES_EMPTY)
1836 break;
1837
1838 /* If the quit flag is set, then read_char will return
1839 quit_char, so that counts as "available input." */
1840 if (!NILP (Vquit_flag))
1841 quit_throw_to_read_char ();
1842
1843 /* One way or another, wait until input is available; then, if
1844 interrupt handlers have not read it, read it now. */
1845
1846#ifdef OLDVMS
1847 wait_for_kbd_input ();
1848#else
1849/* Note SIGIO has been undef'd if FIONREAD is missing. */
1850#ifdef SIGIO
1851 gobble_input (0);
1852#endif /* SIGIO */
1853 if (EVENT_QUEUES_EMPTY)
1854 {
f76475ad
JB
1855 Lisp_Object minus_one;
1856
1857 XSET (minus_one, Lisp_Int, -1);
1858 wait_reading_process_input (0, 0, minus_one, 1);
284f4730
JB
1859
1860 if (!interrupt_input && EVENT_QUEUES_EMPTY)
1861 {
1862 read_avail_input (0);
1863 }
1864 }
1865#endif /* not VMS */
1866 }
1867
1868 /* At this point, we know that there is a readable event available
1869 somewhere. If the event queue is empty, then there must be a
1870 mouse movement enabled and available. */
1871 if (kbd_fetch_ptr != kbd_store_ptr)
1872 {
cd21b839 1873 struct input_event *event;
3e51c7b7 1874
856bf263 1875 event = ((kbd_fetch_ptr < kbd_buffer + KBD_BUFFER_SIZE)
cd21b839
JB
1876 ? kbd_fetch_ptr
1877 : kbd_buffer);
3e51c7b7 1878
cd21b839 1879 last_event_timestamp = event->timestamp;
cd21b839 1880
4bb994d1
JB
1881 obj = Qnil;
1882
48e416d4 1883 /* These two kinds of events get special handling
a612e298
RS
1884 and don't actually appear to the command loop.
1885 We return nil for them. */
48e416d4
RS
1886 if (event->kind == selection_request_event)
1887 {
598a9fa7 1888#ifdef HAVE_X11
48e416d4
RS
1889 x_handle_selection_request (event);
1890 kbd_fetch_ptr = event + 1;
598a9fa7
JB
1891#else
1892 /* We're getting selection request events, but we don't have
1893 a window system. */
1894 abort ();
1895#endif
48e416d4
RS
1896 }
1897
1e12dd87 1898 else if (event->kind == selection_clear_event)
48e416d4 1899 {
598a9fa7 1900#ifdef HAVE_X11
48e416d4
RS
1901 x_handle_selection_clear (event);
1902 kbd_fetch_ptr = event + 1;
598a9fa7
JB
1903#else
1904 /* We're getting selection request events, but we don't have
1905 a window system. */
1906 abort ();
1907#endif
48e416d4 1908 }
a612e298
RS
1909 /* Just discard these, by returning nil.
1910 (They shouldn't be found in the buffer,
1911 but on some machines it appears they do show up.) */
1912 else if (event->kind == no_event)
1913 kbd_fetch_ptr = event + 1;
48e416d4 1914
4bb994d1
JB
1915 /* If this event is on a different frame, return a switch-frame this
1916 time, and leave the event in the queue for next time. */
1e12dd87
RS
1917 else
1918 {
a6d53864 1919#ifdef MULTI_FRAME
1e12dd87
RS
1920 Lisp_Object frame = event->frame_or_window;
1921 Lisp_Object focus;
7b4aedb9 1922
1e12dd87
RS
1923 if (XTYPE (frame) == Lisp_Window)
1924 frame = WINDOW_FRAME (XWINDOW (frame));
4bb994d1 1925
1e12dd87
RS
1926 focus = FRAME_FOCUS_FRAME (XFRAME (frame));
1927 if (! NILP (focus))
1928 frame = focus;
07d2b8de 1929
1e12dd87
RS
1930 if (! EQ (frame, internal_last_event_frame)
1931 && XFRAME (frame) != selected_frame)
1932 obj = make_lispy_switch_frame (frame);
1933 internal_last_event_frame = frame;
a6d53864 1934#endif /* MULTI_FRAME */
4bb994d1 1935
1e12dd87
RS
1936 /* If we didn't decide to make a switch-frame event, go ahead
1937 and build a real event from the queue entry. */
cd21b839 1938
1e12dd87
RS
1939 if (NILP (obj))
1940 {
1941 obj = make_lispy_event (event);
1942
1943 /* Wipe out this event, to catch bugs. */
1944 event->kind = no_event;
1945 (XVECTOR (kbd_buffer_frame_or_window)->contents[event - kbd_buffer]
1946 = Qnil);
1947
1948 kbd_fetch_ptr = event + 1;
1949 }
4bb994d1 1950 }
284f4730 1951 }
a612e298 1952 /* Try generating a mouse motion event. */
284f4730
JB
1953 else if (do_mouse_tracking && mouse_moved)
1954 {
7e85b935 1955 FRAME_PTR f = 0;
7b4aedb9 1956 Lisp_Object bar_window;
3c370943 1957 enum scroll_bar_part part;
e5d77022
JB
1958 Lisp_Object x, y;
1959 unsigned long time;
284f4730 1960
7b4aedb9 1961 (*mouse_position_hook) (&f, &bar_window, &part, &x, &y, &time);
4bb994d1
JB
1962
1963 obj = Qnil;
284f4730 1964
07d2b8de 1965#ifdef MULTI_FRAME
4bb994d1
JB
1966 /* Decide if we should generate a switch-frame event. Don't
1967 generate switch-frame events for motion outside of all Emacs
1968 frames. */
1969 if (f)
cd21b839 1970 {
4bb994d1
JB
1971 Lisp_Object frame = FRAME_FOCUS_FRAME (f);
1972
1973 if (NILP (frame))
1974 XSET (frame, Lisp_Frame, f);
1975
80645119
JB
1976 if (! EQ (frame, internal_last_event_frame)
1977 && XFRAME (frame) != selected_frame)
764cb3f9 1978 obj = make_lispy_switch_frame (frame);
80645119 1979 internal_last_event_frame = frame;
cd21b839 1980 }
07d2b8de 1981#endif
4bb994d1
JB
1982
1983 /* If we didn't decide to make a switch-frame event, go ahead and
1984 return a mouse-motion event. */
1985 if (NILP (obj))
7b4aedb9 1986 obj = make_lispy_movement (f, bar_window, part, x, y, time);
4bb994d1 1987 }
284f4730
JB
1988 else
1989 /* We were promised by the above while loop that there was
1990 something for us to read! */
1991 abort ();
1992
1993 input_pending = readable_events ();
1994
3c370943
JB
1995#ifdef MULTI_FRAME
1996 Vlast_event_frame = internal_last_event_frame;
1997#endif
1998
284f4730
JB
1999 return (obj);
2000}
a612e298
RS
2001\f
2002/* Process any events that are not user-visible,
2003 then return, without reading any user-visible events. */
3a3b9632
RS
2004
2005void
2006swallow_events ()
2007{
2008 while (kbd_fetch_ptr != kbd_store_ptr)
2009 {
2010 struct input_event *event;
2011
2012 event = ((kbd_fetch_ptr < kbd_buffer + KBD_BUFFER_SIZE)
2013 ? kbd_fetch_ptr
2014 : kbd_buffer);
2015
2016 last_event_timestamp = event->timestamp;
2017
2018 /* These two kinds of events get special handling
2019 and don't actually appear to the command loop. */
2020 if (event->kind == selection_request_event)
2021 {
2022#ifdef HAVE_X11
2023 x_handle_selection_request (event);
2024 kbd_fetch_ptr = event + 1;
2025#else
2026 /* We're getting selection request events, but we don't have
2027 a window system. */
2028 abort ();
2029#endif
2030 }
2031
2032 else if (event->kind == selection_clear_event)
2033 {
2034#ifdef HAVE_X11
2035 x_handle_selection_clear (event);
2036 kbd_fetch_ptr = event + 1;
2037#else
2038 /* We're getting selection request events, but we don't have
2039 a window system. */
2040 abort ();
2041#endif
2042 }
2043 else
2044 break;
2045 }
2046
2047 get_input_pending (&input_pending);
2048}
a612e298 2049\f
284f4730
JB
2050/* Caches for modify_event_symbol. */
2051static Lisp_Object func_key_syms;
2052static Lisp_Object mouse_syms;
2053
2054/* You'll notice that this table is arranged to be conveniently
2055 indexed by X Windows keysym values. */
2056static char *lispy_function_keys[] =
2057 {
2058 /* X Keysym value */
2059
a6d53864 2060 "remove", 0, 0, 0, 0, 0, 0, 0, /* 0xff00 */
86e5706b
RS
2061 "backspace",
2062 "tab",
2063 "linefeed",
2064 "clear",
2065 0,
2066 "return",
2067 0, 0,
2068 0, 0, 0, /* 0xff10 */
2069 "pause",
2070 0, 0, 0, 0, 0, 0, 0,
2071 "escape",
2072 0, 0, 0, 0,
2073 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, /* 0xff20...2f */
2074 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, /* 0xff30...3f */
2075 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, /* 0xff40...4f */
2076
284f4730
JB
2077 "home", /* 0xff50 */ /* IsCursorKey */
2078 "left",
2079 "up",
2080 "right",
2081 "down",
2082 "prior",
2083 "next",
2084 "end",
2085 "begin",
2086 0, /* 0xff59 */
2087 0, 0, 0, 0, 0, 0,
2088 "select", /* 0xff60 */ /* IsMiscFunctionKey */
2089 "print",
2090 "execute",
2091 "insert",
2092 0, /* 0xff64 */
2093 "undo",
2094 "redo",
2095 "menu",
2096 "find",
2097 "cancel",
2098 "help",
2099 "break", /* 0xff6b */
2100
2101 /* Here are some keys found mostly on HP keyboards. The X event
2102 handling code will strip bit 29, which flags vendor-specific
2103 keysyms. */
2104 "reset", /* 0x1000ff6c */
2105 "system",
2106 "user",
2107 "clearline",
2108 "insertline",
2109 "deleteline",
2110 "insertchar",
2111 "deletechar",
2112 "backtab",
36ae397e 2113 "kp-backtab", /* 0x1000ff75 */
284f4730 2114 0, /* 0xff76 */
36ae397e 2115 0, 0, 0, 0, 0, 0, 0, 0, "kp-numlock", /* 0xff7f */
284f4730
JB
2116 "kp-space", /* 0xff80 */ /* IsKeypadKey */
2117 0, 0, 0, 0, 0, 0, 0, 0,
2118 "kp-tab", /* 0xff89 */
2119 0, 0, 0,
2120 "kp-enter", /* 0xff8d */
2121 0, 0, 0,
2122 "kp-f1", /* 0xff91 */
2123 "kp-f2",
2124 "kp-f3",
2125 "kp-f4",
2126 0, /* 0xff95 */
2127 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
2128 "kp-multiply", /* 0xffaa */
2129 "kp-add",
2130 "kp-separator",
2131 "kp-subtract",
2132 "kp-decimal",
2133 "kp-divide", /* 0xffaf */
2134 "kp-0", /* 0xffb0 */
2135 "kp-1", "kp-2", "kp-3", "kp-4", "kp-5", "kp-6", "kp-7", "kp-8", "kp-9",
2136 0, /* 0xffba */
2137 0, 0,
2138 "kp-equal", /* 0xffbd */
2139 "f1", /* 0xffbe */ /* IsFunctionKey */
86e5706b
RS
2140 "f2",
2141 "f3", "f4", "f5", "f6", "f7", "f8", "f9", "f10", /* 0xffc0 */
2142 "f11", "f12", "f13", "f14", "f15", "f16", "f17", "f18",
2143 "f19", "f20", "f21", "f22", "f23", "f24", "f25", "f26", /* 0xffd0 */
2144 "f27", "f28", "f29", "f30", "f31", "f32", "f33", "f34",
2145 "f35", 0, 0, 0, 0, 0, 0, 0, /* 0xffe0 */
2146 0, 0, 0, 0, 0, 0, 0, 0,
2147 0, 0, 0, 0, 0, 0, 0, 0, /* 0xfff0 */
2148 0, 0, 0, 0, 0, 0, 0, "delete"
284f4730
JB
2149 };
2150
2151static char *lispy_mouse_names[] =
2152{
2153 "mouse-1", "mouse-2", "mouse-3", "mouse-4", "mouse-5"
2154};
2155
3c370943 2156/* Scroll bar parts. */
4bb994d1
JB
2157Lisp_Object Qabove_handle, Qhandle, Qbelow_handle;
2158
3c370943
JB
2159/* An array of scroll bar parts, indexed by an enum scroll_bar_part value. */
2160Lisp_Object *scroll_bar_parts[] = {
4bb994d1
JB
2161 &Qabove_handle, &Qhandle, &Qbelow_handle
2162};
2163
2164
7b4aedb9 2165/* A vector, indexed by button number, giving the down-going location
3c370943 2166 of currently depressed buttons, both scroll bar and non-scroll bar.
7b4aedb9
JB
2167
2168 The elements have the form
2169 (BUTTON-NUMBER MODIFIER-MASK . REST)
2170 where REST is the cdr of a position as it would be reported in the event.
2171
2172 The make_lispy_event function stores positions here to tell the
2173 difference between click and drag events, and to store the starting
2174 location to be included in drag events. */
2175
2176static Lisp_Object button_down_location;
88cb0656 2177
fbcd35bd
JB
2178/* Information about the most recent up-going button event: Which
2179 button, what location, and what time. */
2180
559f9d04
RS
2181static int last_mouse_button;
2182static int last_mouse_x;
2183static int last_mouse_y;
2184static unsigned long button_down_time;
fbcd35bd 2185
564dc952
JB
2186/* The maximum time between clicks to make a double-click,
2187 or Qnil to disable double-click detection,
2188 or Qt for no time limit. */
2189Lisp_Object Vdouble_click_time;
fbcd35bd
JB
2190
2191/* The number of clicks in this multiple-click. */
2192
2193int double_click_count;
2194
284f4730
JB
2195/* Given a struct input_event, build the lisp event which represents
2196 it. If EVENT is 0, build a mouse movement event from the mouse
88cb0656
JB
2197 movement buffer, which should have a movement event in it.
2198
2199 Note that events must be passed to this function in the order they
2200 are received; this function stores the location of button presses
2201 in order to build drag events when the button is released. */
284f4730
JB
2202
2203static Lisp_Object
2204make_lispy_event (event)
2205 struct input_event *event;
2206{
2207#ifdef SWITCH_ENUM_BUG
2208 switch ((int) event->kind)
2209#else
2210 switch (event->kind)
2211#endif
2212 {
284f4730
JB
2213 /* A simple keystroke. */
2214 case ascii_keystroke:
86e5706b
RS
2215 {
2216 int c = XFASTINT (event->code);
5a1c6df8
JB
2217 /* Turn ASCII characters into control characters
2218 when proper. */
2219 if (event->modifiers & ctrl_modifier)
d205953b
JB
2220 c = make_ctrl_char (c);
2221
2222 /* Add in the other modifier bits. We took care of ctrl_modifier
2223 just above, and the shift key was taken care of by the X code,
2224 and applied to control characters by make_ctrl_char. */
86e5706b
RS
2225 c |= (event->modifiers
2226 & (meta_modifier | alt_modifier
2227 | hyper_modifier | super_modifier));
559f9d04 2228 button_down_time = 0;
86e5706b
RS
2229 return c;
2230 }
284f4730
JB
2231
2232 /* A function key. The symbol may need to have modifier prefixes
2233 tacked onto it. */
2234 case non_ascii_keystroke:
559f9d04 2235 button_down_time = 0;
284f4730
JB
2236 return modify_event_symbol (XFASTINT (event->code), event->modifiers,
2237 Qfunction_key,
2238 lispy_function_keys, &func_key_syms,
2239 (sizeof (lispy_function_keys)
2240 / sizeof (lispy_function_keys[0])));
2241 break;
2242
88cb0656
JB
2243 /* A mouse click. Figure out where it is, decide whether it's
2244 a press, click or drag, and build the appropriate structure. */
284f4730 2245 case mouse_click:
3c370943 2246 case scroll_bar_click:
284f4730 2247 {
0a7f1fc0 2248 int button = XFASTINT (event->code);
559f9d04 2249 int is_double;
7b4aedb9 2250 Lisp_Object position;
dbc4e1c1
JB
2251 Lisp_Object *start_pos_ptr;
2252 Lisp_Object start_pos;
284f4730 2253
7b4aedb9 2254 if (button < 0 || button >= NUM_MOUSE_BUTTONS)
88cb0656
JB
2255 abort ();
2256
7b4aedb9
JB
2257 /* Build the position as appropriate for this mouse click. */
2258 if (event->kind == mouse_click)
284f4730 2259 {
7b4aedb9 2260 int part;
598a9fa7 2261 FRAME_PTR f = XFRAME (event->frame_or_window);
5ec75a55
RS
2262 Lisp_Object window
2263 = window_from_coordinates (f, XINT (event->x), XINT (event->y),
2264 &part);
7b4aedb9
JB
2265 Lisp_Object posn;
2266
5ec75a55
RS
2267 if (XINT (event->y) < FRAME_MENU_BAR_LINES (f))
2268 {
2269 int hpos;
2270 Lisp_Object items;
2271 items = FRAME_MENU_BAR_ITEMS (f);
2272 for (; CONSP (items); items = XCONS (items)->cdr)
2273 {
2274 Lisp_Object pos, string;
2275 pos = Fcdr (Fcdr (Fcar (items)));
2276 string = Fcar (Fcdr (Fcar (items)));
0a9b0670
RS
2277 if (XINT (event->x) >= XINT (pos)
2278 && XINT (event->x) < XINT (pos) + XSTRING (string)->size)
5ec75a55
RS
2279 break;
2280 }
2281 position
2282 = Fcons (event->frame_or_window,
2283 Fcons (Qmenu_bar,
2284 Fcons (Fcons (event->x, event->y),
2285 Fcons (make_number (event->timestamp),
2286 Qnil))));
2287
2288 if (CONSP (items))
2289 return Fcons (Fcar (Fcar (items)),
2290 Fcons (position, Qnil));
2291 else
2292 return Fcons (Qnil, Fcons (position, Qnil));
2293 }
2294 else if (XTYPE (window) != Lisp_Window)
7b4aedb9 2295 posn = Qnil;
284f4730 2296 else
7b4aedb9 2297 {
dbc4e1c1
JB
2298 XSETINT (event->x,
2299 (XINT (event->x) - XINT (XWINDOW (window)->left)));
2300 XSETINT (event->y,
2301 (XINT (event->y) - XINT (XWINDOW (window)->top)));
2302
7b4aedb9
JB
2303 if (part == 1)
2304 posn = Qmode_line;
2305 else if (part == 2)
2306 posn = Qvertical_line;
2307 else
dbc4e1c1
JB
2308 XSET (posn, Lisp_Int,
2309 buffer_posn_from_coords (XWINDOW (window),
2310 XINT (event->x),
2311 XINT (event->y)));
7b4aedb9
JB
2312 }
2313
5ec75a55
RS
2314 position
2315 = Fcons (window,
2316 Fcons (posn,
2317 Fcons (Fcons (event->x, event->y),
2318 Fcons (make_number (event->timestamp),
2319 Qnil))));
284f4730 2320 }
7b4aedb9 2321 else
88cb0656 2322 {
7b4aedb9
JB
2323 Lisp_Object window = event->frame_or_window;
2324 Lisp_Object portion_whole = Fcons (event->x, event->y);
3c370943 2325 Lisp_Object part = *scroll_bar_parts[(int) event->part];
7b4aedb9
JB
2326
2327 position =
2328 Fcons (window,
3c370943 2329 Fcons (Qvertical_scroll_bar,
7b4aedb9
JB
2330 Fcons (portion_whole,
2331 Fcons (make_number (event->timestamp),
2332 Fcons (part,
2333 Qnil)))));
88cb0656
JB
2334 }
2335
dbc4e1c1
JB
2336 start_pos_ptr = &XVECTOR (button_down_location)->contents[button];
2337
2338 start_pos = *start_pos_ptr;
2339 *start_pos_ptr = Qnil;
7b4aedb9 2340
559f9d04
RS
2341 is_double = (button == last_mouse_button
2342 && XINT (event->x) == last_mouse_x
2343 && XINT (event->y) == last_mouse_y
2344 && button_down_time != 0
2345 && (EQ (Vdouble_click_time, Qt)
2346 || (INTEGERP (Vdouble_click_time)
2347 && ((int)(event->timestamp - button_down_time)
2348 < XINT (Vdouble_click_time)))));
2349 last_mouse_button = button;
2350 last_mouse_x = XINT (event->x);
2351 last_mouse_y = XINT (event->y);
2352
7b4aedb9
JB
2353 /* If this is a button press, squirrel away the location, so
2354 we can decide later whether it was a click or a drag. */
2355 if (event->modifiers & down_modifier)
559f9d04
RS
2356 {
2357 if (is_double)
2358 {
2359 double_click_count++;
2360 event->modifiers |= ((double_click_count > 2)
2361 ? triple_modifier
2362 : double_modifier);
2363 }
2364 else
2365 double_click_count = 1;
2366 button_down_time = event->timestamp;
2367 *start_pos_ptr = Fcopy_alist (position);
2368 }
7b4aedb9 2369
88cb0656 2370 /* Now we're releasing a button - check the co-ordinates to
7b4aedb9 2371 see if this was a click or a drag. */
88cb0656
JB
2372 else if (event->modifiers & up_modifier)
2373 {
48e416d4
RS
2374 /* If we did not see a down before this up,
2375 ignore the up. Probably this happened because
2376 the down event chose a menu item.
2377 It would be an annoyance to treat the release
2378 of the button that chose the menu item
2379 as a separate event. */
2380
2381 if (XTYPE (start_pos) != Lisp_Cons)
2382 return Qnil;
2383
88cb0656 2384 event->modifiers &= ~up_modifier;
48e416d4 2385#if 0 /* Formerly we treated an up with no down as a click event. */
dbc4e1c1
JB
2386 if (XTYPE (start_pos) != Lisp_Cons)
2387 event->modifiers |= click_modifier;
2388 else
48e416d4 2389#endif
dbc4e1c1
JB
2390 {
2391 /* The third element of every position should be the (x,y)
2392 pair. */
2393 Lisp_Object down = Fnth (make_number (2), start_pos);
2394
fbcd35bd
JB
2395 if (EQ (event->x, XCONS (down)->car)
2396 && EQ (event->y, XCONS (down)->cdr))
2397 {
559f9d04
RS
2398 if (is_double && double_click_count > 1)
2399 event->modifiers |= ((double_click_count > 2)
2400 ? triple_modifier
2401 : double_modifier);
fbcd35bd 2402 else
559f9d04 2403 event->modifiers |= click_modifier;
fbcd35bd
JB
2404 }
2405 else
2406 {
559f9d04 2407 button_down_time = 0;
fbcd35bd
JB
2408 event->modifiers |= drag_modifier;
2409 }
dbc4e1c1 2410 }
88cb0656
JB
2411 }
2412 else
2413 /* Every mouse event should either have the down_modifier or
7b4aedb9 2414 the up_modifier set. */
88cb0656
JB
2415 abort ();
2416
88cb0656 2417 {
7b4aedb9 2418 /* Get the symbol we should use for the mouse click. */
5ec75a55
RS
2419 Lisp_Object head
2420 = modify_event_symbol (button,
2421 event->modifiers,
2422 Qmouse_click,
2423 lispy_mouse_names, &mouse_syms,
2424 (sizeof (lispy_mouse_names)
2425 / sizeof (lispy_mouse_names[0])));
7b4aedb9 2426
88cb0656 2427 if (event->modifiers & drag_modifier)
dbc4e1c1
JB
2428 return Fcons (head,
2429 Fcons (start_pos,
2430 Fcons (position,
2431 Qnil)));
fbcd35bd
JB
2432 else if (event->modifiers & (double_modifier | triple_modifier))
2433 return Fcons (head,
2434 Fcons (position,
2435 Fcons (make_number (double_click_count),
2436 Qnil)));
88cb0656
JB
2437 else
2438 return Fcons (head,
7b4aedb9 2439 Fcons (position,
88cb0656
JB
2440 Qnil));
2441 }
284f4730
JB
2442 }
2443
284f4730
JB
2444 /* The 'kind' field of the event is something we don't recognize. */
2445 default:
48e416d4 2446 abort ();
284f4730
JB
2447 }
2448}
2449
2450static Lisp_Object
7b4aedb9 2451make_lispy_movement (frame, bar_window, part, x, y, time)
ff11dfa1 2452 FRAME_PTR frame;
7b4aedb9 2453 Lisp_Object bar_window;
3c370943 2454 enum scroll_bar_part part;
284f4730 2455 Lisp_Object x, y;
e5d77022 2456 unsigned long time;
284f4730 2457{
3c370943 2458 /* Is it a scroll bar movement? */
7b4aedb9 2459 if (frame && ! NILP (bar_window))
4bb994d1 2460 {
3c370943 2461 Lisp_Object part_sym = *scroll_bar_parts[(int) part];
4bb994d1 2462
3c370943 2463 return Fcons (Qscroll_bar_movement,
7b4aedb9 2464 (Fcons (Fcons (bar_window,
3c370943 2465 Fcons (Qvertical_scroll_bar,
4bb994d1
JB
2466 Fcons (Fcons (x, y),
2467 Fcons (make_number (time),
cb5df6ae 2468 Fcons (part_sym,
4bb994d1
JB
2469 Qnil))))),
2470 Qnil)));
2471 }
2472
2473 /* Or is it an ordinary mouse movement? */
284f4730
JB
2474 else
2475 {
4bb994d1
JB
2476 int area;
2477 Lisp_Object window =
2478 (frame
2479 ? window_from_coordinates (frame, XINT (x), XINT (y), &area)
2480 : Qnil);
2481 Lisp_Object posn;
2482
2483 if (XTYPE (window) == Lisp_Window)
2484 {
2485 XSETINT (x, XINT (x) - XINT (XWINDOW (window)->left));
2486 XSETINT (y, XINT (y) - XINT (XWINDOW (window)->top));
2487
2488 if (area == 1)
2489 posn = Qmode_line;
2490 else if (area == 2)
2491 posn = Qvertical_line;
2492 else
2493 XSET (posn, Lisp_Int,
2494 buffer_posn_from_coords (XWINDOW (window),
2495 XINT (x), XINT (y)));
2496 }
284f4730 2497 else
4bb994d1
JB
2498 {
2499 window = Qnil;
2500 posn = Qnil;
f76b81d6
JB
2501 XFASTINT (x) = 0;
2502 XFASTINT (y) = 0;
4bb994d1 2503 }
284f4730 2504
4bb994d1
JB
2505 return Fcons (Qmouse_movement,
2506 Fcons (Fcons (window,
2507 Fcons (posn,
2508 Fcons (Fcons (x, y),
2509 Fcons (make_number (time),
2510 Qnil)))),
2511 Qnil));
2512 }
284f4730
JB
2513}
2514
cd21b839
JB
2515/* Construct a switch frame event. */
2516static Lisp_Object
2517make_lispy_switch_frame (frame)
2518 Lisp_Object frame;
2519{
2520 return Fcons (Qswitch_frame, Fcons (frame, Qnil));
2521}
0a7f1fc0
JB
2522\f
2523/* Manipulating modifiers. */
284f4730 2524
0a7f1fc0 2525/* Parse the name of SYMBOL, and return the set of modifiers it contains.
284f4730 2526
0a7f1fc0
JB
2527 If MODIFIER_END is non-zero, set *MODIFIER_END to the position in
2528 SYMBOL's name of the end of the modifiers; the string from this
2529 position is the unmodified symbol name.
284f4730 2530
0a7f1fc0
JB
2531 This doesn't use any caches. */
2532static int
2533parse_modifiers_uncached (symbol, modifier_end)
284f4730 2534 Lisp_Object symbol;
0a7f1fc0 2535 int *modifier_end;
284f4730
JB
2536{
2537 struct Lisp_String *name;
2538 int i;
2539 int modifiers;
284f4730
JB
2540
2541 CHECK_SYMBOL (symbol, 1);
2542
2543 modifiers = 0;
2544 name = XSYMBOL (symbol)->name;
2545
284f4730 2546
0a7f1fc0 2547 for (i = 0; i+2 <= name->size; )
284f4730
JB
2548 switch (name->data[i])
2549 {
0a7f1fc0
JB
2550#define SINGLE_LETTER_MOD(bit) \
2551 if (name->data[i+1] != '-') \
2552 goto no_more_modifiers; \
2553 modifiers |= bit; \
fce33686 2554 i += 2;
0a7f1fc0
JB
2555
2556 case 'A':
2557 SINGLE_LETTER_MOD (alt_modifier);
284f4730
JB
2558 break;
2559
2560 case 'C':
0a7f1fc0 2561 SINGLE_LETTER_MOD (ctrl_modifier);
fce33686
JB
2562 break;
2563
2564 case 'H':
0a7f1fc0 2565 SINGLE_LETTER_MOD (hyper_modifier);
fce33686
JB
2566 break;
2567
2568 case 'M':
0a7f1fc0 2569 SINGLE_LETTER_MOD (meta_modifier);
284f4730
JB
2570 break;
2571
2572 case 'S':
0a7f1fc0 2573 SINGLE_LETTER_MOD (shift_modifier);
fce33686
JB
2574 break;
2575
2576 case 's':
86e5706b 2577 SINGLE_LETTER_MOD (super_modifier);
284f4730
JB
2578 break;
2579
fce33686
JB
2580 case 'd':
2581 if (i + 5 > name->size)
2582 goto no_more_modifiers;
2583 if (! strncmp (name->data + i, "drag-", 5))
2584 {
fce33686
JB
2585 modifiers |= drag_modifier;
2586 i += 5;
2587 }
2588 else if (! strncmp (name->data + i, "down-", 5))
2589 {
fce33686
JB
2590 modifiers |= down_modifier;
2591 i += 5;
2592 }
fbcd35bd
JB
2593 else if (i + 7 <= name->size
2594 && ! strncmp (name->data + i, "double-", 7))
2595 {
2596 modifiers |= double_modifier;
2597 i += 7;
2598 }
2599 else
2600 goto no_more_modifiers;
2601 break;
2602
2603 case 't':
2604 if (i + 7 > name->size)
2605 goto no_more_modifiers;
2606 if (! strncmp (name->data + i, "triple-", 7))
2607 {
2608 modifiers |= triple_modifier;
2609 i += 7;
2610 }
fce33686
JB
2611 else
2612 goto no_more_modifiers;
284f4730
JB
2613 break;
2614
2615 default:
2616 goto no_more_modifiers;
0a7f1fc0
JB
2617
2618#undef SINGLE_LETTER_MOD
284f4730
JB
2619 }
2620 no_more_modifiers:
2621
0a7f1fc0 2622 /* Should we include the `click' modifier? */
fbcd35bd
JB
2623 if (! (modifiers & (down_modifier | drag_modifier
2624 | double_modifier | triple_modifier))
0a7f1fc0 2625 && i + 7 == name->size
4bb994d1 2626 && strncmp (name->data + i, "mouse-", 6) == 0
6569cc8d 2627 && ('0' <= name->data[i + 6] && name->data[i + 6] <= '9'))
0a7f1fc0
JB
2628 modifiers |= click_modifier;
2629
2630 if (modifier_end)
2631 *modifier_end = i;
2632
2633 return modifiers;
2634}
2635
2636
2637/* Return a symbol whose name is the modifier prefixes for MODIFIERS
2638 prepended to the string BASE[0..BASE_LEN-1].
2639 This doesn't use any caches. */
2640static Lisp_Object
2641apply_modifiers_uncached (modifiers, base, base_len)
2642 int modifiers;
2643 char *base;
2644 int base_len;
2645{
2646 /* Since BASE could contain nulls, we can't use intern here; we have
2647 to use Fintern, which expects a genuine Lisp_String, and keeps a
2648 reference to it. */
2649 char *new_mods =
fbcd35bd 2650 (char *) alloca (sizeof ("A-C-H-M-S-s-down-drag-double-triple-"));
0a7f1fc0 2651 int mod_len;
284f4730 2652
284f4730 2653 {
0a7f1fc0
JB
2654 char *p = new_mods;
2655
2656 /* Only the event queue may use the `up' modifier; it should always
2657 be turned into a click or drag event before presented to lisp code. */
2658 if (modifiers & up_modifier)
2659 abort ();
2660
2661 if (modifiers & alt_modifier) { *p++ = 'A'; *p++ = '-'; }
2662 if (modifiers & ctrl_modifier) { *p++ = 'C'; *p++ = '-'; }
2663 if (modifiers & hyper_modifier) { *p++ = 'H'; *p++ = '-'; }
2664 if (modifiers & meta_modifier) { *p++ = 'M'; *p++ = '-'; }
2665 if (modifiers & shift_modifier) { *p++ = 'S'; *p++ = '-'; }
86e5706b 2666 if (modifiers & super_modifier) { *p++ = 's'; *p++ = '-'; }
fbcd35bd
JB
2667 if (modifiers & double_modifier) { strcpy (p, "double-"); p += 7; }
2668 if (modifiers & triple_modifier) { strcpy (p, "triple-"); p += 7; }
559f9d04
RS
2669 if (modifiers & down_modifier) { strcpy (p, "down-"); p += 5; }
2670 if (modifiers & drag_modifier) { strcpy (p, "drag-"); p += 5; }
0a7f1fc0
JB
2671 /* The click modifier is denoted by the absence of other modifiers. */
2672
2673 *p = '\0';
2674
2675 mod_len = p - new_mods;
2676 }
284f4730 2677
0a7f1fc0
JB
2678 {
2679 Lisp_Object new_name = make_uninit_string (mod_len + base_len);
2680
2681 bcopy (new_mods, XSTRING (new_name)->data, mod_len);
2682 bcopy (base, XSTRING (new_name)->data + mod_len, base_len);
284f4730
JB
2683
2684 return Fintern (new_name, Qnil);
2685 }
2686}
2687
2688
0a7f1fc0
JB
2689static char *modifier_names[] =
2690{
fbcd35bd 2691 "up", "down", "drag", "click", "double", "triple", 0, 0,
1dfdf9e2 2692 0, 0, 0, 0, 0, 0, 0, 0,
86e5706b 2693 0, 0, "alt", "super", "hyper", "shift", "control", "meta"
0a7f1fc0 2694};
80645119 2695#define NUM_MOD_NAMES (sizeof (modifier_names) / sizeof (modifier_names[0]))
0a7f1fc0
JB
2696
2697static Lisp_Object modifier_symbols;
2698
2699/* Return the list of modifier symbols corresponding to the mask MODIFIERS. */
2700static Lisp_Object
2701lispy_modifier_list (modifiers)
2702 int modifiers;
2703{
2704 Lisp_Object modifier_list;
2705 int i;
2706
2707 modifier_list = Qnil;
80645119 2708 for (i = 0; (1<<i) <= modifiers && i < NUM_MOD_NAMES; i++)
0a7f1fc0 2709 if (modifiers & (1<<i))
80645119
JB
2710 modifier_list = Fcons (XVECTOR (modifier_symbols)->contents[i],
2711 modifier_list);
0a7f1fc0
JB
2712
2713 return modifier_list;
2714}
2715
2716
2717/* Parse the modifiers on SYMBOL, and return a list like (UNMODIFIED MASK),
2718 where UNMODIFIED is the unmodified form of SYMBOL,
2719 MASK is the set of modifiers present in SYMBOL's name.
2720 This is similar to parse_modifiers_uncached, but uses the cache in
2721 SYMBOL's Qevent_symbol_element_mask property, and maintains the
2722 Qevent_symbol_elements property. */
2723static Lisp_Object
2724parse_modifiers (symbol)
2725 Lisp_Object symbol;
2726{
2727 Lisp_Object elements = Fget (symbol, Qevent_symbol_element_mask);
2728
2729 if (CONSP (elements))
2730 return elements;
2731 else
2732 {
2733 int end;
2734 int modifiers = parse_modifiers_uncached (symbol, &end);
2735 Lisp_Object unmodified
2736 = Fintern (make_string (XSYMBOL (symbol)->name->data + end,
2737 XSYMBOL (symbol)->name->size - end),
2738 Qnil);
2739 Lisp_Object mask;
2740
734fef94
JB
2741 if (modifiers & ~((1<<VALBITS) - 1))
2742 abort ();
0a7f1fc0
JB
2743 XFASTINT (mask) = modifiers;
2744 elements = Fcons (unmodified, Fcons (mask, Qnil));
2745
2746 /* Cache the parsing results on SYMBOL. */
2747 Fput (symbol, Qevent_symbol_element_mask,
2748 elements);
2749 Fput (symbol, Qevent_symbol_elements,
2750 Fcons (unmodified, lispy_modifier_list (modifiers)));
2751
2752 /* Since we know that SYMBOL is modifiers applied to unmodified,
2753 it would be nice to put that in unmodified's cache.
2754 But we can't, since we're not sure that parse_modifiers is
2755 canonical. */
2756
2757 return elements;
2758 }
2759}
2760
2761/* Apply the modifiers MODIFIERS to the symbol BASE.
2762 BASE must be unmodified.
2763
2764 This is like apply_modifiers_uncached, but uses BASE's
2765 Qmodifier_cache property, if present. It also builds
cd21b839
JB
2766 Qevent_symbol_elements properties, since it has that info anyway.
2767
2768 apply_modifiers copies the value of BASE's Qevent_kind property to
2769 the modified symbol. */
0a7f1fc0
JB
2770static Lisp_Object
2771apply_modifiers (modifiers, base)
2772 int modifiers;
2773 Lisp_Object base;
2774{
7b4aedb9 2775 Lisp_Object cache, index, entry, new_symbol;
0a7f1fc0 2776
80645119
JB
2777 /* Mask out upper bits. We don't know where this value's been. */
2778 modifiers &= (1<<VALBITS) - 1;
2779
0a7f1fc0 2780 /* The click modifier never figures into cache indices. */
0a7f1fc0 2781 cache = Fget (base, Qmodifier_cache);
cd21b839 2782 XFASTINT (index) = (modifiers & ~click_modifier);
0a7f1fc0
JB
2783 entry = Fassq (index, cache);
2784
2785 if (CONSP (entry))
7b4aedb9
JB
2786 new_symbol = XCONS (entry)->cdr;
2787 else
2788 {
2789 /* We have to create the symbol ourselves. */
2790 new_symbol = apply_modifiers_uncached (modifiers,
2791 XSYMBOL (base)->name->data,
2792 XSYMBOL (base)->name->size);
2793
2794 /* Add the new symbol to the base's cache. */
2795 entry = Fcons (index, new_symbol);
2796 Fput (base, Qmodifier_cache, Fcons (entry, cache));
2797
2798 /* We have the parsing info now for free, so add it to the caches. */
2799 XFASTINT (index) = modifiers;
2800 Fput (new_symbol, Qevent_symbol_element_mask,
2801 Fcons (base, Fcons (index, Qnil)));
2802 Fput (new_symbol, Qevent_symbol_elements,
2803 Fcons (base, lispy_modifier_list (modifiers)));
2804 }
0a7f1fc0 2805
7b4aedb9
JB
2806 /* Make sure this symbol is of the same kind as BASE.
2807
2808 You'd think we could just set this once and for all when we
2809 intern the symbol above, but reorder_modifiers may call us when
2810 BASE's property isn't set right; we can't assume that just
80645119
JB
2811 because it has a Qmodifier_cache property it must have its
2812 Qevent_kind set right as well. */
7b4aedb9
JB
2813 if (NILP (Fget (new_symbol, Qevent_kind)))
2814 {
2815 Lisp_Object kind = Fget (base, Qevent_kind);
2816
2817 if (! NILP (kind))
2818 Fput (new_symbol, Qevent_kind, kind);
2819 }
2820
2821 return new_symbol;
0a7f1fc0
JB
2822}
2823
2824
2825/* Given a symbol whose name begins with modifiers ("C-", "M-", etc),
2826 return a symbol with the modifiers placed in the canonical order.
2827 Canonical order is alphabetical, except for down and drag, which
2828 always come last. The 'click' modifier is never written out.
2829
2830 Fdefine_key calls this to make sure that (for example) C-M-foo
2831 and M-C-foo end up being equivalent in the keymap. */
2832
2833Lisp_Object
2834reorder_modifiers (symbol)
2835 Lisp_Object symbol;
2836{
2837 /* It's hopefully okay to write the code this way, since everything
2838 will soon be in caches, and no consing will be done at all. */
2839 Lisp_Object parsed = parse_modifiers (symbol);
2840
2841 return apply_modifiers (XCONS (XCONS (parsed)->cdr)->car,
2842 XCONS (parsed)->car);
2843}
2844
2845
284f4730
JB
2846/* For handling events, we often want to produce a symbol whose name
2847 is a series of modifier key prefixes ("M-", "C-", etcetera) attached
2848 to some base, like the name of a function key or mouse button.
2849 modify_event_symbol produces symbols of this sort.
2850
2851 NAME_TABLE should point to an array of strings, such that NAME_TABLE[i]
2852 is the name of the i'th symbol. TABLE_SIZE is the number of elements
2853 in the table.
2854
2855 SYMBOL_TABLE should be a pointer to a Lisp_Object whose value will
2856 persist between calls to modify_event_symbol that it can use to
2857 store a cache of the symbols it's generated for this NAME_TABLE
2858 before.
2859
2860 SYMBOL_NUM is the number of the base name we want from NAME_TABLE.
2861
2862 MODIFIERS is a set of modifier bits (as given in struct input_events)
2863 whose prefixes should be applied to the symbol name.
2864
2865 SYMBOL_KIND is the value to be placed in the event_kind property of
88cb0656
JB
2866 the returned symbol.
2867
2868 The symbols we create are supposed to have an
eb8c3be9 2869 `event-symbol-elements' property, which lists the modifiers present
88cb0656
JB
2870 in the symbol's name. */
2871
284f4730
JB
2872static Lisp_Object
2873modify_event_symbol (symbol_num, modifiers, symbol_kind, name_table,
2874 symbol_table, table_size)
2875 int symbol_num;
2876 unsigned modifiers;
2877 Lisp_Object symbol_kind;
2878 char **name_table;
2879 Lisp_Object *symbol_table;
2880 int table_size;
2881{
88cb0656 2882 Lisp_Object *slot;
284f4730
JB
2883
2884 /* Is this a request for a valid symbol? */
88cb0656 2885 if (symbol_num < 0 || symbol_num >= table_size)
284f4730
JB
2886 abort ();
2887
0a7f1fc0 2888 /* If *symbol_table doesn't seem to be initialized properly, fix that.
88cb0656 2889 *symbol_table should be a lisp vector TABLE_SIZE elements long,
4bb994d1
JB
2890 where the Nth element is the symbol for NAME_TABLE[N], or nil if
2891 we've never used that symbol before. */
284f4730
JB
2892 if (XTYPE (*symbol_table) != Lisp_Vector
2893 || XVECTOR (*symbol_table)->size != table_size)
88cb0656 2894 {
0a7f1fc0
JB
2895 Lisp_Object size;
2896
2897 XFASTINT (size) = table_size;
2898 *symbol_table = Fmake_vector (size, Qnil);
88cb0656 2899 }
284f4730 2900
88cb0656 2901 slot = & XVECTOR (*symbol_table)->contents[symbol_num];
284f4730 2902
0a7f1fc0
JB
2903 /* Have we already used this symbol before? */
2904 if (NILP (*slot))
284f4730 2905 {
0a7f1fc0 2906 /* No; let's create it. */
d1f50460
RS
2907 if (name_table[symbol_num])
2908 *slot = intern (name_table[symbol_num]);
2909 else
2910 {
2911 char buf[20];
2912 sprintf (buf, "key-%d", symbol_num);
2913 *slot = intern (buf);
2914 }
0a7f1fc0
JB
2915
2916 /* Fill in the cache entries for this symbol; this also
2917 builds the Qevent_symbol_elements property, which the user
2918 cares about. */
6569cc8d 2919 apply_modifiers (modifiers & click_modifier, *slot);
0a7f1fc0 2920 Fput (*slot, Qevent_kind, symbol_kind);
284f4730 2921 }
88cb0656 2922
0a7f1fc0
JB
2923 /* Apply modifiers to that symbol. */
2924 return apply_modifiers (modifiers, *slot);
284f4730 2925}
0a7f1fc0 2926
284f4730 2927\f
284f4730
JB
2928/* Store into *addr a value nonzero if terminal input chars are available.
2929 Serves the purpose of ioctl (0, FIONREAD, addr)
2930 but works even if FIONREAD does not exist.
2931 (In fact, this may actually read some input.) */
2932
2933static void
2934get_input_pending (addr)
2935 int *addr;
2936{
2937 /* First of all, have we already counted some input? */
2938 *addr = !NILP (Vquit_flag) || readable_events ();
2939
2940 /* If input is being read as it arrives, and we have none, there is none. */
2941 if (*addr > 0 || (interrupt_input && ! interrupts_deferred))
2942 return;
2943
2944 /* Try to read some input and see how much we get. */
2945 gobble_input (0);
2946 *addr = !NILP (Vquit_flag) || readable_events ();
2947}
2948
2949/* Interface to read_avail_input, blocking SIGIO if necessary. */
2950
2951int
2952gobble_input (expected)
2953 int expected;
2954{
2955#ifndef VMS
2956#ifdef SIGIO
2957 if (interrupt_input)
2958 {
32676c08 2959 SIGMASKTYPE mask;
e065a56e 2960 mask = sigblockx (SIGIO);
284f4730 2961 read_avail_input (expected);
e065a56e 2962 sigsetmask (mask);
284f4730
JB
2963 }
2964 else
2965#endif
2966 read_avail_input (expected);
2967#endif
2968}
2969\f
2970#ifndef VMS
2971
2972/* Read any terminal input already buffered up by the system
2973 into the kbd_buffer, but do not wait.
2974
2975 EXPECTED should be nonzero if the caller knows there is some input.
2976
2977 Except on VMS, all input is read by this function.
2978 If interrupt_input is nonzero, this function MUST be called
2979 only when SIGIO is blocked.
2980
2981 Returns the number of keyboard chars read, or -1 meaning
2982 this is a bad time to try to read input. */
2983
2984static int
2985read_avail_input (expected)
2986 int expected;
2987{
2988 struct input_event buf[KBD_BUFFER_SIZE];
2989 register int i;
2990 int nread;
2991
2992 if (read_socket_hook)
2993 /* No need for FIONREAD or fcntl; just say don't wait. */
2994 nread = (*read_socket_hook) (0, buf, KBD_BUFFER_SIZE, expected, expected);
2995 else
2996 {
2997 unsigned char cbuf[KBD_BUFFER_SIZE];
2998
2999#ifdef FIONREAD
3000 /* Find out how much input is available. */
3001 if (ioctl (0, FIONREAD, &nread) < 0)
3002 /* Formerly simply reported no input, but that sometimes led to
3003 a failure of Emacs to terminate.
3004 SIGHUP seems appropriate if we can't reach the terminal. */
e4535288
RS
3005 /* ??? Is it really right to send the signal just to this process
3006 rather than to the whole process group?
3007 Perhaps on systems with FIONREAD Emacs is alone in its group. */
284f4730
JB
3008 kill (getpid (), SIGHUP);
3009 if (nread == 0)
3010 return 0;
3011 if (nread > sizeof cbuf)
3012 nread = sizeof cbuf;
3013#else /* no FIONREAD */
3014#ifdef USG
3015 /* Read some input if available, but don't wait. */
3016 nread = sizeof cbuf;
3017 fcntl (fileno (stdin), F_SETFL, O_NDELAY);
3018#else
3019 you lose;
3020#endif
3021#endif
3022
3023 /* Now read; for one reason or another, this will not block. */
3024 while (1)
3025 {
3026 nread = read (fileno (stdin), cbuf, nread);
3027#ifdef AIX
3028 /* The kernel sometimes fails to deliver SIGHUP for ptys.
3029 This looks incorrect, but it isn't, because _BSD causes
3030 O_NDELAY to be defined in fcntl.h as O_NONBLOCK,
3031 and that causes a value other than 0 when there is no input. */
3032 if (nread == 0)
3033 kill (SIGHUP, 0);
3034#endif
3035 /* Retry the read if it is interrupted. */
3036 if (nread >= 0
3037 || ! (errno == EAGAIN || errno == EFAULT
3038#ifdef EBADSLT
3039 || errno == EBADSLT
3040#endif
3041 ))
3042 break;
3043 }
3044
3045#ifndef FIONREAD
3046#ifdef USG
3047 fcntl (fileno (stdin), F_SETFL, 0);
3048#endif /* USG */
3049#endif /* no FIONREAD */
3050 for (i = 0; i < nread; i++)
3051 {
3052 buf[i].kind = ascii_keystroke;
86e5706b 3053 buf[i].modifiers = 0;
b04904fb 3054 if (meta_key == 1 && (cbuf[i] & 0x80))
86e5706b 3055 buf[i].modifiers = meta_modifier;
b04904fb
RS
3056 if (meta_key != 2)
3057 cbuf[i] &= ~0x80;
86e5706b 3058
7b4aedb9
JB
3059 XSET (buf[i].code, Lisp_Int, cbuf[i]);
3060#ifdef MULTI_FRAME
3061 XSET (buf[i].frame_or_window, Lisp_Frame, selected_frame);
3062#else
3063 buf[i].frame_or_window = Qnil;
3064#endif
284f4730
JB
3065 }
3066 }
3067
3068 /* Scan the chars for C-g and store them in kbd_buffer. */
3069 for (i = 0; i < nread; i++)
3070 {
3071 kbd_buffer_store_event (&buf[i]);
3072 /* Don't look at input that follows a C-g too closely.
3073 This reduces lossage due to autorepeat on C-g. */
3074 if (buf[i].kind == ascii_keystroke
3075 && XINT(buf[i].code) == quit_char)
3076 break;
3077 }
3078
3079 return nread;
3080}
3081#endif /* not VMS */
3082\f
3083#ifdef SIGIO /* for entire page */
3084/* Note SIGIO has been undef'd if FIONREAD is missing. */
3085
2ce30ea2 3086SIGTYPE
284f4730
JB
3087input_available_signal (signo)
3088 int signo;
3089{
3090 /* Must preserve main program's value of errno. */
3091 int old_errno = errno;
3092#ifdef BSD4_1
3093 extern int select_alarmed;
3094#endif
3095
3096#ifdef USG
3097 /* USG systems forget handlers when they are used;
3098 must reestablish each time */
3099 signal (signo, input_available_signal);
3100#endif /* USG */
3101
3102#ifdef BSD4_1
3103 sigisheld (SIGIO);
3104#endif
3105
ffd56f97
JB
3106 if (input_available_clear_time)
3107 EMACS_SET_SECS_USECS (*input_available_clear_time, 0, 0);
284f4730
JB
3108
3109 while (1)
3110 {
3111 int nread;
3112 nread = read_avail_input (1);
3113 /* -1 means it's not ok to read the input now.
3114 UNBLOCK_INPUT will read it later; now, avoid infinite loop.
3115 0 means there was no keyboard input available. */
3116 if (nread <= 0)
3117 break;
3118
3119#ifdef BSD4_1
3120 select_alarmed = 1; /* Force the select emulator back to life */
3121#endif
3122 }
3123
3124#ifdef BSD4_1
3125 sigfree ();
3126#endif
3127 errno = old_errno;
3128}
3129#endif /* SIGIO */
ad163903
JB
3130
3131/* Send ourselves a SIGIO.
3132
3133 This function exists so that the UNBLOCK_INPUT macro in
3134 blockinput.h can have some way to take care of input we put off
3135 dealing with, without assuming that every file which uses
3136 UNBLOCK_INPUT also has #included the files necessary to get SIGIO. */
3137void
3138reinvoke_input_signal ()
3139{
3140#ifdef SIGIO
3141 kill (0, SIGIO);
3142#endif
3143}
3144
3145
284f4730
JB
3146\f
3147/* Return the prompt-string of a sparse keymap.
3148 This is the first element which is a string.
3149 Return nil if there is none. */
3150
3151Lisp_Object
3152map_prompt (map)
3153 Lisp_Object map;
3154{
3155 while (CONSP (map))
3156 {
3157 register Lisp_Object tem;
3158 tem = Fcar (map);
3159 if (XTYPE (tem) == Lisp_String)
3160 return tem;
3161 map = Fcdr (map);
3162 }
3163 return Qnil;
3164}
3165
5ec75a55
RS
3166static Lisp_Object menu_bar_item ();
3167static Lisp_Object menu_bar_one_keymap ();
3168
3169/* Return a list of menu items for a menu bar, appropriate
3170 to the current buffer.
3171 The elements have the form (KEY STRING . nil). */
3172
3173Lisp_Object
3174menu_bar_items ()
3175{
3176 /* The number of keymaps we're scanning right now, and the number of
3177 keymaps we have allocated space for. */
3178 int nmaps;
3179
3180 /* maps[0..nmaps-1] are the prefix definitions of KEYBUF[0..t-1]
3181 in the current keymaps, or nil where it is not a prefix. */
3182 Lisp_Object *maps;
3183
9f9c0e27 3184 Lisp_Object def, tem, tail;
5ec75a55
RS
3185
3186 Lisp_Object result;
3187
3188 int mapno;
47d319aa 3189 Lisp_Object oquit;
5ec75a55 3190
db60d856
JB
3191 /* In order to build the menus, we need to call the keymap
3192 accessors. They all call QUIT. But this function is called
3193 during redisplay, during which a quit is fatal. So inhibit
47d319aa
RS
3194 quitting while building the menus.
3195 We do this instead of specbind because (1) errors will clear it anyway
3196 and (2) this avoids risk of specpdl overflow. */
3197 oquit = Vinhibit_quit;
3198 Vinhibit_quit = Qt;
db60d856 3199
5ec75a55
RS
3200 /* Build our list of keymaps.
3201 If we recognize a function key and replace its escape sequence in
3202 keybuf with its symbol, or if the sequence starts with a mouse
3203 click and we need to switch buffers, we jump back here to rebuild
3204 the initial keymaps from the current buffer. */
3205 {
3206 Lisp_Object *tmaps;
3207
3208 nmaps = current_minor_maps (0, &tmaps) + 2;
3209 maps = (Lisp_Object *) alloca (nmaps * sizeof (maps[0]));
3210 bcopy (tmaps, maps, (nmaps - 2) * sizeof (maps[0]));
3211#ifdef USE_TEXT_PROPERTIES
3212 maps[nmaps-2] = get_local_map (PT, current_buffer);
3213#else
a6d53864 3214 maps[nmaps-2] = current_buffer->keymap;
5ec75a55 3215#endif
7e6992e0 3216 maps[nmaps-1] = current_global_map;
5ec75a55
RS
3217 }
3218
3219 /* Look up in each map the dummy prefix key `menu-bar'. */
3220
3221 result = Qnil;
3222
e58aa385 3223 for (mapno = nmaps - 1; mapno >= 0; mapno--)
5ec75a55
RS
3224 {
3225 if (! NILP (maps[mapno]))
e74fbc70 3226 def = get_keyelt (access_keymap (maps[mapno], Qmenu_bar, 1, 0));
5ec75a55
RS
3227 else
3228 def = Qnil;
3229
3230 tem = Fkeymapp (def);
3231 if (!NILP (tem))
3232 result = menu_bar_one_keymap (def, result);
3233 }
3234
9f9c0e27
RS
3235 for (tail = Vmenu_bar_final_items; CONSP (tail); tail = XCONS (tail)->cdr)
3236 {
3237 Lisp_Object elt;
3238
3239 elt = Fassq (XCONS (tail)->car, result);
3240 if (!NILP (elt))
3241 result = Fcons (elt, Fdelq (elt, result));
3242 }
a73c5e29 3243
85e28fa2 3244 result = Fnreverse (result);
47d319aa 3245 Vinhibit_quit = oquit;
85e28fa2 3246 return result;
5ec75a55
RS
3247}
3248\f
3249/* Scan one map KEYMAP, accumulating any menu items it defines
3250 that have not yet been seen in RESULT. Return the updated RESULT. */
3251
3252static Lisp_Object
3253menu_bar_one_keymap (keymap, result)
3254 Lisp_Object keymap, result;
3255{
3256 Lisp_Object tail, item, key, binding, item_string, table;
3257
3258 /* Loop over all keymap entries that have menu strings. */
3259 for (tail = keymap; XTYPE (tail) == Lisp_Cons; tail = XCONS (tail)->cdr)
3260 {
3261 item = XCONS (tail)->car;
3262 if (XTYPE (item) == Lisp_Cons)
3263 {
3264 key = XCONS (item)->car;
3265 binding = XCONS (item)->cdr;
3266 if (XTYPE (binding) == Lisp_Cons)
3267 {
3268 item_string = XCONS (binding)->car;
3269 if (XTYPE (item_string) == Lisp_String)
3270 result = menu_bar_item (key, item_string,
3271 Fcdr (binding), result);
3272 }
e58aa385
RS
3273 else if (EQ (binding, Qundefined))
3274 result = menu_bar_item (key, item_string,
ae450a95 3275 binding, result);
5ec75a55
RS
3276 }
3277 else if (XTYPE (item) == Lisp_Vector)
3278 {
3279 /* Loop over the char values represented in the vector. */
3280 int len = XVECTOR (item)->size;
3281 int c;
3282 for (c = 0; c < len; c++)
3283 {
3284 Lisp_Object character;
3285 XFASTINT (character) = c;
3286 binding = XVECTOR (item)->contents[c];
3287 if (XTYPE (binding) == Lisp_Cons)
3288 {
3289 item_string = XCONS (binding)->car;
3290 if (XTYPE (item_string) == Lisp_String)
3291 result = menu_bar_item (key, item_string,
3292 Fcdr (binding), result);
3293 }
e58aa385
RS
3294 else if (EQ (binding, Qundefined))
3295 result = menu_bar_item (key, item_string,
ae450a95 3296 binding, result);
5ec75a55
RS
3297 }
3298 }
3299 }
3300
3301 return result;
3302}
3303
3304static Lisp_Object
3305menu_bar_item (key, item_string, def, result)
3306 Lisp_Object key, item_string, def, result;
3307{
e58aa385 3308 Lisp_Object tem;
5ec75a55
RS
3309 Lisp_Object enabled;
3310
e58aa385
RS
3311 if (EQ (def, Qundefined))
3312 {
3313 /* If a map has an explicit nil as definition,
3314 discard any previously made menu bar item. */
3315 tem = Fassq (key, result);
3316 return Fdelq (tem, result);
3317 }
3318
5ec75a55
RS
3319 /* See if this entry is enabled. */
3320 enabled = Qt;
3321
3322 if (XTYPE (def) == Lisp_Symbol)
3323 {
3324 /* No property, or nil, means enable.
3325 Otherwise, enable if value is not nil. */
3326 tem = Fget (def, Qmenu_enable);
3327 if (!NILP (tem))
3328 enabled = Feval (tem);
3329 }
3330
3331 /* Add an entry for this key and string
3332 if there is none yet. */
e58aa385
RS
3333 tem = Fassq (key, result);
3334 if (!NILP (enabled) && NILP (tem))
5ec75a55
RS
3335 result = Fcons (Fcons (key, Fcons (item_string, Qnil)), result);
3336
3337 return result;
3338}
3339\f
284f4730
JB
3340static int echo_flag;
3341static int echo_now;
3342
dcc408a0
RS
3343/* Read a character using menus based on maps in the array MAPS.
3344 NMAPS is the length of MAPS. Return nil if there are no menus in the maps.
3345 Return t if we displayed a menu but the user rejected it.
7d6de002
RS
3346
3347 PREV_EVENT is the previous input event, or nil if we are reading
3348 the first event of a key sequence.
3349
6569cc8d
JB
3350 If USED_MOUSE_MENU is non-zero, then we set *USED_MOUSE_MENU to 1
3351 if we used a mouse menu to read the input, or zero otherwise. If
3352 USED_MOUSE_MENU is zero, *USED_MOUSE_MENU is left alone.
284f4730
JB
3353
3354 The prompting is done based on the prompt-string of the map
3355 and the strings associated with various map elements. */
3356
7617111f 3357static Lisp_Object
7d6de002
RS
3358read_char_menu_prompt (nmaps, maps, prev_event, used_mouse_menu)
3359 int nmaps;
3360 Lisp_Object *maps;
3361 Lisp_Object prev_event;
3362 int *used_mouse_menu;
284f4730 3363{
7d6de002
RS
3364 int mapno;
3365 register Lisp_Object name;
284f4730 3366 int nlength;
ff11dfa1 3367 int width = FRAME_WIDTH (selected_frame) - 4;
7d6de002
RS
3368 char *menu = (char *) alloca (width + 4);
3369 int idx = -1;
3370 Lisp_Object rest, vector;
3371
6569cc8d
JB
3372 if (used_mouse_menu)
3373 *used_mouse_menu = 0;
284f4730
JB
3374
3375 /* Use local over global Menu maps */
3376
7d6de002
RS
3377 if (! menu_prompting)
3378 return Qnil;
3379
3380 /* Get the menu name from the first map that has one (a prompt string). */
3381 for (mapno = 0; mapno < nmaps; mapno++)
3382 {
3383 name = map_prompt (maps[mapno]);
3384 if (!NILP (name))
3385 break;
3386 }
284f4730 3387
7d6de002 3388 /* If we don't have any menus, just read a character normally. */
dbc4e1c1 3389 if (mapno >= nmaps)
7d6de002
RS
3390 return Qnil;
3391
dbc4e1c1
JB
3392#ifdef HAVE_X_WINDOWS
3393#ifdef HAVE_X_MENU
7d6de002
RS
3394 /* If we got to this point via a mouse click,
3395 use a real menu for mouse selection. */
dbc4e1c1 3396 if (EVENT_HAS_PARAMETERS (prev_event))
7d6de002
RS
3397 {
3398 /* Display the menu and get the selection. */
3399 Lisp_Object *realmaps
3400 = (Lisp_Object *) alloca (nmaps * sizeof (Lisp_Object));
3401 Lisp_Object value;
3402 int nmaps1 = 0;
3403
3404 /* Use the maps that are not nil. */
3405 for (mapno = 0; mapno < nmaps; mapno++)
3406 if (!NILP (maps[mapno]))
3407 realmaps[nmaps1++] = maps[mapno];
3408
3409 value = Fx_popup_menu (prev_event, Flist (nmaps1, realmaps));
663258f2
JB
3410 if (CONSP (value))
3411 {
3412 /* If we got more than one event, put all but the first
3413 onto this list to be read later.
3414 Return just the first event now. */
3415 unread_command_events
3416 = nconc2 (XCONS (value)->cdr, unread_command_events);
3417 value = XCONS (value)->car;
3418 }
7d6de002 3419 if (NILP (value))
dcc408a0 3420 value = Qt;
6569cc8d
JB
3421 if (used_mouse_menu)
3422 *used_mouse_menu = 1;
7d6de002
RS
3423 return value;
3424 }
dbc4e1c1
JB
3425#endif /* HAVE_X_MENU */
3426#endif /* HAVE_X_WINDOWS */
284f4730
JB
3427
3428 /* Prompt string always starts with map's prompt, and a space. */
3429 strcpy (menu, XSTRING (name)->data);
3430 nlength = XSTRING (name)->size;
7d6de002 3431 menu[nlength++] = ':';
284f4730
JB
3432 menu[nlength++] = ' ';
3433 menu[nlength] = 0;
3434
7d6de002
RS
3435 /* Start prompting at start of first map. */
3436 mapno = 0;
3437 rest = maps[mapno];
284f4730
JB
3438
3439 /* Present the documented bindings, a line at a time. */
3440 while (1)
3441 {
3442 int notfirst = 0;
3443 int i = nlength;
3444 Lisp_Object obj;
3445 int ch;
3446
284f4730 3447 /* Loop over elements of map. */
7d6de002 3448 while (i < width)
284f4730 3449 {
7d6de002 3450 Lisp_Object s, elt;
284f4730 3451
7d6de002
RS
3452 /* If reached end of map, start at beginning of next map. */
3453 if (NILP (rest))
3454 {
3455 mapno++;
3456 /* At end of last map, wrap around to first map if just starting,
3457 or end this line if already have something on it. */
3458 if (mapno == nmaps)
284f4730 3459 {
7d6de002
RS
3460 if (notfirst)
3461 break;
3462 else
3463 mapno = 0;
284f4730 3464 }
7d6de002 3465 rest = maps[mapno];
284f4730 3466 }
7d6de002
RS
3467
3468 /* Look at the next element of the map. */
3469 if (idx >= 0)
3470 elt = XVECTOR (vector)->contents[idx];
284f4730 3471 else
7d6de002
RS
3472 elt = Fcar_safe (rest);
3473
3474 if (idx < 0 && XTYPE (elt) == Lisp_Vector)
284f4730 3475 {
7d6de002
RS
3476 /* If we found a dense table in the keymap,
3477 advanced past it, but start scanning its contents. */
3478 rest = Fcdr_safe (rest);
3479 vector = elt;
3480 idx = 0;
284f4730 3481 }
7d6de002
RS
3482 else
3483 {
3484 /* An ordinary element. */
3485 s = Fcar_safe (Fcdr_safe (elt));
3486 if (XTYPE (s) != Lisp_String)
3487 /* Ignore the element if it has no prompt string. */
3488 ;
3489 /* If we have room for the prompt string, add it to this line.
3490 If this is the first on the line, always add it. */
3491 else if (XSTRING (s)->size + i < width
3492 || !notfirst)
3493 {
3494 int thiswidth;
284f4730 3495
7d6de002
RS
3496 /* Punctuate between strings. */
3497 if (notfirst)
3498 {
3499 strcpy (menu + i, ", ");
3500 i += 2;
3501 }
3502 notfirst = 1;
3503
3504 /* Add as much of string as fits. */
3505 thiswidth = XSTRING (s)->size;
3506 if (thiswidth + i > width)
3507 thiswidth = width - i;
3508 bcopy (XSTRING (s)->data, menu + i, thiswidth);
3509 i += thiswidth;
3510 }
3511 else
3512 {
3513 /* If this element does not fit, end the line now,
3514 and save the element for the next line. */
3515 strcpy (menu + i, "...");
3516 break;
3517 }
3518
3519 /* Move past this element. */
3520 if (idx >= 0 && idx + 1 >= XVECTOR (rest)->size)
3521 /* Handle reaching end of dense table. */
3522 idx = -1;
3523 if (idx >= 0)
3524 idx++;
3525 else
3526 rest = Fcdr_safe (rest);
3527 }
284f4730
JB
3528 }
3529
3530 /* Prompt with that and read response. */
3531 message1 (menu);
7d6de002 3532 obj = read_char (1, 0, 0, Qnil, 0);
284f4730
JB
3533
3534 if (XTYPE (obj) != Lisp_Int)
3535 return obj;
3536 else
3537 ch = XINT (obj);
3538
f4255cd1 3539 if (! EQ (obj, menu_prompt_more_char)
284f4730 3540 && (XTYPE (menu_prompt_more_char) != Lisp_Int
f4255cd1 3541 || ! EQ (obj, make_number (Ctl (XINT (menu_prompt_more_char))))))
284f4730
JB
3542 return obj;
3543 }
3544}
284f4730
JB
3545\f
3546/* Reading key sequences. */
3547
3548/* Follow KEY in the maps in CURRENT[0..NMAPS-1], placing its bindings
3549 in DEFS[0..NMAPS-1]. Set NEXT[i] to DEFS[i] if DEFS[i] is a
3550 keymap, or nil otherwise. Return the index of the first keymap in
3551 which KEY has any binding, or NMAPS if no map has a binding.
3552
3553 If KEY is a meta ASCII character, treat it like meta-prefix-char
3554 followed by the corresponding non-meta character. Keymaps in
3555 CURRENT with non-prefix bindings for meta-prefix-char become nil in
3556 NEXT.
3557
3558 When KEY is not defined in any of the keymaps, if it is an upper
3559 case letter and there are bindings for the corresponding lower-case
3560 letter, return the bindings for the lower-case letter.
3561
88cb0656
JB
3562 If KEY has no bindings in any of the CURRENT maps, NEXT is left
3563 unmodified.
3564
284f4730
JB
3565 NEXT may == CURRENT. */
3566
3567static int
3568follow_key (key, nmaps, current, defs, next)
3569 Lisp_Object key;
3570 Lisp_Object *current, *defs, *next;
3571 int nmaps;
3572{
3573 int i, first_binding;
3574
3575 /* If KEY is a meta ASCII character, treat it like meta-prefix-char
3576 followed by the corresponding non-meta character. */
86e5706b 3577 if (XTYPE (key) == Lisp_Int && (XINT (key) & CHAR_META))
284f4730
JB
3578 {
3579 for (i = 0; i < nmaps; i++)
3580 if (! NILP (current[i]))
3581 {
cd21b839 3582 next[i] =
e74fbc70 3583 get_keyelt (access_keymap (current[i], meta_prefix_char, 1, 0));
284f4730
JB
3584
3585 /* Note that since we pass the resulting bindings through
3586 get_keymap_1, non-prefix bindings for meta-prefix-char
3587 disappear. */
f4255cd1 3588 next[i] = get_keymap_1 (next[i], 0, 1);
284f4730
JB
3589 }
3590 else
3591 next[i] = Qnil;
3592
3593 current = next;
86e5706b 3594 XSET (key, Lisp_Int, XFASTINT (key) & ~CHAR_META);
284f4730
JB
3595 }
3596
3597 first_binding = nmaps;
3598 for (i = nmaps - 1; i >= 0; i--)
3599 {
3600 if (! NILP (current[i]))
3601 {
e74fbc70 3602 defs[i] = get_keyelt (access_keymap (current[i], key, 1, 0));
284f4730
JB
3603 if (! NILP (defs[i]))
3604 first_binding = i;
3605 }
3606 else
3607 defs[i] = Qnil;
3608 }
3609
3610 /* When KEY is not defined in any of the keymaps, if it is an upper
3611 case letter and there are bindings for the corresponding
3612 lower-case letter, return the bindings for the lower-case letter. */
3613 if (first_binding == nmaps
3614 && XTYPE (key) == Lisp_Int
bb1ef421
RS
3615 && ((((XINT (key) & 0x3ffff)
3616 < XSTRING (current_buffer->downcase_table)->size)
3617 && UPPERCASEP (XINT (key) & 0x3ffff))
86e5706b 3618 || (XINT (key) & shift_modifier)))
284f4730 3619 {
86e5706b
RS
3620 if (XINT (key) & shift_modifier)
3621 XSETINT (key, XINT (key) & ~shift_modifier);
3622 else
3623 XSETINT (key, DOWNCASE (XINT (key)));
284f4730
JB
3624
3625 first_binding = nmaps;
3626 for (i = nmaps - 1; i >= 0; i--)
3627 {
3628 if (! NILP (current[i]))
3629 {
e74fbc70 3630 defs[i] = get_keyelt (access_keymap (current[i], key, 1, 0));
284f4730
JB
3631 if (! NILP (defs[i]))
3632 first_binding = i;
3633 }
3634 else
3635 defs[i] = Qnil;
3636 }
3637 }
86e5706b 3638
284f4730 3639 /* Given the set of bindings we've found, produce the next set of maps. */
0a7f1fc0
JB
3640 if (first_binding < nmaps)
3641 for (i = 0; i < nmaps; i++)
f4255cd1 3642 next[i] = NILP (defs[i]) ? Qnil : get_keymap_1 (defs[i], 0, 1);
284f4730
JB
3643
3644 return first_binding;
3645}
3646
f4255cd1
JB
3647/* Read a sequence of keys that ends with a non prefix character,
3648 storing it in KEYBUF, a buffer of size BUFSIZE.
3649 Prompt with PROMPT.
284f4730 3650 Return the length of the key sequence stored.
dcc408a0 3651 Return -1 if the user rejected a command menu.
284f4730 3652
f4255cd1
JB
3653 Echo starting immediately unless `prompt' is 0.
3654
3655 Where a key sequence ends depends on the currently active keymaps.
3656 These include any minor mode keymaps active in the current buffer,
3657 the current buffer's local map, and the global map.
3658
3659 If a key sequence has no other bindings, we check Vfunction_key_map
3660 to see if some trailing subsequence might be the beginning of a
3661 function key's sequence. If so, we try to read the whole function
3662 key, and substitute its symbolic name into the key sequence.
3663
fbcd35bd
JB
3664 We ignore unbound `down-' mouse clicks. We turn unbound `drag-' and
3665 `double-' events into similar click events, if that would make them
3666 bound. We try to turn `triple-' events first into `double-' events,
3667 then into clicks.
f4255cd1
JB
3668
3669 If we get a mouse click in a mode line, vertical divider, or other
3670 non-text area, we treat the click as if it were prefixed by the
3671 symbol denoting that area - `mode-line', `vertical-line', or
3672 whatever.
3673
3674 If the sequence starts with a mouse click, we read the key sequence
3675 with respect to the buffer clicked on, not the current buffer.
284f4730 3676
f4255cd1
JB
3677 If the user switches frames in the midst of a key sequence, we put
3678 off the switch-frame event until later; the next call to
3679 read_char will return it. */
48e416d4 3680
284f4730
JB
3681static int
3682read_key_sequence (keybuf, bufsize, prompt)
3683 Lisp_Object *keybuf;
3684 int bufsize;
f4255cd1 3685 char *prompt;
284f4730 3686{
f4255cd1
JB
3687 int count = specpdl_ptr - specpdl;
3688
284f4730
JB
3689 /* How many keys there are in the current key sequence. */
3690 int t;
3691
284f4730
JB
3692 /* The length of the echo buffer when we started reading, and
3693 the length of this_command_keys when we started reading. */
3694 int echo_start;
f4255cd1 3695 int keys_start;
284f4730
JB
3696
3697 /* The number of keymaps we're scanning right now, and the number of
3698 keymaps we have allocated space for. */
3699 int nmaps;
3700 int nmaps_allocated = 0;
3701
284f4730
JB
3702 /* defs[0..nmaps-1] are the definitions of KEYBUF[0..t-1] in
3703 the current keymaps. */
3704 Lisp_Object *defs;
3705
f4255cd1
JB
3706 /* submaps[0..nmaps-1] are the prefix definitions of KEYBUF[0..t-1]
3707 in the current keymaps, or nil where it is not a prefix. */
3708 Lisp_Object *submaps;
3709
3710 /* The index in defs[] of the first keymap that has a binding for
3711 this key sequence. In other words, the lowest i such that
3712 defs[i] is non-nil. */
284f4730
JB
3713 int first_binding;
3714
f4255cd1 3715 /* If t < mock_input, then KEYBUF[t] should be read as the next
253598e4
JB
3716 input key.
3717
3718 We use this to recover after recognizing a function key. Once we
3719 realize that a suffix of the current key sequence is actually a
3720 function key's escape sequence, we replace the suffix with the
3721 function key's binding from Vfunction_key_map. Now keybuf
f4255cd1
JB
3722 contains a new and different key sequence, so the echo area,
3723 this_command_keys, and the submaps and defs arrays are wrong. In
3724 this situation, we set mock_input to t, set t to 0, and jump to
3725 restart_sequence; the loop will read keys from keybuf up until
3726 mock_input, thus rebuilding the state; and then it will resume
3727 reading characters from the keyboard. */
284f4730
JB
3728 int mock_input = 0;
3729
253598e4 3730 /* If the sequence is unbound in submaps[], then
f4255cd1
JB
3731 keybuf[fkey_start..fkey_end-1] is a prefix in Vfunction_key_map,
3732 and fkey_map is its binding.
253598e4 3733
f4255cd1
JB
3734 These might be > t, indicating that all function key scanning
3735 should hold off until t reaches them. We do this when we've just
3736 recognized a function key, to avoid searching for the function
3737 key's again in Vfunction_key_map. */
284f4730 3738 int fkey_start = 0, fkey_end = 0;
4efda7dd 3739 Lisp_Object fkey_map;
284f4730 3740
a612e298
RS
3741 /* Likewise, for key_translation_map. */
3742 int keytran_start = 0, keytran_end = 0;
3743 Lisp_Object keytran_map;
3744
cd21b839
JB
3745 /* If we receive a ``switch-frame'' event in the middle of a key sequence,
3746 we put it off for later. While we're reading, we keep the event here. */
4efda7dd 3747 Lisp_Object delayed_switch_frame;
cd21b839 3748
4efda7dd
RS
3749 Lisp_Object first_event;
3750
3751 int junk;
3752
3753 last_nonmenu_event = Qnil;
3754
3755 delayed_switch_frame = Qnil;
3756 fkey_map = Vfunction_key_map;
a612e298 3757 keytran_map = Vkey_translation_map;
f4255cd1 3758
a612e298 3759 /* If there is no function-key-map, turn off function key scanning. */
f4255cd1
JB
3760 if (NILP (Fkeymapp (Vfunction_key_map)))
3761 fkey_start = fkey_end = bufsize + 1;
3762
a612e298
RS
3763 /* If there is no key-translation-map, turn off scanning. */
3764 if (NILP (Fkeymapp (Vkey_translation_map)))
3765 keytran_start = keytran_end = bufsize + 1;
3766
284f4730
JB
3767 if (INTERACTIVE)
3768 {
3769 if (prompt)
3770 echo_prompt (prompt);
3771 else if (cursor_in_echo_area)
3772 /* This doesn't put in a dash if the echo buffer is empty, so
3773 you don't always see a dash hanging out in the minibuffer. */
3774 echo_dash ();
284f4730
JB
3775 }
3776
f4255cd1
JB
3777 /* Record the initial state of the echo area and this_command_keys;
3778 we will need to restore them if we replay a key sequence. */
0a7f1fc0 3779 if (INTERACTIVE)
f4255cd1
JB
3780 echo_start = echo_length ();
3781 keys_start = this_command_key_count;
0a7f1fc0 3782
a6d53864
RS
3783#if 0 /* This doesn't quite work, because some of the things
3784 that read_char does cannot safely be bypassed.
3785 It seems too risky to try to make this work right. */
4efda7dd
RS
3786 /* Read the first char of the sequence specially, before setting
3787 up any keymaps, in case a filter runs and switches buffers on us. */
3788 first_event = read_char (!prompt, 0, submaps, last_nonmenu_event,
3789 &junk);
a6d53864 3790#endif
4efda7dd 3791
7b4aedb9
JB
3792 /* We jump here when the key sequence has been thoroughly changed, and
3793 we need to rescan it starting from the beginning. When we jump here,
3794 keybuf[0..mock_input] holds the sequence we should reread. */
07d2b8de 3795 replay_sequence:
7b4aedb9 3796
f4255cd1 3797 /* Build our list of keymaps.
07d2b8de
JB
3798 If we recognize a function key and replace its escape sequence in
3799 keybuf with its symbol, or if the sequence starts with a mouse
3800 click and we need to switch buffers, we jump back here to rebuild
3801 the initial keymaps from the current buffer. */
284f4730
JB
3802 {
3803 Lisp_Object *maps;
3804
3805 nmaps = current_minor_maps (0, &maps) + 2;
3806 if (nmaps > nmaps_allocated)
3807 {
253598e4 3808 submaps = (Lisp_Object *) alloca (nmaps * sizeof (submaps[0]));
284f4730
JB
3809 defs = (Lisp_Object *) alloca (nmaps * sizeof (defs[0]));
3810 nmaps_allocated = nmaps;
3811 }
253598e4 3812 bcopy (maps, submaps, (nmaps - 2) * sizeof (submaps[0]));
497ba7a1
RS
3813#ifdef USE_TEXT_PROPERTIES
3814 submaps[nmaps-2] = get_local_map (PT, current_buffer);
3815#else
a6d53864 3816 submaps[nmaps-2] = current_buffer->keymap;
497ba7a1 3817#endif
7e6992e0 3818 submaps[nmaps-1] = current_global_map;
284f4730
JB
3819 }
3820
3821 /* Find an accurate initial value for first_binding. */
3822 for (first_binding = 0; first_binding < nmaps; first_binding++)
253598e4 3823 if (! NILP (submaps[first_binding]))
284f4730
JB
3824 break;
3825
f4255cd1
JB
3826 /* We jump here when a function key substitution has forced us to
3827 reprocess the current key sequence. keybuf[0..mock_input] is the
3828 sequence we want to reread. */
3829 t = 0;
3830
3831 /* These are no-ops the first time through, but if we restart, they
3832 revert the echo area and this_command_keys to their original state. */
3833 this_command_key_count = keys_start;
3834 if (INTERACTIVE)
3835 echo_truncate (echo_start);
3836
cca310da
JB
3837 /* If the best binding for the current key sequence is a keymap, or
3838 we may be looking at a function key's escape sequence, keep on
3839 reading. */
253598e4 3840 while ((first_binding < nmaps && ! NILP (submaps[first_binding]))
cca310da
JB
3841 || (first_binding >= nmaps
3842 && fkey_start < t
3843 /* mock input is never part of a function key's sequence. */
a612e298
RS
3844 && mock_input <= fkey_start)
3845 || (first_binding >= nmaps
3846 && keytran_start < t
3847 /* mock input is never part of a function key's sequence. */
3848 && mock_input <= keytran_start))
284f4730
JB
3849 {
3850 Lisp_Object key;
7d6de002 3851 int used_mouse_menu = 0;
284f4730 3852
7b4aedb9
JB
3853 /* Where the last real key started. If we need to throw away a
3854 key that has expanded into more than one element of keybuf
3855 (say, a mouse click on the mode line which is being treated
3856 as [mode-line (mouse-...)], then we backtrack to this point
3857 of keybuf. */
3858 int last_real_key_start;
3859
0a7f1fc0
JB
3860 /* These variables are analogous to echo_start and keys_start;
3861 while those allow us to restart the entire key sequence,
3862 echo_local_start and keys_local_start allow us to throw away
3863 just one key. */
f4255cd1
JB
3864 int echo_local_start, keys_local_start, local_first_binding;
3865
284f4730
JB
3866 if (t >= bufsize)
3867 error ("key sequence too long");
3868
f4255cd1
JB
3869 if (INTERACTIVE)
3870 echo_local_start = echo_length ();
3871 keys_local_start = this_command_key_count;
3872 local_first_binding = first_binding;
3873
3874 replay_key:
0a7f1fc0 3875 /* These are no-ops, unless we throw away a keystroke below and
f4255cd1
JB
3876 jumped back up to replay_key; in that case, these restore the
3877 variables to their original state, allowing us to replay the
0a7f1fc0 3878 loop. */
f4255cd1
JB
3879 if (INTERACTIVE)
3880 echo_truncate (echo_local_start);
0a7f1fc0
JB
3881 this_command_key_count = keys_local_start;
3882 first_binding = local_first_binding;
3883
7e85b935
RS
3884 /* By default, assume each event is "real". */
3885 last_real_key_start = t;
3886
f4255cd1 3887 /* Does mock_input indicate that we are re-reading a key sequence? */
284f4730
JB
3888 if (t < mock_input)
3889 {
3890 key = keybuf[t];
3891 add_command_key (key);
3892 echo_char (key);
3893 }
253598e4
JB
3894
3895 /* If not, we should actually read a character. */
284f4730
JB
3896 else
3897 {
a6d53864
RS
3898 struct buffer *buf = current_buffer;
3899
a6d53864
RS
3900 key = read_char (!prompt, nmaps, submaps, last_nonmenu_event,
3901 &used_mouse_menu);
284f4730 3902
dcc408a0
RS
3903 /* read_char returns t when it shows a menu and the user rejects it.
3904 Just return -1. */
3905 if (EQ (key, Qt))
3906 return -1;
3907
f4255cd1 3908 /* read_char returns -1 at the end of a macro.
284f4730
JB
3909 Emacs 18 handles this by returning immediately with a
3910 zero, so that's what we'll do. */
86e5706b 3911 if (XTYPE (key) == Lisp_Int && XINT (key) == -1)
cd21b839 3912 {
f4255cd1
JB
3913 t = 0;
3914 goto done;
cd21b839 3915 }
284f4730
JB
3916
3917 Vquit_flag = Qnil;
7e85b935 3918 }
284f4730 3919
7e85b935
RS
3920 /* Clicks in non-text areas get prefixed by the symbol
3921 in their CHAR-ADDRESS field. For example, a click on
3922 the mode line is prefixed by the symbol `mode-line'.
3923
3924 Furthermore, key sequences beginning with mouse clicks
3925 are read using the keymaps of the buffer clicked on, not
3926 the current buffer. So we may have to switch the buffer
3927 here.
3928
3929 When we turn one event into two events, we must make sure
3930 that neither of the two looks like the original--so that,
3931 if we replay the events, they won't be expanded again.
3932 If not for this, such reexpansion could happen either here
3933 or when user programs play with this-command-keys. */
3934 if (EVENT_HAS_PARAMETERS (key))
3935 {
3936 Lisp_Object kind = EVENT_HEAD_KIND (EVENT_HEAD (key));
cca310da 3937
7e85b935 3938 if (EQ (kind, Qmouse_click))
0a7f1fc0 3939 {
7e85b935
RS
3940 Lisp_Object window = POSN_WINDOW (EVENT_START (key));
3941 Lisp_Object posn = POSN_BUFFER_POSN (EVENT_START (key));
f4255cd1 3942
7e85b935 3943 if (XTYPE (posn) == Lisp_Cons)
0a7f1fc0 3944 {
7e85b935
RS
3945 /* We're looking at the second event of a
3946 sequence which we expanded before. Set
3947 last_real_key_start appropriately. */
3948 if (t > 0)
3949 last_real_key_start = t - 1;
cd21b839 3950 }
7e85b935
RS
3951
3952 /* Key sequences beginning with mouse clicks are
3953 read using the keymaps in the buffer clicked on,
3954 not the current buffer. If we're at the
3955 beginning of a key sequence, switch buffers. */
3956 if (last_real_key_start == 0
3957 && XTYPE (window) == Lisp_Window
3958 && XTYPE (XWINDOW (window)->buffer) == Lisp_Buffer
3959 && XBUFFER (XWINDOW (window)->buffer) != current_buffer)
cd21b839 3960 {
7e85b935
RS
3961 keybuf[t] = key;
3962 mock_input = t + 1;
3963
3964 /* Arrange to go back to the original buffer once we're
3965 done reading the key sequence. Note that we can't
3966 use save_excursion_{save,restore} here, because they
3967 save point as well as the current buffer; we don't
3968 want to save point, because redisplay may change it,
3969 to accommodate a Fset_window_start or something. We
3970 don't want to do this at the top of the function,
3971 because we may get input from a subprocess which
3972 wants to change the selected window and stuff (say,
3973 emacsclient). */
3974 record_unwind_protect (Fset_buffer, Fcurrent_buffer ());
3975
3976 set_buffer_internal (XBUFFER (XWINDOW (window)->buffer));
3977 goto replay_sequence;
0a7f1fc0 3978 }
7e85b935 3979 else if (XTYPE (posn) == Lisp_Symbol)
5ec75a55 3980 {
7e85b935
RS
3981 /* Expand mode-line and scroll-bar events into two events:
3982 use posn as a fake prefix key. */
5ec75a55 3983
7e85b935
RS
3984 if (t + 1 >= bufsize)
3985 error ("key sequence too long");
3986 keybuf[t] = posn;
3987 keybuf[t+1] = key;
3988 mock_input = t + 2;
3989
3990 /* Zap the position in key, so we know that we've
3991 expanded it, and don't try to do so again. */
3992 POSN_BUFFER_POSN (EVENT_START (key))
3993 = Fcons (posn, Qnil);
3994 goto replay_key;
5ec75a55 3995 }
0a7f1fc0 3996 }
7e85b935 3997 else if (EQ (kind, Qswitch_frame))
a6d53864 3998 {
7e85b935
RS
3999 /* If we're at the beginning of a key sequence, go
4000 ahead and return this event. If we're in the
4001 midst of a key sequence, delay it until the end. */
4002 if (t > 0)
4003 {
4004 delayed_switch_frame = key;
4005 goto replay_key;
4006 }
4007 }
4008 else
4009 {
4010 Lisp_Object posn = POSN_BUFFER_POSN (EVENT_START (key));
4011
4012 /* Handle menu-bar events:
4013 insert the dummy prefix event `menu-bar'. */
4014 if (EQ (posn, Qmenu_bar))
4015 {
4016 if (t + 1 >= bufsize)
4017 error ("key sequence too long");
4018 /* Run the Lucid hook. */
4019 call1 (Vrun_hooks, Qactivate_menubar_hook);
4020 /* If it has changed current-menubar from previous value,
4021 really recompute the menubar from the value. */
4022 if (! NILP (Vlucid_menu_bar_dirty_flag))
4023 call0 (Qrecompute_lucid_menubar);
4024 keybuf[t] = posn;
4025 keybuf[t+1] = key;
4026
4027 /* Zap the position in key, so we know that we've
4028 expanded it, and don't try to do so again. */
4029 POSN_BUFFER_POSN (EVENT_START (key))
4030 = Fcons (posn, Qnil);
4031
4032 mock_input = t + 2;
4033 goto replay_sequence;
4034 }
4035 else if (XTYPE (posn) == Lisp_Cons)
4036 {
4037 /* We're looking at the second event of a
4038 sequence which we expanded before. Set
4039 last_real_key_start appropriately. */
4040 if (last_real_key_start == t && t > 0)
4041 last_real_key_start = t - 1;
4042 }
a6d53864 4043 }
284f4730 4044 }
f4255cd1
JB
4045
4046 /* We have finally decided that KEY is something we might want
4047 to look up. */
284f4730
JB
4048 first_binding = (follow_key (key,
4049 nmaps - first_binding,
253598e4 4050 submaps + first_binding,
284f4730 4051 defs + first_binding,
253598e4 4052 submaps + first_binding)
284f4730 4053 + first_binding);
0a7f1fc0 4054
f4255cd1 4055 /* If KEY wasn't bound, we'll try some fallbacks. */
0a7f1fc0
JB
4056 if (first_binding >= nmaps)
4057 {
4058 Lisp_Object head = EVENT_HEAD (key);
4059
7e85b935
RS
4060 if (EQ (head, Vhelp_char))
4061 {
4062 read_key_sequence_cmd = Vprefix_help_command;
4063 keybuf[t++] = key;
4064 last_nonmenu_event = key;
4065 goto done;
4066 }
4067
0a7f1fc0
JB
4068 if (XTYPE (head) == Lisp_Symbol)
4069 {
4070 Lisp_Object breakdown = parse_modifiers (head);
80645119 4071 int modifiers = XINT (XCONS (XCONS (breakdown)->cdr)->car);
0a7f1fc0 4072
559f9d04
RS
4073 /* Attempt to reduce an unbound mouse event to a simpler
4074 event that is bound:
4075 Drags reduce to clicks.
4076 Double-clicks reduce to clicks.
4077 Triple-clicks reduce to double-clicks, then to clicks.
4078 Down-clicks are eliminated.
4079 Double-downs reduce to downs, then are eliminated.
4080 Triple-downs reduce to double-downs, then to downs,
4081 then are eliminated. */
4082 if (modifiers & (down_modifier | drag_modifier
4083 | double_modifier | triple_modifier))
0a7f1fc0 4084 {
559f9d04
RS
4085 while (modifiers & (down_modifier | drag_modifier
4086 | double_modifier | triple_modifier))
fbcd35bd
JB
4087 {
4088 Lisp_Object new_head, new_click;
4089 if (modifiers & triple_modifier)
4090 modifiers ^= (double_modifier | triple_modifier);
559f9d04 4091 else if (modifiers & (drag_modifier | double_modifier))
fbcd35bd 4092 modifiers &= ~(drag_modifier | double_modifier);
559f9d04
RS
4093 else
4094 {
4095 /* Dispose of this `down' event by simply jumping
4096 back to replay_key, to get another event.
4097
4098 Note that if this event came from mock input,
4099 then just jumping back to replay_key will just
4100 hand it to us again. So we have to wipe out any
4101 mock input.
4102
4103 We could delete keybuf[t] and shift everything
4104 after that to the left by one spot, but we'd also
4105 have to fix up any variable that points into
4106 keybuf, and shifting isn't really necessary
4107 anyway.
4108
4109 Adding prefixes for non-textual mouse clicks
4110 creates two characters of mock input, and both
4111 must be thrown away. If we're only looking at
4112 the prefix now, we can just jump back to
4113 replay_key. On the other hand, if we've already
4114 processed the prefix, and now the actual click
4115 itself is giving us trouble, then we've lost the
4116 state of the keymaps we want to backtrack to, and
4117 we need to replay the whole sequence to rebuild
4118 it.
4119
4120 Beyond that, only function key expansion could
4121 create more than two keys, but that should never
4122 generate mouse events, so it's okay to zero
4123 mock_input in that case too.
4124
4125 Isn't this just the most wonderful code ever? */
4126 if (t == last_real_key_start)
4127 {
4128 mock_input = 0;
4129 goto replay_key;
4130 }
4131 else
4132 {
4133 mock_input = last_real_key_start;
4134 goto replay_sequence;
4135 }
4136 }
4137
fbcd35bd
JB
4138 new_head =
4139 apply_modifiers (modifiers, XCONS (breakdown)->car);
4140 new_click =
4141 Fcons (new_head, Fcons (EVENT_START (key), Qnil));
4142
4143 /* Look for a binding for this new key. follow_key
4144 promises that it didn't munge submaps the
4145 last time we called it, since key was unbound. */
4146 first_binding =
4147 (follow_key (new_click,
4148 nmaps - local_first_binding,
4149 submaps + local_first_binding,
4150 defs + local_first_binding,
4151 submaps + local_first_binding)
4152 + local_first_binding);
4153
4154 /* If that click is bound, go for it. */
4155 if (first_binding < nmaps)
4156 {
4157 key = new_click;
4158 break;
4159 }
4160 /* Otherwise, we'll leave key set to the drag event. */
4161 }
0a7f1fc0
JB
4162 }
4163 }
4164 }
4165
284f4730 4166 keybuf[t++] = key;
7d6de002
RS
4167 /* Normally, last_nonmenu_event gets the previous key we read.
4168 But when a mouse popup menu is being used,
4169 we don't update last_nonmenu_event; it continues to hold the mouse
4170 event that preceded the first level of menu. */
4171 if (!used_mouse_menu)
4172 last_nonmenu_event = key;
284f4730
JB
4173
4174 /* If the sequence is unbound, see if we can hang a function key
253598e4
JB
4175 off the end of it. We only want to scan real keyboard input
4176 for function key sequences, so if mock_input says that we're
f4255cd1 4177 re-reading old events, don't examine it. */
284f4730 4178 if (first_binding >= nmaps
253598e4 4179 && t >= mock_input)
284f4730
JB
4180 {
4181 Lisp_Object fkey_next;
4182
4183 /* Scan from fkey_end until we find a bound suffix. */
4184 while (fkey_end < t)
4185 {
f4255cd1
JB
4186 Lisp_Object key;
4187
4188 key = keybuf[fkey_end++];
067ffa38
JB
4189 /* Look up meta-characters by prefixing them
4190 with meta_prefix_char. I hate this. */
d3cc13fa 4191 if (XTYPE (key) == Lisp_Int && XINT (key) & meta_modifier)
f4255cd1 4192 {
e74fbc70
RS
4193 fkey_next
4194 = get_keymap_1
f4255cd1 4195 (get_keyelt
e74fbc70 4196 (access_keymap (fkey_map, meta_prefix_char, 1, 0)),
f4255cd1 4197 0, 1);
d3cc13fa 4198 XFASTINT (key) = XFASTINT (key) & ~meta_modifier;
f4255cd1 4199 }
067ffa38
JB
4200 else
4201 fkey_next = fkey_map;
4202
e74fbc70
RS
4203 fkey_next
4204 = get_keyelt (access_keymap (fkey_next, key, 1, 0));
067ffa38 4205
85bc5181 4206 /* If keybuf[fkey_start..fkey_end] is bound in the
a764a753 4207 function key map and it's a suffix of the current
85bc5181 4208 sequence (i.e. fkey_end == t), replace it with
a764a753 4209 the binding and restart with fkey_start at the end. */
f5ea6163 4210 if ((VECTORP (fkey_next) || STRINGP (fkey_next))
284f4730
JB
4211 && fkey_end == t)
4212 {
2e864a76 4213 int len = XFASTINT (Flength (fkey_next));
f5ea6163
JB
4214
4215 t = fkey_start + len;
284f4730
JB
4216 if (t >= bufsize)
4217 error ("key sequence too long");
4218
f5ea6163
JB
4219 if (VECTORP (fkey_next))
4220 bcopy (XVECTOR (fkey_next)->contents,
4221 keybuf + fkey_start,
4222 (t - fkey_start) * sizeof (keybuf[0]));
4223 else if (STRINGP (fkey_next))
4224 {
4225 int i;
4226
4227 for (i = 0; i < len; i++)
4228 XFASTINT (keybuf[fkey_start + i]) =
4229 XSTRING (fkey_next)->data[i];
4230 }
284f4730
JB
4231
4232 mock_input = t;
4233 fkey_start = fkey_end = t;
32e6d806 4234 fkey_map = Vfunction_key_map;
284f4730 4235
f4255cd1 4236 goto replay_sequence;
284f4730
JB
4237 }
4238
f4255cd1 4239 fkey_map = get_keymap_1 (fkey_next, 0, 1);
284f4730 4240
a764a753
JB
4241 /* If we no longer have a bound suffix, try a new positions for
4242 fkey_start. */
284f4730
JB
4243 if (NILP (fkey_map))
4244 {
4245 fkey_end = ++fkey_start;
4246 fkey_map = Vfunction_key_map;
4247 }
4248 }
4249 }
a612e298
RS
4250
4251 /* Look for this sequence in key-translation-map. */
4252 {
4253 Lisp_Object keytran_next;
4254
4255 /* Scan from keytran_end until we find a bound suffix. */
4256 while (keytran_end < t)
4257 {
4258 Lisp_Object key;
4259
4260 key = keybuf[keytran_end++];
4261 /* Look up meta-characters by prefixing them
4262 with meta_prefix_char. I hate this. */
4263 if (XTYPE (key) == Lisp_Int && XINT (key) & meta_modifier)
4264 {
4265 keytran_next
4266 = get_keymap_1
4267 (get_keyelt
4268 (access_keymap (keytran_map, meta_prefix_char, 1, 0)),
4269 0, 1);
4270 XFASTINT (key) = XFASTINT (key) & ~meta_modifier;
4271 }
4272 else
4273 keytran_next = keytran_map;
4274
4275 keytran_next
4276 = get_keyelt (access_keymap (keytran_next, key, 1, 0));
4277
4278 /* If keybuf[keytran_start..keytran_end] is bound in the
4279 function key map and it's a suffix of the current
4280 sequence (i.e. keytran_end == t), replace it with
4281 the binding and restart with keytran_start at the end. */
4282 if ((VECTORP (keytran_next) || STRINGP (keytran_next))
4283 && keytran_end == t)
4284 {
2e864a76 4285 int len = XFASTINT (Flength (keytran_next));
a612e298
RS
4286
4287 t = keytran_start + len;
4288 if (t >= bufsize)
4289 error ("key sequence too long");
4290
4291 if (VECTORP (keytran_next))
4292 bcopy (XVECTOR (keytran_next)->contents,
4293 keybuf + keytran_start,
4294 (t - keytran_start) * sizeof (keybuf[0]));
4295 else if (STRINGP (keytran_next))
4296 {
4297 int i;
4298
4299 for (i = 0; i < len; i++)
4300 XFASTINT (keybuf[keytran_start + i])
4301 = XSTRING (keytran_next)->data[i];
4302 }
4303
4304 mock_input = t;
4305 keytran_start = keytran_end = t;
4306 keytran_map = Vkey_translation_map;
4307
4308 goto replay_sequence;
4309 }
4310
4311 keytran_map = get_keymap_1 (keytran_next, 0, 1);
4312
4313 /* If we no longer have a bound suffix, try a new positions for
4314 keytran_start. */
4315 if (NILP (keytran_map))
4316 {
4317 keytran_end = ++keytran_start;
4318 keytran_map = Vkey_translation_map;
4319 }
4320 }
4321 }
284f4730
JB
4322 }
4323
4324 read_key_sequence_cmd = (first_binding < nmaps
4325 ? defs[first_binding]
4326 : Qnil);
4327
f4255cd1 4328 done:
cd21b839 4329 unread_switch_frame = delayed_switch_frame;
f4255cd1 4330 unbind_to (count, Qnil);
07f76a14
JB
4331
4332 /* Occasionally we fabricate events, perhaps by expanding something
4333 according to function-key-map, or by adding a prefix symbol to a
4334 mouse click in the scroll bar or modeline. In this cases, return
4335 the entire generated key sequence, even if we hit an unbound
4336 prefix or a definition before the end. This means that you will
4337 be able to push back the event properly, and also means that
4338 read-key-sequence will always return a logical unit.
4339
4340 Better ideas? */
cca310da
JB
4341 for (; t < mock_input; t++)
4342 {
4343 echo_char (keybuf[t]);
4344 add_command_key (keybuf[t]);
4345 }
07f76a14 4346
284f4730
JB
4347 return t;
4348}
4349
a612e298
RS
4350#if 0 /* This doc string is too long for some compilers.
4351 This commented-out definition serves for DOC. */
c0a58692 4352DEFUN ("read-key-sequence", Fread_key_sequence, Sread_key_sequence, 1, 2, 0,
284f4730
JB
4353 "Read a sequence of keystrokes and return as a string or vector.\n\
4354The sequence is sufficient to specify a non-prefix command in the\n\
4355current local and global maps.\n\
4356\n\
c0a58692
RS
4357First arg PROMPT is a prompt string. If nil, do not prompt specially.\n\
4358Second (optional) arg CONTINUE-ECHO, if non-nil, means this key echos\n\
4359as a continuation of the previous key.\n\
284f4730 4360\n\
cb5df6ae
JB
4361A C-g typed while in this function is treated like any other character,\n\
4362and `quit-flag' is not set.\n\
4363\n\
4364If the key sequence starts with a mouse click, then the sequence is read\n\
4365using the keymaps of the buffer of the window clicked in, not the buffer\n\
4366of the selected window as normal.\n\
4367\n\
4368`read-key-sequence' drops unbound button-down events, since you normally\n\
4369only care about the click or drag events which follow them. If a drag\n\
fbcd35bd
JB
4370or multi-click event is unbound, but the corresponding click event would\n\
4371be bound, `read-key-sequence' turns the event into a click event at the\n\
cb5df6ae 4372drag's starting position. This means that you don't have to distinguish\n\
fbcd35bd 4373between click and drag, double, or triple events unless you want to.\n\
cb5df6ae
JB
4374\n\
4375`read-key-sequence' prefixes mouse events on mode lines, the vertical\n\
3c370943
JB
4376lines separating windows, and scroll bars with imaginary keys\n\
4377`mode-line', `vertical-line', and `vertical-scroll-bar'.\n\
cb5df6ae
JB
4378\n\
4379If the user switches frames in the middle of a key sequence, the\n\
4380frame-switch event is put off until after the current key sequence.\n\
4381\n\
4382`read-key-sequence' checks `function-key-map' for function key\n\
4383sequences, where they wouldn't conflict with ordinary bindings. See\n\
4bb994d1 4384`function-key-map' for more details.")
a612e298
RS
4385 (prompt, continue_echo)
4386#endif
4387
4388DEFUN ("read-key-sequence", Fread_key_sequence, Sread_key_sequence, 1, 2, 0,
4389 0)
c0a58692
RS
4390 (prompt, continue_echo)
4391 Lisp_Object prompt, continue_echo;
284f4730
JB
4392{
4393 Lisp_Object keybuf[30];
4394 register int i;
4395 struct gcpro gcpro1, gcpro2;
4396
4397 if (!NILP (prompt))
4398 CHECK_STRING (prompt, 0);
4399 QUIT;
4400
4401 bzero (keybuf, sizeof keybuf);
4402 GCPRO1 (keybuf[0]);
4403 gcpro1.nvars = (sizeof keybuf/sizeof (keybuf[0]));
4404
daa37602 4405 if (NILP (continue_echo))
c0a58692
RS
4406 this_command_key_count = 0;
4407
284f4730 4408 i = read_key_sequence (keybuf, (sizeof keybuf/sizeof (keybuf[0])),
f4255cd1 4409 NILP (prompt) ? 0 : XSTRING (prompt)->data);
284f4730 4410
dcc408a0
RS
4411 if (i == -1)
4412 {
4413 Vquit_flag = Qt;
4414 QUIT;
4415 }
284f4730 4416 UNGCPRO;
86e5706b 4417 return make_event_array (i, keybuf);
284f4730
JB
4418}
4419\f
4420DEFUN ("command-execute", Fcommand_execute, Scommand_execute, 1, 2, 0,
4421 "Execute CMD as an editor command.\n\
4422CMD must be a symbol that satisfies the `commandp' predicate.\n\
4423Optional second arg RECORD-FLAG non-nil\n\
4424means unconditionally put this command in `command-history'.\n\
4425Otherwise, that is done only if an arg is read using the minibuffer.")
4426 (cmd, record)
4427 Lisp_Object cmd, record;
4428{
4429 register Lisp_Object final;
4430 register Lisp_Object tem;
4431 Lisp_Object prefixarg;
4432 struct backtrace backtrace;
4433 extern int debug_on_next_call;
4434
4435 prefixarg = Vprefix_arg, Vprefix_arg = Qnil;
4436 Vcurrent_prefix_arg = prefixarg;
4437 debug_on_next_call = 0;
4438
4439 if (XTYPE (cmd) == Lisp_Symbol)
4440 {
4441 tem = Fget (cmd, Qdisabled);
4442 if (!NILP (tem))
2e894dab 4443 return call1 (Vrun_hooks, Qdisabled_command_hook);
284f4730
JB
4444 }
4445
4446 while (1)
4447 {
ffd56f97 4448 final = Findirect_function (cmd);
284f4730
JB
4449
4450 if (CONSP (final) && (tem = Fcar (final), EQ (tem, Qautoload)))
4451 do_autoload (final, cmd);
4452 else
4453 break;
4454 }
4455
4456 if (XTYPE (final) == Lisp_String
4457 || XTYPE (final) == Lisp_Vector)
4458 {
4459 /* If requested, place the macro in the command history. For
4460 other sorts of commands, call-interactively takes care of
4461 this. */
4462 if (!NILP (record))
4463 Vcommand_history
4464 = Fcons (Fcons (Qexecute_kbd_macro,
4465 Fcons (final, Fcons (prefixarg, Qnil))),
4466 Vcommand_history);
4467
4468 return Fexecute_kbd_macro (final, prefixarg);
4469 }
4470 if (CONSP (final) || XTYPE (final) == Lisp_Subr
4471 || XTYPE (final) == Lisp_Compiled)
4472 {
4473 backtrace.next = backtrace_list;
4474 backtrace_list = &backtrace;
4475 backtrace.function = &Qcall_interactively;
4476 backtrace.args = &cmd;
4477 backtrace.nargs = 1;
4478 backtrace.evalargs = 0;
4479
4480 tem = Fcall_interactively (cmd, record);
4481
4482 backtrace_list = backtrace.next;
4483 return tem;
4484 }
4485 return Qnil;
4486}
4487\f
284f4730
JB
4488DEFUN ("execute-extended-command", Fexecute_extended_command, Sexecute_extended_command,
4489 1, 1, "P",
4490 "Read function name, then read its arguments and call it.")
4491 (prefixarg)
4492 Lisp_Object prefixarg;
4493{
4494 Lisp_Object function;
4495 char buf[40];
4496 Lisp_Object saved_keys;
4497 struct gcpro gcpro1;
4498
4499 saved_keys = Fthis_command_keys ();
4500 buf[0] = 0;
4501 GCPRO1 (saved_keys);
4502
4503 if (EQ (prefixarg, Qminus))
4504 strcpy (buf, "- ");
4505 else if (CONSP (prefixarg) && XINT (XCONS (prefixarg)->car) == 4)
4506 strcpy (buf, "C-u ");
4507 else if (CONSP (prefixarg) && XTYPE (XCONS (prefixarg)->car) == Lisp_Int)
4508 sprintf (buf, "%d ", XINT (XCONS (prefixarg)->car));
4509 else if (XTYPE (prefixarg) == Lisp_Int)
4510 sprintf (buf, "%d ", XINT (prefixarg));
4511
4512 /* This isn't strictly correct if execute-extended-command
4513 is bound to anything else. Perhaps it should use
4514 this_command_keys? */
4515 strcat (buf, "M-x ");
4516
4517 /* Prompt with buf, and then read a string, completing from and
4518 restricting to the set of all defined commands. Don't provide
4519 any initial input. The last Qnil says not to perform a
4520 peculiar hack on the initial input. */
4521 function = Fcompleting_read (build_string (buf),
4522 Vobarray, Qcommandp,
4523 Qt, Qnil, Qnil);
4524
1113d9db
JB
4525 /* Set this_command_keys to the concatenation of saved_keys and
4526 function, followed by a RET. */
284f4730 4527 {
1113d9db 4528 struct Lisp_String *str;
284f4730
JB
4529 int i;
4530 Lisp_Object tem;
4531
1113d9db
JB
4532 this_command_key_count = 0;
4533
4534 str = XSTRING (saved_keys);
4535 for (i = 0; i < str->size; i++)
284f4730 4536 {
1113d9db 4537 XFASTINT (tem) = str->data[i];
284f4730
JB
4538 add_command_key (tem);
4539 }
1113d9db
JB
4540
4541 str = XSTRING (function);
4542 for (i = 0; i < str->size; i++)
4543 {
4544 XFASTINT (tem) = str->data[i];
4545 add_command_key (tem);
4546 }
4547
4548 XFASTINT (tem) = '\015';
4549 add_command_key (tem);
284f4730
JB
4550 }
4551
4552 UNGCPRO;
4553
0a7f1fc0 4554 function = Fintern (function, Qnil);
284f4730
JB
4555 Vprefix_arg = prefixarg;
4556 this_command = function;
4557
4558 return Fcommand_execute (function, Qt);
4559}
4560\f
4561
4562detect_input_pending ()
4563{
4564 if (!input_pending)
4565 get_input_pending (&input_pending);
4566
4567 return input_pending;
4568}
4569
ffd56f97
JB
4570/* This is called in some cases before a possible quit.
4571 It cases the next call to detect_input_pending to recompute input_pending.
4572 So calling this function unnecessarily can't do any harm. */
4573clear_input_pending ()
4574{
4575 input_pending = 0;
4576}
4577
284f4730
JB
4578DEFUN ("input-pending-p", Finput_pending_p, Sinput_pending_p, 0, 0, 0,
4579 "T if command input is currently available with no waiting.\n\
4580Actually, the value is nil only if we can be sure that no input is available.")
4581 ()
4582{
86e5706b 4583 if (!NILP (unread_command_events) || unread_command_char != -1)
284f4730
JB
4584 return (Qt);
4585
4586 return detect_input_pending () ? Qt : Qnil;
4587}
4588
4589DEFUN ("recent-keys", Frecent_keys, Srecent_keys, 0, 0, 0,
22d7cb89 4590 "Return vector of last 100 events, not counting those from keyboard macros.")
284f4730
JB
4591 ()
4592{
5160df46 4593 Lisp_Object *keys = XVECTOR (recent_keys)->contents;
284f4730
JB
4594 Lisp_Object val;
4595
4596 if (total_keys < NUM_RECENT_KEYS)
5160df46 4597 return Fvector (total_keys, keys);
284f4730
JB
4598 else
4599 {
5160df46
JB
4600 val = Fvector (NUM_RECENT_KEYS, keys);
4601 bcopy (keys + recent_keys_index,
284f4730
JB
4602 XVECTOR (val)->contents,
4603 (NUM_RECENT_KEYS - recent_keys_index) * sizeof (Lisp_Object));
5160df46 4604 bcopy (keys,
284f4730
JB
4605 XVECTOR (val)->contents + NUM_RECENT_KEYS - recent_keys_index,
4606 recent_keys_index * sizeof (Lisp_Object));
4607 return val;
4608 }
4609}
4610
4611DEFUN ("this-command-keys", Fthis_command_keys, Sthis_command_keys, 0, 0, 0,
e5f920d7
RS
4612 "Return the key sequence that invoked this command.\n\
4613The value is a string or a vector.")
284f4730
JB
4614 ()
4615{
86e5706b
RS
4616 return make_event_array (this_command_key_count,
4617 XVECTOR (this_command_keys)->contents);
284f4730
JB
4618}
4619
4620DEFUN ("recursion-depth", Frecursion_depth, Srecursion_depth, 0, 0, 0,
4621 "Return the current depth in recursive edits.")
4622 ()
4623{
4624 Lisp_Object temp;
4625 XFASTINT (temp) = command_loop_level + minibuf_level;
4626 return temp;
4627}
4628
4629DEFUN ("open-dribble-file", Fopen_dribble_file, Sopen_dribble_file, 1, 1,
4630 "FOpen dribble file: ",
9b2471df
RS
4631 "Start writing all keyboard characters to a dribble file called FILE.\n\
4632If FILE is nil, close any open dribble file.")
284f4730
JB
4633 (file)
4634 Lisp_Object file;
4635{
4636 if (NILP (file))
4637 {
4638 fclose (dribble);
4639 dribble = 0;
4640 }
4641 else
4642 {
4643 file = Fexpand_file_name (file, Qnil);
4644 dribble = fopen (XSTRING (file)->data, "w");
4645 }
4646 return Qnil;
4647}
4648
4649DEFUN ("discard-input", Fdiscard_input, Sdiscard_input, 0, 0, 0,
4650 "Discard the contents of the terminal input buffer.\n\
4651Also cancel any kbd macro being defined.")
4652 ()
4653{
4654 defining_kbd_macro = 0;
4655 update_mode_lines++;
4656
dbc4e1c1 4657 unread_command_events = Qnil;
86e5706b 4658 unread_command_char = -1;
284f4730
JB
4659
4660 discard_tty_input ();
4661
ff0b5f4c
JB
4662 /* Without the cast, GCC complains that this assignment loses the
4663 volatile qualifier of kbd_store_ptr. Is there anything wrong
4664 with that? */
4665 kbd_fetch_ptr = (struct input_event *) kbd_store_ptr;
7b4aedb9 4666 Ffillarray (kbd_buffer_frame_or_window, Qnil);
284f4730
JB
4667 input_pending = 0;
4668
4669 return Qnil;
4670}
4671\f
4672DEFUN ("suspend-emacs", Fsuspend_emacs, Ssuspend_emacs, 0, 1, "",
4673 "Stop Emacs and return to superior process. You can resume later.\n\
4674On systems that don't have job control, run a subshell instead.\n\n\
4675If optional arg STUFFSTRING is non-nil, its characters are stuffed\n\
b7d2ebbf
RS
4676to be read as terminal input by Emacs's parent, after suspension.\n\
4677\n\
7df30614 4678Before suspending, call the functions in `suspend-hook' with no args.\n\
b7d2ebbf
RS
4679If any of them returns nil, don't call the rest and don't suspend.\n\
4680Otherwise, suspend normally and after resumption run the normal hook\n\
284f4730
JB
4681`suspend-resume-hook' if that is bound and non-nil.\n\
4682\n\
4683Some operating systems cannot stop the Emacs process and resume it later.\n\
b7d2ebbf 4684On such systems, Emacs starts a subshell instead of suspending.")
284f4730
JB
4685 (stuffstring)
4686 Lisp_Object stuffstring;
4687{
3a69360c 4688 Lisp_Object tem;
284f4730
JB
4689 int count = specpdl_ptr - specpdl;
4690 int old_height, old_width;
4691 int width, height;
b7d2ebbf 4692 struct gcpro gcpro1, gcpro2;
284f4730
JB
4693 extern init_sys_modes ();
4694
4695 if (!NILP (stuffstring))
4696 CHECK_STRING (stuffstring, 0);
284f4730 4697
1e95ed28
JB
4698 /* Run the functions in suspend-hook. */
4699 if (!NILP (Vrun_hooks))
4700 call1 (Vrun_hooks, intern ("suspend-hook"));
284f4730 4701
b7d2ebbf 4702 GCPRO1 (stuffstring);
ff11dfa1 4703 get_frame_size (&old_width, &old_height);
284f4730
JB
4704 reset_sys_modes ();
4705 /* sys_suspend can get an error if it tries to fork a subshell
4706 and the system resources aren't available for that. */
4707 record_unwind_protect (init_sys_modes, 0);
4708 stuff_buffered_input (stuffstring);
4709 sys_suspend ();
4710 unbind_to (count, Qnil);
4711
4712 /* Check if terminal/window size has changed.
4713 Note that this is not useful when we are running directly
4714 with a window system; but suspend should be disabled in that case. */
ff11dfa1 4715 get_frame_size (&width, &height);
284f4730 4716 if (width != old_width || height != old_height)
f5ea6163 4717 change_frame_size (selected_frame, height, width, 0, 0);
284f4730 4718
1e95ed28 4719 /* Run suspend-resume-hook. */
284f4730
JB
4720 if (!NILP (Vrun_hooks))
4721 call1 (Vrun_hooks, intern ("suspend-resume-hook"));
4722
4723 UNGCPRO;
4724 return Qnil;
4725}
4726
4727/* If STUFFSTRING is a string, stuff its contents as pending terminal input.
eb8c3be9 4728 Then in any case stuff anything Emacs has read ahead and not used. */
284f4730
JB
4729
4730stuff_buffered_input (stuffstring)
4731 Lisp_Object stuffstring;
4732{
4733 register unsigned char *p;
4734
4735/* stuff_char works only in BSD, versions 4.2 and up. */
4736#ifdef BSD
4737#ifndef BSD4_1
4738 if (XTYPE (stuffstring) == Lisp_String)
4739 {
4740 register int count;
4741
4742 p = XSTRING (stuffstring)->data;
4743 count = XSTRING (stuffstring)->size;
4744 while (count-- > 0)
4745 stuff_char (*p++);
4746 stuff_char ('\n');
4747 }
4748 /* Anything we have read ahead, put back for the shell to read. */
4749 while (kbd_fetch_ptr != kbd_store_ptr)
4750 {
4751 if (kbd_fetch_ptr == kbd_buffer + KBD_BUFFER_SIZE)
4752 kbd_fetch_ptr = kbd_buffer;
4753 if (kbd_fetch_ptr->kind == ascii_keystroke)
4754 stuff_char (XINT (kbd_fetch_ptr->code));
4bb994d1 4755 kbd_fetch_ptr->kind = no_event;
7b4aedb9
JB
4756 (XVECTOR (kbd_buffer_frame_or_window)->contents[kbd_fetch_ptr
4757 - kbd_buffer]
4758 = Qnil);
284f4730
JB
4759 kbd_fetch_ptr++;
4760 }
4761 input_pending = 0;
4762#endif
4763#endif /* BSD and not BSD4_1 */
4764}
4765\f
ffd56f97
JB
4766set_waiting_for_input (time_to_clear)
4767 EMACS_TIME *time_to_clear;
284f4730 4768{
ffd56f97 4769 input_available_clear_time = time_to_clear;
284f4730
JB
4770
4771 /* Tell interrupt_signal to throw back to read_char, */
4772 waiting_for_input = 1;
4773
4774 /* If interrupt_signal was called before and buffered a C-g,
4775 make it run again now, to avoid timing error. */
4776 if (!NILP (Vquit_flag))
4777 quit_throw_to_read_char ();
4778
4779 /* If alarm has gone off already, echo now. */
4780 if (echo_flag)
4781 {
4782 echo ();
4783 echo_flag = 0;
4784 }
4785}
4786
4787clear_waiting_for_input ()
4788{
4789 /* Tell interrupt_signal not to throw back to read_char, */
4790 waiting_for_input = 0;
ffd56f97 4791 input_available_clear_time = 0;
284f4730
JB
4792}
4793
4794/* This routine is called at interrupt level in response to C-G.
4795 If interrupt_input, this is the handler for SIGINT.
4796 Otherwise, it is called from kbd_buffer_store_event,
4797 in handling SIGIO or SIGTINT.
4798
4799 If `waiting_for_input' is non zero, then unless `echoing' is nonzero,
4800 immediately throw back to read_char.
4801
4802 Otherwise it sets the Lisp variable quit-flag not-nil.
4803 This causes eval to throw, when it gets a chance.
4804 If quit-flag is already non-nil, it stops the job right away. */
4805
4806SIGTYPE
4807interrupt_signal ()
4808{
4809 char c;
4810 /* Must preserve main program's value of errno. */
4811 int old_errno = errno;
284f4730
JB
4812
4813#ifdef USG
4814 /* USG systems forget handlers when they are used;
4815 must reestablish each time */
4816 signal (SIGINT, interrupt_signal);
4817 signal (SIGQUIT, interrupt_signal);
4818#endif /* USG */
4819
4820 cancel_echoing ();
4821
d5045cf9 4822 if (!NILP (Vquit_flag) && FRAME_TERMCAP_P (selected_frame))
284f4730
JB
4823 {
4824 fflush (stdout);
4825 reset_sys_modes ();
4826 sigfree ();
4827#ifdef SIGTSTP /* Support possible in later USG versions */
4828/*
4829 * On systems which can suspend the current process and return to the original
4830 * shell, this command causes the user to end up back at the shell.
4831 * The "Auto-save" and "Abort" questions are not asked until
4832 * the user elects to return to emacs, at which point he can save the current
4833 * job and either dump core or continue.
4834 */
4835 sys_suspend ();
4836#else
4837#ifdef VMS
4838 if (sys_suspend () == -1)
4839 {
4840 printf ("Not running as a subprocess;\n");
4841 printf ("you can continue or abort.\n");
4842 }
4843#else /* not VMS */
4844 /* Perhaps should really fork an inferior shell?
4845 But that would not provide any way to get back
4846 to the original shell, ever. */
4847 printf ("No support for stopping a process on this operating system;\n");
4848 printf ("you can continue or abort.\n");
4849#endif /* not VMS */
4850#endif /* not SIGTSTP */
4851 printf ("Auto-save? (y or n) ");
4852 fflush (stdout);
4853 if (((c = getchar ()) & ~040) == 'Y')
9fd7d808
RS
4854 {
4855 Fdo_auto_save (Qt, Qnil);
4856 printf ("Auto-save done\n");
4857 }
284f4730
JB
4858 while (c != '\n') c = getchar ();
4859#ifdef VMS
4860 printf ("Abort (and enter debugger)? (y or n) ");
4861#else /* not VMS */
4862 printf ("Abort (and dump core)? (y or n) ");
4863#endif /* not VMS */
4864 fflush (stdout);
4865 if (((c = getchar ()) & ~040) == 'Y')
4866 abort ();
4867 while (c != '\n') c = getchar ();
4868 printf ("Continuing...\n");
4869 fflush (stdout);
4870 init_sys_modes ();
4871 }
4872 else
4873 {
4874 /* If executing a function that wants to be interrupted out of
4875 and the user has not deferred quitting by binding `inhibit-quit'
4876 then quit right away. */
4877 if (immediate_quit && NILP (Vinhibit_quit))
4878 {
4879 immediate_quit = 0;
4880 sigfree ();
4881 Fsignal (Qquit, Qnil);
4882 }
4883 else
4884 /* Else request quit when it's safe */
4885 Vquit_flag = Qt;
4886 }
4887
4888 if (waiting_for_input && !echoing)
4889 quit_throw_to_read_char ();
4890
4891 errno = old_errno;
4892}
4893
4894/* Handle a C-g by making read_char return C-g. */
4895
4896quit_throw_to_read_char ()
4897{
4898 quit_error_check ();
4899 sigfree ();
4900 /* Prevent another signal from doing this before we finish. */
f76475ad 4901 clear_waiting_for_input ();
284f4730
JB
4902 input_pending = 0;
4903
dbc4e1c1 4904 unread_command_events = Qnil;
86e5706b 4905 unread_command_char = -1;
284f4730 4906
e6b01c14
JB
4907#ifdef POLL_FOR_INPUT
4908 /* May be > 1 if in recursive minibuffer. */
4909 if (poll_suppress_count == 0)
4910 abort ();
4911#endif
4912
284f4730
JB
4913 _longjmp (getcjmp, 1);
4914}
4915\f
4916DEFUN ("set-input-mode", Fset_input_mode, Sset_input_mode, 3, 4, 0,
4917 "Set mode of reading keyboard input.\n\
464f8898
RS
4918First arg INTERRUPT non-nil means use input interrupts;\n\
4919 nil means use CBREAK mode.\n\
4920Second arg FLOW non-nil means use ^S/^Q flow control for output to terminal\n\
284f4730 4921 (no effect except in CBREAK mode).\n\
b04904fb
RS
4922Third arg META t means accept 8-bit input (for a Meta key).\n\
4923 META nil means ignore the top bit, on the assumption it is parity.\n\
4924 Otherwise, accept 8-bit input and don't use the top bit for Meta.\n\
a8ee7ef9
RS
4925Optional fourth arg QUIT if non-nil specifies character to use for quitting.\n\
4926See also `current-input-mode'.")
284f4730
JB
4927 (interrupt, flow, meta, quit)
4928 Lisp_Object interrupt, flow, meta, quit;
4929{
4930 if (!NILP (quit)
4931 && (XTYPE (quit) != Lisp_Int
4932 || XINT (quit) < 0 || XINT (quit) > 0400))
34f04431
RS
4933 error ("set-input-mode: QUIT must be an ASCII character");
4934
4935#ifdef POLL_FOR_INPUT
4936 stop_polling ();
4937#endif
284f4730
JB
4938
4939 reset_sys_modes ();
4940#ifdef SIGIO
4941/* Note SIGIO has been undef'd if FIONREAD is missing. */
4942#ifdef NO_SOCK_SIGIO
4943 if (read_socket_hook)
4944 interrupt_input = 0; /* No interrupts if reading from a socket. */
4945 else
4946#endif /* NO_SOCK_SIGIO */
4947 interrupt_input = !NILP (interrupt);
4948#else /* not SIGIO */
4949 interrupt_input = 0;
4950#endif /* not SIGIO */
4951/* Our VMS input only works by interrupts, as of now. */
4952#ifdef VMS
4953 interrupt_input = 1;
4954#endif
4955 flow_control = !NILP (flow);
b04904fb
RS
4956 if (NILP (meta))
4957 meta_key = 0;
4958 else if (EQ (meta, Qt))
4959 meta_key = 1;
4960 else
4961 meta_key = 2;
284f4730
JB
4962 if (!NILP (quit))
4963 /* Don't let this value be out of range. */
4964 quit_char = XINT (quit) & (meta_key ? 0377 : 0177);
4965
4966 init_sys_modes ();
34f04431
RS
4967
4968#ifdef POLL_FOR_INPUT
4969 poll_suppress_count = 1;
4970 start_polling ();
4971#endif
284f4730
JB
4972 return Qnil;
4973}
80645119
JB
4974
4975DEFUN ("current-input-mode", Fcurrent_input_mode, Scurrent_input_mode, 0, 0, 0,
4976 "Return information about the way Emacs currently reads keyboard input.\n\
4977The value is a list of the form (INTERRUPT FLOW META QUIT), where\n\
4978 INTERRUPT is non-nil if Emacs is using interrupt-driven input; if\n\
4979 nil, Emacs is using CBREAK mode.\n\
4980 FLOW is non-nil if Emacs uses ^S/^Q flow control for output to the\n\
4981 terminal; this does not apply if Emacs uses interrupt-driven input.\n\
a8ee7ef9
RS
4982 META is t if accepting 8-bit input with 8th bit as Meta flag.\n\
4983 META nil means ignoring the top bit, on the assumption it is parity.\n\
4984 META is neither t nor nil if accepting 8-bit input and using\n\
4985 all 8 bits as the character code.\n\
80645119
JB
4986 QUIT is the character Emacs currently uses to quit.\n\
4987The elements of this list correspond to the arguments of\n\
a8ee7ef9 4988`set-input-mode'.")
80645119
JB
4989 ()
4990{
4991 Lisp_Object val[4];
4992
4993 val[0] = interrupt_input ? Qt : Qnil;
4994 val[1] = flow_control ? Qt : Qnil;
a8ee7ef9 4995 val[2] = meta_key == 2 ? make_number (0) : meta_key == 1 ? Qt : Qnil;
7b50ece7 4996 XFASTINT (val[3]) = quit_char;
80645119 4997
bf673a7a 4998 return Flist (sizeof (val) / sizeof (val[0]), val);
80645119
JB
4999}
5000
284f4730
JB
5001\f
5002init_keyboard ()
5003{
284f4730
JB
5004 /* This is correct before outermost invocation of the editor loop */
5005 command_loop_level = -1;
5006 immediate_quit = 0;
5007 quit_char = Ctl ('g');
dbc4e1c1 5008 unread_command_events = Qnil;
86e5706b 5009 unread_command_char = -1;
284f4730 5010 total_keys = 0;
9deb415a 5011 recent_keys_index = 0;
284f4730
JB
5012 kbd_fetch_ptr = kbd_buffer;
5013 kbd_store_ptr = kbd_buffer;
5014 do_mouse_tracking = 0;
5015 input_pending = 0;
5016
07d2b8de 5017#ifdef MULTI_FRAME
8f805655
JB
5018 /* This means that command_loop_1 won't try to select anything the first
5019 time through. */
3c370943
JB
5020 internal_last_event_frame = Qnil;
5021 Vlast_event_frame = internal_last_event_frame;
7b4aedb9
JB
5022#endif
5023
5024 /* If we're running a dumped Emacs, we need to clear out
5025 kbd_buffer_frame_or_window, in case some events got into it
5026 before we dumped.
4bb994d1 5027
7b4aedb9
JB
5028 If we're running an undumped Emacs, it hasn't been initialized by
5029 syms_of_keyboard yet. */
4bb994d1 5030 if (initialized)
7b4aedb9 5031 Ffillarray (kbd_buffer_frame_or_window, Qnil);
07d2b8de 5032
284f4730
JB
5033 if (!noninteractive)
5034 {
5035 signal (SIGINT, interrupt_signal);
cb5df6ae 5036#if defined (HAVE_TERMIO) || defined (HAVE_TERMIOS)
284f4730
JB
5037 /* For systems with SysV TERMIO, C-g is set up for both SIGINT and
5038 SIGQUIT and we can't tell which one it will give us. */
5039 signal (SIGQUIT, interrupt_signal);
5040#endif /* HAVE_TERMIO */
5041/* Note SIGIO has been undef'd if FIONREAD is missing. */
5042#ifdef SIGIO
5043 signal (SIGIO, input_available_signal);
8ea0a720 5044#endif /* SIGIO */
284f4730
JB
5045 }
5046
5047/* Use interrupt input by default, if it works and noninterrupt input
5048 has deficiencies. */
5049
5050#ifdef INTERRUPT_INPUT
5051 interrupt_input = 1;
5052#else
5053 interrupt_input = 0;
5054#endif
5055
5056/* Our VMS input only works by interrupts, as of now. */
5057#ifdef VMS
5058 interrupt_input = 1;
5059#endif
5060
5061 sigfree ();
5062 dribble = 0;
5063
5064 if (keyboard_init_hook)
5065 (*keyboard_init_hook) ();
5066
5067#ifdef POLL_FOR_INPUT
5068 poll_suppress_count = 1;
5069 start_polling ();
5070#endif
5071}
5072
5073/* This type's only use is in syms_of_keyboard, to initialize the
5074 event header symbols and put properties on them. */
5075struct event_head {
5076 Lisp_Object *var;
5077 char *name;
5078 Lisp_Object *kind;
5079};
5080
5081struct event_head head_table[] = {
7b4aedb9 5082 &Qmouse_movement, "mouse-movement", &Qmouse_movement,
3c370943 5083 &Qscroll_bar_movement, "scroll-bar-movement", &Qmouse_movement,
7b4aedb9 5084 &Qswitch_frame, "switch-frame", &Qswitch_frame,
284f4730
JB
5085};
5086
5087syms_of_keyboard ()
5088{
2e894dab
RS
5089 Qdisabled_command_hook = intern ("disabled-command-hook");
5090 staticpro (&Qdisabled_command_hook);
5091
284f4730
JB
5092 Qself_insert_command = intern ("self-insert-command");
5093 staticpro (&Qself_insert_command);
5094
5095 Qforward_char = intern ("forward-char");
5096 staticpro (&Qforward_char);
5097
5098 Qbackward_char = intern ("backward-char");
5099 staticpro (&Qbackward_char);
5100
5101 Qdisabled = intern ("disabled");
5102 staticpro (&Qdisabled);
5103
e58aa385
RS
5104 Qundefined = intern ("undefined");
5105 staticpro (&Qundefined);
5106
86e5706b
RS
5107 Qpre_command_hook = intern ("pre-command-hook");
5108 staticpro (&Qpre_command_hook);
5109
5110 Qpost_command_hook = intern ("post-command-hook");
5111 staticpro (&Qpost_command_hook);
5112
284f4730
JB
5113 Qfunction_key = intern ("function-key");
5114 staticpro (&Qfunction_key);
13b5e56c 5115 Qmouse_click = intern ("mouse-click");
284f4730 5116 staticpro (&Qmouse_click);
284f4730 5117
598a9fa7
JB
5118 Qmenu_enable = intern ("menu-enable");
5119 staticpro (&Qmenu_enable);
5120
284f4730
JB
5121 Qmode_line = intern ("mode-line");
5122 staticpro (&Qmode_line);
e5d77022
JB
5123 Qvertical_line = intern ("vertical-line");
5124 staticpro (&Qvertical_line);
3c370943
JB
5125 Qvertical_scroll_bar = intern ("vertical-scroll-bar");
5126 staticpro (&Qvertical_scroll_bar);
5ec75a55
RS
5127 Qmenu_bar = intern ("menu-bar");
5128 staticpro (&Qmenu_bar);
4bb994d1
JB
5129
5130 Qabove_handle = intern ("above-handle");
5131 staticpro (&Qabove_handle);
5132 Qhandle = intern ("handle");
5133 staticpro (&Qhandle);
5134 Qbelow_handle = intern ("below-handle");
5135 staticpro (&Qbelow_handle);
284f4730 5136
cd21b839 5137 Qevent_kind = intern ("event-kind");
284f4730 5138 staticpro (&Qevent_kind);
88cb0656
JB
5139 Qevent_symbol_elements = intern ("event-symbol-elements");
5140 staticpro (&Qevent_symbol_elements);
0a7f1fc0
JB
5141 Qevent_symbol_element_mask = intern ("event-symbol-element-mask");
5142 staticpro (&Qevent_symbol_element_mask);
5143 Qmodifier_cache = intern ("modifier-cache");
5144 staticpro (&Qmodifier_cache);
284f4730 5145
48e416d4
RS
5146 Qrecompute_lucid_menubar = intern ("recompute-lucid-menubar");
5147 staticpro (&Qrecompute_lucid_menubar);
5148 Qactivate_menubar_hook = intern ("activate-menubar-hook");
5149 staticpro (&Qactivate_menubar_hook);
5150
284f4730
JB
5151 {
5152 struct event_head *p;
5153
5154 for (p = head_table;
5155 p < head_table + (sizeof (head_table) / sizeof (head_table[0]));
5156 p++)
5157 {
5158 *p->var = intern (p->name);
5159 staticpro (p->var);
5160 Fput (*p->var, Qevent_kind, *p->kind);
88cb0656 5161 Fput (*p->var, Qevent_symbol_elements, Fcons (*p->var, Qnil));
284f4730
JB
5162 }
5163 }
5164
7b4aedb9
JB
5165 button_down_location = Fmake_vector (make_number (NUM_MOUSE_BUTTONS), Qnil);
5166 staticpro (&button_down_location);
88cb0656
JB
5167
5168 {
5169 int i;
5170 int len = sizeof (modifier_names) / sizeof (modifier_names[0]);
5171
5172 modifier_symbols = Fmake_vector (make_number (len), Qnil);
5173 for (i = 0; i < len; i++)
86e5706b
RS
5174 if (modifier_names[i])
5175 XVECTOR (modifier_symbols)->contents[i] = intern (modifier_names[i]);
88cb0656
JB
5176 staticpro (&modifier_symbols);
5177 }
5178
9deb415a
JB
5179 recent_keys = Fmake_vector (make_number (NUM_RECENT_KEYS), Qnil);
5180 staticpro (&recent_keys);
5181
6569cc8d 5182 this_command_keys = Fmake_vector (make_number (40), Qnil);
715d9345 5183 staticpro (&this_command_keys);
6569cc8d 5184
7b4aedb9
JB
5185 kbd_buffer_frame_or_window
5186 = Fmake_vector (make_number (KBD_BUFFER_SIZE), Qnil);
5187 staticpro (&kbd_buffer_frame_or_window);
4bb994d1 5188
284f4730
JB
5189 func_key_syms = Qnil;
5190 staticpro (&func_key_syms);
5191
5192 mouse_syms = Qnil;
5193 staticpro (&mouse_syms);
5194
cd21b839
JB
5195 unread_switch_frame = Qnil;
5196 staticpro (&unread_switch_frame);
5197
284f4730
JB
5198 defsubr (&Sread_key_sequence);
5199 defsubr (&Srecursive_edit);
5200 defsubr (&Strack_mouse);
284f4730
JB
5201 defsubr (&Sinput_pending_p);
5202 defsubr (&Scommand_execute);
5203 defsubr (&Srecent_keys);
5204 defsubr (&Sthis_command_keys);
5205 defsubr (&Ssuspend_emacs);
5206 defsubr (&Sabort_recursive_edit);
5207 defsubr (&Sexit_recursive_edit);
5208 defsubr (&Srecursion_depth);
5209 defsubr (&Stop_level);
5210 defsubr (&Sdiscard_input);
5211 defsubr (&Sopen_dribble_file);
5212 defsubr (&Sset_input_mode);
80645119 5213 defsubr (&Scurrent_input_mode);
284f4730
JB
5214 defsubr (&Sexecute_extended_command);
5215
284f4730 5216 DEFVAR_LISP ("last-command-char", &last_command_char,
86e5706b
RS
5217 "Last input event that was part of a command.");
5218
5219 DEFVAR_LISP ("last-command-event", &last_command_char,
5220 "Last input event that was part of a command.");
284f4730 5221
7d6de002 5222 DEFVAR_LISP ("last-nonmenu-event", &last_nonmenu_event,
86e5706b 5223 "Last input event in a command, except for mouse menu events.\n\
7d6de002
RS
5224Mouse menus give back keys that don't look like mouse events;\n\
5225this variable holds the actual mouse event that led to the menu,\n\
5226so that you can determine whether the command was run by mouse or not.");
5227
284f4730 5228 DEFVAR_LISP ("last-input-char", &last_input_char,
86e5706b
RS
5229 "Last input event.");
5230
5231 DEFVAR_LISP ("last-input-event", &last_input_char,
5232 "Last input event.");
284f4730 5233
dbc4e1c1 5234 DEFVAR_LISP ("unread-command-events", &unread_command_events,
1c07d0a6 5235 "List of objects to be read as next command input events.");
284f4730 5236
86e5706b
RS
5237 DEFVAR_INT ("unread-command-char", &unread_command_char,
5238 "If not -1, an object to be read as next command input event.");
5239
284f4730
JB
5240 DEFVAR_LISP ("meta-prefix-char", &meta_prefix_char,
5241 "Meta-prefix character code. Meta-foo as command input\n\
5242turns into this character followed by foo.");
5243 XSET (meta_prefix_char, Lisp_Int, 033);
5244
5245 DEFVAR_LISP ("last-command", &last_command,
5246 "The last command executed. Normally a symbol with a function definition,\n\
5247but can be whatever was found in the keymap, or whatever the variable\n\
5248`this-command' was set to by that command.");
5249 last_command = Qnil;
5250
5251 DEFVAR_LISP ("this-command", &this_command,
5252 "The command now being executed.\n\
5253The command can set this variable; whatever is put here\n\
5254will be in `last-command' during the following command.");
5255 this_command = Qnil;
5256
5257 DEFVAR_INT ("auto-save-interval", &auto_save_interval,
5258 "*Number of keyboard input characters between auto-saves.\n\
5259Zero means disable autosaving due to number of characters typed.");
5260 auto_save_interval = 300;
5261
5262 DEFVAR_LISP ("auto-save-timeout", &Vauto_save_timeout,
5263 "*Number of seconds idle time before auto-save.\n\
06ef7355
RS
5264Zero or nil means disable auto-saving due to idleness.\n\
5265After auto-saving due to this many seconds of idle time,\n\
84447c71 5266Emacs also does a garbage collection if that seems to be warranted.");
284f4730
JB
5267 XFASTINT (Vauto_save_timeout) = 30;
5268
5269 DEFVAR_INT ("echo-keystrokes", &echo_keystrokes,
5270 "*Nonzero means echo unfinished commands after this many seconds of pause.");
5271 echo_keystrokes = 1;
5272
5273 DEFVAR_INT ("polling-period", &polling_period,
5274 "*Interval between polling for input during Lisp execution.\n\
5275The reason for polling is to make C-g work to stop a running program.\n\
5276Polling is needed only when using X windows and SIGIO does not work.\n\
5277Polling is automatically disabled in all other cases.");
5278 polling_period = 2;
5279
564dc952 5280 DEFVAR_LISP ("double-click-time", &Vdouble_click_time,
fbcd35bd 5281 "*Maximum time between mouse clicks to make a double-click.\n\
564dc952
JB
5282Measured in milliseconds. nil means disable double-click recognition;\n\
5283t means double-clicks have no time limit and are detected\n\
fbcd35bd 5284by position only.");
aab06933 5285 Vdouble_click_time = make_number (500);
fbcd35bd 5286
284f4730
JB
5287 DEFVAR_INT ("num-input-keys", &num_input_keys,
5288 "*Number of complete keys read from the keyboard so far.");
5289 num_input_keys = 0;
5290
07d2b8de 5291#ifdef MULTI_FRAME
ff11dfa1 5292 DEFVAR_LISP ("last-event-frame", &Vlast_event_frame,
fce33686
JB
5293 "*The frame in which the most recently read event occurred.\n\
5294If the last event came from a keyboard macro, this is set to `macro'.");
ff11dfa1 5295 Vlast_event_frame = Qnil;
07d2b8de 5296#endif
284f4730 5297
7e85b935 5298 DEFVAR_LISP ("help-char", &Vhelp_char,
284f4730
JB
5299 "Character to recognize as meaning Help.\n\
5300When it is read, do `(eval help-form)', and display result if it's a string.\n\
5301If the value of `help-form' is nil, this char can be read normally.");
7e85b935 5302 XSET (Vhelp_char, Lisp_Int, Ctl ('H'));
284f4730
JB
5303
5304 DEFVAR_LISP ("help-form", &Vhelp_form,
7e85b935 5305 "Form to execute when character `help-char' is read.\n\
284f4730
JB
5306If the form returns a string, that string is displayed.\n\
5307If `help-form' is nil, the help char is not recognized.");
5308 Vhelp_form = Qnil;
5309
7e85b935
RS
5310 DEFVAR_LISP ("prefix-help-command", &Vprefix_help_command,
5311 "Command to run when `help-char' character follows a prefix key.\n\
5312This command is used only when there is no actual binding\n\
5313for that character after that prefix key.");
5314 Vprefix_help_command = Qnil;
5315
284f4730
JB
5316 DEFVAR_LISP ("top-level", &Vtop_level,
5317 "Form to evaluate when Emacs starts up.\n\
5318Useful to set before you dump a modified Emacs.");
5319 Vtop_level = Qnil;
5320
5321 DEFVAR_LISP ("keyboard-translate-table", &Vkeyboard_translate_table,
5322 "String used as translate table for keyboard input, or nil.\n\
5323Each character is looked up in this string and the contents used instead.\n\
5324If string is of length N, character codes N and up are untranslated.");
5325 Vkeyboard_translate_table = Qnil;
5326
a612e298
RS
5327 DEFVAR_LISP ("key-translation-map", &Vkey_translation_map,
5328 "Keymap of key translations that can override keymaps.\n\
5329This keymap works like `function-key-map', but comes after that,\n\
5330and applies even for keys that have ordinary bindings.");
5331 Vkey_translation_map = Qnil;
5332
284f4730 5333 DEFVAR_BOOL ("menu-prompting", &menu_prompting,
7d6de002 5334 "Non-nil means prompt with menus when appropriate.\n\
284f4730 5335This is done when reading from a keymap that has a prompt string,\n\
7d6de002
RS
5336for elements that have prompt strings.\n\
5337The menu is displayed on the screen\n\
5338if X menus were enabled at configuration\n\
5339time and the previous event was a mouse click prefix key.\n\
5340Otherwise, menu prompting uses the echo area.");
284f4730
JB
5341 menu_prompting = 1;
5342
5343 DEFVAR_LISP ("menu-prompt-more-char", &menu_prompt_more_char,
5344 "Character to see next line of menu prompt.\n\
5345Type this character while in a menu prompt to rotate around the lines of it.");
5346 XSET (menu_prompt_more_char, Lisp_Int, ' ');
9fa4395d
RS
5347
5348 DEFVAR_INT ("extra-keyboard-modifiers", &extra_keyboard_modifiers,
5349 "A mask of additional modifier keys to use with every keyboard character.\n\
ad163903
JB
5350Emacs applies the modifiers of the character stored here to each keyboard\n\
5351character it reads. For example, after evaluating the expression\n\
80645119
JB
5352 (setq extra-keyboard-modifiers ?\C-x)\n\
5353all input characters will have the control modifier applied to them.\n\
5354\n\
5355Note that the character ?\C-@, equivalent to the integer zero, does\n\
5356not count as a control character; rather, it counts as a character\n\
5357with no modifiers; thus, setting extra_keyboard_modifiers to zero\n\
5358cancels any modification.");
9fa4395d 5359 extra_keyboard_modifiers = 0;
86e5706b
RS
5360
5361 DEFVAR_LISP ("deactivate-mark", &Vdeactivate_mark,
5362 "If an editing command sets this to t, deactivate the mark afterward.\n\
5363The command loop sets this to nil before each command,\n\
5364and tests the value when the command returns.\n\
5365Buffer modification stores t in this variable.");
5366 Vdeactivate_mark = Qnil;
5367
5368 DEFVAR_LISP ("pre-command-hook", &Vpre_command_hook,
5369 "Normal hook run before each command is executed.");
5370 Vpre_command_hook = Qnil;
5371
5372 DEFVAR_LISP ("post-command-hook", &Vpost_command_hook,
7e85b935 5373 "Normal hook run after each command is executed.");
86e5706b 5374 Vpost_command_hook = Qnil;
48e416d4
RS
5375
5376 DEFVAR_LISP ("lucid-menu-bar-dirty-flag", &Vlucid_menu_bar_dirty_flag,
5377 "t means menu bar, specified Lucid style, needs to be recomputed.");
5378 Vlucid_menu_bar_dirty_flag = Qnil;
a73c5e29 5379
9f9c0e27
RS
5380 DEFVAR_LISP ("menu-bar-final-items", &Vmenu_bar_final_items,
5381 "List of menu bar items to move to the end of the menu bar.\n\
a612e298 5382The elements of the list are event types that may have menu bar bindings.");
9f9c0e27 5383 Vmenu_bar_final_items = Qnil;
284f4730
JB
5384}
5385
5386keys_of_keyboard ()
5387{
5388 initial_define_key (global_map, Ctl ('Z'), "suspend-emacs");
5389 initial_define_key (control_x_map, Ctl ('Z'), "suspend-emacs");
5390 initial_define_key (meta_map, Ctl ('C'), "exit-recursive-edit");
5391 initial_define_key (global_map, Ctl (']'), "abort-recursive-edit");
5392 initial_define_key (meta_map, 'x', "execute-extended-command");
5393}