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