(REL_ALLOC): #undef deleted.
[emacs.git] / src / keyboard.c
blobe7432239103cba305935df491bcefe1e3148e139
1 /* Keyboard and mouse input; editor command loop.
2 Copyright (C) 1985,86,87,88,89,93,94,95,96 Free Software Foundation, Inc.
4 This file is part of GNU Emacs.
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.
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.
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, Inc., 59 Temple Place - Suite 330,
19 Boston, MA 02111-1307, USA. */
21 /* Allow config.h to undefine symbols found here. */
22 #include <signal.h>
24 #include <config.h>
25 #include <stdio.h>
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>
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 */
52 #include "syssignal.h"
53 #include "systty.h"
55 /* This is to get the definitions of the XK_ symbols. */
56 #ifdef HAVE_X_WINDOWS
57 #include "xterm.h"
58 #endif
60 #ifdef HAVE_NTGUI
61 #include "w32term.h"
62 #endif /* HAVE_NTGUI */
64 /* Include systime.h after xterm.h to avoid double inclusion of time.h. */
65 #include "systime.h"
67 extern int errno;
69 /* Variables for blockinput.h: */
71 /* Non-zero if interrupt input is blocked right now. */
72 int interrupt_input_blocked;
74 /* Nonzero means an input interrupt has arrived
75 during the current critical section. */
76 int interrupt_input_pending;
79 /* File descriptor to use for input. */
80 extern int input_fd;
82 #ifdef HAVE_WINDOW_SYSTEM
83 /* Make all keyboard buffers much bigger when using X windows. */
84 #define KBD_BUFFER_SIZE 4096
85 #else /* No X-windows, character input */
86 #define KBD_BUFFER_SIZE 256
87 #endif /* No X-windows */
89 /* Following definition copied from eval.c */
91 struct backtrace
93 struct backtrace *next;
94 Lisp_Object *function;
95 Lisp_Object *args; /* Points to vector of args. */
96 int nargs; /* length of vector. If nargs is UNEVALLED,
97 args points to slot holding list of
98 unevalled args */
99 char evalargs;
102 #ifdef MULTI_KBOARD
103 KBOARD *initial_kboard;
104 KBOARD *current_kboard;
105 KBOARD *all_kboards;
106 int single_kboard;
107 #else
108 KBOARD the_only_kboard;
109 #endif
111 /* Non-nil disable property on a command means
112 do not execute it; call disabled-command-hook's value instead. */
113 Lisp_Object Qdisabled, Qdisabled_command_hook;
115 #define NUM_RECENT_KEYS (100)
116 int recent_keys_index; /* Index for storing next element into recent_keys */
117 int total_keys; /* Total number of elements stored into recent_keys */
118 Lisp_Object recent_keys; /* A vector, holding the last 100 keystrokes */
120 /* Vector holding the key sequence that invoked the current command.
121 It is reused for each command, and it may be longer than the current
122 sequence; this_command_key_count indicates how many elements
123 actually mean something.
124 It's easier to staticpro a single Lisp_Object than an array. */
125 Lisp_Object this_command_keys;
126 int this_command_key_count;
128 /* Record values of this_command_key_count and echo_length ()
129 before this command was read. */
130 static int before_command_key_count;
131 static int before_command_echo_length;
132 /* Values of before_command_key_count and before_command_echo_length
133 saved by reset-this-command-lengths. */
134 static int before_command_key_count_1;
135 static int before_command_echo_length_1;
136 /* Flag set by reset-this-command-lengths,
137 saying to reset the lengths when add_command_key is called. */
138 static int before_command_restore_flag;
140 extern int minbuf_level;
142 extern struct backtrace *backtrace_list;
144 /* Nonzero means do menu prompting. */
145 static int menu_prompting;
147 /* Character to see next line of menu prompt. */
148 static Lisp_Object menu_prompt_more_char;
150 /* For longjmp to where kbd input is being done. */
151 static jmp_buf getcjmp;
153 /* True while doing kbd input. */
154 int waiting_for_input;
156 /* True while displaying for echoing. Delays C-g throwing. */
157 static int echoing;
159 /* True means we can start echoing at the next input pause
160 even though there is something in the echo area. */
161 static char *ok_to_echo_at_next_pause;
163 /* Nonzero means disregard local maps for the menu bar. */
164 static int inhibit_local_menu_bar_menus;
166 /* Nonzero means C-g should cause immediate error-signal. */
167 int immediate_quit;
169 /* Character to recognize as the help char. */
170 Lisp_Object Vhelp_char;
172 /* List of other event types to recognize as meaning "help". */
173 Lisp_Object Vhelp_event_list;
175 /* Form to execute when help char is typed. */
176 Lisp_Object Vhelp_form;
178 /* Command to run when the help character follows a prefix key. */
179 Lisp_Object Vprefix_help_command;
181 /* List of items that should move to the end of the menu bar. */
182 Lisp_Object Vmenu_bar_final_items;
184 /* Non-nil means show the equivalent key-binding for
185 any M-x command that has one.
186 The value can be a length of time to show the message for.
187 If the value is non-nil and not a number, we wait 2 seconds. */
188 Lisp_Object Vsuggest_key_bindings;
190 /* Character that causes a quit. Normally C-g.
192 If we are running on an ordinary terminal, this must be an ordinary
193 ASCII char, since we want to make it our interrupt character.
195 If we are not running on an ordinary terminal, it still needs to be
196 an ordinary ASCII char. This character needs to be recognized in
197 the input interrupt handler. At this point, the keystroke is
198 represented as a struct input_event, while the desired quit
199 character is specified as a lispy event. The mapping from struct
200 input_events to lispy events cannot run in an interrupt handler,
201 and the reverse mapping is difficult for anything but ASCII
202 keystrokes.
204 FOR THESE ELABORATE AND UNSATISFYING REASONS, quit_char must be an
205 ASCII character. */
206 int quit_char;
208 extern Lisp_Object current_global_map;
209 extern int minibuf_level;
211 /* If non-nil, this is a map that overrides all other local maps. */
212 Lisp_Object Voverriding_local_map;
214 /* If non-nil, Voverriding_local_map applies to the menu bar. */
215 Lisp_Object Voverriding_local_map_menu_flag;
217 /* Keymap that defines special misc events that should
218 be processed immediately at a low level. */
219 Lisp_Object Vspecial_event_map;
221 /* Current depth in recursive edits. */
222 int command_loop_level;
224 /* Total number of times command_loop has read a key sequence. */
225 int num_input_keys;
227 /* Last input character read as a command. */
228 Lisp_Object last_command_char;
230 /* Last input character read as a command, not counting menus
231 reached by the mouse. */
232 Lisp_Object last_nonmenu_event;
234 /* Last input character read for any purpose. */
235 Lisp_Object last_input_char;
237 /* If not Qnil, a list of objects to be read as subsequent command input. */
238 Lisp_Object Vunread_command_events;
240 /* If not -1, an event to be read as subsequent command input. */
241 int unread_command_char;
243 /* If not Qnil, this is a switch-frame event which we decided to put
244 off until the end of a key sequence. This should be read as the
245 next command input, after any unread_command_events.
247 read_key_sequence uses this to delay switch-frame events until the
248 end of the key sequence; Fread_char uses it to put off switch-frame
249 events until a non-ASCII event is acceptable as input. */
250 Lisp_Object unread_switch_frame;
252 /* A mask of extra modifier bits to put into every keyboard char. */
253 int extra_keyboard_modifiers;
255 /* Char to use as prefix when a meta character is typed in.
256 This is bound on entry to minibuffer in case ESC is changed there. */
258 Lisp_Object meta_prefix_char;
260 /* Last size recorded for a current buffer which is not a minibuffer. */
261 static int last_non_minibuf_size;
263 /* Number of idle seconds before an auto-save and garbage collection. */
264 static Lisp_Object Vauto_save_timeout;
266 /* Total number of times read_char has returned. */
267 int num_input_chars;
269 /* Total number of times read_char has returned, outside of macros. */
270 int num_nonmacro_input_chars;
272 /* Auto-save automatically when this many characters have been typed
273 since the last time. */
275 static int auto_save_interval;
277 /* Value of num_nonmacro_input_chars as of last auto save. */
279 int last_auto_save;
281 /* The command being executed by the command loop.
282 Commands may set this, and the value set will be copied into
283 current_kboard->Vlast_command instead of the actual command. */
284 Lisp_Object this_command;
286 /* The value of point when the last command was executed. */
287 int last_point_position;
289 /* The buffer that was current when the last command was started. */
290 Lisp_Object last_point_position_buffer;
292 #ifdef MULTI_FRAME
293 /* The frame in which the last input event occurred, or Qmacro if the
294 last event came from a macro. We use this to determine when to
295 generate switch-frame events. This may be cleared by functions
296 like Fselect_frame, to make sure that a switch-frame event is
297 generated by the next character. */
298 Lisp_Object internal_last_event_frame;
299 #endif
301 /* A user-visible version of the above, intended to allow users to
302 figure out where the last event came from, if the event doesn't
303 carry that information itself (i.e. if it was a character). */
304 Lisp_Object Vlast_event_frame;
306 /* The timestamp of the last input event we received from the X server.
307 X Windows wants this for selection ownership. */
308 unsigned long last_event_timestamp;
310 Lisp_Object Qself_insert_command;
311 Lisp_Object Qforward_char;
312 Lisp_Object Qbackward_char;
313 Lisp_Object Qundefined;
315 /* read_key_sequence stores here the command definition of the
316 key sequence that it reads. */
317 Lisp_Object read_key_sequence_cmd;
319 /* Form to evaluate (if non-nil) when Emacs is started. */
320 Lisp_Object Vtop_level;
322 /* User-supplied string to translate input characters through. */
323 Lisp_Object Vkeyboard_translate_table;
325 /* Keymap mapping ASCII function key sequences onto their preferred forms. */
326 extern Lisp_Object Vfunction_key_map;
328 /* Another keymap that maps key sequences into key sequences.
329 This one takes precedence over ordinary definitions. */
330 extern Lisp_Object Vkey_translation_map;
332 /* Non-nil means deactivate the mark at end of this command. */
333 Lisp_Object Vdeactivate_mark;
335 /* Menu bar specified in Lucid Emacs fashion. */
337 Lisp_Object Vlucid_menu_bar_dirty_flag;
338 Lisp_Object Qrecompute_lucid_menubar, Qactivate_menubar_hook;
340 /* Hooks to run before and after each command. */
341 Lisp_Object Qpre_command_hook, Vpre_command_hook;
342 Lisp_Object Qpost_command_hook, Vpost_command_hook;
343 Lisp_Object Qcommand_hook_internal, Vcommand_hook_internal;
344 /* Hook run after a command if there's no more input soon. */
345 Lisp_Object Qpost_command_idle_hook, Vpost_command_idle_hook;
347 /* Delay time in microseconds before running post-command-idle-hook. */
348 int post_command_idle_delay;
350 /* List of deferred actions to be performed at a later time.
351 The precise format isn't relevant here; we just check whether it is nil. */
352 Lisp_Object Vdeferred_action_list;
354 /* Function to call to handle deferred actions, when there are any. */
355 Lisp_Object Vdeferred_action_function;
356 Lisp_Object Qdeferred_action_function;
358 /* File in which we write all commands we read. */
359 FILE *dribble;
361 /* Nonzero if input is available. */
362 int input_pending;
364 /* 1 if should obey 0200 bit in input chars as "Meta", 2 if should
365 keep 0200 bit in input chars. 0 to ignore the 0200 bit. */
367 int meta_key;
369 extern char *pending_malloc_warning;
371 /* Circular buffer for pre-read keyboard input. */
372 static struct input_event kbd_buffer[KBD_BUFFER_SIZE];
374 /* Vector to GCPRO the frames and windows mentioned in kbd_buffer.
376 The interrupt-level event handlers will never enqueue an event on a
377 frame which is not in Vframe_list, and once an event is dequeued,
378 internal_last_event_frame or the event itself points to the frame.
379 So that's all fine.
381 But while the event is sitting in the queue, it's completely
382 unprotected. Suppose the user types one command which will run for
383 a while and then delete a frame, and then types another event at
384 the frame that will be deleted, before the command gets around to
385 it. Suppose there are no references to this frame elsewhere in
386 Emacs, and a GC occurs before the second event is dequeued. Now we
387 have an event referring to a freed frame, which will crash Emacs
388 when it is dequeued.
390 Similar things happen when an event on a scroll bar is enqueued; the
391 window may be deleted while the event is in the queue.
393 So, we use this vector to protect the frame_or_window field in the
394 event queue. That way, they'll be dequeued as dead frames or
395 windows, but still valid lisp objects.
397 If kbd_buffer[i].kind != no_event, then
398 (XVECTOR (kbd_buffer_frame_or_window)->contents[i]
399 == kbd_buffer[i].frame_or_window. */
400 static Lisp_Object kbd_buffer_frame_or_window;
402 /* Pointer to next available character in kbd_buffer.
403 If kbd_fetch_ptr == kbd_store_ptr, the buffer is empty.
404 This may be kbd_buffer + KBD_BUFFER_SIZE, meaning that the the
405 next available char is in kbd_buffer[0]. */
406 static struct input_event *kbd_fetch_ptr;
408 /* Pointer to next place to store character in kbd_buffer. This
409 may be kbd_buffer + KBD_BUFFER_SIZE, meaning that the next
410 character should go in kbd_buffer[0]. */
411 static volatile struct input_event *kbd_store_ptr;
413 /* The above pair of variables forms a "queue empty" flag. When we
414 enqueue a non-hook event, we increment kbd_store_ptr. When we
415 dequeue a non-hook event, we increment kbd_fetch_ptr. We say that
416 there is input available iff the two pointers are not equal.
418 Why not just have a flag set and cleared by the enqueuing and
419 dequeuing functions? Such a flag could be screwed up by interrupts
420 at inopportune times. */
422 /* If this flag is non-nil, we check mouse_moved to see when the
423 mouse moves, and motion events will appear in the input stream.
424 Otherwise, mouse motion is ignored. */
425 static Lisp_Object do_mouse_tracking;
427 /* Symbols to head events. */
428 Lisp_Object Qmouse_movement;
429 Lisp_Object Qscroll_bar_movement;
430 Lisp_Object Qswitch_frame;
431 Lisp_Object Qdelete_frame;
432 Lisp_Object Qiconify_frame;
433 Lisp_Object Qmake_frame_visible;
435 /* Symbols to denote kinds of events. */
436 Lisp_Object Qfunction_key;
437 Lisp_Object Qmouse_click;
438 Lisp_Object Qtimer_event;
439 /* Lisp_Object Qmouse_movement; - also an event header */
441 /* Properties of event headers. */
442 Lisp_Object Qevent_kind;
443 Lisp_Object Qevent_symbol_elements;
445 Lisp_Object Qmenu_enable;
447 /* An event header symbol HEAD may have a property named
448 Qevent_symbol_element_mask, which is of the form (BASE MODIFIERS);
449 BASE is the base, unmodified version of HEAD, and MODIFIERS is the
450 mask of modifiers applied to it. If present, this is used to help
451 speed up parse_modifiers. */
452 Lisp_Object Qevent_symbol_element_mask;
454 /* An unmodified event header BASE may have a property named
455 Qmodifier_cache, which is an alist mapping modifier masks onto
456 modified versions of BASE. If present, this helps speed up
457 apply_modifiers. */
458 Lisp_Object Qmodifier_cache;
460 /* Symbols to use for parts of windows. */
461 Lisp_Object Qmode_line;
462 Lisp_Object Qvertical_line;
463 Lisp_Object Qvertical_scroll_bar;
464 Lisp_Object Qmenu_bar;
466 extern Lisp_Object Qmenu_enable;
468 Lisp_Object recursive_edit_unwind (), command_loop ();
469 Lisp_Object Fthis_command_keys ();
470 Lisp_Object Qextended_command_history;
471 EMACS_TIME timer_check ();
473 extern char *x_get_keysym_name ();
475 Lisp_Object Qpolling_period;
477 /* List of absolute timers. Appears in order of next scheduled event. */
478 Lisp_Object Vtimer_list;
480 /* List of idle time timers. Appears in order of next scheduled event. */
481 Lisp_Object Vtimer_idle_list;
483 extern Lisp_Object Vprint_level, Vprint_length;
485 /* Address (if not 0) of EMACS_TIME to zero out if a SIGIO interrupt
486 happens. */
487 EMACS_TIME *input_available_clear_time;
489 /* Nonzero means use SIGIO interrupts; zero means use CBREAK mode.
490 Default is 1 if INTERRUPT_INPUT is defined. */
491 int interrupt_input;
493 /* Nonzero while interrupts are temporarily deferred during redisplay. */
494 int interrupts_deferred;
496 /* nonzero means use ^S/^Q for flow control. */
497 int flow_control;
499 /* Allow m- file to inhibit use of FIONREAD. */
500 #ifdef BROKEN_FIONREAD
501 #undef FIONREAD
502 #endif
504 /* We are unable to use interrupts if FIONREAD is not available,
505 so flush SIGIO so we won't try. */
506 #ifndef FIONREAD
507 #ifdef SIGIO
508 #undef SIGIO
509 #endif
510 #endif
512 /* If we support a window system, turn on the code to poll periodically
513 to detect C-g. It isn't actually used when doing interrupt input. */
514 #ifdef HAVE_WINDOW_SYSTEM
515 #define POLL_FOR_INPUT
516 #endif
518 /* Non-nil enables Column Number mode. */
519 Lisp_Object Vcolumn_number_mode;
521 /* Global variable declarations. */
523 /* Function for init_keyboard to call with no args (if nonzero). */
524 void (*keyboard_init_hook) ();
526 static int read_avail_input ();
527 static void get_input_pending ();
528 static int readable_events ();
529 static Lisp_Object read_char_x_menu_prompt ();
530 static Lisp_Object read_char_minibuf_menu_prompt ();
531 static Lisp_Object make_lispy_event ();
532 #ifdef HAVE_MOUSE
533 static Lisp_Object make_lispy_movement ();
534 #endif
535 static Lisp_Object modify_event_symbol ();
536 static Lisp_Object make_lispy_switch_frame ();
537 static int parse_solitary_modifier ();
539 /* > 0 if we are to echo keystrokes. */
540 static int echo_keystrokes;
542 /* Nonzero means don't try to suspend even if the operating system seems
543 to support it. */
544 static int cannot_suspend;
546 #define min(a,b) ((a)<(b)?(a):(b))
547 #define max(a,b) ((a)>(b)?(a):(b))
549 /* Install the string STR as the beginning of the string of echoing,
550 so that it serves as a prompt for the next character.
551 Also start echoing. */
553 echo_prompt (str)
554 char *str;
556 int len = strlen (str);
558 if (len > ECHOBUFSIZE - 4)
559 len = ECHOBUFSIZE - 4;
560 bcopy (str, current_kboard->echobuf, len);
561 current_kboard->echoptr = current_kboard->echobuf + len;
562 *current_kboard->echoptr = '\0';
564 current_kboard->echo_after_prompt = len;
566 echo_now ();
569 /* Add C to the echo string, if echoing is going on.
570 C can be a character, which is printed prettily ("M-C-x" and all that
571 jazz), or a symbol, whose name is printed. */
573 echo_char (c)
574 Lisp_Object c;
576 extern char *push_key_description ();
578 if (current_kboard->immediate_echo)
580 char *ptr = current_kboard->echoptr;
582 if (ptr != current_kboard->echobuf)
583 *ptr++ = ' ';
585 /* If someone has passed us a composite event, use its head symbol. */
586 c = EVENT_HEAD (c);
588 if (INTEGERP (c))
590 if (ptr - current_kboard->echobuf > ECHOBUFSIZE - 6)
591 return;
593 ptr = push_key_description (XINT (c), ptr);
595 else if (SYMBOLP (c))
597 struct Lisp_String *name = XSYMBOL (c)->name;
598 if ((ptr - current_kboard->echobuf) + name->size + 4 > ECHOBUFSIZE)
599 return;
600 bcopy (name->data, ptr, name->size);
601 ptr += name->size;
604 if (current_kboard->echoptr == current_kboard->echobuf
605 && help_char_p (c))
607 strcpy (ptr, " (Type ? for further options)");
608 ptr += strlen (ptr);
611 *ptr = 0;
612 current_kboard->echoptr = ptr;
614 echo_now ();
618 /* Temporarily add a dash to the end of the echo string if it's not
619 empty, so that it serves as a mini-prompt for the very next character. */
621 echo_dash ()
623 if (!current_kboard->immediate_echo
624 && current_kboard->echoptr == current_kboard->echobuf)
625 return;
626 /* Do nothing if we just printed a prompt. */
627 if (current_kboard->echo_after_prompt
628 == current_kboard->echoptr - current_kboard->echobuf)
629 return;
630 /* Do nothing if not echoing at all. */
631 if (current_kboard->echoptr == 0)
632 return;
634 /* Put a dash at the end of the buffer temporarily,
635 but make it go away when the next character is added. */
636 current_kboard->echoptr[0] = '-';
637 current_kboard->echoptr[1] = 0;
639 echo_now ();
642 /* Display the current echo string, and begin echoing if not already
643 doing so. */
645 echo_now ()
647 if (!current_kboard->immediate_echo)
649 int i;
650 current_kboard->immediate_echo = 1;
652 for (i = 0; i < this_command_key_count; i++)
654 Lisp_Object c;
655 c = XVECTOR (this_command_keys)->contents[i];
656 if (! (EVENT_HAS_PARAMETERS (c)
657 && EQ (EVENT_HEAD_KIND (EVENT_HEAD (c)), Qmouse_movement)))
658 echo_char (c);
660 echo_dash ();
663 echoing = 1;
664 message1_nolog (current_kboard->echobuf);
665 echoing = 0;
667 if (waiting_for_input && !NILP (Vquit_flag))
668 quit_throw_to_read_char ();
671 /* Turn off echoing, for the start of a new command. */
673 cancel_echoing ()
675 current_kboard->immediate_echo = 0;
676 current_kboard->echoptr = current_kboard->echobuf;
677 current_kboard->echo_after_prompt = -1;
678 ok_to_echo_at_next_pause = 0;
681 /* Return the length of the current echo string. */
683 static int
684 echo_length ()
686 return current_kboard->echoptr - current_kboard->echobuf;
689 /* Truncate the current echo message to its first LEN chars.
690 This and echo_char get used by read_key_sequence when the user
691 switches frames while entering a key sequence. */
693 static void
694 echo_truncate (len)
695 int len;
697 current_kboard->echobuf[len] = '\0';
698 current_kboard->echoptr = current_kboard->echobuf + len;
699 truncate_echo_area (len);
703 /* Functions for manipulating this_command_keys. */
704 static void
705 add_command_key (key)
706 Lisp_Object key;
708 int size = XVECTOR (this_command_keys)->size;
710 /* If reset-this-command-length was called recently, obey it now.
711 See the doc string of that function for an explanation of why. */
712 if (before_command_restore_flag)
714 this_command_key_count = before_command_key_count_1;
715 echo_truncate (before_command_echo_length_1);
716 before_command_restore_flag = 0;
719 if (this_command_key_count >= size)
721 Lisp_Object new_keys;
723 new_keys = Fmake_vector (make_number (size * 2), Qnil);
724 bcopy (XVECTOR (this_command_keys)->contents,
725 XVECTOR (new_keys)->contents,
726 size * sizeof (Lisp_Object));
728 this_command_keys = new_keys;
731 XVECTOR (this_command_keys)->contents[this_command_key_count++] = key;
734 Lisp_Object
735 recursive_edit_1 ()
737 int count = specpdl_ptr - specpdl;
738 Lisp_Object val;
740 if (command_loop_level > 0)
742 specbind (Qstandard_output, Qt);
743 specbind (Qstandard_input, Qt);
746 val = command_loop ();
747 if (EQ (val, Qt))
748 Fsignal (Qquit, Qnil);
750 return unbind_to (count, Qnil);
753 /* When an auto-save happens, record the "time", and don't do again soon. */
755 record_auto_save ()
757 last_auto_save = num_nonmacro_input_chars;
760 /* Make an auto save happen as soon as possible at command level. */
762 force_auto_save_soon ()
764 last_auto_save = - auto_save_interval - 1;
766 record_asynch_buffer_change ();
769 DEFUN ("recursive-edit", Frecursive_edit, Srecursive_edit, 0, 0, "",
770 "Invoke the editor command loop recursively.\n\
771 To get out of the recursive edit, a command can do `(throw 'exit nil)';\n\
772 that tells this function to return.\n\
773 Alternately, `(throw 'exit t)' makes this function signal an error.\n\
774 This function is called by the editor initialization to begin editing.")
777 int count = specpdl_ptr - specpdl;
778 Lisp_Object val;
780 command_loop_level++;
781 update_mode_lines = 1;
783 record_unwind_protect (recursive_edit_unwind,
784 (command_loop_level
785 && current_buffer != XBUFFER (XWINDOW (selected_window)->buffer))
786 ? Fcurrent_buffer ()
787 : Qnil);
788 recursive_edit_1 ();
789 return unbind_to (count, Qnil);
792 Lisp_Object
793 recursive_edit_unwind (buffer)
794 Lisp_Object buffer;
796 if (!NILP (buffer))
797 Fset_buffer (buffer);
799 command_loop_level--;
800 update_mode_lines = 1;
801 return Qnil;
804 static void
805 any_kboard_state ()
807 #ifdef MULTI_KBOARD
808 #if 0 /* Theory: if there's anything in Vunread_command_events,
809 it will right away be read by read_key_sequence,
810 and then if we do switch KBOARDS, it will go into the side
811 queue then. So we don't need to do anything special here -- rms. */
812 if (CONSP (Vunread_command_events))
814 current_kboard->kbd_queue
815 = nconc2 (Vunread_command_events, current_kboard->kbd_queue);
816 current_kboard->kbd_queue_has_data = 1;
818 Vunread_command_events = Qnil;
819 #endif
820 single_kboard = 0;
821 #endif
824 /* Switch to the single-kboard state, making current_kboard
825 the only KBOARD from which further input is accepted. */
827 void
828 single_kboard_state ()
830 #ifdef MULTI_KBOARD
831 single_kboard = 1;
832 #endif
835 /* Maintain a stack of kboards, so other parts of Emacs
836 can switch temporarily to the kboard of a given frame
837 and then revert to the previous status. */
839 struct kboard_stack
841 KBOARD *kboard;
842 struct kboard_stack *next;
845 static struct kboard_stack *kboard_stack;
847 void
848 push_frame_kboard (f)
849 FRAME_PTR f;
851 #ifdef MULTI_KBOARD
852 struct kboard_stack *p
853 = (struct kboard_stack *) xmalloc (sizeof (struct kboard_stack));
855 p->next = kboard_stack;
856 p->kboard = current_kboard;
857 kboard_stack = p;
859 current_kboard = FRAME_KBOARD (f);
860 #endif
863 void
864 pop_frame_kboard ()
866 #ifdef MULTI_KBOARD
867 struct kboard_stack *p = kboard_stack;
868 current_kboard = p->kboard;
869 kboard_stack = p->next;
870 xfree (p);
871 #endif
874 /* Handle errors that are not handled at inner levels
875 by printing an error message and returning to the editor command loop. */
877 Lisp_Object
878 cmd_error (data)
879 Lisp_Object data;
881 Lisp_Object old_level, old_length;
883 Vstandard_output = Qt;
884 Vstandard_input = Qt;
885 Vexecuting_macro = Qnil;
886 current_kboard->Vprefix_arg = Qnil;
887 cancel_echoing ();
889 /* Avoid unquittable loop if data contains a circular list. */
890 old_level = Vprint_level;
891 old_length = Vprint_length;
892 XSETFASTINT (Vprint_level, 10);
893 XSETFASTINT (Vprint_length, 10);
894 cmd_error_internal (data, NULL);
895 Vprint_level = old_level;
896 Vprint_length = old_length;
898 Vquit_flag = Qnil;
900 Vinhibit_quit = Qnil;
901 #ifdef MULTI_KBOARD
902 any_kboard_state ();
903 #endif
905 return make_number (0);
908 cmd_error_internal (data, context)
909 Lisp_Object data;
910 char *context;
912 Lisp_Object stream;
914 Vquit_flag = Qnil;
915 Vinhibit_quit = Qt;
916 echo_area_glyphs = 0;
918 /* If the window system or terminal frame hasn't been initialized
919 yet, or we're not interactive, it's best to dump this message out
920 to stderr and exit. */
921 if (! FRAME_MESSAGE_BUF (selected_frame)
922 || noninteractive)
923 stream = Qexternal_debugging_output;
924 else
926 Fdiscard_input ();
927 bitch_at_user ();
928 stream = Qt;
931 if (context != 0)
932 write_string_1 (context, -1, stream);
934 print_error_message (data, stream);
936 /* If the window system or terminal frame hasn't been initialized
937 yet, or we're in -batch mode, this error should cause Emacs to exit. */
938 if (! FRAME_MESSAGE_BUF (selected_frame)
939 || noninteractive)
941 Fterpri (stream);
942 Fkill_emacs (make_number (-1));
946 Lisp_Object command_loop_1 ();
947 Lisp_Object command_loop_2 ();
948 Lisp_Object top_level_1 ();
950 /* Entry to editor-command-loop.
951 This level has the catches for exiting/returning to editor command loop.
952 It returns nil to exit recursive edit, t to abort it. */
954 Lisp_Object
955 command_loop ()
957 if (command_loop_level > 0 || minibuf_level > 0)
959 return internal_catch (Qexit, command_loop_2, Qnil);
961 else
962 while (1)
964 internal_catch (Qtop_level, top_level_1, Qnil);
965 internal_catch (Qtop_level, command_loop_2, Qnil);
967 /* End of file in -batch run causes exit here. */
968 if (noninteractive)
969 Fkill_emacs (Qt);
973 /* Here we catch errors in execution of commands within the
974 editing loop, and reenter the editing loop.
975 When there is an error, cmd_error runs and returns a non-nil
976 value to us. A value of nil means that cmd_loop_1 itself
977 returned due to end of file (or end of kbd macro). */
979 Lisp_Object
980 command_loop_2 ()
982 register Lisp_Object val;
985 val = internal_condition_case (command_loop_1, Qerror, cmd_error);
986 while (!NILP (val));
988 return Qnil;
991 Lisp_Object
992 top_level_2 ()
994 return Feval (Vtop_level);
997 Lisp_Object
998 top_level_1 ()
1000 /* On entry to the outer level, run the startup file */
1001 if (!NILP (Vtop_level))
1002 internal_condition_case (top_level_2, Qerror, cmd_error);
1003 else if (!NILP (Vpurify_flag))
1004 message ("Bare impure Emacs (standard Lisp code not loaded)");
1005 else
1006 message ("Bare Emacs (standard Lisp code not loaded)");
1007 return Qnil;
1010 DEFUN ("top-level", Ftop_level, Stop_level, 0, 0, "",
1011 "Exit all recursive editing levels.")
1014 Fthrow (Qtop_level, Qnil);
1017 DEFUN ("exit-recursive-edit", Fexit_recursive_edit, Sexit_recursive_edit, 0, 0, "",
1018 "Exit from the innermost recursive edit or minibuffer.")
1021 if (command_loop_level > 0 || minibuf_level > 0)
1022 Fthrow (Qexit, Qnil);
1024 error ("No recursive edit is in progress");
1027 DEFUN ("abort-recursive-edit", Fabort_recursive_edit, Sabort_recursive_edit, 0, 0, "",
1028 "Abort the command that requested this recursive edit or minibuffer input.")
1031 if (command_loop_level > 0 || minibuf_level > 0)
1032 Fthrow (Qexit, Qt);
1034 error ("No recursive edit is in progress");
1037 /* This is the actual command reading loop,
1038 sans error-handling encapsulation. */
1040 Lisp_Object Fcommand_execute ();
1041 static int read_key_sequence ();
1042 void safe_run_hooks ();
1044 Lisp_Object
1045 command_loop_1 ()
1047 Lisp_Object cmd, tem;
1048 int lose;
1049 int nonundocount;
1050 Lisp_Object keybuf[30];
1051 int i;
1052 int no_redisplay;
1053 int no_direct;
1054 int prev_modiff;
1055 struct buffer *prev_buffer;
1056 #ifdef MULTI_KBOARD
1057 int was_locked = single_kboard;
1058 #endif
1060 current_kboard->Vprefix_arg = Qnil;
1061 Vdeactivate_mark = Qnil;
1062 waiting_for_input = 0;
1063 cancel_echoing ();
1065 nonundocount = 0;
1066 no_redisplay = 0;
1067 this_command_key_count = 0;
1069 /* Make sure this hook runs after commands that get errors and
1070 throw to top level. */
1071 /* Note that the value cell will never directly contain nil
1072 if the symbol is a local variable. */
1073 if (!NILP (Vpost_command_hook) && !NILP (Vrun_hooks))
1074 safe_run_hooks (Qpost_command_hook);
1076 if (!NILP (Vdeferred_action_list))
1077 call0 (Vdeferred_action_function);
1079 if (!NILP (Vpost_command_idle_hook) && !NILP (Vrun_hooks))
1081 if (NILP (Vunread_command_events)
1082 && NILP (Vexecuting_macro)
1083 && !NILP (sit_for (0, post_command_idle_delay, 0, 1)))
1084 safe_run_hooks (Qpost_command_idle_hook);
1087 /* Do this after running Vpost_command_hook, for consistency. */
1088 current_kboard->Vlast_command = this_command;
1090 while (1)
1092 /* Make sure the current window's buffer is selected. */
1093 if (XBUFFER (XWINDOW (selected_window)->buffer) != current_buffer)
1094 set_buffer_internal (XBUFFER (XWINDOW (selected_window)->buffer));
1096 /* Display any malloc warning that just came out. Use while because
1097 displaying one warning can cause another. */
1099 while (pending_malloc_warning)
1100 display_malloc_warning ();
1102 no_direct = 0;
1104 Vdeactivate_mark = Qnil;
1106 /* If minibuffer on and echo area in use,
1107 wait 2 sec and redraw minibuffer. */
1109 if (minibuf_level && echo_area_glyphs
1110 && EQ (minibuf_window, echo_area_window))
1112 /* Bind inhibit-quit to t so that C-g gets read in
1113 rather than quitting back to the minibuffer. */
1114 int count = specpdl_ptr - specpdl;
1115 specbind (Qinhibit_quit, Qt);
1116 Fsit_for (make_number (2), Qnil, Qnil);
1117 unbind_to (count, Qnil);
1119 /* Clear the echo area. */
1120 message2 (0);
1122 /* If a C-g came in before, treat it as input now. */
1123 if (!NILP (Vquit_flag))
1125 Vquit_flag = Qnil;
1126 Vunread_command_events = Fcons (make_number (quit_char), Qnil);
1130 #ifdef C_ALLOCA
1131 alloca (0); /* Cause a garbage collection now */
1132 /* Since we can free the most stuff here. */
1133 #endif /* C_ALLOCA */
1135 #if 0
1136 #ifdef MULTI_FRAME
1137 /* Select the frame that the last event came from. Usually,
1138 switch-frame events will take care of this, but if some lisp
1139 code swallows a switch-frame event, we'll fix things up here.
1140 Is this a good idea? */
1141 if (FRAMEP (internal_last_event_frame)
1142 && XFRAME (internal_last_event_frame) != selected_frame)
1143 Fselect_frame (internal_last_event_frame, Qnil);
1144 #endif
1145 #endif
1146 /* If it has changed current-menubar from previous value,
1147 really recompute the menubar from the value. */
1148 if (! NILP (Vlucid_menu_bar_dirty_flag)
1149 && !NILP (Ffboundp (Qrecompute_lucid_menubar)))
1150 call0 (Qrecompute_lucid_menubar);
1152 before_command_key_count = this_command_key_count;
1153 before_command_echo_length = echo_length ();
1155 this_command = Qnil;
1157 /* Read next key sequence; i gets its length. */
1158 i = read_key_sequence (keybuf, sizeof keybuf / sizeof keybuf[0],
1159 Qnil, 0, 1);
1161 ++num_input_keys;
1163 /* Now we have read a key sequence of length I,
1164 or else I is 0 and we found end of file. */
1166 if (i == 0) /* End of file -- happens only in */
1167 return Qnil; /* a kbd macro, at the end. */
1168 /* -1 means read_key_sequence got a menu that was rejected.
1169 Just loop around and read another command. */
1170 if (i == -1)
1172 cancel_echoing ();
1173 this_command_key_count = 0;
1174 goto finalize;
1177 last_command_char = keybuf[i - 1];
1179 /* If the previous command tried to force a specific window-start,
1180 forget about that, in case this command moves point far away
1181 from that position. But also throw away beg_unchanged and
1182 end_unchanged information in that case, so that redisplay will
1183 update the whole window properly. */
1184 if (!NILP (XWINDOW (selected_window)->force_start))
1186 XWINDOW (selected_window)->force_start = Qnil;
1187 beg_unchanged = end_unchanged = 0;
1190 cmd = read_key_sequence_cmd;
1191 if (!NILP (Vexecuting_macro))
1193 if (!NILP (Vquit_flag))
1195 Vexecuting_macro = Qt;
1196 QUIT; /* Make some noise. */
1197 /* Will return since macro now empty. */
1201 /* Do redisplay processing after this command except in special
1202 cases identified below that set no_redisplay to 1.
1203 (actually, there's currently no way to prevent the redisplay,
1204 and no_redisplay is ignored.
1205 Perhaps someday we will really implement it.) */
1206 no_redisplay = 0;
1208 prev_buffer = current_buffer;
1209 prev_modiff = MODIFF;
1210 last_point_position = PT;
1211 XSETBUFFER (last_point_position_buffer, prev_buffer);
1213 /* Execute the command. */
1215 this_command = cmd;
1216 /* Note that the value cell will never directly contain nil
1217 if the symbol is a local variable. */
1218 if (!NILP (Vpre_command_hook) && !NILP (Vrun_hooks))
1219 safe_run_hooks (Qpre_command_hook);
1221 if (NILP (this_command))
1223 /* nil means key is undefined. */
1224 bitch_at_user ();
1225 current_kboard->defining_kbd_macro = Qnil;
1226 update_mode_lines = 1;
1227 current_kboard->Vprefix_arg = Qnil;
1229 else
1231 if (NILP (current_kboard->Vprefix_arg) && ! no_direct)
1233 /* Recognize some common commands in common situations and
1234 do them directly. */
1235 if (EQ (this_command, Qforward_char) && PT < ZV)
1237 struct Lisp_Char_Table *dp
1238 = window_display_table (XWINDOW (selected_window));
1239 lose = FETCH_CHAR (PT);
1240 SET_PT (PT + 1);
1241 if ((dp
1242 ? (VECTORP (DISP_CHAR_VECTOR (dp, lose))
1243 ? XVECTOR (DISP_CHAR_VECTOR (dp, lose))->size == 1
1244 : (NILP (DISP_CHAR_VECTOR (dp, lose))
1245 && (lose >= 0x20 && lose < 0x7f)))
1246 : (lose >= 0x20 && lose < 0x7f))
1247 && (XFASTINT (XWINDOW (selected_window)->last_modified)
1248 >= MODIFF)
1249 && (XFASTINT (XWINDOW (selected_window)->last_point)
1250 == PT - 1)
1251 && !windows_or_buffers_changed
1252 && EQ (current_buffer->selective_display, Qnil)
1253 && !detect_input_pending ()
1254 && NILP (Vcolumn_number_mode)
1255 && NILP (Vexecuting_macro))
1256 no_redisplay = direct_output_forward_char (1);
1257 goto directly_done;
1259 else if (EQ (this_command, Qbackward_char) && PT > BEGV)
1261 struct Lisp_Char_Table *dp
1262 = window_display_table (XWINDOW (selected_window));
1263 SET_PT (PT - 1);
1264 lose = FETCH_CHAR (PT);
1265 if ((dp
1266 ? (VECTORP (DISP_CHAR_VECTOR (dp, lose))
1267 ? XVECTOR (DISP_CHAR_VECTOR (dp, lose))->size == 1
1268 : (NILP (DISP_CHAR_VECTOR (dp, lose))
1269 && (lose >= 0x20 && lose < 0x7f)))
1270 : (lose >= 0x20 && lose < 0x7f))
1271 && (XFASTINT (XWINDOW (selected_window)->last_modified)
1272 >= MODIFF)
1273 && (XFASTINT (XWINDOW (selected_window)->last_point)
1274 == PT + 1)
1275 && !windows_or_buffers_changed
1276 && EQ (current_buffer->selective_display, Qnil)
1277 && !detect_input_pending ()
1278 && NILP (Vcolumn_number_mode)
1279 && NILP (Vexecuting_macro))
1280 no_redisplay = direct_output_forward_char (-1);
1281 goto directly_done;
1283 else if (EQ (this_command, Qself_insert_command)
1284 /* Try this optimization only on ascii keystrokes. */
1285 && INTEGERP (last_command_char))
1287 unsigned char c = XINT (last_command_char);
1288 int value;
1290 if (NILP (Vexecuting_macro)
1291 && !EQ (minibuf_window, selected_window))
1293 if (!nonundocount || nonundocount >= 20)
1295 Fundo_boundary ();
1296 nonundocount = 0;
1298 nonundocount++;
1300 lose = ((XFASTINT (XWINDOW (selected_window)->last_modified)
1301 < MODIFF)
1302 || (XFASTINT (XWINDOW (selected_window)->last_point)
1303 != PT)
1304 || MODIFF <= SAVE_MODIFF
1305 || windows_or_buffers_changed
1306 || !EQ (current_buffer->selective_display, Qnil)
1307 || detect_input_pending ()
1308 || !NILP (Vcolumn_number_mode)
1309 || !NILP (Vexecuting_macro));
1310 value = internal_self_insert (c, 0);
1311 if (value)
1312 lose = 1;
1313 if (value == 2)
1314 nonundocount = 0;
1316 if (!lose
1317 && (PT == ZV || FETCH_CHAR (PT) == '\n'))
1319 struct Lisp_Char_Table *dp
1320 = window_display_table (XWINDOW (selected_window));
1321 int lose = c;
1323 if (dp)
1325 Lisp_Object obj;
1327 obj = DISP_CHAR_VECTOR (dp, lose);
1328 if (NILP (obj))
1330 /* Do it only for char codes
1331 that by default display as themselves. */
1332 if (lose >= 0x20 && lose <= 0x7e)
1333 no_redisplay = direct_output_for_insert (lose);
1335 else if (VECTORP (obj)
1336 && XVECTOR (obj)->size == 1
1337 && (obj = XVECTOR (obj)->contents[0],
1338 INTEGERP (obj))
1339 /* Insist face not specified in glyph. */
1340 && (XINT (obj) & ((-1) << 8)) == 0)
1341 no_redisplay
1342 = direct_output_for_insert (XINT (obj));
1344 else
1346 if (lose >= 0x20 && lose <= 0x7e)
1347 no_redisplay = direct_output_for_insert (lose);
1350 goto directly_done;
1354 /* Here for a command that isn't executed directly */
1356 nonundocount = 0;
1357 if (NILP (current_kboard->Vprefix_arg))
1358 Fundo_boundary ();
1359 Fcommand_execute (this_command, Qnil, Qnil, Qnil);
1362 directly_done: ;
1364 /* Note that the value cell will never directly contain nil
1365 if the symbol is a local variable. */
1366 if (!NILP (Vpost_command_hook) && !NILP (Vrun_hooks))
1367 safe_run_hooks (Qpost_command_hook);
1369 if (!NILP (Vdeferred_action_list))
1370 safe_run_hooks (Qdeferred_action_function);
1372 if (!NILP (Vpost_command_idle_hook) && !NILP (Vrun_hooks))
1374 if (NILP (Vunread_command_events)
1375 && NILP (Vexecuting_macro)
1376 && !NILP (sit_for (0, post_command_idle_delay, 0, 1)))
1377 safe_run_hooks (Qpost_command_idle_hook);
1380 /* If there is a prefix argument,
1381 1) We don't want Vlast_command to be ``universal-argument''
1382 (that would be dumb), so don't set Vlast_command,
1383 2) we want to leave echoing on so that the prefix will be
1384 echoed as part of this key sequence, so don't call
1385 cancel_echoing, and
1386 3) we want to leave this_command_key_count non-zero, so that
1387 read_char will realize that it is re-reading a character, and
1388 not echo it a second time.
1390 If the command didn't actually create a prefix arg,
1391 but is merely a frame event that is transparent to prefix args,
1392 then the above doesn't apply. */
1393 if (NILP (current_kboard->Vprefix_arg) || CONSP (last_command_char))
1395 current_kboard->Vlast_command = this_command;
1396 cancel_echoing ();
1397 this_command_key_count = 0;
1400 if (!NILP (current_buffer->mark_active) && !NILP (Vrun_hooks))
1402 if (!NILP (Vdeactivate_mark) && !NILP (Vtransient_mark_mode))
1404 current_buffer->mark_active = Qnil;
1405 call1 (Vrun_hooks, intern ("deactivate-mark-hook"));
1407 else if (current_buffer != prev_buffer || MODIFF != prev_modiff)
1408 call1 (Vrun_hooks, intern ("activate-mark-hook"));
1411 finalize:
1412 /* Install chars successfully executed in kbd macro. */
1414 if (!NILP (current_kboard->defining_kbd_macro)
1415 && NILP (current_kboard->Vprefix_arg))
1416 finalize_kbd_macro_chars ();
1418 #ifdef MULTI_KBOARD
1419 if (!was_locked)
1420 any_kboard_state ();
1421 #endif
1425 /* Subroutine for safe_run_hooks: run the hook HOOK. */
1427 static Lisp_Object
1428 safe_run_hooks_1 (hook)
1429 Lisp_Object hook;
1431 return call1 (Vrun_hooks, Vinhibit_quit);
1434 /* Subroutine for safe_run_hooks: handle an error by clearing out the hook. */
1436 static Lisp_Object
1437 safe_run_hooks_error (data)
1438 Lisp_Object data;
1440 Fset (Vinhibit_quit, Qnil);
1443 /* If we get an error while running the hook, cause the hook variable
1444 to be nil. Also inhibit quits, so that C-g won't cause the hook
1445 to mysteriously evaporate. */
1447 void
1448 safe_run_hooks (hook)
1449 Lisp_Object hook;
1451 Lisp_Object value;
1452 int count = specpdl_ptr - specpdl;
1453 specbind (Qinhibit_quit, hook);
1455 internal_condition_case (safe_run_hooks_1, Qt, safe_run_hooks_error);
1457 unbind_to (count, Qnil);
1460 /* Number of seconds between polling for input. */
1461 int polling_period;
1463 /* Nonzero means polling for input is temporarily suppressed. */
1464 int poll_suppress_count;
1466 /* Nonzero if polling_for_input is actually being used. */
1467 int polling_for_input;
1469 #ifdef POLL_FOR_INPUT
1471 /* Handle an alarm once each second and read pending input
1472 so as to handle a C-g if it comces in. */
1474 SIGTYPE
1475 input_poll_signal (signalnum) /* If we don't have an argument, */
1476 int signalnum; /* some compilers complain in signal calls. */
1478 if (interrupt_input_blocked == 0
1479 && !waiting_for_input)
1480 read_avail_input (0);
1481 signal (SIGALRM, input_poll_signal);
1482 alarm (polling_period);
1485 #endif
1487 /* Begin signals to poll for input, if they are appropriate.
1488 This function is called unconditionally from various places. */
1490 start_polling ()
1492 #ifdef POLL_FOR_INPUT
1493 if (read_socket_hook && !interrupt_input)
1495 poll_suppress_count--;
1496 if (poll_suppress_count == 0)
1498 signal (SIGALRM, input_poll_signal);
1499 polling_for_input = 1;
1500 alarm (polling_period);
1503 #endif
1506 /* Nonzero if we are using polling to handle input asynchronously. */
1509 input_polling_used ()
1511 #ifdef POLL_FOR_INPUT
1512 return read_socket_hook && !interrupt_input;
1513 #else
1514 return 0;
1515 #endif
1518 /* Turn off polling. */
1520 stop_polling ()
1522 #ifdef POLL_FOR_INPUT
1523 if (read_socket_hook && !interrupt_input)
1525 if (poll_suppress_count == 0)
1527 polling_for_input = 0;
1528 alarm (0);
1530 poll_suppress_count++;
1532 #endif
1535 /* Set the value of poll_suppress_count to COUNT
1536 and start or stop polling accordingly. */
1538 void
1539 set_poll_suppress_count (count)
1540 int count;
1542 #ifdef POLL_FOR_INPUT
1543 if (count == 0 && poll_suppress_count != 0)
1545 poll_suppress_count = 1;
1546 start_polling ();
1548 else if (count != 0 && poll_suppress_count == 0)
1550 stop_polling ();
1552 poll_suppress_count = count;
1553 #endif
1556 /* Bind polling_period to a value at least N.
1557 But don't decrease it. */
1559 bind_polling_period (n)
1560 int n;
1562 #ifdef POLL_FOR_INPUT
1563 int new = polling_period;
1565 if (n > new)
1566 new = n;
1568 stop_polling ();
1569 specbind (Qpolling_period, make_number (new));
1570 /* Start a new alarm with the new period. */
1571 start_polling ();
1572 #endif
1575 /* Apply the control modifier to CHARACTER. */
1578 make_ctrl_char (c)
1579 int c;
1581 /* Save the upper bits here. */
1582 int upper = c & ~0177;
1584 c &= 0177;
1586 /* Everything in the columns containing the upper-case letters
1587 denotes a control character. */
1588 if (c >= 0100 && c < 0140)
1590 int oc = c;
1591 c &= ~0140;
1592 /* Set the shift modifier for a control char
1593 made from a shifted letter. But only for letters! */
1594 if (oc >= 'A' && oc <= 'Z')
1595 c |= shift_modifier;
1598 /* The lower-case letters denote control characters too. */
1599 else if (c >= 'a' && c <= 'z')
1600 c &= ~0140;
1602 /* Include the bits for control and shift
1603 only if the basic ASCII code can't indicate them. */
1604 else if (c >= ' ')
1605 c |= ctrl_modifier;
1607 /* Replace the high bits. */
1608 c |= (upper & ~ctrl_modifier);
1610 return c;
1615 /* Input of single characters from keyboard */
1617 Lisp_Object print_help ();
1618 static Lisp_Object kbd_buffer_get_event ();
1619 static void record_char ();
1621 #ifdef MULTI_KBOARD
1622 static jmp_buf wrong_kboard_jmpbuf;
1623 #endif
1625 /* read a character from the keyboard; call the redisplay if needed */
1626 /* commandflag 0 means do not do auto-saving, but do do redisplay.
1627 -1 means do not do redisplay, but do do autosaving.
1628 1 means do both. */
1630 /* The arguments MAPS and NMAPS are for menu prompting.
1631 MAPS is an array of keymaps; NMAPS is the length of MAPS.
1633 PREV_EVENT is the previous input event, or nil if we are reading
1634 the first event of a key sequence.
1636 If USED_MOUSE_MENU is non-null, then we set *USED_MOUSE_MENU to 1
1637 if we used a mouse menu to read the input, or zero otherwise. If
1638 USED_MOUSE_MENU is null, we don't dereference it.
1640 Value is t if we showed a menu and the user rejected it. */
1642 Lisp_Object
1643 read_char (commandflag, nmaps, maps, prev_event, used_mouse_menu)
1644 int commandflag;
1645 int nmaps;
1646 Lisp_Object *maps;
1647 Lisp_Object prev_event;
1648 int *used_mouse_menu;
1650 register Lisp_Object c;
1651 int count;
1652 jmp_buf local_getcjmp;
1653 jmp_buf save_jump;
1654 int key_already_recorded = 0;
1655 Lisp_Object tem, save;
1656 Lisp_Object also_record;
1657 also_record = Qnil;
1659 before_command_key_count = this_command_key_count;
1660 before_command_echo_length = echo_length ();
1662 retry:
1664 if (CONSP (Vunread_command_events))
1666 c = XCONS (Vunread_command_events)->car;
1667 Vunread_command_events = XCONS (Vunread_command_events)->cdr;
1669 /* Undo what read_char_x_menu_prompt did when it unread
1670 additional keys returned by Fx_popup_menu. */
1671 if (CONSP (c)
1672 && (SYMBOLP (XCONS (c)->car) || INTEGERP (XCONS (c)->car))
1673 && NILP (XCONS (c)->cdr))
1674 c = XCONS (c)->car;
1676 if (this_command_key_count == 0)
1677 goto reread_first;
1678 else
1679 goto reread;
1682 if (unread_command_char != -1)
1684 XSETINT (c, unread_command_char);
1685 unread_command_char = -1;
1687 if (this_command_key_count == 0)
1688 goto reread_first;
1689 else
1690 goto reread;
1693 /* If there is no function key translated before
1694 reset-this-command-lengths takes effect, forget about it. */
1695 before_command_restore_flag = 0;
1697 if (!NILP (Vexecuting_macro))
1699 #ifdef MULTI_FRAME
1700 /* We set this to Qmacro; since that's not a frame, nobody will
1701 try to switch frames on us, and the selected window will
1702 remain unchanged.
1704 Since this event came from a macro, it would be misleading to
1705 leave internal_last_event_frame set to wherever the last
1706 real event came from. Normally, a switch-frame event selects
1707 internal_last_event_frame after each command is read, but
1708 events read from a macro should never cause a new frame to be
1709 selected. */
1710 Vlast_event_frame = internal_last_event_frame = Qmacro;
1711 #endif
1713 /* Exit the macro if we are at the end.
1714 Also, some things replace the macro with t
1715 to force an early exit. */
1716 if (EQ (Vexecuting_macro, Qt)
1717 || executing_macro_index >= XFASTINT (Flength (Vexecuting_macro)))
1719 XSETINT (c, -1);
1720 return c;
1723 c = Faref (Vexecuting_macro, make_number (executing_macro_index));
1724 if (STRINGP (Vexecuting_macro)
1725 && (XINT (c) & 0x80))
1726 XSETFASTINT (c, CHAR_META | (XINT (c) & ~0x80));
1728 executing_macro_index++;
1730 goto from_macro;
1733 if (!NILP (unread_switch_frame))
1735 c = unread_switch_frame;
1736 unread_switch_frame = Qnil;
1738 /* This event should make it into this_command_keys, and get echoed
1739 again, so we go to reread_first, rather than reread. */
1740 goto reread_first;
1743 if (commandflag >= 0 && !input_pending && !detect_input_pending ())
1744 redisplay ();
1746 /* Message turns off echoing unless more keystrokes turn it on again. */
1747 if (echo_area_glyphs && *echo_area_glyphs
1748 && echo_area_glyphs != current_kboard->echobuf
1749 && ok_to_echo_at_next_pause != echo_area_glyphs)
1750 cancel_echoing ();
1751 else
1752 /* If already echoing, continue. */
1753 echo_dash ();
1755 /* Try reading a character via menu prompting in the minibuf.
1756 Try this before the sit-for, because the sit-for
1757 would do the wrong thing if we are supposed to do
1758 menu prompting. If EVENT_HAS_PARAMETERS then we are reading
1759 after a mouse event so don't try a minibuf menu. */
1760 c = Qnil;
1761 if (nmaps > 0 && INTERACTIVE
1762 && !NILP (prev_event) && ! EVENT_HAS_PARAMETERS (prev_event)
1763 /* Don't bring up a menu if we already have another event. */
1764 && NILP (Vunread_command_events)
1765 && unread_command_char < 0
1766 && !detect_input_pending ())
1768 c = read_char_minibuf_menu_prompt (commandflag, nmaps, maps);
1769 if (! NILP (c))
1771 key_already_recorded = 1;
1772 goto non_reread_1;
1776 /* Make a longjmp point for quits to use, but don't alter getcjmp just yet.
1777 We will do that below, temporarily for short sections of code,
1778 when appropriate. local_getcjmp must be in effect
1779 around any call to sit_for or kbd_buffer_get_event;
1780 it *must not* be in effect when we call redisplay. */
1782 if (_setjmp (local_getcjmp))
1784 XSETINT (c, quit_char);
1785 #ifdef MULTI_FRAME
1786 XSETFRAME (internal_last_event_frame, selected_frame);
1787 Vlast_event_frame = internal_last_event_frame;
1788 #endif
1789 /* If we report the quit char as an event,
1790 don't do so more than once. */
1791 if (!NILP (Vinhibit_quit))
1792 Vquit_flag = Qnil;
1794 #ifdef MULTI_KBOARD
1796 KBOARD *kb = FRAME_KBOARD (selected_frame);
1797 if (kb != current_kboard)
1799 Lisp_Object *tailp = &kb->kbd_queue;
1800 /* We shouldn't get here if we were in single-kboard mode! */
1801 if (single_kboard)
1802 abort ();
1803 while (CONSP (*tailp))
1804 tailp = &XCONS (*tailp)->cdr;
1805 if (!NILP (*tailp))
1806 abort ();
1807 *tailp = Fcons (c, Qnil);
1808 kb->kbd_queue_has_data = 1;
1809 current_kboard = kb;
1810 longjmp (wrong_kboard_jmpbuf, 1);
1813 #endif
1814 goto non_reread;
1817 timer_start_idle ();
1819 /* If in middle of key sequence and minibuffer not active,
1820 start echoing if enough time elapses. */
1822 if (minibuf_level == 0 && !current_kboard->immediate_echo
1823 && this_command_key_count > 0
1824 && ! noninteractive
1825 && echo_keystrokes > 0
1826 && (echo_area_glyphs == 0 || *echo_area_glyphs == 0
1827 || ok_to_echo_at_next_pause == echo_area_glyphs))
1829 Lisp_Object tem0;
1831 /* After a mouse event, start echoing right away.
1832 This is because we are probably about to display a menu,
1833 and we don't want to delay before doing so. */
1834 if (EVENT_HAS_PARAMETERS (prev_event))
1835 echo_now ();
1836 else
1838 save_getcjmp (save_jump);
1839 restore_getcjmp (local_getcjmp);
1840 tem0 = sit_for (echo_keystrokes, 0, 1, 1);
1841 restore_getcjmp (save_jump);
1842 if (EQ (tem0, Qt))
1843 echo_now ();
1847 /* Maybe auto save due to number of keystrokes. */
1849 if (commandflag != 0
1850 && auto_save_interval > 0
1851 && num_nonmacro_input_chars - last_auto_save > max (auto_save_interval, 20)
1852 && !detect_input_pending ())
1854 Fdo_auto_save (Qnil, Qnil);
1855 /* Hooks can actually change some buffers in auto save. */
1856 redisplay ();
1859 /* Try reading using an X menu.
1860 This is never confused with reading using the minibuf
1861 because the recursive call of read_char in read_char_minibuf_menu_prompt
1862 does not pass on any keymaps. */
1864 if (nmaps > 0 && INTERACTIVE
1865 && !NILP (prev_event)
1866 && EVENT_HAS_PARAMETERS (prev_event)
1867 && !EQ (XCONS (prev_event)->car, Qmenu_bar)
1868 /* Don't bring up a menu if we already have another event. */
1869 && NILP (Vunread_command_events)
1870 && unread_command_char < 0)
1871 c = read_char_x_menu_prompt (nmaps, maps, prev_event, used_mouse_menu);
1873 /* Maybe autosave and/or garbage collect due to idleness. */
1875 if (INTERACTIVE && NILP (c))
1877 int delay_level, buffer_size;
1879 /* Slow down auto saves logarithmically in size of current buffer,
1880 and garbage collect while we're at it. */
1881 if (! MINI_WINDOW_P (XWINDOW (selected_window)))
1882 last_non_minibuf_size = Z - BEG;
1883 buffer_size = (last_non_minibuf_size >> 8) + 1;
1884 delay_level = 0;
1885 while (buffer_size > 64)
1886 delay_level++, buffer_size -= buffer_size >> 2;
1887 if (delay_level < 4) delay_level = 4;
1888 /* delay_level is 4 for files under around 50k, 7 at 100k,
1889 9 at 200k, 11 at 300k, and 12 at 500k. It is 15 at 1 meg. */
1891 /* Auto save if enough time goes by without input. */
1892 if (commandflag != 0
1893 && num_nonmacro_input_chars > last_auto_save
1894 && INTEGERP (Vauto_save_timeout)
1895 && XINT (Vauto_save_timeout) > 0)
1897 Lisp_Object tem0;
1899 save_getcjmp (save_jump);
1900 restore_getcjmp (local_getcjmp);
1901 tem0 = sit_for (delay_level * XFASTINT (Vauto_save_timeout) / 4,
1902 0, 1, 1);
1903 restore_getcjmp (save_jump);
1905 if (EQ (tem0, Qt))
1907 Fdo_auto_save (Qnil, Qnil);
1909 /* If we have auto-saved and there is still no input
1910 available, garbage collect if there has been enough
1911 consing going on to make it worthwhile. */
1912 if (!detect_input_pending ()
1913 && consing_since_gc > gc_cons_threshold / 2)
1914 Fgarbage_collect ();
1916 redisplay ();
1921 /* Read something from current KBOARD's side queue, if possible. */
1923 if (NILP (c))
1925 if (current_kboard->kbd_queue_has_data)
1927 if (!CONSP (current_kboard->kbd_queue))
1928 abort ();
1929 c = XCONS (current_kboard->kbd_queue)->car;
1930 current_kboard->kbd_queue
1931 = XCONS (current_kboard->kbd_queue)->cdr;
1932 if (NILP (current_kboard->kbd_queue))
1933 current_kboard->kbd_queue_has_data = 0;
1934 input_pending = readable_events (0);
1935 #ifdef MULTI_FRAME
1936 if (EVENT_HAS_PARAMETERS (c)
1937 && EQ (EVENT_HEAD_KIND (EVENT_HEAD (c)), Qswitch_frame))
1938 internal_last_event_frame = XCONS (XCONS (c)->cdr)->car;
1939 Vlast_event_frame = internal_last_event_frame;
1940 #endif
1944 #ifdef MULTI_KBOARD
1945 /* If current_kboard's side queue is empty check the other kboards.
1946 If one of them has data that we have not yet seen here,
1947 switch to it and process the data waiting for it.
1949 Note: if the events queued up for another kboard
1950 have already been seen here, and therefore are not a complete command,
1951 the kbd_queue_has_data field is 0, so we skip that kboard here.
1952 That's to avoid an infinite loop switching between kboards here. */
1953 if (NILP (c) && !single_kboard)
1955 KBOARD *kb;
1956 for (kb = all_kboards; kb; kb = kb->next_kboard)
1957 if (kb->kbd_queue_has_data)
1959 current_kboard = kb;
1960 longjmp (wrong_kboard_jmpbuf, 1);
1963 #endif
1965 wrong_kboard:
1967 stop_polling ();
1969 /* Finally, we read from the main queue,
1970 and if that gives us something we can't use yet, we put it on the
1971 appropriate side queue and try again. */
1973 if (NILP (c))
1975 KBOARD *kb;
1977 /* Actually read a character, waiting if necessary. */
1978 save_getcjmp (save_jump);
1979 restore_getcjmp (local_getcjmp);
1980 c = kbd_buffer_get_event (&kb, used_mouse_menu);
1981 restore_getcjmp (save_jump);
1983 #ifdef MULTI_KBOARD
1984 if (! NILP (c) && (kb != current_kboard))
1986 Lisp_Object *tailp = &kb->kbd_queue;
1987 while (CONSP (*tailp))
1988 tailp = &XCONS (*tailp)->cdr;
1989 if (!NILP (*tailp))
1990 abort ();
1991 *tailp = Fcons (c, Qnil);
1992 kb->kbd_queue_has_data = 1;
1993 c = Qnil;
1994 if (single_kboard)
1995 goto wrong_kboard;
1996 current_kboard = kb;
1997 longjmp (wrong_kboard_jmpbuf, 1);
1999 #endif
2002 /* Terminate Emacs in batch mode if at eof. */
2003 if (noninteractive && INTEGERP (c) && XINT (c) < 0)
2004 Fkill_emacs (make_number (1));
2006 if (INTEGERP (c))
2008 /* Add in any extra modifiers, where appropriate. */
2009 if ((extra_keyboard_modifiers & CHAR_CTL)
2010 || ((extra_keyboard_modifiers & 0177) < ' '
2011 && (extra_keyboard_modifiers & 0177) != 0))
2012 XSETINT (c, make_ctrl_char (XINT (c)));
2014 /* Transfer any other modifier bits directly from
2015 extra_keyboard_modifiers to c. Ignore the actual character code
2016 in the low 16 bits of extra_keyboard_modifiers. */
2017 XSETINT (c, XINT (c) | (extra_keyboard_modifiers & ~0xff7f & ~CHAR_CTL));
2020 non_reread:
2022 /* Now that we have read an event, Emacs is not idle--
2023 unless the event was a timer event. */
2024 if (! (CONSP (c) && EQ (XCONS (c)->car, Qtimer_event)))
2025 timer_stop_idle ();
2027 start_polling ();
2029 if (NILP (c))
2031 if (commandflag >= 0
2032 && !input_pending && !detect_input_pending ())
2033 redisplay ();
2035 goto wrong_kboard;
2038 non_reread_1:
2040 /* Buffer switch events are only for internal wakeups
2041 so don't show them to the user. */
2042 if (BUFFERP (c))
2043 return c;
2045 if (key_already_recorded)
2046 return c;
2048 /* Process special events within read_char
2049 and loop around to read another event. */
2050 save = Vquit_flag;
2051 Vquit_flag = Qnil;
2052 tem = get_keyelt (access_keymap (get_keymap_1 (Vspecial_event_map, 0, 0),
2053 c, 0, 0), 1);
2054 Vquit_flag = save;
2056 if (!NILP (tem))
2058 int was_locked = single_kboard;
2060 last_input_char = c;
2061 Fcommand_execute (tem, Qnil, Fvector (1, &last_input_char), Qt);
2063 /* Resume allowing input from any kboard, if that was true before. */
2064 if (!was_locked)
2065 any_kboard_state ();
2067 goto retry;
2070 /* Wipe the echo area. */
2071 echo_area_glyphs = 0;
2073 /* Handle things that only apply to characters. */
2074 if (INTEGERP (c))
2076 /* If kbd_buffer_get_event gave us an EOF, return that. */
2077 if (XINT (c) == -1)
2078 return c;
2080 if (STRINGP (Vkeyboard_translate_table)
2081 && XSTRING (Vkeyboard_translate_table)->size > XFASTINT (c))
2082 XSETINT (c, XSTRING (Vkeyboard_translate_table)->data[XFASTINT (c)]);
2083 else if ((VECTORP (Vkeyboard_translate_table)
2084 && XVECTOR (Vkeyboard_translate_table)->size > XFASTINT (c))
2085 || CHAR_TABLE_P (Vkeyboard_translate_table))
2087 Lisp_Object d;
2088 d = Faref (Vkeyboard_translate_table, c);
2089 /* nil in keyboard-translate-table means no translation. */
2090 if (!NILP (d))
2091 c = d;
2095 /* If this event is a mouse click in the menu bar,
2096 return just menu-bar for now. Modify the mouse click event
2097 so we won't do this twice, then queue it up. */
2098 if (EVENT_HAS_PARAMETERS (c)
2099 && CONSP (XCONS (c)->cdr)
2100 && CONSP (EVENT_START (c))
2101 && CONSP (XCONS (EVENT_START (c))->cdr))
2103 Lisp_Object posn;
2105 posn = POSN_BUFFER_POSN (EVENT_START (c));
2106 /* Handle menu-bar events:
2107 insert the dummy prefix event `menu-bar'. */
2108 if (EQ (posn, Qmenu_bar))
2110 /* Change menu-bar to (menu-bar) as the event "position". */
2111 POSN_BUFFER_POSN (EVENT_START (c)) = Fcons (posn, Qnil);
2113 also_record = c;
2114 Vunread_command_events = Fcons (c, Vunread_command_events);
2115 c = posn;
2119 record_char (c);
2120 if (! NILP (also_record))
2121 record_char (also_record);
2123 from_macro:
2124 reread_first:
2125 before_command_key_count = this_command_key_count;
2126 before_command_echo_length = echo_length ();
2128 /* Don't echo mouse motion events. */
2129 if (echo_keystrokes
2130 && ! (EVENT_HAS_PARAMETERS (c)
2131 && EQ (EVENT_HEAD_KIND (EVENT_HEAD (c)), Qmouse_movement)))
2133 echo_char (c);
2134 if (! NILP (also_record))
2135 echo_char (also_record);
2136 /* Once we reread a character, echoing can happen
2137 the next time we pause to read a new one. */
2138 ok_to_echo_at_next_pause = echo_area_glyphs;
2141 /* Record this character as part of the current key. */
2142 add_command_key (c);
2143 if (! NILP (also_record))
2144 add_command_key (also_record);
2146 /* Re-reading in the middle of a command */
2147 reread:
2148 last_input_char = c;
2149 num_input_chars++;
2151 /* Process the help character specially if enabled */
2152 if (!NILP (Vhelp_form) && help_char_p (c))
2154 Lisp_Object tem0;
2155 count = specpdl_ptr - specpdl;
2157 record_unwind_protect (Fset_window_configuration,
2158 Fcurrent_window_configuration (Qnil));
2160 tem0 = Feval (Vhelp_form);
2161 if (STRINGP (tem0))
2162 internal_with_output_to_temp_buffer ("*Help*", print_help, tem0);
2164 cancel_echoing ();
2166 c = read_char (0, 0, 0, Qnil, 0);
2167 while (BUFFERP (c));
2168 /* Remove the help from the frame */
2169 unbind_to (count, Qnil);
2171 redisplay ();
2172 if (EQ (c, make_number (040)))
2174 cancel_echoing ();
2176 c = read_char (0, 0, 0, Qnil, 0);
2177 while (BUFFERP (c));
2181 return c;
2184 /* Return 1 if should recognize C as "the help character". */
2187 help_char_p (c)
2188 Lisp_Object c;
2190 Lisp_Object tail;
2192 if (EQ (c, Vhelp_char))
2193 return 1;
2194 for (tail = Vhelp_event_list; CONSP (tail); tail = XCONS (tail)->cdr)
2195 if (EQ (c, XCONS (tail)->car))
2196 return 1;
2197 return 0;
2200 /* Record the input event C in various ways. */
2202 static void
2203 record_char (c)
2204 Lisp_Object c;
2206 total_keys++;
2207 XVECTOR (recent_keys)->contents[recent_keys_index] = c;
2208 if (++recent_keys_index >= NUM_RECENT_KEYS)
2209 recent_keys_index = 0;
2211 /* Write c to the dribble file. If c is a lispy event, write
2212 the event's symbol to the dribble file, in <brackets>. Bleaugh.
2213 If you, dear reader, have a better idea, you've got the source. :-) */
2214 if (dribble)
2216 if (INTEGERP (c))
2218 if (XUINT (c) < 0x100)
2219 putc (XINT (c), dribble);
2220 else
2221 fprintf (dribble, " 0x%x", (int) XUINT (c));
2223 else
2225 Lisp_Object dribblee;
2227 /* If it's a structured event, take the event header. */
2228 dribblee = EVENT_HEAD (c);
2230 if (SYMBOLP (dribblee))
2232 putc ('<', dribble);
2233 fwrite (XSYMBOL (dribblee)->name->data, sizeof (char),
2234 XSYMBOL (dribblee)->name->size,
2235 dribble);
2236 putc ('>', dribble);
2240 fflush (dribble);
2243 store_kbd_macro_char (c);
2245 num_nonmacro_input_chars++;
2248 Lisp_Object
2249 print_help (object)
2250 Lisp_Object object;
2252 struct buffer *old = current_buffer;
2253 Fprinc (object, Qnil);
2254 set_buffer_internal (XBUFFER (Vstandard_output));
2255 call0 (intern ("help-mode"));
2256 set_buffer_internal (old);
2257 return Qnil;
2260 /* Copy out or in the info on where C-g should throw to.
2261 This is used when running Lisp code from within get_char,
2262 in case get_char is called recursively.
2263 See read_process_output. */
2265 save_getcjmp (temp)
2266 jmp_buf temp;
2268 bcopy (getcjmp, temp, sizeof getcjmp);
2271 restore_getcjmp (temp)
2272 jmp_buf temp;
2274 bcopy (temp, getcjmp, sizeof getcjmp);
2277 #ifdef HAVE_MOUSE
2279 /* Restore mouse tracking enablement. See Ftrack_mouse for the only use
2280 of this function. */
2282 static Lisp_Object
2283 tracking_off (old_value)
2284 Lisp_Object old_value;
2286 do_mouse_tracking = old_value;
2287 if (NILP (old_value))
2289 /* Redisplay may have been preempted because there was input
2290 available, and it assumes it will be called again after the
2291 input has been processed. If the only input available was
2292 the sort that we have just disabled, then we need to call
2293 redisplay. */
2294 if (!readable_events (1))
2296 redisplay_preserve_echo_area ();
2297 get_input_pending (&input_pending, 1);
2302 DEFUN ("track-mouse", Ftrack_mouse, Strack_mouse, 0, UNEVALLED, 0,
2303 "Evaluate BODY with mouse movement events enabled.\n\
2304 Within a `track-mouse' form, mouse motion generates input events that\n\
2305 you can read with `read-event'.\n\
2306 Normally, mouse motion is ignored.")
2307 (args)
2308 Lisp_Object args;
2310 int count = specpdl_ptr - specpdl;
2311 Lisp_Object val;
2313 record_unwind_protect (tracking_off, do_mouse_tracking);
2315 do_mouse_tracking = Qt;
2317 val = Fprogn (args);
2318 return unbind_to (count, val);
2321 /* If mouse has moved on some frame, return one of those frames.
2322 Return 0 otherwise. */
2324 static FRAME_PTR
2325 some_mouse_moved ()
2327 Lisp_Object tail, frame;
2329 FOR_EACH_FRAME (tail, frame)
2331 if (XFRAME (frame)->mouse_moved)
2332 return XFRAME (frame);
2335 return 0;
2338 #endif /* HAVE_MOUSE */
2340 /* Low level keyboard/mouse input.
2341 kbd_buffer_store_event places events in kbd_buffer, and
2342 kbd_buffer_get_event retrieves them. */
2344 /* Return true iff there are any events in the queue that read-char
2345 would return. If this returns false, a read-char would block. */
2346 static int
2347 readable_events (do_timers_now)
2348 int do_timers_now;
2350 timer_check (do_timers_now);
2351 if (kbd_fetch_ptr != kbd_store_ptr)
2352 return 1;
2353 #ifdef HAVE_MOUSE
2354 if (!NILP (do_mouse_tracking) && some_mouse_moved ())
2355 return 1;
2356 #endif
2357 if (single_kboard)
2359 if (current_kboard->kbd_queue_has_data)
2360 return 1;
2362 else
2364 KBOARD *kb;
2365 for (kb = all_kboards; kb; kb = kb->next_kboard)
2366 if (kb->kbd_queue_has_data)
2367 return 1;
2369 return 0;
2372 /* Set this for debugging, to have a way to get out */
2373 int stop_character;
2375 #ifdef MULTI_KBOARD
2376 static KBOARD *
2377 event_to_kboard (event)
2378 struct input_event *event;
2380 Lisp_Object frame;
2381 frame = event->frame_or_window;
2382 if (CONSP (frame))
2383 frame = XCONS (frame)->car;
2384 else if (WINDOWP (frame))
2385 frame = WINDOW_FRAME (XWINDOW (frame));
2387 /* There are still some events that don't set this field.
2388 For now, just ignore the problem.
2389 Also ignore dead frames here. */
2390 if (!FRAMEP (frame) || !FRAME_LIVE_P (XFRAME (frame)))
2391 return 0;
2392 else
2393 return FRAME_KBOARD (XFRAME (frame));
2395 #endif
2397 /* Store an event obtained at interrupt level into kbd_buffer, fifo */
2399 void
2400 kbd_buffer_store_event (event)
2401 register struct input_event *event;
2403 if (event->kind == no_event)
2404 abort ();
2406 if (event->kind == ascii_keystroke)
2408 register int c = event->code & 0377;
2410 if (event->modifiers & ctrl_modifier)
2411 c = make_ctrl_char (c);
2413 c |= (event->modifiers
2414 & (meta_modifier | alt_modifier
2415 | hyper_modifier | super_modifier));
2417 if (c == quit_char)
2419 extern SIGTYPE interrupt_signal ();
2420 #ifdef MULTI_KBOARD
2421 KBOARD *kb;
2422 struct input_event *sp;
2424 if (single_kboard
2425 && (kb = FRAME_KBOARD (XFRAME (event->frame_or_window)),
2426 kb != current_kboard))
2428 kb->kbd_queue
2429 = Fcons (make_lispy_switch_frame (event->frame_or_window),
2430 Fcons (make_number (c), Qnil));
2431 kb->kbd_queue_has_data = 1;
2432 for (sp = kbd_fetch_ptr; sp != kbd_store_ptr; sp++)
2434 if (sp == kbd_buffer + KBD_BUFFER_SIZE)
2435 sp = kbd_buffer;
2437 if (event_to_kboard (sp) == kb)
2439 sp->kind = no_event;
2440 sp->frame_or_window = Qnil;
2443 return;
2445 #endif
2447 #ifdef MULTI_FRAME
2448 /* If this results in a quit_char being returned to Emacs as
2449 input, set Vlast_event_frame properly. If this doesn't
2450 get returned to Emacs as an event, the next event read
2451 will set Vlast_event_frame again, so this is safe to do. */
2453 Lisp_Object focus;
2455 focus = FRAME_FOCUS_FRAME (XFRAME (event->frame_or_window));
2456 if (NILP (focus))
2457 focus = event->frame_or_window;
2458 internal_last_event_frame = focus;
2459 Vlast_event_frame = focus;
2461 #endif
2463 last_event_timestamp = event->timestamp;
2464 interrupt_signal ();
2465 return;
2468 if (c && c == stop_character)
2470 sys_suspend ();
2471 return;
2474 /* Don't insert two buffer_switch_event's in a row.
2475 Just ignore the second one. */
2476 else if (event->kind == buffer_switch_event
2477 && kbd_fetch_ptr != kbd_store_ptr
2478 && kbd_store_ptr->kind == buffer_switch_event)
2479 return;
2481 if (kbd_store_ptr - kbd_buffer == KBD_BUFFER_SIZE)
2482 kbd_store_ptr = kbd_buffer;
2484 /* Don't let the very last slot in the buffer become full,
2485 since that would make the two pointers equal,
2486 and that is indistinguishable from an empty buffer.
2487 Discard the event if it would fill the last slot. */
2488 if (kbd_fetch_ptr - 1 != kbd_store_ptr)
2490 volatile struct input_event *sp = kbd_store_ptr;
2491 sp->kind = event->kind;
2492 if (event->kind == selection_request_event)
2494 /* We must not use the ordinary copying code for this case,
2495 since `part' is an enum and copying it might not copy enough
2496 in this case. */
2497 bcopy (event, (char *) sp, sizeof (*event));
2499 else
2501 sp->code = event->code;
2502 sp->part = event->part;
2503 sp->frame_or_window = event->frame_or_window;
2504 sp->modifiers = event->modifiers;
2505 sp->x = event->x;
2506 sp->y = event->y;
2507 sp->timestamp = event->timestamp;
2509 (XVECTOR (kbd_buffer_frame_or_window)->contents[kbd_store_ptr
2510 - kbd_buffer]
2511 = event->frame_or_window);
2513 kbd_store_ptr++;
2517 /* Read one event from the event buffer, waiting if necessary.
2518 The value is a Lisp object representing the event.
2519 The value is nil for an event that should be ignored,
2520 or that was handled here.
2521 We always read and discard one event. */
2523 static Lisp_Object
2524 kbd_buffer_get_event (kbp, used_mouse_menu)
2525 KBOARD **kbp;
2526 int *used_mouse_menu;
2528 register int c;
2529 Lisp_Object obj;
2530 EMACS_TIME next_timer_delay;
2532 if (noninteractive)
2534 c = getchar ();
2535 XSETINT (obj, c);
2536 *kbp = current_kboard;
2537 return obj;
2540 /* Wait until there is input available. */
2541 for (;;)
2543 if (kbd_fetch_ptr != kbd_store_ptr)
2544 break;
2545 #ifdef HAVE_MOUSE
2546 if (!NILP (do_mouse_tracking) && some_mouse_moved ())
2547 break;
2548 #endif
2550 /* If the quit flag is set, then read_char will return
2551 quit_char, so that counts as "available input." */
2552 if (!NILP (Vquit_flag))
2553 quit_throw_to_read_char ();
2555 /* One way or another, wait until input is available; then, if
2556 interrupt handlers have not read it, read it now. */
2558 #ifdef OLDVMS
2559 wait_for_kbd_input ();
2560 #else
2561 /* Note SIGIO has been undef'd if FIONREAD is missing. */
2562 #ifdef SIGIO
2563 gobble_input (0);
2564 #endif /* SIGIO */
2565 if (kbd_fetch_ptr != kbd_store_ptr)
2566 break;
2567 #ifdef HAVE_MOUSE
2568 if (!NILP (do_mouse_tracking) && some_mouse_moved ())
2569 break;
2570 #endif
2572 Lisp_Object minus_one;
2574 XSETINT (minus_one, -1);
2575 wait_reading_process_input (0, 0, minus_one, 1);
2577 if (!interrupt_input && kbd_fetch_ptr == kbd_store_ptr)
2578 /* Pass 1 for EXPECT since we just waited to have input. */
2579 read_avail_input (1);
2581 #endif /* not VMS */
2584 /* At this point, we know that there is a readable event available
2585 somewhere. If the event queue is empty, then there must be a
2586 mouse movement enabled and available. */
2587 if (kbd_fetch_ptr != kbd_store_ptr)
2589 struct input_event *event;
2591 event = ((kbd_fetch_ptr < kbd_buffer + KBD_BUFFER_SIZE)
2592 ? kbd_fetch_ptr
2593 : kbd_buffer);
2595 last_event_timestamp = event->timestamp;
2597 #ifdef MULTI_KBOARD
2598 *kbp = event_to_kboard (event);
2599 if (*kbp == 0)
2600 *kbp = current_kboard; /* Better than returning null ptr? */
2601 #else
2602 *kbp = &the_only_kboard;
2603 #endif
2605 obj = Qnil;
2607 /* These two kinds of events get special handling
2608 and don't actually appear to the command loop.
2609 We return nil for them. */
2610 if (event->kind == selection_request_event)
2612 #ifdef HAVE_X11
2613 struct input_event copy;
2615 /* Remove it from the buffer before processing it,
2616 since otherwise swallow_events will see it
2617 and process it again. */
2618 copy = *event;
2619 kbd_fetch_ptr = event + 1;
2620 input_pending = readable_events (0);
2621 x_handle_selection_request (&copy);
2622 #else
2623 /* We're getting selection request events, but we don't have
2624 a window system. */
2625 abort ();
2626 #endif
2629 else if (event->kind == selection_clear_event)
2631 #ifdef HAVE_X11
2632 struct input_event copy;
2634 /* Remove it from the buffer before processing it. */
2635 copy = *event;
2636 kbd_fetch_ptr = event + 1;
2637 input_pending = readable_events (0);
2638 x_handle_selection_clear (&copy);
2639 #else
2640 /* We're getting selection request events, but we don't have
2641 a window system. */
2642 abort ();
2643 #endif
2645 #if defined (HAVE_X11) || defined (HAVE_NTGUI)
2646 else if (event->kind == delete_window_event)
2648 /* Make an event (delete-frame (FRAME)). */
2649 obj = Fcons (event->frame_or_window, Qnil);
2650 obj = Fcons (Qdelete_frame, Fcons (obj, Qnil));
2651 kbd_fetch_ptr = event + 1;
2653 else if (event->kind == iconify_event)
2655 /* Make an event (iconify-frame (FRAME)). */
2656 obj = Fcons (event->frame_or_window, Qnil);
2657 obj = Fcons (Qiconify_frame, Fcons (obj, Qnil));
2658 kbd_fetch_ptr = event + 1;
2660 else if (event->kind == deiconify_event)
2662 /* Make an event (make-frame-visible (FRAME)). */
2663 obj = Fcons (event->frame_or_window, Qnil);
2664 obj = Fcons (Qmake_frame_visible, Fcons (obj, Qnil));
2665 kbd_fetch_ptr = event + 1;
2667 #endif
2668 else if (event->kind == buffer_switch_event)
2670 /* The value doesn't matter here; only the type is tested. */
2671 XSETBUFFER (obj, current_buffer);
2672 kbd_fetch_ptr = event + 1;
2674 #ifdef USE_X_TOOLKIT
2675 else if (event->kind == menu_bar_activate_event)
2677 kbd_fetch_ptr = event + 1;
2678 input_pending = readable_events (0);
2679 x_activate_menubar (XFRAME (event->frame_or_window));
2681 #endif
2682 /* Just discard these, by returning nil.
2683 With MULTI_KBOARD, these events are used as placeholders
2684 when we need to randomly delete events from the queue.
2685 (They shouldn't otherwise be found in the buffer,
2686 but on some machines it appears they do show up
2687 even without MULTI_KBOARD.) */
2688 else if (event->kind == no_event)
2689 kbd_fetch_ptr = event + 1;
2691 /* If this event is on a different frame, return a switch-frame this
2692 time, and leave the event in the queue for next time. */
2693 else
2695 #ifdef MULTI_FRAME
2696 Lisp_Object frame;
2697 Lisp_Object focus;
2699 frame = event->frame_or_window;
2700 if (CONSP (frame))
2701 frame = XCONS (frame)->car;
2702 else if (WINDOWP (frame))
2703 frame = WINDOW_FRAME (XWINDOW (frame));
2705 focus = FRAME_FOCUS_FRAME (XFRAME (frame));
2706 if (! NILP (focus))
2707 frame = focus;
2709 if (! EQ (frame, internal_last_event_frame)
2710 && XFRAME (frame) != selected_frame)
2711 obj = make_lispy_switch_frame (frame);
2712 internal_last_event_frame = frame;
2713 #endif /* MULTI_FRAME */
2715 /* If we didn't decide to make a switch-frame event, go ahead
2716 and build a real event from the queue entry. */
2718 if (NILP (obj))
2720 obj = make_lispy_event (event);
2721 #if defined (USE_X_TOOLKIT) || defined (HAVE_NTGUI)
2722 /* If this was a menu selection, then set the flag to inhibit
2723 writing to last_nonmenu_event. Don't do this if the event
2724 we're returning is (menu-bar), though; that indicates the
2725 beginning of the menu sequence, and we might as well leave
2726 that as the `event with parameters' for this selection. */
2727 if (event->kind == menu_bar_event
2728 && !(CONSP (obj) && EQ (XCONS (obj)->car, Qmenu_bar))
2729 && used_mouse_menu)
2730 *used_mouse_menu = 1;
2731 #endif
2733 /* Wipe out this event, to catch bugs. */
2734 event->kind = no_event;
2735 XVECTOR (kbd_buffer_frame_or_window)->contents[event - kbd_buffer] = Qnil;
2737 kbd_fetch_ptr = event + 1;
2741 #ifdef HAVE_MOUSE
2742 /* Try generating a mouse motion event. */
2743 else if (!NILP (do_mouse_tracking) && some_mouse_moved ())
2745 FRAME_PTR f = some_mouse_moved ();
2746 Lisp_Object bar_window;
2747 enum scroll_bar_part part;
2748 Lisp_Object x, y;
2749 unsigned long time;
2751 *kbp = current_kboard;
2752 /* Note that this uses F to determine which display to look at.
2753 If there is no valid info, it does not store anything
2754 so x remains nil. */
2755 x = Qnil;
2756 (*mouse_position_hook) (&f, 0, &bar_window, &part, &x, &y, &time);
2758 obj = Qnil;
2760 #ifdef MULTI_FRAME
2761 /* Decide if we should generate a switch-frame event. Don't
2762 generate switch-frame events for motion outside of all Emacs
2763 frames. */
2764 if (!NILP (x) && f)
2766 Lisp_Object frame;
2768 frame = FRAME_FOCUS_FRAME (f);
2769 if (NILP (frame))
2770 XSETFRAME (frame, f);
2772 if (! EQ (frame, internal_last_event_frame)
2773 && XFRAME (frame) != selected_frame)
2774 obj = make_lispy_switch_frame (frame);
2775 internal_last_event_frame = frame;
2777 #endif
2779 /* If we didn't decide to make a switch-frame event, go ahead and
2780 return a mouse-motion event. */
2781 if (!NILP (x) && NILP (obj))
2782 obj = make_lispy_movement (f, bar_window, part, x, y, time);
2784 #endif /* HAVE_MOUSE */
2785 else
2786 /* We were promised by the above while loop that there was
2787 something for us to read! */
2788 abort ();
2790 input_pending = readable_events (0);
2792 #ifdef MULTI_FRAME
2793 Vlast_event_frame = internal_last_event_frame;
2794 #endif
2796 return (obj);
2799 /* Process any events that are not user-visible,
2800 then return, without reading any user-visible events. */
2802 void
2803 swallow_events (do_display)
2804 int do_display;
2806 while (kbd_fetch_ptr != kbd_store_ptr)
2808 struct input_event *event;
2810 event = ((kbd_fetch_ptr < kbd_buffer + KBD_BUFFER_SIZE)
2811 ? kbd_fetch_ptr
2812 : kbd_buffer);
2814 last_event_timestamp = event->timestamp;
2816 /* These two kinds of events get special handling
2817 and don't actually appear to the command loop. */
2818 if (event->kind == selection_request_event)
2820 #ifdef HAVE_X11
2821 struct input_event copy;
2823 /* Remove it from the buffer before processing it,
2824 since otherwise swallow_events called recursively could see it
2825 and process it again. */
2826 copy = *event;
2827 kbd_fetch_ptr = event + 1;
2828 input_pending = readable_events (0);
2829 x_handle_selection_request (&copy);
2830 #else
2831 /* We're getting selection request events, but we don't have
2832 a window system. */
2833 abort ();
2834 #endif
2837 else if (event->kind == selection_clear_event)
2839 #ifdef HAVE_X11
2840 struct input_event copy;
2842 /* Remove it from the buffer before processing it, */
2843 copy = *event;
2845 kbd_fetch_ptr = event + 1;
2846 input_pending = readable_events (0);
2847 x_handle_selection_clear (&copy);
2848 #else
2849 /* We're getting selection request events, but we don't have
2850 a window system. */
2851 abort ();
2852 #endif
2854 else if (event->kind == timer_event)
2856 Lisp_Object tem, lisp_event;
2857 int was_locked = single_kboard;
2859 tem = get_keymap_1 (Vspecial_event_map, 0, 0);
2860 tem = get_keyelt (access_keymap (tem, Qtimer_event, 0, 0),
2862 lisp_event = Fcons (Qtimer_event,
2863 Fcons (Fcdr (event->frame_or_window), Qnil));
2864 kbd_fetch_ptr = event + 1;
2865 if (kbd_fetch_ptr == kbd_store_ptr)
2866 input_pending = 0;
2867 Fcommand_execute (tem, Qnil, Fvector (1, &lisp_event), Qt);
2868 if (do_display)
2869 redisplay_preserve_echo_area ();
2871 /* Resume allowing input from any kboard, if that was true before. */
2872 if (!was_locked)
2873 any_kboard_state ();
2875 else
2876 break;
2879 get_input_pending (&input_pending, 1);
2882 static EMACS_TIME timer_idleness_start_time;
2884 /* Record the start of when Emacs is idle,
2885 for the sake of running idle-time timers. */
2887 timer_start_idle ()
2889 Lisp_Object timers;
2891 /* If we are already in the idle state, do nothing. */
2892 if (! EMACS_TIME_NEG_P (timer_idleness_start_time))
2893 return;
2895 EMACS_GET_TIME (timer_idleness_start_time);
2897 /* Mark all idle-time timers as once again candidates for running. */
2898 for (timers = Vtimer_idle_list; CONSP (timers); timers = XCONS (timers)->cdr)
2900 Lisp_Object timer;
2902 timer = XCONS (timers)->car;
2904 if (!VECTORP (timer) || XVECTOR (timer)->size != 8)
2905 continue;
2906 XVECTOR (timer)->contents[0] = Qnil;
2910 /* Record that Emacs is no longer idle, so stop running idle-time timers. */
2912 timer_stop_idle ()
2914 EMACS_SET_SECS_USECS (timer_idleness_start_time, -1, -1);
2917 /* Check whether a timer has fired. To prevent larger problems we simply
2918 disregard elements that are not proper timers. Do not make a circular
2919 timer list for the time being.
2921 Returns the number of seconds to wait until the next timer fires. If a
2922 timer is triggering now, return zero seconds.
2923 If no timer is active, return -1 seconds.
2925 If a timer is ripe now, either queue a timer-event,
2926 or call the timer's handler function here if DO_IT_NOW is nonzero. */
2928 EMACS_TIME
2929 timer_check (do_it_now)
2930 int do_it_now;
2932 EMACS_TIME nexttime;
2933 EMACS_TIME now, idleness_now;
2934 Lisp_Object timers, idle_timers, chosen_timer;
2935 /* Nonzero if we generate some events. */
2936 int events_generated = 0;
2937 struct gcpro gcpro1, gcpro2, gcpro3;
2939 EMACS_SET_SECS (nexttime, -1);
2940 EMACS_SET_USECS (nexttime, -1);
2942 /* Always consider the ordinary timers. */
2943 timers = Vtimer_list;
2944 /* Consider the idle timers only if Emacs is idle. */
2945 if (! EMACS_TIME_NEG_P (timer_idleness_start_time))
2946 idle_timers = Vtimer_idle_list;
2947 else
2948 idle_timers = Qnil;
2949 chosen_timer = Qnil;
2950 GCPRO3 (timers, idle_timers, chosen_timer);
2952 if (CONSP (timers) || CONSP (idle_timers))
2954 EMACS_GET_TIME (now);
2955 if (! EMACS_TIME_NEG_P (timer_idleness_start_time))
2956 EMACS_SUB_TIME (idleness_now, now, timer_idleness_start_time);
2959 while (CONSP (timers) || CONSP (idle_timers))
2961 int triggertime = EMACS_SECS (now);
2962 Lisp_Object *vector;
2963 Lisp_Object timer, idle_timer;
2964 EMACS_TIME timer_time, idle_timer_time;
2965 EMACS_TIME difference, timer_difference, idle_timer_difference;
2967 /* Skip past invalid timers and timers already handled. */
2968 if (!NILP (timers))
2970 timer = XCONS (timers)->car;
2971 if (!VECTORP (timer) || XVECTOR (timer)->size != 8)
2973 timers = XCONS (timers)->cdr;
2974 continue;
2976 vector = XVECTOR (timer)->contents;
2978 if (!INTEGERP (vector[1]) || !INTEGERP (vector[2])
2979 || !INTEGERP (vector[3])
2980 || ! NILP (vector[0]))
2982 timers = XCONS (timers)->cdr;
2983 continue;
2986 if (!NILP (idle_timers))
2988 timer = XCONS (idle_timers)->car;
2989 if (!VECTORP (timer) || XVECTOR (timer)->size != 8)
2991 idle_timers = XCONS (idle_timers)->cdr;
2992 continue;
2994 vector = XVECTOR (timer)->contents;
2996 if (!INTEGERP (vector[1]) || !INTEGERP (vector[2])
2997 || !INTEGERP (vector[3])
2998 || ! NILP (vector[0]))
3000 idle_timers = XCONS (idle_timers)->cdr;
3001 continue;
3005 /* Set TIMER, TIMER_TIME and TIMER_DIFFERENCE
3006 based on the next ordinary timer.
3007 TIMER_DIFFERENCE is the distance in time from NOW to when
3008 this timer becomes ripe (negative if it's already ripe). */
3009 if (!NILP (timers))
3011 timer = XCONS (timers)->car;
3012 vector = XVECTOR (timer)->contents;
3013 EMACS_SET_SECS (timer_time,
3014 (XINT (vector[1]) << 16) | (XINT (vector[2])));
3015 EMACS_SET_USECS (timer_time, XINT (vector[3]));
3016 EMACS_SUB_TIME (timer_difference, timer_time, now);
3019 /* Set IDLE_TIMER, IDLE_TIMER_TIME and IDLE_TIMER_DIFFERENCE
3020 based on the next idle timer. */
3021 if (!NILP (idle_timers))
3023 idle_timer = XCONS (idle_timers)->car;
3024 vector = XVECTOR (idle_timer)->contents;
3025 EMACS_SET_SECS (idle_timer_time,
3026 (XINT (vector[1]) << 16) | (XINT (vector[2])));
3027 EMACS_SET_USECS (idle_timer_time, XINT (vector[3]));
3028 EMACS_SUB_TIME (idle_timer_difference, idle_timer_time, idleness_now);
3031 /* Decide which timer is the next timer,
3032 and set CHOSEN_TIMER, VECTOR and DIFFERENCE accordingly.
3033 Also step down the list where we found that timer. */
3035 if (! NILP (timers) && ! NILP (idle_timers))
3037 EMACS_TIME temp;
3038 EMACS_SUB_TIME (temp, timer_difference, idle_timer_difference);
3039 if (EMACS_TIME_NEG_P (temp))
3041 chosen_timer = timer;
3042 timers = XCONS (timers)->cdr;
3043 difference = timer_difference;
3045 else
3047 chosen_timer = idle_timer;
3048 idle_timers = XCONS (idle_timers)->cdr;
3049 difference = idle_timer_difference;
3052 else if (! NILP (timers))
3054 chosen_timer = timer;
3055 timers = XCONS (timers)->cdr;
3056 difference = timer_difference;
3058 else
3060 chosen_timer = idle_timer;
3061 idle_timers = XCONS (idle_timers)->cdr;
3062 difference = idle_timer_difference;
3064 vector = XVECTOR (chosen_timer)->contents;
3066 /* If timer is rupe, run it if it hasn't been run. */
3067 if (EMACS_TIME_NEG_P (difference)
3068 || (EMACS_SECS (difference) == 0
3069 && EMACS_USECS (difference) == 0))
3071 if (NILP (vector[0]))
3073 /* Mark the timer as triggered to prevent problems if the lisp
3074 code fails to reschedule it right. */
3075 vector[0] = Qt;
3077 /* Run the timer or queue a timer event. */
3078 if (do_it_now)
3080 Lisp_Object tem, event;
3081 int was_locked = single_kboard;
3083 tem = get_keymap_1 (Vspecial_event_map, 0, 0);
3084 tem = get_keyelt (access_keymap (tem, Qtimer_event, 0, 0),
3086 event = Fcons (Qtimer_event, Fcons (chosen_timer, Qnil));
3087 Fcommand_execute (tem, Qnil, Fvector (1, &event), Qt);
3089 /* Resume allowing input from any kboard, if that was true before. */
3090 if (!was_locked)
3091 any_kboard_state ();
3093 /* Since we have handled the event,
3094 we don't need to tell the caller to wake up and do it. */
3096 else
3098 /* Generate a timer event so the caller will handle it. */
3099 struct input_event event;
3101 event.kind = timer_event;
3102 event.modifiers = 0;
3103 event.x = event.y = Qnil;
3104 event.timestamp = triggertime;
3105 /* Store the timer in the frame slot. */
3106 event.frame_or_window
3107 = Fcons (Fselected_frame (), chosen_timer);
3108 kbd_buffer_store_event (&event);
3110 /* Tell caller to handle this event right away. */
3111 events_generated = 1;
3112 EMACS_SET_SECS (nexttime, 0);
3113 EMACS_SET_USECS (nexttime, 0);
3117 else
3118 /* When we encounter a timer that is still waiting,
3119 return the amount of time to wait before it is ripe. */
3121 UNGCPRO;
3122 /* But if we generated an event,
3123 tell the caller to handle it now. */
3124 if (events_generated)
3125 return nexttime;
3126 return difference;
3130 /* No timers are pending in the future. */
3131 /* Return 0 if we generated an event, and -1 if not. */
3132 UNGCPRO;
3133 return nexttime;
3136 /* Caches for modify_event_symbol. */
3137 static Lisp_Object accent_key_syms;
3138 static Lisp_Object func_key_syms;
3139 static Lisp_Object mouse_syms;
3141 /* This is a list of keysym codes for special "accent" characters.
3142 It parallels lispy_accent_keys. */
3144 static int lispy_accent_codes[] =
3146 #ifdef XK_dead_circumflex
3147 XK_dead_circumflex,
3148 #else
3150 #endif
3151 #ifdef XK_dead_grave
3152 XK_dead_grave,
3153 #else
3155 #endif
3156 #ifdef XK_dead_tilde
3157 XK_dead_tilde,
3158 #else
3160 #endif
3161 #ifdef XK_dead_diaeresis
3162 XK_dead_diaeresis,
3163 #else
3165 #endif
3166 #ifdef XK_dead_macron
3167 XK_dead_macron,
3168 #else
3170 #endif
3171 #ifdef XK_dead_degree
3172 XK_dead_degree,
3173 #else
3175 #endif
3176 #ifdef XK_dead_acute
3177 XK_dead_acute,
3178 #else
3180 #endif
3181 #ifdef XK_dead_cedilla
3182 XK_dead_cedilla,
3183 #else
3185 #endif
3186 #ifdef XK_dead_breve
3187 XK_dead_breve,
3188 #else
3190 #endif
3191 #ifdef XK_dead_ogonek
3192 XK_dead_ogonek,
3193 #else
3195 #endif
3196 #ifdef XK_dead_caron
3197 XK_dead_caron,
3198 #else
3200 #endif
3201 #ifdef XK_dead_doubleacute
3202 XK_dead_doubleacute,
3203 #else
3205 #endif
3206 #ifdef XK_dead_abovedot
3207 XK_dead_abovedot,
3208 #else
3210 #endif
3213 /* This is a list of Lisp names for special "accent" characters.
3214 It parallels lispy_accent_codes. */
3216 static char *lispy_accent_keys[] =
3218 "dead-circumflex",
3219 "dead-grave",
3220 "dead-tilde",
3221 "dead-diaeresis",
3222 "dead-macron",
3223 "dead-degree",
3224 "dead-acute",
3225 "dead-cedilla",
3226 "dead-breve",
3227 "dead-ogonek",
3228 "dead-caron",
3229 "dead-doubleacute",
3230 "dead-abovedot",
3233 #ifdef HAVE_NTGUI
3234 #define FUNCTION_KEY_OFFSET 0x0
3236 char *lispy_function_keys[] =
3238 0, /* 0 */
3240 0, /* VK_LBUTTON 0x01 */
3241 0, /* VK_RBUTTON 0x02 */
3242 "cancel", /* VK_CANCEL 0x03 */
3243 0, /* VK_MBUTTON 0x04 */
3245 0, 0, 0, /* 0x05 .. 0x07 */
3247 "backspace", /* VK_BACK 0x08 */
3248 "tab", /* VK_TAB 0x09 */
3250 0, 0, /* 0x0A .. 0x0B */
3252 "clear", /* VK_CLEAR 0x0C */
3253 "return", /* VK_RETURN 0x0D */
3255 0, 0, /* 0x0E .. 0x0F */
3257 "shift", /* VK_SHIFT 0x10 */
3258 "control", /* VK_CONTROL 0x11 */
3259 "menu", /* VK_MENU 0x12 */
3260 "pause", /* VK_PAUSE 0x13 */
3261 "capital", /* VK_CAPITAL 0x14 */
3263 0, 0, 0, 0, 0, 0, /* 0x15 .. 0x1A */
3265 0, /* VK_ESCAPE 0x1B */
3267 0, 0, 0, 0, /* 0x1C .. 0x1F */
3269 0, /* VK_SPACE 0x20 */
3270 "prior", /* VK_PRIOR 0x21 */
3271 "next", /* VK_NEXT 0x22 */
3272 "end", /* VK_END 0x23 */
3273 "home", /* VK_HOME 0x24 */
3274 "left", /* VK_LEFT 0x25 */
3275 "up", /* VK_UP 0x26 */
3276 "right", /* VK_RIGHT 0x27 */
3277 "down", /* VK_DOWN 0x28 */
3278 "select", /* VK_SELECT 0x29 */
3279 "print", /* VK_PRINT 0x2A */
3280 "execute", /* VK_EXECUTE 0x2B */
3281 "snapshot", /* VK_SNAPSHOT 0x2C */
3282 "insert", /* VK_INSERT 0x2D */
3283 "delete", /* VK_DELETE 0x2E */
3284 "help", /* VK_HELP 0x2F */
3286 /* VK_0 thru VK_9 are the same as ASCII '0' thru '9' (0x30 - 0x39) */
3288 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
3290 0, 0, 0, 0, 0, 0, 0, /* 0x3A .. 0x40 */
3292 /* VK_A thru VK_Z are the same as ASCII 'A' thru 'Z' (0x41 - 0x5A) */
3294 0, 0, 0, 0, 0, 0, 0, 0, 0,
3295 0, 0, 0, 0, 0, 0, 0, 0, 0,
3296 0, 0, 0, 0, 0, 0, 0, 0,
3298 "lwindow", /* VK_LWIN 0x5B */
3299 "rwindow", /* VK_RWIN 0x5C */
3300 "apps", /* VK_APPS 0x5D */
3302 0, 0, /* 0x5E .. 0x5F */
3304 "kp-0", /* VK_NUMPAD0 0x60 */
3305 "kp-1", /* VK_NUMPAD1 0x61 */
3306 "kp-2", /* VK_NUMPAD2 0x62 */
3307 "kp-3", /* VK_NUMPAD3 0x63 */
3308 "kp-4", /* VK_NUMPAD4 0x64 */
3309 "kp-5", /* VK_NUMPAD5 0x65 */
3310 "kp-6", /* VK_NUMPAD6 0x66 */
3311 "kp-7", /* VK_NUMPAD7 0x67 */
3312 "kp-8", /* VK_NUMPAD8 0x68 */
3313 "kp-9", /* VK_NUMPAD9 0x69 */
3314 "kp-multiply", /* VK_MULTIPLY 0x6A */
3315 "kp-add", /* VK_ADD 0x6B */
3316 "kp-separator", /* VK_SEPARATOR 0x6C */
3317 "kp-subtract", /* VK_SUBTRACT 0x6D */
3318 "kp-decimal", /* VK_DECIMAL 0x6E */
3319 "kp-divide", /* VK_DIVIDE 0x6F */
3320 "f1", /* VK_F1 0x70 */
3321 "f2", /* VK_F2 0x71 */
3322 "f3", /* VK_F3 0x72 */
3323 "f4", /* VK_F4 0x73 */
3324 "f5", /* VK_F5 0x74 */
3325 "f6", /* VK_F6 0x75 */
3326 "f7", /* VK_F7 0x76 */
3327 "f8", /* VK_F8 0x77 */
3328 "f9", /* VK_F9 0x78 */
3329 "f10", /* VK_F10 0x79 */
3330 "f11", /* VK_F11 0x7A */
3331 "f12", /* VK_F12 0x7B */
3332 "f13", /* VK_F13 0x7C */
3333 "f14", /* VK_F14 0x7D */
3334 "f15", /* VK_F15 0x7E */
3335 "f16", /* VK_F16 0x7F */
3336 "f17", /* VK_F17 0x80 */
3337 "f18", /* VK_F18 0x81 */
3338 "f19", /* VK_F19 0x82 */
3339 "f20", /* VK_F20 0x83 */
3340 "f21", /* VK_F21 0x84 */
3341 "f22", /* VK_F22 0x85 */
3342 "f23", /* VK_F23 0x86 */
3343 "f24", /* VK_F24 0x87 */
3345 0, 0, 0, 0, /* 0x88 .. 0x8B */
3346 0, 0, 0, 0, /* 0x8C .. 0x8F */
3348 "kp-numlock", /* VK_NUMLOCK 0x90 */
3349 "scroll", /* VK_SCROLL 0x91 */
3351 "kp-space", /* VK_NUMPAD_CLEAR 0x92 */
3352 "kp-enter", /* VK_NUMPAD_ENTER 0x93 */
3353 "kp-prior", /* VK_NUMPAD_PRIOR 0x94 */
3354 "kp-next", /* VK_NUMPAD_NEXT 0x95 */
3355 "kp-end", /* VK_NUMPAD_END 0x96 */
3356 "kp-home", /* VK_NUMPAD_HOME 0x97 */
3357 "kp-left", /* VK_NUMPAD_LEFT 0x98 */
3358 "kp-up", /* VK_NUMPAD_UP 0x99 */
3359 "kp-right", /* VK_NUMPAD_RIGHT 0x9A */
3360 "kp-down", /* VK_NUMPAD_DOWN 0x9B */
3361 "kp-insert", /* VK_NUMPAD_INSERT 0x9C */
3362 "kp-delete", /* VK_NUMPAD_DELETE 0x9D */
3364 0, 0, /* 0x9E .. 0x9F */
3367 * VK_L* & VK_R* - left and right Alt, Ctrl and Shift virtual keys.
3368 * Used only as parameters to GetAsyncKeyState() and GetKeyState().
3369 * No other API or message will distinguish left and right keys this way.
3371 /* 0xA0 .. 0xEF */
3373 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
3374 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
3375 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
3376 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
3377 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
3379 /* 0xF0 .. 0xF5 */
3381 0, 0, 0, 0, 0, 0,
3383 "attn", /* VK_ATTN 0xF6 */
3384 "crsel", /* VK_CRSEL 0xF7 */
3385 "exsel", /* VK_EXSEL 0xF8 */
3386 "ereof", /* VK_EREOF 0xF9 */
3387 "play", /* VK_PLAY 0xFA */
3388 "zoom", /* VK_ZOOM 0xFB */
3389 "noname", /* VK_NONAME 0xFC */
3390 "pa1", /* VK_PA1 0xFD */
3391 "oem_clear", /* VK_OEM_CLEAR 0xFE */
3394 #else
3396 #define FUNCTION_KEY_OFFSET 0xff00
3398 /* You'll notice that this table is arranged to be conveniently
3399 indexed by X Windows keysym values. */
3400 static char *lispy_function_keys[] =
3402 /* X Keysym value */
3404 0, 0, 0, 0, 0, 0, 0, 0, /* 0xff00 */
3405 "backspace",
3406 "tab",
3407 "linefeed",
3408 "clear",
3410 "return",
3411 0, 0,
3412 0, 0, 0, /* 0xff10 */
3413 "pause",
3414 0, 0, 0, 0, 0, 0, 0,
3415 "escape",
3416 0, 0, 0, 0,
3417 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, /* 0xff20...2f */
3418 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, /* 0xff30...3f */
3419 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, /* 0xff40...4f */
3421 "home", /* 0xff50 */ /* IsCursorKey */
3422 "left",
3423 "up",
3424 "right",
3425 "down",
3426 "prior",
3427 "next",
3428 "end",
3429 "begin",
3430 0, /* 0xff59 */
3431 0, 0, 0, 0, 0, 0,
3432 "select", /* 0xff60 */ /* IsMiscFunctionKey */
3433 "print",
3434 "execute",
3435 "insert",
3436 0, /* 0xff64 */
3437 "undo",
3438 "redo",
3439 "menu",
3440 "find",
3441 "cancel",
3442 "help",
3443 "break", /* 0xff6b */
3445 0, 0, 0, 0, 0, 0, 0, 0, "backtab", 0,
3446 0, /* 0xff76 */
3447 0, 0, 0, 0, 0, 0, 0, 0, "kp-numlock", /* 0xff7f */
3448 "kp-space", /* 0xff80 */ /* IsKeypadKey */
3449 0, 0, 0, 0, 0, 0, 0, 0,
3450 "kp-tab", /* 0xff89 */
3451 0, 0, 0,
3452 "kp-enter", /* 0xff8d */
3453 0, 0, 0,
3454 "kp-f1", /* 0xff91 */
3455 "kp-f2",
3456 "kp-f3",
3457 "kp-f4",
3458 "kp-home", /* 0xff95 */
3459 "kp-left",
3460 "kp-up",
3461 "kp-right",
3462 "kp-down",
3463 "kp-prior", /* kp-page-up */
3464 "kp-next", /* kp-page-down */
3465 "kp-end",
3466 "kp-begin",
3467 "kp-insert",
3468 "kp-delete",
3469 0, /* 0xffa0 */
3470 0, 0, 0, 0, 0, 0, 0, 0, 0,
3471 "kp-multiply", /* 0xffaa */
3472 "kp-add",
3473 "kp-separator",
3474 "kp-subtract",
3475 "kp-decimal",
3476 "kp-divide", /* 0xffaf */
3477 "kp-0", /* 0xffb0 */
3478 "kp-1", "kp-2", "kp-3", "kp-4", "kp-5", "kp-6", "kp-7", "kp-8", "kp-9",
3479 0, /* 0xffba */
3480 0, 0,
3481 "kp-equal", /* 0xffbd */
3482 "f1", /* 0xffbe */ /* IsFunctionKey */
3483 "f2",
3484 "f3", "f4", "f5", "f6", "f7", "f8", "f9", "f10", /* 0xffc0 */
3485 "f11", "f12", "f13", "f14", "f15", "f16", "f17", "f18",
3486 "f19", "f20", "f21", "f22", "f23", "f24", "f25", "f26", /* 0xffd0 */
3487 "f27", "f28", "f29", "f30", "f31", "f32", "f33", "f34",
3488 "f35", 0, 0, 0, 0, 0, 0, 0, /* 0xffe0 */
3489 0, 0, 0, 0, 0, 0, 0, 0,
3490 0, 0, 0, 0, 0, 0, 0, 0, /* 0xfff0 */
3491 0, 0, 0, 0, 0, 0, 0, "delete"
3494 #endif /* HAVE_NTGUI */
3496 static char *lispy_mouse_names[] =
3498 "mouse-1", "mouse-2", "mouse-3", "mouse-4", "mouse-5"
3501 /* Scroll bar parts. */
3502 Lisp_Object Qabove_handle, Qhandle, Qbelow_handle;
3504 /* An array of scroll bar parts, indexed by an enum scroll_bar_part value. */
3505 Lisp_Object *scroll_bar_parts[] = {
3506 &Qabove_handle, &Qhandle, &Qbelow_handle
3510 /* A vector, indexed by button number, giving the down-going location
3511 of currently depressed buttons, both scroll bar and non-scroll bar.
3513 The elements have the form
3514 (BUTTON-NUMBER MODIFIER-MASK . REST)
3515 where REST is the cdr of a position as it would be reported in the event.
3517 The make_lispy_event function stores positions here to tell the
3518 difference between click and drag events, and to store the starting
3519 location to be included in drag events. */
3521 static Lisp_Object button_down_location;
3523 /* Information about the most recent up-going button event: Which
3524 button, what location, and what time. */
3526 static int last_mouse_button;
3527 static int last_mouse_x;
3528 static int last_mouse_y;
3529 static unsigned long button_down_time;
3531 /* The maximum time between clicks to make a double-click,
3532 or Qnil to disable double-click detection,
3533 or Qt for no time limit. */
3534 Lisp_Object Vdouble_click_time;
3536 /* The number of clicks in this multiple-click. */
3538 int double_click_count;
3540 /* Given a struct input_event, build the lisp event which represents
3541 it. If EVENT is 0, build a mouse movement event from the mouse
3542 movement buffer, which should have a movement event in it.
3544 Note that events must be passed to this function in the order they
3545 are received; this function stores the location of button presses
3546 in order to build drag events when the button is released. */
3548 static Lisp_Object
3549 make_lispy_event (event)
3550 struct input_event *event;
3552 int i;
3554 switch (SWITCH_ENUM_CAST (event->kind))
3556 /* A simple keystroke. */
3557 case ascii_keystroke:
3559 Lisp_Object lispy_c;
3560 int c = event->code & 0377;
3561 /* Turn ASCII characters into control characters
3562 when proper. */
3563 if (event->modifiers & ctrl_modifier)
3564 c = make_ctrl_char (c);
3566 /* Add in the other modifier bits. We took care of ctrl_modifier
3567 just above, and the shift key was taken care of by the X code,
3568 and applied to control characters by make_ctrl_char. */
3569 c |= (event->modifiers
3570 & (meta_modifier | alt_modifier
3571 | hyper_modifier | super_modifier));
3572 button_down_time = 0;
3573 XSETFASTINT (lispy_c, c);
3574 return lispy_c;
3577 /* A function key. The symbol may need to have modifier prefixes
3578 tacked onto it. */
3579 case non_ascii_keystroke:
3580 button_down_time = 0;
3582 for (i = 0; i < sizeof (lispy_accent_codes) / sizeof (int); i++)
3583 if (event->code == lispy_accent_codes[i])
3584 return modify_event_symbol (i,
3585 event->modifiers,
3586 Qfunction_key, Qnil,
3587 lispy_accent_keys, &accent_key_syms,
3588 (sizeof (lispy_accent_keys)
3589 / sizeof (lispy_accent_keys[0])));
3591 /* Handle system-specific keysyms. */
3592 if (event->code & (1 << 28))
3594 /* We need to use an alist rather than a vector as the cache
3595 since we can't make a vector long enuf. */
3596 if (NILP (current_kboard->system_key_syms))
3597 current_kboard->system_key_syms = Fcons (Qnil, Qnil);
3598 return modify_event_symbol (event->code,
3599 event->modifiers,
3600 Qfunction_key,
3601 current_kboard->Vsystem_key_alist,
3602 0, &current_kboard->system_key_syms,
3603 (unsigned)-1);
3606 return modify_event_symbol (event->code - FUNCTION_KEY_OFFSET,
3607 event->modifiers,
3608 Qfunction_key, Qnil,
3609 lispy_function_keys, &func_key_syms,
3610 (sizeof (lispy_function_keys)
3611 / sizeof (lispy_function_keys[0])));
3612 break;
3614 case timer_event:
3615 return Fcons (Qtimer_event, Fcons (Fcdr (event->frame_or_window), Qnil));
3617 #ifdef HAVE_MOUSE
3618 /* A mouse click. Figure out where it is, decide whether it's
3619 a press, click or drag, and build the appropriate structure. */
3620 case mouse_click:
3621 case scroll_bar_click:
3623 int button = event->code;
3624 int is_double;
3625 Lisp_Object position;
3626 Lisp_Object *start_pos_ptr;
3627 Lisp_Object start_pos;
3629 if (button < 0 || button >= NUM_MOUSE_BUTTONS)
3630 abort ();
3632 /* Build the position as appropriate for this mouse click. */
3633 if (event->kind == mouse_click)
3635 int part;
3636 FRAME_PTR f = XFRAME (event->frame_or_window);
3637 Lisp_Object window;
3638 Lisp_Object posn;
3639 int row, column;
3641 /* Ignore mouse events that were made on frame that
3642 have been deleted. */
3643 if (! FRAME_LIVE_P (f))
3644 return Qnil;
3646 pixel_to_glyph_coords (f, XINT (event->x), XINT (event->y),
3647 &column, &row, NULL, 1);
3649 #ifndef USE_X_TOOLKIT
3650 /* In the non-toolkit version, clicks on the menu bar
3651 are ordinary button events in the event buffer.
3652 Distinguish them, and invoke the menu.
3654 (In the toolkit version, the toolkit handles the menu bar
3655 and Emacs doesn't know about it until after the user
3656 makes a selection.) */
3657 if (row >= 0 && row < FRAME_MENU_BAR_LINES (f)
3658 && (event->modifiers & down_modifier))
3660 Lisp_Object items, item;
3661 int hpos;
3662 int i;
3664 #if 0
3665 /* Activate the menu bar on the down event. If the
3666 up event comes in before the menu code can deal with it,
3667 just ignore it. */
3668 if (! (event->modifiers & down_modifier))
3669 return Qnil;
3670 #endif
3672 item = Qnil;
3673 items = FRAME_MENU_BAR_ITEMS (f);
3674 for (i = 0; i < XVECTOR (items)->size; i += 3)
3676 Lisp_Object pos, string;
3677 string = XVECTOR (items)->contents[i + 1];
3678 pos = XVECTOR (items)->contents[i + 2];
3679 if (NILP (string))
3680 break;
3681 if (column >= XINT (pos)
3682 && column < XINT (pos) + XSTRING (string)->size)
3684 item = XVECTOR (items)->contents[i];
3685 break;
3689 position
3690 = Fcons (event->frame_or_window,
3691 Fcons (Qmenu_bar,
3692 Fcons (Fcons (event->x, event->y),
3693 Fcons (make_number (event->timestamp),
3694 Qnil))));
3696 return Fcons (item, Fcons (position, Qnil));
3698 #endif /* not USE_X_TOOLKIT */
3700 window = window_from_coordinates (f, column, row, &part);
3702 if (!WINDOWP (window))
3704 window = event->frame_or_window;
3705 posn = Qnil;
3707 else
3709 int pixcolumn, pixrow;
3710 column -= XINT (XWINDOW (window)->left);
3711 row -= XINT (XWINDOW (window)->top);
3712 glyph_to_pixel_coords (f, column, row, &pixcolumn, &pixrow);
3713 XSETINT (event->x, pixcolumn);
3714 XSETINT (event->y, pixrow);
3716 if (part == 1)
3717 posn = Qmode_line;
3718 else if (part == 2)
3719 posn = Qvertical_line;
3720 else
3721 XSETINT (posn,
3722 buffer_posn_from_coords (XWINDOW (window),
3723 column, row));
3726 position
3727 = Fcons (window,
3728 Fcons (posn,
3729 Fcons (Fcons (event->x, event->y),
3730 Fcons (make_number (event->timestamp),
3731 Qnil))));
3733 else
3735 Lisp_Object window;
3736 Lisp_Object portion_whole;
3737 Lisp_Object part;
3739 window = event->frame_or_window;
3740 portion_whole = Fcons (event->x, event->y);
3741 part = *scroll_bar_parts[(int) event->part];
3743 position =
3744 Fcons (window,
3745 Fcons (Qvertical_scroll_bar,
3746 Fcons (portion_whole,
3747 Fcons (make_number (event->timestamp),
3748 Fcons (part, Qnil)))));
3751 start_pos_ptr = &XVECTOR (button_down_location)->contents[button];
3753 start_pos = *start_pos_ptr;
3754 *start_pos_ptr = Qnil;
3756 is_double = (button == last_mouse_button
3757 && XINT (event->x) == last_mouse_x
3758 && XINT (event->y) == last_mouse_y
3759 && button_down_time != 0
3760 && (EQ (Vdouble_click_time, Qt)
3761 || (INTEGERP (Vdouble_click_time)
3762 && ((int)(event->timestamp - button_down_time)
3763 < XINT (Vdouble_click_time)))));
3764 last_mouse_button = button;
3765 last_mouse_x = XINT (event->x);
3766 last_mouse_y = XINT (event->y);
3768 /* If this is a button press, squirrel away the location, so
3769 we can decide later whether it was a click or a drag. */
3770 if (event->modifiers & down_modifier)
3772 if (is_double)
3774 double_click_count++;
3775 event->modifiers |= ((double_click_count > 2)
3776 ? triple_modifier
3777 : double_modifier);
3779 else
3780 double_click_count = 1;
3781 button_down_time = event->timestamp;
3782 *start_pos_ptr = Fcopy_alist (position);
3785 /* Now we're releasing a button - check the co-ordinates to
3786 see if this was a click or a drag. */
3787 else if (event->modifiers & up_modifier)
3789 /* If we did not see a down before this up,
3790 ignore the up. Probably this happened because
3791 the down event chose a menu item.
3792 It would be an annoyance to treat the release
3793 of the button that chose the menu item
3794 as a separate event. */
3796 if (!CONSP (start_pos))
3797 return Qnil;
3799 event->modifiers &= ~up_modifier;
3800 #if 0 /* Formerly we treated an up with no down as a click event. */
3801 if (!CONSP (start_pos))
3802 event->modifiers |= click_modifier;
3803 else
3804 #endif
3806 /* The third element of every position should be the (x,y)
3807 pair. */
3808 Lisp_Object down;
3810 down = Fnth (make_number (2), start_pos);
3811 if (EQ (event->x, XCONS (down)->car)
3812 && EQ (event->y, XCONS (down)->cdr))
3814 event->modifiers |= click_modifier;
3816 else
3818 button_down_time = 0;
3819 event->modifiers |= drag_modifier;
3821 /* Don't check is_double; treat this as multiple
3822 if the down-event was multiple. */
3823 if (double_click_count > 1)
3824 event->modifiers |= ((double_click_count > 2)
3825 ? triple_modifier
3826 : double_modifier);
3829 else
3830 /* Every mouse event should either have the down_modifier or
3831 the up_modifier set. */
3832 abort ();
3835 /* Get the symbol we should use for the mouse click. */
3836 Lisp_Object head;
3838 head = modify_event_symbol (button,
3839 event->modifiers,
3840 Qmouse_click, Qnil,
3841 lispy_mouse_names, &mouse_syms,
3842 (sizeof (lispy_mouse_names)
3843 / sizeof (lispy_mouse_names[0])));
3844 if (event->modifiers & drag_modifier)
3845 return Fcons (head,
3846 Fcons (start_pos,
3847 Fcons (position,
3848 Qnil)));
3849 else if (event->modifiers & (double_modifier | triple_modifier))
3850 return Fcons (head,
3851 Fcons (position,
3852 Fcons (make_number (double_click_count),
3853 Qnil)));
3854 else
3855 return Fcons (head,
3856 Fcons (position,
3857 Qnil));
3860 #endif /* HAVE_MOUSE */
3862 #if defined (USE_X_TOOLKIT) || defined (HAVE_NTGUI)
3863 case menu_bar_event:
3864 /* The event value is in the cdr of the frame_or_window slot. */
3865 if (!CONSP (event->frame_or_window))
3866 abort ();
3867 return XCONS (event->frame_or_window)->cdr;
3868 #endif
3870 /* The 'kind' field of the event is something we don't recognize. */
3871 default:
3872 abort ();
3876 #ifdef HAVE_MOUSE
3878 static Lisp_Object
3879 make_lispy_movement (frame, bar_window, part, x, y, time)
3880 FRAME_PTR frame;
3881 Lisp_Object bar_window;
3882 enum scroll_bar_part part;
3883 Lisp_Object x, y;
3884 unsigned long time;
3886 #ifdef MULTI_FRAME
3887 /* Is it a scroll bar movement? */
3888 if (frame && ! NILP (bar_window))
3890 Lisp_Object part_sym;
3892 part_sym = *scroll_bar_parts[(int) part];
3893 return Fcons (Qscroll_bar_movement,
3894 (Fcons (Fcons (bar_window,
3895 Fcons (Qvertical_scroll_bar,
3896 Fcons (Fcons (x, y),
3897 Fcons (make_number (time),
3898 Fcons (part_sym,
3899 Qnil))))),
3900 Qnil)));
3903 /* Or is it an ordinary mouse movement? */
3904 else
3905 #endif /* MULTI_FRAME */
3907 int area;
3908 Lisp_Object window;
3909 Lisp_Object posn;
3910 int column, row;
3912 #ifdef MULTI_FRAME
3913 if (frame)
3914 #else
3915 if (1)
3916 #endif
3918 /* It's in a frame; which window on that frame? */
3919 pixel_to_glyph_coords (frame, XINT (x), XINT (y), &column, &row,
3920 NULL, 1);
3921 window = window_from_coordinates (frame, column, row, &area);
3923 else
3924 window = Qnil;
3926 if (WINDOWP (window))
3928 int pixcolumn, pixrow;
3929 column -= XINT (XWINDOW (window)->left);
3930 row -= XINT (XWINDOW (window)->top);
3931 glyph_to_pixel_coords (frame, column, row, &pixcolumn, &pixrow);
3932 XSETINT (x, pixcolumn);
3933 XSETINT (y, pixrow);
3935 if (area == 1)
3936 posn = Qmode_line;
3937 else if (area == 2)
3938 posn = Qvertical_line;
3939 else
3940 XSETINT (posn,
3941 buffer_posn_from_coords (XWINDOW (window), column, row));
3943 #ifdef MULTI_FRAME
3944 else if (frame != 0)
3946 XSETFRAME (window, frame);
3947 posn = Qnil;
3949 #endif
3950 else
3952 window = Qnil;
3953 posn = Qnil;
3954 XSETFASTINT (x, 0);
3955 XSETFASTINT (y, 0);
3958 return Fcons (Qmouse_movement,
3959 Fcons (Fcons (window,
3960 Fcons (posn,
3961 Fcons (Fcons (x, y),
3962 Fcons (make_number (time),
3963 Qnil)))),
3964 Qnil));
3968 #endif /* HAVE_MOUSE */
3970 /* Construct a switch frame event. */
3971 static Lisp_Object
3972 make_lispy_switch_frame (frame)
3973 Lisp_Object frame;
3975 return Fcons (Qswitch_frame, Fcons (frame, Qnil));
3978 /* Manipulating modifiers. */
3980 /* Parse the name of SYMBOL, and return the set of modifiers it contains.
3982 If MODIFIER_END is non-zero, set *MODIFIER_END to the position in
3983 SYMBOL's name of the end of the modifiers; the string from this
3984 position is the unmodified symbol name.
3986 This doesn't use any caches. */
3988 static int
3989 parse_modifiers_uncached (symbol, modifier_end)
3990 Lisp_Object symbol;
3991 int *modifier_end;
3993 struct Lisp_String *name;
3994 int i;
3995 int modifiers;
3997 CHECK_SYMBOL (symbol, 1);
3999 modifiers = 0;
4000 name = XSYMBOL (symbol)->name;
4002 for (i = 0; i+2 <= name->size; )
4004 int this_mod_end = 0;
4005 int this_mod = 0;
4007 /* See if the name continues with a modifier word.
4008 Check that the word appears, but don't check what follows it.
4009 Set this_mod and this_mod_end to record what we find. */
4011 switch (name->data[i])
4013 #define SINGLE_LETTER_MOD(BIT) \
4014 (this_mod_end = i + 1, this_mod = BIT)
4016 case 'A':
4017 SINGLE_LETTER_MOD (alt_modifier);
4018 break;
4020 case 'C':
4021 SINGLE_LETTER_MOD (ctrl_modifier);
4022 break;
4024 case 'H':
4025 SINGLE_LETTER_MOD (hyper_modifier);
4026 break;
4028 case 'M':
4029 SINGLE_LETTER_MOD (meta_modifier);
4030 break;
4032 case 'S':
4033 SINGLE_LETTER_MOD (shift_modifier);
4034 break;
4036 case 's':
4037 SINGLE_LETTER_MOD (super_modifier);
4038 break;
4040 #undef SINGLE_LETTER_MOD
4043 /* If we found no modifier, stop looking for them. */
4044 if (this_mod_end == 0)
4045 break;
4047 /* Check there is a dash after the modifier, so that it
4048 really is a modifier. */
4049 if (this_mod_end >= name->size || name->data[this_mod_end] != '-')
4050 break;
4052 /* This modifier is real; look for another. */
4053 modifiers |= this_mod;
4054 i = this_mod_end + 1;
4057 /* Should we include the `click' modifier? */
4058 if (! (modifiers & (down_modifier | drag_modifier
4059 | double_modifier | triple_modifier))
4060 && i + 7 == name->size
4061 && strncmp (name->data + i, "mouse-", 6) == 0
4062 && ('0' <= name->data[i + 6] && name->data[i + 6] <= '9'))
4063 modifiers |= click_modifier;
4065 if (modifier_end)
4066 *modifier_end = i;
4068 return modifiers;
4071 /* Return a symbol whose name is the modifier prefixes for MODIFIERS
4072 prepended to the string BASE[0..BASE_LEN-1].
4073 This doesn't use any caches. */
4074 static Lisp_Object
4075 apply_modifiers_uncached (modifiers, base, base_len)
4076 int modifiers;
4077 char *base;
4078 int base_len;
4080 /* Since BASE could contain nulls, we can't use intern here; we have
4081 to use Fintern, which expects a genuine Lisp_String, and keeps a
4082 reference to it. */
4083 char *new_mods =
4084 (char *) alloca (sizeof ("A-C-H-M-S-s-down-drag-double-triple-"));
4085 int mod_len;
4088 char *p = new_mods;
4090 /* Only the event queue may use the `up' modifier; it should always
4091 be turned into a click or drag event before presented to lisp code. */
4092 if (modifiers & up_modifier)
4093 abort ();
4095 if (modifiers & alt_modifier) { *p++ = 'A'; *p++ = '-'; }
4096 if (modifiers & ctrl_modifier) { *p++ = 'C'; *p++ = '-'; }
4097 if (modifiers & hyper_modifier) { *p++ = 'H'; *p++ = '-'; }
4098 if (modifiers & meta_modifier) { *p++ = 'M'; *p++ = '-'; }
4099 if (modifiers & shift_modifier) { *p++ = 'S'; *p++ = '-'; }
4100 if (modifiers & super_modifier) { *p++ = 's'; *p++ = '-'; }
4101 if (modifiers & double_modifier) { strcpy (p, "double-"); p += 7; }
4102 if (modifiers & triple_modifier) { strcpy (p, "triple-"); p += 7; }
4103 if (modifiers & down_modifier) { strcpy (p, "down-"); p += 5; }
4104 if (modifiers & drag_modifier) { strcpy (p, "drag-"); p += 5; }
4105 /* The click modifier is denoted by the absence of other modifiers. */
4107 *p = '\0';
4109 mod_len = p - new_mods;
4113 Lisp_Object new_name;
4115 new_name = make_uninit_string (mod_len + base_len);
4116 bcopy (new_mods, XSTRING (new_name)->data, mod_len);
4117 bcopy (base, XSTRING (new_name)->data + mod_len, base_len);
4119 return Fintern (new_name, Qnil);
4124 static char *modifier_names[] =
4126 "up", "down", "drag", "click", "double", "triple", 0, 0,
4127 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
4128 0, 0, "alt", "super", "hyper", "shift", "control", "meta"
4130 #define NUM_MOD_NAMES (sizeof (modifier_names) / sizeof (modifier_names[0]))
4132 static Lisp_Object modifier_symbols;
4134 /* Return the list of modifier symbols corresponding to the mask MODIFIERS. */
4135 static Lisp_Object
4136 lispy_modifier_list (modifiers)
4137 int modifiers;
4139 Lisp_Object modifier_list;
4140 int i;
4142 modifier_list = Qnil;
4143 for (i = 0; (1<<i) <= modifiers && i < NUM_MOD_NAMES; i++)
4144 if (modifiers & (1<<i))
4145 modifier_list = Fcons (XVECTOR (modifier_symbols)->contents[i],
4146 modifier_list);
4148 return modifier_list;
4152 /* Parse the modifiers on SYMBOL, and return a list like (UNMODIFIED MASK),
4153 where UNMODIFIED is the unmodified form of SYMBOL,
4154 MASK is the set of modifiers present in SYMBOL's name.
4155 This is similar to parse_modifiers_uncached, but uses the cache in
4156 SYMBOL's Qevent_symbol_element_mask property, and maintains the
4157 Qevent_symbol_elements property. */
4159 static Lisp_Object
4160 parse_modifiers (symbol)
4161 Lisp_Object symbol;
4163 Lisp_Object elements;
4165 elements = Fget (symbol, Qevent_symbol_element_mask);
4166 if (CONSP (elements))
4167 return elements;
4168 else
4170 int end;
4171 int modifiers = parse_modifiers_uncached (symbol, &end);
4172 Lisp_Object unmodified;
4173 Lisp_Object mask;
4175 unmodified = Fintern (make_string (XSYMBOL (symbol)->name->data + end,
4176 XSYMBOL (symbol)->name->size - end),
4177 Qnil);
4179 if (modifiers & ~(((EMACS_INT)1 << VALBITS) - 1))
4180 abort ();
4181 XSETFASTINT (mask, modifiers);
4182 elements = Fcons (unmodified, Fcons (mask, Qnil));
4184 /* Cache the parsing results on SYMBOL. */
4185 Fput (symbol, Qevent_symbol_element_mask,
4186 elements);
4187 Fput (symbol, Qevent_symbol_elements,
4188 Fcons (unmodified, lispy_modifier_list (modifiers)));
4190 /* Since we know that SYMBOL is modifiers applied to unmodified,
4191 it would be nice to put that in unmodified's cache.
4192 But we can't, since we're not sure that parse_modifiers is
4193 canonical. */
4195 return elements;
4199 /* Apply the modifiers MODIFIERS to the symbol BASE.
4200 BASE must be unmodified.
4202 This is like apply_modifiers_uncached, but uses BASE's
4203 Qmodifier_cache property, if present. It also builds
4204 Qevent_symbol_elements properties, since it has that info anyway.
4206 apply_modifiers copies the value of BASE's Qevent_kind property to
4207 the modified symbol. */
4208 static Lisp_Object
4209 apply_modifiers (modifiers, base)
4210 int modifiers;
4211 Lisp_Object base;
4213 Lisp_Object cache, index, entry, new_symbol;
4215 /* Mask out upper bits. We don't know where this value's been. */
4216 modifiers &= ((EMACS_INT)1 << VALBITS) - 1;
4218 /* The click modifier never figures into cache indices. */
4219 cache = Fget (base, Qmodifier_cache);
4220 XSETFASTINT (index, (modifiers & ~click_modifier));
4221 entry = assq_no_quit (index, cache);
4223 if (CONSP (entry))
4224 new_symbol = XCONS (entry)->cdr;
4225 else
4227 /* We have to create the symbol ourselves. */
4228 new_symbol = apply_modifiers_uncached (modifiers,
4229 XSYMBOL (base)->name->data,
4230 XSYMBOL (base)->name->size);
4232 /* Add the new symbol to the base's cache. */
4233 entry = Fcons (index, new_symbol);
4234 Fput (base, Qmodifier_cache, Fcons (entry, cache));
4236 /* We have the parsing info now for free, so add it to the caches. */
4237 XSETFASTINT (index, modifiers);
4238 Fput (new_symbol, Qevent_symbol_element_mask,
4239 Fcons (base, Fcons (index, Qnil)));
4240 Fput (new_symbol, Qevent_symbol_elements,
4241 Fcons (base, lispy_modifier_list (modifiers)));
4244 /* Make sure this symbol is of the same kind as BASE.
4246 You'd think we could just set this once and for all when we
4247 intern the symbol above, but reorder_modifiers may call us when
4248 BASE's property isn't set right; we can't assume that just
4249 because it has a Qmodifier_cache property it must have its
4250 Qevent_kind set right as well. */
4251 if (NILP (Fget (new_symbol, Qevent_kind)))
4253 Lisp_Object kind;
4255 kind = Fget (base, Qevent_kind);
4256 if (! NILP (kind))
4257 Fput (new_symbol, Qevent_kind, kind);
4260 return new_symbol;
4264 /* Given a symbol whose name begins with modifiers ("C-", "M-", etc),
4265 return a symbol with the modifiers placed in the canonical order.
4266 Canonical order is alphabetical, except for down and drag, which
4267 always come last. The 'click' modifier is never written out.
4269 Fdefine_key calls this to make sure that (for example) C-M-foo
4270 and M-C-foo end up being equivalent in the keymap. */
4272 Lisp_Object
4273 reorder_modifiers (symbol)
4274 Lisp_Object symbol;
4276 /* It's hopefully okay to write the code this way, since everything
4277 will soon be in caches, and no consing will be done at all. */
4278 Lisp_Object parsed;
4280 parsed = parse_modifiers (symbol);
4281 return apply_modifiers ((int) XINT (XCONS (XCONS (parsed)->cdr)->car),
4282 XCONS (parsed)->car);
4286 /* For handling events, we often want to produce a symbol whose name
4287 is a series of modifier key prefixes ("M-", "C-", etcetera) attached
4288 to some base, like the name of a function key or mouse button.
4289 modify_event_symbol produces symbols of this sort.
4291 NAME_TABLE should point to an array of strings, such that NAME_TABLE[i]
4292 is the name of the i'th symbol. TABLE_SIZE is the number of elements
4293 in the table.
4295 Alternatively, NAME_ALIST is an alist mapping codes into symbol names.
4296 NAME_ALIST is used if it is non-nil; otherwise NAME_TABLE is used.
4298 SYMBOL_TABLE should be a pointer to a Lisp_Object whose value will
4299 persist between calls to modify_event_symbol that it can use to
4300 store a cache of the symbols it's generated for this NAME_TABLE
4301 before. The object stored there may be a vector or an alist.
4303 SYMBOL_NUM is the number of the base name we want from NAME_TABLE.
4305 MODIFIERS is a set of modifier bits (as given in struct input_events)
4306 whose prefixes should be applied to the symbol name.
4308 SYMBOL_KIND is the value to be placed in the event_kind property of
4309 the returned symbol.
4311 The symbols we create are supposed to have an
4312 `event-symbol-elements' property, which lists the modifiers present
4313 in the symbol's name. */
4315 static Lisp_Object
4316 modify_event_symbol (symbol_num, modifiers, symbol_kind, name_alist,
4317 name_table, symbol_table, table_size)
4318 int symbol_num;
4319 unsigned modifiers;
4320 Lisp_Object symbol_kind;
4321 Lisp_Object name_alist;
4322 char **name_table;
4323 Lisp_Object *symbol_table;
4324 unsigned int table_size;
4326 Lisp_Object value;
4327 Lisp_Object symbol_int;
4329 /* Get rid of the "vendor-specific" bit here. */
4330 XSETINT (symbol_int, symbol_num & 0xffffff);
4332 /* Is this a request for a valid symbol? */
4333 if (symbol_num < 0 || symbol_num >= table_size)
4334 return Qnil;
4336 if (CONSP (*symbol_table))
4337 value = Fcdr (assq_no_quit (symbol_int, *symbol_table));
4339 /* If *symbol_table doesn't seem to be initialized properly, fix that.
4340 *symbol_table should be a lisp vector TABLE_SIZE elements long,
4341 where the Nth element is the symbol for NAME_TABLE[N], or nil if
4342 we've never used that symbol before. */
4343 else
4345 if (! VECTORP (*symbol_table)
4346 || XVECTOR (*symbol_table)->size != table_size)
4348 Lisp_Object size;
4350 XSETFASTINT (size, table_size);
4351 *symbol_table = Fmake_vector (size, Qnil);
4354 value = XVECTOR (*symbol_table)->contents[symbol_num];
4357 /* Have we already used this symbol before? */
4358 if (NILP (value))
4360 /* No; let's create it. */
4361 if (!NILP (name_alist))
4362 value = Fcdr_safe (Fassq (symbol_int, name_alist));
4363 else if (name_table[symbol_num])
4364 value = intern (name_table[symbol_num]);
4366 #ifdef HAVE_WINDOW_SYSTEM
4367 if (NILP (value))
4369 char *name = x_get_keysym_name (symbol_num);
4370 if (name)
4371 value = intern (name);
4373 #endif
4375 if (NILP (value))
4377 char buf[20];
4378 sprintf (buf, "key-%d", symbol_num);
4379 value = intern (buf);
4382 if (CONSP (*symbol_table))
4383 *symbol_table = Fcons (value, *symbol_table);
4384 else
4385 XVECTOR (*symbol_table)->contents[symbol_num] = value;
4387 /* Fill in the cache entries for this symbol; this also
4388 builds the Qevent_symbol_elements property, which the user
4389 cares about. */
4390 apply_modifiers (modifiers & click_modifier, value);
4391 Fput (value, Qevent_kind, symbol_kind);
4394 /* Apply modifiers to that symbol. */
4395 return apply_modifiers (modifiers, value);
4398 /* Convert a list that represents an event type,
4399 such as (ctrl meta backspace), into the usual representation of that
4400 event type as a number or a symbol. */
4402 DEFUN ("event-convert-list", Fevent_convert_list, Sevent_convert_list, 1, 1, 0,
4403 "Convert the event description list EVENT-DESC to an event type.\n\
4404 EVENT-DESC should contain one base event type (a character or symbol)\n\
4405 and zero or more modifier names (control, meta, hyper, super, shift, alt,\n\
4406 drag, down, double or triple).\n\
4407 The return value is an event type (a character or symbol) which\n\
4408 has the same base event type and all the specified modifiers.")
4409 (event_desc)
4410 Lisp_Object event_desc;
4412 Lisp_Object base;
4413 int modifiers = 0;
4414 Lisp_Object rest;
4416 base = Qnil;
4417 rest = event_desc;
4418 while (CONSP (rest))
4420 Lisp_Object elt;
4421 int this = 0;
4423 elt = XCONS (rest)->car;
4425 /* Given a symbol, see if it is a modifier name. */
4426 if (SYMBOLP (elt))
4427 this = parse_solitary_modifier (elt);
4429 if (this != 0)
4430 modifiers |= this;
4431 else if (!NILP (base))
4432 error ("Two bases given in one event");
4433 else
4434 base = elt;
4436 rest = XCONS (rest)->cdr;
4439 /* Let the symbol A refer to the character A. */
4440 if (SYMBOLP (base) && XSYMBOL (base)->name->size == 1)
4441 XSETINT (base, XSYMBOL (base)->name->data[0]);
4443 if (INTEGERP (base))
4445 /* Turn (shift a) into A. */
4446 if ((modifiers & shift_modifier) != 0
4447 && (XINT (base) >= 'a' && XINT (base) <= 'z'))
4449 XSETINT (base, XINT (base) - ('a' - 'A'));
4450 modifiers &= ~shift_modifier;
4453 /* Turn (control a) into C-a. */
4454 if (modifiers & ctrl_modifier)
4455 return make_number ((modifiers & ~ctrl_modifier)
4456 | make_ctrl_char (XINT (base)));
4457 else
4458 return make_number (modifiers | XINT (base));
4460 else if (SYMBOLP (base))
4461 return apply_modifiers (modifiers, base);
4462 else
4463 error ("Invalid base event");
4466 /* Try to recognize SYMBOL as a modifier name.
4467 Return the modifier flag bit, or 0 if not recognized. */
4469 static int
4470 parse_solitary_modifier (symbol)
4471 Lisp_Object symbol;
4473 struct Lisp_String *name = XSYMBOL (symbol)->name;
4475 switch (name->data[0])
4477 #define SINGLE_LETTER_MOD(BIT) \
4478 if (name->size == 1) \
4479 return BIT;
4481 #define MULTI_LETTER_MOD(BIT, NAME, LEN) \
4482 if (LEN == name->size \
4483 && ! strncmp (name->data, NAME, LEN)) \
4484 return BIT;
4486 case 'A':
4487 SINGLE_LETTER_MOD (alt_modifier);
4488 break;
4490 case 'a':
4491 MULTI_LETTER_MOD (alt_modifier, "alt", 3);
4492 break;
4494 case 'C':
4495 SINGLE_LETTER_MOD (ctrl_modifier);
4496 break;
4498 case 'c':
4499 MULTI_LETTER_MOD (ctrl_modifier, "ctrl", 4);
4500 MULTI_LETTER_MOD (ctrl_modifier, "control", 7);
4501 break;
4503 case 'H':
4504 SINGLE_LETTER_MOD (hyper_modifier);
4505 break;
4507 case 'h':
4508 MULTI_LETTER_MOD (hyper_modifier, "hyper", 5);
4509 break;
4511 case 'M':
4512 SINGLE_LETTER_MOD (meta_modifier);
4513 break;
4515 case 'm':
4516 MULTI_LETTER_MOD (meta_modifier, "meta", 4);
4517 break;
4519 case 'S':
4520 SINGLE_LETTER_MOD (shift_modifier);
4521 break;
4523 case 's':
4524 MULTI_LETTER_MOD (shift_modifier, "shift", 5);
4525 MULTI_LETTER_MOD (super_modifier, "super", 5);
4526 SINGLE_LETTER_MOD (super_modifier);
4527 break;
4529 case 'd':
4530 MULTI_LETTER_MOD (drag_modifier, "drag", 4);
4531 MULTI_LETTER_MOD (down_modifier, "down", 4);
4532 MULTI_LETTER_MOD (double_modifier, "double", 6);
4533 break;
4535 case 't':
4536 MULTI_LETTER_MOD (triple_modifier, "triple", 6);
4537 break;
4539 #undef SINGLE_LETTER_MOD
4540 #undef MULTI_LETTER_MOD
4543 return 0;
4546 /* Return 1 if EVENT is a list whose elements are all integers or symbols.
4547 Such a list is not valid as an event,
4548 but it can be a Lucid-style event type list. */
4551 lucid_event_type_list_p (object)
4552 Lisp_Object object;
4554 Lisp_Object tail;
4556 if (! CONSP (object))
4557 return 0;
4559 for (tail = object; CONSP (tail); tail = XCONS (tail)->cdr)
4561 Lisp_Object elt;
4562 elt = XCONS (tail)->car;
4563 if (! (INTEGERP (elt) || SYMBOLP (elt)))
4564 return 0;
4567 return NILP (tail);
4570 /* Store into *addr a value nonzero if terminal input chars are available.
4571 Serves the purpose of ioctl (0, FIONREAD, addr)
4572 but works even if FIONREAD does not exist.
4573 (In fact, this may actually read some input.)
4575 If DO_TIMERS_NOW is nonzero, actually run timer events that are ripe. */
4577 static void
4578 get_input_pending (addr, do_timers_now)
4579 int *addr;
4580 int do_timers_now;
4582 /* First of all, have we already counted some input? */
4583 *addr = !NILP (Vquit_flag) || readable_events (do_timers_now);
4585 /* If input is being read as it arrives, and we have none, there is none. */
4586 if (*addr > 0 || (interrupt_input && ! interrupts_deferred))
4587 return;
4589 /* Try to read some input and see how much we get. */
4590 gobble_input (0);
4591 *addr = !NILP (Vquit_flag) || readable_events (do_timers_now);
4594 /* Interface to read_avail_input, blocking SIGIO or SIGALRM if necessary. */
4597 gobble_input (expected)
4598 int expected;
4600 #ifndef VMS
4601 #ifdef SIGIO
4602 if (interrupt_input)
4604 SIGMASKTYPE mask;
4605 mask = sigblockx (SIGIO);
4606 read_avail_input (expected);
4607 sigsetmask (mask);
4609 else
4610 #ifdef POLL_FOR_INPUT
4611 if (read_socket_hook && !interrupt_input && poll_suppress_count == 0)
4613 SIGMASKTYPE mask;
4614 mask = sigblockx (SIGALRM);
4615 read_avail_input (expected);
4616 sigsetmask (mask);
4618 else
4619 #endif
4620 #endif
4621 read_avail_input (expected);
4622 #endif
4625 /* Put a buffer_switch_event in the buffer
4626 so that read_key_sequence will notice the new current buffer. */
4628 record_asynch_buffer_change ()
4630 struct input_event event;
4631 Lisp_Object tem;
4633 event.kind = buffer_switch_event;
4634 event.frame_or_window = Qnil;
4636 #ifdef subprocesses
4637 /* We don't need a buffer-switch event unless Emacs is waiting for input.
4638 The purpose of the event is to make read_key_sequence look up the
4639 keymaps again. If we aren't in read_key_sequence, we don't need one,
4640 and the event could cause trouble by messing up (input-pending-p). */
4641 tem = Fwaiting_for_user_input_p ();
4642 if (NILP (tem))
4643 return;
4644 #else
4645 /* We never need these events if we have no asynchronous subprocesses. */
4646 return;
4647 #endif
4649 /* Make sure no interrupt happens while storing the event. */
4650 #ifdef SIGIO
4651 if (interrupt_input)
4653 SIGMASKTYPE mask;
4654 mask = sigblockx (SIGIO);
4655 kbd_buffer_store_event (&event);
4656 sigsetmask (mask);
4658 else
4659 #endif
4661 stop_polling ();
4662 kbd_buffer_store_event (&event);
4663 start_polling ();
4667 #ifndef VMS
4669 /* Read any terminal input already buffered up by the system
4670 into the kbd_buffer, but do not wait.
4672 EXPECTED should be nonzero if the caller knows there is some input.
4674 Except on VMS, all input is read by this function.
4675 If interrupt_input is nonzero, this function MUST be called
4676 only when SIGIO is blocked.
4678 Returns the number of keyboard chars read, or -1 meaning
4679 this is a bad time to try to read input. */
4681 static int
4682 read_avail_input (expected)
4683 int expected;
4685 struct input_event buf[KBD_BUFFER_SIZE];
4686 register int i;
4687 int nread;
4689 if (read_socket_hook)
4690 /* No need for FIONREAD or fcntl; just say don't wait. */
4691 nread = (*read_socket_hook) (input_fd, buf, KBD_BUFFER_SIZE,
4692 expected, expected);
4693 else
4695 /* Using KBD_BUFFER_SIZE - 1 here avoids reading more than
4696 the kbd_buffer can really hold. That may prevent loss
4697 of characters on some systems when input is stuffed at us. */
4698 unsigned char cbuf[KBD_BUFFER_SIZE - 1];
4699 int n_to_read;
4701 /* Determine how many characters we should *try* to read. */
4702 #ifdef WINDOWSNT
4703 return 0;
4704 #else /* not WINDOWSNT */
4705 #ifdef MSDOS
4706 n_to_read = dos_keysns ();
4707 if (n_to_read == 0)
4708 return 0;
4709 #else /* not MSDOS */
4710 #ifdef FIONREAD
4711 /* Find out how much input is available. */
4712 if (ioctl (input_fd, FIONREAD, &n_to_read) < 0)
4713 /* Formerly simply reported no input, but that sometimes led to
4714 a failure of Emacs to terminate.
4715 SIGHUP seems appropriate if we can't reach the terminal. */
4716 /* ??? Is it really right to send the signal just to this process
4717 rather than to the whole process group?
4718 Perhaps on systems with FIONREAD Emacs is alone in its group. */
4719 kill (getpid (), SIGHUP);
4720 if (n_to_read == 0)
4721 return 0;
4722 if (n_to_read > sizeof cbuf)
4723 n_to_read = sizeof cbuf;
4724 #else /* no FIONREAD */
4725 #if defined (USG) || defined (DGUX)
4726 /* Read some input if available, but don't wait. */
4727 n_to_read = sizeof cbuf;
4728 fcntl (input_fd, F_SETFL, O_NDELAY);
4729 #else
4730 you lose;
4731 #endif
4732 #endif
4733 #endif /* not MSDOS */
4734 #endif /* not WINDOWSNT */
4736 /* Now read; for one reason or another, this will not block.
4737 NREAD is set to the number of chars read. */
4740 #ifdef MSDOS
4741 cbuf[0] = dos_keyread ();
4742 nread = 1;
4743 #else
4744 nread = read (input_fd, cbuf, n_to_read);
4745 #endif
4746 #if defined (AIX) && (! defined (aix386) && defined (_BSD))
4747 /* The kernel sometimes fails to deliver SIGHUP for ptys.
4748 This looks incorrect, but it isn't, because _BSD causes
4749 O_NDELAY to be defined in fcntl.h as O_NONBLOCK,
4750 and that causes a value other than 0 when there is no input. */
4751 if (nread == 0)
4752 kill (0, SIGHUP);
4753 #endif
4755 while (
4756 /* We used to retry the read if it was interrupted.
4757 But this does the wrong thing when O_NDELAY causes
4758 an EAGAIN error. Does anybody know of a situation
4759 where a retry is actually needed? */
4760 #if 0
4761 nread < 0 && (errno == EAGAIN
4762 #ifdef EFAULT
4763 || errno == EFAULT
4764 #endif
4765 #ifdef EBADSLT
4766 || errno == EBADSLT
4767 #endif
4769 #else
4771 #endif
4774 #ifndef FIONREAD
4775 #if defined (USG) || defined (DGUX)
4776 fcntl (input_fd, F_SETFL, 0);
4777 #endif /* USG or DGUX */
4778 #endif /* no FIONREAD */
4779 for (i = 0; i < nread; i++)
4781 buf[i].kind = ascii_keystroke;
4782 buf[i].modifiers = 0;
4783 if (meta_key == 1 && (cbuf[i] & 0x80))
4784 buf[i].modifiers = meta_modifier;
4785 if (meta_key != 2)
4786 cbuf[i] &= ~0x80;
4788 buf[i].code = cbuf[i];
4789 #ifdef MULTI_FRAME
4790 XSETFRAME (buf[i].frame_or_window, selected_frame);
4791 #else
4792 buf[i].frame_or_window = Qnil;
4793 #endif
4797 /* Scan the chars for C-g and store them in kbd_buffer. */
4798 for (i = 0; i < nread; i++)
4800 kbd_buffer_store_event (&buf[i]);
4801 /* Don't look at input that follows a C-g too closely.
4802 This reduces lossage due to autorepeat on C-g. */
4803 if (buf[i].kind == ascii_keystroke
4804 && buf[i].code == quit_char)
4805 break;
4808 return nread;
4810 #endif /* not VMS */
4812 #ifdef SIGIO /* for entire page */
4813 /* Note SIGIO has been undef'd if FIONREAD is missing. */
4815 SIGTYPE
4816 input_available_signal (signo)
4817 int signo;
4819 /* Must preserve main program's value of errno. */
4820 int old_errno = errno;
4821 #ifdef BSD4_1
4822 extern int select_alarmed;
4823 #endif
4825 #ifdef USG
4826 /* USG systems forget handlers when they are used;
4827 must reestablish each time */
4828 signal (signo, input_available_signal);
4829 #endif /* USG */
4831 #ifdef BSD4_1
4832 sigisheld (SIGIO);
4833 #endif
4835 if (input_available_clear_time)
4836 EMACS_SET_SECS_USECS (*input_available_clear_time, 0, 0);
4838 while (1)
4840 int nread;
4841 nread = read_avail_input (1);
4842 /* -1 means it's not ok to read the input now.
4843 UNBLOCK_INPUT will read it later; now, avoid infinite loop.
4844 0 means there was no keyboard input available. */
4845 if (nread <= 0)
4846 break;
4848 #ifdef BSD4_1
4849 select_alarmed = 1; /* Force the select emulator back to life */
4850 #endif
4853 #ifdef BSD4_1
4854 sigfree ();
4855 #endif
4856 errno = old_errno;
4858 #endif /* SIGIO */
4860 /* Send ourselves a SIGIO.
4862 This function exists so that the UNBLOCK_INPUT macro in
4863 blockinput.h can have some way to take care of input we put off
4864 dealing with, without assuming that every file which uses
4865 UNBLOCK_INPUT also has #included the files necessary to get SIGIO. */
4866 void
4867 reinvoke_input_signal ()
4869 #ifdef SIGIO
4870 kill (0, SIGIO);
4871 #endif
4876 /* Return the prompt-string of a sparse keymap.
4877 This is the first element which is a string.
4878 Return nil if there is none. */
4880 Lisp_Object
4881 map_prompt (map)
4882 Lisp_Object map;
4884 while (CONSP (map))
4886 register Lisp_Object tem;
4887 tem = Fcar (map);
4888 if (STRINGP (tem))
4889 return tem;
4890 map = Fcdr (map);
4892 return Qnil;
4895 static void menu_bar_item ();
4896 static void menu_bar_one_keymap ();
4898 /* These variables hold the vector under construction within
4899 menu_bar_items and its subroutines, and the current index
4900 for storing into that vector. */
4901 static Lisp_Object menu_bar_items_vector;
4902 static int menu_bar_items_index;
4904 /* Return a vector of menu items for a menu bar, appropriate
4905 to the current buffer. Each item has three elements in the vector:
4906 KEY STRING MAPLIST.
4908 OLD is an old vector we can optionally reuse, or nil. */
4910 Lisp_Object
4911 menu_bar_items (old)
4912 Lisp_Object old;
4914 /* The number of keymaps we're scanning right now, and the number of
4915 keymaps we have allocated space for. */
4916 int nmaps;
4918 /* maps[0..nmaps-1] are the prefix definitions of KEYBUF[0..t-1]
4919 in the current keymaps, or nil where it is not a prefix. */
4920 Lisp_Object *maps;
4922 Lisp_Object def, tem, tail;
4924 Lisp_Object result;
4926 int mapno;
4927 Lisp_Object oquit;
4929 int i;
4931 struct gcpro gcpro1;
4933 /* In order to build the menus, we need to call the keymap
4934 accessors. They all call QUIT. But this function is called
4935 during redisplay, during which a quit is fatal. So inhibit
4936 quitting while building the menus.
4937 We do this instead of specbind because (1) errors will clear it anyway
4938 and (2) this avoids risk of specpdl overflow. */
4939 oquit = Vinhibit_quit;
4940 Vinhibit_quit = Qt;
4942 if (!NILP (old))
4943 menu_bar_items_vector = old;
4944 else
4945 menu_bar_items_vector = Fmake_vector (make_number (24), Qnil);
4946 menu_bar_items_index = 0;
4948 GCPRO1 (menu_bar_items_vector);
4950 /* Build our list of keymaps.
4951 If we recognize a function key and replace its escape sequence in
4952 keybuf with its symbol, or if the sequence starts with a mouse
4953 click and we need to switch buffers, we jump back here to rebuild
4954 the initial keymaps from the current buffer. */
4956 Lisp_Object *tmaps;
4958 /* Should overriding-terminal-local-map and overriding-local-map apply? */
4959 if (!NILP (Voverriding_local_map_menu_flag))
4961 /* Yes, use them (if non-nil) as well as the global map. */
4962 maps = (Lisp_Object *) alloca (3 * sizeof (maps[0]));
4963 nmaps = 0;
4964 if (!NILP (current_kboard->Voverriding_terminal_local_map))
4965 maps[nmaps++] = current_kboard->Voverriding_terminal_local_map;
4966 if (!NILP (Voverriding_local_map))
4967 maps[nmaps++] = Voverriding_local_map;
4969 else
4971 /* No, so use major and minor mode keymaps. */
4972 nmaps = current_minor_maps (NULL, &tmaps);
4973 maps = (Lisp_Object *) alloca ((nmaps + 2) * sizeof (maps[0]));
4974 bcopy (tmaps, maps, nmaps * sizeof (maps[0]));
4975 #ifdef USE_TEXT_PROPERTIES
4976 maps[nmaps++] = get_local_map (PT, current_buffer);
4977 #else
4978 maps[nmaps++] = current_buffer->keymap;
4979 #endif
4981 maps[nmaps++] = current_global_map;
4984 /* Look up in each map the dummy prefix key `menu-bar'. */
4986 result = Qnil;
4988 for (mapno = nmaps - 1; mapno >= 0; mapno--)
4990 if (! NILP (maps[mapno]))
4991 def = get_keyelt (access_keymap (maps[mapno], Qmenu_bar, 1, 0));
4992 else
4993 def = Qnil;
4995 tem = Fkeymapp (def);
4996 if (!NILP (tem))
4997 menu_bar_one_keymap (def);
5000 /* Move to the end those items that should be at the end. */
5002 for (tail = Vmenu_bar_final_items; CONSP (tail); tail = XCONS (tail)->cdr)
5004 int i;
5005 int end = menu_bar_items_index;
5007 for (i = 0; i < end; i += 3)
5008 if (EQ (XCONS (tail)->car, XVECTOR (menu_bar_items_vector)->contents[i]))
5010 Lisp_Object tem0, tem1, tem2;
5011 /* Move the item at index I to the end,
5012 shifting all the others forward. */
5013 tem0 = XVECTOR (menu_bar_items_vector)->contents[i + 0];
5014 tem1 = XVECTOR (menu_bar_items_vector)->contents[i + 1];
5015 tem2 = XVECTOR (menu_bar_items_vector)->contents[i + 2];
5016 if (end > i + 3)
5017 bcopy (&XVECTOR (menu_bar_items_vector)->contents[i + 3],
5018 &XVECTOR (menu_bar_items_vector)->contents[i],
5019 (end - i - 3) * sizeof (Lisp_Object));
5020 XVECTOR (menu_bar_items_vector)->contents[end - 3] = tem0;
5021 XVECTOR (menu_bar_items_vector)->contents[end - 2] = tem1;
5022 XVECTOR (menu_bar_items_vector)->contents[end - 1] = tem2;
5023 break;
5027 /* Add nil, nil, nil at the end. */
5028 i = menu_bar_items_index;
5029 if (i + 3 > XVECTOR (menu_bar_items_vector)->size)
5031 Lisp_Object tem;
5032 int newsize = 2 * i;
5033 tem = Fmake_vector (make_number (2 * i), Qnil);
5034 bcopy (XVECTOR (menu_bar_items_vector)->contents,
5035 XVECTOR (tem)->contents, i * sizeof (Lisp_Object));
5036 menu_bar_items_vector = tem;
5038 /* Add this item. */
5039 XVECTOR (menu_bar_items_vector)->contents[i++] = Qnil;
5040 XVECTOR (menu_bar_items_vector)->contents[i++] = Qnil;
5041 XVECTOR (menu_bar_items_vector)->contents[i++] = Qnil;
5042 menu_bar_items_index = i;
5044 Vinhibit_quit = oquit;
5045 UNGCPRO;
5046 return menu_bar_items_vector;
5049 /* Scan one map KEYMAP, accumulating any menu items it defines
5050 in menu_bar_items_vector. */
5052 static void
5053 menu_bar_one_keymap (keymap)
5054 Lisp_Object keymap;
5056 Lisp_Object tail, item, key, binding, item_string, table;
5058 /* Loop over all keymap entries that have menu strings. */
5059 for (tail = keymap; CONSP (tail); tail = XCONS (tail)->cdr)
5061 item = XCONS (tail)->car;
5062 if (CONSP (item))
5064 key = XCONS (item)->car;
5065 binding = XCONS (item)->cdr;
5066 if (CONSP (binding))
5068 item_string = XCONS (binding)->car;
5069 if (STRINGP (item_string))
5070 menu_bar_item (key, item_string, Fcdr (binding));
5072 else if (EQ (binding, Qundefined))
5073 menu_bar_item (key, Qnil, binding);
5075 else if (VECTORP (item))
5077 /* Loop over the char values represented in the vector. */
5078 int len = XVECTOR (item)->size;
5079 int c;
5080 for (c = 0; c < len; c++)
5082 Lisp_Object character;
5083 XSETFASTINT (character, c);
5084 binding = XVECTOR (item)->contents[c];
5085 if (CONSP (binding))
5087 item_string = XCONS (binding)->car;
5088 if (STRINGP (item_string))
5089 menu_bar_item (key, item_string, Fcdr (binding));
5091 else if (EQ (binding, Qundefined))
5092 menu_bar_item (key, Qnil, binding);
5098 /* This is used as the handler when calling internal_condition_case_1. */
5100 static Lisp_Object
5101 menu_bar_item_1 (arg)
5102 Lisp_Object arg;
5104 return Qnil;
5107 /* Add one item to menu_bar_items_vector, for KEY, ITEM_STRING and DEF.
5108 If there's already an item for KEY, add this DEF to it. */
5110 static void
5111 menu_bar_item (key, item_string, def)
5112 Lisp_Object key, item_string, def;
5114 Lisp_Object tem;
5115 Lisp_Object enabled;
5116 int i;
5118 if (EQ (def, Qundefined))
5120 /* If a map has an explicit `undefined' as definition,
5121 discard any previously made menu bar item. */
5123 for (i = 0; i < menu_bar_items_index; i += 3)
5124 if (EQ (key, XVECTOR (menu_bar_items_vector)->contents[i]))
5126 if (menu_bar_items_index > i + 3)
5127 bcopy (&XVECTOR (menu_bar_items_vector)->contents[i + 3],
5128 &XVECTOR (menu_bar_items_vector)->contents[i],
5129 (menu_bar_items_index - i - 3) * sizeof (Lisp_Object));
5130 menu_bar_items_index -= 3;
5131 return;
5134 /* If there's no definition for this key yet,
5135 just ignore `undefined'. */
5136 return;
5139 /* See if this entry is enabled. */
5140 enabled = Qt;
5142 if (SYMBOLP (def))
5144 /* No property, or nil, means enable.
5145 Otherwise, enable if value is not nil. */
5146 tem = Fget (def, Qmenu_enable);
5147 if (!NILP (tem))
5148 /* (condition-case nil (eval tem)
5149 (error nil)) */
5150 enabled = internal_condition_case_1 (Feval, tem, Qerror,
5151 menu_bar_item_1);
5154 /* Ignore this item if it's not enabled. */
5155 if (NILP (enabled))
5156 return;
5158 /* Find any existing item for this KEY. */
5159 for (i = 0; i < menu_bar_items_index; i += 3)
5160 if (EQ (key, XVECTOR (menu_bar_items_vector)->contents[i]))
5161 break;
5163 /* If we did not find this KEY, add it at the end. */
5164 if (i == menu_bar_items_index)
5166 /* If vector is too small, get a bigger one. */
5167 if (i + 3 > XVECTOR (menu_bar_items_vector)->size)
5169 Lisp_Object tem;
5170 int newsize = 2 * i;
5171 tem = Fmake_vector (make_number (2 * i), Qnil);
5172 bcopy (XVECTOR (menu_bar_items_vector)->contents,
5173 XVECTOR (tem)->contents, i * sizeof (Lisp_Object));
5174 menu_bar_items_vector = tem;
5176 /* Add this item. */
5177 XVECTOR (menu_bar_items_vector)->contents[i++] = key;
5178 XVECTOR (menu_bar_items_vector)->contents[i++] = item_string;
5179 XVECTOR (menu_bar_items_vector)->contents[i++] = Fcons (def, Qnil);
5180 menu_bar_items_index = i;
5182 /* We did find an item for this KEY. Add DEF to its list of maps. */
5183 else
5185 Lisp_Object old;
5186 old = XVECTOR (menu_bar_items_vector)->contents[i + 2];
5187 XVECTOR (menu_bar_items_vector)->contents[i + 2] = Fcons (def, old);
5191 /* Read a character using menus based on maps in the array MAPS.
5192 NMAPS is the length of MAPS. Return nil if there are no menus in the maps.
5193 Return t if we displayed a menu but the user rejected it.
5195 PREV_EVENT is the previous input event, or nil if we are reading
5196 the first event of a key sequence.
5198 If USED_MOUSE_MENU is non-null, then we set *USED_MOUSE_MENU to 1
5199 if we used a mouse menu to read the input, or zero otherwise. If
5200 USED_MOUSE_MENU is null, we don't dereference it.
5202 The prompting is done based on the prompt-string of the map
5203 and the strings associated with various map elements.
5205 This can be done with X menus or with menus put in the minibuf.
5206 These are done in different ways, depending on how the input will be read.
5207 Menus using X are done after auto-saving in read-char, getting the input
5208 event from Fx_popup_menu; menus using the minibuf use read_char recursively
5209 and do auto-saving in the inner call of read_char. */
5211 static Lisp_Object
5212 read_char_x_menu_prompt (nmaps, maps, prev_event, used_mouse_menu)
5213 int nmaps;
5214 Lisp_Object *maps;
5215 Lisp_Object prev_event;
5216 int *used_mouse_menu;
5218 int mapno;
5219 register Lisp_Object name;
5220 Lisp_Object rest, vector;
5222 if (used_mouse_menu)
5223 *used_mouse_menu = 0;
5225 /* Use local over global Menu maps */
5227 if (! menu_prompting)
5228 return Qnil;
5230 /* Optionally disregard all but the global map. */
5231 if (inhibit_local_menu_bar_menus)
5233 maps += (nmaps - 1);
5234 nmaps = 1;
5237 /* Get the menu name from the first map that has one (a prompt string). */
5238 for (mapno = 0; mapno < nmaps; mapno++)
5240 name = map_prompt (maps[mapno]);
5241 if (!NILP (name))
5242 break;
5245 /* If we don't have any menus, just read a character normally. */
5246 if (mapno >= nmaps)
5247 return Qnil;
5249 #ifdef HAVE_MENUS
5250 /* If we got to this point via a mouse click,
5251 use a real menu for mouse selection. */
5252 if (EVENT_HAS_PARAMETERS (prev_event)
5253 && !EQ (XCONS (prev_event)->car, Qmenu_bar))
5255 /* Display the menu and get the selection. */
5256 Lisp_Object *realmaps
5257 = (Lisp_Object *) alloca (nmaps * sizeof (Lisp_Object));
5258 Lisp_Object value;
5259 int nmaps1 = 0;
5261 /* Use the maps that are not nil. */
5262 for (mapno = 0; mapno < nmaps; mapno++)
5263 if (!NILP (maps[mapno]))
5264 realmaps[nmaps1++] = maps[mapno];
5266 value = Fx_popup_menu (prev_event, Flist (nmaps1, realmaps));
5267 if (CONSP (value))
5269 Lisp_Object tem;
5271 /* If we got multiple events, unread all but
5272 the first.
5273 There is no way to prevent those unread events
5274 from showing up later in last_nonmenu_event.
5275 So turn symbol and integer events into lists,
5276 to indicate that they came from a mouse menu,
5277 so that when present in last_nonmenu_event
5278 they won't confuse things. */
5279 for (tem = XCONS (value)->cdr; !NILP (tem);
5280 tem = XCONS (tem)->cdr)
5281 if (SYMBOLP (XCONS (tem)->car)
5282 || INTEGERP (XCONS (tem)->car))
5283 XCONS (tem)->car
5284 = Fcons (XCONS (tem)->car, Qnil);
5286 /* If we got more than one event, put all but the first
5287 onto this list to be read later.
5288 Return just the first event now. */
5289 Vunread_command_events
5290 = nconc2 (XCONS (value)->cdr, Vunread_command_events);
5291 value = XCONS (value)->car;
5293 else if (NILP (value))
5294 value = Qt;
5295 if (used_mouse_menu)
5296 *used_mouse_menu = 1;
5297 return value;
5299 #endif /* HAVE_MENUS */
5300 return Qnil ;
5303 /* Buffer in use so far for the minibuf prompts for menu keymaps.
5304 We make this bigger when necessary, and never free it. */
5305 static char *read_char_minibuf_menu_text;
5306 /* Size of that buffer. */
5307 static int read_char_minibuf_menu_width;
5309 static Lisp_Object
5310 read_char_minibuf_menu_prompt (commandflag, nmaps, maps)
5311 int commandflag ;
5312 int nmaps;
5313 Lisp_Object *maps;
5315 int mapno;
5316 register Lisp_Object name;
5317 int nlength;
5318 int width = FRAME_WIDTH (selected_frame) - 4;
5319 int idx = -1;
5320 int nobindings = 1;
5321 Lisp_Object rest, vector;
5322 char *menu;
5324 if (! menu_prompting)
5325 return Qnil;
5327 /* Make sure we have a big enough buffer for the menu text. */
5328 if (read_char_minibuf_menu_text == 0)
5330 read_char_minibuf_menu_width = width + 4;
5331 read_char_minibuf_menu_text = (char *) xmalloc (width + 4);
5333 else if (width + 4 > read_char_minibuf_menu_width)
5335 read_char_minibuf_menu_width = width + 4;
5336 read_char_minibuf_menu_text
5337 = (char *) xrealloc (read_char_minibuf_menu_text, width + 4);
5339 menu = read_char_minibuf_menu_text;
5341 /* Get the menu name from the first map that has one (a prompt string). */
5342 for (mapno = 0; mapno < nmaps; mapno++)
5344 name = map_prompt (maps[mapno]);
5345 if (!NILP (name))
5346 break;
5349 /* If we don't have any menus, just read a character normally. */
5350 if (mapno >= nmaps)
5351 return Qnil;
5353 /* Prompt string always starts with map's prompt, and a space. */
5354 strcpy (menu, XSTRING (name)->data);
5355 nlength = XSTRING (name)->size;
5356 menu[nlength++] = ':';
5357 menu[nlength++] = ' ';
5358 menu[nlength] = 0;
5360 /* Start prompting at start of first map. */
5361 mapno = 0;
5362 rest = maps[mapno];
5364 /* Present the documented bindings, a line at a time. */
5365 while (1)
5367 int notfirst = 0;
5368 int i = nlength;
5369 Lisp_Object obj;
5370 int ch;
5371 Lisp_Object orig_defn_macro;
5373 /* Loop over elements of map. */
5374 while (i < width)
5376 Lisp_Object s, elt;
5378 /* If reached end of map, start at beginning of next map. */
5379 if (NILP (rest))
5381 mapno++;
5382 /* At end of last map, wrap around to first map if just starting,
5383 or end this line if already have something on it. */
5384 if (mapno == nmaps)
5386 mapno = 0;
5387 if (notfirst || nobindings) break;
5389 rest = maps[mapno];
5392 /* Look at the next element of the map. */
5393 if (idx >= 0)
5394 elt = XVECTOR (vector)->contents[idx];
5395 else
5396 elt = Fcar_safe (rest);
5398 if (idx < 0 && VECTORP (elt))
5400 /* If we found a dense table in the keymap,
5401 advanced past it, but start scanning its contents. */
5402 rest = Fcdr_safe (rest);
5403 vector = elt;
5404 idx = 0;
5406 else
5408 /* An ordinary element. */
5409 Lisp_Object event;
5411 if (idx < 0)
5413 s = Fcar_safe (Fcdr_safe (elt)); /* alist */
5414 event = Fcar_safe (elt);
5416 else
5418 s = Fcar_safe (elt); /* vector */
5419 XSETINT (event, idx);
5422 /* Ignore the element if it has no prompt string. */
5423 if (STRINGP (s) && INTEGERP (event))
5425 /* 1 if the char to type matches the string. */
5426 int char_matches;
5427 Lisp_Object upcased_event, downcased_event;
5428 Lisp_Object desc;
5430 upcased_event = Fupcase (event);
5431 downcased_event = Fdowncase (event);
5432 char_matches = (XINT (upcased_event) == XSTRING (s)->data[0]
5433 || XINT (downcased_event) == XSTRING (s)->data[0]);
5434 if (! char_matches)
5435 desc = Fsingle_key_description (event);
5437 /* If we have room for the prompt string, add it to this line.
5438 If this is the first on the line, always add it. */
5439 if ((XSTRING (s)->size + i + 2
5440 + (char_matches ? 0 : XSTRING (desc)->size + 3))
5441 < width
5442 || !notfirst)
5444 int thiswidth;
5446 /* Punctuate between strings. */
5447 if (notfirst)
5449 strcpy (menu + i, ", ");
5450 i += 2;
5452 notfirst = 1;
5453 nobindings = 0 ;
5455 /* If the char to type doesn't match the string's
5456 first char, explicitly show what char to type. */
5457 if (! char_matches)
5459 /* Add as much of string as fits. */
5460 thiswidth = XSTRING (desc)->size;
5461 if (thiswidth + i > width)
5462 thiswidth = width - i;
5463 bcopy (XSTRING (desc)->data, menu + i, thiswidth);
5464 i += thiswidth;
5465 strcpy (menu + i, " = ");
5466 i += 3;
5469 /* Add as much of string as fits. */
5470 thiswidth = XSTRING (s)->size;
5471 if (thiswidth + i > width)
5472 thiswidth = width - i;
5473 bcopy (XSTRING (s)->data, menu + i, thiswidth);
5474 i += thiswidth;
5475 menu[i] = 0;
5477 else
5479 /* If this element does not fit, end the line now,
5480 and save the element for the next line. */
5481 strcpy (menu + i, "...");
5482 break;
5486 /* Move past this element. */
5487 if (idx >= 0 && idx + 1 >= XVECTOR (vector)->size)
5488 /* Handle reaching end of dense table. */
5489 idx = -1;
5490 if (idx >= 0)
5491 idx++;
5492 else
5493 rest = Fcdr_safe (rest);
5497 /* Prompt with that and read response. */
5498 message1 (menu);
5500 /* Make believe its not a keyboard macro in case the help char
5501 is pressed. Help characters are not recorded because menu prompting
5502 is not used on replay.
5504 orig_defn_macro = current_kboard->defining_kbd_macro;
5505 current_kboard->defining_kbd_macro = Qnil;
5507 obj = read_char (commandflag, 0, 0, Qnil, 0);
5508 while (BUFFERP (obj));
5509 current_kboard->defining_kbd_macro = orig_defn_macro;
5511 if (!INTEGERP (obj))
5512 return obj;
5513 else
5514 ch = XINT (obj);
5516 if (! EQ (obj, menu_prompt_more_char)
5517 && (!INTEGERP (menu_prompt_more_char)
5518 || ! EQ (obj, make_number (Ctl (XINT (menu_prompt_more_char))))))
5520 if (!NILP (current_kboard->defining_kbd_macro))
5521 store_kbd_macro_char (obj);
5522 return obj;
5524 /* Help char - go round again */
5528 /* Reading key sequences. */
5530 /* Follow KEY in the maps in CURRENT[0..NMAPS-1], placing its bindings
5531 in DEFS[0..NMAPS-1]. Set NEXT[i] to DEFS[i] if DEFS[i] is a
5532 keymap, or nil otherwise. Return the index of the first keymap in
5533 which KEY has any binding, or NMAPS if no map has a binding.
5535 If KEY is a meta ASCII character, treat it like meta-prefix-char
5536 followed by the corresponding non-meta character. Keymaps in
5537 CURRENT with non-prefix bindings for meta-prefix-char become nil in
5538 NEXT.
5540 If KEY has no bindings in any of the CURRENT maps, NEXT is left
5541 unmodified.
5543 NEXT may be the same array as CURRENT. */
5545 static int
5546 follow_key (key, nmaps, current, defs, next)
5547 Lisp_Object key;
5548 Lisp_Object *current, *defs, *next;
5549 int nmaps;
5551 int i, first_binding;
5552 int did_meta = 0;
5554 /* If KEY is a meta ASCII character, treat it like meta-prefix-char
5555 followed by the corresponding non-meta character.
5556 Put the results into DEFS, since we are going to alter that anyway.
5557 Do not alter CURRENT or NEXT. */
5558 if (INTEGERP (key) && (XINT (key) & CHAR_META))
5560 for (i = 0; i < nmaps; i++)
5561 if (! NILP (current[i]))
5563 Lisp_Object def;
5564 def = get_keyelt (access_keymap (current[i],
5565 meta_prefix_char, 1, 0));
5567 /* Note that since we pass the resulting bindings through
5568 get_keymap_1, non-prefix bindings for meta-prefix-char
5569 disappear. */
5570 defs[i] = get_keymap_1 (def, 0, 1);
5572 else
5573 defs[i] = Qnil;
5575 did_meta = 1;
5576 XSETINT (key, XFASTINT (key) & ~CHAR_META);
5579 first_binding = nmaps;
5580 for (i = nmaps - 1; i >= 0; i--)
5582 if (! NILP (current[i]))
5584 Lisp_Object map;
5585 if (did_meta)
5586 map = defs[i];
5587 else
5588 map = current[i];
5590 defs[i] = get_keyelt (access_keymap (map, key, 1, 0));
5591 if (! NILP (defs[i]))
5592 first_binding = i;
5594 else
5595 defs[i] = Qnil;
5598 /* Given the set of bindings we've found, produce the next set of maps. */
5599 if (first_binding < nmaps)
5600 for (i = 0; i < nmaps; i++)
5601 next[i] = NILP (defs[i]) ? Qnil : get_keymap_1 (defs[i], 0, 1);
5603 return first_binding;
5606 /* Read a sequence of keys that ends with a non prefix character,
5607 storing it in KEYBUF, a buffer of size BUFSIZE.
5608 Prompt with PROMPT.
5609 Return the length of the key sequence stored.
5610 Return -1 if the user rejected a command menu.
5612 Echo starting immediately unless `prompt' is 0.
5614 Where a key sequence ends depends on the currently active keymaps.
5615 These include any minor mode keymaps active in the current buffer,
5616 the current buffer's local map, and the global map.
5618 If a key sequence has no other bindings, we check Vfunction_key_map
5619 to see if some trailing subsequence might be the beginning of a
5620 function key's sequence. If so, we try to read the whole function
5621 key, and substitute its symbolic name into the key sequence.
5623 We ignore unbound `down-' mouse clicks. We turn unbound `drag-' and
5624 `double-' events into similar click events, if that would make them
5625 bound. We try to turn `triple-' events first into `double-' events,
5626 then into clicks.
5628 If we get a mouse click in a mode line, vertical divider, or other
5629 non-text area, we treat the click as if it were prefixed by the
5630 symbol denoting that area - `mode-line', `vertical-line', or
5631 whatever.
5633 If the sequence starts with a mouse click, we read the key sequence
5634 with respect to the buffer clicked on, not the current buffer.
5636 If the user switches frames in the midst of a key sequence, we put
5637 off the switch-frame event until later; the next call to
5638 read_char will return it. */
5640 static int
5641 read_key_sequence (keybuf, bufsize, prompt, dont_downcase_last,
5642 can_return_switch_frame)
5643 Lisp_Object *keybuf;
5644 int bufsize;
5645 Lisp_Object prompt;
5646 int dont_downcase_last;
5647 int can_return_switch_frame;
5649 int count = specpdl_ptr - specpdl;
5651 /* How many keys there are in the current key sequence. */
5652 int t;
5654 /* The length of the echo buffer when we started reading, and
5655 the length of this_command_keys when we started reading. */
5656 int echo_start;
5657 int keys_start;
5659 /* The number of keymaps we're scanning right now, and the number of
5660 keymaps we have allocated space for. */
5661 int nmaps;
5662 int nmaps_allocated = 0;
5664 /* defs[0..nmaps-1] are the definitions of KEYBUF[0..t-1] in
5665 the current keymaps. */
5666 Lisp_Object *defs;
5668 /* submaps[0..nmaps-1] are the prefix definitions of KEYBUF[0..t-1]
5669 in the current keymaps, or nil where it is not a prefix. */
5670 Lisp_Object *submaps;
5672 /* The local map to start out with at start of key sequence. */
5673 Lisp_Object orig_local_map;
5675 /* 1 if we have already considered switching to the local-map property
5676 of the place where a mouse click occurred. */
5677 int localized_local_map = 0;
5679 /* The index in defs[] of the first keymap that has a binding for
5680 this key sequence. In other words, the lowest i such that
5681 defs[i] is non-nil. */
5682 int first_binding;
5684 /* If t < mock_input, then KEYBUF[t] should be read as the next
5685 input key.
5687 We use this to recover after recognizing a function key. Once we
5688 realize that a suffix of the current key sequence is actually a
5689 function key's escape sequence, we replace the suffix with the
5690 function key's binding from Vfunction_key_map. Now keybuf
5691 contains a new and different key sequence, so the echo area,
5692 this_command_keys, and the submaps and defs arrays are wrong. In
5693 this situation, we set mock_input to t, set t to 0, and jump to
5694 restart_sequence; the loop will read keys from keybuf up until
5695 mock_input, thus rebuilding the state; and then it will resume
5696 reading characters from the keyboard. */
5697 int mock_input = 0;
5699 /* If the sequence is unbound in submaps[], then
5700 keybuf[fkey_start..fkey_end-1] is a prefix in Vfunction_key_map,
5701 and fkey_map is its binding.
5703 These might be > t, indicating that all function key scanning
5704 should hold off until t reaches them. We do this when we've just
5705 recognized a function key, to avoid searching for the function
5706 key's again in Vfunction_key_map. */
5707 int fkey_start = 0, fkey_end = 0;
5708 Lisp_Object fkey_map;
5710 /* Likewise, for key_translation_map. */
5711 int keytran_start = 0, keytran_end = 0;
5712 Lisp_Object keytran_map;
5714 /* If we receive a ``switch-frame'' event in the middle of a key sequence,
5715 we put it off for later. While we're reading, we keep the event here. */
5716 Lisp_Object delayed_switch_frame;
5718 /* See the comment below... */
5719 #if defined (GOBBLE_FIRST_EVENT)
5720 Lisp_Object first_event;
5721 #endif
5723 Lisp_Object original_uppercase;
5724 int original_uppercase_position = -1;
5726 /* Gets around Microsoft compiler limitations. */
5727 int dummyflag = 0;
5729 struct buffer *starting_buffer;
5731 /* Nonzero if we seem to have got the beginning of a binding
5732 in function_key_map. */
5733 int function_key_possible = 0;
5734 int key_translation_possible = 0;
5736 /* Save the status of key translation before each step,
5737 so that we can restore this after downcasing. */
5738 Lisp_Object prev_fkey_map;
5739 Lisp_Object prev_fkey_start;
5740 Lisp_Object prev_fkey_end;
5742 Lisp_Object prev_keytran_map;
5743 Lisp_Object prev_keytran_start;
5744 Lisp_Object prev_keytran_end;
5746 int junk;
5748 last_nonmenu_event = Qnil;
5750 delayed_switch_frame = Qnil;
5751 fkey_map = Vfunction_key_map;
5752 keytran_map = Vkey_translation_map;
5754 /* If there is no function-key-map, turn off function key scanning. */
5755 if (NILP (Fkeymapp (Vfunction_key_map)))
5756 fkey_start = fkey_end = bufsize + 1;
5758 /* If there is no key-translation-map, turn off scanning. */
5759 if (NILP (Fkeymapp (Vkey_translation_map)))
5760 keytran_start = keytran_end = bufsize + 1;
5762 if (INTERACTIVE)
5764 if (!NILP (prompt))
5765 echo_prompt (XSTRING (prompt)->data);
5766 else if (cursor_in_echo_area && echo_keystrokes)
5767 /* This doesn't put in a dash if the echo buffer is empty, so
5768 you don't always see a dash hanging out in the minibuffer. */
5769 echo_dash ();
5772 /* Record the initial state of the echo area and this_command_keys;
5773 we will need to restore them if we replay a key sequence. */
5774 if (INTERACTIVE)
5775 echo_start = echo_length ();
5776 keys_start = this_command_key_count;
5778 #if defined (GOBBLE_FIRST_EVENT)
5779 /* This doesn't quite work, because some of the things that read_char
5780 does cannot safely be bypassed. It seems too risky to try to make
5781 this work right. */
5783 /* Read the first char of the sequence specially, before setting
5784 up any keymaps, in case a filter runs and switches buffers on us. */
5785 first_event = read_char (NILP (prompt), 0, submaps, last_nonmenu_event,
5786 &junk);
5787 #endif /* GOBBLE_FIRST_EVENT */
5789 orig_local_map = get_local_map (PT, current_buffer);
5791 /* We jump here when the key sequence has been thoroughly changed, and
5792 we need to rescan it starting from the beginning. When we jump here,
5793 keybuf[0..mock_input] holds the sequence we should reread. */
5794 replay_sequence:
5796 starting_buffer = current_buffer;
5797 function_key_possible = 0;
5798 key_translation_possible = 0;
5800 /* Build our list of keymaps.
5801 If we recognize a function key and replace its escape sequence in
5802 keybuf with its symbol, or if the sequence starts with a mouse
5803 click and we need to switch buffers, we jump back here to rebuild
5804 the initial keymaps from the current buffer. */
5806 Lisp_Object *maps;
5808 if (!NILP (current_kboard->Voverriding_terminal_local_map)
5809 || !NILP (Voverriding_local_map))
5811 if (3 > nmaps_allocated)
5813 submaps = (Lisp_Object *) alloca (3 * sizeof (submaps[0]));
5814 defs = (Lisp_Object *) alloca (3 * sizeof (defs[0]));
5815 nmaps_allocated = 3;
5817 nmaps = 0;
5818 if (!NILP (current_kboard->Voverriding_terminal_local_map))
5819 submaps[nmaps++] = current_kboard->Voverriding_terminal_local_map;
5820 if (!NILP (Voverriding_local_map))
5821 submaps[nmaps++] = Voverriding_local_map;
5823 else
5825 nmaps = current_minor_maps (0, &maps);
5826 if (nmaps + 2 > nmaps_allocated)
5828 submaps = (Lisp_Object *) alloca ((nmaps+2) * sizeof (submaps[0]));
5829 defs = (Lisp_Object *) alloca ((nmaps+2) * sizeof (defs[0]));
5830 nmaps_allocated = nmaps + 2;
5832 bcopy (maps, submaps, nmaps * sizeof (submaps[0]));
5833 #ifdef USE_TEXT_PROPERTIES
5834 submaps[nmaps++] = orig_local_map;
5835 #else
5836 submaps[nmaps++] = current_buffer->keymap;
5837 #endif
5839 submaps[nmaps++] = current_global_map;
5842 /* Find an accurate initial value for first_binding. */
5843 for (first_binding = 0; first_binding < nmaps; first_binding++)
5844 if (! NILP (submaps[first_binding]))
5845 break;
5847 /* Start from the beginning in keybuf. */
5848 t = 0;
5850 /* These are no-ops the first time through, but if we restart, they
5851 revert the echo area and this_command_keys to their original state. */
5852 this_command_key_count = keys_start;
5853 if (INTERACTIVE && t < mock_input)
5854 echo_truncate (echo_start);
5856 /* If the best binding for the current key sequence is a keymap, or
5857 we may be looking at a function key's escape sequence, keep on
5858 reading. */
5859 while ((first_binding < nmaps && ! NILP (submaps[first_binding]))
5860 || (first_binding >= nmaps
5861 && fkey_start < t
5862 /* mock input is never part of a function key's sequence. */
5863 && mock_input <= fkey_start)
5864 || (first_binding >= nmaps
5865 && keytran_start < t && key_translation_possible)
5866 /* Don't return in the middle of a possible function key sequence,
5867 if the only bindings we found were via case conversion.
5868 Thus, if ESC O a has a function-key-map translation
5869 and ESC o has a binding, don't return after ESC O,
5870 so that we can translate ESC O plus the next character. */
5873 Lisp_Object key;
5874 int used_mouse_menu = 0;
5876 /* Where the last real key started. If we need to throw away a
5877 key that has expanded into more than one element of keybuf
5878 (say, a mouse click on the mode line which is being treated
5879 as [mode-line (mouse-...)], then we backtrack to this point
5880 of keybuf. */
5881 int last_real_key_start;
5883 /* These variables are analogous to echo_start and keys_start;
5884 while those allow us to restart the entire key sequence,
5885 echo_local_start and keys_local_start allow us to throw away
5886 just one key. */
5887 int echo_local_start, keys_local_start, local_first_binding;
5889 if (t >= bufsize)
5890 error ("Key sequence too long");
5892 if (INTERACTIVE)
5893 echo_local_start = echo_length ();
5894 keys_local_start = this_command_key_count;
5895 local_first_binding = first_binding;
5897 replay_key:
5898 /* These are no-ops, unless we throw away a keystroke below and
5899 jumped back up to replay_key; in that case, these restore the
5900 variables to their original state, allowing us to replay the
5901 loop. */
5902 if (INTERACTIVE && t < mock_input)
5903 echo_truncate (echo_local_start);
5904 this_command_key_count = keys_local_start;
5905 first_binding = local_first_binding;
5907 /* By default, assume each event is "real". */
5908 last_real_key_start = t;
5910 /* Does mock_input indicate that we are re-reading a key sequence? */
5911 if (t < mock_input)
5913 key = keybuf[t];
5914 add_command_key (key);
5915 if (echo_keystrokes)
5916 echo_char (key);
5919 /* If not, we should actually read a character. */
5920 else
5922 struct buffer *buf = current_buffer;
5925 #ifdef MULTI_KBOARD
5926 KBOARD *interrupted_kboard = current_kboard;
5927 struct frame *interrupted_frame = selected_frame;
5928 if (setjmp (wrong_kboard_jmpbuf))
5930 if (!NILP (delayed_switch_frame))
5932 interrupted_kboard->kbd_queue
5933 = Fcons (delayed_switch_frame,
5934 interrupted_kboard->kbd_queue);
5935 delayed_switch_frame = Qnil;
5937 while (t > 0)
5938 interrupted_kboard->kbd_queue
5939 = Fcons (keybuf[--t], interrupted_kboard->kbd_queue);
5941 /* If the side queue is non-empty, ensure it begins with a
5942 switch-frame, so we'll replay it in the right context. */
5943 if (CONSP (interrupted_kboard->kbd_queue)
5944 && (key = XCONS (interrupted_kboard->kbd_queue)->car,
5945 !(EVENT_HAS_PARAMETERS (key)
5946 && EQ (EVENT_HEAD_KIND (EVENT_HEAD (key)),
5947 Qswitch_frame))))
5949 Lisp_Object frame;
5950 XSETFRAME (frame, interrupted_frame);
5951 interrupted_kboard->kbd_queue
5952 = Fcons (make_lispy_switch_frame (frame),
5953 interrupted_kboard->kbd_queue);
5955 mock_input = 0;
5956 orig_local_map = get_local_map (PT, current_buffer);
5957 goto replay_sequence;
5959 #endif
5960 key = read_char (NILP (prompt), nmaps, submaps, last_nonmenu_event,
5961 &used_mouse_menu);
5964 /* read_char returns t when it shows a menu and the user rejects it.
5965 Just return -1. */
5966 if (EQ (key, Qt))
5967 return -1;
5969 /* read_char returns -1 at the end of a macro.
5970 Emacs 18 handles this by returning immediately with a
5971 zero, so that's what we'll do. */
5972 if (INTEGERP (key) && XINT (key) == -1)
5974 t = 0;
5975 /* The Microsoft C compiler can't handle the goto that
5976 would go here. */
5977 dummyflag = 1;
5978 break;
5981 /* If the current buffer has been changed from under us, the
5982 keymap may have changed, so replay the sequence. */
5983 if (BUFFERP (key))
5985 mock_input = t;
5986 orig_local_map = get_local_map (PT, current_buffer);
5987 goto replay_sequence;
5990 /* If we have a quit that was typed in another frame, and
5991 quit_throw_to_read_char switched buffers,
5992 replay to get the right keymap. */
5993 if (XINT (key) == quit_char && current_buffer != starting_buffer)
5995 keybuf[t++] = key;
5996 mock_input = t;
5997 Vquit_flag = Qnil;
5998 orig_local_map = get_local_map (PT, current_buffer);
5999 goto replay_sequence;
6002 Vquit_flag = Qnil;
6005 /* Clicks in non-text areas get prefixed by the symbol
6006 in their CHAR-ADDRESS field. For example, a click on
6007 the mode line is prefixed by the symbol `mode-line'.
6009 Furthermore, key sequences beginning with mouse clicks
6010 are read using the keymaps of the buffer clicked on, not
6011 the current buffer. So we may have to switch the buffer
6012 here.
6014 When we turn one event into two events, we must make sure
6015 that neither of the two looks like the original--so that,
6016 if we replay the events, they won't be expanded again.
6017 If not for this, such reexpansion could happen either here
6018 or when user programs play with this-command-keys. */
6019 if (EVENT_HAS_PARAMETERS (key))
6021 Lisp_Object kind;
6023 kind = EVENT_HEAD_KIND (EVENT_HEAD (key));
6024 if (EQ (kind, Qmouse_click))
6026 Lisp_Object window, posn;
6028 window = POSN_WINDOW (EVENT_START (key));
6029 posn = POSN_BUFFER_POSN (EVENT_START (key));
6030 if (CONSP (posn))
6032 /* We're looking at the second event of a
6033 sequence which we expanded before. Set
6034 last_real_key_start appropriately. */
6035 if (t > 0)
6036 last_real_key_start = t - 1;
6039 /* Key sequences beginning with mouse clicks are
6040 read using the keymaps in the buffer clicked on,
6041 not the current buffer. If we're at the
6042 beginning of a key sequence, switch buffers. */
6043 if (last_real_key_start == 0
6044 && WINDOWP (window)
6045 && BUFFERP (XWINDOW (window)->buffer)
6046 && XBUFFER (XWINDOW (window)->buffer) != current_buffer)
6048 keybuf[t] = key;
6049 mock_input = t + 1;
6051 /* Arrange to go back to the original buffer once we're
6052 done reading the key sequence. Note that we can't
6053 use save_excursion_{save,restore} here, because they
6054 save point as well as the current buffer; we don't
6055 want to save point, because redisplay may change it,
6056 to accommodate a Fset_window_start or something. We
6057 don't want to do this at the top of the function,
6058 because we may get input from a subprocess which
6059 wants to change the selected window and stuff (say,
6060 emacsclient). */
6061 record_unwind_protect (Fset_buffer, Fcurrent_buffer ());
6063 set_buffer_internal (XBUFFER (XWINDOW (window)->buffer));
6064 orig_local_map = get_local_map (PT, current_buffer);
6065 goto replay_sequence;
6067 /* For a mouse click, get the local text-property keymap
6068 of the place clicked on, rather than point. */
6069 if (last_real_key_start == 0 && CONSP (XCONS (key)->cdr)
6070 && ! localized_local_map)
6072 Lisp_Object map_here, start, pos;
6074 localized_local_map = 1;
6075 start = EVENT_START (key);
6076 if (CONSP (start) && CONSP (XCONS (start)->cdr))
6078 pos = POSN_BUFFER_POSN (start);
6079 if (INTEGERP (pos)
6080 && XINT (pos) >= BEG && XINT (pos) <= Z)
6082 map_here = get_local_map (XINT (pos), current_buffer);
6083 if (!EQ (map_here, orig_local_map))
6085 orig_local_map = map_here;
6086 keybuf[t] = key;
6087 mock_input = t + 1;
6089 goto replay_sequence;
6095 /* Expand mode-line and scroll-bar events into two events:
6096 use posn as a fake prefix key. */
6097 if (SYMBOLP (posn))
6099 if (t + 1 >= bufsize)
6100 error ("Key sequence too long");
6101 keybuf[t] = posn;
6102 keybuf[t+1] = key;
6103 mock_input = t + 2;
6105 /* Zap the position in key, so we know that we've
6106 expanded it, and don't try to do so again. */
6107 POSN_BUFFER_POSN (EVENT_START (key))
6108 = Fcons (posn, Qnil);
6109 goto replay_key;
6112 else if (EQ (kind, Qswitch_frame))
6114 /* If we're at the beginning of a key sequence, and the caller
6115 says it's okay, go ahead and return this event. If we're
6116 in the midst of a key sequence, delay it until the end. */
6117 if (t > 0 || !can_return_switch_frame)
6119 delayed_switch_frame = key;
6120 goto replay_key;
6123 else if (CONSP (XCONS (key)->cdr)
6124 && CONSP (EVENT_START (key))
6125 && CONSP (XCONS (EVENT_START (key))->cdr))
6127 Lisp_Object posn;
6129 posn = POSN_BUFFER_POSN (EVENT_START (key));
6130 /* Handle menu-bar events:
6131 insert the dummy prefix event `menu-bar'. */
6132 if (EQ (posn, Qmenu_bar))
6134 if (t + 1 >= bufsize)
6135 error ("Key sequence too long");
6136 keybuf[t] = posn;
6137 keybuf[t+1] = key;
6139 /* Zap the position in key, so we know that we've
6140 expanded it, and don't try to do so again. */
6141 POSN_BUFFER_POSN (EVENT_START (key))
6142 = Fcons (posn, Qnil);
6144 mock_input = t + 2;
6145 goto replay_sequence;
6147 else if (CONSP (posn))
6149 /* We're looking at the second event of a
6150 sequence which we expanded before. Set
6151 last_real_key_start appropriately. */
6152 if (last_real_key_start == t && t > 0)
6153 last_real_key_start = t - 1;
6158 /* We have finally decided that KEY is something we might want
6159 to look up. */
6160 first_binding = (follow_key (key,
6161 nmaps - first_binding,
6162 submaps + first_binding,
6163 defs + first_binding,
6164 submaps + first_binding)
6165 + first_binding);
6167 /* If KEY wasn't bound, we'll try some fallbacks. */
6168 if (first_binding >= nmaps)
6170 Lisp_Object head;
6172 head = EVENT_HEAD (key);
6173 if (help_char_p (head) && t > 0)
6175 read_key_sequence_cmd = Vprefix_help_command;
6176 keybuf[t++] = key;
6177 last_nonmenu_event = key;
6178 /* The Microsoft C compiler can't handle the goto that
6179 would go here. */
6180 dummyflag = 1;
6181 break;
6184 if (SYMBOLP (head))
6186 Lisp_Object breakdown;
6187 int modifiers;
6189 breakdown = parse_modifiers (head);
6190 modifiers = XINT (XCONS (XCONS (breakdown)->cdr)->car);
6191 /* Attempt to reduce an unbound mouse event to a simpler
6192 event that is bound:
6193 Drags reduce to clicks.
6194 Double-clicks reduce to clicks.
6195 Triple-clicks reduce to double-clicks, then to clicks.
6196 Down-clicks are eliminated.
6197 Double-downs reduce to downs, then are eliminated.
6198 Triple-downs reduce to double-downs, then to downs,
6199 then are eliminated. */
6200 if (modifiers & (down_modifier | drag_modifier
6201 | double_modifier | triple_modifier))
6203 while (modifiers & (down_modifier | drag_modifier
6204 | double_modifier | triple_modifier))
6206 Lisp_Object new_head, new_click;
6207 if (modifiers & triple_modifier)
6208 modifiers ^= (double_modifier | triple_modifier);
6209 else if (modifiers & double_modifier)
6210 modifiers &= ~double_modifier;
6211 else if (modifiers & drag_modifier)
6212 modifiers &= ~drag_modifier;
6213 else
6215 /* Dispose of this `down' event by simply jumping
6216 back to replay_key, to get another event.
6218 Note that if this event came from mock input,
6219 then just jumping back to replay_key will just
6220 hand it to us again. So we have to wipe out any
6221 mock input.
6223 We could delete keybuf[t] and shift everything
6224 after that to the left by one spot, but we'd also
6225 have to fix up any variable that points into
6226 keybuf, and shifting isn't really necessary
6227 anyway.
6229 Adding prefixes for non-textual mouse clicks
6230 creates two characters of mock input, and both
6231 must be thrown away. If we're only looking at
6232 the prefix now, we can just jump back to
6233 replay_key. On the other hand, if we've already
6234 processed the prefix, and now the actual click
6235 itself is giving us trouble, then we've lost the
6236 state of the keymaps we want to backtrack to, and
6237 we need to replay the whole sequence to rebuild
6240 Beyond that, only function key expansion could
6241 create more than two keys, but that should never
6242 generate mouse events, so it's okay to zero
6243 mock_input in that case too.
6245 Isn't this just the most wonderful code ever? */
6246 if (t == last_real_key_start)
6248 mock_input = 0;
6249 goto replay_key;
6251 else
6253 mock_input = last_real_key_start;
6254 goto replay_sequence;
6258 new_head
6259 = apply_modifiers (modifiers, XCONS (breakdown)->car);
6260 new_click
6261 = Fcons (new_head, Fcons (EVENT_START (key), Qnil));
6263 /* Look for a binding for this new key. follow_key
6264 promises that it didn't munge submaps the
6265 last time we called it, since key was unbound. */
6266 first_binding
6267 = (follow_key (new_click,
6268 nmaps - local_first_binding,
6269 submaps + local_first_binding,
6270 defs + local_first_binding,
6271 submaps + local_first_binding)
6272 + local_first_binding);
6274 /* If that click is bound, go for it. */
6275 if (first_binding < nmaps)
6277 key = new_click;
6278 break;
6280 /* Otherwise, we'll leave key set to the drag event. */
6286 keybuf[t++] = key;
6287 /* Normally, last_nonmenu_event gets the previous key we read.
6288 But when a mouse popup menu is being used,
6289 we don't update last_nonmenu_event; it continues to hold the mouse
6290 event that preceded the first level of menu. */
6291 if (!used_mouse_menu)
6292 last_nonmenu_event = key;
6294 prev_fkey_map = fkey_map;
6295 prev_fkey_start = fkey_start;
6296 prev_fkey_end = fkey_end;
6298 prev_keytran_map = keytran_map;
6299 prev_keytran_start = keytran_start;
6300 prev_keytran_end = keytran_end;
6302 /* If the sequence is unbound, see if we can hang a function key
6303 off the end of it. We only want to scan real keyboard input
6304 for function key sequences, so if mock_input says that we're
6305 re-reading old events, don't examine it. */
6306 if (first_binding >= nmaps
6307 && t >= mock_input)
6309 Lisp_Object fkey_next;
6311 /* Continue scan from fkey_end until we find a bound suffix.
6312 If we fail, increment fkey_start
6313 and start fkey_end from there. */
6314 while (fkey_end < t)
6316 Lisp_Object key;
6318 key = keybuf[fkey_end++];
6319 /* Look up meta-characters by prefixing them
6320 with meta_prefix_char. I hate this. */
6321 if (INTEGERP (key) && XINT (key) & meta_modifier)
6323 fkey_next
6324 = get_keymap_1
6325 (get_keyelt
6326 (access_keymap (fkey_map, meta_prefix_char, 1, 0)),
6327 0, 1);
6328 XSETFASTINT (key, XFASTINT (key) & ~meta_modifier);
6330 else
6331 fkey_next = fkey_map;
6333 fkey_next
6334 = get_keyelt (access_keymap (fkey_next, key, 1, 0));
6336 #if 0 /* I didn't turn this on, because it might cause trouble
6337 for the mapping of return into C-m and tab into C-i. */
6338 /* Optionally don't map function keys into other things.
6339 This enables the user to redefine kp- keys easily. */
6340 if (SYMBOLP (key) && !NILP (Vinhibit_function_key_mapping))
6341 fkey_next = Qnil;
6342 #endif
6344 /* If the function key map gives a function, not an
6345 array, then call the function with no args and use
6346 its value instead. */
6347 if (SYMBOLP (fkey_next) && ! NILP (Ffboundp (fkey_next))
6348 && fkey_end == t)
6350 struct gcpro gcpro1, gcpro2, gcpro3;
6351 Lisp_Object tem;
6352 tem = fkey_next;
6354 GCPRO3 (fkey_map, keytran_map, delayed_switch_frame);
6355 fkey_next = call1 (fkey_next, prompt);
6356 UNGCPRO;
6357 /* If the function returned something invalid,
6358 barf--don't ignore it.
6359 (To ignore it safely, we would need to gcpro a bunch of
6360 other variables.) */
6361 if (! (VECTORP (fkey_next) || STRINGP (fkey_next)))
6362 error ("Function in function-key-map returns invalid key sequence");
6365 function_key_possible = ! NILP (fkey_next);
6367 /* If keybuf[fkey_start..fkey_end] is bound in the
6368 function key map and it's a suffix of the current
6369 sequence (i.e. fkey_end == t), replace it with
6370 the binding and restart with fkey_start at the end. */
6371 if ((VECTORP (fkey_next) || STRINGP (fkey_next))
6372 && fkey_end == t)
6374 int len = XFASTINT (Flength (fkey_next));
6376 t = fkey_start + len;
6377 if (t >= bufsize)
6378 error ("Key sequence too long");
6380 if (VECTORP (fkey_next))
6381 bcopy (XVECTOR (fkey_next)->contents,
6382 keybuf + fkey_start,
6383 (t - fkey_start) * sizeof (keybuf[0]));
6384 else if (STRINGP (fkey_next))
6386 int i;
6388 for (i = 0; i < len; i++)
6389 XSETFASTINT (keybuf[fkey_start + i],
6390 XSTRING (fkey_next)->data[i]);
6393 mock_input = t;
6394 fkey_start = fkey_end = t;
6395 fkey_map = Vfunction_key_map;
6397 /* Do pass the results through key-translation-map. */
6398 keytran_start = keytran_end = 0;
6399 keytran_map = Vkey_translation_map;
6401 goto replay_sequence;
6404 fkey_map = get_keymap_1 (fkey_next, 0, 1);
6406 /* If we no longer have a bound suffix, try a new positions for
6407 fkey_start. */
6408 if (NILP (fkey_map))
6410 fkey_end = ++fkey_start;
6411 fkey_map = Vfunction_key_map;
6412 function_key_possible = 0;
6417 /* Look for this sequence in key-translation-map. */
6419 Lisp_Object keytran_next;
6421 /* Scan from keytran_end until we find a bound suffix. */
6422 while (keytran_end < t)
6424 Lisp_Object key;
6426 key = keybuf[keytran_end++];
6427 /* Look up meta-characters by prefixing them
6428 with meta_prefix_char. I hate this. */
6429 if (INTEGERP (key) && XINT (key) & meta_modifier)
6431 keytran_next
6432 = get_keymap_1
6433 (get_keyelt
6434 (access_keymap (keytran_map, meta_prefix_char, 1, 0)),
6435 0, 1);
6436 XSETFASTINT (key, XFASTINT (key) & ~meta_modifier);
6438 else
6439 keytran_next = keytran_map;
6441 keytran_next
6442 = get_keyelt (access_keymap (keytran_next, key, 1, 0));
6444 /* If the key translation map gives a function, not an
6445 array, then call the function with no args and use
6446 its value instead. */
6447 if (SYMBOLP (keytran_next) && ! NILP (Ffboundp (keytran_next))
6448 && keytran_end == t)
6450 struct gcpro gcpro1, gcpro2, gcpro3;
6451 Lisp_Object tem;
6452 tem = keytran_next;
6454 GCPRO3 (fkey_map, keytran_map, delayed_switch_frame);
6455 keytran_next = call1 (keytran_next, prompt);
6456 UNGCPRO;
6457 /* If the function returned something invalid,
6458 barf--don't ignore it.
6459 (To ignore it safely, we would need to gcpro a bunch of
6460 other variables.) */
6461 if (! (VECTORP (keytran_next) || STRINGP (keytran_next)))
6462 error ("Function in key-translation-map returns invalid key sequence");
6465 key_translation_possible = ! NILP (keytran_next);
6467 /* If keybuf[keytran_start..keytran_end] is bound in the
6468 key translation map and it's a suffix of the current
6469 sequence (i.e. keytran_end == t), replace it with
6470 the binding and restart with keytran_start at the end. */
6471 if ((VECTORP (keytran_next) || STRINGP (keytran_next))
6472 && keytran_end == t)
6474 int len = XFASTINT (Flength (keytran_next));
6476 t = keytran_start + len;
6477 if (t >= bufsize)
6478 error ("Key sequence too long");
6480 if (VECTORP (keytran_next))
6481 bcopy (XVECTOR (keytran_next)->contents,
6482 keybuf + keytran_start,
6483 (t - keytran_start) * sizeof (keybuf[0]));
6484 else if (STRINGP (keytran_next))
6486 int i;
6488 for (i = 0; i < len; i++)
6489 XSETFASTINT (keybuf[keytran_start + i],
6490 XSTRING (keytran_next)->data[i]);
6493 mock_input = t;
6494 keytran_start = keytran_end = t;
6495 keytran_map = Vkey_translation_map;
6497 /* Don't pass the results of key-translation-map
6498 through function-key-map. */
6499 fkey_start = fkey_end = t;
6500 fkey_map = Vkey_translation_map;
6502 goto replay_sequence;
6505 keytran_map = get_keymap_1 (keytran_next, 0, 1);
6507 /* If we no longer have a bound suffix, try a new positions for
6508 keytran_start. */
6509 if (NILP (keytran_map))
6511 keytran_end = ++keytran_start;
6512 keytran_map = Vkey_translation_map;
6513 key_translation_possible = 0;
6518 /* If KEY is not defined in any of the keymaps,
6519 and cannot be part of a function key or translation,
6520 and is an upper case letter
6521 use the corresponding lower-case letter instead. */
6522 if (first_binding == nmaps && ! function_key_possible
6523 && ! key_translation_possible
6524 && INTEGERP (key)
6525 && ((((XINT (key) & 0x3ffff)
6526 < XSTRING (current_buffer->downcase_table)->size)
6527 && UPPERCASEP (XINT (key) & 0x3ffff))
6528 || (XINT (key) & shift_modifier)))
6530 Lisp_Object new_key;
6532 original_uppercase = key;
6533 original_uppercase_position = t - 1;
6535 if (XINT (new_key) & shift_modifier)
6536 XSETINT (new_key, XINT (key) & ~shift_modifier);
6537 else
6538 XSETINT (new_key, (DOWNCASE (XINT (key) & 0x3ffff)
6539 | (XINT (key) & ~0x3ffff)));
6541 /* We have to do this unconditionally, regardless of whether
6542 the lower-case char is defined in the keymaps, because they
6543 might get translated through function-key-map. */
6544 keybuf[t - 1] = new_key;
6545 mock_input = t;
6547 fkey_map = prev_fkey_map;
6548 fkey_start = prev_fkey_start;
6549 fkey_end = prev_fkey_end;
6551 keytran_map = prev_keytran_map;
6552 keytran_start = prev_keytran_start;
6553 keytran_end = prev_keytran_end;
6555 goto replay_sequence;
6557 /* If KEY is not defined in any of the keymaps,
6558 and cannot be part of a function key or translation,
6559 and is a shifted function key,
6560 use the corresponding unshifted function key instead. */
6561 if (first_binding == nmaps && ! function_key_possible
6562 && ! key_translation_possible
6563 && SYMBOLP (key))
6565 Lisp_Object breakdown;
6566 int modifiers;
6568 breakdown = parse_modifiers (key);
6569 modifiers = XINT (XCONS (XCONS (breakdown)->cdr)->car);
6570 if (modifiers & shift_modifier)
6572 Lisp_Object new_key;
6574 original_uppercase = key;
6575 original_uppercase_position = t - 1;
6577 modifiers &= ~shift_modifier;
6578 new_key = apply_modifiers (modifiers,
6579 XCONS (breakdown)->car);
6581 keybuf[t - 1] = new_key;
6582 mock_input = t;
6584 fkey_map = prev_fkey_map;
6585 fkey_start = prev_fkey_start;
6586 fkey_end = prev_fkey_end;
6588 keytran_map = prev_keytran_map;
6589 keytran_start = prev_keytran_start;
6590 keytran_end = prev_keytran_end;
6592 goto replay_sequence;
6597 if (!dummyflag)
6598 read_key_sequence_cmd = (first_binding < nmaps
6599 ? defs[first_binding]
6600 : Qnil);
6602 unread_switch_frame = delayed_switch_frame;
6603 unbind_to (count, Qnil);
6605 /* Don't downcase the last character if the caller says don't.
6606 Don't downcase it if the result is undefined, either. */
6607 if ((dont_downcase_last || first_binding >= nmaps)
6608 && t - 1 == original_uppercase_position)
6609 keybuf[t - 1] = original_uppercase;
6611 /* Occasionally we fabricate events, perhaps by expanding something
6612 according to function-key-map, or by adding a prefix symbol to a
6613 mouse click in the scroll bar or modeline. In this cases, return
6614 the entire generated key sequence, even if we hit an unbound
6615 prefix or a definition before the end. This means that you will
6616 be able to push back the event properly, and also means that
6617 read-key-sequence will always return a logical unit.
6619 Better ideas? */
6620 for (; t < mock_input; t++)
6622 if (echo_keystrokes)
6623 echo_char (keybuf[t]);
6624 add_command_key (keybuf[t]);
6627 return t;
6630 #if 0 /* This doc string is too long for some compilers.
6631 This commented-out definition serves for DOC. */
6632 DEFUN ("read-key-sequence", Fread_key_sequence, Sread_key_sequence, 1, 4, 0,
6633 "Read a sequence of keystrokes and return as a string or vector.\n\
6634 The sequence is sufficient to specify a non-prefix command in the\n\
6635 current local and global maps.\n\
6637 First arg PROMPT is a prompt string. If nil, do not prompt specially.\n\
6638 Second (optional) arg CONTINUE-ECHO, if non-nil, means this key echos\n\
6639 as a continuation of the previous key.\n\
6641 The third (optional) arg DONT-DOWNCASE-LAST, if non-nil, means do not\n\
6642 convert the last event to lower case. (Normally any upper case event\n\
6643 is converted to lower case if the original event is undefined and the lower\n\
6644 case equivalent is defined.) A non-nil value is appropriate for reading\n\
6645 a key sequence to be defined.\n\
6647 A C-g typed while in this function is treated like any other character,\n\
6648 and `quit-flag' is not set.\n\
6650 If the key sequence starts with a mouse click, then the sequence is read\n\
6651 using the keymaps of the buffer of the window clicked in, not the buffer\n\
6652 of the selected window as normal.\n\
6653 ""\n\
6654 `read-key-sequence' drops unbound button-down events, since you normally\n\
6655 only care about the click or drag events which follow them. If a drag\n\
6656 or multi-click event is unbound, but the corresponding click event would\n\
6657 be bound, `read-key-sequence' turns the event into a click event at the\n\
6658 drag's starting position. This means that you don't have to distinguish\n\
6659 between click and drag, double, or triple events unless you want to.\n\
6661 `read-key-sequence' prefixes mouse events on mode lines, the vertical\n\
6662 lines separating windows, and scroll bars with imaginary keys\n\
6663 `mode-line', `vertical-line', and `vertical-scroll-bar'.\n\
6665 Optional fourth argument CAN-RETURN-SWITCH-FRAME non-nil means that this\n\
6666 function will process a switch-frame event if the user switches frames\n\
6667 before typing anything. If the user switches frames in the middle of a\n\
6668 key sequence, or at the start of the sequence but CAN-RETURN-SWITCH-FRAME\n\
6669 is nil, then the event will be put off until after the current key sequence.\n\
6671 `read-key-sequence' checks `function-key-map' for function key\n\
6672 sequences, where they wouldn't conflict with ordinary bindings. See\n\
6673 `function-key-map' for more details.")
6674 (prompt, continue_echo, dont_downcase_last, can_return_switch_frame)
6675 #endif
6677 DEFUN ("read-key-sequence", Fread_key_sequence, Sread_key_sequence, 1, 4, 0,
6679 (prompt, continue_echo, dont_downcase_last, can_return_switch_frame)
6680 Lisp_Object prompt, continue_echo, dont_downcase_last;
6681 Lisp_Object can_return_switch_frame;
6683 Lisp_Object keybuf[30];
6684 register int i;
6685 struct gcpro gcpro1, gcpro2;
6687 if (!NILP (prompt))
6688 CHECK_STRING (prompt, 0);
6689 QUIT;
6691 bzero (keybuf, sizeof keybuf);
6692 GCPRO1 (keybuf[0]);
6693 gcpro1.nvars = (sizeof keybuf/sizeof (keybuf[0]));
6695 if (NILP (continue_echo))
6696 this_command_key_count = 0;
6698 i = read_key_sequence (keybuf, (sizeof keybuf/sizeof (keybuf[0])),
6699 prompt, ! NILP (dont_downcase_last),
6700 ! NILP (can_return_switch_frame));
6702 if (i == -1)
6704 Vquit_flag = Qt;
6705 QUIT;
6707 UNGCPRO;
6708 return make_event_array (i, keybuf);
6711 DEFUN ("command-execute", Fcommand_execute, Scommand_execute, 1, 4, 0,
6712 "Execute CMD as an editor command.\n\
6713 CMD must be a symbol that satisfies the `commandp' predicate.\n\
6714 Optional second arg RECORD-FLAG non-nil\n\
6715 means unconditionally put this command in `command-history'.\n\
6716 Otherwise, that is done only if an arg is read using the minibuffer.\n\
6717 The argument KEYS specifies the value to use instead of (this-command-keys)\n\
6718 when reading the arguments; if it is nil, (this_command_key_count) is used.\n\
6719 The argument SPECIAL, if non-nil, means that this command is executing\n\
6720 a special event, so ignore the prefix argument and don't clear it.")
6721 (cmd, record_flag, keys, special)
6722 Lisp_Object cmd, record_flag, keys, special;
6724 register Lisp_Object final;
6725 register Lisp_Object tem;
6726 Lisp_Object prefixarg;
6727 struct backtrace backtrace;
6728 extern int debug_on_next_call;
6730 debug_on_next_call = 0;
6732 if (NILP (special))
6734 prefixarg = current_kboard->Vprefix_arg;
6735 Vcurrent_prefix_arg = prefixarg;
6736 current_kboard->Vprefix_arg = Qnil;
6738 else
6739 prefixarg = Qnil;
6741 if (SYMBOLP (cmd))
6743 tem = Fget (cmd, Qdisabled);
6744 if (!NILP (tem) && !NILP (Vrun_hooks))
6746 tem = Fsymbol_value (Qdisabled_command_hook);
6747 if (!NILP (tem))
6748 return call1 (Vrun_hooks, Qdisabled_command_hook);
6752 while (1)
6754 final = Findirect_function (cmd);
6756 if (CONSP (final) && (tem = Fcar (final), EQ (tem, Qautoload)))
6757 do_autoload (final, cmd);
6758 else
6759 break;
6762 if (STRINGP (final) || VECTORP (final))
6764 /* If requested, place the macro in the command history. For
6765 other sorts of commands, call-interactively takes care of
6766 this. */
6767 if (!NILP (record_flag))
6768 Vcommand_history
6769 = Fcons (Fcons (Qexecute_kbd_macro,
6770 Fcons (final, Fcons (prefixarg, Qnil))),
6771 Vcommand_history);
6773 return Fexecute_kbd_macro (final, prefixarg);
6775 if (CONSP (final) || SUBRP (final) || COMPILEDP (final))
6777 backtrace.next = backtrace_list;
6778 backtrace_list = &backtrace;
6779 backtrace.function = &Qcall_interactively;
6780 backtrace.args = &cmd;
6781 backtrace.nargs = 1;
6782 backtrace.evalargs = 0;
6784 tem = Fcall_interactively (cmd, record_flag, keys);
6786 backtrace_list = backtrace.next;
6787 return tem;
6789 return Qnil;
6792 DEFUN ("execute-extended-command", Fexecute_extended_command, Sexecute_extended_command,
6793 1, 1, "P",
6794 "Read function name, then read its arguments and call it.")
6795 (prefixarg)
6796 Lisp_Object prefixarg;
6798 Lisp_Object function;
6799 char buf[40];
6800 Lisp_Object saved_keys;
6801 struct gcpro gcpro1;
6803 saved_keys = Fvector (this_command_key_count,
6804 XVECTOR (this_command_keys)->contents);
6805 buf[0] = 0;
6806 GCPRO1 (saved_keys);
6808 if (EQ (prefixarg, Qminus))
6809 strcpy (buf, "- ");
6810 else if (CONSP (prefixarg) && XINT (XCONS (prefixarg)->car) == 4)
6811 strcpy (buf, "C-u ");
6812 else if (CONSP (prefixarg) && INTEGERP (XCONS (prefixarg)->car))
6814 if (sizeof (int) == sizeof (EMACS_INT))
6815 sprintf (buf, "%d ", XINT (XCONS (prefixarg)->car));
6816 else if (sizeof (long) == sizeof (EMACS_INT))
6817 sprintf (buf, "%ld ", XINT (XCONS (prefixarg)->car));
6818 else
6819 abort ();
6821 else if (INTEGERP (prefixarg))
6823 if (sizeof (int) == sizeof (EMACS_INT))
6824 sprintf (buf, "%d ", XINT (prefixarg));
6825 else if (sizeof (long) == sizeof (EMACS_INT))
6826 sprintf (buf, "%ld ", XINT (prefixarg));
6827 else
6828 abort ();
6831 /* This isn't strictly correct if execute-extended-command
6832 is bound to anything else. Perhaps it should use
6833 this_command_keys? */
6834 strcat (buf, "M-x ");
6836 /* Prompt with buf, and then read a string, completing from and
6837 restricting to the set of all defined commands. Don't provide
6838 any initial input. Save the command read on the extended-command
6839 history list. */
6840 function = Fcompleting_read (build_string (buf),
6841 Vobarray, Qcommandp,
6842 Qt, Qnil, Qextended_command_history);
6844 if (STRINGP (function) && XSTRING (function)->size == 0)
6845 error ("No command name given");
6847 /* Set this_command_keys to the concatenation of saved_keys and
6848 function, followed by a RET. */
6850 struct Lisp_String *str;
6851 Lisp_Object *keys;
6852 int i;
6853 Lisp_Object tem;
6855 this_command_key_count = 0;
6857 keys = XVECTOR (saved_keys)->contents;
6858 for (i = 0; i < XVECTOR (saved_keys)->size; i++)
6859 add_command_key (keys[i]);
6861 str = XSTRING (function);
6862 for (i = 0; i < str->size; i++)
6864 XSETFASTINT (tem, str->data[i]);
6865 add_command_key (tem);
6868 XSETFASTINT (tem, '\015');
6869 add_command_key (tem);
6872 UNGCPRO;
6874 function = Fintern (function, Qnil);
6875 current_kboard->Vprefix_arg = prefixarg;
6876 this_command = function;
6878 /* If enabled, show which key runs this command. */
6879 if (!NILP (Vsuggest_key_bindings)
6880 && SYMBOLP (function))
6882 Lisp_Object bindings;
6884 bindings = Fwhere_is_internal (function, Voverriding_local_map,
6885 Qt, Qnil);
6887 if (!NILP (bindings))
6889 message ("You can run the command `%s' by typing %s",
6890 XSYMBOL (function)->name->data,
6891 XSTRING (Fkey_description (bindings))->data);
6892 Fsit_for ((NUMBERP (Vsuggest_key_bindings)
6893 ? Vsuggest_key_bindings : make_number (2)),
6894 Qnil, Qnil);
6898 return Fcommand_execute (function, Qt, Qnil, Qnil);
6901 /* Find the set of keymaps now active.
6902 Store into *MAPS_P a vector holding the various maps
6903 and return the number of them. The vector was malloc'd
6904 and the caller should free it. */
6907 current_active_maps (maps_p)
6908 Lisp_Object **maps_p;
6910 Lisp_Object *tmaps, *maps;
6911 int nmaps;
6913 /* Should overriding-terminal-local-map and overriding-local-map apply? */
6914 if (!NILP (Voverriding_local_map_menu_flag))
6916 /* Yes, use them (if non-nil) as well as the global map. */
6917 maps = (Lisp_Object *) xmalloc (3 * sizeof (maps[0]));
6918 nmaps = 0;
6919 if (!NILP (current_kboard->Voverriding_terminal_local_map))
6920 maps[nmaps++] = current_kboard->Voverriding_terminal_local_map;
6921 if (!NILP (Voverriding_local_map))
6922 maps[nmaps++] = Voverriding_local_map;
6924 else
6926 /* No, so use major and minor mode keymaps. */
6927 nmaps = current_minor_maps (NULL, &tmaps);
6928 maps = (Lisp_Object *) xmalloc ((nmaps + 2) * sizeof (maps[0]));
6929 bcopy (tmaps, maps, nmaps * sizeof (maps[0]));
6930 #ifdef USE_TEXT_PROPERTIES
6931 maps[nmaps++] = get_local_map (PT, current_buffer);
6932 #else
6933 maps[nmaps++] = current_buffer->keymap;
6934 #endif
6936 maps[nmaps++] = current_global_map;
6938 *maps_p = maps;
6939 return nmaps;
6942 /* Return nonzero if input events are pending. */
6944 detect_input_pending ()
6946 if (!input_pending)
6947 get_input_pending (&input_pending, 0);
6949 return input_pending;
6952 /* Return nonzero if input events are pending.
6953 Execute timers immediately; don't make events for them. */
6955 detect_input_pending_run_timers ()
6957 if (!input_pending)
6958 get_input_pending (&input_pending, 1);
6960 return input_pending;
6963 /* This is called in some cases before a possible quit.
6964 It cases the next call to detect_input_pending to recompute input_pending.
6965 So calling this function unnecessarily can't do any harm. */
6966 clear_input_pending ()
6968 input_pending = 0;
6971 DEFUN ("input-pending-p", Finput_pending_p, Sinput_pending_p, 0, 0, 0,
6972 "T if command input is currently available with no waiting.\n\
6973 Actually, the value is nil only if we can be sure that no input is available.")
6976 if (!NILP (Vunread_command_events) || unread_command_char != -1)
6977 return (Qt);
6979 get_input_pending (&input_pending, 1);
6980 return input_pending > 0 ? Qt : Qnil;
6983 DEFUN ("recent-keys", Frecent_keys, Srecent_keys, 0, 0, 0,
6984 "Return vector of last 100 events, not counting those from keyboard macros.")
6987 Lisp_Object *keys = XVECTOR (recent_keys)->contents;
6988 Lisp_Object val;
6990 if (total_keys < NUM_RECENT_KEYS)
6991 return Fvector (total_keys, keys);
6992 else
6994 val = Fvector (NUM_RECENT_KEYS, keys);
6995 bcopy (keys + recent_keys_index,
6996 XVECTOR (val)->contents,
6997 (NUM_RECENT_KEYS - recent_keys_index) * sizeof (Lisp_Object));
6998 bcopy (keys,
6999 XVECTOR (val)->contents + NUM_RECENT_KEYS - recent_keys_index,
7000 recent_keys_index * sizeof (Lisp_Object));
7001 return val;
7005 DEFUN ("this-command-keys", Fthis_command_keys, Sthis_command_keys, 0, 0, 0,
7006 "Return the key sequence that invoked this command.\n\
7007 The value is a string or a vector.")
7010 return make_event_array (this_command_key_count,
7011 XVECTOR (this_command_keys)->contents);
7014 DEFUN ("reset-this-command-lengths", Freset_this_command_lengths,
7015 Sreset_this_command_lengths, 0, 0, 0,
7016 "Used for complicated reasons in `universal-argument-other-key'.\n\
7018 `universal-argument-other-key' rereads the event just typed.\n\
7019 It then gets translated through `function-key-map'.\n\
7020 The translated event gets included in the echo area and in\n\
7021 the value of `this-command-keys' in addition to the raw original event.\n\
7022 That is not right.\n\
7024 Calling this function directs the translated event to replace\n\
7025 the original event, so that only one version of the event actually\n\
7026 appears in the echo area and in the value of `this-command-keys.'.")
7029 before_command_restore_flag = 1;
7030 before_command_key_count_1 = before_command_key_count;
7031 before_command_echo_length_1 = before_command_echo_length;
7034 DEFUN ("recursion-depth", Frecursion_depth, Srecursion_depth, 0, 0, 0,
7035 "Return the current depth in recursive edits.")
7038 Lisp_Object temp;
7039 XSETFASTINT (temp, command_loop_level + minibuf_level);
7040 return temp;
7043 DEFUN ("open-dribble-file", Fopen_dribble_file, Sopen_dribble_file, 1, 1,
7044 "FOpen dribble file: ",
7045 "Start writing all keyboard characters to a dribble file called FILE.\n\
7046 If FILE is nil, close any open dribble file.")
7047 (file)
7048 Lisp_Object file;
7050 if (dribble)
7052 fclose (dribble);
7053 dribble = 0;
7055 if (!NILP (file))
7057 file = Fexpand_file_name (file, Qnil);
7058 dribble = fopen (XSTRING (file)->data, "w");
7059 if (dribble == 0)
7060 report_file_error ("Opening dribble", Fcons (file, Qnil));
7062 return Qnil;
7065 DEFUN ("discard-input", Fdiscard_input, Sdiscard_input, 0, 0, 0,
7066 "Discard the contents of the terminal input buffer.\n\
7067 Also cancel any kbd macro being defined.")
7070 current_kboard->defining_kbd_macro = Qnil;
7071 update_mode_lines++;
7073 Vunread_command_events = Qnil;
7074 unread_command_char = -1;
7076 discard_tty_input ();
7078 /* Without the cast, GCC complains that this assignment loses the
7079 volatile qualifier of kbd_store_ptr. Is there anything wrong
7080 with that? */
7081 kbd_fetch_ptr = (struct input_event *) kbd_store_ptr;
7082 Ffillarray (kbd_buffer_frame_or_window, Qnil);
7083 input_pending = 0;
7085 return Qnil;
7088 DEFUN ("suspend-emacs", Fsuspend_emacs, Ssuspend_emacs, 0, 1, "",
7089 "Stop Emacs and return to superior process. You can resume later.\n\
7090 If `cannot-suspend' is non-nil, or if the system doesn't support job\n\
7091 control, run a subshell instead.\n\n\
7092 If optional arg STUFFSTRING is non-nil, its characters are stuffed\n\
7093 to be read as terminal input by Emacs's parent, after suspension.\n\
7095 Before suspending, run the normal hook `suspend-hook'.\n\
7096 After resumption run the normal hook `suspend-resume-hook'.\n\
7098 Some operating systems cannot stop the Emacs process and resume it later.\n\
7099 On such systems, Emacs starts a subshell instead of suspending.")
7100 (stuffstring)
7101 Lisp_Object stuffstring;
7103 Lisp_Object tem;
7104 int count = specpdl_ptr - specpdl;
7105 int old_height, old_width;
7106 int width, height;
7107 struct gcpro gcpro1, gcpro2;
7108 extern init_sys_modes ();
7110 if (!NILP (stuffstring))
7111 CHECK_STRING (stuffstring, 0);
7113 /* Run the functions in suspend-hook. */
7114 if (!NILP (Vrun_hooks))
7115 call1 (Vrun_hooks, intern ("suspend-hook"));
7117 GCPRO1 (stuffstring);
7118 get_frame_size (&old_width, &old_height);
7119 reset_sys_modes ();
7120 /* sys_suspend can get an error if it tries to fork a subshell
7121 and the system resources aren't available for that. */
7122 record_unwind_protect (init_sys_modes, 0);
7123 stuff_buffered_input (stuffstring);
7124 if (cannot_suspend)
7125 sys_subshell ();
7126 else
7127 sys_suspend ();
7128 unbind_to (count, Qnil);
7130 /* Check if terminal/window size has changed.
7131 Note that this is not useful when we are running directly
7132 with a window system; but suspend should be disabled in that case. */
7133 get_frame_size (&width, &height);
7134 if (width != old_width || height != old_height)
7135 change_frame_size (selected_frame, height, width, 0, 0);
7137 /* Run suspend-resume-hook. */
7138 if (!NILP (Vrun_hooks))
7139 call1 (Vrun_hooks, intern ("suspend-resume-hook"));
7141 UNGCPRO;
7142 return Qnil;
7145 /* If STUFFSTRING is a string, stuff its contents as pending terminal input.
7146 Then in any case stuff anything Emacs has read ahead and not used. */
7148 stuff_buffered_input (stuffstring)
7149 Lisp_Object stuffstring;
7151 /* stuff_char works only in BSD, versions 4.2 and up. */
7152 #ifdef BSD
7153 #ifndef BSD4_1
7154 register unsigned char *p;
7156 if (STRINGP (stuffstring))
7158 register int count;
7160 p = XSTRING (stuffstring)->data;
7161 count = XSTRING (stuffstring)->size;
7162 while (count-- > 0)
7163 stuff_char (*p++);
7164 stuff_char ('\n');
7166 /* Anything we have read ahead, put back for the shell to read. */
7167 /* ?? What should this do when we have multiple keyboards??
7168 Should we ignore anything that was typed in at the "wrong" kboard? */
7169 for (; kbd_fetch_ptr != kbd_store_ptr; kbd_fetch_ptr++)
7171 if (kbd_fetch_ptr == kbd_buffer + KBD_BUFFER_SIZE)
7172 kbd_fetch_ptr = kbd_buffer;
7173 if (kbd_fetch_ptr->kind == ascii_keystroke)
7174 stuff_char (kbd_fetch_ptr->code);
7175 kbd_fetch_ptr->kind = no_event;
7176 (XVECTOR (kbd_buffer_frame_or_window)->contents[kbd_fetch_ptr
7177 - kbd_buffer]
7178 = Qnil);
7180 input_pending = 0;
7181 #endif
7182 #endif /* BSD and not BSD4_1 */
7185 set_waiting_for_input (time_to_clear)
7186 EMACS_TIME *time_to_clear;
7188 input_available_clear_time = time_to_clear;
7190 /* Tell interrupt_signal to throw back to read_char, */
7191 waiting_for_input = 1;
7193 /* If interrupt_signal was called before and buffered a C-g,
7194 make it run again now, to avoid timing error. */
7195 if (!NILP (Vquit_flag))
7196 quit_throw_to_read_char ();
7199 clear_waiting_for_input ()
7201 /* Tell interrupt_signal not to throw back to read_char, */
7202 waiting_for_input = 0;
7203 input_available_clear_time = 0;
7206 /* This routine is called at interrupt level in response to C-G.
7207 If interrupt_input, this is the handler for SIGINT.
7208 Otherwise, it is called from kbd_buffer_store_event,
7209 in handling SIGIO or SIGTINT.
7211 If `waiting_for_input' is non zero, then unless `echoing' is nonzero,
7212 immediately throw back to read_char.
7214 Otherwise it sets the Lisp variable quit-flag not-nil.
7215 This causes eval to throw, when it gets a chance.
7216 If quit-flag is already non-nil, it stops the job right away. */
7218 SIGTYPE
7219 interrupt_signal (signalnum) /* If we don't have an argument, */
7220 int signalnum; /* some compilers complain in signal calls. */
7222 char c;
7223 /* Must preserve main program's value of errno. */
7224 int old_errno = errno;
7226 #ifdef USG
7227 if (!read_socket_hook && NILP (Vwindow_system))
7229 /* USG systems forget handlers when they are used;
7230 must reestablish each time */
7231 signal (SIGINT, interrupt_signal);
7232 signal (SIGQUIT, interrupt_signal);
7234 #endif /* USG */
7236 cancel_echoing ();
7238 if (!NILP (Vquit_flag) && FRAME_TERMCAP_P (selected_frame))
7240 fflush (stdout);
7241 reset_sys_modes ();
7242 sigfree ();
7243 #ifdef SIGTSTP /* Support possible in later USG versions */
7245 * On systems which can suspend the current process and return to the original
7246 * shell, this command causes the user to end up back at the shell.
7247 * The "Auto-save" and "Abort" questions are not asked until
7248 * the user elects to return to emacs, at which point he can save the current
7249 * job and either dump core or continue.
7251 sys_suspend ();
7252 #else
7253 #ifdef VMS
7254 if (sys_suspend () == -1)
7256 printf ("Not running as a subprocess;\n");
7257 printf ("you can continue or abort.\n");
7259 #else /* not VMS */
7260 /* Perhaps should really fork an inferior shell?
7261 But that would not provide any way to get back
7262 to the original shell, ever. */
7263 printf ("No support for stopping a process on this operating system;\n");
7264 printf ("you can continue or abort.\n");
7265 #endif /* not VMS */
7266 #endif /* not SIGTSTP */
7267 #ifdef MSDOS
7268 /* We must remain inside the screen area when the internal terminal
7269 is used. Note that [Enter] is not echoed by dos. */
7270 cursor_to (0, 0);
7271 #endif
7272 /* It doesn't work to autosave while GC is in progress;
7273 the code used for auto-saving doesn't cope with the mark bit. */
7274 if (!gc_in_progress)
7276 printf ("Auto-save? (y or n) ");
7277 fflush (stdout);
7278 if (((c = getchar ()) & ~040) == 'Y')
7280 Fdo_auto_save (Qt, Qnil);
7281 #ifdef MSDOS
7282 printf ("\r\nAuto-save done");
7283 #else /* not MSDOS */
7284 printf ("Auto-save done\n");
7285 #endif /* not MSDOS */
7287 while (c != '\n') c = getchar ();
7289 else
7291 /* During GC, it must be safe to reenable quitting again. */
7292 Vinhibit_quit = Qnil;
7293 #ifdef MSDOS
7294 printf ("\r\n");
7295 #endif /* not MSDOS */
7296 printf ("Garbage collection in progress; cannot auto-save now\r\n");
7297 printf ("but will instead do a real quit after garbage collection ends\r\n");
7298 fflush (stdout);
7301 #ifdef MSDOS
7302 printf ("\r\nAbort? (y or n) ");
7303 #else /* not MSDOS */
7304 #ifdef VMS
7305 printf ("Abort (and enter debugger)? (y or n) ");
7306 #else /* not VMS */
7307 printf ("Abort (and dump core)? (y or n) ");
7308 #endif /* not VMS */
7309 #endif /* not MSDOS */
7310 fflush (stdout);
7311 if (((c = getchar ()) & ~040) == 'Y')
7312 abort ();
7313 while (c != '\n') c = getchar ();
7314 #ifdef MSDOS
7315 printf ("\r\nContinuing...\r\n");
7316 #else /* not MSDOS */
7317 printf ("Continuing...\n");
7318 #endif /* not MSDOS */
7319 fflush (stdout);
7320 init_sys_modes ();
7322 else
7324 /* If executing a function that wants to be interrupted out of
7325 and the user has not deferred quitting by binding `inhibit-quit'
7326 then quit right away. */
7327 if (immediate_quit && NILP (Vinhibit_quit))
7329 immediate_quit = 0;
7330 sigfree ();
7331 Fsignal (Qquit, Qnil);
7333 else
7334 /* Else request quit when it's safe */
7335 Vquit_flag = Qt;
7338 if (waiting_for_input && !echoing)
7339 quit_throw_to_read_char ();
7341 errno = old_errno;
7344 /* Handle a C-g by making read_char return C-g. */
7346 quit_throw_to_read_char ()
7348 quit_error_check ();
7349 sigfree ();
7350 /* Prevent another signal from doing this before we finish. */
7351 clear_waiting_for_input ();
7352 input_pending = 0;
7354 Vunread_command_events = Qnil;
7355 unread_command_char = -1;
7357 #if 0 /* Currently, sit_for is called from read_char without turning
7358 off polling. And that can call set_waiting_for_input.
7359 It seems to be harmless. */
7360 #ifdef POLL_FOR_INPUT
7361 /* May be > 1 if in recursive minibuffer. */
7362 if (poll_suppress_count == 0)
7363 abort ();
7364 #endif
7365 #endif
7366 #ifdef MULTI_FRAME
7367 if (FRAMEP (internal_last_event_frame)
7368 && XFRAME (internal_last_event_frame) != selected_frame)
7369 do_switch_frame (make_lispy_switch_frame (internal_last_event_frame),
7370 Qnil, 0);
7371 #endif
7373 _longjmp (getcjmp, 1);
7376 DEFUN ("set-input-mode", Fset_input_mode, Sset_input_mode, 3, 4, 0,
7377 "Set mode of reading keyboard input.\n\
7378 First arg INTERRUPT non-nil means use input interrupts;\n\
7379 nil means use CBREAK mode.\n\
7380 Second arg FLOW non-nil means use ^S/^Q flow control for output to terminal\n\
7381 (no effect except in CBREAK mode).\n\
7382 Third arg META t means accept 8-bit input (for a Meta key).\n\
7383 META nil means ignore the top bit, on the assumption it is parity.\n\
7384 Otherwise, accept 8-bit input and don't use the top bit for Meta.\n\
7385 Optional fourth arg QUIT if non-nil specifies character to use for quitting.\n\
7386 See also `current-input-mode'.")
7387 (interrupt, flow, meta, quit)
7388 Lisp_Object interrupt, flow, meta, quit;
7390 if (!NILP (quit)
7391 && (!INTEGERP (quit) || XINT (quit) < 0 || XINT (quit) > 0400))
7392 error ("set-input-mode: QUIT must be an ASCII character");
7394 #ifdef POLL_FOR_INPUT
7395 stop_polling ();
7396 #endif
7398 #ifndef MSDOS
7399 /* this causes startup screen to be restored and messes with the mouse */
7400 reset_sys_modes ();
7401 #endif
7403 #ifdef SIGIO
7404 /* Note SIGIO has been undef'd if FIONREAD is missing. */
7405 if (read_socket_hook)
7407 /* When using X, don't give the user a real choice,
7408 because we haven't implemented the mechanisms to support it. */
7409 #ifdef NO_SOCK_SIGIO
7410 interrupt_input = 0;
7411 #else /* not NO_SOCK_SIGIO */
7412 interrupt_input = 1;
7413 #endif /* NO_SOCK_SIGIO */
7415 else
7416 interrupt_input = !NILP (interrupt);
7417 #else /* not SIGIO */
7418 interrupt_input = 0;
7419 #endif /* not SIGIO */
7421 /* Our VMS input only works by interrupts, as of now. */
7422 #ifdef VMS
7423 interrupt_input = 1;
7424 #endif
7426 flow_control = !NILP (flow);
7427 if (NILP (meta))
7428 meta_key = 0;
7429 else if (EQ (meta, Qt))
7430 meta_key = 1;
7431 else
7432 meta_key = 2;
7433 if (!NILP (quit))
7434 /* Don't let this value be out of range. */
7435 quit_char = XINT (quit) & (meta_key ? 0377 : 0177);
7437 #ifndef MSDOS
7438 init_sys_modes ();
7439 #endif
7441 #ifdef POLL_FOR_INPUT
7442 poll_suppress_count = 1;
7443 start_polling ();
7444 #endif
7445 return Qnil;
7448 DEFUN ("current-input-mode", Fcurrent_input_mode, Scurrent_input_mode, 0, 0, 0,
7449 "Return information about the way Emacs currently reads keyboard input.\n\
7450 The value is a list of the form (INTERRUPT FLOW META QUIT), where\n\
7451 INTERRUPT is non-nil if Emacs is using interrupt-driven input; if\n\
7452 nil, Emacs is using CBREAK mode.\n\
7453 FLOW is non-nil if Emacs uses ^S/^Q flow control for output to the\n\
7454 terminal; this does not apply if Emacs uses interrupt-driven input.\n\
7455 META is t if accepting 8-bit input with 8th bit as Meta flag.\n\
7456 META nil means ignoring the top bit, on the assumption it is parity.\n\
7457 META is neither t nor nil if accepting 8-bit input and using\n\
7458 all 8 bits as the character code.\n\
7459 QUIT is the character Emacs currently uses to quit.\n\
7460 The elements of this list correspond to the arguments of\n\
7461 `set-input-mode'.")
7464 Lisp_Object val[4];
7466 val[0] = interrupt_input ? Qt : Qnil;
7467 val[1] = flow_control ? Qt : Qnil;
7468 val[2] = meta_key == 2 ? make_number (0) : meta_key == 1 ? Qt : Qnil;
7469 XSETFASTINT (val[3], quit_char);
7471 return Flist (sizeof (val) / sizeof (val[0]), val);
7476 * Set up a new kboard object with reasonable initial values.
7478 void
7479 init_kboard (kb)
7480 KBOARD *kb;
7482 kb->Voverriding_terminal_local_map = Qnil;
7483 kb->Vlast_command = Qnil;
7484 kb->Vprefix_arg = Qnil;
7485 kb->kbd_queue = Qnil;
7486 kb->kbd_queue_has_data = 0;
7487 kb->immediate_echo = 0;
7488 kb->echoptr = kb->echobuf;
7489 kb->echo_after_prompt = -1;
7490 kb->kbd_macro_buffer = 0;
7491 kb->kbd_macro_bufsize = 0;
7492 kb->defining_kbd_macro = Qnil;
7493 kb->Vlast_kbd_macro = Qnil;
7494 kb->reference_count = 0;
7495 kb->Vsystem_key_alist = Qnil;
7496 kb->system_key_syms = Qnil;
7497 kb->Vdefault_minibuffer_frame = Qnil;
7501 * Destroy the contents of a kboard object, but not the object itself.
7502 * We use this just before deleting it, or if we're going to initialize
7503 * it a second time.
7505 static void
7506 wipe_kboard (kb)
7507 KBOARD *kb;
7509 if (kb->kbd_macro_buffer)
7510 xfree (kb->kbd_macro_buffer);
7513 #ifdef MULTI_KBOARD
7514 void
7515 delete_kboard (kb)
7516 KBOARD *kb;
7518 KBOARD **kbp;
7519 for (kbp = &all_kboards; *kbp != kb; kbp = &(*kbp)->next_kboard)
7520 if (*kbp == NULL)
7521 abort ();
7522 *kbp = kb->next_kboard;
7523 wipe_kboard (kb);
7524 xfree (kb);
7526 #endif
7528 init_keyboard ()
7530 /* This is correct before outermost invocation of the editor loop */
7531 command_loop_level = -1;
7532 immediate_quit = 0;
7533 quit_char = Ctl ('g');
7534 Vunread_command_events = Qnil;
7535 unread_command_char = -1;
7536 total_keys = 0;
7537 recent_keys_index = 0;
7538 kbd_fetch_ptr = kbd_buffer;
7539 kbd_store_ptr = kbd_buffer;
7540 kbd_buffer_frame_or_window
7541 = Fmake_vector (make_number (KBD_BUFFER_SIZE), Qnil);
7542 #ifdef HAVE_MOUSE
7543 do_mouse_tracking = Qnil;
7544 #endif
7545 input_pending = 0;
7547 #ifdef MULTI_FRAME
7548 /* This means that command_loop_1 won't try to select anything the first
7549 time through. */
7550 internal_last_event_frame = Qnil;
7551 Vlast_event_frame = internal_last_event_frame;
7552 #endif
7554 #ifdef MULTI_KBOARD
7555 current_kboard = initial_kboard;
7556 #endif
7557 wipe_kboard (current_kboard);
7558 init_kboard (current_kboard);
7560 if (initialized)
7561 Ffillarray (kbd_buffer_frame_or_window, Qnil);
7563 kbd_buffer_frame_or_window
7564 = Fmake_vector (make_number (KBD_BUFFER_SIZE), Qnil);
7565 if (!noninteractive && !read_socket_hook && NILP (Vwindow_system))
7567 signal (SIGINT, interrupt_signal);
7568 #if defined (HAVE_TERMIO) || defined (HAVE_TERMIOS)
7569 /* For systems with SysV TERMIO, C-g is set up for both SIGINT and
7570 SIGQUIT and we can't tell which one it will give us. */
7571 signal (SIGQUIT, interrupt_signal);
7572 #endif /* HAVE_TERMIO */
7574 /* Note SIGIO has been undef'd if FIONREAD is missing. */
7575 #ifdef SIGIO
7576 if (!noninteractive)
7577 signal (SIGIO, input_available_signal);
7578 #endif /* SIGIO */
7580 /* Use interrupt input by default, if it works and noninterrupt input
7581 has deficiencies. */
7583 #ifdef INTERRUPT_INPUT
7584 interrupt_input = 1;
7585 #else
7586 interrupt_input = 0;
7587 #endif
7589 /* Our VMS input only works by interrupts, as of now. */
7590 #ifdef VMS
7591 interrupt_input = 1;
7592 #endif
7594 sigfree ();
7595 dribble = 0;
7597 if (keyboard_init_hook)
7598 (*keyboard_init_hook) ();
7600 #ifdef POLL_FOR_INPUT
7601 poll_suppress_count = 1;
7602 start_polling ();
7603 #endif
7606 /* This type's only use is in syms_of_keyboard, to initialize the
7607 event header symbols and put properties on them. */
7608 struct event_head {
7609 Lisp_Object *var;
7610 char *name;
7611 Lisp_Object *kind;
7614 struct event_head head_table[] = {
7615 &Qmouse_movement, "mouse-movement", &Qmouse_movement,
7616 &Qscroll_bar_movement, "scroll-bar-movement", &Qmouse_movement,
7617 &Qswitch_frame, "switch-frame", &Qswitch_frame,
7618 &Qdelete_frame, "delete-frame", &Qdelete_frame,
7619 &Qiconify_frame, "iconify-frame", &Qiconify_frame,
7620 &Qmake_frame_visible, "make-frame-visible", &Qmake_frame_visible,
7623 syms_of_keyboard ()
7625 Qdisabled_command_hook = intern ("disabled-command-hook");
7626 staticpro (&Qdisabled_command_hook);
7628 Qself_insert_command = intern ("self-insert-command");
7629 staticpro (&Qself_insert_command);
7631 Qforward_char = intern ("forward-char");
7632 staticpro (&Qforward_char);
7634 Qbackward_char = intern ("backward-char");
7635 staticpro (&Qbackward_char);
7637 Qdisabled = intern ("disabled");
7638 staticpro (&Qdisabled);
7640 Qundefined = intern ("undefined");
7641 staticpro (&Qundefined);
7643 Qpre_command_hook = intern ("pre-command-hook");
7644 staticpro (&Qpre_command_hook);
7646 Qpost_command_hook = intern ("post-command-hook");
7647 staticpro (&Qpost_command_hook);
7649 Qpost_command_idle_hook = intern ("post-command-idle-hook");
7650 staticpro (&Qpost_command_idle_hook);
7652 Qdeferred_action_function = intern ("deferred-action-function");
7653 staticpro (&Qdeferred_action_function);
7655 Qcommand_hook_internal = intern ("command-hook-internal");
7656 staticpro (&Qcommand_hook_internal);
7658 Qfunction_key = intern ("function-key");
7659 staticpro (&Qfunction_key);
7660 Qmouse_click = intern ("mouse-click");
7661 staticpro (&Qmouse_click);
7662 Qtimer_event = intern ("timer-event");
7663 staticpro (&Qtimer_event);
7665 Qmenu_enable = intern ("menu-enable");
7666 staticpro (&Qmenu_enable);
7668 Qmode_line = intern ("mode-line");
7669 staticpro (&Qmode_line);
7670 Qvertical_line = intern ("vertical-line");
7671 staticpro (&Qvertical_line);
7672 Qvertical_scroll_bar = intern ("vertical-scroll-bar");
7673 staticpro (&Qvertical_scroll_bar);
7674 Qmenu_bar = intern ("menu-bar");
7675 staticpro (&Qmenu_bar);
7677 Qabove_handle = intern ("above-handle");
7678 staticpro (&Qabove_handle);
7679 Qhandle = intern ("handle");
7680 staticpro (&Qhandle);
7681 Qbelow_handle = intern ("below-handle");
7682 staticpro (&Qbelow_handle);
7684 Qevent_kind = intern ("event-kind");
7685 staticpro (&Qevent_kind);
7686 Qevent_symbol_elements = intern ("event-symbol-elements");
7687 staticpro (&Qevent_symbol_elements);
7688 Qevent_symbol_element_mask = intern ("event-symbol-element-mask");
7689 staticpro (&Qevent_symbol_element_mask);
7690 Qmodifier_cache = intern ("modifier-cache");
7691 staticpro (&Qmodifier_cache);
7693 Qrecompute_lucid_menubar = intern ("recompute-lucid-menubar");
7694 staticpro (&Qrecompute_lucid_menubar);
7695 Qactivate_menubar_hook = intern ("activate-menubar-hook");
7696 staticpro (&Qactivate_menubar_hook);
7698 Qpolling_period = intern ("polling-period");
7699 staticpro (&Qpolling_period);
7702 struct event_head *p;
7704 for (p = head_table;
7705 p < head_table + (sizeof (head_table) / sizeof (head_table[0]));
7706 p++)
7708 *p->var = intern (p->name);
7709 staticpro (p->var);
7710 Fput (*p->var, Qevent_kind, *p->kind);
7711 Fput (*p->var, Qevent_symbol_elements, Fcons (*p->var, Qnil));
7715 button_down_location = Fmake_vector (make_number (NUM_MOUSE_BUTTONS), Qnil);
7716 staticpro (&button_down_location);
7719 int i;
7720 int len = sizeof (modifier_names) / sizeof (modifier_names[0]);
7722 modifier_symbols = Fmake_vector (make_number (len), Qnil);
7723 for (i = 0; i < len; i++)
7724 if (modifier_names[i])
7725 XVECTOR (modifier_symbols)->contents[i] = intern (modifier_names[i]);
7726 staticpro (&modifier_symbols);
7729 recent_keys = Fmake_vector (make_number (NUM_RECENT_KEYS), Qnil);
7730 staticpro (&recent_keys);
7732 this_command_keys = Fmake_vector (make_number (40), Qnil);
7733 staticpro (&this_command_keys);
7735 Qextended_command_history = intern ("extended-command-history");
7736 Fset (Qextended_command_history, Qnil);
7737 staticpro (&Qextended_command_history);
7739 kbd_buffer_frame_or_window
7740 = Fmake_vector (make_number (KBD_BUFFER_SIZE), Qnil);
7741 staticpro (&kbd_buffer_frame_or_window);
7743 accent_key_syms = Qnil;
7744 staticpro (&accent_key_syms);
7746 func_key_syms = Qnil;
7747 staticpro (&func_key_syms);
7749 mouse_syms = Qnil;
7750 staticpro (&mouse_syms);
7752 unread_switch_frame = Qnil;
7753 staticpro (&unread_switch_frame);
7755 defsubr (&Sevent_convert_list);
7756 defsubr (&Sread_key_sequence);
7757 defsubr (&Srecursive_edit);
7758 #ifdef HAVE_MOUSE
7759 defsubr (&Strack_mouse);
7760 #endif
7761 defsubr (&Sinput_pending_p);
7762 defsubr (&Scommand_execute);
7763 defsubr (&Srecent_keys);
7764 defsubr (&Sthis_command_keys);
7765 defsubr (&Sreset_this_command_lengths);
7766 defsubr (&Ssuspend_emacs);
7767 defsubr (&Sabort_recursive_edit);
7768 defsubr (&Sexit_recursive_edit);
7769 defsubr (&Srecursion_depth);
7770 defsubr (&Stop_level);
7771 defsubr (&Sdiscard_input);
7772 defsubr (&Sopen_dribble_file);
7773 defsubr (&Sset_input_mode);
7774 defsubr (&Scurrent_input_mode);
7775 defsubr (&Sexecute_extended_command);
7777 DEFVAR_LISP ("last-command-char", &last_command_char,
7778 "Last input event that was part of a command.");
7780 DEFVAR_LISP_NOPRO ("last-command-event", &last_command_char,
7781 "Last input event that was part of a command.");
7783 DEFVAR_LISP ("last-nonmenu-event", &last_nonmenu_event,
7784 "Last input event in a command, except for mouse menu events.\n\
7785 Mouse menus give back keys that don't look like mouse events;\n\
7786 this variable holds the actual mouse event that led to the menu,\n\
7787 so that you can determine whether the command was run by mouse or not.");
7789 DEFVAR_LISP ("last-input-char", &last_input_char,
7790 "Last input event.");
7792 DEFVAR_LISP_NOPRO ("last-input-event", &last_input_char,
7793 "Last input event.");
7795 DEFVAR_LISP ("unread-command-events", &Vunread_command_events,
7796 "List of objects to be read as next command input events.");
7798 DEFVAR_INT ("unread-command-char", &unread_command_char,
7799 "If not -1, an object to be read as next command input event.");
7801 DEFVAR_LISP ("meta-prefix-char", &meta_prefix_char,
7802 "Meta-prefix character code. Meta-foo as command input\n\
7803 turns into this character followed by foo.");
7804 XSETINT (meta_prefix_char, 033);
7806 DEFVAR_KBOARD ("last-command", Vlast_command,
7807 "The last command executed. Normally a symbol with a function definition,\n\
7808 but can be whatever was found in the keymap, or whatever the variable\n\
7809 `this-command' was set to by that command.\n\
7811 The value `mode-exit' is special; it means that the previous command\n\
7812 read an event that told it to exit, and it did so and unread that event.\n\
7813 In other words, the present command is the event that made the previous\n\
7814 command exit.\n\
7816 The value `kill-region' is special; it means that the previous command\n\
7817 was a kill command.");
7819 DEFVAR_LISP ("this-command", &this_command,
7820 "The command now being executed.\n\
7821 The command can set this variable; whatever is put here\n\
7822 will be in `last-command' during the following command.");
7823 this_command = Qnil;
7825 DEFVAR_INT ("auto-save-interval", &auto_save_interval,
7826 "*Number of keyboard input characters between auto-saves.\n\
7827 Zero means disable autosaving due to number of characters typed.");
7828 auto_save_interval = 300;
7830 DEFVAR_LISP ("auto-save-timeout", &Vauto_save_timeout,
7831 "*Number of seconds idle time before auto-save.\n\
7832 Zero or nil means disable auto-saving due to idleness.\n\
7833 After auto-saving due to this many seconds of idle time,\n\
7834 Emacs also does a garbage collection if that seems to be warranted.");
7835 XSETFASTINT (Vauto_save_timeout, 30);
7837 DEFVAR_INT ("echo-keystrokes", &echo_keystrokes,
7838 "*Nonzero means echo unfinished commands after this many seconds of pause.");
7839 echo_keystrokes = 1;
7841 DEFVAR_INT ("polling-period", &polling_period,
7842 "*Interval between polling for input during Lisp execution.\n\
7843 The reason for polling is to make C-g work to stop a running program.\n\
7844 Polling is needed only when using X windows and SIGIO does not work.\n\
7845 Polling is automatically disabled in all other cases.");
7846 polling_period = 2;
7848 DEFVAR_LISP ("double-click-time", &Vdouble_click_time,
7849 "*Maximum time between mouse clicks to make a double-click.\n\
7850 Measured in milliseconds. nil means disable double-click recognition;\n\
7851 t means double-clicks have no time limit and are detected\n\
7852 by position only.");
7853 Vdouble_click_time = make_number (500);
7855 DEFVAR_BOOL ("inhibit-local-menu-bar-menus", &inhibit_local_menu_bar_menus,
7856 "*Non-nil means inhibit local map menu bar menus.");
7857 inhibit_local_menu_bar_menus = 0;
7859 DEFVAR_INT ("num-input-keys", &num_input_keys,
7860 "Number of complete keys read from the keyboard so far.");
7861 num_input_keys = 0;
7863 DEFVAR_LISP ("last-event-frame", &Vlast_event_frame,
7864 "The frame in which the most recently read event occurred.\n\
7865 If the last event came from a keyboard macro, this is set to `macro'.");
7866 Vlast_event_frame = Qnil;
7868 DEFVAR_LISP ("help-char", &Vhelp_char,
7869 "Character to recognize as meaning Help.\n\
7870 When it is read, do `(eval help-form)', and display result if it's a string.\n\
7871 If the value of `help-form' is nil, this char can be read normally.");
7872 XSETINT (Vhelp_char, Ctl ('H'));
7874 DEFVAR_LISP ("help-event-list", &Vhelp_event_list,
7875 "List of input events to recognize as meaning Help.\n\
7876 These work just like the value of `help-char' (see that).");
7877 Vhelp_event_list = Qnil;
7879 DEFVAR_LISP ("help-form", &Vhelp_form,
7880 "Form to execute when character `help-char' is read.\n\
7881 If the form returns a string, that string is displayed.\n\
7882 If `help-form' is nil, the help char is not recognized.");
7883 Vhelp_form = Qnil;
7885 DEFVAR_LISP ("prefix-help-command", &Vprefix_help_command,
7886 "Command to run when `help-char' character follows a prefix key.\n\
7887 This command is used only when there is no actual binding\n\
7888 for that character after that prefix key.");
7889 Vprefix_help_command = Qnil;
7891 DEFVAR_LISP ("top-level", &Vtop_level,
7892 "Form to evaluate when Emacs starts up.\n\
7893 Useful to set before you dump a modified Emacs.");
7894 Vtop_level = Qnil;
7896 DEFVAR_LISP ("keyboard-translate-table", &Vkeyboard_translate_table,
7897 "Translate table for keyboard input, or nil.\n\
7898 Each character is looked up in this string and the contents used instead.\n\
7899 The value may be a string, a vector, or a char-table.\n\
7900 If it is a string or vector of length N,\n\
7901 character codes N and up are untranslated.\n\
7902 In a vector or a char-table, an element which is nil means \"no translation\".");
7903 Vkeyboard_translate_table = Qnil;
7905 DEFVAR_BOOL ("cannot-suspend", &cannot_suspend,
7906 "Non-nil means to always spawn a subshell instead of suspending,\n\
7907 even if the operating system has support for stopping a process.");
7908 cannot_suspend = 0;
7910 DEFVAR_BOOL ("menu-prompting", &menu_prompting,
7911 "Non-nil means prompt with menus when appropriate.\n\
7912 This is done when reading from a keymap that has a prompt string,\n\
7913 for elements that have prompt strings.\n\
7914 The menu is displayed on the screen\n\
7915 if X menus were enabled at configuration\n\
7916 time and the previous event was a mouse click prefix key.\n\
7917 Otherwise, menu prompting uses the echo area.");
7918 menu_prompting = 1;
7920 DEFVAR_LISP ("menu-prompt-more-char", &menu_prompt_more_char,
7921 "Character to see next line of menu prompt.\n\
7922 Type this character while in a menu prompt to rotate around the lines of it.");
7923 XSETINT (menu_prompt_more_char, ' ');
7925 DEFVAR_INT ("extra-keyboard-modifiers", &extra_keyboard_modifiers,
7926 "A mask of additional modifier keys to use with every keyboard character.\n\
7927 Emacs applies the modifiers of the character stored here to each keyboard\n\
7928 character it reads. For example, after evaluating the expression\n\
7929 (setq extra-keyboard-modifiers ?\\C-x)\n\
7930 all input characters will have the control modifier applied to them.\n\
7932 Note that the character ?\\C-@, equivalent to the integer zero, does\n\
7933 not count as a control character; rather, it counts as a character\n\
7934 with no modifiers; thus, setting `extra-keyboard-modifiers' to zero\n\
7935 cancels any modification.");
7936 extra_keyboard_modifiers = 0;
7938 DEFVAR_LISP ("deactivate-mark", &Vdeactivate_mark,
7939 "If an editing command sets this to t, deactivate the mark afterward.\n\
7940 The command loop sets this to nil before each command,\n\
7941 and tests the value when the command returns.\n\
7942 Buffer modification stores t in this variable.");
7943 Vdeactivate_mark = Qnil;
7945 DEFVAR_LISP ("command-hook-internal", &Vcommand_hook_internal,
7946 "Temporary storage of pre-command-hook or post-command-hook.");
7947 Vcommand_hook_internal = Qnil;
7949 DEFVAR_LISP ("pre-command-hook", &Vpre_command_hook,
7950 "Normal hook run before each command is executed.\n\
7951 Errors running the hook are caught and ignored.");
7952 Vpre_command_hook = Qnil;
7954 DEFVAR_LISP ("post-command-hook", &Vpost_command_hook,
7955 "Normal hook run after each command is executed.\n\
7956 Errors running the hook are caught and ignored.");
7957 Vpost_command_hook = Qnil;
7959 DEFVAR_LISP ("post-command-idle-hook", &Vpost_command_idle_hook,
7960 "Normal hook run after each command is executed, if idle.\n\
7961 Errors running the hook are caught and ignored.");
7962 Vpost_command_idle_hook = Qnil;
7964 DEFVAR_INT ("post-command-idle-delay", &post_command_idle_delay,
7965 "Delay time before running `post-command-idle-hook'.\n\
7966 This is measured in microseconds.");
7967 post_command_idle_delay = 100000;
7969 DEFVAR_LISP ("lucid-menu-bar-dirty-flag", &Vlucid_menu_bar_dirty_flag,
7970 "t means menu bar, specified Lucid style, needs to be recomputed.");
7971 Vlucid_menu_bar_dirty_flag = Qnil;
7973 DEFVAR_LISP ("menu-bar-final-items", &Vmenu_bar_final_items,
7974 "List of menu bar items to move to the end of the menu bar.\n\
7975 The elements of the list are event types that may have menu bar bindings.");
7976 Vmenu_bar_final_items = Qnil;
7978 DEFVAR_KBOARD ("overriding-terminal-local-map",
7979 Voverriding_terminal_local_map,
7980 "Keymap that overrides all other local keymaps.\n\
7981 If this variable is non-nil, it is used as a keymap instead of the\n\
7982 buffer's local map, and the minor mode keymaps and text property keymaps.");
7984 DEFVAR_LISP ("overriding-local-map", &Voverriding_local_map,
7985 "Keymap that overrides all other local keymaps.\n\
7986 If this variable is non-nil, it is used as a keymap instead of the\n\
7987 buffer's local map, and the minor mode keymaps and text property keymaps.");
7988 Voverriding_local_map = Qnil;
7990 DEFVAR_LISP ("overriding-local-map-menu-flag", &Voverriding_local_map_menu_flag,
7991 "Non-nil means `overriding-local-map' applies to the menu bar.\n\
7992 Otherwise, the menu bar continues to reflect the buffer's local map\n\
7993 and the minor mode maps regardless of `overriding-local-map'.");
7994 Voverriding_local_map_menu_flag = Qnil;
7996 DEFVAR_LISP ("special-event-map", &Vspecial_event_map,
7997 "Keymap defining bindings for special events to execute at low level.");
7998 Vspecial_event_map = Fcons (intern ("keymap"), Qnil);
8000 DEFVAR_LISP ("track-mouse", &do_mouse_tracking,
8001 "*Non-nil means generate motion events for mouse motion.");
8003 DEFVAR_KBOARD ("system-key-alist", Vsystem_key_alist,
8004 "Alist of system-specific X windows key symbols.\n\
8005 Each element should have the form (N . SYMBOL) where N is the\n\
8006 numeric keysym code (sans the \"system-specific\" bit 1<<28)\n\
8007 and SYMBOL is its name.");
8009 DEFVAR_LISP ("deferred-action-list", &Vdeferred_action_list,
8010 "List of deferred actions to be performed at a later time.\n\
8011 The precise format isn't relevant here; we just check whether it is nil.");
8012 Vdeferred_action_list = Qnil;
8014 DEFVAR_LISP ("deferred-action-function", &Vdeferred_action_function,
8015 "Function to call to handle deferred actions, after each command.\n\
8016 This function is called with no arguments after each command\n\
8017 whenever `deferred-action-list' is non-nil.");
8018 Vdeferred_action_function = Qnil;
8020 DEFVAR_LISP ("suggest-key-bindings", &Vsuggest_key_bindings,
8021 "Non-nil means show the equivalent key-binding when M-x command has one.\n\
8022 The value can be a length of time to show the message for.\n\
8023 If the value is non-nil and not a number, we wait 2 seconds.");
8024 Vsuggest_key_bindings = Qt;
8026 DEFVAR_LISP ("column-number-mode", &Vcolumn_number_mode,
8027 "Non-nil enables display of the current column number in the mode line.");
8028 Vcolumn_number_mode = Qnil;
8030 DEFVAR_LISP ("timer-list", &Vtimer_list,
8031 "List of active absolute time timers in order of increasing time");
8032 Vtimer_list = Qnil;
8034 DEFVAR_LISP ("timer-idle-list", &Vtimer_idle_list,
8035 "List of active idle-time timers in order of increasing time");
8036 Vtimer_idle_list = Qnil;
8039 keys_of_keyboard ()
8041 initial_define_key (global_map, Ctl ('Z'), "suspend-emacs");
8042 initial_define_key (control_x_map, Ctl ('Z'), "suspend-emacs");
8043 initial_define_key (meta_map, Ctl ('C'), "exit-recursive-edit");
8044 initial_define_key (global_map, Ctl (']'), "abort-recursive-edit");
8045 initial_define_key (meta_map, 'x', "execute-extended-command");
8047 initial_define_lispy_key (Vspecial_event_map, "delete-frame",
8048 "handle-delete-frame");
8049 initial_define_lispy_key (Vspecial_event_map, "iconify-frame",
8050 "ignore-event");
8051 initial_define_lispy_key (Vspecial_event_map, "make-frame-visible",
8052 "ignore-event");