(Vpreloaded_file_list): New variable.
[emacs.git] / src / keyboard.c
blobedea093cd22cdab3eb005cc7a8be705d47b39b5a
1 /* Keyboard and mouse input; editor command loop.
2 Copyright (C) 1985,86,87,88,89,93,94,95,96,97 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 "charset.h"
36 #include "disptab.h"
37 #include "dispextern.h"
38 #include "keyboard.h"
39 #include "intervals.h"
40 #include "blockinput.h"
41 #include <setjmp.h>
42 #include <errno.h>
44 #ifdef MSDOS
45 #include "msdos.h"
46 #include <time.h>
47 #else /* not MSDOS */
48 #ifndef VMS
49 #include <sys/ioctl.h>
50 #endif
51 #endif /* not MSDOS */
53 #include "syssignal.h"
54 #include "systty.h"
56 /* This is to get the definitions of the XK_ symbols. */
57 #ifdef HAVE_X_WINDOWS
58 #include "xterm.h"
59 #endif
61 #ifdef HAVE_NTGUI
62 #include "w32term.h"
63 #endif /* HAVE_NTGUI */
65 /* Include systime.h after xterm.h to avoid double inclusion of time.h. */
66 #include "systime.h"
68 extern int errno;
70 /* Variables for blockinput.h: */
72 /* Non-zero if interrupt input is blocked right now. */
73 int interrupt_input_blocked;
75 /* Nonzero means an input interrupt has arrived
76 during the current critical section. */
77 int interrupt_input_pending;
80 /* File descriptor to use for input. */
81 extern int input_fd;
83 #ifdef HAVE_WINDOW_SYSTEM
84 /* Make all keyboard buffers much bigger when using X windows. */
85 #define KBD_BUFFER_SIZE 4096
86 #else /* No X-windows, character input */
87 #define KBD_BUFFER_SIZE 256
88 #endif /* No X-windows */
90 /* Following definition copied from eval.c */
92 struct backtrace
94 struct backtrace *next;
95 Lisp_Object *function;
96 Lisp_Object *args; /* Points to vector of args. */
97 int nargs; /* length of vector. If nargs is UNEVALLED,
98 args points to slot holding list of
99 unevalled args */
100 char evalargs;
103 #ifdef MULTI_KBOARD
104 KBOARD *initial_kboard;
105 KBOARD *current_kboard;
106 KBOARD *all_kboards;
107 int single_kboard;
108 #else
109 KBOARD the_only_kboard;
110 #endif
112 /* Non-nil disable property on a command means
113 do not execute it; call disabled-command-hook's value instead. */
114 Lisp_Object Qdisabled, Qdisabled_command_hook;
116 #define NUM_RECENT_KEYS (100)
117 int recent_keys_index; /* Index for storing next element into recent_keys */
118 int total_keys; /* Total number of elements stored into recent_keys */
119 Lisp_Object recent_keys; /* A vector, holding the last 100 keystrokes */
121 /* Vector holding the key sequence that invoked the current command.
122 It is reused for each command, and it may be longer than the current
123 sequence; this_command_key_count indicates how many elements
124 actually mean something.
125 It's easier to staticpro a single Lisp_Object than an array. */
126 Lisp_Object this_command_keys;
127 int this_command_key_count;
129 /* Number of elements of this_command_keys
130 that precede this key sequence. */
131 int this_single_command_key_start;
133 /* Record values of this_command_key_count and echo_length ()
134 before this command was read. */
135 static int before_command_key_count;
136 static int before_command_echo_length;
137 /* Values of before_command_key_count and before_command_echo_length
138 saved by reset-this-command-lengths. */
139 static int before_command_key_count_1;
140 static int before_command_echo_length_1;
141 /* Flag set by reset-this-command-lengths,
142 saying to reset the lengths when add_command_key is called. */
143 static int before_command_restore_flag;
145 extern int minbuf_level;
147 extern struct backtrace *backtrace_list;
149 /* Nonzero means do menu prompting. */
150 static int menu_prompting;
152 /* Character to see next line of menu prompt. */
153 static Lisp_Object menu_prompt_more_char;
155 /* For longjmp to where kbd input is being done. */
156 static jmp_buf getcjmp;
158 /* True while doing kbd input. */
159 int waiting_for_input;
161 /* True while displaying for echoing. Delays C-g throwing. */
162 static int echoing;
164 /* True means we can start echoing at the next input pause
165 even though there is something in the echo area. */
166 static char *ok_to_echo_at_next_pause;
168 /* Nonzero means disregard local maps for the menu bar. */
169 static int inhibit_local_menu_bar_menus;
171 /* Nonzero means C-g should cause immediate error-signal. */
172 int immediate_quit;
174 /* The user's ERASE setting. */
175 Lisp_Object Vtty_erase_char;
177 /* Character to recognize as the help char. */
178 Lisp_Object Vhelp_char;
180 /* List of other event types to recognize as meaning "help". */
181 Lisp_Object Vhelp_event_list;
183 /* Form to execute when help char is typed. */
184 Lisp_Object Vhelp_form;
186 /* Command to run when the help character follows a prefix key. */
187 Lisp_Object Vprefix_help_command;
189 /* List of items that should move to the end of the menu bar. */
190 Lisp_Object Vmenu_bar_final_items;
192 /* Non-nil means show the equivalent key-binding for
193 any M-x command that has one.
194 The value can be a length of time to show the message for.
195 If the value is non-nil and not a number, we wait 2 seconds. */
196 Lisp_Object Vsuggest_key_bindings;
198 /* Character that causes a quit. Normally C-g.
200 If we are running on an ordinary terminal, this must be an ordinary
201 ASCII char, since we want to make it our interrupt character.
203 If we are not running on an ordinary terminal, it still needs to be
204 an ordinary ASCII char. This character needs to be recognized in
205 the input interrupt handler. At this point, the keystroke is
206 represented as a struct input_event, while the desired quit
207 character is specified as a lispy event. The mapping from struct
208 input_events to lispy events cannot run in an interrupt handler,
209 and the reverse mapping is difficult for anything but ASCII
210 keystrokes.
212 FOR THESE ELABORATE AND UNSATISFYING REASONS, quit_char must be an
213 ASCII character. */
214 int quit_char;
216 extern Lisp_Object current_global_map;
217 extern int minibuf_level;
219 /* If non-nil, this is a map that overrides all other local maps. */
220 Lisp_Object Voverriding_local_map;
222 /* If non-nil, Voverriding_local_map applies to the menu bar. */
223 Lisp_Object Voverriding_local_map_menu_flag;
225 /* Keymap that defines special misc events that should
226 be processed immediately at a low level. */
227 Lisp_Object Vspecial_event_map;
229 /* Current depth in recursive edits. */
230 int command_loop_level;
232 /* Total number of times command_loop has read a key sequence. */
233 int num_input_keys;
235 /* Last input character read as a command. */
236 Lisp_Object last_command_char;
238 /* Last input character read as a command, not counting menus
239 reached by the mouse. */
240 Lisp_Object last_nonmenu_event;
242 /* Last input character read for any purpose. */
243 Lisp_Object last_input_char;
245 /* If not Qnil, a list of objects to be read as subsequent command input. */
246 Lisp_Object Vunread_command_events;
248 /* If not -1, an event to be read as subsequent command input. */
249 int unread_command_char;
251 /* If not Qnil, this is a switch-frame event which we decided to put
252 off until the end of a key sequence. This should be read as the
253 next command input, after any unread_command_events.
255 read_key_sequence uses this to delay switch-frame events until the
256 end of the key sequence; Fread_char uses it to put off switch-frame
257 events until a non-ASCII event is acceptable as input. */
258 Lisp_Object unread_switch_frame;
260 /* A mask of extra modifier bits to put into every keyboard char. */
261 int extra_keyboard_modifiers;
263 /* Char to use as prefix when a meta character is typed in.
264 This is bound on entry to minibuffer in case ESC is changed there. */
266 Lisp_Object meta_prefix_char;
268 /* Last size recorded for a current buffer which is not a minibuffer. */
269 static int last_non_minibuf_size;
271 /* Number of idle seconds before an auto-save and garbage collection. */
272 static Lisp_Object Vauto_save_timeout;
274 /* Total number of times read_char has returned. */
275 int num_input_events;
277 /* Total number of times read_char has returned, outside of macros. */
278 int num_nonmacro_input_events;
280 /* Auto-save automatically when this many characters have been typed
281 since the last time. */
283 static int auto_save_interval;
285 /* Value of num_nonmacro_input_events as of last auto save. */
287 int last_auto_save;
289 /* The command being executed by the command loop.
290 Commands may set this, and the value set will be copied into
291 current_kboard->Vlast_command instead of the actual command. */
292 Lisp_Object this_command;
294 /* The value of point when the last command was executed. */
295 int last_point_position;
297 /* The buffer that was current when the last command was started. */
298 Lisp_Object last_point_position_buffer;
300 /* The frame in which the last input event occurred, or Qmacro if the
301 last event came from a macro. We use this to determine when to
302 generate switch-frame events. This may be cleared by functions
303 like Fselect_frame, to make sure that a switch-frame event is
304 generated by the next character. */
305 Lisp_Object internal_last_event_frame;
307 /* A user-visible version of the above, intended to allow users to
308 figure out where the last event came from, if the event doesn't
309 carry that information itself (i.e. if it was a character). */
310 Lisp_Object Vlast_event_frame;
312 /* The timestamp of the last input event we received from the X server.
313 X Windows wants this for selection ownership. */
314 unsigned long last_event_timestamp;
316 Lisp_Object Qself_insert_command;
317 Lisp_Object Qforward_char;
318 Lisp_Object Qbackward_char;
319 Lisp_Object Qundefined;
320 Lisp_Object Qtimer_event_handler;
322 /* read_key_sequence stores here the command definition of the
323 key sequence that it reads. */
324 Lisp_Object read_key_sequence_cmd;
326 /* Form to evaluate (if non-nil) when Emacs is started. */
327 Lisp_Object Vtop_level;
329 /* User-supplied string to translate input characters through. */
330 Lisp_Object Vkeyboard_translate_table;
332 /* Keymap mapping ASCII function key sequences onto their preferred forms. */
333 extern Lisp_Object Vfunction_key_map;
335 /* Another keymap that maps key sequences into key sequences.
336 This one takes precedence over ordinary definitions. */
337 extern Lisp_Object Vkey_translation_map;
339 /* Non-nil means deactivate the mark at end of this command. */
340 Lisp_Object Vdeactivate_mark;
342 /* Menu bar specified in Lucid Emacs fashion. */
344 Lisp_Object Vlucid_menu_bar_dirty_flag;
345 Lisp_Object Qrecompute_lucid_menubar, Qactivate_menubar_hook;
347 Lisp_Object Qecho_area_clear_hook;
349 /* Hooks to run before and after each command. */
350 Lisp_Object Qpre_command_hook, Vpre_command_hook;
351 Lisp_Object Qpost_command_hook, Vpost_command_hook;
352 Lisp_Object Qcommand_hook_internal, Vcommand_hook_internal;
353 /* Hook run after a command if there's no more input soon. */
354 Lisp_Object Qpost_command_idle_hook, Vpost_command_idle_hook;
356 /* Delay time in microseconds before running post-command-idle-hook. */
357 int post_command_idle_delay;
359 /* List of deferred actions to be performed at a later time.
360 The precise format isn't relevant here; we just check whether it is nil. */
361 Lisp_Object Vdeferred_action_list;
363 /* Function to call to handle deferred actions, when there are any. */
364 Lisp_Object Vdeferred_action_function;
365 Lisp_Object Qdeferred_action_function;
367 /* File in which we write all commands we read. */
368 FILE *dribble;
370 /* Nonzero if input is available. */
371 int input_pending;
373 /* 1 if should obey 0200 bit in input chars as "Meta", 2 if should
374 keep 0200 bit in input chars. 0 to ignore the 0200 bit. */
376 int meta_key;
378 extern char *pending_malloc_warning;
380 /* Circular buffer for pre-read keyboard input. */
381 static struct input_event kbd_buffer[KBD_BUFFER_SIZE];
383 /* Vector to GCPRO the frames and windows mentioned in kbd_buffer.
385 The interrupt-level event handlers will never enqueue an event on a
386 frame which is not in Vframe_list, and once an event is dequeued,
387 internal_last_event_frame or the event itself points to the frame.
388 So that's all fine.
390 But while the event is sitting in the queue, it's completely
391 unprotected. Suppose the user types one command which will run for
392 a while and then delete a frame, and then types another event at
393 the frame that will be deleted, before the command gets around to
394 it. Suppose there are no references to this frame elsewhere in
395 Emacs, and a GC occurs before the second event is dequeued. Now we
396 have an event referring to a freed frame, which will crash Emacs
397 when it is dequeued.
399 Similar things happen when an event on a scroll bar is enqueued; the
400 window may be deleted while the event is in the queue.
402 So, we use this vector to protect the frame_or_window field in the
403 event queue. That way, they'll be dequeued as dead frames or
404 windows, but still valid lisp objects.
406 If kbd_buffer[i].kind != no_event, then
407 (XVECTOR (kbd_buffer_frame_or_window)->contents[i]
408 == kbd_buffer[i].frame_or_window. */
409 static Lisp_Object kbd_buffer_frame_or_window;
411 /* Pointer to next available character in kbd_buffer.
412 If kbd_fetch_ptr == kbd_store_ptr, the buffer is empty.
413 This may be kbd_buffer + KBD_BUFFER_SIZE, meaning that the the
414 next available char is in kbd_buffer[0]. */
415 static struct input_event *kbd_fetch_ptr;
417 /* Pointer to next place to store character in kbd_buffer. This
418 may be kbd_buffer + KBD_BUFFER_SIZE, meaning that the next
419 character should go in kbd_buffer[0]. */
420 static volatile struct input_event *kbd_store_ptr;
422 /* The above pair of variables forms a "queue empty" flag. When we
423 enqueue a non-hook event, we increment kbd_store_ptr. When we
424 dequeue a non-hook event, we increment kbd_fetch_ptr. We say that
425 there is input available iff the two pointers are not equal.
427 Why not just have a flag set and cleared by the enqueuing and
428 dequeuing functions? Such a flag could be screwed up by interrupts
429 at inopportune times. */
431 /* If this flag is non-nil, we check mouse_moved to see when the
432 mouse moves, and motion events will appear in the input stream.
433 Otherwise, mouse motion is ignored. */
434 static Lisp_Object do_mouse_tracking;
436 /* Symbols to head events. */
437 Lisp_Object Qmouse_movement;
438 Lisp_Object Qscroll_bar_movement;
439 Lisp_Object Qswitch_frame;
440 Lisp_Object Qdelete_frame;
441 Lisp_Object Qiconify_frame;
442 Lisp_Object Qmake_frame_visible;
444 /* Symbols to denote kinds of events. */
445 Lisp_Object Qfunction_key;
446 Lisp_Object Qmouse_click;
447 /* Lisp_Object Qmouse_movement; - also an event header */
449 /* Properties of event headers. */
450 Lisp_Object Qevent_kind;
451 Lisp_Object Qevent_symbol_elements;
453 Lisp_Object Qmenu_enable;
455 /* An event header symbol HEAD may have a property named
456 Qevent_symbol_element_mask, which is of the form (BASE MODIFIERS);
457 BASE is the base, unmodified version of HEAD, and MODIFIERS is the
458 mask of modifiers applied to it. If present, this is used to help
459 speed up parse_modifiers. */
460 Lisp_Object Qevent_symbol_element_mask;
462 /* An unmodified event header BASE may have a property named
463 Qmodifier_cache, which is an alist mapping modifier masks onto
464 modified versions of BASE. If present, this helps speed up
465 apply_modifiers. */
466 Lisp_Object Qmodifier_cache;
468 /* Symbols to use for parts of windows. */
469 Lisp_Object Qmode_line;
470 Lisp_Object Qvertical_line;
471 Lisp_Object Qvertical_scroll_bar;
472 Lisp_Object Qmenu_bar;
474 extern Lisp_Object Qmenu_enable;
476 Lisp_Object recursive_edit_unwind (), command_loop ();
477 Lisp_Object Fthis_command_keys ();
478 Lisp_Object Qextended_command_history;
479 EMACS_TIME timer_check ();
481 extern char *x_get_keysym_name ();
483 static void record_menu_key ();
485 void swallow_events ();
487 Lisp_Object Qpolling_period;
489 /* List of absolute timers. Appears in order of next scheduled event. */
490 Lisp_Object Vtimer_list;
492 /* List of idle time timers. Appears in order of next scheduled event. */
493 Lisp_Object Vtimer_idle_list;
495 /* Incremented whenever a timer is run. */
496 int timers_run;
498 extern Lisp_Object Vprint_level, Vprint_length;
500 /* Address (if not 0) of EMACS_TIME to zero out if a SIGIO interrupt
501 happens. */
502 EMACS_TIME *input_available_clear_time;
504 /* Nonzero means use SIGIO interrupts; zero means use CBREAK mode.
505 Default is 1 if INTERRUPT_INPUT is defined. */
506 int interrupt_input;
508 /* Nonzero while interrupts are temporarily deferred during redisplay. */
509 int interrupts_deferred;
511 /* Nonzero means use ^S/^Q for flow control. */
512 int flow_control;
514 /* Allow m- file to inhibit use of FIONREAD. */
515 #ifdef BROKEN_FIONREAD
516 #undef FIONREAD
517 #endif
519 /* We are unable to use interrupts if FIONREAD is not available,
520 so flush SIGIO so we won't try. */
521 #ifndef FIONREAD
522 #ifdef SIGIO
523 #undef SIGIO
524 #endif
525 #endif
527 /* If we support a window system, turn on the code to poll periodically
528 to detect C-g. It isn't actually used when doing interrupt input. */
529 #ifdef HAVE_WINDOW_SYSTEM
530 #define POLL_FOR_INPUT
531 #endif
533 /* Global variable declarations. */
535 /* Function for init_keyboard to call with no args (if nonzero). */
536 void (*keyboard_init_hook) ();
538 static int read_avail_input ();
539 static void get_input_pending ();
540 static int readable_events ();
541 static Lisp_Object read_char_x_menu_prompt ();
542 static Lisp_Object read_char_minibuf_menu_prompt ();
543 static Lisp_Object make_lispy_event ();
544 #ifdef HAVE_MOUSE
545 static Lisp_Object make_lispy_movement ();
546 #endif
547 static Lisp_Object modify_event_symbol ();
548 static Lisp_Object make_lispy_switch_frame ();
549 static int parse_solitary_modifier ();
551 /* > 0 if we are to echo keystrokes. */
552 static int echo_keystrokes;
554 /* Nonzero means don't try to suspend even if the operating system seems
555 to support it. */
556 static int cannot_suspend;
558 #define min(a,b) ((a)<(b)?(a):(b))
559 #define max(a,b) ((a)>(b)?(a):(b))
561 /* Install the string STR as the beginning of the string of echoing,
562 so that it serves as a prompt for the next character.
563 Also start echoing. */
565 echo_prompt (str)
566 char *str;
568 int len = strlen (str);
570 if (len > ECHOBUFSIZE - 4)
571 len = ECHOBUFSIZE - 4;
572 bcopy (str, current_kboard->echobuf, len);
573 current_kboard->echoptr = current_kboard->echobuf + len;
574 *current_kboard->echoptr = '\0';
576 current_kboard->echo_after_prompt = len;
578 echo_now ();
581 /* Add C to the echo string, if echoing is going on.
582 C can be a character, which is printed prettily ("M-C-x" and all that
583 jazz), or a symbol, whose name is printed. */
585 echo_char (c)
586 Lisp_Object c;
588 extern char *push_key_description ();
590 if (current_kboard->immediate_echo)
592 char *ptr = current_kboard->echoptr;
594 if (ptr != current_kboard->echobuf)
595 *ptr++ = ' ';
597 /* If someone has passed us a composite event, use its head symbol. */
598 c = EVENT_HEAD (c);
600 if (INTEGERP (c))
602 if (ptr - current_kboard->echobuf > ECHOBUFSIZE - 6)
603 return;
605 ptr = push_key_description (XINT (c), ptr);
607 else if (SYMBOLP (c))
609 struct Lisp_String *name = XSYMBOL (c)->name;
610 if ((ptr - current_kboard->echobuf) + name->size + 4 > ECHOBUFSIZE)
611 return;
612 bcopy (name->data, ptr, name->size);
613 ptr += name->size;
616 if (current_kboard->echoptr == current_kboard->echobuf
617 && help_char_p (c))
619 strcpy (ptr, " (Type ? for further options)");
620 ptr += strlen (ptr);
623 *ptr = 0;
624 current_kboard->echoptr = ptr;
626 echo_now ();
630 /* Temporarily add a dash to the end of the echo string if it's not
631 empty, so that it serves as a mini-prompt for the very next character. */
633 echo_dash ()
635 if (!current_kboard->immediate_echo
636 && current_kboard->echoptr == current_kboard->echobuf)
637 return;
638 /* Do nothing if we just printed a prompt. */
639 if (current_kboard->echo_after_prompt
640 == current_kboard->echoptr - current_kboard->echobuf)
641 return;
642 /* Do nothing if not echoing at all. */
643 if (current_kboard->echoptr == 0)
644 return;
646 /* Put a dash at the end of the buffer temporarily,
647 but make it go away when the next character is added. */
648 current_kboard->echoptr[0] = '-';
649 current_kboard->echoptr[1] = 0;
651 echo_now ();
654 /* Display the current echo string, and begin echoing if not already
655 doing so. */
657 echo_now ()
659 if (!current_kboard->immediate_echo)
661 int i;
662 current_kboard->immediate_echo = 1;
664 for (i = 0; i < this_command_key_count; i++)
666 Lisp_Object c;
667 c = XVECTOR (this_command_keys)->contents[i];
668 if (! (EVENT_HAS_PARAMETERS (c)
669 && EQ (EVENT_HEAD_KIND (EVENT_HEAD (c)), Qmouse_movement)))
670 echo_char (c);
672 echo_dash ();
675 echoing = 1;
676 message1_nolog (current_kboard->echobuf);
677 echoing = 0;
679 if (waiting_for_input && !NILP (Vquit_flag))
680 quit_throw_to_read_char ();
683 /* Turn off echoing, for the start of a new command. */
685 cancel_echoing ()
687 current_kboard->immediate_echo = 0;
688 current_kboard->echoptr = current_kboard->echobuf;
689 current_kboard->echo_after_prompt = -1;
690 ok_to_echo_at_next_pause = 0;
693 /* Return the length of the current echo string. */
695 static int
696 echo_length ()
698 return current_kboard->echoptr - current_kboard->echobuf;
701 /* Truncate the current echo message to its first LEN chars.
702 This and echo_char get used by read_key_sequence when the user
703 switches frames while entering a key sequence. */
705 static void
706 echo_truncate (len)
707 int len;
709 current_kboard->echobuf[len] = '\0';
710 current_kboard->echoptr = current_kboard->echobuf + len;
711 truncate_echo_area (len);
715 /* Functions for manipulating this_command_keys. */
716 static void
717 add_command_key (key)
718 Lisp_Object key;
720 int size = XVECTOR (this_command_keys)->size;
722 /* If reset-this-command-length was called recently, obey it now.
723 See the doc string of that function for an explanation of why. */
724 if (before_command_restore_flag)
726 this_command_key_count = before_command_key_count_1;
727 if (this_command_key_count < this_single_command_key_start)
728 this_single_command_key_start = this_command_key_count;
729 echo_truncate (before_command_echo_length_1);
730 before_command_restore_flag = 0;
733 if (this_command_key_count >= size)
735 Lisp_Object new_keys;
737 new_keys = Fmake_vector (make_number (size * 2), Qnil);
738 bcopy (XVECTOR (this_command_keys)->contents,
739 XVECTOR (new_keys)->contents,
740 size * sizeof (Lisp_Object));
742 this_command_keys = new_keys;
745 XVECTOR (this_command_keys)->contents[this_command_key_count++] = key;
748 Lisp_Object
749 recursive_edit_1 ()
751 int count = specpdl_ptr - specpdl;
752 Lisp_Object val;
754 if (command_loop_level > 0)
756 specbind (Qstandard_output, Qt);
757 specbind (Qstandard_input, Qt);
760 val = command_loop ();
761 if (EQ (val, Qt))
762 Fsignal (Qquit, Qnil);
763 /* Handle throw from read_minibuf when using minibuffer
764 while it's active but we're in another window. */
765 if (STRINGP (val))
766 Fsignal (Qerror, Fcons (val, Qnil));
768 return unbind_to (count, Qnil);
771 /* When an auto-save happens, record the "time", and don't do again soon. */
773 record_auto_save ()
775 last_auto_save = num_nonmacro_input_events;
778 /* Make an auto save happen as soon as possible at command level. */
780 force_auto_save_soon ()
782 last_auto_save = - auto_save_interval - 1;
784 record_asynch_buffer_change ();
787 DEFUN ("recursive-edit", Frecursive_edit, Srecursive_edit, 0, 0, "",
788 "Invoke the editor command loop recursively.\n\
789 To get out of the recursive edit, a command can do `(throw 'exit nil)';\n\
790 that tells this function to return.\n\
791 Alternately, `(throw 'exit t)' makes this function signal an error.\n\
792 This function is called by the editor initialization to begin editing.")
795 int count = specpdl_ptr - specpdl;
796 Lisp_Object val;
798 command_loop_level++;
799 update_mode_lines = 1;
801 record_unwind_protect (recursive_edit_unwind,
802 (command_loop_level
803 && current_buffer != XBUFFER (XWINDOW (selected_window)->buffer))
804 ? Fcurrent_buffer ()
805 : Qnil);
806 recursive_edit_1 ();
807 return unbind_to (count, Qnil);
810 Lisp_Object
811 recursive_edit_unwind (buffer)
812 Lisp_Object buffer;
814 if (!NILP (buffer))
815 Fset_buffer (buffer);
817 command_loop_level--;
818 update_mode_lines = 1;
819 return Qnil;
822 static void
823 any_kboard_state ()
825 #ifdef MULTI_KBOARD
826 #if 0 /* Theory: if there's anything in Vunread_command_events,
827 it will right away be read by read_key_sequence,
828 and then if we do switch KBOARDS, it will go into the side
829 queue then. So we don't need to do anything special here -- rms. */
830 if (CONSP (Vunread_command_events))
832 current_kboard->kbd_queue
833 = nconc2 (Vunread_command_events, current_kboard->kbd_queue);
834 current_kboard->kbd_queue_has_data = 1;
836 Vunread_command_events = Qnil;
837 #endif
838 single_kboard = 0;
839 #endif
842 /* Switch to the single-kboard state, making current_kboard
843 the only KBOARD from which further input is accepted. */
845 void
846 single_kboard_state ()
848 #ifdef MULTI_KBOARD
849 single_kboard = 1;
850 #endif
853 /* Maintain a stack of kboards, so other parts of Emacs
854 can switch temporarily to the kboard of a given frame
855 and then revert to the previous status. */
857 struct kboard_stack
859 KBOARD *kboard;
860 struct kboard_stack *next;
863 static struct kboard_stack *kboard_stack;
865 void
866 push_frame_kboard (f)
867 FRAME_PTR f;
869 #ifdef MULTI_KBOARD
870 struct kboard_stack *p
871 = (struct kboard_stack *) xmalloc (sizeof (struct kboard_stack));
873 p->next = kboard_stack;
874 p->kboard = current_kboard;
875 kboard_stack = p;
877 current_kboard = FRAME_KBOARD (f);
878 #endif
881 void
882 pop_frame_kboard ()
884 #ifdef MULTI_KBOARD
885 struct kboard_stack *p = kboard_stack;
886 current_kboard = p->kboard;
887 kboard_stack = p->next;
888 xfree (p);
889 #endif
892 /* Handle errors that are not handled at inner levels
893 by printing an error message and returning to the editor command loop. */
895 Lisp_Object
896 cmd_error (data)
897 Lisp_Object data;
899 Lisp_Object old_level, old_length;
900 char macroerror[50];
902 if (!NILP (executing_macro))
904 if (executing_macro_iterations == 1)
905 sprintf (macroerror, "After 1 kbd macro iteration: ");
906 else
907 sprintf (macroerror, "After %d kbd macro iterations: ",
908 executing_macro_iterations);
910 else
911 *macroerror = 0;
913 Vstandard_output = Qt;
914 Vstandard_input = Qt;
915 Vexecuting_macro = Qnil;
916 executing_macro = Qnil;
917 current_kboard->Vprefix_arg = Qnil;
918 cancel_echoing ();
920 /* Avoid unquittable loop if data contains a circular list. */
921 old_level = Vprint_level;
922 old_length = Vprint_length;
923 XSETFASTINT (Vprint_level, 10);
924 XSETFASTINT (Vprint_length, 10);
925 cmd_error_internal (data, macroerror);
926 Vprint_level = old_level;
927 Vprint_length = old_length;
929 Vquit_flag = Qnil;
931 Vinhibit_quit = Qnil;
932 #ifdef MULTI_KBOARD
933 any_kboard_state ();
934 #endif
936 return make_number (0);
939 cmd_error_internal (data, context)
940 Lisp_Object data;
941 char *context;
943 Lisp_Object stream;
945 Vquit_flag = Qnil;
946 Vinhibit_quit = Qt;
947 echo_area_glyphs = 0;
949 /* If the window system or terminal frame hasn't been initialized
950 yet, or we're not interactive, it's best to dump this message out
951 to stderr and exit. */
952 if (! FRAME_MESSAGE_BUF (selected_frame)
953 || noninteractive)
954 stream = Qexternal_debugging_output;
955 else
957 Fdiscard_input ();
958 bitch_at_user ();
959 stream = Qt;
962 if (context != 0)
963 write_string_1 (context, -1, stream);
965 print_error_message (data, stream);
967 /* If the window system or terminal frame hasn't been initialized
968 yet, or we're in -batch mode, this error should cause Emacs to exit. */
969 if (! FRAME_MESSAGE_BUF (selected_frame)
970 || noninteractive)
972 Fterpri (stream);
973 Fkill_emacs (make_number (-1));
977 Lisp_Object command_loop_1 ();
978 Lisp_Object command_loop_2 ();
979 Lisp_Object top_level_1 ();
981 /* Entry to editor-command-loop.
982 This level has the catches for exiting/returning to editor command loop.
983 It returns nil to exit recursive edit, t to abort it. */
985 Lisp_Object
986 command_loop ()
988 if (command_loop_level > 0 || minibuf_level > 0)
990 return internal_catch (Qexit, command_loop_2, Qnil);
992 else
993 while (1)
995 internal_catch (Qtop_level, top_level_1, Qnil);
996 internal_catch (Qtop_level, command_loop_2, Qnil);
998 /* End of file in -batch run causes exit here. */
999 if (noninteractive)
1000 Fkill_emacs (Qt);
1004 /* Here we catch errors in execution of commands within the
1005 editing loop, and reenter the editing loop.
1006 When there is an error, cmd_error runs and returns a non-nil
1007 value to us. A value of nil means that cmd_loop_1 itself
1008 returned due to end of file (or end of kbd macro). */
1010 Lisp_Object
1011 command_loop_2 ()
1013 register Lisp_Object val;
1016 val = internal_condition_case (command_loop_1, Qerror, cmd_error);
1017 while (!NILP (val));
1019 return Qnil;
1022 Lisp_Object
1023 top_level_2 ()
1025 return Feval (Vtop_level);
1028 Lisp_Object
1029 top_level_1 ()
1031 /* On entry to the outer level, run the startup file */
1032 if (!NILP (Vtop_level))
1033 internal_condition_case (top_level_2, Qerror, cmd_error);
1034 else if (!NILP (Vpurify_flag))
1035 message ("Bare impure Emacs (standard Lisp code not loaded)");
1036 else
1037 message ("Bare Emacs (standard Lisp code not loaded)");
1038 return Qnil;
1041 DEFUN ("top-level", Ftop_level, Stop_level, 0, 0, "",
1042 "Exit all recursive editing levels.")
1045 Fthrow (Qtop_level, Qnil);
1048 DEFUN ("exit-recursive-edit", Fexit_recursive_edit, Sexit_recursive_edit, 0, 0, "",
1049 "Exit from the innermost recursive edit or minibuffer.")
1052 if (command_loop_level > 0 || minibuf_level > 0)
1053 Fthrow (Qexit, Qnil);
1055 error ("No recursive edit is in progress");
1058 DEFUN ("abort-recursive-edit", Fabort_recursive_edit, Sabort_recursive_edit, 0, 0, "",
1059 "Abort the command that requested this recursive edit or minibuffer input.")
1062 if (command_loop_level > 0 || minibuf_level > 0)
1063 Fthrow (Qexit, Qt);
1065 error ("No recursive edit is in progress");
1068 /* This is the actual command reading loop,
1069 sans error-handling encapsulation. */
1071 Lisp_Object Fcommand_execute ();
1072 static int read_key_sequence ();
1073 void safe_run_hooks ();
1075 Lisp_Object
1076 command_loop_1 ()
1078 Lisp_Object cmd, tem;
1079 int lose, lose2;
1080 int nonundocount;
1081 Lisp_Object keybuf[30];
1082 int i;
1083 int no_redisplay;
1084 int no_direct;
1085 int prev_modiff;
1086 struct buffer *prev_buffer;
1087 #ifdef MULTI_KBOARD
1088 int was_locked = single_kboard;
1089 #endif
1091 current_kboard->Vprefix_arg = Qnil;
1092 Vdeactivate_mark = Qnil;
1093 waiting_for_input = 0;
1094 cancel_echoing ();
1096 nonundocount = 0;
1097 no_redisplay = 0;
1098 this_command_key_count = 0;
1099 this_single_command_key_start = 0;
1101 /* Make sure this hook runs after commands that get errors and
1102 throw to top level. */
1103 /* Note that the value cell will never directly contain nil
1104 if the symbol is a local variable. */
1105 if (!NILP (Vpost_command_hook) && !NILP (Vrun_hooks))
1106 safe_run_hooks (Qpost_command_hook);
1108 if (!NILP (Vdeferred_action_list))
1109 call0 (Vdeferred_action_function);
1111 if (!NILP (Vpost_command_idle_hook) && !NILP (Vrun_hooks))
1113 if (NILP (Vunread_command_events)
1114 && NILP (Vexecuting_macro)
1115 && !NILP (sit_for (0, post_command_idle_delay, 0, 1, 1)))
1116 safe_run_hooks (Qpost_command_idle_hook);
1119 /* Do this after running Vpost_command_hook, for consistency. */
1120 current_kboard->Vlast_command = this_command;
1122 while (1)
1124 /* Make sure the current window's buffer is selected. */
1125 if (XBUFFER (XWINDOW (selected_window)->buffer) != current_buffer)
1126 set_buffer_internal (XBUFFER (XWINDOW (selected_window)->buffer));
1128 /* Display any malloc warning that just came out. Use while because
1129 displaying one warning can cause another. */
1131 while (pending_malloc_warning)
1132 display_malloc_warning ();
1134 no_direct = 0;
1136 Vdeactivate_mark = Qnil;
1138 /* If minibuffer on and echo area in use,
1139 wait 2 sec and redraw minibuffer. */
1141 if (minibuf_level && echo_area_glyphs
1142 && EQ (minibuf_window, echo_area_window))
1144 /* Bind inhibit-quit to t so that C-g gets read in
1145 rather than quitting back to the minibuffer. */
1146 int count = specpdl_ptr - specpdl;
1147 specbind (Qinhibit_quit, Qt);
1149 Fsit_for (make_number (2), Qnil, Qnil);
1150 /* Clear the echo area. */
1151 message2 (0);
1152 safe_run_hooks (Qecho_area_clear_hook);
1154 unbind_to (count, Qnil);
1156 /* If a C-g came in before, treat it as input now. */
1157 if (!NILP (Vquit_flag))
1159 Vquit_flag = Qnil;
1160 Vunread_command_events = Fcons (make_number (quit_char), Qnil);
1164 #ifdef C_ALLOCA
1165 alloca (0); /* Cause a garbage collection now */
1166 /* Since we can free the most stuff here. */
1167 #endif /* C_ALLOCA */
1169 #if 0
1170 /* Select the frame that the last event came from. Usually,
1171 switch-frame events will take care of this, but if some lisp
1172 code swallows a switch-frame event, we'll fix things up here.
1173 Is this a good idea? */
1174 if (FRAMEP (internal_last_event_frame)
1175 && XFRAME (internal_last_event_frame) != selected_frame)
1176 Fselect_frame (internal_last_event_frame, Qnil);
1177 #endif
1178 /* If it has changed current-menubar from previous value,
1179 really recompute the menubar from the value. */
1180 if (! NILP (Vlucid_menu_bar_dirty_flag)
1181 && !NILP (Ffboundp (Qrecompute_lucid_menubar)))
1182 call0 (Qrecompute_lucid_menubar);
1184 before_command_key_count = this_command_key_count;
1185 before_command_echo_length = echo_length ();
1187 this_command = Qnil;
1189 /* Read next key sequence; i gets its length. */
1190 i = read_key_sequence (keybuf, sizeof keybuf / sizeof keybuf[0],
1191 Qnil, 0, 1, 1);
1193 /* A filter may have run while we were reading the input. */
1194 if (XBUFFER (XWINDOW (selected_window)->buffer) != current_buffer)
1195 set_buffer_internal (XBUFFER (XWINDOW (selected_window)->buffer));
1197 ++num_input_keys;
1199 /* Now we have read a key sequence of length I,
1200 or else I is 0 and we found end of file. */
1202 if (i == 0) /* End of file -- happens only in */
1203 return Qnil; /* a kbd macro, at the end. */
1204 /* -1 means read_key_sequence got a menu that was rejected.
1205 Just loop around and read another command. */
1206 if (i == -1)
1208 cancel_echoing ();
1209 this_command_key_count = 0;
1210 this_single_command_key_start = 0;
1211 goto finalize;
1214 last_command_char = keybuf[i - 1];
1216 /* If the previous command tried to force a specific window-start,
1217 forget about that, in case this command moves point far away
1218 from that position. But also throw away beg_unchanged and
1219 end_unchanged information in that case, so that redisplay will
1220 update the whole window properly. */
1221 if (!NILP (XWINDOW (selected_window)->force_start))
1223 XWINDOW (selected_window)->force_start = Qnil;
1224 beg_unchanged = end_unchanged = 0;
1227 cmd = read_key_sequence_cmd;
1228 if (!NILP (Vexecuting_macro))
1230 if (!NILP (Vquit_flag))
1232 Vexecuting_macro = Qt;
1233 QUIT; /* Make some noise. */
1234 /* Will return since macro now empty. */
1238 /* Do redisplay processing after this command except in special
1239 cases identified below that set no_redisplay to 1.
1240 (actually, there's currently no way to prevent the redisplay,
1241 and no_redisplay is ignored.
1242 Perhaps someday we will really implement it.) */
1243 no_redisplay = 0;
1245 prev_buffer = current_buffer;
1246 prev_modiff = MODIFF;
1247 last_point_position = PT;
1248 XSETBUFFER (last_point_position_buffer, prev_buffer);
1250 /* Execute the command. */
1252 this_command = cmd;
1253 /* Note that the value cell will never directly contain nil
1254 if the symbol is a local variable. */
1255 if (!NILP (Vpre_command_hook) && !NILP (Vrun_hooks))
1256 safe_run_hooks (Qpre_command_hook);
1258 if (NILP (this_command))
1260 /* nil means key is undefined. */
1261 bitch_at_user ();
1262 current_kboard->defining_kbd_macro = Qnil;
1263 update_mode_lines = 1;
1264 current_kboard->Vprefix_arg = Qnil;
1266 else
1268 if (NILP (current_kboard->Vprefix_arg) && ! no_direct)
1270 /* Recognize some common commands in common situations and
1271 do them directly. */
1272 if (EQ (this_command, Qforward_char) && PT < ZV)
1274 struct Lisp_Char_Table *dp
1275 = window_display_table (XWINDOW (selected_window));
1276 lose = FETCH_BYTE (PT);
1277 SET_PT (forward_point (1));
1278 if ((dp
1279 ? (VECTORP (DISP_CHAR_VECTOR (dp, lose))
1280 ? XVECTOR (DISP_CHAR_VECTOR (dp, lose))->size == 1
1281 : (NILP (DISP_CHAR_VECTOR (dp, lose))
1282 && (lose >= 0x20 && lose < 0x7f)))
1283 : (lose >= 0x20 && lose < 0x7f))
1284 /* To extract the case of continuation on
1285 wide-column characters. */
1286 && (WIDTH_BY_CHAR_HEAD (FETCH_BYTE (PT)) == 1)
1287 && (XFASTINT (XWINDOW (selected_window)->last_modified)
1288 >= MODIFF)
1289 && (XFASTINT (XWINDOW (selected_window)->last_overlay_modified)
1290 >= OVERLAY_MODIFF)
1291 && (XFASTINT (XWINDOW (selected_window)->last_point)
1292 == PT - 1)
1293 && !windows_or_buffers_changed
1294 && EQ (current_buffer->selective_display, Qnil)
1295 && !detect_input_pending ()
1296 && NILP (XWINDOW (selected_window)->column_number_displayed)
1297 && NILP (Vexecuting_macro))
1298 no_redisplay = direct_output_forward_char (1);
1299 goto directly_done;
1301 else if (EQ (this_command, Qbackward_char) && PT > BEGV)
1303 struct Lisp_Char_Table *dp
1304 = window_display_table (XWINDOW (selected_window));
1305 SET_PT (forward_point (-1));
1306 lose = FETCH_BYTE (PT);
1307 if ((dp
1308 ? (VECTORP (DISP_CHAR_VECTOR (dp, lose))
1309 ? XVECTOR (DISP_CHAR_VECTOR (dp, lose))->size == 1
1310 : (NILP (DISP_CHAR_VECTOR (dp, lose))
1311 && (lose >= 0x20 && lose < 0x7f)))
1312 : (lose >= 0x20 && lose < 0x7f))
1313 && (XFASTINT (XWINDOW (selected_window)->last_modified)
1314 >= MODIFF)
1315 && (XFASTINT (XWINDOW (selected_window)->last_overlay_modified)
1316 >= OVERLAY_MODIFF)
1317 && (XFASTINT (XWINDOW (selected_window)->last_point)
1318 == PT + 1)
1319 && !windows_or_buffers_changed
1320 && EQ (current_buffer->selective_display, Qnil)
1321 && !detect_input_pending ()
1322 && NILP (XWINDOW (selected_window)->column_number_displayed)
1323 && NILP (Vexecuting_macro))
1324 no_redisplay = direct_output_forward_char (-1);
1325 goto directly_done;
1327 else if (EQ (this_command, Qself_insert_command)
1328 /* Try this optimization only on ascii keystrokes. */
1329 && INTEGERP (last_command_char))
1331 unsigned int c = XINT (last_command_char);
1332 int value;
1334 if (NILP (Vexecuting_macro)
1335 && !EQ (minibuf_window, selected_window))
1337 if (!nonundocount || nonundocount >= 20)
1339 Fundo_boundary ();
1340 nonundocount = 0;
1342 nonundocount++;
1344 lose = ((XFASTINT (XWINDOW (selected_window)->last_modified)
1345 < MODIFF)
1346 || (XFASTINT (XWINDOW (selected_window)->last_overlay_modified)
1347 < OVERLAY_MODIFF)
1348 || (XFASTINT (XWINDOW (selected_window)->last_point)
1349 != PT)
1350 || MODIFF <= SAVE_MODIFF
1351 || windows_or_buffers_changed
1352 || !EQ (current_buffer->selective_display, Qnil)
1353 || detect_input_pending ()
1354 || !NILP (XWINDOW (selected_window)->column_number_displayed)
1355 || !NILP (Vexecuting_macro));
1356 value = internal_self_insert (c, 0);
1357 if (value)
1358 lose = 1;
1359 if (value == 2)
1360 nonundocount = 0;
1362 if (!lose
1363 && (PT == ZV || FETCH_BYTE (PT) == '\n'))
1365 struct Lisp_Char_Table *dp
1366 = window_display_table (XWINDOW (selected_window));
1367 int lose = c;
1369 if (dp)
1371 Lisp_Object obj;
1373 obj = DISP_CHAR_VECTOR (dp, lose);
1374 if (NILP (obj))
1376 /* Do it only for char codes
1377 that by default display as themselves. */
1378 if (lose >= 0x20 && lose <= 0x7e)
1379 no_redisplay = direct_output_for_insert (lose);
1381 else if (VECTORP (obj)
1382 && XVECTOR (obj)->size == 1
1383 && (obj = XVECTOR (obj)->contents[0],
1384 INTEGERP (obj))
1385 /* Insist face not specified in glyph. */
1386 && (XINT (obj) & ((-1) << 8)) == 0)
1387 no_redisplay
1388 = direct_output_for_insert (XINT (obj));
1390 else
1392 if (lose >= 0x20 && lose <= 0x7e)
1393 no_redisplay = direct_output_for_insert (lose);
1396 goto directly_done;
1400 /* Here for a command that isn't executed directly */
1402 nonundocount = 0;
1403 if (NILP (current_kboard->Vprefix_arg))
1404 Fundo_boundary ();
1405 Fcommand_execute (this_command, Qnil, Qnil, Qnil);
1408 directly_done: ;
1410 /* If there is a prefix argument,
1411 1) We don't want Vlast_command to be ``universal-argument''
1412 (that would be dumb), so don't set Vlast_command,
1413 2) we want to leave echoing on so that the prefix will be
1414 echoed as part of this key sequence, so don't call
1415 cancel_echoing, and
1416 3) we want to leave this_command_key_count non-zero, so that
1417 read_char will realize that it is re-reading a character, and
1418 not echo it a second time.
1420 If the command didn't actually create a prefix arg,
1421 but is merely a frame event that is transparent to prefix args,
1422 then the above doesn't apply. */
1423 if (NILP (current_kboard->Vprefix_arg) || CONSP (last_command_char))
1425 current_kboard->Vlast_command = this_command;
1426 cancel_echoing ();
1427 this_command_key_count = 0;
1428 this_single_command_key_start = 0;
1431 /* Note that the value cell will never directly contain nil
1432 if the symbol is a local variable. */
1433 if (!NILP (Vpost_command_hook) && !NILP (Vrun_hooks))
1434 safe_run_hooks (Qpost_command_hook);
1436 if (!NILP (Vdeferred_action_list))
1437 safe_run_hooks (Qdeferred_action_function);
1439 if (!NILP (Vpost_command_idle_hook) && !NILP (Vrun_hooks))
1441 if (NILP (Vunread_command_events)
1442 && NILP (Vexecuting_macro)
1443 && !NILP (sit_for (0, post_command_idle_delay, 0, 1, 1)))
1444 safe_run_hooks (Qpost_command_idle_hook);
1447 if (!NILP (current_buffer->mark_active) && !NILP (Vrun_hooks))
1449 if (!NILP (Vdeactivate_mark) && !NILP (Vtransient_mark_mode))
1451 current_buffer->mark_active = Qnil;
1452 call1 (Vrun_hooks, intern ("deactivate-mark-hook"));
1454 else if (current_buffer != prev_buffer || MODIFF != prev_modiff)
1455 call1 (Vrun_hooks, intern ("activate-mark-hook"));
1458 finalize:
1459 /* Install chars successfully executed in kbd macro. */
1461 if (!NILP (current_kboard->defining_kbd_macro)
1462 && NILP (current_kboard->Vprefix_arg))
1463 finalize_kbd_macro_chars ();
1465 #ifdef MULTI_KBOARD
1466 if (!was_locked)
1467 any_kboard_state ();
1468 #endif
1472 /* Subroutine for safe_run_hooks: run the hook HOOK. */
1474 static Lisp_Object
1475 safe_run_hooks_1 (hook)
1476 Lisp_Object hook;
1478 return call1 (Vrun_hooks, Vinhibit_quit);
1481 /* Subroutine for safe_run_hooks: handle an error by clearing out the hook. */
1483 static Lisp_Object
1484 safe_run_hooks_error (data)
1485 Lisp_Object data;
1487 Fset (Vinhibit_quit, Qnil);
1490 /* If we get an error while running the hook, cause the hook variable
1491 to be nil. Also inhibit quits, so that C-g won't cause the hook
1492 to mysteriously evaporate. */
1494 void
1495 safe_run_hooks (hook)
1496 Lisp_Object hook;
1498 Lisp_Object value;
1499 int count = specpdl_ptr - specpdl;
1500 specbind (Qinhibit_quit, hook);
1502 internal_condition_case (safe_run_hooks_1, Qt, safe_run_hooks_error);
1504 unbind_to (count, Qnil);
1507 /* Number of seconds between polling for input. */
1508 int polling_period;
1510 /* Nonzero means polling for input is temporarily suppressed. */
1511 int poll_suppress_count;
1513 /* Nonzero if polling_for_input is actually being used. */
1514 int polling_for_input;
1516 #ifdef POLL_FOR_INPUT
1518 /* Handle an alarm once each second and read pending input
1519 so as to handle a C-g if it comces in. */
1521 SIGTYPE
1522 input_poll_signal (signalnum) /* If we don't have an argument, */
1523 int signalnum; /* some compilers complain in signal calls. */
1525 /* This causes the call to start_polling at the end
1526 to do its job. It also arranges for a quit or error
1527 from within read_avail_input to resume polling. */
1528 poll_suppress_count++;
1529 if (interrupt_input_blocked == 0
1530 && !waiting_for_input)
1531 read_avail_input (0);
1532 /* Turn on the SIGALRM handler and request another alarm. */
1533 start_polling ();
1536 #endif
1538 /* Begin signals to poll for input, if they are appropriate.
1539 This function is called unconditionally from various places. */
1541 start_polling ()
1543 #ifdef POLL_FOR_INPUT
1544 if (read_socket_hook && !interrupt_input)
1546 poll_suppress_count--;
1547 if (poll_suppress_count == 0)
1549 signal (SIGALRM, input_poll_signal);
1550 polling_for_input = 1;
1551 alarm (polling_period);
1554 #endif
1557 /* Nonzero if we are using polling to handle input asynchronously. */
1560 input_polling_used ()
1562 #ifdef POLL_FOR_INPUT
1563 return read_socket_hook && !interrupt_input;
1564 #else
1565 return 0;
1566 #endif
1569 /* Turn off polling. */
1571 stop_polling ()
1573 #ifdef POLL_FOR_INPUT
1574 if (read_socket_hook && !interrupt_input)
1576 if (poll_suppress_count == 0)
1578 polling_for_input = 0;
1579 alarm (0);
1581 poll_suppress_count++;
1583 #endif
1586 /* Set the value of poll_suppress_count to COUNT
1587 and start or stop polling accordingly. */
1589 void
1590 set_poll_suppress_count (count)
1591 int count;
1593 #ifdef POLL_FOR_INPUT
1594 if (count == 0 && poll_suppress_count != 0)
1596 poll_suppress_count = 1;
1597 start_polling ();
1599 else if (count != 0 && poll_suppress_count == 0)
1601 stop_polling ();
1603 poll_suppress_count = count;
1604 #endif
1607 /* Bind polling_period to a value at least N.
1608 But don't decrease it. */
1610 bind_polling_period (n)
1611 int n;
1613 #ifdef POLL_FOR_INPUT
1614 int new = polling_period;
1616 if (n > new)
1617 new = n;
1619 stop_polling ();
1620 specbind (Qpolling_period, make_number (new));
1621 /* Start a new alarm with the new period. */
1622 start_polling ();
1623 #endif
1626 /* Apply the control modifier to CHARACTER. */
1629 make_ctrl_char (c)
1630 int c;
1632 /* Save the upper bits here. */
1633 int upper = c & ~0177;
1635 c &= 0177;
1637 /* Everything in the columns containing the upper-case letters
1638 denotes a control character. */
1639 if (c >= 0100 && c < 0140)
1641 int oc = c;
1642 c &= ~0140;
1643 /* Set the shift modifier for a control char
1644 made from a shifted letter. But only for letters! */
1645 if (oc >= 'A' && oc <= 'Z')
1646 c |= shift_modifier;
1649 /* The lower-case letters denote control characters too. */
1650 else if (c >= 'a' && c <= 'z')
1651 c &= ~0140;
1653 /* Include the bits for control and shift
1654 only if the basic ASCII code can't indicate them. */
1655 else if (c >= ' ')
1656 c |= ctrl_modifier;
1658 /* Replace the high bits. */
1659 c |= (upper & ~ctrl_modifier);
1661 return c;
1666 /* Input of single characters from keyboard */
1668 Lisp_Object print_help ();
1669 static Lisp_Object kbd_buffer_get_event ();
1670 static void record_char ();
1672 #ifdef MULTI_KBOARD
1673 static jmp_buf wrong_kboard_jmpbuf;
1674 #endif
1676 /* read a character from the keyboard; call the redisplay if needed */
1677 /* commandflag 0 means do not do auto-saving, but do do redisplay.
1678 -1 means do not do redisplay, but do do autosaving.
1679 1 means do both. */
1681 /* The arguments MAPS and NMAPS are for menu prompting.
1682 MAPS is an array of keymaps; NMAPS is the length of MAPS.
1684 PREV_EVENT is the previous input event, or nil if we are reading
1685 the first event of a key sequence.
1687 If USED_MOUSE_MENU is non-null, then we set *USED_MOUSE_MENU to 1
1688 if we used a mouse menu to read the input, or zero otherwise. If
1689 USED_MOUSE_MENU is null, we don't dereference it.
1691 Value is t if we showed a menu and the user rejected it. */
1693 Lisp_Object
1694 read_char (commandflag, nmaps, maps, prev_event, used_mouse_menu)
1695 int commandflag;
1696 int nmaps;
1697 Lisp_Object *maps;
1698 Lisp_Object prev_event;
1699 int *used_mouse_menu;
1701 register Lisp_Object c;
1702 int count;
1703 jmp_buf local_getcjmp;
1704 jmp_buf save_jump;
1705 int key_already_recorded = 0;
1706 Lisp_Object tem, save;
1707 Lisp_Object also_record;
1708 also_record = Qnil;
1710 before_command_key_count = this_command_key_count;
1711 before_command_echo_length = echo_length ();
1713 retry:
1715 if (CONSP (Vunread_command_events))
1717 c = XCONS (Vunread_command_events)->car;
1718 Vunread_command_events = XCONS (Vunread_command_events)->cdr;
1720 /* Undo what read_char_x_menu_prompt did when it unread
1721 additional keys returned by Fx_popup_menu. */
1722 if (CONSP (c)
1723 && (SYMBOLP (XCONS (c)->car) || INTEGERP (XCONS (c)->car))
1724 && NILP (XCONS (c)->cdr))
1725 c = XCONS (c)->car;
1727 if (this_command_key_count == 0)
1728 goto reread_first;
1729 else
1730 goto reread;
1733 if (unread_command_char != -1)
1735 XSETINT (c, unread_command_char);
1736 unread_command_char = -1;
1738 if (this_command_key_count == 0)
1739 goto reread_first;
1740 else
1741 goto reread;
1744 /* If there is no function key translated before
1745 reset-this-command-lengths takes effect, forget about it. */
1746 before_command_restore_flag = 0;
1748 if (!NILP (Vexecuting_macro))
1750 /* We set this to Qmacro; since that's not a frame, nobody will
1751 try to switch frames on us, and the selected window will
1752 remain unchanged.
1754 Since this event came from a macro, it would be misleading to
1755 leave internal_last_event_frame set to wherever the last
1756 real event came from. Normally, a switch-frame event selects
1757 internal_last_event_frame after each command is read, but
1758 events read from a macro should never cause a new frame to be
1759 selected. */
1760 Vlast_event_frame = internal_last_event_frame = Qmacro;
1762 /* Exit the macro if we are at the end.
1763 Also, some things replace the macro with t
1764 to force an early exit. */
1765 if (EQ (Vexecuting_macro, Qt)
1766 || executing_macro_index >= XFASTINT (Flength (Vexecuting_macro)))
1768 XSETINT (c, -1);
1769 return c;
1772 c = Faref (Vexecuting_macro, make_number (executing_macro_index));
1773 if (STRINGP (Vexecuting_macro)
1774 && (XINT (c) & 0x80))
1775 XSETFASTINT (c, CHAR_META | (XINT (c) & ~0x80));
1777 executing_macro_index++;
1779 goto from_macro;
1782 if (!NILP (unread_switch_frame))
1784 c = unread_switch_frame;
1785 unread_switch_frame = Qnil;
1787 /* This event should make it into this_command_keys, and get echoed
1788 again, so we go to reread_first, rather than reread. */
1789 goto reread_first;
1792 if (commandflag >= 0)
1794 if (input_pending
1795 || detect_input_pending_run_timers (0))
1796 swallow_events (0);
1798 if (!input_pending)
1799 redisplay ();
1802 /* Message turns off echoing unless more keystrokes turn it on again. */
1803 if (echo_area_glyphs && *echo_area_glyphs
1804 && echo_area_glyphs != current_kboard->echobuf
1805 && ok_to_echo_at_next_pause != echo_area_glyphs)
1806 cancel_echoing ();
1807 else
1808 /* If already echoing, continue. */
1809 echo_dash ();
1811 /* Try reading a character via menu prompting in the minibuf.
1812 Try this before the sit-for, because the sit-for
1813 would do the wrong thing if we are supposed to do
1814 menu prompting. If EVENT_HAS_PARAMETERS then we are reading
1815 after a mouse event so don't try a minibuf menu. */
1816 c = Qnil;
1817 if (nmaps > 0 && INTERACTIVE
1818 && !NILP (prev_event) && ! EVENT_HAS_PARAMETERS (prev_event)
1819 /* Don't bring up a menu if we already have another event. */
1820 && NILP (Vunread_command_events)
1821 && unread_command_char < 0
1822 && !detect_input_pending_run_timers (0))
1824 c = read_char_minibuf_menu_prompt (commandflag, nmaps, maps);
1825 if (! NILP (c))
1827 key_already_recorded = 1;
1828 goto non_reread_1;
1832 /* Make a longjmp point for quits to use, but don't alter getcjmp just yet.
1833 We will do that below, temporarily for short sections of code,
1834 when appropriate. local_getcjmp must be in effect
1835 around any call to sit_for or kbd_buffer_get_event;
1836 it *must not* be in effect when we call redisplay. */
1838 if (_setjmp (local_getcjmp))
1840 XSETINT (c, quit_char);
1841 XSETFRAME (internal_last_event_frame, selected_frame);
1842 Vlast_event_frame = internal_last_event_frame;
1843 /* If we report the quit char as an event,
1844 don't do so more than once. */
1845 if (!NILP (Vinhibit_quit))
1846 Vquit_flag = Qnil;
1848 #ifdef MULTI_KBOARD
1850 KBOARD *kb = FRAME_KBOARD (selected_frame);
1851 if (kb != current_kboard)
1853 Lisp_Object *tailp = &kb->kbd_queue;
1854 /* We shouldn't get here if we were in single-kboard mode! */
1855 if (single_kboard)
1856 abort ();
1857 while (CONSP (*tailp))
1858 tailp = &XCONS (*tailp)->cdr;
1859 if (!NILP (*tailp))
1860 abort ();
1861 *tailp = Fcons (c, Qnil);
1862 kb->kbd_queue_has_data = 1;
1863 current_kboard = kb;
1864 longjmp (wrong_kboard_jmpbuf, 1);
1867 #endif
1868 goto non_reread;
1871 timer_start_idle ();
1873 /* If in middle of key sequence and minibuffer not active,
1874 start echoing if enough time elapses. */
1876 if (minibuf_level == 0 && !current_kboard->immediate_echo
1877 && this_command_key_count > 0
1878 && ! noninteractive
1879 && echo_keystrokes > 0
1880 && (echo_area_glyphs == 0 || *echo_area_glyphs == 0
1881 || ok_to_echo_at_next_pause == echo_area_glyphs))
1883 Lisp_Object tem0;
1885 /* After a mouse event, start echoing right away.
1886 This is because we are probably about to display a menu,
1887 and we don't want to delay before doing so. */
1888 if (EVENT_HAS_PARAMETERS (prev_event))
1889 echo_now ();
1890 else
1892 save_getcjmp (save_jump);
1893 restore_getcjmp (local_getcjmp);
1894 tem0 = sit_for (echo_keystrokes, 0, 1, 1, 0);
1895 restore_getcjmp (save_jump);
1896 if (EQ (tem0, Qt)
1897 && ! CONSP (Vunread_command_events))
1898 echo_now ();
1902 /* Maybe auto save due to number of keystrokes. */
1904 if (commandflag != 0
1905 && auto_save_interval > 0
1906 && num_nonmacro_input_events - last_auto_save > max (auto_save_interval, 20)
1907 && !detect_input_pending_run_timers (0))
1909 Fdo_auto_save (Qnil, Qnil);
1910 /* Hooks can actually change some buffers in auto save. */
1911 redisplay ();
1914 /* Try reading using an X menu.
1915 This is never confused with reading using the minibuf
1916 because the recursive call of read_char in read_char_minibuf_menu_prompt
1917 does not pass on any keymaps. */
1919 if (nmaps > 0 && INTERACTIVE
1920 && !NILP (prev_event)
1921 && EVENT_HAS_PARAMETERS (prev_event)
1922 && !EQ (XCONS (prev_event)->car, Qmenu_bar)
1923 /* Don't bring up a menu if we already have another event. */
1924 && NILP (Vunread_command_events)
1925 && unread_command_char < 0)
1927 c = read_char_x_menu_prompt (nmaps, maps, prev_event, used_mouse_menu);
1929 /* Now that we have read an event, Emacs is not idle. */
1930 timer_stop_idle ();
1932 return c;
1935 /* Maybe autosave and/or garbage collect due to idleness. */
1937 if (INTERACTIVE && NILP (c))
1939 int delay_level, buffer_size;
1941 /* Slow down auto saves logarithmically in size of current buffer,
1942 and garbage collect while we're at it. */
1943 if (! MINI_WINDOW_P (XWINDOW (selected_window)))
1944 last_non_minibuf_size = Z - BEG;
1945 buffer_size = (last_non_minibuf_size >> 8) + 1;
1946 delay_level = 0;
1947 while (buffer_size > 64)
1948 delay_level++, buffer_size -= buffer_size >> 2;
1949 if (delay_level < 4) delay_level = 4;
1950 /* delay_level is 4 for files under around 50k, 7 at 100k,
1951 9 at 200k, 11 at 300k, and 12 at 500k. It is 15 at 1 meg. */
1953 /* Auto save if enough time goes by without input. */
1954 if (commandflag != 0
1955 && num_nonmacro_input_events > last_auto_save
1956 && INTEGERP (Vauto_save_timeout)
1957 && XINT (Vauto_save_timeout) > 0)
1959 Lisp_Object tem0;
1961 save_getcjmp (save_jump);
1962 restore_getcjmp (local_getcjmp);
1963 tem0 = sit_for (delay_level * XFASTINT (Vauto_save_timeout) / 4,
1964 0, 1, 1, 0);
1965 restore_getcjmp (save_jump);
1967 if (EQ (tem0, Qt)
1968 && ! CONSP (Vunread_command_events))
1970 Fdo_auto_save (Qnil, Qnil);
1972 /* If we have auto-saved and there is still no input
1973 available, garbage collect if there has been enough
1974 consing going on to make it worthwhile. */
1975 if (!detect_input_pending_run_timers (0)
1976 && consing_since_gc > gc_cons_threshold / 2)
1977 Fgarbage_collect ();
1979 redisplay ();
1984 /* If this has become non-nil here, it has been set by a timer
1985 or sentinel or filter. */
1986 if (CONSP (Vunread_command_events))
1988 c = XCONS (Vunread_command_events)->car;
1989 Vunread_command_events = XCONS (Vunread_command_events)->cdr;
1992 /* Read something from current KBOARD's side queue, if possible. */
1994 if (NILP (c))
1996 if (current_kboard->kbd_queue_has_data)
1998 if (!CONSP (current_kboard->kbd_queue))
1999 abort ();
2000 c = XCONS (current_kboard->kbd_queue)->car;
2001 current_kboard->kbd_queue
2002 = XCONS (current_kboard->kbd_queue)->cdr;
2003 if (NILP (current_kboard->kbd_queue))
2004 current_kboard->kbd_queue_has_data = 0;
2005 input_pending = readable_events (0);
2006 if (EVENT_HAS_PARAMETERS (c)
2007 && EQ (EVENT_HEAD_KIND (EVENT_HEAD (c)), Qswitch_frame))
2008 internal_last_event_frame = XCONS (XCONS (c)->cdr)->car;
2009 Vlast_event_frame = internal_last_event_frame;
2013 #ifdef MULTI_KBOARD
2014 /* If current_kboard's side queue is empty check the other kboards.
2015 If one of them has data that we have not yet seen here,
2016 switch to it and process the data waiting for it.
2018 Note: if the events queued up for another kboard
2019 have already been seen here, and therefore are not a complete command,
2020 the kbd_queue_has_data field is 0, so we skip that kboard here.
2021 That's to avoid an infinite loop switching between kboards here. */
2022 if (NILP (c) && !single_kboard)
2024 KBOARD *kb;
2025 for (kb = all_kboards; kb; kb = kb->next_kboard)
2026 if (kb->kbd_queue_has_data)
2028 current_kboard = kb;
2029 longjmp (wrong_kboard_jmpbuf, 1);
2032 #endif
2034 wrong_kboard:
2036 stop_polling ();
2038 /* Finally, we read from the main queue,
2039 and if that gives us something we can't use yet, we put it on the
2040 appropriate side queue and try again. */
2042 if (NILP (c))
2044 KBOARD *kb;
2046 /* Actually read a character, waiting if necessary. */
2047 save_getcjmp (save_jump);
2048 restore_getcjmp (local_getcjmp);
2049 c = kbd_buffer_get_event (&kb, used_mouse_menu);
2050 restore_getcjmp (save_jump);
2052 #ifdef MULTI_KBOARD
2053 if (! NILP (c) && (kb != current_kboard))
2055 Lisp_Object *tailp = &kb->kbd_queue;
2056 while (CONSP (*tailp))
2057 tailp = &XCONS (*tailp)->cdr;
2058 if (!NILP (*tailp))
2059 abort ();
2060 *tailp = Fcons (c, Qnil);
2061 kb->kbd_queue_has_data = 1;
2062 c = Qnil;
2063 if (single_kboard)
2064 goto wrong_kboard;
2065 current_kboard = kb;
2066 longjmp (wrong_kboard_jmpbuf, 1);
2068 #endif
2071 /* Terminate Emacs in batch mode if at eof. */
2072 if (noninteractive && INTEGERP (c) && XINT (c) < 0)
2073 Fkill_emacs (make_number (1));
2075 if (INTEGERP (c))
2077 /* Add in any extra modifiers, where appropriate. */
2078 if ((extra_keyboard_modifiers & CHAR_CTL)
2079 || ((extra_keyboard_modifiers & 0177) < ' '
2080 && (extra_keyboard_modifiers & 0177) != 0))
2081 XSETINT (c, make_ctrl_char (XINT (c)));
2083 /* Transfer any other modifier bits directly from
2084 extra_keyboard_modifiers to c. Ignore the actual character code
2085 in the low 16 bits of extra_keyboard_modifiers. */
2086 XSETINT (c, XINT (c) | (extra_keyboard_modifiers & ~0xff7f & ~CHAR_CTL));
2089 non_reread:
2091 /* Now that we have read an event, Emacs is not idle--
2092 unless the event was a timer event (not used now). */
2093 if (! CONSP (c))
2094 timer_stop_idle ();
2096 start_polling ();
2098 if (NILP (c))
2100 if (commandflag >= 0
2101 && !input_pending && !detect_input_pending_run_timers (0))
2102 redisplay ();
2104 goto wrong_kboard;
2107 non_reread_1:
2109 /* Buffer switch events are only for internal wakeups
2110 so don't show them to the user. */
2111 if (BUFFERP (c))
2112 return c;
2114 if (key_already_recorded)
2115 return c;
2117 /* Process special events within read_char
2118 and loop around to read another event. */
2119 save = Vquit_flag;
2120 Vquit_flag = Qnil;
2121 tem = get_keyelt (access_keymap (get_keymap_1 (Vspecial_event_map, 0, 0),
2122 c, 0, 0), 1);
2123 Vquit_flag = save;
2125 if (!NILP (tem))
2127 int was_locked = single_kboard;
2129 last_input_char = c;
2130 Fcommand_execute (tem, Qnil, Fvector (1, &last_input_char), Qt);
2132 /* Resume allowing input from any kboard, if that was true before. */
2133 if (!was_locked)
2134 any_kboard_state ();
2136 goto retry;
2139 /* Wipe the echo area. */
2140 if (echo_area_glyphs)
2141 safe_run_hooks (Qecho_area_clear_hook);
2142 echo_area_glyphs = 0;
2144 /* Handle things that only apply to characters. */
2145 if (INTEGERP (c))
2147 /* If kbd_buffer_get_event gave us an EOF, return that. */
2148 if (XINT (c) == -1)
2149 return c;
2151 if (STRINGP (Vkeyboard_translate_table)
2152 && XSTRING (Vkeyboard_translate_table)->size > (unsigned) XFASTINT (c))
2153 XSETINT (c, XSTRING (Vkeyboard_translate_table)->data[XFASTINT (c)]);
2154 else if ((VECTORP (Vkeyboard_translate_table)
2155 && XVECTOR (Vkeyboard_translate_table)->size > (unsigned) XFASTINT (c))
2156 || (CHAR_TABLE_P (Vkeyboard_translate_table)
2157 && CHAR_TABLE_ORDINARY_SLOTS > (unsigned) XFASTINT (c)))
2159 Lisp_Object d;
2160 d = Faref (Vkeyboard_translate_table, c);
2161 /* nil in keyboard-translate-table means no translation. */
2162 if (!NILP (d))
2163 c = d;
2167 /* If this event is a mouse click in the menu bar,
2168 return just menu-bar for now. Modify the mouse click event
2169 so we won't do this twice, then queue it up. */
2170 if (EVENT_HAS_PARAMETERS (c)
2171 && CONSP (XCONS (c)->cdr)
2172 && CONSP (EVENT_START (c))
2173 && CONSP (XCONS (EVENT_START (c))->cdr))
2175 Lisp_Object posn;
2177 posn = POSN_BUFFER_POSN (EVENT_START (c));
2178 /* Handle menu-bar events:
2179 insert the dummy prefix event `menu-bar'. */
2180 if (EQ (posn, Qmenu_bar))
2182 /* Change menu-bar to (menu-bar) as the event "position". */
2183 POSN_BUFFER_POSN (EVENT_START (c)) = Fcons (posn, Qnil);
2185 also_record = c;
2186 Vunread_command_events = Fcons (c, Vunread_command_events);
2187 c = posn;
2191 record_char (c);
2192 if (! NILP (also_record))
2193 record_char (also_record);
2195 from_macro:
2196 reread_first:
2197 before_command_key_count = this_command_key_count;
2198 before_command_echo_length = echo_length ();
2200 /* Don't echo mouse motion events. */
2201 if (echo_keystrokes
2202 && ! (EVENT_HAS_PARAMETERS (c)
2203 && EQ (EVENT_HEAD_KIND (EVENT_HEAD (c)), Qmouse_movement)))
2205 echo_char (c);
2206 if (! NILP (also_record))
2207 echo_char (also_record);
2208 /* Once we reread a character, echoing can happen
2209 the next time we pause to read a new one. */
2210 ok_to_echo_at_next_pause = echo_area_glyphs;
2213 /* Record this character as part of the current key. */
2214 add_command_key (c);
2215 if (! NILP (also_record))
2216 add_command_key (also_record);
2218 /* Re-reading in the middle of a command */
2219 reread:
2220 last_input_char = c;
2221 num_input_events++;
2223 /* Process the help character specially if enabled */
2224 if (!NILP (Vhelp_form) && help_char_p (c))
2226 Lisp_Object tem0;
2227 count = specpdl_ptr - specpdl;
2229 record_unwind_protect (Fset_window_configuration,
2230 Fcurrent_window_configuration (Qnil));
2232 tem0 = Feval (Vhelp_form);
2233 if (STRINGP (tem0))
2234 internal_with_output_to_temp_buffer ("*Help*", print_help, tem0);
2236 cancel_echoing ();
2238 c = read_char (0, 0, 0, Qnil, 0);
2239 while (BUFFERP (c));
2240 /* Remove the help from the frame */
2241 unbind_to (count, Qnil);
2243 redisplay ();
2244 if (EQ (c, make_number (040)))
2246 cancel_echoing ();
2248 c = read_char (0, 0, 0, Qnil, 0);
2249 while (BUFFERP (c));
2253 return c;
2256 /* Record a key that came from a mouse menu.
2257 Record it for echoing, for this-command-keys, and so on. */
2259 static void
2260 record_menu_key (c)
2261 Lisp_Object c;
2263 /* Wipe the echo area. */
2264 echo_area_glyphs = 0;
2266 record_char (c);
2268 before_command_key_count = this_command_key_count;
2269 before_command_echo_length = echo_length ();
2271 /* Don't echo mouse motion events. */
2272 if (echo_keystrokes)
2274 echo_char (c);
2276 /* Once we reread a character, echoing can happen
2277 the next time we pause to read a new one. */
2278 ok_to_echo_at_next_pause = 0;
2281 /* Record this character as part of the current key. */
2282 add_command_key (c);
2284 /* Re-reading in the middle of a command */
2285 last_input_char = c;
2286 num_input_events++;
2289 /* Return 1 if should recognize C as "the help character". */
2292 help_char_p (c)
2293 Lisp_Object c;
2295 Lisp_Object tail;
2297 if (EQ (c, Vhelp_char))
2298 return 1;
2299 for (tail = Vhelp_event_list; CONSP (tail); tail = XCONS (tail)->cdr)
2300 if (EQ (c, XCONS (tail)->car))
2301 return 1;
2302 return 0;
2305 /* Record the input event C in various ways. */
2307 static void
2308 record_char (c)
2309 Lisp_Object c;
2311 total_keys++;
2312 XVECTOR (recent_keys)->contents[recent_keys_index] = c;
2313 if (++recent_keys_index >= NUM_RECENT_KEYS)
2314 recent_keys_index = 0;
2316 /* Write c to the dribble file. If c is a lispy event, write
2317 the event's symbol to the dribble file, in <brackets>. Bleaugh.
2318 If you, dear reader, have a better idea, you've got the source. :-) */
2319 if (dribble)
2321 if (INTEGERP (c))
2323 if (XUINT (c) < 0x100)
2324 putc (XINT (c), dribble);
2325 else
2326 fprintf (dribble, " 0x%x", (int) XUINT (c));
2328 else
2330 Lisp_Object dribblee;
2332 /* If it's a structured event, take the event header. */
2333 dribblee = EVENT_HEAD (c);
2335 if (SYMBOLP (dribblee))
2337 putc ('<', dribble);
2338 fwrite (XSYMBOL (dribblee)->name->data, sizeof (char),
2339 XSYMBOL (dribblee)->name->size,
2340 dribble);
2341 putc ('>', dribble);
2345 fflush (dribble);
2348 store_kbd_macro_char (c);
2350 num_nonmacro_input_events++;
2353 Lisp_Object
2354 print_help (object)
2355 Lisp_Object object;
2357 struct buffer *old = current_buffer;
2358 Fprinc (object, Qnil);
2359 set_buffer_internal (XBUFFER (Vstandard_output));
2360 call0 (intern ("help-mode"));
2361 set_buffer_internal (old);
2362 return Qnil;
2365 /* Copy out or in the info on where C-g should throw to.
2366 This is used when running Lisp code from within get_char,
2367 in case get_char is called recursively.
2368 See read_process_output. */
2370 save_getcjmp (temp)
2371 jmp_buf temp;
2373 bcopy (getcjmp, temp, sizeof getcjmp);
2376 restore_getcjmp (temp)
2377 jmp_buf temp;
2379 bcopy (temp, getcjmp, sizeof getcjmp);
2382 #ifdef HAVE_MOUSE
2384 /* Restore mouse tracking enablement. See Ftrack_mouse for the only use
2385 of this function. */
2387 static Lisp_Object
2388 tracking_off (old_value)
2389 Lisp_Object old_value;
2391 do_mouse_tracking = old_value;
2392 if (NILP (old_value))
2394 /* Redisplay may have been preempted because there was input
2395 available, and it assumes it will be called again after the
2396 input has been processed. If the only input available was
2397 the sort that we have just disabled, then we need to call
2398 redisplay. */
2399 if (!readable_events (1))
2401 redisplay_preserve_echo_area ();
2402 get_input_pending (&input_pending, 1);
2407 DEFUN ("track-mouse", Ftrack_mouse, Strack_mouse, 0, UNEVALLED, 0,
2408 "Evaluate BODY with mouse movement events enabled.\n\
2409 Within a `track-mouse' form, mouse motion generates input events that\n\
2410 you can read with `read-event'.\n\
2411 Normally, mouse motion is ignored.")
2412 (args)
2413 Lisp_Object args;
2415 int count = specpdl_ptr - specpdl;
2416 Lisp_Object val;
2418 record_unwind_protect (tracking_off, do_mouse_tracking);
2420 do_mouse_tracking = Qt;
2422 val = Fprogn (args);
2423 return unbind_to (count, val);
2426 /* If mouse has moved on some frame, return one of those frames.
2427 Return 0 otherwise. */
2429 static FRAME_PTR
2430 some_mouse_moved ()
2432 Lisp_Object tail, frame;
2434 FOR_EACH_FRAME (tail, frame)
2436 if (XFRAME (frame)->mouse_moved)
2437 return XFRAME (frame);
2440 return 0;
2443 #endif /* HAVE_MOUSE */
2445 /* Low level keyboard/mouse input.
2446 kbd_buffer_store_event places events in kbd_buffer, and
2447 kbd_buffer_get_event retrieves them. */
2449 /* Return true iff there are any events in the queue that read-char
2450 would return. If this returns false, a read-char would block. */
2451 static int
2452 readable_events (do_timers_now)
2453 int do_timers_now;
2455 if (do_timers_now)
2456 timer_check (do_timers_now);
2458 if (kbd_fetch_ptr != kbd_store_ptr)
2459 return 1;
2460 #ifdef HAVE_MOUSE
2461 if (!NILP (do_mouse_tracking) && some_mouse_moved ())
2462 return 1;
2463 #endif
2464 if (single_kboard)
2466 if (current_kboard->kbd_queue_has_data)
2467 return 1;
2469 else
2471 KBOARD *kb;
2472 for (kb = all_kboards; kb; kb = kb->next_kboard)
2473 if (kb->kbd_queue_has_data)
2474 return 1;
2476 return 0;
2479 /* Set this for debugging, to have a way to get out */
2480 int stop_character;
2482 #ifdef MULTI_KBOARD
2483 static KBOARD *
2484 event_to_kboard (event)
2485 struct input_event *event;
2487 Lisp_Object frame;
2488 frame = event->frame_or_window;
2489 if (CONSP (frame))
2490 frame = XCONS (frame)->car;
2491 else if (WINDOWP (frame))
2492 frame = WINDOW_FRAME (XWINDOW (frame));
2494 /* There are still some events that don't set this field.
2495 For now, just ignore the problem.
2496 Also ignore dead frames here. */
2497 if (!FRAMEP (frame) || !FRAME_LIVE_P (XFRAME (frame)))
2498 return 0;
2499 else
2500 return FRAME_KBOARD (XFRAME (frame));
2502 #endif
2504 /* Store an event obtained at interrupt level into kbd_buffer, fifo */
2506 void
2507 kbd_buffer_store_event (event)
2508 register struct input_event *event;
2510 if (event->kind == no_event)
2511 abort ();
2513 if (event->kind == ascii_keystroke)
2515 register int c = event->code & 0377;
2517 if (event->modifiers & ctrl_modifier)
2518 c = make_ctrl_char (c);
2520 c |= (event->modifiers
2521 & (meta_modifier | alt_modifier
2522 | hyper_modifier | super_modifier));
2524 if (c == quit_char)
2526 extern SIGTYPE interrupt_signal ();
2527 #ifdef MULTI_KBOARD
2528 KBOARD *kb;
2529 struct input_event *sp;
2531 if (single_kboard
2532 && (kb = FRAME_KBOARD (XFRAME (event->frame_or_window)),
2533 kb != current_kboard))
2535 kb->kbd_queue
2536 = Fcons (make_lispy_switch_frame (event->frame_or_window),
2537 Fcons (make_number (c), Qnil));
2538 kb->kbd_queue_has_data = 1;
2539 for (sp = kbd_fetch_ptr; sp != kbd_store_ptr; sp++)
2541 if (sp == kbd_buffer + KBD_BUFFER_SIZE)
2542 sp = kbd_buffer;
2544 if (event_to_kboard (sp) == kb)
2546 sp->kind = no_event;
2547 sp->frame_or_window = Qnil;
2550 return;
2552 #endif
2554 /* If this results in a quit_char being returned to Emacs as
2555 input, set Vlast_event_frame properly. If this doesn't
2556 get returned to Emacs as an event, the next event read
2557 will set Vlast_event_frame again, so this is safe to do. */
2559 Lisp_Object focus;
2561 focus = FRAME_FOCUS_FRAME (XFRAME (event->frame_or_window));
2562 if (NILP (focus))
2563 focus = event->frame_or_window;
2564 internal_last_event_frame = focus;
2565 Vlast_event_frame = focus;
2568 last_event_timestamp = event->timestamp;
2569 interrupt_signal ();
2570 return;
2573 if (c && c == stop_character)
2575 sys_suspend ();
2576 return;
2579 /* Don't insert two buffer_switch_event's in a row.
2580 Just ignore the second one. */
2581 else if (event->kind == buffer_switch_event
2582 && kbd_fetch_ptr != kbd_store_ptr
2583 && kbd_store_ptr->kind == buffer_switch_event)
2584 return;
2586 if (kbd_store_ptr - kbd_buffer == KBD_BUFFER_SIZE)
2587 kbd_store_ptr = kbd_buffer;
2589 /* Don't let the very last slot in the buffer become full,
2590 since that would make the two pointers equal,
2591 and that is indistinguishable from an empty buffer.
2592 Discard the event if it would fill the last slot. */
2593 if (kbd_fetch_ptr - 1 != kbd_store_ptr)
2595 volatile struct input_event *sp = kbd_store_ptr;
2596 sp->kind = event->kind;
2597 if (event->kind == selection_request_event)
2599 /* We must not use the ordinary copying code for this case,
2600 since `part' is an enum and copying it might not copy enough
2601 in this case. */
2602 bcopy (event, (char *) sp, sizeof (*event));
2604 else
2606 sp->code = event->code;
2607 sp->part = event->part;
2608 sp->frame_or_window = event->frame_or_window;
2609 sp->modifiers = event->modifiers;
2610 sp->x = event->x;
2611 sp->y = event->y;
2612 sp->timestamp = event->timestamp;
2614 (XVECTOR (kbd_buffer_frame_or_window)->contents[kbd_store_ptr
2615 - kbd_buffer]
2616 = event->frame_or_window);
2618 kbd_store_ptr++;
2622 /* Read one event from the event buffer, waiting if necessary.
2623 The value is a Lisp object representing the event.
2624 The value is nil for an event that should be ignored,
2625 or that was handled here.
2626 We always read and discard one event. */
2628 static Lisp_Object
2629 kbd_buffer_get_event (kbp, used_mouse_menu)
2630 KBOARD **kbp;
2631 int *used_mouse_menu;
2633 register int c;
2634 Lisp_Object obj;
2635 EMACS_TIME next_timer_delay;
2637 if (noninteractive)
2639 c = getchar ();
2640 XSETINT (obj, c);
2641 *kbp = current_kboard;
2642 return obj;
2645 /* Wait until there is input available. */
2646 for (;;)
2648 if (kbd_fetch_ptr != kbd_store_ptr)
2649 break;
2650 #ifdef HAVE_MOUSE
2651 if (!NILP (do_mouse_tracking) && some_mouse_moved ())
2652 break;
2653 #endif
2655 /* If the quit flag is set, then read_char will return
2656 quit_char, so that counts as "available input." */
2657 if (!NILP (Vquit_flag))
2658 quit_throw_to_read_char ();
2660 /* One way or another, wait until input is available; then, if
2661 interrupt handlers have not read it, read it now. */
2663 #ifdef OLDVMS
2664 wait_for_kbd_input ();
2665 #else
2666 /* Note SIGIO has been undef'd if FIONREAD is missing. */
2667 #ifdef SIGIO
2668 gobble_input (0);
2669 #endif /* SIGIO */
2670 if (kbd_fetch_ptr != kbd_store_ptr)
2671 break;
2672 #ifdef HAVE_MOUSE
2673 if (!NILP (do_mouse_tracking) && some_mouse_moved ())
2674 break;
2675 #endif
2677 Lisp_Object minus_one;
2679 XSETINT (minus_one, -1);
2680 wait_reading_process_input (0, 0, minus_one, 1);
2682 if (!interrupt_input && kbd_fetch_ptr == kbd_store_ptr)
2683 /* Pass 1 for EXPECT since we just waited to have input. */
2684 read_avail_input (1);
2686 #endif /* not VMS */
2689 if (CONSP (Vunread_command_events))
2691 Lisp_Object first;
2692 first = XCONS (Vunread_command_events)->car;
2693 Vunread_command_events = XCONS (Vunread_command_events)->cdr;
2694 *kbp = current_kboard;
2695 return first;
2698 /* At this point, we know that there is a readable event available
2699 somewhere. If the event queue is empty, then there must be a
2700 mouse movement enabled and available. */
2701 if (kbd_fetch_ptr != kbd_store_ptr)
2703 struct input_event *event;
2705 event = ((kbd_fetch_ptr < kbd_buffer + KBD_BUFFER_SIZE)
2706 ? kbd_fetch_ptr
2707 : kbd_buffer);
2709 last_event_timestamp = event->timestamp;
2711 #ifdef MULTI_KBOARD
2712 *kbp = event_to_kboard (event);
2713 if (*kbp == 0)
2714 *kbp = current_kboard; /* Better than returning null ptr? */
2715 #else
2716 *kbp = &the_only_kboard;
2717 #endif
2719 obj = Qnil;
2721 /* These two kinds of events get special handling
2722 and don't actually appear to the command loop.
2723 We return nil for them. */
2724 if (event->kind == selection_request_event)
2726 #ifdef HAVE_X11
2727 struct input_event copy;
2729 /* Remove it from the buffer before processing it,
2730 since otherwise swallow_events will see it
2731 and process it again. */
2732 copy = *event;
2733 kbd_fetch_ptr = event + 1;
2734 input_pending = readable_events (0);
2735 x_handle_selection_request (&copy);
2736 #else
2737 /* We're getting selection request events, but we don't have
2738 a window system. */
2739 abort ();
2740 #endif
2743 else if (event->kind == selection_clear_event)
2745 #ifdef HAVE_X11
2746 struct input_event copy;
2748 /* Remove it from the buffer before processing it. */
2749 copy = *event;
2750 kbd_fetch_ptr = event + 1;
2751 input_pending = readable_events (0);
2752 x_handle_selection_clear (&copy);
2753 #else
2754 /* We're getting selection request events, but we don't have
2755 a window system. */
2756 abort ();
2757 #endif
2759 #if defined (HAVE_X11) || defined (HAVE_NTGUI)
2760 else if (event->kind == delete_window_event)
2762 /* Make an event (delete-frame (FRAME)). */
2763 obj = Fcons (event->frame_or_window, Qnil);
2764 obj = Fcons (Qdelete_frame, Fcons (obj, Qnil));
2765 kbd_fetch_ptr = event + 1;
2767 else if (event->kind == iconify_event)
2769 /* Make an event (iconify-frame (FRAME)). */
2770 obj = Fcons (event->frame_or_window, Qnil);
2771 obj = Fcons (Qiconify_frame, Fcons (obj, Qnil));
2772 kbd_fetch_ptr = event + 1;
2774 else if (event->kind == deiconify_event)
2776 /* Make an event (make-frame-visible (FRAME)). */
2777 obj = Fcons (event->frame_or_window, Qnil);
2778 obj = Fcons (Qmake_frame_visible, Fcons (obj, Qnil));
2779 kbd_fetch_ptr = event + 1;
2781 #endif
2782 else if (event->kind == buffer_switch_event)
2784 /* The value doesn't matter here; only the type is tested. */
2785 XSETBUFFER (obj, current_buffer);
2786 kbd_fetch_ptr = event + 1;
2788 #ifdef USE_X_TOOLKIT
2789 else if (event->kind == menu_bar_activate_event)
2791 kbd_fetch_ptr = event + 1;
2792 input_pending = readable_events (0);
2793 if (FRAME_LIVE_P (XFRAME (event->frame_or_window)))
2794 x_activate_menubar (XFRAME (event->frame_or_window));
2796 #endif
2797 /* Just discard these, by returning nil.
2798 With MULTI_KBOARD, these events are used as placeholders
2799 when we need to randomly delete events from the queue.
2800 (They shouldn't otherwise be found in the buffer,
2801 but on some machines it appears they do show up
2802 even without MULTI_KBOARD.) */
2803 else if (event->kind == no_event)
2804 kbd_fetch_ptr = event + 1;
2806 /* If this event is on a different frame, return a switch-frame this
2807 time, and leave the event in the queue for next time. */
2808 else
2810 Lisp_Object frame;
2811 Lisp_Object focus;
2813 frame = event->frame_or_window;
2814 if (CONSP (frame))
2815 frame = XCONS (frame)->car;
2816 else if (WINDOWP (frame))
2817 frame = WINDOW_FRAME (XWINDOW (frame));
2819 focus = FRAME_FOCUS_FRAME (XFRAME (frame));
2820 if (! NILP (focus))
2821 frame = focus;
2823 if (! EQ (frame, internal_last_event_frame)
2824 && XFRAME (frame) != selected_frame)
2825 obj = make_lispy_switch_frame (frame);
2826 internal_last_event_frame = frame;
2828 /* If we didn't decide to make a switch-frame event, go ahead
2829 and build a real event from the queue entry. */
2831 if (NILP (obj))
2833 obj = make_lispy_event (event);
2834 #if defined (USE_X_TOOLKIT) || defined (HAVE_NTGUI)
2835 /* If this was a menu selection, then set the flag to inhibit
2836 writing to last_nonmenu_event. Don't do this if the event
2837 we're returning is (menu-bar), though; that indicates the
2838 beginning of the menu sequence, and we might as well leave
2839 that as the `event with parameters' for this selection. */
2840 if (event->kind == menu_bar_event
2841 && !(CONSP (obj) && EQ (XCONS (obj)->car, Qmenu_bar))
2842 && used_mouse_menu)
2843 *used_mouse_menu = 1;
2844 #endif
2846 /* Wipe out this event, to catch bugs. */
2847 event->kind = no_event;
2848 XVECTOR (kbd_buffer_frame_or_window)->contents[event - kbd_buffer] = Qnil;
2850 kbd_fetch_ptr = event + 1;
2854 #ifdef HAVE_MOUSE
2855 /* Try generating a mouse motion event. */
2856 else if (!NILP (do_mouse_tracking) && some_mouse_moved ())
2858 FRAME_PTR f = some_mouse_moved ();
2859 Lisp_Object bar_window;
2860 enum scroll_bar_part part;
2861 Lisp_Object x, y;
2862 unsigned long time;
2864 *kbp = current_kboard;
2865 /* Note that this uses F to determine which display to look at.
2866 If there is no valid info, it does not store anything
2867 so x remains nil. */
2868 x = Qnil;
2869 (*mouse_position_hook) (&f, 0, &bar_window, &part, &x, &y, &time);
2871 obj = Qnil;
2873 /* Decide if we should generate a switch-frame event. Don't
2874 generate switch-frame events for motion outside of all Emacs
2875 frames. */
2876 if (!NILP (x) && f)
2878 Lisp_Object frame;
2880 frame = FRAME_FOCUS_FRAME (f);
2881 if (NILP (frame))
2882 XSETFRAME (frame, f);
2884 if (! EQ (frame, internal_last_event_frame)
2885 && XFRAME (frame) != selected_frame)
2886 obj = make_lispy_switch_frame (frame);
2887 internal_last_event_frame = frame;
2890 /* If we didn't decide to make a switch-frame event, go ahead and
2891 return a mouse-motion event. */
2892 if (!NILP (x) && NILP (obj))
2893 obj = make_lispy_movement (f, bar_window, part, x, y, time);
2895 #endif /* HAVE_MOUSE */
2896 else
2897 /* We were promised by the above while loop that there was
2898 something for us to read! */
2899 abort ();
2901 input_pending = readable_events (0);
2903 Vlast_event_frame = internal_last_event_frame;
2905 return (obj);
2908 /* Process any events that are not user-visible,
2909 then return, without reading any user-visible events. */
2911 void
2912 swallow_events (do_display)
2913 int do_display;
2915 int old_timers_run;
2917 while (kbd_fetch_ptr != kbd_store_ptr)
2919 struct input_event *event;
2921 event = ((kbd_fetch_ptr < kbd_buffer + KBD_BUFFER_SIZE)
2922 ? kbd_fetch_ptr
2923 : kbd_buffer);
2925 last_event_timestamp = event->timestamp;
2927 /* These two kinds of events get special handling
2928 and don't actually appear to the command loop. */
2929 if (event->kind == selection_request_event)
2931 #ifdef HAVE_X11
2932 struct input_event copy;
2934 /* Remove it from the buffer before processing it,
2935 since otherwise swallow_events called recursively could see it
2936 and process it again. */
2937 copy = *event;
2938 kbd_fetch_ptr = event + 1;
2939 input_pending = readable_events (0);
2940 x_handle_selection_request (&copy);
2941 #else
2942 /* We're getting selection request events, but we don't have
2943 a window system. */
2944 abort ();
2945 #endif
2948 else if (event->kind == selection_clear_event)
2950 #ifdef HAVE_X11
2951 struct input_event copy;
2953 /* Remove it from the buffer before processing it, */
2954 copy = *event;
2956 kbd_fetch_ptr = event + 1;
2957 input_pending = readable_events (0);
2958 x_handle_selection_clear (&copy);
2959 #else
2960 /* We're getting selection request events, but we don't have
2961 a window system. */
2962 abort ();
2963 #endif
2965 else
2966 break;
2969 old_timers_run = timers_run;
2970 get_input_pending (&input_pending, 1);
2972 if (timers_run != old_timers_run && do_display)
2973 redisplay_preserve_echo_area ();
2976 static EMACS_TIME timer_idleness_start_time;
2978 /* Record the start of when Emacs is idle,
2979 for the sake of running idle-time timers. */
2981 timer_start_idle ()
2983 Lisp_Object timers;
2985 /* If we are already in the idle state, do nothing. */
2986 if (! EMACS_TIME_NEG_P (timer_idleness_start_time))
2987 return;
2989 EMACS_GET_TIME (timer_idleness_start_time);
2991 /* Mark all idle-time timers as once again candidates for running. */
2992 for (timers = Vtimer_idle_list; CONSP (timers); timers = XCONS (timers)->cdr)
2994 Lisp_Object timer;
2996 timer = XCONS (timers)->car;
2998 if (!VECTORP (timer) || XVECTOR (timer)->size != 8)
2999 continue;
3000 XVECTOR (timer)->contents[0] = Qnil;
3004 /* Record that Emacs is no longer idle, so stop running idle-time timers. */
3006 timer_stop_idle ()
3008 EMACS_SET_SECS_USECS (timer_idleness_start_time, -1, -1);
3011 /* This is only for debugging. */
3012 struct input_event last_timer_event;
3014 /* Check whether a timer has fired. To prevent larger problems we simply
3015 disregard elements that are not proper timers. Do not make a circular
3016 timer list for the time being.
3018 Returns the number of seconds to wait until the next timer fires. If a
3019 timer is triggering now, return zero seconds.
3020 If no timer is active, return -1 seconds.
3022 If a timer is ripe, we run it, with quitting turned off.
3024 DO_IT_NOW is now ignored. It used to mean that we should
3025 run the timer directly instead of queueing a timer-event.
3026 Now we always run timers directly. */
3028 EMACS_TIME
3029 timer_check (do_it_now)
3030 int do_it_now;
3032 EMACS_TIME nexttime;
3033 EMACS_TIME now, idleness_now;
3034 Lisp_Object timers, idle_timers, chosen_timer;
3035 struct gcpro gcpro1, gcpro2, gcpro3;
3037 EMACS_SET_SECS (nexttime, -1);
3038 EMACS_SET_USECS (nexttime, -1);
3040 /* Always consider the ordinary timers. */
3041 timers = Vtimer_list;
3042 /* Consider the idle timers only if Emacs is idle. */
3043 if (! EMACS_TIME_NEG_P (timer_idleness_start_time))
3044 idle_timers = Vtimer_idle_list;
3045 else
3046 idle_timers = Qnil;
3047 chosen_timer = Qnil;
3048 GCPRO3 (timers, idle_timers, chosen_timer);
3050 if (CONSP (timers) || CONSP (idle_timers))
3052 EMACS_GET_TIME (now);
3053 if (! EMACS_TIME_NEG_P (timer_idleness_start_time))
3054 EMACS_SUB_TIME (idleness_now, now, timer_idleness_start_time);
3057 while (CONSP (timers) || CONSP (idle_timers))
3059 int triggertime = EMACS_SECS (now);
3060 Lisp_Object *vector;
3061 Lisp_Object timer, idle_timer;
3062 EMACS_TIME timer_time, idle_timer_time;
3063 EMACS_TIME difference, timer_difference, idle_timer_difference;
3065 /* Skip past invalid timers and timers already handled. */
3066 if (!NILP (timers))
3068 timer = XCONS (timers)->car;
3069 if (!VECTORP (timer) || XVECTOR (timer)->size != 8)
3071 timers = XCONS (timers)->cdr;
3072 continue;
3074 vector = XVECTOR (timer)->contents;
3076 if (!INTEGERP (vector[1]) || !INTEGERP (vector[2])
3077 || !INTEGERP (vector[3])
3078 || ! NILP (vector[0]))
3080 timers = XCONS (timers)->cdr;
3081 continue;
3084 if (!NILP (idle_timers))
3086 timer = XCONS (idle_timers)->car;
3087 if (!VECTORP (timer) || XVECTOR (timer)->size != 8)
3089 idle_timers = XCONS (idle_timers)->cdr;
3090 continue;
3092 vector = XVECTOR (timer)->contents;
3094 if (!INTEGERP (vector[1]) || !INTEGERP (vector[2])
3095 || !INTEGERP (vector[3])
3096 || ! NILP (vector[0]))
3098 idle_timers = XCONS (idle_timers)->cdr;
3099 continue;
3103 /* Set TIMER, TIMER_TIME and TIMER_DIFFERENCE
3104 based on the next ordinary timer.
3105 TIMER_DIFFERENCE is the distance in time from NOW to when
3106 this timer becomes ripe (negative if it's already ripe). */
3107 if (!NILP (timers))
3109 timer = XCONS (timers)->car;
3110 vector = XVECTOR (timer)->contents;
3111 EMACS_SET_SECS (timer_time,
3112 (XINT (vector[1]) << 16) | (XINT (vector[2])));
3113 EMACS_SET_USECS (timer_time, XINT (vector[3]));
3114 EMACS_SUB_TIME (timer_difference, timer_time, now);
3117 /* Set IDLE_TIMER, IDLE_TIMER_TIME and IDLE_TIMER_DIFFERENCE
3118 based on the next idle timer. */
3119 if (!NILP (idle_timers))
3121 idle_timer = XCONS (idle_timers)->car;
3122 vector = XVECTOR (idle_timer)->contents;
3123 EMACS_SET_SECS (idle_timer_time,
3124 (XINT (vector[1]) << 16) | (XINT (vector[2])));
3125 EMACS_SET_USECS (idle_timer_time, XINT (vector[3]));
3126 EMACS_SUB_TIME (idle_timer_difference, idle_timer_time, idleness_now);
3129 /* Decide which timer is the next timer,
3130 and set CHOSEN_TIMER, VECTOR and DIFFERENCE accordingly.
3131 Also step down the list where we found that timer. */
3133 if (! NILP (timers) && ! NILP (idle_timers))
3135 EMACS_TIME temp;
3136 EMACS_SUB_TIME (temp, timer_difference, idle_timer_difference);
3137 if (EMACS_TIME_NEG_P (temp))
3139 chosen_timer = timer;
3140 timers = XCONS (timers)->cdr;
3141 difference = timer_difference;
3143 else
3145 chosen_timer = idle_timer;
3146 idle_timers = XCONS (idle_timers)->cdr;
3147 difference = idle_timer_difference;
3150 else if (! NILP (timers))
3152 chosen_timer = timer;
3153 timers = XCONS (timers)->cdr;
3154 difference = timer_difference;
3156 else
3158 chosen_timer = idle_timer;
3159 idle_timers = XCONS (idle_timers)->cdr;
3160 difference = idle_timer_difference;
3162 vector = XVECTOR (chosen_timer)->contents;
3164 /* If timer is rupe, run it if it hasn't been run. */
3165 if (EMACS_TIME_NEG_P (difference)
3166 || (EMACS_SECS (difference) == 0
3167 && EMACS_USECS (difference) == 0))
3169 if (NILP (vector[0]))
3171 Lisp_Object tem;
3172 int was_locked = single_kboard;
3173 int count = specpdl_ptr - specpdl;
3175 /* Mark the timer as triggered to prevent problems if the lisp
3176 code fails to reschedule it right. */
3177 vector[0] = Qt;
3179 specbind (Qinhibit_quit, Qt);
3181 call1 (Qtimer_event_handler, chosen_timer);
3182 timers_run++;
3184 unbind_to (count, Qnil);
3186 /* Resume allowing input from any kboard, if that was true before. */
3187 if (!was_locked)
3188 any_kboard_state ();
3190 /* Since we have handled the event,
3191 we don't need to tell the caller to wake up and do it. */
3194 else
3195 /* When we encounter a timer that is still waiting,
3196 return the amount of time to wait before it is ripe. */
3198 UNGCPRO;
3199 return difference;
3203 /* No timers are pending in the future. */
3204 /* Return 0 if we generated an event, and -1 if not. */
3205 UNGCPRO;
3206 return nexttime;
3209 /* Caches for modify_event_symbol. */
3210 static Lisp_Object accent_key_syms;
3211 static Lisp_Object func_key_syms;
3212 static Lisp_Object mouse_syms;
3214 /* This is a list of keysym codes for special "accent" characters.
3215 It parallels lispy_accent_keys. */
3217 static int lispy_accent_codes[] =
3219 #ifdef XK_dead_circumflex
3220 XK_dead_circumflex,
3221 #else
3223 #endif
3224 #ifdef XK_dead_grave
3225 XK_dead_grave,
3226 #else
3228 #endif
3229 #ifdef XK_dead_tilde
3230 XK_dead_tilde,
3231 #else
3233 #endif
3234 #ifdef XK_dead_diaeresis
3235 XK_dead_diaeresis,
3236 #else
3238 #endif
3239 #ifdef XK_dead_macron
3240 XK_dead_macron,
3241 #else
3243 #endif
3244 #ifdef XK_dead_degree
3245 XK_dead_degree,
3246 #else
3248 #endif
3249 #ifdef XK_dead_acute
3250 XK_dead_acute,
3251 #else
3253 #endif
3254 #ifdef XK_dead_cedilla
3255 XK_dead_cedilla,
3256 #else
3258 #endif
3259 #ifdef XK_dead_breve
3260 XK_dead_breve,
3261 #else
3263 #endif
3264 #ifdef XK_dead_ogonek
3265 XK_dead_ogonek,
3266 #else
3268 #endif
3269 #ifdef XK_dead_caron
3270 XK_dead_caron,
3271 #else
3273 #endif
3274 #ifdef XK_dead_doubleacute
3275 XK_dead_doubleacute,
3276 #else
3278 #endif
3279 #ifdef XK_dead_abovedot
3280 XK_dead_abovedot,
3281 #else
3283 #endif
3286 /* This is a list of Lisp names for special "accent" characters.
3287 It parallels lispy_accent_codes. */
3289 static char *lispy_accent_keys[] =
3291 "dead-circumflex",
3292 "dead-grave",
3293 "dead-tilde",
3294 "dead-diaeresis",
3295 "dead-macron",
3296 "dead-degree",
3297 "dead-acute",
3298 "dead-cedilla",
3299 "dead-breve",
3300 "dead-ogonek",
3301 "dead-caron",
3302 "dead-doubleacute",
3303 "dead-abovedot",
3306 #ifdef HAVE_NTGUI
3307 #define FUNCTION_KEY_OFFSET 0x0
3309 char *lispy_function_keys[] =
3311 0, /* 0 */
3313 0, /* VK_LBUTTON 0x01 */
3314 0, /* VK_RBUTTON 0x02 */
3315 "cancel", /* VK_CANCEL 0x03 */
3316 0, /* VK_MBUTTON 0x04 */
3318 0, 0, 0, /* 0x05 .. 0x07 */
3320 "backspace", /* VK_BACK 0x08 */
3321 "tab", /* VK_TAB 0x09 */
3323 0, 0, /* 0x0A .. 0x0B */
3325 "clear", /* VK_CLEAR 0x0C */
3326 "return", /* VK_RETURN 0x0D */
3328 0, 0, /* 0x0E .. 0x0F */
3330 "shift", /* VK_SHIFT 0x10 */
3331 "control", /* VK_CONTROL 0x11 */
3332 "menu", /* VK_MENU 0x12 */
3333 "pause", /* VK_PAUSE 0x13 */
3334 "capital", /* VK_CAPITAL 0x14 */
3336 0, 0, 0, 0, 0, 0, /* 0x15 .. 0x1A */
3338 0, /* VK_ESCAPE 0x1B */
3340 0, 0, 0, 0, /* 0x1C .. 0x1F */
3342 0, /* VK_SPACE 0x20 */
3343 "prior", /* VK_PRIOR 0x21 */
3344 "next", /* VK_NEXT 0x22 */
3345 "end", /* VK_END 0x23 */
3346 "home", /* VK_HOME 0x24 */
3347 "left", /* VK_LEFT 0x25 */
3348 "up", /* VK_UP 0x26 */
3349 "right", /* VK_RIGHT 0x27 */
3350 "down", /* VK_DOWN 0x28 */
3351 "select", /* VK_SELECT 0x29 */
3352 "print", /* VK_PRINT 0x2A */
3353 "execute", /* VK_EXECUTE 0x2B */
3354 "snapshot", /* VK_SNAPSHOT 0x2C */
3355 "insert", /* VK_INSERT 0x2D */
3356 "delete", /* VK_DELETE 0x2E */
3357 "help", /* VK_HELP 0x2F */
3359 /* VK_0 thru VK_9 are the same as ASCII '0' thru '9' (0x30 - 0x39) */
3361 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
3363 0, 0, 0, 0, 0, 0, 0, /* 0x3A .. 0x40 */
3365 /* VK_A thru VK_Z are the same as ASCII 'A' thru 'Z' (0x41 - 0x5A) */
3367 0, 0, 0, 0, 0, 0, 0, 0, 0,
3368 0, 0, 0, 0, 0, 0, 0, 0, 0,
3369 0, 0, 0, 0, 0, 0, 0, 0,
3371 "lwindow", /* VK_LWIN 0x5B */
3372 "rwindow", /* VK_RWIN 0x5C */
3373 "apps", /* VK_APPS 0x5D */
3375 0, 0, /* 0x5E .. 0x5F */
3377 "kp-0", /* VK_NUMPAD0 0x60 */
3378 "kp-1", /* VK_NUMPAD1 0x61 */
3379 "kp-2", /* VK_NUMPAD2 0x62 */
3380 "kp-3", /* VK_NUMPAD3 0x63 */
3381 "kp-4", /* VK_NUMPAD4 0x64 */
3382 "kp-5", /* VK_NUMPAD5 0x65 */
3383 "kp-6", /* VK_NUMPAD6 0x66 */
3384 "kp-7", /* VK_NUMPAD7 0x67 */
3385 "kp-8", /* VK_NUMPAD8 0x68 */
3386 "kp-9", /* VK_NUMPAD9 0x69 */
3387 "kp-multiply", /* VK_MULTIPLY 0x6A */
3388 "kp-add", /* VK_ADD 0x6B */
3389 "kp-separator", /* VK_SEPARATOR 0x6C */
3390 "kp-subtract", /* VK_SUBTRACT 0x6D */
3391 "kp-decimal", /* VK_DECIMAL 0x6E */
3392 "kp-divide", /* VK_DIVIDE 0x6F */
3393 "f1", /* VK_F1 0x70 */
3394 "f2", /* VK_F2 0x71 */
3395 "f3", /* VK_F3 0x72 */
3396 "f4", /* VK_F4 0x73 */
3397 "f5", /* VK_F5 0x74 */
3398 "f6", /* VK_F6 0x75 */
3399 "f7", /* VK_F7 0x76 */
3400 "f8", /* VK_F8 0x77 */
3401 "f9", /* VK_F9 0x78 */
3402 "f10", /* VK_F10 0x79 */
3403 "f11", /* VK_F11 0x7A */
3404 "f12", /* VK_F12 0x7B */
3405 "f13", /* VK_F13 0x7C */
3406 "f14", /* VK_F14 0x7D */
3407 "f15", /* VK_F15 0x7E */
3408 "f16", /* VK_F16 0x7F */
3409 "f17", /* VK_F17 0x80 */
3410 "f18", /* VK_F18 0x81 */
3411 "f19", /* VK_F19 0x82 */
3412 "f20", /* VK_F20 0x83 */
3413 "f21", /* VK_F21 0x84 */
3414 "f22", /* VK_F22 0x85 */
3415 "f23", /* VK_F23 0x86 */
3416 "f24", /* VK_F24 0x87 */
3418 0, 0, 0, 0, /* 0x88 .. 0x8B */
3419 0, 0, 0, 0, /* 0x8C .. 0x8F */
3421 "kp-numlock", /* VK_NUMLOCK 0x90 */
3422 "scroll", /* VK_SCROLL 0x91 */
3424 "kp-space", /* VK_NUMPAD_CLEAR 0x92 */
3425 "kp-enter", /* VK_NUMPAD_ENTER 0x93 */
3426 "kp-prior", /* VK_NUMPAD_PRIOR 0x94 */
3427 "kp-next", /* VK_NUMPAD_NEXT 0x95 */
3428 "kp-end", /* VK_NUMPAD_END 0x96 */
3429 "kp-home", /* VK_NUMPAD_HOME 0x97 */
3430 "kp-left", /* VK_NUMPAD_LEFT 0x98 */
3431 "kp-up", /* VK_NUMPAD_UP 0x99 */
3432 "kp-right", /* VK_NUMPAD_RIGHT 0x9A */
3433 "kp-down", /* VK_NUMPAD_DOWN 0x9B */
3434 "kp-insert", /* VK_NUMPAD_INSERT 0x9C */
3435 "kp-delete", /* VK_NUMPAD_DELETE 0x9D */
3437 0, 0, /* 0x9E .. 0x9F */
3440 * VK_L* & VK_R* - left and right Alt, Ctrl and Shift virtual keys.
3441 * Used only as parameters to GetAsyncKeyState() and GetKeyState().
3442 * No other API or message will distinguish left and right keys this way.
3444 /* 0xA0 .. 0xEF */
3446 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
3447 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
3448 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
3449 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
3450 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
3452 /* 0xF0 .. 0xF5 */
3454 0, 0, 0, 0, 0, 0,
3456 "attn", /* VK_ATTN 0xF6 */
3457 "crsel", /* VK_CRSEL 0xF7 */
3458 "exsel", /* VK_EXSEL 0xF8 */
3459 "ereof", /* VK_EREOF 0xF9 */
3460 "play", /* VK_PLAY 0xFA */
3461 "zoom", /* VK_ZOOM 0xFB */
3462 "noname", /* VK_NONAME 0xFC */
3463 "pa1", /* VK_PA1 0xFD */
3464 "oem_clear", /* VK_OEM_CLEAR 0xFE */
3467 #else /* not HAVE_NTGUI */
3469 #ifdef XK_kana_A
3470 static char *lispy_kana_keys[] =
3472 /* X Keysym value */
3473 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, /* 0x400 .. 0x40f */
3474 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, /* 0x410 .. 0x41f */
3475 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, /* 0x420 .. 0x42f */
3476 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, /* 0x430 .. 0x43f */
3477 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, /* 0x440 .. 0x44f */
3478 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, /* 0x450 .. 0x45f */
3479 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, /* 0x460 .. 0x46f */
3480 0,0,0,0,0,0,0,0,0,0,0,0,0,0,"overline",0,
3481 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, /* 0x480 .. 0x48f */
3482 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, /* 0x490 .. 0x49f */
3483 0, "kana-fullstop", "kana-openingbracket", "kana-closingbracket",
3484 "kana-comma", "kana-conjunctive", "kana-WO", "kana-a",
3485 "kana-i", "kana-u", "kana-e", "kana-o",
3486 "kana-ya", "kana-yu", "kana-yo", "kana-tsu",
3487 "prolongedsound", "kana-A", "kana-I", "kana-U",
3488 "kana-E", "kana-O", "kana-KA", "kana-KI",
3489 "kana-KU", "kana-KE", "kana-KO", "kana-SA",
3490 "kana-SHI", "kana-SU", "kana-SE", "kana-SO",
3491 "kana-TA", "kana-CHI", "kana-TSU", "kana-TE",
3492 "kana-TO", "kana-NA", "kana-NI", "kana-NU",
3493 "kana-NE", "kana-NO", "kana-HA", "kana-HI",
3494 "kana-FU", "kana-HE", "kana-HO", "kana-MA",
3495 "kana-MI", "kana-MU", "kana-ME", "kana-MO",
3496 "kana-YA", "kana-YU", "kana-YO", "kana-RA",
3497 "kana-RI", "kana-RU", "kana-RE", "kana-RO",
3498 "kana-WA", "kana-N", "voicedsound", "semivoicedsound",
3499 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, /* 0x4e0 .. 0x4ef */
3500 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, /* 0x4f0 .. 0x4ff */
3502 #endif /* XK_kana_A */
3504 #define FUNCTION_KEY_OFFSET 0xff00
3506 /* You'll notice that this table is arranged to be conveniently
3507 indexed by X Windows keysym values. */
3508 static char *lispy_function_keys[] =
3510 /* X Keysym value */
3512 0, 0, 0, 0, 0, 0, 0, 0, /* 0xff00 */
3513 "backspace",
3514 "tab",
3515 "linefeed",
3516 "clear",
3518 "return",
3519 0, 0,
3520 0, 0, 0, /* 0xff10 */
3521 "pause",
3522 0, 0, 0, 0, 0, 0, 0,
3523 "escape",
3524 0, 0, 0, 0,
3525 0, "kanji", "muhenkan",
3526 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, /* 0xff20...2f */
3527 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, /* 0xff30...3f */
3528 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, /* 0xff40...4f */
3530 "home", /* 0xff50 */ /* IsCursorKey */
3531 "left",
3532 "up",
3533 "right",
3534 "down",
3535 "prior",
3536 "next",
3537 "end",
3538 "begin",
3539 0, /* 0xff59 */
3540 0, 0, 0, 0, 0, 0,
3541 "select", /* 0xff60 */ /* IsMiscFunctionKey */
3542 "print",
3543 "execute",
3544 "insert",
3545 0, /* 0xff64 */
3546 "undo",
3547 "redo",
3548 "menu",
3549 "find",
3550 "cancel",
3551 "help",
3552 "break", /* 0xff6b */
3554 0, 0, 0, 0, 0, 0, 0, 0, "backtab", 0,
3555 0, /* 0xff76 */
3556 0, 0, 0, 0, 0, 0, 0, 0, "kp-numlock", /* 0xff7f */
3557 "kp-space", /* 0xff80 */ /* IsKeypadKey */
3558 0, 0, 0, 0, 0, 0, 0, 0,
3559 "kp-tab", /* 0xff89 */
3560 0, 0, 0,
3561 "kp-enter", /* 0xff8d */
3562 0, 0, 0,
3563 "kp-f1", /* 0xff91 */
3564 "kp-f2",
3565 "kp-f3",
3566 "kp-f4",
3567 "kp-home", /* 0xff95 */
3568 "kp-left",
3569 "kp-up",
3570 "kp-right",
3571 "kp-down",
3572 "kp-prior", /* kp-page-up */
3573 "kp-next", /* kp-page-down */
3574 "kp-end",
3575 "kp-begin",
3576 "kp-insert",
3577 "kp-delete",
3578 0, /* 0xffa0 */
3579 0, 0, 0, 0, 0, 0, 0, 0, 0,
3580 "kp-multiply", /* 0xffaa */
3581 "kp-add",
3582 "kp-separator",
3583 "kp-subtract",
3584 "kp-decimal",
3585 "kp-divide", /* 0xffaf */
3586 "kp-0", /* 0xffb0 */
3587 "kp-1", "kp-2", "kp-3", "kp-4", "kp-5", "kp-6", "kp-7", "kp-8", "kp-9",
3588 0, /* 0xffba */
3589 0, 0,
3590 "kp-equal", /* 0xffbd */
3591 "f1", /* 0xffbe */ /* IsFunctionKey */
3592 "f2",
3593 "f3", "f4", "f5", "f6", "f7", "f8", "f9", "f10", /* 0xffc0 */
3594 "f11", "f12", "f13", "f14", "f15", "f16", "f17", "f18",
3595 "f19", "f20", "f21", "f22", "f23", "f24", "f25", "f26", /* 0xffd0 */
3596 "f27", "f28", "f29", "f30", "f31", "f32", "f33", "f34",
3597 "f35", 0, 0, 0, 0, 0, 0, 0, /* 0xffe0 */
3598 0, 0, 0, 0, 0, 0, 0, 0,
3599 0, 0, 0, 0, 0, 0, 0, 0, /* 0xfff0 */
3600 0, 0, 0, 0, 0, 0, 0, "delete"
3603 /* ISO 9995 Function and Modifier Keys; the first byte is 0xFE. */
3604 #define ISO_FUNCTION_KEY_OFFSET 0xfe00
3606 static char *iso_lispy_function_keys[] =
3608 0, 0, 0, 0, 0, 0, 0, 0, /* 0xfe00 */
3609 0, 0, 0, 0, 0, 0, 0, 0, /* 0xfe08 */
3610 0, 0, 0, 0, 0, 0, 0, 0, /* 0xfe10 */
3611 0, 0, 0, 0, 0, 0, 0, 0, /* 0xfe18 */
3612 "iso-lefttab", /* 0xfe20 */
3613 "iso-move-line-up", "iso-move-line-down",
3614 "iso-partial-line-up", "iso-partial-line-down",
3615 "iso-partial-space-left", "iso-partial-space-right",
3616 "iso-set-margin-left", "iso-set-margin-right", /* 0xffe27, 28 */
3617 "iso-release-margin-left", "iso-release-margin-right",
3618 "iso-release-both-margins",
3619 "iso-fast-cursor-left", "iso-fast-cursor-right",
3620 "iso-fast-cursor-up", "iso-fast-cursor-down",
3621 "iso-continuous-underline", "iso-discontinuous-underline", /* 0xfe30, 31 */
3622 "iso-emphasize", "iso-center-object", "iso-enter", /* ... 0xfe34 */
3625 #endif /* not HAVE_NTGUI */
3627 static char *lispy_mouse_names[] =
3629 "mouse-1", "mouse-2", "mouse-3", "mouse-4", "mouse-5"
3632 /* Scroll bar parts. */
3633 Lisp_Object Qabove_handle, Qhandle, Qbelow_handle;
3634 Lisp_Object Qup, Qdown;
3636 /* An array of scroll bar parts, indexed by an enum scroll_bar_part value. */
3637 Lisp_Object *scroll_bar_parts[] = {
3638 &Qabove_handle, &Qhandle, &Qbelow_handle,
3639 &Qup, &Qdown,
3643 /* A vector, indexed by button number, giving the down-going location
3644 of currently depressed buttons, both scroll bar and non-scroll bar.
3646 The elements have the form
3647 (BUTTON-NUMBER MODIFIER-MASK . REST)
3648 where REST is the cdr of a position as it would be reported in the event.
3650 The make_lispy_event function stores positions here to tell the
3651 difference between click and drag events, and to store the starting
3652 location to be included in drag events. */
3654 static Lisp_Object button_down_location;
3656 /* Information about the most recent up-going button event: Which
3657 button, what location, and what time. */
3659 static int last_mouse_button;
3660 static int last_mouse_x;
3661 static int last_mouse_y;
3662 static unsigned long button_down_time;
3664 /* The maximum time between clicks to make a double-click,
3665 or Qnil to disable double-click detection,
3666 or Qt for no time limit. */
3667 Lisp_Object Vdouble_click_time;
3669 /* The number of clicks in this multiple-click. */
3671 int double_click_count;
3673 /* Given a struct input_event, build the lisp event which represents
3674 it. If EVENT is 0, build a mouse movement event from the mouse
3675 movement buffer, which should have a movement event in it.
3677 Note that events must be passed to this function in the order they
3678 are received; this function stores the location of button presses
3679 in order to build drag events when the button is released. */
3681 static Lisp_Object
3682 make_lispy_event (event)
3683 struct input_event *event;
3685 int i;
3687 switch (SWITCH_ENUM_CAST (event->kind))
3689 /* A simple keystroke. */
3690 case ascii_keystroke:
3692 Lisp_Object lispy_c;
3693 int c = event->code & 0377;
3694 /* Turn ASCII characters into control characters
3695 when proper. */
3696 if (event->modifiers & ctrl_modifier)
3697 c = make_ctrl_char (c);
3699 /* Add in the other modifier bits. We took care of ctrl_modifier
3700 just above, and the shift key was taken care of by the X code,
3701 and applied to control characters by make_ctrl_char. */
3702 c |= (event->modifiers
3703 & (meta_modifier | alt_modifier
3704 | hyper_modifier | super_modifier));
3705 button_down_time = 0;
3706 XSETFASTINT (lispy_c, c);
3707 return lispy_c;
3710 /* A function key. The symbol may need to have modifier prefixes
3711 tacked onto it. */
3712 case non_ascii_keystroke:
3713 button_down_time = 0;
3715 for (i = 0; i < sizeof (lispy_accent_codes) / sizeof (int); i++)
3716 if (event->code == lispy_accent_codes[i])
3717 return modify_event_symbol (i,
3718 event->modifiers,
3719 Qfunction_key, Qnil,
3720 lispy_accent_keys, &accent_key_syms,
3721 (sizeof (lispy_accent_keys)
3722 / sizeof (lispy_accent_keys[0])));
3724 /* Handle system-specific keysyms. */
3725 if (event->code & (1 << 28))
3727 /* We need to use an alist rather than a vector as the cache
3728 since we can't make a vector long enuf. */
3729 if (NILP (current_kboard->system_key_syms))
3730 current_kboard->system_key_syms = Fcons (Qnil, Qnil);
3731 return modify_event_symbol (event->code,
3732 event->modifiers,
3733 Qfunction_key,
3734 current_kboard->Vsystem_key_alist,
3735 0, &current_kboard->system_key_syms,
3736 (unsigned)-1);
3739 #ifdef XK_kana_A
3740 if (event->code >= 0x400 && event->code < 0x500)
3741 return modify_event_symbol (event->code - 0x400,
3742 event->modifiers & ~shift_modifier,
3743 Qfunction_key, Qnil,
3744 lispy_kana_keys, &func_key_syms,
3745 (sizeof (lispy_kana_keys)
3746 / sizeof (lispy_kana_keys[0])));
3747 #endif /* XK_kana_A */
3749 #ifdef ISO_FUNCTION_KEY_OFFSET
3750 if (event->code < FUNCTION_KEY_OFFSET
3751 && event->code >= ISO_FUNCTION_KEY_OFFSET)
3752 return modify_event_symbol (event->code - ISO_FUNCTION_KEY_OFFSET,
3753 event->modifiers,
3754 Qfunction_key, Qnil,
3755 iso_lispy_function_keys, &func_key_syms,
3756 (sizeof (iso_lispy_function_keys)
3757 / sizeof (iso_lispy_function_keys[0])));
3758 else
3759 #endif
3760 return modify_event_symbol (event->code - FUNCTION_KEY_OFFSET,
3761 event->modifiers,
3762 Qfunction_key, Qnil,
3763 lispy_function_keys, &func_key_syms,
3764 (sizeof (lispy_function_keys)
3765 / sizeof (lispy_function_keys[0])));
3767 #ifdef HAVE_MOUSE
3768 /* A mouse click. Figure out where it is, decide whether it's
3769 a press, click or drag, and build the appropriate structure. */
3770 case mouse_click:
3771 case scroll_bar_click:
3773 int button = event->code;
3774 int is_double;
3775 Lisp_Object position;
3776 Lisp_Object *start_pos_ptr;
3777 Lisp_Object start_pos;
3779 if (button < 0 || button >= NUM_MOUSE_BUTTONS)
3780 abort ();
3782 /* Build the position as appropriate for this mouse click. */
3783 if (event->kind == mouse_click)
3785 int part;
3786 FRAME_PTR f = XFRAME (event->frame_or_window);
3787 Lisp_Object window;
3788 Lisp_Object posn;
3789 int row, column;
3791 /* Ignore mouse events that were made on frame that
3792 have been deleted. */
3793 if (! FRAME_LIVE_P (f))
3794 return Qnil;
3796 pixel_to_glyph_coords (f, XINT (event->x), XINT (event->y),
3797 &column, &row, NULL, 1);
3799 #ifndef USE_X_TOOLKIT
3800 /* In the non-toolkit version, clicks on the menu bar
3801 are ordinary button events in the event buffer.
3802 Distinguish them, and invoke the menu.
3804 (In the toolkit version, the toolkit handles the menu bar
3805 and Emacs doesn't know about it until after the user
3806 makes a selection.) */
3807 if (row >= 0 && row < FRAME_MENU_BAR_LINES (f)
3808 && (event->modifiers & down_modifier))
3810 Lisp_Object items, item;
3811 int hpos;
3812 int i;
3814 #if 0
3815 /* Activate the menu bar on the down event. If the
3816 up event comes in before the menu code can deal with it,
3817 just ignore it. */
3818 if (! (event->modifiers & down_modifier))
3819 return Qnil;
3820 #endif
3822 item = Qnil;
3823 items = FRAME_MENU_BAR_ITEMS (f);
3824 for (i = 0; i < XVECTOR (items)->size; i += 4)
3826 Lisp_Object pos, string;
3827 string = XVECTOR (items)->contents[i + 1];
3828 pos = XVECTOR (items)->contents[i + 3];
3829 if (NILP (string))
3830 break;
3831 if (column >= XINT (pos)
3832 && column < XINT (pos) + XSTRING (string)->size)
3834 item = XVECTOR (items)->contents[i];
3835 break;
3839 position
3840 = Fcons (event->frame_or_window,
3841 Fcons (Qmenu_bar,
3842 Fcons (Fcons (event->x, event->y),
3843 Fcons (make_number (event->timestamp),
3844 Qnil))));
3846 return Fcons (item, Fcons (position, Qnil));
3848 #endif /* not USE_X_TOOLKIT */
3850 window = window_from_coordinates (f, column, row, &part);
3852 if (!WINDOWP (window))
3854 window = event->frame_or_window;
3855 posn = Qnil;
3857 else
3859 int pixcolumn, pixrow;
3860 column -= WINDOW_LEFT_MARGIN (XWINDOW (window));
3861 row -= XINT (XWINDOW (window)->top);
3862 glyph_to_pixel_coords (f, column, row, &pixcolumn, &pixrow);
3863 XSETINT (event->x, pixcolumn);
3864 XSETINT (event->y, pixrow);
3866 if (part == 1)
3867 posn = Qmode_line;
3868 else if (part == 2)
3869 posn = Qvertical_line;
3870 else
3871 XSETINT (posn,
3872 buffer_posn_from_coords (XWINDOW (window),
3873 column, row));
3876 position
3877 = Fcons (window,
3878 Fcons (posn,
3879 Fcons (Fcons (event->x, event->y),
3880 Fcons (make_number (event->timestamp),
3881 Qnil))));
3883 else
3885 Lisp_Object window;
3886 Lisp_Object portion_whole;
3887 Lisp_Object part;
3889 window = event->frame_or_window;
3890 portion_whole = Fcons (event->x, event->y);
3891 part = *scroll_bar_parts[(int) event->part];
3893 position
3894 = Fcons (window,
3895 Fcons (Qvertical_scroll_bar,
3896 Fcons (portion_whole,
3897 Fcons (make_number (event->timestamp),
3898 Fcons (part, Qnil)))));
3901 start_pos_ptr = &XVECTOR (button_down_location)->contents[button];
3903 start_pos = *start_pos_ptr;
3904 *start_pos_ptr = Qnil;
3906 is_double = (button == last_mouse_button
3907 && XINT (event->x) == last_mouse_x
3908 && XINT (event->y) == last_mouse_y
3909 && button_down_time != 0
3910 && (EQ (Vdouble_click_time, Qt)
3911 || (INTEGERP (Vdouble_click_time)
3912 && ((int)(event->timestamp - button_down_time)
3913 < XINT (Vdouble_click_time)))));
3914 last_mouse_button = button;
3915 last_mouse_x = XINT (event->x);
3916 last_mouse_y = XINT (event->y);
3918 /* If this is a button press, squirrel away the location, so
3919 we can decide later whether it was a click or a drag. */
3920 if (event->modifiers & down_modifier)
3922 if (is_double)
3924 double_click_count++;
3925 event->modifiers |= ((double_click_count > 2)
3926 ? triple_modifier
3927 : double_modifier);
3929 else
3930 double_click_count = 1;
3931 button_down_time = event->timestamp;
3932 *start_pos_ptr = Fcopy_alist (position);
3935 /* Now we're releasing a button - check the co-ordinates to
3936 see if this was a click or a drag. */
3937 else if (event->modifiers & up_modifier)
3939 /* If we did not see a down before this up,
3940 ignore the up. Probably this happened because
3941 the down event chose a menu item.
3942 It would be an annoyance to treat the release
3943 of the button that chose the menu item
3944 as a separate event. */
3946 if (!CONSP (start_pos))
3947 return Qnil;
3949 event->modifiers &= ~up_modifier;
3950 #if 0 /* Formerly we treated an up with no down as a click event. */
3951 if (!CONSP (start_pos))
3952 event->modifiers |= click_modifier;
3953 else
3954 #endif
3956 /* The third element of every position should be the (x,y)
3957 pair. */
3958 Lisp_Object down;
3960 down = Fnth (make_number (2), start_pos);
3961 if (EQ (event->x, XCONS (down)->car)
3962 && EQ (event->y, XCONS (down)->cdr))
3964 event->modifiers |= click_modifier;
3966 else
3968 button_down_time = 0;
3969 event->modifiers |= drag_modifier;
3971 /* Don't check is_double; treat this as multiple
3972 if the down-event was multiple. */
3973 if (double_click_count > 1)
3974 event->modifiers |= ((double_click_count > 2)
3975 ? triple_modifier
3976 : double_modifier);
3979 else
3980 /* Every mouse event should either have the down_modifier or
3981 the up_modifier set. */
3982 abort ();
3985 /* Get the symbol we should use for the mouse click. */
3986 Lisp_Object head;
3988 head = modify_event_symbol (button,
3989 event->modifiers,
3990 Qmouse_click, Qnil,
3991 lispy_mouse_names, &mouse_syms,
3992 (sizeof (lispy_mouse_names)
3993 / sizeof (lispy_mouse_names[0])));
3994 if (event->modifiers & drag_modifier)
3995 return Fcons (head,
3996 Fcons (start_pos,
3997 Fcons (position,
3998 Qnil)));
3999 else if (event->modifiers & (double_modifier | triple_modifier))
4000 return Fcons (head,
4001 Fcons (position,
4002 Fcons (make_number (double_click_count),
4003 Qnil)));
4004 else
4005 return Fcons (head,
4006 Fcons (position,
4007 Qnil));
4011 #ifdef WINDOWSNT
4012 case w32_scroll_bar_click:
4014 int button = event->code;
4015 int is_double;
4016 Lisp_Object position;
4017 Lisp_Object *start_pos_ptr;
4018 Lisp_Object start_pos;
4020 if (button < 0 || button >= NUM_MOUSE_BUTTONS)
4021 abort ();
4024 Lisp_Object window;
4025 Lisp_Object portion_whole;
4026 Lisp_Object part;
4028 window = event->frame_or_window;
4029 portion_whole = Fcons (event->x, event->y);
4030 part = *scroll_bar_parts[(int) event->part];
4032 position =
4033 Fcons (window,
4034 Fcons (Qvertical_scroll_bar,
4035 Fcons (portion_whole,
4036 Fcons (make_number (event->timestamp),
4037 Fcons (part, Qnil)))));
4040 /* Always treat W32 scroll bar events as clicks. */
4041 event->modifiers |= click_modifier;
4044 /* Get the symbol we should use for the mouse click. */
4045 Lisp_Object head;
4047 head = modify_event_symbol (button,
4048 event->modifiers,
4049 Qmouse_click, Qnil,
4050 lispy_mouse_names, &mouse_syms,
4051 (sizeof (lispy_mouse_names)
4052 / sizeof (lispy_mouse_names[0])));
4053 return Fcons (head,
4054 Fcons (position,
4055 Qnil));
4058 #endif
4060 #endif /* HAVE_MOUSE */
4062 #if defined (USE_X_TOOLKIT) || defined (HAVE_NTGUI)
4063 case menu_bar_event:
4064 /* The event value is in the cdr of the frame_or_window slot. */
4065 if (!CONSP (event->frame_or_window))
4066 abort ();
4067 return XCONS (event->frame_or_window)->cdr;
4068 #endif
4070 /* The 'kind' field of the event is something we don't recognize. */
4071 default:
4072 abort ();
4076 #ifdef HAVE_MOUSE
4078 static Lisp_Object
4079 make_lispy_movement (frame, bar_window, part, x, y, time)
4080 FRAME_PTR frame;
4081 Lisp_Object bar_window;
4082 enum scroll_bar_part part;
4083 Lisp_Object x, y;
4084 unsigned long time;
4086 /* Is it a scroll bar movement? */
4087 if (frame && ! NILP (bar_window))
4089 Lisp_Object part_sym;
4091 part_sym = *scroll_bar_parts[(int) part];
4092 return Fcons (Qscroll_bar_movement,
4093 (Fcons (Fcons (bar_window,
4094 Fcons (Qvertical_scroll_bar,
4095 Fcons (Fcons (x, y),
4096 Fcons (make_number (time),
4097 Fcons (part_sym,
4098 Qnil))))),
4099 Qnil)));
4102 /* Or is it an ordinary mouse movement? */
4103 else
4105 int area;
4106 Lisp_Object window;
4107 Lisp_Object posn;
4108 int column, row;
4110 if (frame)
4112 /* It's in a frame; which window on that frame? */
4113 pixel_to_glyph_coords (frame, XINT (x), XINT (y), &column, &row,
4114 NULL, 1);
4115 window = window_from_coordinates (frame, column, row, &area);
4117 else
4118 window = Qnil;
4120 if (WINDOWP (window))
4122 int pixcolumn, pixrow;
4123 column -= WINDOW_LEFT_MARGIN (XWINDOW (window));
4124 row -= XINT (XWINDOW (window)->top);
4125 glyph_to_pixel_coords (frame, column, row, &pixcolumn, &pixrow);
4126 XSETINT (x, pixcolumn);
4127 XSETINT (y, pixrow);
4129 if (area == 1)
4130 posn = Qmode_line;
4131 else if (area == 2)
4132 posn = Qvertical_line;
4133 else
4134 XSETINT (posn,
4135 buffer_posn_from_coords (XWINDOW (window), column, row));
4137 else if (frame != 0)
4139 XSETFRAME (window, frame);
4140 posn = Qnil;
4142 else
4144 window = Qnil;
4145 posn = Qnil;
4146 XSETFASTINT (x, 0);
4147 XSETFASTINT (y, 0);
4150 return Fcons (Qmouse_movement,
4151 Fcons (Fcons (window,
4152 Fcons (posn,
4153 Fcons (Fcons (x, y),
4154 Fcons (make_number (time),
4155 Qnil)))),
4156 Qnil));
4160 #endif /* HAVE_MOUSE */
4162 /* Construct a switch frame event. */
4163 static Lisp_Object
4164 make_lispy_switch_frame (frame)
4165 Lisp_Object frame;
4167 return Fcons (Qswitch_frame, Fcons (frame, Qnil));
4170 /* Manipulating modifiers. */
4172 /* Parse the name of SYMBOL, and return the set of modifiers it contains.
4174 If MODIFIER_END is non-zero, set *MODIFIER_END to the position in
4175 SYMBOL's name of the end of the modifiers; the string from this
4176 position is the unmodified symbol name.
4178 This doesn't use any caches. */
4180 static int
4181 parse_modifiers_uncached (symbol, modifier_end)
4182 Lisp_Object symbol;
4183 int *modifier_end;
4185 struct Lisp_String *name;
4186 int i;
4187 int modifiers;
4189 CHECK_SYMBOL (symbol, 1);
4191 modifiers = 0;
4192 name = XSYMBOL (symbol)->name;
4194 for (i = 0; i+2 <= name->size; )
4196 int this_mod_end = 0;
4197 int this_mod = 0;
4199 /* See if the name continues with a modifier word.
4200 Check that the word appears, but don't check what follows it.
4201 Set this_mod and this_mod_end to record what we find. */
4203 switch (name->data[i])
4205 #define SINGLE_LETTER_MOD(BIT) \
4206 (this_mod_end = i + 1, this_mod = BIT)
4208 case 'A':
4209 SINGLE_LETTER_MOD (alt_modifier);
4210 break;
4212 case 'C':
4213 SINGLE_LETTER_MOD (ctrl_modifier);
4214 break;
4216 case 'H':
4217 SINGLE_LETTER_MOD (hyper_modifier);
4218 break;
4220 case 'M':
4221 SINGLE_LETTER_MOD (meta_modifier);
4222 break;
4224 case 'S':
4225 SINGLE_LETTER_MOD (shift_modifier);
4226 break;
4228 case 's':
4229 SINGLE_LETTER_MOD (super_modifier);
4230 break;
4232 #undef SINGLE_LETTER_MOD
4235 /* If we found no modifier, stop looking for them. */
4236 if (this_mod_end == 0)
4237 break;
4239 /* Check there is a dash after the modifier, so that it
4240 really is a modifier. */
4241 if (this_mod_end >= name->size || name->data[this_mod_end] != '-')
4242 break;
4244 /* This modifier is real; look for another. */
4245 modifiers |= this_mod;
4246 i = this_mod_end + 1;
4249 /* Should we include the `click' modifier? */
4250 if (! (modifiers & (down_modifier | drag_modifier
4251 | double_modifier | triple_modifier))
4252 && i + 7 == name->size
4253 && strncmp (name->data + i, "mouse-", 6) == 0
4254 && ('0' <= name->data[i + 6] && name->data[i + 6] <= '9'))
4255 modifiers |= click_modifier;
4257 if (modifier_end)
4258 *modifier_end = i;
4260 return modifiers;
4263 /* Return a symbol whose name is the modifier prefixes for MODIFIERS
4264 prepended to the string BASE[0..BASE_LEN-1].
4265 This doesn't use any caches. */
4266 static Lisp_Object
4267 apply_modifiers_uncached (modifiers, base, base_len)
4268 int modifiers;
4269 char *base;
4270 int base_len;
4272 /* Since BASE could contain nulls, we can't use intern here; we have
4273 to use Fintern, which expects a genuine Lisp_String, and keeps a
4274 reference to it. */
4275 char *new_mods =
4276 (char *) alloca (sizeof ("A-C-H-M-S-s-down-drag-double-triple-"));
4277 int mod_len;
4280 char *p = new_mods;
4282 /* Only the event queue may use the `up' modifier; it should always
4283 be turned into a click or drag event before presented to lisp code. */
4284 if (modifiers & up_modifier)
4285 abort ();
4287 if (modifiers & alt_modifier) { *p++ = 'A'; *p++ = '-'; }
4288 if (modifiers & ctrl_modifier) { *p++ = 'C'; *p++ = '-'; }
4289 if (modifiers & hyper_modifier) { *p++ = 'H'; *p++ = '-'; }
4290 if (modifiers & meta_modifier) { *p++ = 'M'; *p++ = '-'; }
4291 if (modifiers & shift_modifier) { *p++ = 'S'; *p++ = '-'; }
4292 if (modifiers & super_modifier) { *p++ = 's'; *p++ = '-'; }
4293 if (modifiers & double_modifier) { strcpy (p, "double-"); p += 7; }
4294 if (modifiers & triple_modifier) { strcpy (p, "triple-"); p += 7; }
4295 if (modifiers & down_modifier) { strcpy (p, "down-"); p += 5; }
4296 if (modifiers & drag_modifier) { strcpy (p, "drag-"); p += 5; }
4297 /* The click modifier is denoted by the absence of other modifiers. */
4299 *p = '\0';
4301 mod_len = p - new_mods;
4305 Lisp_Object new_name;
4307 new_name = make_uninit_string (mod_len + base_len);
4308 bcopy (new_mods, XSTRING (new_name)->data, mod_len);
4309 bcopy (base, XSTRING (new_name)->data + mod_len, base_len);
4311 return Fintern (new_name, Qnil);
4316 static char *modifier_names[] =
4318 "up", "down", "drag", "click", "double", "triple", 0, 0,
4319 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
4320 0, 0, "alt", "super", "hyper", "shift", "control", "meta"
4322 #define NUM_MOD_NAMES (sizeof (modifier_names) / sizeof (modifier_names[0]))
4324 static Lisp_Object modifier_symbols;
4326 /* Return the list of modifier symbols corresponding to the mask MODIFIERS. */
4327 static Lisp_Object
4328 lispy_modifier_list (modifiers)
4329 int modifiers;
4331 Lisp_Object modifier_list;
4332 int i;
4334 modifier_list = Qnil;
4335 for (i = 0; (1<<i) <= modifiers && i < NUM_MOD_NAMES; i++)
4336 if (modifiers & (1<<i))
4337 modifier_list = Fcons (XVECTOR (modifier_symbols)->contents[i],
4338 modifier_list);
4340 return modifier_list;
4344 /* Parse the modifiers on SYMBOL, and return a list like (UNMODIFIED MASK),
4345 where UNMODIFIED is the unmodified form of SYMBOL,
4346 MASK is the set of modifiers present in SYMBOL's name.
4347 This is similar to parse_modifiers_uncached, but uses the cache in
4348 SYMBOL's Qevent_symbol_element_mask property, and maintains the
4349 Qevent_symbol_elements property. */
4351 static Lisp_Object
4352 parse_modifiers (symbol)
4353 Lisp_Object symbol;
4355 Lisp_Object elements;
4357 elements = Fget (symbol, Qevent_symbol_element_mask);
4358 if (CONSP (elements))
4359 return elements;
4360 else
4362 int end;
4363 int modifiers = parse_modifiers_uncached (symbol, &end);
4364 Lisp_Object unmodified;
4365 Lisp_Object mask;
4367 unmodified = Fintern (make_string (XSYMBOL (symbol)->name->data + end,
4368 XSYMBOL (symbol)->name->size - end),
4369 Qnil);
4371 if (modifiers & ~(((EMACS_INT)1 << VALBITS) - 1))
4372 abort ();
4373 XSETFASTINT (mask, modifiers);
4374 elements = Fcons (unmodified, Fcons (mask, Qnil));
4376 /* Cache the parsing results on SYMBOL. */
4377 Fput (symbol, Qevent_symbol_element_mask,
4378 elements);
4379 Fput (symbol, Qevent_symbol_elements,
4380 Fcons (unmodified, lispy_modifier_list (modifiers)));
4382 /* Since we know that SYMBOL is modifiers applied to unmodified,
4383 it would be nice to put that in unmodified's cache.
4384 But we can't, since we're not sure that parse_modifiers is
4385 canonical. */
4387 return elements;
4391 /* Apply the modifiers MODIFIERS to the symbol BASE.
4392 BASE must be unmodified.
4394 This is like apply_modifiers_uncached, but uses BASE's
4395 Qmodifier_cache property, if present. It also builds
4396 Qevent_symbol_elements properties, since it has that info anyway.
4398 apply_modifiers copies the value of BASE's Qevent_kind property to
4399 the modified symbol. */
4400 static Lisp_Object
4401 apply_modifiers (modifiers, base)
4402 int modifiers;
4403 Lisp_Object base;
4405 Lisp_Object cache, index, entry, new_symbol;
4407 /* Mask out upper bits. We don't know where this value's been. */
4408 modifiers &= ((EMACS_INT)1 << VALBITS) - 1;
4410 /* The click modifier never figures into cache indices. */
4411 cache = Fget (base, Qmodifier_cache);
4412 XSETFASTINT (index, (modifiers & ~click_modifier));
4413 entry = assq_no_quit (index, cache);
4415 if (CONSP (entry))
4416 new_symbol = XCONS (entry)->cdr;
4417 else
4419 /* We have to create the symbol ourselves. */
4420 new_symbol = apply_modifiers_uncached (modifiers,
4421 XSYMBOL (base)->name->data,
4422 XSYMBOL (base)->name->size);
4424 /* Add the new symbol to the base's cache. */
4425 entry = Fcons (index, new_symbol);
4426 Fput (base, Qmodifier_cache, Fcons (entry, cache));
4428 /* We have the parsing info now for free, so add it to the caches. */
4429 XSETFASTINT (index, modifiers);
4430 Fput (new_symbol, Qevent_symbol_element_mask,
4431 Fcons (base, Fcons (index, Qnil)));
4432 Fput (new_symbol, Qevent_symbol_elements,
4433 Fcons (base, lispy_modifier_list (modifiers)));
4436 /* Make sure this symbol is of the same kind as BASE.
4438 You'd think we could just set this once and for all when we
4439 intern the symbol above, but reorder_modifiers may call us when
4440 BASE's property isn't set right; we can't assume that just
4441 because it has a Qmodifier_cache property it must have its
4442 Qevent_kind set right as well. */
4443 if (NILP (Fget (new_symbol, Qevent_kind)))
4445 Lisp_Object kind;
4447 kind = Fget (base, Qevent_kind);
4448 if (! NILP (kind))
4449 Fput (new_symbol, Qevent_kind, kind);
4452 return new_symbol;
4456 /* Given a symbol whose name begins with modifiers ("C-", "M-", etc),
4457 return a symbol with the modifiers placed in the canonical order.
4458 Canonical order is alphabetical, except for down and drag, which
4459 always come last. The 'click' modifier is never written out.
4461 Fdefine_key calls this to make sure that (for example) C-M-foo
4462 and M-C-foo end up being equivalent in the keymap. */
4464 Lisp_Object
4465 reorder_modifiers (symbol)
4466 Lisp_Object symbol;
4468 /* It's hopefully okay to write the code this way, since everything
4469 will soon be in caches, and no consing will be done at all. */
4470 Lisp_Object parsed;
4472 parsed = parse_modifiers (symbol);
4473 return apply_modifiers ((int) XINT (XCONS (XCONS (parsed)->cdr)->car),
4474 XCONS (parsed)->car);
4478 /* For handling events, we often want to produce a symbol whose name
4479 is a series of modifier key prefixes ("M-", "C-", etcetera) attached
4480 to some base, like the name of a function key or mouse button.
4481 modify_event_symbol produces symbols of this sort.
4483 NAME_TABLE should point to an array of strings, such that NAME_TABLE[i]
4484 is the name of the i'th symbol. TABLE_SIZE is the number of elements
4485 in the table.
4487 Alternatively, NAME_ALIST is an alist mapping codes into symbol names.
4488 NAME_ALIST is used if it is non-nil; otherwise NAME_TABLE is used.
4490 SYMBOL_TABLE should be a pointer to a Lisp_Object whose value will
4491 persist between calls to modify_event_symbol that it can use to
4492 store a cache of the symbols it's generated for this NAME_TABLE
4493 before. The object stored there may be a vector or an alist.
4495 SYMBOL_NUM is the number of the base name we want from NAME_TABLE.
4497 MODIFIERS is a set of modifier bits (as given in struct input_events)
4498 whose prefixes should be applied to the symbol name.
4500 SYMBOL_KIND is the value to be placed in the event_kind property of
4501 the returned symbol.
4503 The symbols we create are supposed to have an
4504 `event-symbol-elements' property, which lists the modifiers present
4505 in the symbol's name. */
4507 static Lisp_Object
4508 modify_event_symbol (symbol_num, modifiers, symbol_kind, name_alist,
4509 name_table, symbol_table, table_size)
4510 int symbol_num;
4511 unsigned modifiers;
4512 Lisp_Object symbol_kind;
4513 Lisp_Object name_alist;
4514 char **name_table;
4515 Lisp_Object *symbol_table;
4516 unsigned int table_size;
4518 Lisp_Object value;
4519 Lisp_Object symbol_int;
4521 /* Get rid of the "vendor-specific" bit here. */
4522 XSETINT (symbol_int, symbol_num & 0xffffff);
4524 /* Is this a request for a valid symbol? */
4525 if (symbol_num < 0 || symbol_num >= table_size)
4526 return Qnil;
4528 if (CONSP (*symbol_table))
4529 value = Fcdr (assq_no_quit (symbol_int, *symbol_table));
4531 /* If *symbol_table doesn't seem to be initialized properly, fix that.
4532 *symbol_table should be a lisp vector TABLE_SIZE elements long,
4533 where the Nth element is the symbol for NAME_TABLE[N], or nil if
4534 we've never used that symbol before. */
4535 else
4537 if (! VECTORP (*symbol_table)
4538 || XVECTOR (*symbol_table)->size != table_size)
4540 Lisp_Object size;
4542 XSETFASTINT (size, table_size);
4543 *symbol_table = Fmake_vector (size, Qnil);
4546 value = XVECTOR (*symbol_table)->contents[symbol_num];
4549 /* Have we already used this symbol before? */
4550 if (NILP (value))
4552 /* No; let's create it. */
4553 if (!NILP (name_alist))
4554 value = Fcdr_safe (Fassq (symbol_int, name_alist));
4555 else if (name_table != 0 && name_table[symbol_num])
4556 value = intern (name_table[symbol_num]);
4558 #ifdef HAVE_WINDOW_SYSTEM
4559 if (NILP (value))
4561 char *name = x_get_keysym_name (symbol_num);
4562 if (name)
4563 value = intern (name);
4565 #endif
4567 if (NILP (value))
4569 char buf[20];
4570 sprintf (buf, "key-%d", symbol_num);
4571 value = intern (buf);
4574 if (CONSP (*symbol_table))
4575 *symbol_table = Fcons (Fcons (symbol_int, value), *symbol_table);
4576 else
4577 XVECTOR (*symbol_table)->contents[symbol_num] = value;
4579 /* Fill in the cache entries for this symbol; this also
4580 builds the Qevent_symbol_elements property, which the user
4581 cares about. */
4582 apply_modifiers (modifiers & click_modifier, value);
4583 Fput (value, Qevent_kind, symbol_kind);
4586 /* Apply modifiers to that symbol. */
4587 return apply_modifiers (modifiers, value);
4590 /* Convert a list that represents an event type,
4591 such as (ctrl meta backspace), into the usual representation of that
4592 event type as a number or a symbol. */
4594 DEFUN ("event-convert-list", Fevent_convert_list, Sevent_convert_list, 1, 1, 0,
4595 "Convert the event description list EVENT-DESC to an event type.\n\
4596 EVENT-DESC should contain one base event type (a character or symbol)\n\
4597 and zero or more modifier names (control, meta, hyper, super, shift, alt,\n\
4598 drag, down, double or triple). The base must be last.\n\
4599 The return value is an event type (a character or symbol) which\n\
4600 has the same base event type and all the specified modifiers.")
4601 (event_desc)
4602 Lisp_Object event_desc;
4604 Lisp_Object base;
4605 int modifiers = 0;
4606 Lisp_Object rest;
4608 base = Qnil;
4609 rest = event_desc;
4610 while (CONSP (rest))
4612 Lisp_Object elt;
4613 int this = 0;
4615 elt = XCONS (rest)->car;
4616 rest = XCONS (rest)->cdr;
4618 /* Given a symbol, see if it is a modifier name. */
4619 if (SYMBOLP (elt) && CONSP (rest))
4620 this = parse_solitary_modifier (elt);
4622 if (this != 0)
4623 modifiers |= this;
4624 else if (!NILP (base))
4625 error ("Two bases given in one event");
4626 else
4627 base = elt;
4631 /* Let the symbol A refer to the character A. */
4632 if (SYMBOLP (base) && XSYMBOL (base)->name->size == 1)
4633 XSETINT (base, XSYMBOL (base)->name->data[0]);
4635 if (INTEGERP (base))
4637 /* Turn (shift a) into A. */
4638 if ((modifiers & shift_modifier) != 0
4639 && (XINT (base) >= 'a' && XINT (base) <= 'z'))
4641 XSETINT (base, XINT (base) - ('a' - 'A'));
4642 modifiers &= ~shift_modifier;
4645 /* Turn (control a) into C-a. */
4646 if (modifiers & ctrl_modifier)
4647 return make_number ((modifiers & ~ctrl_modifier)
4648 | make_ctrl_char (XINT (base)));
4649 else
4650 return make_number (modifiers | XINT (base));
4652 else if (SYMBOLP (base))
4653 return apply_modifiers (modifiers, base);
4654 else
4655 error ("Invalid base event");
4658 /* Try to recognize SYMBOL as a modifier name.
4659 Return the modifier flag bit, or 0 if not recognized. */
4661 static int
4662 parse_solitary_modifier (symbol)
4663 Lisp_Object symbol;
4665 struct Lisp_String *name = XSYMBOL (symbol)->name;
4667 switch (name->data[0])
4669 #define SINGLE_LETTER_MOD(BIT) \
4670 if (name->size == 1) \
4671 return BIT;
4673 #define MULTI_LETTER_MOD(BIT, NAME, LEN) \
4674 if (LEN == name->size \
4675 && ! strncmp (name->data, NAME, LEN)) \
4676 return BIT;
4678 case 'A':
4679 SINGLE_LETTER_MOD (alt_modifier);
4680 break;
4682 case 'a':
4683 MULTI_LETTER_MOD (alt_modifier, "alt", 3);
4684 break;
4686 case 'C':
4687 SINGLE_LETTER_MOD (ctrl_modifier);
4688 break;
4690 case 'c':
4691 MULTI_LETTER_MOD (ctrl_modifier, "ctrl", 4);
4692 MULTI_LETTER_MOD (ctrl_modifier, "control", 7);
4693 break;
4695 case 'H':
4696 SINGLE_LETTER_MOD (hyper_modifier);
4697 break;
4699 case 'h':
4700 MULTI_LETTER_MOD (hyper_modifier, "hyper", 5);
4701 break;
4703 case 'M':
4704 SINGLE_LETTER_MOD (meta_modifier);
4705 break;
4707 case 'm':
4708 MULTI_LETTER_MOD (meta_modifier, "meta", 4);
4709 break;
4711 case 'S':
4712 SINGLE_LETTER_MOD (shift_modifier);
4713 break;
4715 case 's':
4716 MULTI_LETTER_MOD (shift_modifier, "shift", 5);
4717 MULTI_LETTER_MOD (super_modifier, "super", 5);
4718 SINGLE_LETTER_MOD (super_modifier);
4719 break;
4721 case 'd':
4722 MULTI_LETTER_MOD (drag_modifier, "drag", 4);
4723 MULTI_LETTER_MOD (down_modifier, "down", 4);
4724 MULTI_LETTER_MOD (double_modifier, "double", 6);
4725 break;
4727 case 't':
4728 MULTI_LETTER_MOD (triple_modifier, "triple", 6);
4729 break;
4731 #undef SINGLE_LETTER_MOD
4732 #undef MULTI_LETTER_MOD
4735 return 0;
4738 /* Return 1 if EVENT is a list whose elements are all integers or symbols.
4739 Such a list is not valid as an event,
4740 but it can be a Lucid-style event type list. */
4743 lucid_event_type_list_p (object)
4744 Lisp_Object object;
4746 Lisp_Object tail;
4748 if (! CONSP (object))
4749 return 0;
4751 for (tail = object; CONSP (tail); tail = XCONS (tail)->cdr)
4753 Lisp_Object elt;
4754 elt = XCONS (tail)->car;
4755 if (! (INTEGERP (elt) || SYMBOLP (elt)))
4756 return 0;
4759 return NILP (tail);
4762 /* Store into *addr a value nonzero if terminal input chars are available.
4763 Serves the purpose of ioctl (0, FIONREAD, addr)
4764 but works even if FIONREAD does not exist.
4765 (In fact, this may actually read some input.)
4767 If DO_TIMERS_NOW is nonzero, actually run timer events that are ripe. */
4769 static void
4770 get_input_pending (addr, do_timers_now)
4771 int *addr;
4772 int do_timers_now;
4774 /* First of all, have we already counted some input? */
4775 *addr = !NILP (Vquit_flag) || readable_events (do_timers_now);
4777 /* If input is being read as it arrives, and we have none, there is none. */
4778 if (*addr > 0 || (interrupt_input && ! interrupts_deferred))
4779 return;
4781 /* Try to read some input and see how much we get. */
4782 gobble_input (0);
4783 *addr = !NILP (Vquit_flag) || readable_events (do_timers_now);
4786 /* Interface to read_avail_input, blocking SIGIO or SIGALRM if necessary. */
4789 gobble_input (expected)
4790 int expected;
4792 #ifndef VMS
4793 #ifdef SIGIO
4794 if (interrupt_input)
4796 SIGMASKTYPE mask;
4797 mask = sigblock (sigmask (SIGIO));
4798 read_avail_input (expected);
4799 sigsetmask (mask);
4801 else
4802 #ifdef POLL_FOR_INPUT
4803 if (read_socket_hook && !interrupt_input && poll_suppress_count == 0)
4805 SIGMASKTYPE mask;
4806 mask = sigblock (sigmask (SIGALRM));
4807 read_avail_input (expected);
4808 sigsetmask (mask);
4810 else
4811 #endif
4812 #endif
4813 read_avail_input (expected);
4814 #endif
4817 /* Put a buffer_switch_event in the buffer
4818 so that read_key_sequence will notice the new current buffer. */
4820 record_asynch_buffer_change ()
4822 struct input_event event;
4823 Lisp_Object tem;
4825 event.kind = buffer_switch_event;
4826 event.frame_or_window = Qnil;
4828 #ifdef subprocesses
4829 /* We don't need a buffer-switch event unless Emacs is waiting for input.
4830 The purpose of the event is to make read_key_sequence look up the
4831 keymaps again. If we aren't in read_key_sequence, we don't need one,
4832 and the event could cause trouble by messing up (input-pending-p). */
4833 tem = Fwaiting_for_user_input_p ();
4834 if (NILP (tem))
4835 return;
4836 #else
4837 /* We never need these events if we have no asynchronous subprocesses. */
4838 return;
4839 #endif
4841 /* Make sure no interrupt happens while storing the event. */
4842 #ifdef SIGIO
4843 if (interrupt_input)
4845 SIGMASKTYPE mask;
4846 mask = sigblock (sigmask (SIGIO));
4847 kbd_buffer_store_event (&event);
4848 sigsetmask (mask);
4850 else
4851 #endif
4853 stop_polling ();
4854 kbd_buffer_store_event (&event);
4855 start_polling ();
4859 #ifndef VMS
4861 /* Read any terminal input already buffered up by the system
4862 into the kbd_buffer, but do not wait.
4864 EXPECTED should be nonzero if the caller knows there is some input.
4866 Except on VMS, all input is read by this function.
4867 If interrupt_input is nonzero, this function MUST be called
4868 only when SIGIO is blocked.
4870 Returns the number of keyboard chars read, or -1 meaning
4871 this is a bad time to try to read input. */
4873 static int
4874 read_avail_input (expected)
4875 int expected;
4877 struct input_event buf[KBD_BUFFER_SIZE];
4878 register int i;
4879 int nread;
4881 if (read_socket_hook)
4882 /* No need for FIONREAD or fcntl; just say don't wait. */
4883 nread = (*read_socket_hook) (input_fd, buf, KBD_BUFFER_SIZE, expected);
4884 else
4886 /* Using KBD_BUFFER_SIZE - 1 here avoids reading more than
4887 the kbd_buffer can really hold. That may prevent loss
4888 of characters on some systems when input is stuffed at us. */
4889 unsigned char cbuf[KBD_BUFFER_SIZE - 1];
4890 int n_to_read;
4892 /* Determine how many characters we should *try* to read. */
4893 #ifdef WINDOWSNT
4894 return 0;
4895 #else /* not WINDOWSNT */
4896 #ifdef MSDOS
4897 n_to_read = dos_keysns ();
4898 if (n_to_read == 0)
4899 return 0;
4900 #else /* not MSDOS */
4901 #ifdef FIONREAD
4902 /* Find out how much input is available. */
4903 if (ioctl (input_fd, FIONREAD, &n_to_read) < 0)
4904 /* Formerly simply reported no input, but that sometimes led to
4905 a failure of Emacs to terminate.
4906 SIGHUP seems appropriate if we can't reach the terminal. */
4907 /* ??? Is it really right to send the signal just to this process
4908 rather than to the whole process group?
4909 Perhaps on systems with FIONREAD Emacs is alone in its group. */
4910 kill (getpid (), SIGHUP);
4911 if (n_to_read == 0)
4912 return 0;
4913 if (n_to_read > sizeof cbuf)
4914 n_to_read = sizeof cbuf;
4915 #else /* no FIONREAD */
4916 #if defined (USG) || defined (DGUX)
4917 /* Read some input if available, but don't wait. */
4918 n_to_read = sizeof cbuf;
4919 fcntl (input_fd, F_SETFL, O_NDELAY);
4920 #else
4921 you lose;
4922 #endif
4923 #endif
4924 #endif /* not MSDOS */
4925 #endif /* not WINDOWSNT */
4927 /* Now read; for one reason or another, this will not block.
4928 NREAD is set to the number of chars read. */
4931 #ifdef MSDOS
4932 cbuf[0] = dos_keyread ();
4933 nread = 1;
4934 #else
4935 nread = read (input_fd, cbuf, n_to_read);
4936 #endif
4937 /* POSIX infers that processes which are not in the session leader's
4938 process group won't get SIGHUP's at logout time. BSDI adheres to
4939 this part standard and returns -1 from read(0) with errno==EIO
4940 when the control tty is taken away.
4941 Jeffrey Honig <jch@bsdi.com> says this is generally safe. */
4942 if (nread == -1 && errno == EIO)
4943 kill (0, SIGHUP);
4944 #if defined (AIX) && (! defined (aix386) && defined (_BSD))
4945 /* The kernel sometimes fails to deliver SIGHUP for ptys.
4946 This looks incorrect, but it isn't, because _BSD causes
4947 O_NDELAY to be defined in fcntl.h as O_NONBLOCK,
4948 and that causes a value other than 0 when there is no input. */
4949 if (nread == 0)
4950 kill (0, SIGHUP);
4951 #endif
4953 while (
4954 /* We used to retry the read if it was interrupted.
4955 But this does the wrong thing when O_NDELAY causes
4956 an EAGAIN error. Does anybody know of a situation
4957 where a retry is actually needed? */
4958 #if 0
4959 nread < 0 && (errno == EAGAIN
4960 #ifdef EFAULT
4961 || errno == EFAULT
4962 #endif
4963 #ifdef EBADSLT
4964 || errno == EBADSLT
4965 #endif
4967 #else
4969 #endif
4972 #ifndef FIONREAD
4973 #if defined (USG) || defined (DGUX)
4974 fcntl (input_fd, F_SETFL, 0);
4975 #endif /* USG or DGUX */
4976 #endif /* no FIONREAD */
4977 for (i = 0; i < nread; i++)
4979 buf[i].kind = ascii_keystroke;
4980 buf[i].modifiers = 0;
4981 if (meta_key == 1 && (cbuf[i] & 0x80))
4982 buf[i].modifiers = meta_modifier;
4983 if (meta_key != 2)
4984 cbuf[i] &= ~0x80;
4986 buf[i].code = cbuf[i];
4987 XSETFRAME (buf[i].frame_or_window, selected_frame);
4991 /* Scan the chars for C-g and store them in kbd_buffer. */
4992 for (i = 0; i < nread; i++)
4994 kbd_buffer_store_event (&buf[i]);
4995 /* Don't look at input that follows a C-g too closely.
4996 This reduces lossage due to autorepeat on C-g. */
4997 if (buf[i].kind == ascii_keystroke
4998 && buf[i].code == quit_char)
4999 break;
5002 return nread;
5004 #endif /* not VMS */
5006 #ifdef SIGIO /* for entire page */
5007 /* Note SIGIO has been undef'd if FIONREAD is missing. */
5009 SIGTYPE
5010 input_available_signal (signo)
5011 int signo;
5013 /* Must preserve main program's value of errno. */
5014 int old_errno = errno;
5015 #ifdef BSD4_1
5016 extern int select_alarmed;
5017 #endif
5019 #if defined (USG) && !defined (POSIX_SIGNALS)
5020 /* USG systems forget handlers when they are used;
5021 must reestablish each time */
5022 signal (signo, input_available_signal);
5023 #endif /* USG */
5025 #ifdef BSD4_1
5026 sigisheld (SIGIO);
5027 #endif
5029 if (input_available_clear_time)
5030 EMACS_SET_SECS_USECS (*input_available_clear_time, 0, 0);
5032 while (1)
5034 int nread;
5035 nread = read_avail_input (1);
5036 /* -1 means it's not ok to read the input now.
5037 UNBLOCK_INPUT will read it later; now, avoid infinite loop.
5038 0 means there was no keyboard input available. */
5039 if (nread <= 0)
5040 break;
5042 #ifdef BSD4_1
5043 select_alarmed = 1; /* Force the select emulator back to life */
5044 #endif
5047 #ifdef BSD4_1
5048 sigfree ();
5049 #endif
5050 errno = old_errno;
5052 #endif /* SIGIO */
5054 /* Send ourselves a SIGIO.
5056 This function exists so that the UNBLOCK_INPUT macro in
5057 blockinput.h can have some way to take care of input we put off
5058 dealing with, without assuming that every file which uses
5059 UNBLOCK_INPUT also has #included the files necessary to get SIGIO. */
5060 void
5061 reinvoke_input_signal ()
5063 #ifdef SIGIO
5064 kill (getpid (), SIGIO);
5065 #endif
5070 /* Return the prompt-string of a sparse keymap.
5071 This is the first element which is a string.
5072 Return nil if there is none. */
5074 Lisp_Object
5075 map_prompt (map)
5076 Lisp_Object map;
5078 while (CONSP (map))
5080 register Lisp_Object tem;
5081 tem = Fcar (map);
5082 if (STRINGP (tem))
5083 return tem;
5084 map = Fcdr (map);
5086 return Qnil;
5089 static void menu_bar_item ();
5090 static void menu_bar_one_keymap ();
5092 /* These variables hold the vector under construction within
5093 menu_bar_items and its subroutines, and the current index
5094 for storing into that vector. */
5095 static Lisp_Object menu_bar_items_vector;
5096 static int menu_bar_items_index;
5098 /* Return a vector of menu items for a menu bar, appropriate
5099 to the current buffer. Each item has three elements in the vector:
5100 KEY STRING MAPLIST.
5102 OLD is an old vector we can optionally reuse, or nil. */
5104 Lisp_Object
5105 menu_bar_items (old)
5106 Lisp_Object old;
5108 /* The number of keymaps we're scanning right now, and the number of
5109 keymaps we have allocated space for. */
5110 int nmaps;
5112 /* maps[0..nmaps-1] are the prefix definitions of KEYBUF[0..t-1]
5113 in the current keymaps, or nil where it is not a prefix. */
5114 Lisp_Object *maps;
5116 Lisp_Object def, tem, tail;
5118 Lisp_Object result;
5120 int mapno;
5121 Lisp_Object oquit;
5123 int i;
5125 struct gcpro gcpro1;
5127 /* In order to build the menus, we need to call the keymap
5128 accessors. They all call QUIT. But this function is called
5129 during redisplay, during which a quit is fatal. So inhibit
5130 quitting while building the menus.
5131 We do this instead of specbind because (1) errors will clear it anyway
5132 and (2) this avoids risk of specpdl overflow. */
5133 oquit = Vinhibit_quit;
5134 Vinhibit_quit = Qt;
5136 if (!NILP (old))
5137 menu_bar_items_vector = old;
5138 else
5139 menu_bar_items_vector = Fmake_vector (make_number (24), Qnil);
5140 menu_bar_items_index = 0;
5142 GCPRO1 (menu_bar_items_vector);
5144 /* Build our list of keymaps.
5145 If we recognize a function key and replace its escape sequence in
5146 keybuf with its symbol, or if the sequence starts with a mouse
5147 click and we need to switch buffers, we jump back here to rebuild
5148 the initial keymaps from the current buffer. */
5150 Lisp_Object *tmaps;
5152 /* Should overriding-terminal-local-map and overriding-local-map apply? */
5153 if (!NILP (Voverriding_local_map_menu_flag))
5155 /* Yes, use them (if non-nil) as well as the global map. */
5156 maps = (Lisp_Object *) alloca (3 * sizeof (maps[0]));
5157 nmaps = 0;
5158 if (!NILP (current_kboard->Voverriding_terminal_local_map))
5159 maps[nmaps++] = current_kboard->Voverriding_terminal_local_map;
5160 if (!NILP (Voverriding_local_map))
5161 maps[nmaps++] = Voverriding_local_map;
5163 else
5165 /* No, so use major and minor mode keymaps. */
5166 nmaps = current_minor_maps (NULL, &tmaps);
5167 maps = (Lisp_Object *) alloca ((nmaps + 2) * sizeof (maps[0]));
5168 bcopy (tmaps, maps, nmaps * sizeof (maps[0]));
5169 #ifdef USE_TEXT_PROPERTIES
5170 maps[nmaps++] = get_local_map (PT, current_buffer);
5171 #else
5172 maps[nmaps++] = current_buffer->keymap;
5173 #endif
5175 maps[nmaps++] = current_global_map;
5178 /* Look up in each map the dummy prefix key `menu-bar'. */
5180 result = Qnil;
5182 for (mapno = nmaps - 1; mapno >= 0; mapno--)
5184 if (! NILP (maps[mapno]))
5185 def = get_keyelt (access_keymap (maps[mapno], Qmenu_bar, 1, 0));
5186 else
5187 def = Qnil;
5189 tem = Fkeymapp (def);
5190 if (!NILP (tem))
5191 menu_bar_one_keymap (def);
5194 /* Move to the end those items that should be at the end. */
5196 for (tail = Vmenu_bar_final_items; CONSP (tail); tail = XCONS (tail)->cdr)
5198 int i;
5199 int end = menu_bar_items_index;
5201 for (i = 0; i < end; i += 4)
5202 if (EQ (XCONS (tail)->car, XVECTOR (menu_bar_items_vector)->contents[i]))
5204 Lisp_Object tem0, tem1, tem2, tem3;
5205 /* Move the item at index I to the end,
5206 shifting all the others forward. */
5207 tem0 = XVECTOR (menu_bar_items_vector)->contents[i + 0];
5208 tem1 = XVECTOR (menu_bar_items_vector)->contents[i + 1];
5209 tem2 = XVECTOR (menu_bar_items_vector)->contents[i + 2];
5210 tem3 = XVECTOR (menu_bar_items_vector)->contents[i + 3];
5211 if (end > i + 4)
5212 bcopy (&XVECTOR (menu_bar_items_vector)->contents[i + 4],
5213 &XVECTOR (menu_bar_items_vector)->contents[i],
5214 (end - i - 4) * sizeof (Lisp_Object));
5215 XVECTOR (menu_bar_items_vector)->contents[end - 4] = tem0;
5216 XVECTOR (menu_bar_items_vector)->contents[end - 3] = tem1;
5217 XVECTOR (menu_bar_items_vector)->contents[end - 2] = tem2;
5218 XVECTOR (menu_bar_items_vector)->contents[end - 1] = tem3;
5219 break;
5223 /* Add nil, nil, nil, nil at the end. */
5224 i = menu_bar_items_index;
5225 if (i + 4 > XVECTOR (menu_bar_items_vector)->size)
5227 Lisp_Object tem;
5228 int newsize = 2 * i;
5229 tem = Fmake_vector (make_number (2 * i), Qnil);
5230 bcopy (XVECTOR (menu_bar_items_vector)->contents,
5231 XVECTOR (tem)->contents, i * sizeof (Lisp_Object));
5232 menu_bar_items_vector = tem;
5234 /* Add this item. */
5235 XVECTOR (menu_bar_items_vector)->contents[i++] = Qnil;
5236 XVECTOR (menu_bar_items_vector)->contents[i++] = Qnil;
5237 XVECTOR (menu_bar_items_vector)->contents[i++] = Qnil;
5238 XVECTOR (menu_bar_items_vector)->contents[i++] = Qnil;
5239 menu_bar_items_index = i;
5241 Vinhibit_quit = oquit;
5242 UNGCPRO;
5243 return menu_bar_items_vector;
5246 /* Scan one map KEYMAP, accumulating any menu items it defines
5247 in menu_bar_items_vector. */
5249 static void
5250 menu_bar_one_keymap (keymap)
5251 Lisp_Object keymap;
5253 Lisp_Object tail, item, key, binding, item_string, table;
5255 /* Loop over all keymap entries that have menu strings. */
5256 for (tail = keymap; CONSP (tail); tail = XCONS (tail)->cdr)
5258 item = XCONS (tail)->car;
5259 if (CONSP (item))
5261 key = XCONS (item)->car;
5262 binding = XCONS (item)->cdr;
5263 if (CONSP (binding))
5265 item_string = XCONS (binding)->car;
5266 if (STRINGP (item_string))
5267 menu_bar_item (key, item_string, Fcdr (binding));
5269 else if (EQ (binding, Qundefined))
5270 menu_bar_item (key, Qnil, binding);
5272 else if (VECTORP (item))
5274 /* Loop over the char values represented in the vector. */
5275 int len = XVECTOR (item)->size;
5276 int c;
5277 for (c = 0; c < len; c++)
5279 Lisp_Object character;
5280 XSETFASTINT (character, c);
5281 binding = XVECTOR (item)->contents[c];
5282 if (CONSP (binding))
5284 item_string = XCONS (binding)->car;
5285 if (STRINGP (item_string))
5286 menu_bar_item (key, item_string, Fcdr (binding));
5288 else if (EQ (binding, Qundefined))
5289 menu_bar_item (key, Qnil, binding);
5295 /* This is used as the handler when calling internal_condition_case_1. */
5297 static Lisp_Object
5298 menu_bar_item_1 (arg)
5299 Lisp_Object arg;
5301 return Qnil;
5304 /* Add one item to menu_bar_items_vector, for KEY, ITEM_STRING and DEF.
5305 If there's already an item for KEY, add this DEF to it. */
5307 static void
5308 menu_bar_item (key, item_string, def)
5309 Lisp_Object key, item_string, def;
5311 Lisp_Object tem;
5312 Lisp_Object enabled;
5313 int i;
5315 /* Skip menu-bar equiv keys data. */
5316 if (CONSP (def) && CONSP (XCONS (def)->car))
5317 def = XCONS (def)->cdr;
5319 if (EQ (def, Qundefined))
5321 /* If a map has an explicit `undefined' as definition,
5322 discard any previously made menu bar item. */
5324 for (i = 0; i < menu_bar_items_index; i += 4)
5325 if (EQ (key, XVECTOR (menu_bar_items_vector)->contents[i]))
5327 if (menu_bar_items_index > i + 4)
5328 bcopy (&XVECTOR (menu_bar_items_vector)->contents[i + 4],
5329 &XVECTOR (menu_bar_items_vector)->contents[i],
5330 (menu_bar_items_index - i - 4) * sizeof (Lisp_Object));
5331 menu_bar_items_index -= 4;
5332 return;
5335 /* If there's no definition for this key yet,
5336 just ignore `undefined'. */
5337 return;
5340 /* See if this entry is enabled. */
5341 enabled = Qt;
5343 if (SYMBOLP (def))
5345 /* No property, or nil, means enable.
5346 Otherwise, enable if value is not nil. */
5347 tem = Fget (def, Qmenu_enable);
5348 if (!NILP (tem))
5349 /* (condition-case nil (eval tem)
5350 (error nil)) */
5351 enabled = internal_condition_case_1 (Feval, tem, Qerror,
5352 menu_bar_item_1);
5355 /* Ignore this item if it's not enabled. */
5356 if (NILP (enabled))
5357 return;
5359 /* Find any existing item for this KEY. */
5360 for (i = 0; i < menu_bar_items_index; i += 4)
5361 if (EQ (key, XVECTOR (menu_bar_items_vector)->contents[i]))
5362 break;
5364 /* If we did not find this KEY, add it at the end. */
5365 if (i == menu_bar_items_index)
5367 /* If vector is too small, get a bigger one. */
5368 if (i + 4 > XVECTOR (menu_bar_items_vector)->size)
5370 Lisp_Object tem;
5371 int newsize = 2 * i;
5372 tem = Fmake_vector (make_number (2 * i), Qnil);
5373 bcopy (XVECTOR (menu_bar_items_vector)->contents,
5374 XVECTOR (tem)->contents, i * sizeof (Lisp_Object));
5375 menu_bar_items_vector = tem;
5377 /* Add this item. */
5378 XVECTOR (menu_bar_items_vector)->contents[i++] = key;
5379 XVECTOR (menu_bar_items_vector)->contents[i++] = item_string;
5380 XVECTOR (menu_bar_items_vector)->contents[i++] = Fcons (def, Qnil);
5381 XVECTOR (menu_bar_items_vector)->contents[i++] = make_number (0);
5382 menu_bar_items_index = i;
5384 /* We did find an item for this KEY. Add DEF to its list of maps. */
5385 else
5387 Lisp_Object old;
5388 old = XVECTOR (menu_bar_items_vector)->contents[i + 2];
5389 XVECTOR (menu_bar_items_vector)->contents[i + 2] = Fcons (def, old);
5393 /* Read a character using menus based on maps in the array MAPS.
5394 NMAPS is the length of MAPS. Return nil if there are no menus in the maps.
5395 Return t if we displayed a menu but the user rejected it.
5397 PREV_EVENT is the previous input event, or nil if we are reading
5398 the first event of a key sequence.
5400 If USED_MOUSE_MENU is non-null, then we set *USED_MOUSE_MENU to 1
5401 if we used a mouse menu to read the input, or zero otherwise. If
5402 USED_MOUSE_MENU is null, we don't dereference it.
5404 The prompting is done based on the prompt-string of the map
5405 and the strings associated with various map elements.
5407 This can be done with X menus or with menus put in the minibuf.
5408 These are done in different ways, depending on how the input will be read.
5409 Menus using X are done after auto-saving in read-char, getting the input
5410 event from Fx_popup_menu; menus using the minibuf use read_char recursively
5411 and do auto-saving in the inner call of read_char. */
5413 static Lisp_Object
5414 read_char_x_menu_prompt (nmaps, maps, prev_event, used_mouse_menu)
5415 int nmaps;
5416 Lisp_Object *maps;
5417 Lisp_Object prev_event;
5418 int *used_mouse_menu;
5420 int mapno;
5421 register Lisp_Object name;
5422 Lisp_Object rest, vector;
5424 if (used_mouse_menu)
5425 *used_mouse_menu = 0;
5427 /* Use local over global Menu maps */
5429 if (! menu_prompting)
5430 return Qnil;
5432 /* Optionally disregard all but the global map. */
5433 if (inhibit_local_menu_bar_menus)
5435 maps += (nmaps - 1);
5436 nmaps = 1;
5439 /* Get the menu name from the first map that has one (a prompt string). */
5440 for (mapno = 0; mapno < nmaps; mapno++)
5442 name = map_prompt (maps[mapno]);
5443 if (!NILP (name))
5444 break;
5447 /* If we don't have any menus, just read a character normally. */
5448 if (mapno >= nmaps)
5449 return Qnil;
5451 #ifdef HAVE_MENUS
5452 /* If we got to this point via a mouse click,
5453 use a real menu for mouse selection. */
5454 if (EVENT_HAS_PARAMETERS (prev_event)
5455 && !EQ (XCONS (prev_event)->car, Qmenu_bar))
5457 /* Display the menu and get the selection. */
5458 Lisp_Object *realmaps
5459 = (Lisp_Object *) alloca (nmaps * sizeof (Lisp_Object));
5460 Lisp_Object value;
5461 int nmaps1 = 0;
5463 /* Use the maps that are not nil. */
5464 for (mapno = 0; mapno < nmaps; mapno++)
5465 if (!NILP (maps[mapno]))
5466 realmaps[nmaps1++] = maps[mapno];
5468 value = Fx_popup_menu (prev_event, Flist (nmaps1, realmaps));
5469 if (CONSP (value))
5471 Lisp_Object tem;
5473 record_menu_key (XCONS (value)->car);
5475 /* If we got multiple events, unread all but
5476 the first.
5477 There is no way to prevent those unread events
5478 from showing up later in last_nonmenu_event.
5479 So turn symbol and integer events into lists,
5480 to indicate that they came from a mouse menu,
5481 so that when present in last_nonmenu_event
5482 they won't confuse things. */
5483 for (tem = XCONS (value)->cdr; !NILP (tem);
5484 tem = XCONS (tem)->cdr)
5486 record_menu_key (XCONS (tem)->car);
5487 if (SYMBOLP (XCONS (tem)->car)
5488 || INTEGERP (XCONS (tem)->car))
5489 XCONS (tem)->car
5490 = Fcons (XCONS (tem)->car, Qnil);
5493 /* If we got more than one event, put all but the first
5494 onto this list to be read later.
5495 Return just the first event now. */
5496 Vunread_command_events
5497 = nconc2 (XCONS (value)->cdr, Vunread_command_events);
5498 value = XCONS (value)->car;
5500 else if (NILP (value))
5501 value = Qt;
5502 if (used_mouse_menu)
5503 *used_mouse_menu = 1;
5504 return value;
5506 #endif /* HAVE_MENUS */
5507 return Qnil ;
5510 /* Buffer in use so far for the minibuf prompts for menu keymaps.
5511 We make this bigger when necessary, and never free it. */
5512 static char *read_char_minibuf_menu_text;
5513 /* Size of that buffer. */
5514 static int read_char_minibuf_menu_width;
5516 static Lisp_Object
5517 read_char_minibuf_menu_prompt (commandflag, nmaps, maps)
5518 int commandflag ;
5519 int nmaps;
5520 Lisp_Object *maps;
5522 int mapno;
5523 register Lisp_Object name;
5524 int nlength;
5525 int width = FRAME_WIDTH (selected_frame) - 4;
5526 int idx = -1;
5527 int nobindings = 1;
5528 Lisp_Object rest, vector;
5529 char *menu;
5531 if (! menu_prompting)
5532 return Qnil;
5534 /* Make sure we have a big enough buffer for the menu text. */
5535 if (read_char_minibuf_menu_text == 0)
5537 read_char_minibuf_menu_width = width + 4;
5538 read_char_minibuf_menu_text = (char *) xmalloc (width + 4);
5540 else if (width + 4 > read_char_minibuf_menu_width)
5542 read_char_minibuf_menu_width = width + 4;
5543 read_char_minibuf_menu_text
5544 = (char *) xrealloc (read_char_minibuf_menu_text, width + 4);
5546 menu = read_char_minibuf_menu_text;
5548 /* Get the menu name from the first map that has one (a prompt string). */
5549 for (mapno = 0; mapno < nmaps; mapno++)
5551 name = map_prompt (maps[mapno]);
5552 if (!NILP (name))
5553 break;
5556 /* If we don't have any menus, just read a character normally. */
5557 if (mapno >= nmaps)
5558 return Qnil;
5560 /* Prompt string always starts with map's prompt, and a space. */
5561 strcpy (menu, XSTRING (name)->data);
5562 nlength = XSTRING (name)->size;
5563 menu[nlength++] = ':';
5564 menu[nlength++] = ' ';
5565 menu[nlength] = 0;
5567 /* Start prompting at start of first map. */
5568 mapno = 0;
5569 rest = maps[mapno];
5571 /* Present the documented bindings, a line at a time. */
5572 while (1)
5574 int notfirst = 0;
5575 int i = nlength;
5576 Lisp_Object obj;
5577 int ch;
5578 Lisp_Object orig_defn_macro;
5580 /* Loop over elements of map. */
5581 while (i < width)
5583 Lisp_Object s, elt;
5585 /* If reached end of map, start at beginning of next map. */
5586 if (NILP (rest))
5588 mapno++;
5589 /* At end of last map, wrap around to first map if just starting,
5590 or end this line if already have something on it. */
5591 if (mapno == nmaps)
5593 mapno = 0;
5594 if (notfirst || nobindings) break;
5596 rest = maps[mapno];
5599 /* Look at the next element of the map. */
5600 if (idx >= 0)
5601 elt = XVECTOR (vector)->contents[idx];
5602 else
5603 elt = Fcar_safe (rest);
5605 if (idx < 0 && VECTORP (elt))
5607 /* If we found a dense table in the keymap,
5608 advanced past it, but start scanning its contents. */
5609 rest = Fcdr_safe (rest);
5610 vector = elt;
5611 idx = 0;
5613 else
5615 /* An ordinary element. */
5616 Lisp_Object event;
5618 if (idx < 0)
5620 s = Fcar_safe (Fcdr_safe (elt)); /* alist */
5621 event = Fcar_safe (elt);
5623 else
5625 s = Fcar_safe (elt); /* vector */
5626 XSETINT (event, idx);
5629 /* Ignore the element if it has no prompt string. */
5630 if (STRINGP (s) && INTEGERP (event))
5632 /* 1 if the char to type matches the string. */
5633 int char_matches;
5634 Lisp_Object upcased_event, downcased_event;
5635 Lisp_Object desc;
5637 upcased_event = Fupcase (event);
5638 downcased_event = Fdowncase (event);
5639 char_matches = (XINT (upcased_event) == XSTRING (s)->data[0]
5640 || XINT (downcased_event) == XSTRING (s)->data[0]);
5641 if (! char_matches)
5642 desc = Fsingle_key_description (event);
5644 /* If we have room for the prompt string, add it to this line.
5645 If this is the first on the line, always add it. */
5646 if ((XSTRING (s)->size + i + 2
5647 + (char_matches ? 0 : XSTRING (desc)->size + 3))
5648 < width
5649 || !notfirst)
5651 int thiswidth;
5653 /* Punctuate between strings. */
5654 if (notfirst)
5656 strcpy (menu + i, ", ");
5657 i += 2;
5659 notfirst = 1;
5660 nobindings = 0 ;
5662 /* If the char to type doesn't match the string's
5663 first char, explicitly show what char to type. */
5664 if (! char_matches)
5666 /* Add as much of string as fits. */
5667 thiswidth = XSTRING (desc)->size;
5668 if (thiswidth + i > width)
5669 thiswidth = width - i;
5670 bcopy (XSTRING (desc)->data, menu + i, thiswidth);
5671 i += thiswidth;
5672 strcpy (menu + i, " = ");
5673 i += 3;
5676 /* Add as much of string as fits. */
5677 thiswidth = XSTRING (s)->size;
5678 if (thiswidth + i > width)
5679 thiswidth = width - i;
5680 bcopy (XSTRING (s)->data, menu + i, thiswidth);
5681 i += thiswidth;
5682 menu[i] = 0;
5684 else
5686 /* If this element does not fit, end the line now,
5687 and save the element for the next line. */
5688 strcpy (menu + i, "...");
5689 break;
5693 /* Move past this element. */
5694 if (idx >= 0 && idx + 1 >= XVECTOR (vector)->size)
5695 /* Handle reaching end of dense table. */
5696 idx = -1;
5697 if (idx >= 0)
5698 idx++;
5699 else
5700 rest = Fcdr_safe (rest);
5704 /* Prompt with that and read response. */
5705 message1 (menu);
5707 /* Make believe its not a keyboard macro in case the help char
5708 is pressed. Help characters are not recorded because menu prompting
5709 is not used on replay.
5711 orig_defn_macro = current_kboard->defining_kbd_macro;
5712 current_kboard->defining_kbd_macro = Qnil;
5714 obj = read_char (commandflag, 0, 0, Qnil, 0);
5715 while (BUFFERP (obj));
5716 current_kboard->defining_kbd_macro = orig_defn_macro;
5718 if (!INTEGERP (obj))
5719 return obj;
5720 else
5721 ch = XINT (obj);
5723 if (! EQ (obj, menu_prompt_more_char)
5724 && (!INTEGERP (menu_prompt_more_char)
5725 || ! EQ (obj, make_number (Ctl (XINT (menu_prompt_more_char))))))
5727 if (!NILP (current_kboard->defining_kbd_macro))
5728 store_kbd_macro_char (obj);
5729 return obj;
5731 /* Help char - go round again */
5735 /* Reading key sequences. */
5737 /* Follow KEY in the maps in CURRENT[0..NMAPS-1], placing its bindings
5738 in DEFS[0..NMAPS-1]. Set NEXT[i] to DEFS[i] if DEFS[i] is a
5739 keymap, or nil otherwise. Return the index of the first keymap in
5740 which KEY has any binding, or NMAPS if no map has a binding.
5742 If KEY is a meta ASCII character, treat it like meta-prefix-char
5743 followed by the corresponding non-meta character. Keymaps in
5744 CURRENT with non-prefix bindings for meta-prefix-char become nil in
5745 NEXT.
5747 If KEY has no bindings in any of the CURRENT maps, NEXT is left
5748 unmodified.
5750 NEXT may be the same array as CURRENT. */
5752 static int
5753 follow_key (key, nmaps, current, defs, next)
5754 Lisp_Object key;
5755 Lisp_Object *current, *defs, *next;
5756 int nmaps;
5758 int i, first_binding;
5759 int did_meta = 0;
5761 /* If KEY is a meta ASCII character, treat it like meta-prefix-char
5762 followed by the corresponding non-meta character.
5763 Put the results into DEFS, since we are going to alter that anyway.
5764 Do not alter CURRENT or NEXT. */
5765 if (INTEGERP (key) && (XINT (key) & CHAR_META))
5767 for (i = 0; i < nmaps; i++)
5768 if (! NILP (current[i]))
5770 Lisp_Object def;
5771 def = get_keyelt (access_keymap (current[i],
5772 meta_prefix_char, 1, 0));
5774 /* Note that since we pass the resulting bindings through
5775 get_keymap_1, non-prefix bindings for meta-prefix-char
5776 disappear. */
5777 defs[i] = get_keymap_1 (def, 0, 1);
5779 else
5780 defs[i] = Qnil;
5782 did_meta = 1;
5783 XSETINT (key, XFASTINT (key) & ~CHAR_META);
5786 first_binding = nmaps;
5787 for (i = nmaps - 1; i >= 0; i--)
5789 if (! NILP (current[i]))
5791 Lisp_Object map;
5792 if (did_meta)
5793 map = defs[i];
5794 else
5795 map = current[i];
5797 defs[i] = get_keyelt (access_keymap (map, key, 1, 0));
5798 if (! NILP (defs[i]))
5799 first_binding = i;
5801 else
5802 defs[i] = Qnil;
5805 /* Given the set of bindings we've found, produce the next set of maps. */
5806 if (first_binding < nmaps)
5807 for (i = 0; i < nmaps; i++)
5808 next[i] = NILP (defs[i]) ? Qnil : get_keymap_1 (defs[i], 0, 1);
5810 return first_binding;
5813 /* Read a sequence of keys that ends with a non prefix character,
5814 storing it in KEYBUF, a buffer of size BUFSIZE.
5815 Prompt with PROMPT.
5816 Return the length of the key sequence stored.
5817 Return -1 if the user rejected a command menu.
5819 Echo starting immediately unless `prompt' is 0.
5821 Where a key sequence ends depends on the currently active keymaps.
5822 These include any minor mode keymaps active in the current buffer,
5823 the current buffer's local map, and the global map.
5825 If a key sequence has no other bindings, we check Vfunction_key_map
5826 to see if some trailing subsequence might be the beginning of a
5827 function key's sequence. If so, we try to read the whole function
5828 key, and substitute its symbolic name into the key sequence.
5830 We ignore unbound `down-' mouse clicks. We turn unbound `drag-' and
5831 `double-' events into similar click events, if that would make them
5832 bound. We try to turn `triple-' events first into `double-' events,
5833 then into clicks.
5835 If we get a mouse click in a mode line, vertical divider, or other
5836 non-text area, we treat the click as if it were prefixed by the
5837 symbol denoting that area - `mode-line', `vertical-line', or
5838 whatever.
5840 If the sequence starts with a mouse click, we read the key sequence
5841 with respect to the buffer clicked on, not the current buffer.
5843 If the user switches frames in the midst of a key sequence, we put
5844 off the switch-frame event until later; the next call to
5845 read_char will return it.
5847 If FIX_CURRENT_BUFFER is nonzero, we restore current_buffer
5848 from the selected window's buffer. */
5850 static int
5851 read_key_sequence (keybuf, bufsize, prompt, dont_downcase_last,
5852 can_return_switch_frame, fix_current_buffer)
5853 Lisp_Object *keybuf;
5854 int bufsize;
5855 Lisp_Object prompt;
5856 int dont_downcase_last;
5857 int can_return_switch_frame;
5858 int fix_current_buffer;
5860 int count = specpdl_ptr - specpdl;
5862 /* How many keys there are in the current key sequence. */
5863 int t;
5865 /* The length of the echo buffer when we started reading, and
5866 the length of this_command_keys when we started reading. */
5867 int echo_start;
5868 int keys_start;
5870 /* The number of keymaps we're scanning right now, and the number of
5871 keymaps we have allocated space for. */
5872 int nmaps;
5873 int nmaps_allocated = 0;
5875 /* defs[0..nmaps-1] are the definitions of KEYBUF[0..t-1] in
5876 the current keymaps. */
5877 Lisp_Object *defs;
5879 /* submaps[0..nmaps-1] are the prefix definitions of KEYBUF[0..t-1]
5880 in the current keymaps, or nil where it is not a prefix. */
5881 Lisp_Object *submaps;
5883 /* The local map to start out with at start of key sequence. */
5884 Lisp_Object orig_local_map;
5886 /* 1 if we have already considered switching to the local-map property
5887 of the place where a mouse click occurred. */
5888 int localized_local_map = 0;
5890 /* The index in defs[] of the first keymap that has a binding for
5891 this key sequence. In other words, the lowest i such that
5892 defs[i] is non-nil. */
5893 int first_binding;
5895 /* If t < mock_input, then KEYBUF[t] should be read as the next
5896 input key.
5898 We use this to recover after recognizing a function key. Once we
5899 realize that a suffix of the current key sequence is actually a
5900 function key's escape sequence, we replace the suffix with the
5901 function key's binding from Vfunction_key_map. Now keybuf
5902 contains a new and different key sequence, so the echo area,
5903 this_command_keys, and the submaps and defs arrays are wrong. In
5904 this situation, we set mock_input to t, set t to 0, and jump to
5905 restart_sequence; the loop will read keys from keybuf up until
5906 mock_input, thus rebuilding the state; and then it will resume
5907 reading characters from the keyboard. */
5908 int mock_input = 0;
5910 /* If the sequence is unbound in submaps[], then
5911 keybuf[fkey_start..fkey_end-1] is a prefix in Vfunction_key_map,
5912 and fkey_map is its binding.
5914 These might be > t, indicating that all function key scanning
5915 should hold off until t reaches them. We do this when we've just
5916 recognized a function key, to avoid searching for the function
5917 key's again in Vfunction_key_map. */
5918 int fkey_start = 0, fkey_end = 0;
5919 Lisp_Object fkey_map;
5921 /* Likewise, for key_translation_map. */
5922 int keytran_start = 0, keytran_end = 0;
5923 Lisp_Object keytran_map;
5925 /* If we receive a ``switch-frame'' event in the middle of a key sequence,
5926 we put it off for later. While we're reading, we keep the event here. */
5927 Lisp_Object delayed_switch_frame;
5929 /* See the comment below... */
5930 #if defined (GOBBLE_FIRST_EVENT)
5931 Lisp_Object first_event;
5932 #endif
5934 Lisp_Object original_uppercase;
5935 int original_uppercase_position = -1;
5937 /* Gets around Microsoft compiler limitations. */
5938 int dummyflag = 0;
5940 struct buffer *starting_buffer;
5942 /* Nonzero if we seem to have got the beginning of a binding
5943 in function_key_map. */
5944 int function_key_possible = 0;
5945 int key_translation_possible = 0;
5947 /* Save the status of key translation before each step,
5948 so that we can restore this after downcasing. */
5949 Lisp_Object prev_fkey_map;
5950 int prev_fkey_start;
5951 int prev_fkey_end;
5953 Lisp_Object prev_keytran_map;
5954 int prev_keytran_start;
5955 int prev_keytran_end;
5957 int junk;
5959 last_nonmenu_event = Qnil;
5961 delayed_switch_frame = Qnil;
5962 fkey_map = Vfunction_key_map;
5963 keytran_map = Vkey_translation_map;
5965 /* If there is no function-key-map, turn off function key scanning. */
5966 if (NILP (Fkeymapp (Vfunction_key_map)))
5967 fkey_start = fkey_end = bufsize + 1;
5969 /* If there is no key-translation-map, turn off scanning. */
5970 if (NILP (Fkeymapp (Vkey_translation_map)))
5971 keytran_start = keytran_end = bufsize + 1;
5973 if (INTERACTIVE)
5975 if (!NILP (prompt))
5976 echo_prompt (XSTRING (prompt)->data);
5977 else if (cursor_in_echo_area && echo_keystrokes)
5978 /* This doesn't put in a dash if the echo buffer is empty, so
5979 you don't always see a dash hanging out in the minibuffer. */
5980 echo_dash ();
5983 /* Record the initial state of the echo area and this_command_keys;
5984 we will need to restore them if we replay a key sequence. */
5985 if (INTERACTIVE)
5986 echo_start = echo_length ();
5987 keys_start = this_command_key_count;
5988 this_single_command_key_start = keys_start;
5990 #if defined (GOBBLE_FIRST_EVENT)
5991 /* This doesn't quite work, because some of the things that read_char
5992 does cannot safely be bypassed. It seems too risky to try to make
5993 this work right. */
5995 /* Read the first char of the sequence specially, before setting
5996 up any keymaps, in case a filter runs and switches buffers on us. */
5997 first_event = read_char (NILP (prompt), 0, submaps, last_nonmenu_event,
5998 &junk);
5999 #endif /* GOBBLE_FIRST_EVENT */
6001 orig_local_map = get_local_map (PT, current_buffer);
6003 /* We jump here when the key sequence has been thoroughly changed, and
6004 we need to rescan it starting from the beginning. When we jump here,
6005 keybuf[0..mock_input] holds the sequence we should reread. */
6006 replay_sequence:
6008 starting_buffer = current_buffer;
6009 function_key_possible = 0;
6010 key_translation_possible = 0;
6012 /* Build our list of keymaps.
6013 If we recognize a function key and replace its escape sequence in
6014 keybuf with its symbol, or if the sequence starts with a mouse
6015 click and we need to switch buffers, we jump back here to rebuild
6016 the initial keymaps from the current buffer. */
6018 Lisp_Object *maps;
6020 if (!NILP (current_kboard->Voverriding_terminal_local_map)
6021 || !NILP (Voverriding_local_map))
6023 if (3 > nmaps_allocated)
6025 submaps = (Lisp_Object *) alloca (3 * sizeof (submaps[0]));
6026 defs = (Lisp_Object *) alloca (3 * sizeof (defs[0]));
6027 nmaps_allocated = 3;
6029 nmaps = 0;
6030 if (!NILP (current_kboard->Voverriding_terminal_local_map))
6031 submaps[nmaps++] = current_kboard->Voverriding_terminal_local_map;
6032 if (!NILP (Voverriding_local_map))
6033 submaps[nmaps++] = Voverriding_local_map;
6035 else
6037 nmaps = current_minor_maps (0, &maps);
6038 if (nmaps + 2 > nmaps_allocated)
6040 submaps = (Lisp_Object *) alloca ((nmaps+2) * sizeof (submaps[0]));
6041 defs = (Lisp_Object *) alloca ((nmaps+2) * sizeof (defs[0]));
6042 nmaps_allocated = nmaps + 2;
6044 bcopy (maps, submaps, nmaps * sizeof (submaps[0]));
6045 #ifdef USE_TEXT_PROPERTIES
6046 submaps[nmaps++] = orig_local_map;
6047 #else
6048 submaps[nmaps++] = current_buffer->keymap;
6049 #endif
6051 submaps[nmaps++] = current_global_map;
6054 /* Find an accurate initial value for first_binding. */
6055 for (first_binding = 0; first_binding < nmaps; first_binding++)
6056 if (! NILP (submaps[first_binding]))
6057 break;
6059 /* Start from the beginning in keybuf. */
6060 t = 0;
6062 /* These are no-ops the first time through, but if we restart, they
6063 revert the echo area and this_command_keys to their original state. */
6064 this_command_key_count = keys_start;
6065 if (INTERACTIVE && t < mock_input)
6066 echo_truncate (echo_start);
6068 /* If the best binding for the current key sequence is a keymap, or
6069 we may be looking at a function key's escape sequence, keep on
6070 reading. */
6071 while ((first_binding < nmaps && ! NILP (submaps[first_binding]))
6072 || (first_binding >= nmaps
6073 && fkey_start < t
6074 /* mock input is never part of a function key's sequence. */
6075 && mock_input <= fkey_start)
6076 || (first_binding >= nmaps
6077 && keytran_start < t && key_translation_possible)
6078 /* Don't return in the middle of a possible function key sequence,
6079 if the only bindings we found were via case conversion.
6080 Thus, if ESC O a has a function-key-map translation
6081 and ESC o has a binding, don't return after ESC O,
6082 so that we can translate ESC O plus the next character. */
6085 Lisp_Object key;
6086 int used_mouse_menu = 0;
6088 /* Where the last real key started. If we need to throw away a
6089 key that has expanded into more than one element of keybuf
6090 (say, a mouse click on the mode line which is being treated
6091 as [mode-line (mouse-...)], then we backtrack to this point
6092 of keybuf. */
6093 int last_real_key_start;
6095 /* These variables are analogous to echo_start and keys_start;
6096 while those allow us to restart the entire key sequence,
6097 echo_local_start and keys_local_start allow us to throw away
6098 just one key. */
6099 int echo_local_start, keys_local_start, local_first_binding;
6101 if (t >= bufsize)
6102 error ("Key sequence too long");
6104 if (INTERACTIVE)
6105 echo_local_start = echo_length ();
6106 keys_local_start = this_command_key_count;
6107 local_first_binding = first_binding;
6109 replay_key:
6110 /* These are no-ops, unless we throw away a keystroke below and
6111 jumped back up to replay_key; in that case, these restore the
6112 variables to their original state, allowing us to replay the
6113 loop. */
6114 if (INTERACTIVE && t < mock_input)
6115 echo_truncate (echo_local_start);
6116 this_command_key_count = keys_local_start;
6117 first_binding = local_first_binding;
6119 /* By default, assume each event is "real". */
6120 last_real_key_start = t;
6122 /* Does mock_input indicate that we are re-reading a key sequence? */
6123 if (t < mock_input)
6125 key = keybuf[t];
6126 add_command_key (key);
6127 if (echo_keystrokes)
6128 echo_char (key);
6131 /* If not, we should actually read a character. */
6132 else
6134 struct buffer *buf = current_buffer;
6137 #ifdef MULTI_KBOARD
6138 KBOARD *interrupted_kboard = current_kboard;
6139 struct frame *interrupted_frame = selected_frame;
6140 if (setjmp (wrong_kboard_jmpbuf))
6142 if (!NILP (delayed_switch_frame))
6144 interrupted_kboard->kbd_queue
6145 = Fcons (delayed_switch_frame,
6146 interrupted_kboard->kbd_queue);
6147 delayed_switch_frame = Qnil;
6149 while (t > 0)
6150 interrupted_kboard->kbd_queue
6151 = Fcons (keybuf[--t], interrupted_kboard->kbd_queue);
6153 /* If the side queue is non-empty, ensure it begins with a
6154 switch-frame, so we'll replay it in the right context. */
6155 if (CONSP (interrupted_kboard->kbd_queue)
6156 && (key = XCONS (interrupted_kboard->kbd_queue)->car,
6157 !(EVENT_HAS_PARAMETERS (key)
6158 && EQ (EVENT_HEAD_KIND (EVENT_HEAD (key)),
6159 Qswitch_frame))))
6161 Lisp_Object frame;
6162 XSETFRAME (frame, interrupted_frame);
6163 interrupted_kboard->kbd_queue
6164 = Fcons (make_lispy_switch_frame (frame),
6165 interrupted_kboard->kbd_queue);
6167 mock_input = 0;
6168 orig_local_map = get_local_map (PT, current_buffer);
6169 goto replay_sequence;
6171 #endif
6172 key = read_char (NILP (prompt), nmaps, submaps, last_nonmenu_event,
6173 &used_mouse_menu);
6176 /* read_char returns t when it shows a menu and the user rejects it.
6177 Just return -1. */
6178 if (EQ (key, Qt))
6179 return -1;
6181 /* read_char returns -1 at the end of a macro.
6182 Emacs 18 handles this by returning immediately with a
6183 zero, so that's what we'll do. */
6184 if (INTEGERP (key) && XINT (key) == -1)
6186 t = 0;
6187 /* The Microsoft C compiler can't handle the goto that
6188 would go here. */
6189 dummyflag = 1;
6190 break;
6193 /* If the current buffer has been changed from under us, the
6194 keymap may have changed, so replay the sequence. */
6195 if (BUFFERP (key))
6197 mock_input = t;
6198 /* Reset the current buffer from the selected window
6199 in case something changed the former and not the latter.
6200 This is to be more consistent with the behavior
6201 of the command_loop_1. */
6202 if (fix_current_buffer)
6203 if (XBUFFER (XWINDOW (selected_window)->buffer) != current_buffer)
6204 Fset_buffer (XWINDOW (selected_window)->buffer);
6206 orig_local_map = get_local_map (PT, current_buffer);
6207 goto replay_sequence;
6210 /* If we have a quit that was typed in another frame, and
6211 quit_throw_to_read_char switched buffers,
6212 replay to get the right keymap. */
6213 if (XINT (key) == quit_char && current_buffer != starting_buffer)
6215 keybuf[t++] = key;
6216 mock_input = t;
6217 Vquit_flag = Qnil;
6218 orig_local_map = get_local_map (PT, current_buffer);
6219 goto replay_sequence;
6222 Vquit_flag = Qnil;
6225 /* Clicks in non-text areas get prefixed by the symbol
6226 in their CHAR-ADDRESS field. For example, a click on
6227 the mode line is prefixed by the symbol `mode-line'.
6229 Furthermore, key sequences beginning with mouse clicks
6230 are read using the keymaps of the buffer clicked on, not
6231 the current buffer. So we may have to switch the buffer
6232 here.
6234 When we turn one event into two events, we must make sure
6235 that neither of the two looks like the original--so that,
6236 if we replay the events, they won't be expanded again.
6237 If not for this, such reexpansion could happen either here
6238 or when user programs play with this-command-keys. */
6239 if (EVENT_HAS_PARAMETERS (key))
6241 Lisp_Object kind;
6243 kind = EVENT_HEAD_KIND (EVENT_HEAD (key));
6244 if (EQ (kind, Qmouse_click))
6246 Lisp_Object window, posn;
6248 window = POSN_WINDOW (EVENT_START (key));
6249 posn = POSN_BUFFER_POSN (EVENT_START (key));
6250 if (CONSP (posn))
6252 /* We're looking at the second event of a
6253 sequence which we expanded before. Set
6254 last_real_key_start appropriately. */
6255 if (t > 0)
6256 last_real_key_start = t - 1;
6259 /* Key sequences beginning with mouse clicks are
6260 read using the keymaps in the buffer clicked on,
6261 not the current buffer. If we're at the
6262 beginning of a key sequence, switch buffers. */
6263 if (last_real_key_start == 0
6264 && WINDOWP (window)
6265 && BUFFERP (XWINDOW (window)->buffer)
6266 && XBUFFER (XWINDOW (window)->buffer) != current_buffer)
6268 keybuf[t] = key;
6269 mock_input = t + 1;
6271 /* Arrange to go back to the original buffer once we're
6272 done reading the key sequence. Note that we can't
6273 use save_excursion_{save,restore} here, because they
6274 save point as well as the current buffer; we don't
6275 want to save point, because redisplay may change it,
6276 to accommodate a Fset_window_start or something. We
6277 don't want to do this at the top of the function,
6278 because we may get input from a subprocess which
6279 wants to change the selected window and stuff (say,
6280 emacsclient). */
6281 record_unwind_protect (Fset_buffer, Fcurrent_buffer ());
6283 set_buffer_internal (XBUFFER (XWINDOW (window)->buffer));
6284 orig_local_map = get_local_map (PT, current_buffer);
6285 goto replay_sequence;
6287 /* For a mouse click, get the local text-property keymap
6288 of the place clicked on, rather than point. */
6289 if (last_real_key_start == 0 && CONSP (XCONS (key)->cdr)
6290 && ! localized_local_map)
6292 Lisp_Object map_here, start, pos;
6294 localized_local_map = 1;
6295 start = EVENT_START (key);
6296 if (CONSP (start) && CONSP (XCONS (start)->cdr))
6298 pos = POSN_BUFFER_POSN (start);
6299 if (INTEGERP (pos)
6300 && XINT (pos) >= BEG && XINT (pos) <= Z)
6302 map_here = get_local_map (XINT (pos), current_buffer);
6303 if (!EQ (map_here, orig_local_map))
6305 orig_local_map = map_here;
6306 keybuf[t] = key;
6307 mock_input = t + 1;
6309 goto replay_sequence;
6315 /* Expand mode-line and scroll-bar events into two events:
6316 use posn as a fake prefix key. */
6317 if (SYMBOLP (posn))
6319 if (t + 1 >= bufsize)
6320 error ("Key sequence too long");
6321 keybuf[t] = posn;
6322 keybuf[t+1] = key;
6323 mock_input = t + 2;
6325 /* Zap the position in key, so we know that we've
6326 expanded it, and don't try to do so again. */
6327 POSN_BUFFER_POSN (EVENT_START (key))
6328 = Fcons (posn, Qnil);
6329 goto replay_key;
6332 else if (EQ (kind, Qswitch_frame))
6334 /* If we're at the beginning of a key sequence, and the caller
6335 says it's okay, go ahead and return this event. If we're
6336 in the midst of a key sequence, delay it until the end. */
6337 if (t > 0 || !can_return_switch_frame)
6339 delayed_switch_frame = key;
6340 goto replay_key;
6343 else if (CONSP (XCONS (key)->cdr)
6344 && CONSP (EVENT_START (key))
6345 && CONSP (XCONS (EVENT_START (key))->cdr))
6347 Lisp_Object posn;
6349 posn = POSN_BUFFER_POSN (EVENT_START (key));
6350 /* Handle menu-bar events:
6351 insert the dummy prefix event `menu-bar'. */
6352 if (EQ (posn, Qmenu_bar))
6354 if (t + 1 >= bufsize)
6355 error ("Key sequence too long");
6356 keybuf[t] = posn;
6357 keybuf[t+1] = key;
6359 /* Zap the position in key, so we know that we've
6360 expanded it, and don't try to do so again. */
6361 POSN_BUFFER_POSN (EVENT_START (key))
6362 = Fcons (posn, Qnil);
6364 mock_input = t + 2;
6365 goto replay_sequence;
6367 else if (CONSP (posn))
6369 /* We're looking at the second event of a
6370 sequence which we expanded before. Set
6371 last_real_key_start appropriately. */
6372 if (last_real_key_start == t && t > 0)
6373 last_real_key_start = t - 1;
6378 /* We have finally decided that KEY is something we might want
6379 to look up. */
6380 first_binding = (follow_key (key,
6381 nmaps - first_binding,
6382 submaps + first_binding,
6383 defs + first_binding,
6384 submaps + first_binding)
6385 + first_binding);
6387 /* If KEY wasn't bound, we'll try some fallbacks. */
6388 if (first_binding >= nmaps)
6390 Lisp_Object head;
6392 head = EVENT_HEAD (key);
6393 if (help_char_p (head) && t > 0)
6395 read_key_sequence_cmd = Vprefix_help_command;
6396 keybuf[t++] = key;
6397 last_nonmenu_event = key;
6398 /* The Microsoft C compiler can't handle the goto that
6399 would go here. */
6400 dummyflag = 1;
6401 break;
6404 if (SYMBOLP (head))
6406 Lisp_Object breakdown;
6407 int modifiers;
6409 breakdown = parse_modifiers (head);
6410 modifiers = XINT (XCONS (XCONS (breakdown)->cdr)->car);
6411 /* Attempt to reduce an unbound mouse event to a simpler
6412 event that is bound:
6413 Drags reduce to clicks.
6414 Double-clicks reduce to clicks.
6415 Triple-clicks reduce to double-clicks, then to clicks.
6416 Down-clicks are eliminated.
6417 Double-downs reduce to downs, then are eliminated.
6418 Triple-downs reduce to double-downs, then to downs,
6419 then are eliminated. */
6420 if (modifiers & (down_modifier | drag_modifier
6421 | double_modifier | triple_modifier))
6423 while (modifiers & (down_modifier | drag_modifier
6424 | double_modifier | triple_modifier))
6426 Lisp_Object new_head, new_click;
6427 if (modifiers & triple_modifier)
6428 modifiers ^= (double_modifier | triple_modifier);
6429 else if (modifiers & double_modifier)
6430 modifiers &= ~double_modifier;
6431 else if (modifiers & drag_modifier)
6432 modifiers &= ~drag_modifier;
6433 else
6435 /* Dispose of this `down' event by simply jumping
6436 back to replay_key, to get another event.
6438 Note that if this event came from mock input,
6439 then just jumping back to replay_key will just
6440 hand it to us again. So we have to wipe out any
6441 mock input.
6443 We could delete keybuf[t] and shift everything
6444 after that to the left by one spot, but we'd also
6445 have to fix up any variable that points into
6446 keybuf, and shifting isn't really necessary
6447 anyway.
6449 Adding prefixes for non-textual mouse clicks
6450 creates two characters of mock input, and both
6451 must be thrown away. If we're only looking at
6452 the prefix now, we can just jump back to
6453 replay_key. On the other hand, if we've already
6454 processed the prefix, and now the actual click
6455 itself is giving us trouble, then we've lost the
6456 state of the keymaps we want to backtrack to, and
6457 we need to replay the whole sequence to rebuild
6460 Beyond that, only function key expansion could
6461 create more than two keys, but that should never
6462 generate mouse events, so it's okay to zero
6463 mock_input in that case too.
6465 Isn't this just the most wonderful code ever? */
6466 if (t == last_real_key_start)
6468 mock_input = 0;
6469 goto replay_key;
6471 else
6473 mock_input = last_real_key_start;
6474 goto replay_sequence;
6478 new_head
6479 = apply_modifiers (modifiers, XCONS (breakdown)->car);
6480 new_click
6481 = Fcons (new_head, Fcons (EVENT_START (key), Qnil));
6483 /* Look for a binding for this new key. follow_key
6484 promises that it didn't munge submaps the
6485 last time we called it, since key was unbound. */
6486 first_binding
6487 = (follow_key (new_click,
6488 nmaps - local_first_binding,
6489 submaps + local_first_binding,
6490 defs + local_first_binding,
6491 submaps + local_first_binding)
6492 + local_first_binding);
6494 /* If that click is bound, go for it. */
6495 if (first_binding < nmaps)
6497 key = new_click;
6498 break;
6500 /* Otherwise, we'll leave key set to the drag event. */
6506 keybuf[t++] = key;
6507 /* Normally, last_nonmenu_event gets the previous key we read.
6508 But when a mouse popup menu is being used,
6509 we don't update last_nonmenu_event; it continues to hold the mouse
6510 event that preceded the first level of menu. */
6511 if (!used_mouse_menu)
6512 last_nonmenu_event = key;
6514 /* Record what part of this_command_keys is the current key sequence. */
6515 this_single_command_key_start = this_command_key_count - t;
6517 prev_fkey_map = fkey_map;
6518 prev_fkey_start = fkey_start;
6519 prev_fkey_end = fkey_end;
6521 prev_keytran_map = keytran_map;
6522 prev_keytran_start = keytran_start;
6523 prev_keytran_end = keytran_end;
6525 /* If the sequence is unbound, see if we can hang a function key
6526 off the end of it. We only want to scan real keyboard input
6527 for function key sequences, so if mock_input says that we're
6528 re-reading old events, don't examine it. */
6529 if (first_binding >= nmaps
6530 && t >= mock_input)
6532 Lisp_Object fkey_next;
6534 /* Continue scan from fkey_end until we find a bound suffix.
6535 If we fail, increment fkey_start
6536 and start fkey_end from there. */
6537 while (fkey_end < t)
6539 Lisp_Object key;
6541 key = keybuf[fkey_end++];
6542 /* Look up meta-characters by prefixing them
6543 with meta_prefix_char. I hate this. */
6544 if (INTEGERP (key) && XINT (key) & meta_modifier)
6546 fkey_next
6547 = get_keymap_1
6548 (get_keyelt
6549 (access_keymap (fkey_map, meta_prefix_char, 1, 0)),
6550 0, 1);
6551 XSETFASTINT (key, XFASTINT (key) & ~meta_modifier);
6553 else
6554 fkey_next = fkey_map;
6556 fkey_next
6557 = get_keyelt (access_keymap (fkey_next, key, 1, 0));
6559 #if 0 /* I didn't turn this on, because it might cause trouble
6560 for the mapping of return into C-m and tab into C-i. */
6561 /* Optionally don't map function keys into other things.
6562 This enables the user to redefine kp- keys easily. */
6563 if (SYMBOLP (key) && !NILP (Vinhibit_function_key_mapping))
6564 fkey_next = Qnil;
6565 #endif
6567 /* If the function key map gives a function, not an
6568 array, then call the function with no args and use
6569 its value instead. */
6570 if (SYMBOLP (fkey_next) && ! NILP (Ffboundp (fkey_next))
6571 && fkey_end == t)
6573 struct gcpro gcpro1, gcpro2, gcpro3;
6574 Lisp_Object tem;
6575 tem = fkey_next;
6577 GCPRO3 (fkey_map, keytran_map, delayed_switch_frame);
6578 fkey_next = call1 (fkey_next, prompt);
6579 UNGCPRO;
6580 /* If the function returned something invalid,
6581 barf--don't ignore it.
6582 (To ignore it safely, we would need to gcpro a bunch of
6583 other variables.) */
6584 if (! (VECTORP (fkey_next) || STRINGP (fkey_next)))
6585 error ("Function in key-translation-map returns invalid key sequence");
6588 function_key_possible = ! NILP (fkey_next);
6590 /* If keybuf[fkey_start..fkey_end] is bound in the
6591 function key map and it's a suffix of the current
6592 sequence (i.e. fkey_end == t), replace it with
6593 the binding and restart with fkey_start at the end. */
6594 if ((VECTORP (fkey_next) || STRINGP (fkey_next))
6595 && fkey_end == t)
6597 int len = XFASTINT (Flength (fkey_next));
6599 t = fkey_start + len;
6600 if (t >= bufsize)
6601 error ("Key sequence too long");
6603 if (VECTORP (fkey_next))
6604 bcopy (XVECTOR (fkey_next)->contents,
6605 keybuf + fkey_start,
6606 (t - fkey_start) * sizeof (keybuf[0]));
6607 else if (STRINGP (fkey_next))
6609 int i;
6611 for (i = 0; i < len; i++)
6612 XSETFASTINT (keybuf[fkey_start + i],
6613 XSTRING (fkey_next)->data[i]);
6616 mock_input = t;
6617 fkey_start = fkey_end = t;
6618 fkey_map = Vfunction_key_map;
6620 /* Do pass the results through key-translation-map. */
6621 keytran_start = keytran_end = 0;
6622 keytran_map = Vkey_translation_map;
6624 goto replay_sequence;
6627 fkey_map = get_keymap_1 (fkey_next, 0, 1);
6629 /* If we no longer have a bound suffix, try a new positions for
6630 fkey_start. */
6631 if (NILP (fkey_map))
6633 fkey_end = ++fkey_start;
6634 fkey_map = Vfunction_key_map;
6635 function_key_possible = 0;
6640 /* Look for this sequence in key-translation-map. */
6642 Lisp_Object keytran_next;
6644 /* Scan from keytran_end until we find a bound suffix. */
6645 while (keytran_end < t)
6647 Lisp_Object key;
6649 key = keybuf[keytran_end++];
6650 /* Look up meta-characters by prefixing them
6651 with meta_prefix_char. I hate this. */
6652 if (INTEGERP (key) && XINT (key) & meta_modifier)
6654 keytran_next
6655 = get_keymap_1
6656 (get_keyelt
6657 (access_keymap (keytran_map, meta_prefix_char, 1, 0)),
6658 0, 1);
6659 XSETFASTINT (key, XFASTINT (key) & ~meta_modifier);
6661 else
6662 keytran_next = keytran_map;
6664 keytran_next
6665 = get_keyelt (access_keymap (keytran_next, key, 1, 0));
6667 /* If the key translation map gives a function, not an
6668 array, then call the function with no args and use
6669 its value instead. */
6670 if (SYMBOLP (keytran_next) && ! NILP (Ffboundp (keytran_next))
6671 && keytran_end == t)
6673 struct gcpro gcpro1, gcpro2, gcpro3;
6674 Lisp_Object tem;
6675 tem = keytran_next;
6677 GCPRO3 (fkey_map, keytran_map, delayed_switch_frame);
6678 keytran_next = call1 (keytran_next, prompt);
6679 UNGCPRO;
6680 /* If the function returned something invalid,
6681 barf--don't ignore it.
6682 (To ignore it safely, we would need to gcpro a bunch of
6683 other variables.) */
6684 if (! (VECTORP (keytran_next) || STRINGP (keytran_next)))
6685 error ("Function in key-translation-map returns invalid key sequence");
6688 key_translation_possible = ! NILP (keytran_next);
6690 /* If keybuf[keytran_start..keytran_end] is bound in the
6691 key translation map and it's a suffix of the current
6692 sequence (i.e. keytran_end == t), replace it with
6693 the binding and restart with keytran_start at the end. */
6694 if ((VECTORP (keytran_next) || STRINGP (keytran_next))
6695 && keytran_end == t)
6697 int len = XFASTINT (Flength (keytran_next));
6699 t = keytran_start + len;
6700 if (t >= bufsize)
6701 error ("Key sequence too long");
6703 if (VECTORP (keytran_next))
6704 bcopy (XVECTOR (keytran_next)->contents,
6705 keybuf + keytran_start,
6706 (t - keytran_start) * sizeof (keybuf[0]));
6707 else if (STRINGP (keytran_next))
6709 int i;
6711 for (i = 0; i < len; i++)
6712 XSETFASTINT (keybuf[keytran_start + i],
6713 XSTRING (keytran_next)->data[i]);
6716 mock_input = t;
6717 keytran_start = keytran_end = t;
6718 keytran_map = Vkey_translation_map;
6720 /* Don't pass the results of key-translation-map
6721 through function-key-map. */
6722 fkey_start = fkey_end = t;
6723 fkey_map = Vkey_translation_map;
6725 goto replay_sequence;
6728 keytran_map = get_keymap_1 (keytran_next, 0, 1);
6730 /* If we no longer have a bound suffix, try a new positions for
6731 keytran_start. */
6732 if (NILP (keytran_map))
6734 keytran_end = ++keytran_start;
6735 keytran_map = Vkey_translation_map;
6736 key_translation_possible = 0;
6741 /* If KEY is not defined in any of the keymaps,
6742 and cannot be part of a function key or translation,
6743 and is an upper case letter
6744 use the corresponding lower-case letter instead. */
6745 if (first_binding == nmaps && ! function_key_possible
6746 && ! key_translation_possible
6747 && INTEGERP (key)
6748 && ((((XINT (key) & 0x3ffff)
6749 < XSTRING (current_buffer->downcase_table)->size)
6750 && UPPERCASEP (XINT (key) & 0x3ffff))
6751 || (XINT (key) & shift_modifier)))
6753 Lisp_Object new_key;
6755 original_uppercase = key;
6756 original_uppercase_position = t - 1;
6758 if (XINT (key) & shift_modifier)
6759 XSETINT (new_key, XINT (key) & ~shift_modifier);
6760 else
6761 XSETINT (new_key, (DOWNCASE (XINT (key) & 0x3ffff)
6762 | (XINT (key) & ~0x3ffff)));
6764 /* We have to do this unconditionally, regardless of whether
6765 the lower-case char is defined in the keymaps, because they
6766 might get translated through function-key-map. */
6767 keybuf[t - 1] = new_key;
6768 mock_input = t;
6770 fkey_map = prev_fkey_map;
6771 fkey_start = prev_fkey_start;
6772 fkey_end = prev_fkey_end;
6774 keytran_map = prev_keytran_map;
6775 keytran_start = prev_keytran_start;
6776 keytran_end = prev_keytran_end;
6778 goto replay_sequence;
6780 /* If KEY is not defined in any of the keymaps,
6781 and cannot be part of a function key or translation,
6782 and is a shifted function key,
6783 use the corresponding unshifted function key instead. */
6784 if (first_binding == nmaps && ! function_key_possible
6785 && ! key_translation_possible
6786 && SYMBOLP (key))
6788 Lisp_Object breakdown;
6789 int modifiers;
6791 breakdown = parse_modifiers (key);
6792 modifiers = XINT (XCONS (XCONS (breakdown)->cdr)->car);
6793 if (modifiers & shift_modifier)
6795 Lisp_Object new_key;
6797 original_uppercase = key;
6798 original_uppercase_position = t - 1;
6800 modifiers &= ~shift_modifier;
6801 new_key = apply_modifiers (modifiers,
6802 XCONS (breakdown)->car);
6804 keybuf[t - 1] = new_key;
6805 mock_input = t;
6807 fkey_map = prev_fkey_map;
6808 fkey_start = prev_fkey_start;
6809 fkey_end = prev_fkey_end;
6811 keytran_map = prev_keytran_map;
6812 keytran_start = prev_keytran_start;
6813 keytran_end = prev_keytran_end;
6815 goto replay_sequence;
6820 if (!dummyflag)
6821 read_key_sequence_cmd = (first_binding < nmaps
6822 ? defs[first_binding]
6823 : Qnil);
6825 unread_switch_frame = delayed_switch_frame;
6826 unbind_to (count, Qnil);
6828 /* Don't downcase the last character if the caller says don't.
6829 Don't downcase it if the result is undefined, either. */
6830 if ((dont_downcase_last || first_binding >= nmaps)
6831 && t - 1 == original_uppercase_position)
6832 keybuf[t - 1] = original_uppercase;
6834 /* Occasionally we fabricate events, perhaps by expanding something
6835 according to function-key-map, or by adding a prefix symbol to a
6836 mouse click in the scroll bar or modeline. In this cases, return
6837 the entire generated key sequence, even if we hit an unbound
6838 prefix or a definition before the end. This means that you will
6839 be able to push back the event properly, and also means that
6840 read-key-sequence will always return a logical unit.
6842 Better ideas? */
6843 for (; t < mock_input; t++)
6845 if (echo_keystrokes)
6846 echo_char (keybuf[t]);
6847 add_command_key (keybuf[t]);
6850 return t;
6853 #if 0 /* This doc string is too long for some compilers.
6854 This commented-out definition serves for DOC. */
6855 DEFUN ("read-key-sequence", Fread_key_sequence, Sread_key_sequence, 1, 4, 0,
6856 "Read a sequence of keystrokes and return as a string or vector.\n\
6857 The sequence is sufficient to specify a non-prefix command in the\n\
6858 current local and global maps.\n\
6860 First arg PROMPT is a prompt string. If nil, do not prompt specially.\n\
6861 Second (optional) arg CONTINUE-ECHO, if non-nil, means this key echos\n\
6862 as a continuation of the previous key.\n\
6864 The third (optional) arg DONT-DOWNCASE-LAST, if non-nil, means do not\n\
6865 convert the last event to lower case. (Normally any upper case event\n\
6866 is converted to lower case if the original event is undefined and the lower\n\
6867 case equivalent is defined.) A non-nil value is appropriate for reading\n\
6868 a key sequence to be defined.\n\
6870 A C-g typed while in this function is treated like any other character,\n\
6871 and `quit-flag' is not set.\n\
6873 If the key sequence starts with a mouse click, then the sequence is read\n\
6874 using the keymaps of the buffer of the window clicked in, not the buffer\n\
6875 of the selected window as normal.\n\
6876 ""\n\
6877 `read-key-sequence' drops unbound button-down events, since you normally\n\
6878 only care about the click or drag events which follow them. If a drag\n\
6879 or multi-click event is unbound, but the corresponding click event would\n\
6880 be bound, `read-key-sequence' turns the event into a click event at the\n\
6881 drag's starting position. This means that you don't have to distinguish\n\
6882 between click and drag, double, or triple events unless you want to.\n\
6884 `read-key-sequence' prefixes mouse events on mode lines, the vertical\n\
6885 lines separating windows, and scroll bars with imaginary keys\n\
6886 `mode-line', `vertical-line', and `vertical-scroll-bar'.\n\
6888 Optional fourth argument CAN-RETURN-SWITCH-FRAME non-nil means that this\n\
6889 function will process a switch-frame event if the user switches frames\n\
6890 before typing anything. If the user switches frames in the middle of a\n\
6891 key sequence, or at the start of the sequence but CAN-RETURN-SWITCH-FRAME\n\
6892 is nil, then the event will be put off until after the current key sequence.\n\
6894 `read-key-sequence' checks `function-key-map' for function key\n\
6895 sequences, where they wouldn't conflict with ordinary bindings. See\n\
6896 `function-key-map' for more details.")
6897 (prompt, continue_echo, dont_downcase_last, can_return_switch_frame)
6898 #endif
6900 DEFUN ("read-key-sequence", Fread_key_sequence, Sread_key_sequence, 1, 4, 0,
6902 (prompt, continue_echo, dont_downcase_last, can_return_switch_frame)
6903 Lisp_Object prompt, continue_echo, dont_downcase_last;
6904 Lisp_Object can_return_switch_frame;
6906 Lisp_Object keybuf[30];
6907 register int i;
6908 struct gcpro gcpro1, gcpro2;
6910 if (!NILP (prompt))
6911 CHECK_STRING (prompt, 0);
6912 QUIT;
6914 bzero (keybuf, sizeof keybuf);
6915 GCPRO1 (keybuf[0]);
6916 gcpro1.nvars = (sizeof keybuf/sizeof (keybuf[0]));
6918 if (NILP (continue_echo))
6920 this_command_key_count = 0;
6921 this_single_command_key_start = 0;
6924 i = read_key_sequence (keybuf, (sizeof keybuf/sizeof (keybuf[0])),
6925 prompt, ! NILP (dont_downcase_last),
6926 ! NILP (can_return_switch_frame), 0);
6928 if (i == -1)
6930 Vquit_flag = Qt;
6931 QUIT;
6933 UNGCPRO;
6934 return make_event_array (i, keybuf);
6937 DEFUN ("command-execute", Fcommand_execute, Scommand_execute, 1, 4, 0,
6938 "Execute CMD as an editor command.\n\
6939 CMD must be a symbol that satisfies the `commandp' predicate.\n\
6940 Optional second arg RECORD-FLAG non-nil\n\
6941 means unconditionally put this command in `command-history'.\n\
6942 Otherwise, that is done only if an arg is read using the minibuffer.\n\
6943 The argument KEYS specifies the value to use instead of (this-command-keys)\n\
6944 when reading the arguments; if it is nil, (this-command-keys) is used.\n\
6945 The argument SPECIAL, if non-nil, means that this command is executing\n\
6946 a special event, so ignore the prefix argument and don't clear it.")
6947 (cmd, record_flag, keys, special)
6948 Lisp_Object cmd, record_flag, keys, special;
6950 register Lisp_Object final;
6951 register Lisp_Object tem;
6952 Lisp_Object prefixarg;
6953 struct backtrace backtrace;
6954 extern int debug_on_next_call;
6956 debug_on_next_call = 0;
6958 if (NILP (special))
6960 prefixarg = current_kboard->Vprefix_arg;
6961 Vcurrent_prefix_arg = prefixarg;
6962 current_kboard->Vprefix_arg = Qnil;
6964 else
6965 prefixarg = Qnil;
6967 if (SYMBOLP (cmd))
6969 tem = Fget (cmd, Qdisabled);
6970 if (!NILP (tem) && !NILP (Vrun_hooks))
6972 tem = Fsymbol_value (Qdisabled_command_hook);
6973 if (!NILP (tem))
6974 return call1 (Vrun_hooks, Qdisabled_command_hook);
6978 while (1)
6980 final = Findirect_function (cmd);
6982 if (CONSP (final) && (tem = Fcar (final), EQ (tem, Qautoload)))
6984 struct gcpro gcpro1, gcpro2;
6986 GCPRO2 (cmd, prefixarg);
6987 do_autoload (final, cmd);
6988 UNGCPRO;
6990 else
6991 break;
6994 if (STRINGP (final) || VECTORP (final))
6996 /* If requested, place the macro in the command history. For
6997 other sorts of commands, call-interactively takes care of
6998 this. */
6999 if (!NILP (record_flag))
7000 Vcommand_history
7001 = Fcons (Fcons (Qexecute_kbd_macro,
7002 Fcons (final, Fcons (prefixarg, Qnil))),
7003 Vcommand_history);
7005 return Fexecute_kbd_macro (final, prefixarg);
7007 if (CONSP (final) || SUBRP (final) || COMPILEDP (final))
7009 backtrace.next = backtrace_list;
7010 backtrace_list = &backtrace;
7011 backtrace.function = &Qcall_interactively;
7012 backtrace.args = &cmd;
7013 backtrace.nargs = 1;
7014 backtrace.evalargs = 0;
7016 tem = Fcall_interactively (cmd, record_flag, keys);
7018 backtrace_list = backtrace.next;
7019 return tem;
7021 return Qnil;
7024 DEFUN ("execute-extended-command", Fexecute_extended_command, Sexecute_extended_command,
7025 1, 1, "P",
7026 "Read function name, then read its arguments and call it.")
7027 (prefixarg)
7028 Lisp_Object prefixarg;
7030 Lisp_Object function;
7031 char buf[40];
7032 Lisp_Object saved_keys;
7033 Lisp_Object bindings, value;
7034 struct gcpro gcpro1, gcpro2;
7036 saved_keys = Fvector (this_command_key_count,
7037 XVECTOR (this_command_keys)->contents);
7038 buf[0] = 0;
7039 GCPRO2 (saved_keys, prefixarg);
7041 if (EQ (prefixarg, Qminus))
7042 strcpy (buf, "- ");
7043 else if (CONSP (prefixarg) && XINT (XCONS (prefixarg)->car) == 4)
7044 strcpy (buf, "C-u ");
7045 else if (CONSP (prefixarg) && INTEGERP (XCONS (prefixarg)->car))
7047 if (sizeof (int) == sizeof (EMACS_INT))
7048 sprintf (buf, "%d ", XINT (XCONS (prefixarg)->car));
7049 else if (sizeof (long) == sizeof (EMACS_INT))
7050 sprintf (buf, "%ld ", XINT (XCONS (prefixarg)->car));
7051 else
7052 abort ();
7054 else if (INTEGERP (prefixarg))
7056 if (sizeof (int) == sizeof (EMACS_INT))
7057 sprintf (buf, "%d ", XINT (prefixarg));
7058 else if (sizeof (long) == sizeof (EMACS_INT))
7059 sprintf (buf, "%ld ", XINT (prefixarg));
7060 else
7061 abort ();
7064 /* This isn't strictly correct if execute-extended-command
7065 is bound to anything else. Perhaps it should use
7066 this_command_keys? */
7067 strcat (buf, "M-x ");
7069 /* Prompt with buf, and then read a string, completing from and
7070 restricting to the set of all defined commands. Don't provide
7071 any initial input. Save the command read on the extended-command
7072 history list. */
7073 function = Fcompleting_read (build_string (buf),
7074 Vobarray, Qcommandp,
7075 Qt, Qnil, Qextended_command_history, Qnil);
7077 if (STRINGP (function) && XSTRING (function)->size == 0)
7078 error ("No command name given");
7080 /* Set this_command_keys to the concatenation of saved_keys and
7081 function, followed by a RET. */
7083 struct Lisp_String *str;
7084 Lisp_Object *keys;
7085 int i;
7086 Lisp_Object tem;
7088 this_command_key_count = 0;
7089 this_single_command_key_start = 0;
7091 keys = XVECTOR (saved_keys)->contents;
7092 for (i = 0; i < XVECTOR (saved_keys)->size; i++)
7093 add_command_key (keys[i]);
7095 str = XSTRING (function);
7096 for (i = 0; i < str->size; i++)
7098 XSETFASTINT (tem, str->data[i]);
7099 add_command_key (tem);
7102 XSETFASTINT (tem, '\015');
7103 add_command_key (tem);
7106 UNGCPRO;
7108 function = Fintern (function, Qnil);
7109 current_kboard->Vprefix_arg = prefixarg;
7110 this_command = function;
7112 /* If enabled, show which key runs this command. */
7113 if (!NILP (Vsuggest_key_bindings)
7114 && NILP (Vexecuting_macro)
7115 && SYMBOLP (function))
7116 bindings = Fwhere_is_internal (function, Voverriding_local_map,
7117 Qt, Qnil);
7118 else
7119 bindings = Qnil;
7121 value = Qnil;
7122 GCPRO2 (bindings, value);
7123 value = Fcommand_execute (function, Qt, Qnil, Qnil);
7125 /* If the command has a key binding, print it now. */
7126 if (!NILP (bindings))
7128 /* But first wait, and skip the message if there is input. */
7129 if (!NILP (Fsit_for ((NUMBERP (Vsuggest_key_bindings)
7130 ? Vsuggest_key_bindings : make_number (2)),
7131 Qnil, Qnil))
7132 && ! CONSP (Vunread_command_events))
7134 Lisp_Object binding;
7135 char *newmessage;
7136 char *oldmessage = echo_area_glyphs;
7137 int oldmessage_len = echo_area_glyphs_length;
7139 binding = Fkey_description (bindings);
7141 newmessage
7142 = (char *) alloca (XSYMBOL (function)->name->size
7143 + XSTRING (binding)->size
7144 + 100);
7145 sprintf (newmessage, "You can run the command `%s' by typing %s",
7146 XSYMBOL (function)->name->data,
7147 XSTRING (binding)->data);
7148 message1_nolog (newmessage);
7149 if (!NILP (Fsit_for ((NUMBERP (Vsuggest_key_bindings)
7150 ? Vsuggest_key_bindings : make_number (2)),
7151 Qnil, Qnil)))
7152 message2_nolog (oldmessage, oldmessage_len);
7156 RETURN_UNGCPRO (value);
7159 /* Find the set of keymaps now active.
7160 Store into *MAPS_P a vector holding the various maps
7161 and return the number of them. The vector was malloc'd
7162 and the caller should free it. */
7165 current_active_maps (maps_p)
7166 Lisp_Object **maps_p;
7168 Lisp_Object *tmaps, *maps;
7169 int nmaps;
7171 /* Should overriding-terminal-local-map and overriding-local-map apply? */
7172 if (!NILP (Voverriding_local_map_menu_flag))
7174 /* Yes, use them (if non-nil) as well as the global map. */
7175 maps = (Lisp_Object *) xmalloc (3 * sizeof (maps[0]));
7176 nmaps = 0;
7177 if (!NILP (current_kboard->Voverriding_terminal_local_map))
7178 maps[nmaps++] = current_kboard->Voverriding_terminal_local_map;
7179 if (!NILP (Voverriding_local_map))
7180 maps[nmaps++] = Voverriding_local_map;
7182 else
7184 /* No, so use major and minor mode keymaps. */
7185 nmaps = current_minor_maps (NULL, &tmaps);
7186 maps = (Lisp_Object *) xmalloc ((nmaps + 2) * sizeof (maps[0]));
7187 bcopy (tmaps, maps, nmaps * sizeof (maps[0]));
7188 #ifdef USE_TEXT_PROPERTIES
7189 maps[nmaps++] = get_local_map (PT, current_buffer);
7190 #else
7191 maps[nmaps++] = current_buffer->keymap;
7192 #endif
7194 maps[nmaps++] = current_global_map;
7196 *maps_p = maps;
7197 return nmaps;
7200 /* Return nonzero if input events are pending. */
7202 detect_input_pending ()
7204 if (!input_pending)
7205 get_input_pending (&input_pending, 0);
7207 return input_pending;
7210 /* Return nonzero if input events are pending, and run any pending timers. */
7212 detect_input_pending_run_timers (do_display)
7213 int do_display;
7215 int old_timers_run = timers_run;
7217 if (!input_pending)
7218 get_input_pending (&input_pending, 1);
7220 if (old_timers_run != timers_run && do_display)
7221 redisplay_preserve_echo_area ();
7223 return input_pending;
7226 /* This is called in some cases before a possible quit.
7227 It cases the next call to detect_input_pending to recompute input_pending.
7228 So calling this function unnecessarily can't do any harm. */
7229 clear_input_pending ()
7231 input_pending = 0;
7234 /* Return nonzero if there are pending requeued events.
7235 This isn't used yet. The hope is to make wait_reading_process_input
7236 call it, and return return if it runs Lisp code that unreads something.
7237 The problem is, kbd_buffer_get_event needs to be fixed to know what
7238 to do in that case. It isn't trivial. */
7240 requeued_events_pending_p ()
7242 return (!NILP (Vunread_command_events) || unread_command_char != -1);
7246 DEFUN ("input-pending-p", Finput_pending_p, Sinput_pending_p, 0, 0, 0,
7247 "T if command input is currently available with no waiting.\n\
7248 Actually, the value is nil only if we can be sure that no input is available.")
7251 if (!NILP (Vunread_command_events) || unread_command_char != -1)
7252 return (Qt);
7254 get_input_pending (&input_pending, 1);
7255 return input_pending > 0 ? Qt : Qnil;
7258 DEFUN ("recent-keys", Frecent_keys, Srecent_keys, 0, 0, 0,
7259 "Return vector of last 100 events, not counting those from keyboard macros.")
7262 Lisp_Object *keys = XVECTOR (recent_keys)->contents;
7263 Lisp_Object val;
7265 if (total_keys < NUM_RECENT_KEYS)
7266 return Fvector (total_keys, keys);
7267 else
7269 val = Fvector (NUM_RECENT_KEYS, keys);
7270 bcopy (keys + recent_keys_index,
7271 XVECTOR (val)->contents,
7272 (NUM_RECENT_KEYS - recent_keys_index) * sizeof (Lisp_Object));
7273 bcopy (keys,
7274 XVECTOR (val)->contents + NUM_RECENT_KEYS - recent_keys_index,
7275 recent_keys_index * sizeof (Lisp_Object));
7276 return val;
7280 DEFUN ("this-command-keys", Fthis_command_keys, Sthis_command_keys, 0, 0, 0,
7281 "Return the key sequence that invoked this command.\n\
7282 The value is a string or a vector.")
7285 return make_event_array (this_command_key_count,
7286 XVECTOR (this_command_keys)->contents);
7289 DEFUN ("this-single-command-keys", Fthis_single_command_keys,
7290 Sthis_single_command_keys, 0, 0, 0,
7291 "Return the key sequence that invoked this command.\n\
7292 Unlike `this-command-keys', this function's value\n\
7293 does not include prefix arguments.\n\
7294 The value is a string or a vector.")
7297 return make_event_array (this_command_key_count
7298 - this_single_command_key_start,
7299 (XVECTOR (this_command_keys)->contents
7300 + this_single_command_key_start));
7303 DEFUN ("reset-this-command-lengths", Freset_this_command_lengths,
7304 Sreset_this_command_lengths, 0, 0, 0,
7305 "Used for complicated reasons in `universal-argument-other-key'.\n\
7307 `universal-argument-other-key' rereads the event just typed.\n\
7308 It then gets translated through `function-key-map'.\n\
7309 The translated event gets included in the echo area and in\n\
7310 the value of `this-command-keys' in addition to the raw original event.\n\
7311 That is not right.\n\
7313 Calling this function directs the translated event to replace\n\
7314 the original event, so that only one version of the event actually\n\
7315 appears in the echo area and in the value of `this-command-keys.'.")
7318 before_command_restore_flag = 1;
7319 before_command_key_count_1 = before_command_key_count;
7320 before_command_echo_length_1 = before_command_echo_length;
7323 DEFUN ("recursion-depth", Frecursion_depth, Srecursion_depth, 0, 0, 0,
7324 "Return the current depth in recursive edits.")
7327 Lisp_Object temp;
7328 XSETFASTINT (temp, command_loop_level + minibuf_level);
7329 return temp;
7332 DEFUN ("open-dribble-file", Fopen_dribble_file, Sopen_dribble_file, 1, 1,
7333 "FOpen dribble file: ",
7334 "Start writing all keyboard characters to a dribble file called FILE.\n\
7335 If FILE is nil, close any open dribble file.")
7336 (file)
7337 Lisp_Object file;
7339 if (dribble)
7341 fclose (dribble);
7342 dribble = 0;
7344 if (!NILP (file))
7346 file = Fexpand_file_name (file, Qnil);
7347 dribble = fopen (XSTRING (file)->data, "w");
7348 if (dribble == 0)
7349 report_file_error ("Opening dribble", Fcons (file, Qnil));
7351 return Qnil;
7354 DEFUN ("discard-input", Fdiscard_input, Sdiscard_input, 0, 0, 0,
7355 "Discard the contents of the terminal input buffer.\n\
7356 Also cancel any kbd macro being defined.")
7359 current_kboard->defining_kbd_macro = Qnil;
7360 update_mode_lines++;
7362 Vunread_command_events = Qnil;
7363 unread_command_char = -1;
7365 discard_tty_input ();
7367 /* Without the cast, GCC complains that this assignment loses the
7368 volatile qualifier of kbd_store_ptr. Is there anything wrong
7369 with that? */
7370 kbd_fetch_ptr = (struct input_event *) kbd_store_ptr;
7371 Ffillarray (kbd_buffer_frame_or_window, Qnil);
7372 input_pending = 0;
7374 return Qnil;
7377 DEFUN ("suspend-emacs", Fsuspend_emacs, Ssuspend_emacs, 0, 1, "",
7378 "Stop Emacs and return to superior process. You can resume later.\n\
7379 If `cannot-suspend' is non-nil, or if the system doesn't support job\n\
7380 control, run a subshell instead.\n\n\
7381 If optional arg STUFFSTRING is non-nil, its characters are stuffed\n\
7382 to be read as terminal input by Emacs's parent, after suspension.\n\
7384 Before suspending, run the normal hook `suspend-hook'.\n\
7385 After resumption run the normal hook `suspend-resume-hook'.\n\
7387 Some operating systems cannot stop the Emacs process and resume it later.\n\
7388 On such systems, Emacs starts a subshell instead of suspending.")
7389 (stuffstring)
7390 Lisp_Object stuffstring;
7392 Lisp_Object tem;
7393 int count = specpdl_ptr - specpdl;
7394 int old_height, old_width;
7395 int width, height;
7396 struct gcpro gcpro1, gcpro2;
7397 extern init_sys_modes ();
7399 if (!NILP (stuffstring))
7400 CHECK_STRING (stuffstring, 0);
7402 /* Run the functions in suspend-hook. */
7403 if (!NILP (Vrun_hooks))
7404 call1 (Vrun_hooks, intern ("suspend-hook"));
7406 GCPRO1 (stuffstring);
7407 get_frame_size (&old_width, &old_height);
7408 reset_sys_modes ();
7409 /* sys_suspend can get an error if it tries to fork a subshell
7410 and the system resources aren't available for that. */
7411 record_unwind_protect (init_sys_modes, 0);
7412 stuff_buffered_input (stuffstring);
7413 if (cannot_suspend)
7414 sys_subshell ();
7415 else
7416 sys_suspend ();
7417 unbind_to (count, Qnil);
7419 /* Check if terminal/window size has changed.
7420 Note that this is not useful when we are running directly
7421 with a window system; but suspend should be disabled in that case. */
7422 get_frame_size (&width, &height);
7423 if (width != old_width || height != old_height)
7424 change_frame_size (selected_frame, height, width, 0, 0);
7426 /* Run suspend-resume-hook. */
7427 if (!NILP (Vrun_hooks))
7428 call1 (Vrun_hooks, intern ("suspend-resume-hook"));
7430 UNGCPRO;
7431 return Qnil;
7434 /* If STUFFSTRING is a string, stuff its contents as pending terminal input.
7435 Then in any case stuff anything Emacs has read ahead and not used. */
7437 stuff_buffered_input (stuffstring)
7438 Lisp_Object stuffstring;
7440 /* stuff_char works only in BSD, versions 4.2 and up. */
7441 #ifdef BSD_SYSTEM
7442 #ifndef BSD4_1
7443 register unsigned char *p;
7445 if (STRINGP (stuffstring))
7447 register int count;
7449 p = XSTRING (stuffstring)->data;
7450 count = XSTRING (stuffstring)->size;
7451 while (count-- > 0)
7452 stuff_char (*p++);
7453 stuff_char ('\n');
7455 /* Anything we have read ahead, put back for the shell to read. */
7456 /* ?? What should this do when we have multiple keyboards??
7457 Should we ignore anything that was typed in at the "wrong" kboard? */
7458 for (; kbd_fetch_ptr != kbd_store_ptr; kbd_fetch_ptr++)
7460 if (kbd_fetch_ptr == kbd_buffer + KBD_BUFFER_SIZE)
7461 kbd_fetch_ptr = kbd_buffer;
7462 if (kbd_fetch_ptr->kind == ascii_keystroke)
7463 stuff_char (kbd_fetch_ptr->code);
7464 kbd_fetch_ptr->kind = no_event;
7465 (XVECTOR (kbd_buffer_frame_or_window)->contents[kbd_fetch_ptr
7466 - kbd_buffer]
7467 = Qnil);
7469 input_pending = 0;
7470 #endif
7471 #endif /* BSD_SYSTEM and not BSD4_1 */
7474 set_waiting_for_input (time_to_clear)
7475 EMACS_TIME *time_to_clear;
7477 input_available_clear_time = time_to_clear;
7479 /* Tell interrupt_signal to throw back to read_char, */
7480 waiting_for_input = 1;
7482 /* If interrupt_signal was called before and buffered a C-g,
7483 make it run again now, to avoid timing error. */
7484 if (!NILP (Vquit_flag))
7485 quit_throw_to_read_char ();
7488 clear_waiting_for_input ()
7490 /* Tell interrupt_signal not to throw back to read_char, */
7491 waiting_for_input = 0;
7492 input_available_clear_time = 0;
7495 /* This routine is called at interrupt level in response to C-G.
7496 If interrupt_input, this is the handler for SIGINT.
7497 Otherwise, it is called from kbd_buffer_store_event,
7498 in handling SIGIO or SIGTINT.
7500 If `waiting_for_input' is non zero, then unless `echoing' is nonzero,
7501 immediately throw back to read_char.
7503 Otherwise it sets the Lisp variable quit-flag not-nil.
7504 This causes eval to throw, when it gets a chance.
7505 If quit-flag is already non-nil, it stops the job right away. */
7507 SIGTYPE
7508 interrupt_signal (signalnum) /* If we don't have an argument, */
7509 int signalnum; /* some compilers complain in signal calls. */
7511 char c;
7512 /* Must preserve main program's value of errno. */
7513 int old_errno = errno;
7515 #if defined (USG) && !defined (POSIX_SIGNALS)
7516 if (!read_socket_hook && NILP (Vwindow_system))
7518 /* USG systems forget handlers when they are used;
7519 must reestablish each time */
7520 signal (SIGINT, interrupt_signal);
7521 signal (SIGQUIT, interrupt_signal);
7523 #endif /* USG */
7525 cancel_echoing ();
7527 if (!NILP (Vquit_flag)
7528 && (FRAME_TERMCAP_P (selected_frame) || FRAME_MSDOS_P (selected_frame)))
7530 /* If SIGINT isn't blocked, don't let us be interrupted by
7531 another SIGINT, it might be harmful due to non-reentrancy
7532 in I/O functions. */
7533 sigblock (sigmask (SIGINT));
7535 fflush (stdout);
7536 reset_sys_modes ();
7538 #ifdef SIGTSTP /* Support possible in later USG versions */
7540 * On systems which can suspend the current process and return to the original
7541 * shell, this command causes the user to end up back at the shell.
7542 * The "Auto-save" and "Abort" questions are not asked until
7543 * the user elects to return to emacs, at which point he can save the current
7544 * job and either dump core or continue.
7546 sys_suspend ();
7547 #else
7548 #ifdef VMS
7549 if (sys_suspend () == -1)
7551 printf ("Not running as a subprocess;\n");
7552 printf ("you can continue or abort.\n");
7554 #else /* not VMS */
7555 /* Perhaps should really fork an inferior shell?
7556 But that would not provide any way to get back
7557 to the original shell, ever. */
7558 printf ("No support for stopping a process on this operating system;\n");
7559 printf ("you can continue or abort.\n");
7560 #endif /* not VMS */
7561 #endif /* not SIGTSTP */
7562 #ifdef MSDOS
7563 /* We must remain inside the screen area when the internal terminal
7564 is used. Note that [Enter] is not echoed by dos. */
7565 cursor_to (0, 0);
7566 #endif
7567 /* It doesn't work to autosave while GC is in progress;
7568 the code used for auto-saving doesn't cope with the mark bit. */
7569 if (!gc_in_progress)
7571 printf ("Auto-save? (y or n) ");
7572 fflush (stdout);
7573 if (((c = getchar ()) & ~040) == 'Y')
7575 Fdo_auto_save (Qt, Qnil);
7576 #ifdef MSDOS
7577 printf ("\r\nAuto-save done");
7578 #else /* not MSDOS */
7579 printf ("Auto-save done\n");
7580 #endif /* not MSDOS */
7582 while (c != '\n') c = getchar ();
7584 else
7586 /* During GC, it must be safe to reenable quitting again. */
7587 Vinhibit_quit = Qnil;
7588 #ifdef MSDOS
7589 printf ("\r\n");
7590 #endif /* not MSDOS */
7591 printf ("Garbage collection in progress; cannot auto-save now\r\n");
7592 printf ("but will instead do a real quit after garbage collection ends\r\n");
7593 fflush (stdout);
7596 #ifdef MSDOS
7597 printf ("\r\nAbort? (y or n) ");
7598 #else /* not MSDOS */
7599 #ifdef VMS
7600 printf ("Abort (and enter debugger)? (y or n) ");
7601 #else /* not VMS */
7602 printf ("Abort (and dump core)? (y or n) ");
7603 #endif /* not VMS */
7604 #endif /* not MSDOS */
7605 fflush (stdout);
7606 if (((c = getchar ()) & ~040) == 'Y')
7607 abort ();
7608 while (c != '\n') c = getchar ();
7609 #ifdef MSDOS
7610 printf ("\r\nContinuing...\r\n");
7611 #else /* not MSDOS */
7612 printf ("Continuing...\n");
7613 #endif /* not MSDOS */
7614 fflush (stdout);
7615 init_sys_modes ();
7616 sigfree ();
7618 else
7620 /* If executing a function that wants to be interrupted out of
7621 and the user has not deferred quitting by binding `inhibit-quit'
7622 then quit right away. */
7623 if (immediate_quit && NILP (Vinhibit_quit))
7625 immediate_quit = 0;
7626 sigfree ();
7627 Fsignal (Qquit, Qnil);
7629 else
7630 /* Else request quit when it's safe */
7631 Vquit_flag = Qt;
7634 if (waiting_for_input && !echoing)
7635 quit_throw_to_read_char ();
7637 errno = old_errno;
7640 /* Handle a C-g by making read_char return C-g. */
7642 quit_throw_to_read_char ()
7644 quit_error_check ();
7645 sigfree ();
7646 /* Prevent another signal from doing this before we finish. */
7647 clear_waiting_for_input ();
7648 input_pending = 0;
7650 Vunread_command_events = Qnil;
7651 unread_command_char = -1;
7653 #if 0 /* Currently, sit_for is called from read_char without turning
7654 off polling. And that can call set_waiting_for_input.
7655 It seems to be harmless. */
7656 #ifdef POLL_FOR_INPUT
7657 /* May be > 1 if in recursive minibuffer. */
7658 if (poll_suppress_count == 0)
7659 abort ();
7660 #endif
7661 #endif
7662 if (FRAMEP (internal_last_event_frame)
7663 && XFRAME (internal_last_event_frame) != selected_frame)
7664 do_switch_frame (make_lispy_switch_frame (internal_last_event_frame),
7665 Qnil, 0);
7667 _longjmp (getcjmp, 1);
7670 DEFUN ("set-input-mode", Fset_input_mode, Sset_input_mode, 3, 4, 0,
7671 "Set mode of reading keyboard input.\n\
7672 First arg INTERRUPT non-nil means use input interrupts;\n\
7673 nil means use CBREAK mode.\n\
7674 Second arg FLOW non-nil means use ^S/^Q flow control for output to terminal\n\
7675 (no effect except in CBREAK mode).\n\
7676 Third arg META t means accept 8-bit input (for a Meta key).\n\
7677 META nil means ignore the top bit, on the assumption it is parity.\n\
7678 Otherwise, accept 8-bit input and don't use the top bit for Meta.\n\
7679 Optional fourth arg QUIT if non-nil specifies character to use for quitting.\n\
7680 See also `current-input-mode'.")
7681 (interrupt, flow, meta, quit)
7682 Lisp_Object interrupt, flow, meta, quit;
7684 if (!NILP (quit)
7685 && (!INTEGERP (quit) || XINT (quit) < 0 || XINT (quit) > 0400))
7686 error ("set-input-mode: QUIT must be an ASCII character");
7688 #ifdef POLL_FOR_INPUT
7689 stop_polling ();
7690 #endif
7692 #ifndef MSDOS
7693 /* this causes startup screen to be restored and messes with the mouse */
7694 reset_sys_modes ();
7695 #endif
7697 #ifdef SIGIO
7698 /* Note SIGIO has been undef'd if FIONREAD is missing. */
7699 if (read_socket_hook)
7701 /* When using X, don't give the user a real choice,
7702 because we haven't implemented the mechanisms to support it. */
7703 #ifdef NO_SOCK_SIGIO
7704 interrupt_input = 0;
7705 #else /* not NO_SOCK_SIGIO */
7706 interrupt_input = 1;
7707 #endif /* NO_SOCK_SIGIO */
7709 else
7710 interrupt_input = !NILP (interrupt);
7711 #else /* not SIGIO */
7712 interrupt_input = 0;
7713 #endif /* not SIGIO */
7715 /* Our VMS input only works by interrupts, as of now. */
7716 #ifdef VMS
7717 interrupt_input = 1;
7718 #endif
7720 flow_control = !NILP (flow);
7721 if (NILP (meta))
7722 meta_key = 0;
7723 else if (EQ (meta, Qt))
7724 meta_key = 1;
7725 else
7726 meta_key = 2;
7727 if (!NILP (quit))
7728 /* Don't let this value be out of range. */
7729 quit_char = XINT (quit) & (meta_key ? 0377 : 0177);
7731 #ifndef MSDOS
7732 init_sys_modes ();
7733 #endif
7735 #ifdef POLL_FOR_INPUT
7736 poll_suppress_count = 1;
7737 start_polling ();
7738 #endif
7739 return Qnil;
7742 DEFUN ("current-input-mode", Fcurrent_input_mode, Scurrent_input_mode, 0, 0, 0,
7743 "Return information about the way Emacs currently reads keyboard input.\n\
7744 The value is a list of the form (INTERRUPT FLOW META QUIT), where\n\
7745 INTERRUPT is non-nil if Emacs is using interrupt-driven input; if\n\
7746 nil, Emacs is using CBREAK mode.\n\
7747 FLOW is non-nil if Emacs uses ^S/^Q flow control for output to the\n\
7748 terminal; this does not apply if Emacs uses interrupt-driven input.\n\
7749 META is t if accepting 8-bit input with 8th bit as Meta flag.\n\
7750 META nil means ignoring the top bit, on the assumption it is parity.\n\
7751 META is neither t nor nil if accepting 8-bit input and using\n\
7752 all 8 bits as the character code.\n\
7753 QUIT is the character Emacs currently uses to quit.\n\
7754 The elements of this list correspond to the arguments of\n\
7755 `set-input-mode'.")
7758 Lisp_Object val[4];
7760 val[0] = interrupt_input ? Qt : Qnil;
7761 val[1] = flow_control ? Qt : Qnil;
7762 val[2] = meta_key == 2 ? make_number (0) : meta_key == 1 ? Qt : Qnil;
7763 XSETFASTINT (val[3], quit_char);
7765 return Flist (sizeof (val) / sizeof (val[0]), val);
7770 * Set up a new kboard object with reasonable initial values.
7772 void
7773 init_kboard (kb)
7774 KBOARD *kb;
7776 kb->Voverriding_terminal_local_map = Qnil;
7777 kb->Vlast_command = Qnil;
7778 kb->Vprefix_arg = Qnil;
7779 kb->kbd_queue = Qnil;
7780 kb->kbd_queue_has_data = 0;
7781 kb->immediate_echo = 0;
7782 kb->echoptr = kb->echobuf;
7783 kb->echo_after_prompt = -1;
7784 kb->kbd_macro_buffer = 0;
7785 kb->kbd_macro_bufsize = 0;
7786 kb->defining_kbd_macro = Qnil;
7787 kb->Vlast_kbd_macro = Qnil;
7788 kb->reference_count = 0;
7789 kb->Vsystem_key_alist = Qnil;
7790 kb->system_key_syms = Qnil;
7791 kb->Vdefault_minibuffer_frame = Qnil;
7795 * Destroy the contents of a kboard object, but not the object itself.
7796 * We use this just before deleting it, or if we're going to initialize
7797 * it a second time.
7799 static void
7800 wipe_kboard (kb)
7801 KBOARD *kb;
7803 if (kb->kbd_macro_buffer)
7804 xfree (kb->kbd_macro_buffer);
7807 #ifdef MULTI_KBOARD
7808 void
7809 delete_kboard (kb)
7810 KBOARD *kb;
7812 KBOARD **kbp;
7813 for (kbp = &all_kboards; *kbp != kb; kbp = &(*kbp)->next_kboard)
7814 if (*kbp == NULL)
7815 abort ();
7816 *kbp = kb->next_kboard;
7817 wipe_kboard (kb);
7818 xfree (kb);
7820 #endif
7822 init_keyboard ()
7824 /* This is correct before outermost invocation of the editor loop */
7825 command_loop_level = -1;
7826 immediate_quit = 0;
7827 quit_char = Ctl ('g');
7828 Vunread_command_events = Qnil;
7829 unread_command_char = -1;
7830 EMACS_SET_SECS_USECS (timer_idleness_start_time, -1, -1);
7831 total_keys = 0;
7832 recent_keys_index = 0;
7833 kbd_fetch_ptr = kbd_buffer;
7834 kbd_store_ptr = kbd_buffer;
7835 kbd_buffer_frame_or_window
7836 = Fmake_vector (make_number (KBD_BUFFER_SIZE), Qnil);
7837 #ifdef HAVE_MOUSE
7838 do_mouse_tracking = Qnil;
7839 #endif
7840 input_pending = 0;
7842 /* This means that command_loop_1 won't try to select anything the first
7843 time through. */
7844 internal_last_event_frame = Qnil;
7845 Vlast_event_frame = internal_last_event_frame;
7847 #ifdef MULTI_KBOARD
7848 current_kboard = initial_kboard;
7849 #endif
7850 wipe_kboard (current_kboard);
7851 init_kboard (current_kboard);
7853 if (initialized)
7854 Ffillarray (kbd_buffer_frame_or_window, Qnil);
7856 kbd_buffer_frame_or_window
7857 = Fmake_vector (make_number (KBD_BUFFER_SIZE), Qnil);
7858 if (!noninteractive && !read_socket_hook && NILP (Vwindow_system))
7860 signal (SIGINT, interrupt_signal);
7861 #if defined (HAVE_TERMIO) || defined (HAVE_TERMIOS)
7862 /* For systems with SysV TERMIO, C-g is set up for both SIGINT and
7863 SIGQUIT and we can't tell which one it will give us. */
7864 signal (SIGQUIT, interrupt_signal);
7865 #endif /* HAVE_TERMIO */
7867 /* Note SIGIO has been undef'd if FIONREAD is missing. */
7868 #ifdef SIGIO
7869 if (!noninteractive)
7870 signal (SIGIO, input_available_signal);
7871 #endif /* SIGIO */
7873 /* Use interrupt input by default, if it works and noninterrupt input
7874 has deficiencies. */
7876 #ifdef INTERRUPT_INPUT
7877 interrupt_input = 1;
7878 #else
7879 interrupt_input = 0;
7880 #endif
7882 /* Our VMS input only works by interrupts, as of now. */
7883 #ifdef VMS
7884 interrupt_input = 1;
7885 #endif
7887 sigfree ();
7888 dribble = 0;
7890 if (keyboard_init_hook)
7891 (*keyboard_init_hook) ();
7893 #ifdef POLL_FOR_INPUT
7894 poll_suppress_count = 1;
7895 start_polling ();
7896 #endif
7899 /* This type's only use is in syms_of_keyboard, to initialize the
7900 event header symbols and put properties on them. */
7901 struct event_head {
7902 Lisp_Object *var;
7903 char *name;
7904 Lisp_Object *kind;
7907 struct event_head head_table[] = {
7908 &Qmouse_movement, "mouse-movement", &Qmouse_movement,
7909 &Qscroll_bar_movement, "scroll-bar-movement", &Qmouse_movement,
7910 &Qswitch_frame, "switch-frame", &Qswitch_frame,
7911 &Qdelete_frame, "delete-frame", &Qdelete_frame,
7912 &Qiconify_frame, "iconify-frame", &Qiconify_frame,
7913 &Qmake_frame_visible, "make-frame-visible", &Qmake_frame_visible,
7916 syms_of_keyboard ()
7918 Qtimer_event_handler = intern ("timer-event-handler");
7919 staticpro (&Qtimer_event_handler);
7921 Qdisabled_command_hook = intern ("disabled-command-hook");
7922 staticpro (&Qdisabled_command_hook);
7924 Qself_insert_command = intern ("self-insert-command");
7925 staticpro (&Qself_insert_command);
7927 Qforward_char = intern ("forward-char");
7928 staticpro (&Qforward_char);
7930 Qbackward_char = intern ("backward-char");
7931 staticpro (&Qbackward_char);
7933 Qdisabled = intern ("disabled");
7934 staticpro (&Qdisabled);
7936 Qundefined = intern ("undefined");
7937 staticpro (&Qundefined);
7939 Qpre_command_hook = intern ("pre-command-hook");
7940 staticpro (&Qpre_command_hook);
7942 Qpost_command_hook = intern ("post-command-hook");
7943 staticpro (&Qpost_command_hook);
7945 Qpost_command_idle_hook = intern ("post-command-idle-hook");
7946 staticpro (&Qpost_command_idle_hook);
7948 Qdeferred_action_function = intern ("deferred-action-function");
7949 staticpro (&Qdeferred_action_function);
7951 Qcommand_hook_internal = intern ("command-hook-internal");
7952 staticpro (&Qcommand_hook_internal);
7954 Qfunction_key = intern ("function-key");
7955 staticpro (&Qfunction_key);
7956 Qmouse_click = intern ("mouse-click");
7957 staticpro (&Qmouse_click);
7959 Qmenu_enable = intern ("menu-enable");
7960 staticpro (&Qmenu_enable);
7962 Qmode_line = intern ("mode-line");
7963 staticpro (&Qmode_line);
7964 Qvertical_line = intern ("vertical-line");
7965 staticpro (&Qvertical_line);
7966 Qvertical_scroll_bar = intern ("vertical-scroll-bar");
7967 staticpro (&Qvertical_scroll_bar);
7968 Qmenu_bar = intern ("menu-bar");
7969 staticpro (&Qmenu_bar);
7971 Qabove_handle = intern ("above-handle");
7972 staticpro (&Qabove_handle);
7973 Qhandle = intern ("handle");
7974 staticpro (&Qhandle);
7975 Qbelow_handle = intern ("below-handle");
7976 staticpro (&Qbelow_handle);
7977 Qup = intern ("up");
7978 staticpro (&Qup);
7979 Qdown = intern ("down");
7980 staticpro (&Qdown);
7982 Qevent_kind = intern ("event-kind");
7983 staticpro (&Qevent_kind);
7984 Qevent_symbol_elements = intern ("event-symbol-elements");
7985 staticpro (&Qevent_symbol_elements);
7986 Qevent_symbol_element_mask = intern ("event-symbol-element-mask");
7987 staticpro (&Qevent_symbol_element_mask);
7988 Qmodifier_cache = intern ("modifier-cache");
7989 staticpro (&Qmodifier_cache);
7991 Qrecompute_lucid_menubar = intern ("recompute-lucid-menubar");
7992 staticpro (&Qrecompute_lucid_menubar);
7993 Qactivate_menubar_hook = intern ("activate-menubar-hook");
7994 staticpro (&Qactivate_menubar_hook);
7996 Qpolling_period = intern ("polling-period");
7997 staticpro (&Qpolling_period);
8000 struct event_head *p;
8002 for (p = head_table;
8003 p < head_table + (sizeof (head_table) / sizeof (head_table[0]));
8004 p++)
8006 *p->var = intern (p->name);
8007 staticpro (p->var);
8008 Fput (*p->var, Qevent_kind, *p->kind);
8009 Fput (*p->var, Qevent_symbol_elements, Fcons (*p->var, Qnil));
8013 button_down_location = Fmake_vector (make_number (NUM_MOUSE_BUTTONS), Qnil);
8014 staticpro (&button_down_location);
8017 int i;
8018 int len = sizeof (modifier_names) / sizeof (modifier_names[0]);
8020 modifier_symbols = Fmake_vector (make_number (len), Qnil);
8021 for (i = 0; i < len; i++)
8022 if (modifier_names[i])
8023 XVECTOR (modifier_symbols)->contents[i] = intern (modifier_names[i]);
8024 staticpro (&modifier_symbols);
8027 recent_keys = Fmake_vector (make_number (NUM_RECENT_KEYS), Qnil);
8028 staticpro (&recent_keys);
8030 this_command_keys = Fmake_vector (make_number (40), Qnil);
8031 staticpro (&this_command_keys);
8033 Qextended_command_history = intern ("extended-command-history");
8034 Fset (Qextended_command_history, Qnil);
8035 staticpro (&Qextended_command_history);
8037 kbd_buffer_frame_or_window
8038 = Fmake_vector (make_number (KBD_BUFFER_SIZE), Qnil);
8039 staticpro (&kbd_buffer_frame_or_window);
8041 accent_key_syms = Qnil;
8042 staticpro (&accent_key_syms);
8044 func_key_syms = Qnil;
8045 staticpro (&func_key_syms);
8047 mouse_syms = Qnil;
8048 staticpro (&mouse_syms);
8050 unread_switch_frame = Qnil;
8051 staticpro (&unread_switch_frame);
8053 internal_last_event_frame = Qnil;
8054 staticpro (&internal_last_event_frame);
8056 read_key_sequence_cmd = Qnil;
8057 staticpro (&read_key_sequence_cmd);
8059 defsubr (&Sevent_convert_list);
8060 defsubr (&Sread_key_sequence);
8061 defsubr (&Srecursive_edit);
8062 #ifdef HAVE_MOUSE
8063 defsubr (&Strack_mouse);
8064 #endif
8065 defsubr (&Sinput_pending_p);
8066 defsubr (&Scommand_execute);
8067 defsubr (&Srecent_keys);
8068 defsubr (&Sthis_command_keys);
8069 defsubr (&Sthis_single_command_keys);
8070 defsubr (&Sreset_this_command_lengths);
8071 defsubr (&Ssuspend_emacs);
8072 defsubr (&Sabort_recursive_edit);
8073 defsubr (&Sexit_recursive_edit);
8074 defsubr (&Srecursion_depth);
8075 defsubr (&Stop_level);
8076 defsubr (&Sdiscard_input);
8077 defsubr (&Sopen_dribble_file);
8078 defsubr (&Sset_input_mode);
8079 defsubr (&Scurrent_input_mode);
8080 defsubr (&Sexecute_extended_command);
8082 DEFVAR_LISP ("last-command-char", &last_command_char,
8083 "Last input event that was part of a command.");
8085 DEFVAR_LISP_NOPRO ("last-command-event", &last_command_char,
8086 "Last input event that was part of a command.");
8088 DEFVAR_LISP ("last-nonmenu-event", &last_nonmenu_event,
8089 "Last input event in a command, except for mouse menu events.\n\
8090 Mouse menus give back keys that don't look like mouse events;\n\
8091 this variable holds the actual mouse event that led to the menu,\n\
8092 so that you can determine whether the command was run by mouse or not.");
8094 DEFVAR_LISP ("last-input-char", &last_input_char,
8095 "Last input event.");
8097 DEFVAR_LISP_NOPRO ("last-input-event", &last_input_char,
8098 "Last input event.");
8100 DEFVAR_LISP ("unread-command-events", &Vunread_command_events,
8101 "List of objects to be read as next command input events.");
8103 DEFVAR_INT ("unread-command-char", &unread_command_char,
8104 "If not -1, an object to be read as next command input event.");
8106 DEFVAR_LISP ("meta-prefix-char", &meta_prefix_char,
8107 "Meta-prefix character code. Meta-foo as command input\n\
8108 turns into this character followed by foo.");
8109 XSETINT (meta_prefix_char, 033);
8111 DEFVAR_KBOARD ("last-command", Vlast_command,
8112 "The last command executed. Normally a symbol with a function definition,\n\
8113 but can be whatever was found in the keymap, or whatever the variable\n\
8114 `this-command' was set to by that command.\n\
8116 The value `mode-exit' is special; it means that the previous command\n\
8117 read an event that told it to exit, and it did so and unread that event.\n\
8118 In other words, the present command is the event that made the previous\n\
8119 command exit.\n\
8121 The value `kill-region' is special; it means that the previous command\n\
8122 was a kill command.");
8124 DEFVAR_LISP ("this-command", &this_command,
8125 "The command now being executed.\n\
8126 The command can set this variable; whatever is put here\n\
8127 will be in `last-command' during the following command.");
8128 this_command = Qnil;
8130 DEFVAR_INT ("auto-save-interval", &auto_save_interval,
8131 "*Number of keyboard input characters between auto-saves.\n\
8132 Zero means disable autosaving due to number of characters typed.");
8133 auto_save_interval = 300;
8135 DEFVAR_LISP ("auto-save-timeout", &Vauto_save_timeout,
8136 "*Number of seconds idle time before auto-save.\n\
8137 Zero or nil means disable auto-saving due to idleness.\n\
8138 After auto-saving due to this many seconds of idle time,\n\
8139 Emacs also does a garbage collection if that seems to be warranted.");
8140 XSETFASTINT (Vauto_save_timeout, 30);
8142 DEFVAR_INT ("echo-keystrokes", &echo_keystrokes,
8143 "*Nonzero means echo unfinished commands after this many seconds of pause.");
8144 echo_keystrokes = 1;
8146 DEFVAR_INT ("polling-period", &polling_period,
8147 "*Interval between polling for input during Lisp execution.\n\
8148 The reason for polling is to make C-g work to stop a running program.\n\
8149 Polling is needed only when using X windows and SIGIO does not work.\n\
8150 Polling is automatically disabled in all other cases.");
8151 polling_period = 2;
8153 DEFVAR_LISP ("double-click-time", &Vdouble_click_time,
8154 "*Maximum time between mouse clicks to make a double-click.\n\
8155 Measured in milliseconds. nil means disable double-click recognition;\n\
8156 t means double-clicks have no time limit and are detected\n\
8157 by position only.");
8158 Vdouble_click_time = make_number (500);
8160 DEFVAR_BOOL ("inhibit-local-menu-bar-menus", &inhibit_local_menu_bar_menus,
8161 "*Non-nil means inhibit local map menu bar menus.");
8162 inhibit_local_menu_bar_menus = 0;
8164 DEFVAR_INT ("num-input-keys", &num_input_keys,
8165 "Number of complete key sequences read as input so far.\n\
8166 This includes key sequences read from keyboard macros.\n\
8167 The number is effectively the number of interactive command invocations.");
8168 num_input_keys = 0;
8170 DEFVAR_INT ("num-nonmacro-input-events", &num_nonmacro_input_events,
8171 "Number of input events read from the keyboard so far.\n\
8172 This does not include events generated by keyboard macros.");
8173 num_nonmacro_input_events = 0;
8175 DEFVAR_LISP ("last-event-frame", &Vlast_event_frame,
8176 "The frame in which the most recently read event occurred.\n\
8177 If the last event came from a keyboard macro, this is set to `macro'.");
8178 Vlast_event_frame = Qnil;
8180 /* This variable is set up in sysdep.c. */
8181 DEFVAR_LISP ("tty-erase-char", &Vtty_erase_char,
8182 "The ERASE character as set by the user with stty.");
8184 DEFVAR_LISP ("help-char", &Vhelp_char,
8185 "Character to recognize as meaning Help.\n\
8186 When it is read, do `(eval help-form)', and display result if it's a string.\n\
8187 If the value of `help-form' is nil, this char can be read normally.");
8188 XSETINT (Vhelp_char, Ctl ('H'));
8190 DEFVAR_LISP ("help-event-list", &Vhelp_event_list,
8191 "List of input events to recognize as meaning Help.\n\
8192 These work just like the value of `help-char' (see that).");
8193 Vhelp_event_list = Qnil;
8195 DEFVAR_LISP ("help-form", &Vhelp_form,
8196 "Form to execute when character `help-char' is read.\n\
8197 If the form returns a string, that string is displayed.\n\
8198 If `help-form' is nil, the help char is not recognized.");
8199 Vhelp_form = Qnil;
8201 DEFVAR_LISP ("prefix-help-command", &Vprefix_help_command,
8202 "Command to run when `help-char' character follows a prefix key.\n\
8203 This command is used only when there is no actual binding\n\
8204 for that character after that prefix key.");
8205 Vprefix_help_command = Qnil;
8207 DEFVAR_LISP ("top-level", &Vtop_level,
8208 "Form to evaluate when Emacs starts up.\n\
8209 Useful to set before you dump a modified Emacs.");
8210 Vtop_level = Qnil;
8212 DEFVAR_LISP ("keyboard-translate-table", &Vkeyboard_translate_table,
8213 "Translate table for keyboard input, or nil.\n\
8214 Each character is looked up in this string and the contents used instead.\n\
8215 The value may be a string, a vector, or a char-table.\n\
8216 If it is a string or vector of length N,\n\
8217 character codes N and up are untranslated.\n\
8218 In a vector or a char-table, an element which is nil means \"no translation\".");
8219 Vkeyboard_translate_table = Qnil;
8221 DEFVAR_BOOL ("cannot-suspend", &cannot_suspend,
8222 "Non-nil means to always spawn a subshell instead of suspending,\n\
8223 even if the operating system has support for stopping a process.");
8224 cannot_suspend = 0;
8226 DEFVAR_BOOL ("menu-prompting", &menu_prompting,
8227 "Non-nil means prompt with menus when appropriate.\n\
8228 This is done when reading from a keymap that has a prompt string,\n\
8229 for elements that have prompt strings.\n\
8230 The menu is displayed on the screen\n\
8231 if X menus were enabled at configuration\n\
8232 time and the previous event was a mouse click prefix key.\n\
8233 Otherwise, menu prompting uses the echo area.");
8234 menu_prompting = 1;
8236 DEFVAR_LISP ("menu-prompt-more-char", &menu_prompt_more_char,
8237 "Character to see next line of menu prompt.\n\
8238 Type this character while in a menu prompt to rotate around the lines of it.");
8239 XSETINT (menu_prompt_more_char, ' ');
8241 DEFVAR_INT ("extra-keyboard-modifiers", &extra_keyboard_modifiers,
8242 "A mask of additional modifier keys to use with every keyboard character.\n\
8243 Emacs applies the modifiers of the character stored here to each keyboard\n\
8244 character it reads. For example, after evaluating the expression\n\
8245 (setq extra-keyboard-modifiers ?\\C-x)\n\
8246 all input characters will have the control modifier applied to them.\n\
8248 Note that the character ?\\C-@, equivalent to the integer zero, does\n\
8249 not count as a control character; rather, it counts as a character\n\
8250 with no modifiers; thus, setting `extra-keyboard-modifiers' to zero\n\
8251 cancels any modification.");
8252 extra_keyboard_modifiers = 0;
8254 DEFVAR_LISP ("deactivate-mark", &Vdeactivate_mark,
8255 "If an editing command sets this to t, deactivate the mark afterward.\n\
8256 The command loop sets this to nil before each command,\n\
8257 and tests the value when the command returns.\n\
8258 Buffer modification stores t in this variable.");
8259 Vdeactivate_mark = Qnil;
8261 DEFVAR_LISP ("command-hook-internal", &Vcommand_hook_internal,
8262 "Temporary storage of pre-command-hook or post-command-hook.");
8263 Vcommand_hook_internal = Qnil;
8265 DEFVAR_LISP ("pre-command-hook", &Vpre_command_hook,
8266 "Normal hook run before each command is executed.\n\
8267 Errors running the hook are caught and ignored.");
8268 Vpre_command_hook = Qnil;
8270 DEFVAR_LISP ("post-command-hook", &Vpost_command_hook,
8271 "Normal hook run after each command is executed.\n\
8272 Errors running the hook are caught and ignored.");
8273 Vpost_command_hook = Qnil;
8275 DEFVAR_LISP ("post-command-idle-hook", &Vpost_command_idle_hook,
8276 "Normal hook run after each command is executed, if idle.\n\
8277 Errors running the hook are caught and ignored.\n\
8278 This feature is obsolete; use idle timers instead. See `etc/NEWS'.");
8279 Vpost_command_idle_hook = Qnil;
8281 DEFVAR_INT ("post-command-idle-delay", &post_command_idle_delay,
8282 "Delay time before running `post-command-idle-hook'.\n\
8283 This is measured in microseconds.");
8284 post_command_idle_delay = 100000;
8286 #if 0
8287 DEFVAR_LISP ("echo-area-clear-hook", ...,
8288 "Normal hook run when clearing the echo area.");
8289 #endif
8290 Qecho_area_clear_hook = intern ("echo-area-clear-hook");
8291 XSYMBOL (Qecho_area_clear_hook)->value = Qnil;
8293 DEFVAR_LISP ("lucid-menu-bar-dirty-flag", &Vlucid_menu_bar_dirty_flag,
8294 "t means menu bar, specified Lucid style, needs to be recomputed.");
8295 Vlucid_menu_bar_dirty_flag = Qnil;
8297 DEFVAR_LISP ("menu-bar-final-items", &Vmenu_bar_final_items,
8298 "List of menu bar items to move to the end of the menu bar.\n\
8299 The elements of the list are event types that may have menu bar bindings.");
8300 Vmenu_bar_final_items = Qnil;
8302 DEFVAR_KBOARD ("overriding-terminal-local-map",
8303 Voverriding_terminal_local_map,
8304 "Per-terminal keymap that overrides all other local keymaps.\n\
8305 If this variable is non-nil, it is used as a keymap instead of the\n\
8306 buffer's local map, and the minor mode keymaps and text property keymaps.\n\
8307 This variable is intended to let commands such as `universal-argumemnt'\n\
8308 set up a different keymap for reading the next command.");
8310 DEFVAR_LISP ("overriding-local-map", &Voverriding_local_map,
8311 "Keymap that overrides all other local keymaps.\n\
8312 If this variable is non-nil, it is used as a keymap instead of the\n\
8313 buffer's local map, and the minor mode keymaps and text property keymaps.");
8314 Voverriding_local_map = Qnil;
8316 DEFVAR_LISP ("overriding-local-map-menu-flag", &Voverriding_local_map_menu_flag,
8317 "Non-nil means `overriding-local-map' applies to the menu bar.\n\
8318 Otherwise, the menu bar continues to reflect the buffer's local map\n\
8319 and the minor mode maps regardless of `overriding-local-map'.");
8320 Voverriding_local_map_menu_flag = Qnil;
8322 DEFVAR_LISP ("special-event-map", &Vspecial_event_map,
8323 "Keymap defining bindings for special events to execute at low level.");
8324 Vspecial_event_map = Fcons (intern ("keymap"), Qnil);
8326 DEFVAR_LISP ("track-mouse", &do_mouse_tracking,
8327 "*Non-nil means generate motion events for mouse motion.");
8329 DEFVAR_KBOARD ("system-key-alist", Vsystem_key_alist,
8330 "Alist of system-specific X windows key symbols.\n\
8331 Each element should have the form (N . SYMBOL) where N is the\n\
8332 numeric keysym code (sans the \"system-specific\" bit 1<<28)\n\
8333 and SYMBOL is its name.");
8335 DEFVAR_LISP ("deferred-action-list", &Vdeferred_action_list,
8336 "List of deferred actions to be performed at a later time.\n\
8337 The precise format isn't relevant here; we just check whether it is nil.");
8338 Vdeferred_action_list = Qnil;
8340 DEFVAR_LISP ("deferred-action-function", &Vdeferred_action_function,
8341 "Function to call to handle deferred actions, after each command.\n\
8342 This function is called with no arguments after each command\n\
8343 whenever `deferred-action-list' is non-nil.");
8344 Vdeferred_action_function = Qnil;
8346 DEFVAR_LISP ("suggest-key-bindings", &Vsuggest_key_bindings,
8347 "Non-nil means show the equivalent key-binding when M-x command has one.\n\
8348 The value can be a length of time to show the message for.\n\
8349 If the value is non-nil and not a number, we wait 2 seconds.");
8350 Vsuggest_key_bindings = Qt;
8352 DEFVAR_LISP ("timer-list", &Vtimer_list,
8353 "List of active absolute time timers in order of increasing time");
8354 Vtimer_list = Qnil;
8356 DEFVAR_LISP ("timer-idle-list", &Vtimer_idle_list,
8357 "List of active idle-time timers in order of increasing time");
8358 Vtimer_idle_list = Qnil;
8361 keys_of_keyboard ()
8363 initial_define_key (global_map, Ctl ('Z'), "suspend-emacs");
8364 initial_define_key (control_x_map, Ctl ('Z'), "suspend-emacs");
8365 initial_define_key (meta_map, Ctl ('C'), "exit-recursive-edit");
8366 initial_define_key (global_map, Ctl (']'), "abort-recursive-edit");
8367 initial_define_key (meta_map, 'x', "execute-extended-command");
8369 initial_define_lispy_key (Vspecial_event_map, "delete-frame",
8370 "handle-delete-frame");
8371 initial_define_lispy_key (Vspecial_event_map, "iconify-frame",
8372 "ignore-event");
8373 initial_define_lispy_key (Vspecial_event_map, "make-frame-visible",
8374 "ignore-event");