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