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