Fix crash condition when an X server connection is broken. (Reported by Vincent Bernat.)
[emacs.git] / src / keyboard.c
blob3da16b822717d48040c6eced5d32dfa5eb7583ca
1 /* Keyboard and mouse input; editor command loop.
2 Copyright (C) 1985, 1986, 1987, 1988, 1989, 1993, 1994, 1995, 1996, 1997,
3 1999, 2000, 2001, 2002, 2003, 2004, 2005 Free Software Foundation, Inc.
5 This file is part of GNU Emacs.
7 GNU Emacs is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 2, or (at your option)
10 any later version.
12 GNU Emacs is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
17 You should have received a copy of the GNU General Public License
18 along with GNU Emacs; see the file COPYING. If not, write to
19 the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
20 Boston, MA 02111-1307, USA. */
22 #include <config.h>
23 #include <signal.h>
24 #include <stdio.h>
25 #include "lisp.h"
26 #include "termchar.h"
27 #include "termopts.h"
28 #include "frame.h"
29 #include "termhooks.h"
30 #include "macros.h"
31 #include "keyboard.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 "syntax.h"
39 #include "intervals.h"
40 #include "keymap.h"
41 #include "blockinput.h"
42 #include "puresize.h"
43 #include "systime.h"
44 #include "atimer.h"
45 #include <setjmp.h>
46 #include <errno.h>
48 #ifdef HAVE_GTK_AND_PTHREAD
49 #include <pthread.h>
50 #endif
51 #ifdef MSDOS
52 #include "msdos.h"
53 #include <time.h>
54 #else /* not MSDOS */
55 #ifndef VMS
56 #include <sys/ioctl.h>
57 #endif
58 #endif /* not MSDOS */
60 #include "syssignal.h"
62 #include <sys/types.h>
63 #ifdef HAVE_UNISTD_H
64 #include <unistd.h>
65 #endif
67 #ifdef HAVE_FCNTL_H
68 #include <fcntl.h>
69 #endif
71 /* This is to get the definitions of the XK_ symbols. */
72 #ifdef HAVE_X_WINDOWS
73 #include "xterm.h"
74 #endif
76 #ifdef HAVE_NTGUI
77 #include "w32term.h"
78 #endif /* HAVE_NTGUI */
80 #ifdef MAC_OS
81 #include "macterm.h"
82 #endif
84 #ifndef USE_CRT_DLL
85 extern int errno;
86 #endif
88 /* Variables for blockinput.h: */
90 /* Non-zero if interrupt input is blocked right now. */
91 int interrupt_input_blocked;
93 /* Nonzero means an input interrupt has arrived
94 during the current critical section. */
95 int interrupt_input_pending;
98 #ifdef HAVE_WINDOW_SYSTEM
99 /* Make all keyboard buffers much bigger when using X windows. */
100 #ifdef MAC_OS8
101 /* But not too big (local data > 32K error) if on Mac OS Classic. */
102 #define KBD_BUFFER_SIZE 512
103 #else
104 #define KBD_BUFFER_SIZE 4096
105 #endif
106 #else /* No X-windows, character input */
107 #define KBD_BUFFER_SIZE 4096
108 #endif /* No X-windows */
110 #define abs(x) ((x) >= 0 ? (x) : -(x))
112 /* Following definition copied from eval.c */
114 struct backtrace
116 struct backtrace *next;
117 Lisp_Object *function;
118 Lisp_Object *args; /* Points to vector of args. */
119 int nargs; /* length of vector. If nargs is UNEVALLED,
120 args points to slot holding list of
121 unevalled args */
122 char evalargs;
123 /* Nonzero means call value of debugger when done with this operation. */
124 char debug_on_exit;
127 #ifdef MULTI_KBOARD
128 KBOARD *initial_kboard;
129 KBOARD *current_kboard;
130 KBOARD *all_kboards;
131 int single_kboard;
132 #else
133 KBOARD the_only_kboard;
134 #endif
136 /* Non-nil disable property on a command means
137 do not execute it; call disabled-command-function's value instead. */
138 Lisp_Object Qdisabled, Qdisabled_command_function;
140 #define NUM_RECENT_KEYS (100)
141 int recent_keys_index; /* Index for storing next element into recent_keys */
142 int total_keys; /* Total number of elements stored into recent_keys */
143 Lisp_Object recent_keys; /* A vector, holding the last 100 keystrokes */
145 /* Vector holding the key sequence that invoked the current command.
146 It is reused for each command, and it may be longer than the current
147 sequence; this_command_key_count indicates how many elements
148 actually mean something.
149 It's easier to staticpro a single Lisp_Object than an array. */
150 Lisp_Object this_command_keys;
151 int this_command_key_count;
153 /* 1 after calling Freset_this_command_lengths.
154 Usually it is 0. */
155 int this_command_key_count_reset;
157 /* This vector is used as a buffer to record the events that were actually read
158 by read_key_sequence. */
159 Lisp_Object raw_keybuf;
160 int raw_keybuf_count;
162 #define GROW_RAW_KEYBUF \
163 if (raw_keybuf_count == XVECTOR (raw_keybuf)->size) \
165 int newsize = 2 * XVECTOR (raw_keybuf)->size; \
166 Lisp_Object new; \
167 new = Fmake_vector (make_number (newsize), Qnil); \
168 bcopy (XVECTOR (raw_keybuf)->contents, XVECTOR (new)->contents, \
169 raw_keybuf_count * sizeof (Lisp_Object)); \
170 raw_keybuf = new; \
173 /* Number of elements of this_command_keys
174 that precede this key sequence. */
175 int this_single_command_key_start;
177 /* Record values of this_command_key_count and echo_length ()
178 before this command was read. */
179 static int before_command_key_count;
180 static int before_command_echo_length;
182 extern int minbuf_level;
184 extern int message_enable_multibyte;
186 extern struct backtrace *backtrace_list;
188 /* If non-nil, the function that implements the display of help.
189 It's called with one argument, the help string to display. */
191 Lisp_Object Vshow_help_function;
193 /* If a string, the message displayed before displaying a help-echo
194 in the echo area. */
196 Lisp_Object Vpre_help_message;
198 /* Nonzero means do menu prompting. */
200 static int menu_prompting;
202 /* Character to see next line of menu prompt. */
204 static Lisp_Object menu_prompt_more_char;
206 /* For longjmp to where kbd input is being done. */
208 static jmp_buf getcjmp;
210 /* True while doing kbd input. */
211 int waiting_for_input;
213 /* True while displaying for echoing. Delays C-g throwing. */
215 int echoing;
217 /* Non-null means we can start echoing at the next input pause even
218 though there is something in the echo area. */
220 static struct kboard *ok_to_echo_at_next_pause;
222 /* The kboard last echoing, or null for none. Reset to 0 in
223 cancel_echoing. If non-null, and a current echo area message
224 exists, and echo_message_buffer is eq to the current message
225 buffer, we know that the message comes from echo_kboard. */
227 struct kboard *echo_kboard;
229 /* The buffer used for echoing. Set in echo_now, reset in
230 cancel_echoing. */
232 Lisp_Object echo_message_buffer;
234 /* Nonzero means disregard local maps for the menu bar. */
235 static int inhibit_local_menu_bar_menus;
237 /* Nonzero means C-g should cause immediate error-signal. */
238 int immediate_quit;
240 /* The user's ERASE setting. */
241 Lisp_Object Vtty_erase_char;
243 /* Character to recognize as the help char. */
244 Lisp_Object Vhelp_char;
246 /* List of other event types to recognize as meaning "help". */
247 Lisp_Object Vhelp_event_list;
249 /* Form to execute when help char is typed. */
250 Lisp_Object Vhelp_form;
252 /* Command to run when the help character follows a prefix key. */
253 Lisp_Object Vprefix_help_command;
255 /* List of items that should move to the end of the menu bar. */
256 Lisp_Object Vmenu_bar_final_items;
258 /* Non-nil means show the equivalent key-binding for
259 any M-x command that has one.
260 The value can be a length of time to show the message for.
261 If the value is non-nil and not a number, we wait 2 seconds. */
262 Lisp_Object Vsuggest_key_bindings;
264 /* How long to display an echo-area message when the minibuffer is active.
265 If the value is not a number, such messages don't time out. */
266 Lisp_Object Vminibuffer_message_timeout;
268 /* Character that causes a quit. Normally C-g.
270 If we are running on an ordinary terminal, this must be an ordinary
271 ASCII char, since we want to make it our interrupt character.
273 If we are not running on an ordinary terminal, it still needs to be
274 an ordinary ASCII char. This character needs to be recognized in
275 the input interrupt handler. At this point, the keystroke is
276 represented as a struct input_event, while the desired quit
277 character is specified as a lispy event. The mapping from struct
278 input_events to lispy events cannot run in an interrupt handler,
279 and the reverse mapping is difficult for anything but ASCII
280 keystrokes.
282 FOR THESE ELABORATE AND UNSATISFYING REASONS, quit_char must be an
283 ASCII character. */
284 int quit_char;
286 extern Lisp_Object current_global_map;
287 extern int minibuf_level;
289 /* If non-nil, this is a map that overrides all other local maps. */
290 Lisp_Object Voverriding_local_map;
292 /* If non-nil, Voverriding_local_map applies to the menu bar. */
293 Lisp_Object Voverriding_local_map_menu_flag;
295 /* Keymap that defines special misc events that should
296 be processed immediately at a low level. */
297 Lisp_Object Vspecial_event_map;
299 /* Current depth in recursive edits. */
300 int command_loop_level;
302 /* Total number of times command_loop has read a key sequence. */
303 EMACS_INT num_input_keys;
305 /* Last input character read as a command. */
306 Lisp_Object last_command_char;
308 /* Last input character read as a command, not counting menus
309 reached by the mouse. */
310 Lisp_Object last_nonmenu_event;
312 /* Last input character read for any purpose. */
313 Lisp_Object last_input_char;
315 /* If not Qnil, a list of objects to be read as subsequent command input. */
316 Lisp_Object Vunread_command_events;
318 /* If not Qnil, a list of objects to be read as subsequent command input
319 including input method processing. */
320 Lisp_Object Vunread_input_method_events;
322 /* If not Qnil, a list of objects to be read as subsequent command input
323 but NOT including input method processing. */
324 Lisp_Object Vunread_post_input_method_events;
326 /* If not -1, an event to be read as subsequent command input. */
327 EMACS_INT unread_command_char;
329 /* If not Qnil, this is a switch-frame event which we decided to put
330 off until the end of a key sequence. This should be read as the
331 next command input, after any unread_command_events.
333 read_key_sequence uses this to delay switch-frame events until the
334 end of the key sequence; Fread_char uses it to put off switch-frame
335 events until a non-ASCII event is acceptable as input. */
336 Lisp_Object unread_switch_frame;
338 /* A mask of extra modifier bits to put into every keyboard char. */
339 EMACS_INT extra_keyboard_modifiers;
341 /* Char to use as prefix when a meta character is typed in.
342 This is bound on entry to minibuffer in case ESC is changed there. */
344 Lisp_Object meta_prefix_char;
346 /* Last size recorded for a current buffer which is not a minibuffer. */
347 static int last_non_minibuf_size;
349 /* Number of idle seconds before an auto-save and garbage collection. */
350 static Lisp_Object Vauto_save_timeout;
352 /* Total number of times read_char has returned. */
353 int num_input_events;
355 /* Total number of times read_char has returned, outside of macros. */
356 EMACS_INT num_nonmacro_input_events;
358 /* Auto-save automatically when this many characters have been typed
359 since the last time. */
361 static EMACS_INT auto_save_interval;
363 /* Value of num_nonmacro_input_events as of last auto save. */
365 int last_auto_save;
367 /* The command being executed by the command loop.
368 Commands may set this, and the value set will be copied into
369 current_kboard->Vlast_command instead of the actual command. */
370 Lisp_Object Vthis_command;
372 /* This is like Vthis_command, except that commands never set it. */
373 Lisp_Object real_this_command;
375 /* If the lookup of the command returns a binding, the original
376 command is stored in this-original-command. It is nil otherwise. */
377 Lisp_Object Vthis_original_command;
379 /* The value of point when the last command was executed. */
380 int last_point_position;
382 /* The buffer that was current when the last command was started. */
383 Lisp_Object last_point_position_buffer;
385 /* The frame in which the last input event occurred, or Qmacro if the
386 last event came from a macro. We use this to determine when to
387 generate switch-frame events. This may be cleared by functions
388 like Fselect_frame, to make sure that a switch-frame event is
389 generated by the next character. */
390 Lisp_Object internal_last_event_frame;
392 /* A user-visible version of the above, intended to allow users to
393 figure out where the last event came from, if the event doesn't
394 carry that information itself (i.e. if it was a character). */
395 Lisp_Object Vlast_event_frame;
397 /* The timestamp of the last input event we received from the X server.
398 X Windows wants this for selection ownership. */
399 unsigned long last_event_timestamp;
401 Lisp_Object Qself_insert_command;
402 Lisp_Object Qforward_char;
403 Lisp_Object Qbackward_char;
404 Lisp_Object Qundefined;
405 Lisp_Object Qtimer_event_handler;
407 /* read_key_sequence stores here the command definition of the
408 key sequence that it reads. */
409 Lisp_Object read_key_sequence_cmd;
411 /* Echo unfinished commands after this many seconds of pause. */
412 Lisp_Object Vecho_keystrokes;
414 /* Form to evaluate (if non-nil) when Emacs is started. */
415 Lisp_Object Vtop_level;
417 /* User-supplied table to translate input characters. */
418 Lisp_Object Vkeyboard_translate_table;
420 /* Keymap mapping ASCII function key sequences onto their preferred forms. */
421 extern Lisp_Object Vfunction_key_map;
423 /* Another keymap that maps key sequences into key sequences.
424 This one takes precedence over ordinary definitions. */
425 extern Lisp_Object Vkey_translation_map;
427 /* If non-nil, this implements the current input method. */
428 Lisp_Object Vinput_method_function;
429 Lisp_Object Qinput_method_function;
431 /* When we call Vinput_method_function,
432 this holds the echo area message that was just erased. */
433 Lisp_Object Vinput_method_previous_message;
435 /* Non-nil means deactivate the mark at end of this command. */
436 Lisp_Object Vdeactivate_mark;
438 /* Menu bar specified in Lucid Emacs fashion. */
440 Lisp_Object Vlucid_menu_bar_dirty_flag;
441 Lisp_Object Qrecompute_lucid_menubar, Qactivate_menubar_hook;
443 Lisp_Object Qecho_area_clear_hook;
445 /* Hooks to run before and after each command. */
446 Lisp_Object Qpre_command_hook, Vpre_command_hook;
447 Lisp_Object Qpost_command_hook, Vpost_command_hook;
448 Lisp_Object Qcommand_hook_internal, Vcommand_hook_internal;
449 /* Hook run after a command if there's no more input soon. */
450 Lisp_Object Qpost_command_idle_hook, Vpost_command_idle_hook;
452 /* Delay time in microseconds before running post-command-idle-hook. */
453 EMACS_INT post_command_idle_delay;
455 /* List of deferred actions to be performed at a later time.
456 The precise format isn't relevant here; we just check whether it is nil. */
457 Lisp_Object Vdeferred_action_list;
459 /* Function to call to handle deferred actions, when there are any. */
460 Lisp_Object Vdeferred_action_function;
461 Lisp_Object Qdeferred_action_function;
463 Lisp_Object Qinput_method_exit_on_first_char;
464 Lisp_Object Qinput_method_use_echo_area;
466 /* File in which we write all commands we read. */
467 FILE *dribble;
469 /* Nonzero if input is available. */
470 int input_pending;
472 /* Non-zero means force key bindings update in parse_menu_item. */
474 int update_menu_bindings;
476 extern char *pending_malloc_warning;
478 /* Circular buffer for pre-read keyboard input. */
480 static struct input_event kbd_buffer[KBD_BUFFER_SIZE];
482 /* Pointer to next available character in kbd_buffer.
483 If kbd_fetch_ptr == kbd_store_ptr, the buffer is empty.
484 This may be kbd_buffer + KBD_BUFFER_SIZE, meaning that the
485 next available char is in kbd_buffer[0]. */
486 static struct input_event *kbd_fetch_ptr;
488 /* Pointer to next place to store character in kbd_buffer. This
489 may be kbd_buffer + KBD_BUFFER_SIZE, meaning that the next
490 character should go in kbd_buffer[0]. */
491 static struct input_event * volatile kbd_store_ptr;
493 /* The above pair of variables forms a "queue empty" flag. When we
494 enqueue a non-hook event, we increment kbd_store_ptr. When we
495 dequeue a non-hook event, we increment kbd_fetch_ptr. We say that
496 there is input available iff the two pointers are not equal.
498 Why not just have a flag set and cleared by the enqueuing and
499 dequeuing functions? Such a flag could be screwed up by interrupts
500 at inopportune times. */
502 /* If this flag is non-nil, we check mouse_moved to see when the
503 mouse moves, and motion events will appear in the input stream.
504 Otherwise, mouse motion is ignored. */
505 Lisp_Object do_mouse_tracking;
507 /* Symbols to head events. */
508 Lisp_Object Qmouse_movement;
509 Lisp_Object Qscroll_bar_movement;
510 Lisp_Object Qswitch_frame;
511 Lisp_Object Qdelete_frame;
512 Lisp_Object Qiconify_frame;
513 Lisp_Object Qmake_frame_visible;
514 Lisp_Object Qselect_window;
515 Lisp_Object Qhelp_echo;
517 /* Symbols to denote kinds of events. */
518 Lisp_Object Qfunction_key;
519 Lisp_Object Qmouse_click;
520 #ifdef WINDOWSNT
521 Lisp_Object Qlanguage_change;
522 #endif
523 Lisp_Object Qdrag_n_drop;
524 Lisp_Object Qsave_session;
526 /* Lisp_Object Qmouse_movement; - also an event header */
528 /* Properties of event headers. */
529 Lisp_Object Qevent_kind;
530 Lisp_Object Qevent_symbol_elements;
532 /* menu item parts */
533 Lisp_Object Qmenu_alias;
534 Lisp_Object Qmenu_enable;
535 Lisp_Object QCenable, QCvisible, QChelp, QCfilter, QCkeys, QCkey_sequence;
536 Lisp_Object QCbutton, QCtoggle, QCradio;
537 extern Lisp_Object Vdefine_key_rebound_commands;
538 extern Lisp_Object Qmenu_item;
540 /* An event header symbol HEAD may have a property named
541 Qevent_symbol_element_mask, which is of the form (BASE MODIFIERS);
542 BASE is the base, unmodified version of HEAD, and MODIFIERS is the
543 mask of modifiers applied to it. If present, this is used to help
544 speed up parse_modifiers. */
545 Lisp_Object Qevent_symbol_element_mask;
547 /* An unmodified event header BASE may have a property named
548 Qmodifier_cache, which is an alist mapping modifier masks onto
549 modified versions of BASE. If present, this helps speed up
550 apply_modifiers. */
551 Lisp_Object Qmodifier_cache;
553 /* Symbols to use for parts of windows. */
554 Lisp_Object Qmode_line;
555 Lisp_Object Qvertical_line;
556 Lisp_Object Qvertical_scroll_bar;
557 Lisp_Object Qmenu_bar;
558 extern Lisp_Object Qleft_margin, Qright_margin;
559 extern Lisp_Object Qleft_fringe, Qright_fringe;
560 extern Lisp_Object QCmap;
562 Lisp_Object recursive_edit_unwind (), command_loop ();
563 Lisp_Object Fthis_command_keys ();
564 Lisp_Object Qextended_command_history;
565 EMACS_TIME timer_check ();
567 extern Lisp_Object Vhistory_length, Vtranslation_table_for_input;
569 extern char *x_get_keysym_name ();
571 static void record_menu_key ();
572 static int echo_length ();
574 Lisp_Object Qpolling_period;
576 /* List of absolute timers. Appears in order of next scheduled event. */
577 Lisp_Object Vtimer_list;
579 /* List of idle time timers. Appears in order of next scheduled event. */
580 Lisp_Object Vtimer_idle_list;
582 /* Incremented whenever a timer is run. */
583 int timers_run;
585 extern Lisp_Object Vprint_level, Vprint_length;
587 /* Address (if not 0) of EMACS_TIME to zero out if a SIGIO interrupt
588 happens. */
589 EMACS_TIME *input_available_clear_time;
591 /* Nonzero means use SIGIO interrupts; zero means use CBREAK mode.
592 Default is 1 if INTERRUPT_INPUT is defined. */
593 int interrupt_input;
595 /* Nonzero while interrupts are temporarily deferred during redisplay. */
596 int interrupts_deferred;
598 /* Allow m- file to inhibit use of FIONREAD. */
599 #ifdef BROKEN_FIONREAD
600 #undef FIONREAD
601 #endif
603 /* We are unable to use interrupts if FIONREAD is not available,
604 so flush SIGIO so we won't try. */
605 #if !defined (FIONREAD)
606 #ifdef SIGIO
607 #undef SIGIO
608 #endif
609 #endif
611 /* If we support a window system, turn on the code to poll periodically
612 to detect C-g. It isn't actually used when doing interrupt input. */
613 #if defined(HAVE_WINDOW_SYSTEM) && !defined(USE_ASYNC_EVENTS)
614 #define POLL_FOR_INPUT
615 #endif
617 /* After a command is executed, if point is moved into a region that
618 has specific properties (e.g. composition, display), we adjust
619 point to the boundary of the region. But, if a command sets this
620 variable to non-nil, we suppress this point adjustment. This
621 variable is set to nil before reading a command. */
623 Lisp_Object Vdisable_point_adjustment;
625 /* If non-nil, always disable point adjustment. */
627 Lisp_Object Vglobal_disable_point_adjustment;
629 /* The time when Emacs started being idle. */
631 static EMACS_TIME timer_idleness_start_time;
633 /* After Emacs stops being idle, this saves the last value
634 of timer_idleness_start_time from when it was idle. */
636 static EMACS_TIME timer_last_idleness_start_time;
639 /* Global variable declarations. */
641 /* Flags for readable_events. */
642 #define READABLE_EVENTS_DO_TIMERS_NOW (1 << 0)
643 #define READABLE_EVENTS_FILTER_EVENTS (1 << 1)
644 #define READABLE_EVENTS_IGNORE_SQUEEZABLES (1 << 2)
646 /* Function for init_keyboard to call with no args (if nonzero). */
647 void (*keyboard_init_hook) ();
649 static int read_avail_input P_ ((int));
650 static void get_input_pending P_ ((int *, int));
651 static int readable_events P_ ((int));
652 static Lisp_Object read_char_x_menu_prompt P_ ((int, Lisp_Object *,
653 Lisp_Object, int *));
654 static Lisp_Object read_char_x_menu_prompt ();
655 static Lisp_Object read_char_minibuf_menu_prompt P_ ((int, int,
656 Lisp_Object *));
657 static Lisp_Object make_lispy_event P_ ((struct input_event *));
658 #ifdef HAVE_MOUSE
659 static Lisp_Object make_lispy_movement P_ ((struct frame *, Lisp_Object,
660 enum scroll_bar_part,
661 Lisp_Object, Lisp_Object,
662 unsigned long));
663 #endif
664 static Lisp_Object modify_event_symbol P_ ((int, unsigned, Lisp_Object,
665 Lisp_Object, char **,
666 Lisp_Object *, unsigned));
667 static Lisp_Object make_lispy_switch_frame P_ ((Lisp_Object));
668 static int parse_solitary_modifier P_ ((Lisp_Object));
669 static int parse_solitary_modifier ();
670 static void save_getcjmp P_ ((jmp_buf));
671 static void save_getcjmp ();
672 static void restore_getcjmp P_ ((jmp_buf));
673 static Lisp_Object apply_modifiers P_ ((int, Lisp_Object));
674 static void clear_event P_ ((struct input_event *));
675 static void any_kboard_state P_ ((void));
676 static SIGTYPE interrupt_signal P_ ((int signalnum));
677 static void handle_interrupt P_ ((void));
678 static void timer_start_idle P_ ((void));
679 static void timer_stop_idle P_ ((void));
680 static void timer_resume_idle P_ ((void));
682 /* Nonzero means don't try to suspend even if the operating system seems
683 to support it. */
684 static int cannot_suspend;
686 extern Lisp_Object Qidentity, Qonly;
688 /* Install the string STR as the beginning of the string of echoing,
689 so that it serves as a prompt for the next character.
690 Also start echoing. */
692 void
693 echo_prompt (str)
694 Lisp_Object str;
696 current_kboard->echo_string = str;
697 current_kboard->echo_after_prompt = SCHARS (str);
698 echo_now ();
701 /* Add C to the echo string, if echoing is going on.
702 C can be a character, which is printed prettily ("M-C-x" and all that
703 jazz), or a symbol, whose name is printed. */
705 void
706 echo_char (c)
707 Lisp_Object c;
709 if (current_kboard->immediate_echo)
711 int size = KEY_DESCRIPTION_SIZE + 100;
712 char *buffer = (char *) alloca (size);
713 char *ptr = buffer;
714 Lisp_Object echo_string;
716 echo_string = current_kboard->echo_string;
718 /* If someone has passed us a composite event, use its head symbol. */
719 c = EVENT_HEAD (c);
721 if (INTEGERP (c))
723 ptr = push_key_description (XINT (c), ptr, 1);
725 else if (SYMBOLP (c))
727 Lisp_Object name = SYMBOL_NAME (c);
728 int nbytes = SBYTES (name);
730 if (size - (ptr - buffer) < nbytes)
732 int offset = ptr - buffer;
733 size = max (2 * size, size + nbytes);
734 buffer = (char *) alloca (size);
735 ptr = buffer + offset;
738 ptr += copy_text (SDATA (name), ptr, nbytes,
739 STRING_MULTIBYTE (name), 1);
742 if ((NILP (echo_string) || SCHARS (echo_string) == 0)
743 && help_char_p (c))
745 const char *text = " (Type ? for further options)";
746 int len = strlen (text);
748 if (size - (ptr - buffer) < len)
750 int offset = ptr - buffer;
751 size += len;
752 buffer = (char *) alloca (size);
753 ptr = buffer + offset;
756 bcopy (text, ptr, len);
757 ptr += len;
760 /* Replace a dash from echo_dash with a space, otherwise
761 add a space at the end as a separator between keys. */
762 if (STRINGP (echo_string)
763 && SCHARS (echo_string) > 1)
765 Lisp_Object last_char, prev_char, idx;
767 idx = make_number (SCHARS (echo_string) - 2);
768 prev_char = Faref (echo_string, idx);
770 idx = make_number (SCHARS (echo_string) - 1);
771 last_char = Faref (echo_string, idx);
773 /* We test PREV_CHAR to make sure this isn't the echoing
774 of a minus-sign. */
775 if (XINT (last_char) == '-' && XINT (prev_char) != ' ')
776 Faset (echo_string, idx, make_number (' '));
777 else
778 echo_string = concat2 (echo_string, build_string (" "));
781 current_kboard->echo_string
782 = concat2 (echo_string, make_string (buffer, ptr - buffer));
784 echo_now ();
788 /* Temporarily add a dash to the end of the echo string if it's not
789 empty, so that it serves as a mini-prompt for the very next character. */
791 void
792 echo_dash ()
794 /* Do nothing if not echoing at all. */
795 if (NILP (current_kboard->echo_string))
796 return;
798 if (!current_kboard->immediate_echo
799 && SCHARS (current_kboard->echo_string) == 0)
800 return;
802 /* Do nothing if we just printed a prompt. */
803 if (current_kboard->echo_after_prompt
804 == SCHARS (current_kboard->echo_string))
805 return;
807 /* Do nothing if we have already put a dash at the end. */
808 if (SCHARS (current_kboard->echo_string) > 1)
810 Lisp_Object last_char, prev_char, idx;
812 idx = make_number (SCHARS (current_kboard->echo_string) - 2);
813 prev_char = Faref (current_kboard->echo_string, idx);
815 idx = make_number (SCHARS (current_kboard->echo_string) - 1);
816 last_char = Faref (current_kboard->echo_string, idx);
818 if (XINT (last_char) == '-' && XINT (prev_char) != ' ')
819 return;
822 /* Put a dash at the end of the buffer temporarily,
823 but make it go away when the next character is added. */
824 current_kboard->echo_string = concat2 (current_kboard->echo_string,
825 build_string ("-"));
826 echo_now ();
829 /* Display the current echo string, and begin echoing if not already
830 doing so. */
832 void
833 echo_now ()
835 if (!current_kboard->immediate_echo)
837 int i;
838 current_kboard->immediate_echo = 1;
840 for (i = 0; i < this_command_key_count; i++)
842 Lisp_Object c;
844 /* Set before_command_echo_length to the value that would
845 have been saved before the start of this subcommand in
846 command_loop_1, if we had already been echoing then. */
847 if (i == this_single_command_key_start)
848 before_command_echo_length = echo_length ();
850 c = XVECTOR (this_command_keys)->contents[i];
851 if (! (EVENT_HAS_PARAMETERS (c)
852 && EQ (EVENT_HEAD_KIND (EVENT_HEAD (c)), Qmouse_movement)))
853 echo_char (c);
856 /* Set before_command_echo_length to the value that would
857 have been saved before the start of this subcommand in
858 command_loop_1, if we had already been echoing then. */
859 if (this_command_key_count == this_single_command_key_start)
860 before_command_echo_length = echo_length ();
862 /* Put a dash at the end to invite the user to type more. */
863 echo_dash ();
866 echoing = 1;
867 message3_nolog (current_kboard->echo_string,
868 SBYTES (current_kboard->echo_string),
869 STRING_MULTIBYTE (current_kboard->echo_string));
870 echoing = 0;
872 /* Record in what buffer we echoed, and from which kboard. */
873 echo_message_buffer = echo_area_buffer[0];
874 echo_kboard = current_kboard;
876 if (waiting_for_input && !NILP (Vquit_flag))
877 quit_throw_to_read_char ();
880 /* Turn off echoing, for the start of a new command. */
882 void
883 cancel_echoing ()
885 current_kboard->immediate_echo = 0;
886 current_kboard->echo_after_prompt = -1;
887 current_kboard->echo_string = Qnil;
888 ok_to_echo_at_next_pause = NULL;
889 echo_kboard = NULL;
890 echo_message_buffer = Qnil;
893 /* Return the length of the current echo string. */
895 static int
896 echo_length ()
898 return (STRINGP (current_kboard->echo_string)
899 ? SCHARS (current_kboard->echo_string)
900 : 0);
903 /* Truncate the current echo message to its first LEN chars.
904 This and echo_char get used by read_key_sequence when the user
905 switches frames while entering a key sequence. */
907 static void
908 echo_truncate (nchars)
909 int nchars;
911 if (STRINGP (current_kboard->echo_string))
912 current_kboard->echo_string
913 = Fsubstring (current_kboard->echo_string,
914 make_number (0), make_number (nchars));
915 truncate_echo_area (nchars);
919 /* Functions for manipulating this_command_keys. */
920 static void
921 add_command_key (key)
922 Lisp_Object key;
924 #if 0 /* Not needed after we made Freset_this_command_lengths
925 do the job immediately. */
926 /* If reset-this-command-length was called recently, obey it now.
927 See the doc string of that function for an explanation of why. */
928 if (before_command_restore_flag)
930 this_command_key_count = before_command_key_count_1;
931 if (this_command_key_count < this_single_command_key_start)
932 this_single_command_key_start = this_command_key_count;
933 echo_truncate (before_command_echo_length_1);
934 before_command_restore_flag = 0;
936 #endif
938 if (this_command_key_count >= ASIZE (this_command_keys))
939 this_command_keys = larger_vector (this_command_keys,
940 2 * ASIZE (this_command_keys),
941 Qnil);
943 AREF (this_command_keys, this_command_key_count) = key;
944 ++this_command_key_count;
948 Lisp_Object
949 recursive_edit_1 ()
951 int count = SPECPDL_INDEX ();
952 Lisp_Object val;
954 if (command_loop_level > 0)
956 specbind (Qstandard_output, Qt);
957 specbind (Qstandard_input, Qt);
960 #ifdef HAVE_X_WINDOWS
961 /* The command loop has started an hourglass timer, so we have to
962 cancel it here, otherwise it will fire because the recursive edit
963 can take some time. Do not check for display_hourglass_p here,
964 because it could already be nil. */
965 cancel_hourglass ();
966 #endif
968 /* This function may have been called from a debugger called from
969 within redisplay, for instance by Edebugging a function called
970 from fontification-functions. We want to allow redisplay in
971 the debugging session.
973 The recursive edit is left with a `(throw exit ...)'. The `exit'
974 tag is not caught anywhere in redisplay, i.e. when we leave the
975 recursive edit, the original redisplay leading to the recursive
976 edit will be unwound. The outcome should therefore be safe. */
977 specbind (Qinhibit_redisplay, Qnil);
978 redisplaying_p = 0;
980 val = command_loop ();
981 if (EQ (val, Qt))
982 Fsignal (Qquit, Qnil);
983 /* Handle throw from read_minibuf when using minibuffer
984 while it's active but we're in another window. */
985 if (STRINGP (val))
986 Fsignal (Qerror, Fcons (val, Qnil));
988 return unbind_to (count, Qnil);
991 /* When an auto-save happens, record the "time", and don't do again soon. */
993 void
994 record_auto_save ()
996 last_auto_save = num_nonmacro_input_events;
999 /* Make an auto save happen as soon as possible at command level. */
1001 void
1002 force_auto_save_soon ()
1004 last_auto_save = - auto_save_interval - 1;
1006 record_asynch_buffer_change ();
1009 DEFUN ("recursive-edit", Frecursive_edit, Srecursive_edit, 0, 0, "",
1010 doc: /* Invoke the editor command loop recursively.
1011 To get out of the recursive edit, a command can do `(throw 'exit nil)';
1012 that tells this function to return.
1013 Alternately, `(throw 'exit t)' makes this function signal an error.
1014 This function is called by the editor initialization to begin editing. */)
1017 int count = SPECPDL_INDEX ();
1018 Lisp_Object buffer;
1020 /* If we enter while input is blocked, don't lock up here.
1021 This may happen through the debugger during redisplay. */
1022 if (INPUT_BLOCKED_P)
1023 return Qnil;
1025 command_loop_level++;
1026 update_mode_lines = 1;
1028 if (command_loop_level
1029 && current_buffer != XBUFFER (XWINDOW (selected_window)->buffer))
1030 buffer = Fcurrent_buffer ();
1031 else
1032 buffer = Qnil;
1034 /* If we leave recursive_edit_1 below with a `throw' for instance,
1035 like it is done in the splash screen display, we have to
1036 make sure that we restore single_kboard as command_loop_1
1037 would have done if it were left normally. */
1038 record_unwind_protect (recursive_edit_unwind,
1039 Fcons (buffer, single_kboard ? Qt : Qnil));
1041 recursive_edit_1 ();
1042 return unbind_to (count, Qnil);
1045 Lisp_Object
1046 recursive_edit_unwind (info)
1047 Lisp_Object info;
1049 if (BUFFERP (XCAR (info)))
1050 Fset_buffer (XCAR (info));
1052 if (NILP (XCDR (info)))
1053 any_kboard_state ();
1054 else
1055 single_kboard_state ();
1057 command_loop_level--;
1058 update_mode_lines = 1;
1059 return Qnil;
1063 static void
1064 any_kboard_state ()
1066 #ifdef MULTI_KBOARD
1067 #if 0 /* Theory: if there's anything in Vunread_command_events,
1068 it will right away be read by read_key_sequence,
1069 and then if we do switch KBOARDS, it will go into the side
1070 queue then. So we don't need to do anything special here -- rms. */
1071 if (CONSP (Vunread_command_events))
1073 current_kboard->kbd_queue
1074 = nconc2 (Vunread_command_events, current_kboard->kbd_queue);
1075 current_kboard->kbd_queue_has_data = 1;
1077 Vunread_command_events = Qnil;
1078 #endif
1079 single_kboard = 0;
1080 #endif
1083 /* Switch to the single-kboard state, making current_kboard
1084 the only KBOARD from which further input is accepted. */
1086 void
1087 single_kboard_state ()
1089 #ifdef MULTI_KBOARD
1090 single_kboard = 1;
1091 #endif
1094 /* If we're in single_kboard state for kboard KBOARD,
1095 get out of it. */
1097 void
1098 not_single_kboard_state (kboard)
1099 KBOARD *kboard;
1101 #ifdef MULTI_KBOARD
1102 if (kboard == current_kboard)
1103 single_kboard = 0;
1104 #endif
1107 /* Maintain a stack of kboards, so other parts of Emacs
1108 can switch temporarily to the kboard of a given frame
1109 and then revert to the previous status. */
1111 struct kboard_stack
1113 KBOARD *kboard;
1114 struct kboard_stack *next;
1117 static struct kboard_stack *kboard_stack;
1119 void
1120 push_frame_kboard (f)
1121 FRAME_PTR f;
1123 #ifdef MULTI_KBOARD
1124 struct kboard_stack *p
1125 = (struct kboard_stack *) xmalloc (sizeof (struct kboard_stack));
1127 p->next = kboard_stack;
1128 p->kboard = current_kboard;
1129 kboard_stack = p;
1131 current_kboard = FRAME_KBOARD (f);
1132 #endif
1135 void
1136 pop_frame_kboard ()
1138 #ifdef MULTI_KBOARD
1139 struct kboard_stack *p = kboard_stack;
1140 current_kboard = p->kboard;
1141 kboard_stack = p->next;
1142 xfree (p);
1143 #endif
1146 /* Handle errors that are not handled at inner levels
1147 by printing an error message and returning to the editor command loop. */
1149 Lisp_Object
1150 cmd_error (data)
1151 Lisp_Object data;
1153 Lisp_Object old_level, old_length;
1154 char macroerror[50];
1156 #ifdef HAVE_X_WINDOWS
1157 if (display_hourglass_p)
1158 cancel_hourglass ();
1159 #endif
1161 if (!NILP (executing_macro))
1163 if (executing_macro_iterations == 1)
1164 sprintf (macroerror, "After 1 kbd macro iteration: ");
1165 else
1166 sprintf (macroerror, "After %d kbd macro iterations: ",
1167 executing_macro_iterations);
1169 else
1170 *macroerror = 0;
1172 Vstandard_output = Qt;
1173 Vstandard_input = Qt;
1174 Vexecuting_macro = Qnil;
1175 executing_macro = Qnil;
1176 current_kboard->Vprefix_arg = Qnil;
1177 current_kboard->Vlast_prefix_arg = Qnil;
1178 cancel_echoing ();
1180 /* Avoid unquittable loop if data contains a circular list. */
1181 old_level = Vprint_level;
1182 old_length = Vprint_length;
1183 XSETFASTINT (Vprint_level, 10);
1184 XSETFASTINT (Vprint_length, 10);
1185 cmd_error_internal (data, macroerror);
1186 Vprint_level = old_level;
1187 Vprint_length = old_length;
1189 Vquit_flag = Qnil;
1191 Vinhibit_quit = Qnil;
1192 #ifdef MULTI_KBOARD
1193 if (command_loop_level == 0 && minibuf_level == 0)
1194 any_kboard_state ();
1195 #endif
1197 return make_number (0);
1200 /* Take actions on handling an error. DATA is the data that describes
1201 the error.
1203 CONTEXT is a C-string containing ASCII characters only which
1204 describes the context in which the error happened. If we need to
1205 generalize CONTEXT to allow multibyte characters, make it a Lisp
1206 string. */
1208 void
1209 cmd_error_internal (data, context)
1210 Lisp_Object data;
1211 char *context;
1213 Lisp_Object stream;
1214 int kill_emacs_p = 0;
1215 struct frame *sf = SELECTED_FRAME ();
1217 Vquit_flag = Qnil;
1218 Vinhibit_quit = Qt;
1219 clear_message (1, 0);
1221 /* If the window system or terminal frame hasn't been initialized
1222 yet, or we're not interactive, it's best to dump this message out
1223 to stderr and exit. */
1224 if (!sf->glyphs_initialized_p
1225 || FRAME_INITIAL_P (sf)
1226 || noninteractive)
1228 stream = Qexternal_debugging_output;
1229 kill_emacs_p = 1;
1231 else
1233 Fdiscard_input ();
1234 message_log_maybe_newline ();
1235 bitch_at_user ();
1236 stream = Qt;
1239 /* The immediate context is not interesting for Quits,
1240 since they are asyncronous. */
1241 if (EQ (XCAR (data), Qquit))
1242 Vsignaling_function = Qnil;
1244 print_error_message (data, stream, context, Vsignaling_function);
1246 Vsignaling_function = Qnil;
1248 /* If the window system or terminal frame hasn't been initialized
1249 yet, or we're in -batch mode, this error should cause Emacs to exit. */
1250 if (kill_emacs_p)
1252 Fterpri (stream);
1253 Fkill_emacs (make_number (-1));
1257 Lisp_Object command_loop_1 ();
1258 Lisp_Object command_loop_2 ();
1259 Lisp_Object top_level_1 ();
1261 /* Entry to editor-command-loop.
1262 This level has the catches for exiting/returning to editor command loop.
1263 It returns nil to exit recursive edit, t to abort it. */
1265 Lisp_Object
1266 command_loop ()
1268 if (command_loop_level > 0 || minibuf_level > 0)
1270 Lisp_Object val;
1271 val = internal_catch (Qexit, command_loop_2, Qnil);
1272 executing_macro = Qnil;
1273 return val;
1275 else
1276 while (1)
1278 internal_catch (Qtop_level, top_level_1, Qnil);
1279 /* Reset single_kboard in case top-level set it while
1280 evaluating an -f option, or we are stuck there for some
1281 other reason. */
1282 any_kboard_state ();
1283 internal_catch (Qtop_level, command_loop_2, Qnil);
1284 executing_macro = Qnil;
1286 /* End of file in -batch run causes exit here. */
1287 if (noninteractive)
1288 Fkill_emacs (Qt);
1292 /* Here we catch errors in execution of commands within the
1293 editing loop, and reenter the editing loop.
1294 When there is an error, cmd_error runs and returns a non-nil
1295 value to us. A value of nil means that command_loop_1 itself
1296 returned due to end of file (or end of kbd macro). */
1298 Lisp_Object
1299 command_loop_2 ()
1301 register Lisp_Object val;
1304 val = internal_condition_case (command_loop_1, Qerror, cmd_error);
1305 while (!NILP (val));
1307 return Qnil;
1310 Lisp_Object
1311 top_level_2 ()
1313 return Feval (Vtop_level);
1316 Lisp_Object
1317 top_level_1 ()
1319 /* On entry to the outer level, run the startup file */
1320 if (!NILP (Vtop_level))
1321 internal_condition_case (top_level_2, Qerror, cmd_error);
1322 else if (!NILP (Vpurify_flag))
1323 message ("Bare impure Emacs (standard Lisp code not loaded)");
1324 else
1325 message ("Bare Emacs (standard Lisp code not loaded)");
1326 return Qnil;
1329 DEFUN ("top-level", Ftop_level, Stop_level, 0, 0, "",
1330 doc: /* Exit all recursive editing levels. */)
1333 #ifdef HAVE_X_WINDOWS
1334 if (display_hourglass_p)
1335 cancel_hourglass ();
1336 #endif
1338 /* Unblock input if we enter with input blocked. This may happen if
1339 redisplay traps e.g. during tool-bar update with input blocked. */
1340 while (INPUT_BLOCKED_P)
1341 UNBLOCK_INPUT;
1343 return Fthrow (Qtop_level, Qnil);
1346 DEFUN ("exit-recursive-edit", Fexit_recursive_edit, Sexit_recursive_edit, 0, 0, "",
1347 doc: /* Exit from the innermost recursive edit or minibuffer. */)
1350 if (command_loop_level > 0 || minibuf_level > 0)
1351 Fthrow (Qexit, Qnil);
1353 error ("No recursive edit is in progress");
1354 return Qnil;
1357 DEFUN ("abort-recursive-edit", Fabort_recursive_edit, Sabort_recursive_edit, 0, 0, "",
1358 doc: /* Abort the command that requested this recursive edit or minibuffer input. */)
1361 if (command_loop_level > 0 || minibuf_level > 0)
1362 Fthrow (Qexit, Qt);
1364 error ("No recursive edit is in progress");
1365 return Qnil;
1368 /* This is the actual command reading loop,
1369 sans error-handling encapsulation. */
1371 static int read_key_sequence P_ ((Lisp_Object *, int, Lisp_Object,
1372 int, int, int));
1373 void safe_run_hooks P_ ((Lisp_Object));
1374 static void adjust_point_for_property P_ ((int, int));
1376 /* Cancel hourglass from protect_unwind.
1377 ARG is not used. */
1378 #ifdef HAVE_X_WINDOWS
1379 static Lisp_Object
1380 cancel_hourglass_unwind (arg)
1381 Lisp_Object arg;
1383 cancel_hourglass ();
1384 return Qnil;
1386 #endif
1388 Lisp_Object
1389 command_loop_1 ()
1391 Lisp_Object cmd;
1392 int lose;
1393 int nonundocount;
1394 Lisp_Object keybuf[30];
1395 int i;
1396 int no_direct;
1397 int prev_modiff = 0;
1398 struct buffer *prev_buffer = NULL;
1399 #ifdef MULTI_KBOARD
1400 int was_locked = single_kboard;
1401 #endif
1402 int already_adjusted = 0;
1404 current_kboard->Vprefix_arg = Qnil;
1405 current_kboard->Vlast_prefix_arg = Qnil;
1406 Vdeactivate_mark = Qnil;
1407 waiting_for_input = 0;
1408 cancel_echoing ();
1410 nonundocount = 0;
1411 this_command_key_count = 0;
1412 this_command_key_count_reset = 0;
1413 this_single_command_key_start = 0;
1415 if (NILP (Vmemory_full))
1417 /* Make sure this hook runs after commands that get errors and
1418 throw to top level. */
1419 /* Note that the value cell will never directly contain nil
1420 if the symbol is a local variable. */
1421 if (!NILP (Vpost_command_hook) && !NILP (Vrun_hooks))
1422 safe_run_hooks (Qpost_command_hook);
1424 /* If displaying a message, resize the echo area window to fit
1425 that message's size exactly. */
1426 if (!NILP (echo_area_buffer[0]))
1427 resize_echo_area_exactly ();
1429 if (!NILP (Vdeferred_action_list))
1430 safe_run_hooks (Qdeferred_action_function);
1432 if (!NILP (Vpost_command_idle_hook) && !NILP (Vrun_hooks))
1434 if (NILP (Vunread_command_events)
1435 && NILP (Vunread_input_method_events)
1436 && NILP (Vunread_post_input_method_events)
1437 && NILP (Vexecuting_macro)
1438 && !NILP (sit_for (0, post_command_idle_delay, 0, 1, 1)))
1439 safe_run_hooks (Qpost_command_idle_hook);
1443 Vmemory_full = Qnil;
1445 /* Do this after running Vpost_command_hook, for consistency. */
1446 current_kboard->Vlast_command = Vthis_command;
1447 current_kboard->Vreal_last_command = real_this_command;
1449 while (1)
1451 if (! FRAME_LIVE_P (XFRAME (selected_frame)))
1452 Fkill_emacs (Qnil);
1454 /* Make sure the current window's buffer is selected. */
1455 if (XBUFFER (XWINDOW (selected_window)->buffer) != current_buffer)
1456 set_buffer_internal (XBUFFER (XWINDOW (selected_window)->buffer));
1458 /* Display any malloc warning that just came out. Use while because
1459 displaying one warning can cause another. */
1461 while (pending_malloc_warning)
1462 display_malloc_warning ();
1464 no_direct = 0;
1466 Vdeactivate_mark = Qnil;
1468 /* If minibuffer on and echo area in use,
1469 wait a short time and redraw minibuffer. */
1471 if (minibuf_level
1472 && !NILP (echo_area_buffer[0])
1473 && EQ (minibuf_window, echo_area_window)
1474 && NUMBERP (Vminibuffer_message_timeout))
1476 /* Bind inhibit-quit to t so that C-g gets read in
1477 rather than quitting back to the minibuffer. */
1478 int count = SPECPDL_INDEX ();
1479 specbind (Qinhibit_quit, Qt);
1481 Fsit_for (Vminibuffer_message_timeout, Qnil, Qnil);
1482 /* Clear the echo area. */
1483 message2 (0, 0, 0);
1484 safe_run_hooks (Qecho_area_clear_hook);
1486 unbind_to (count, Qnil);
1488 /* If a C-g came in before, treat it as input now. */
1489 if (!NILP (Vquit_flag))
1491 Vquit_flag = Qnil;
1492 Vunread_command_events = Fcons (make_number (quit_char), Qnil);
1496 #ifdef C_ALLOCA
1497 alloca (0); /* Cause a garbage collection now */
1498 /* Since we can free the most stuff here. */
1499 #endif /* C_ALLOCA */
1501 #if 0
1502 /* Select the frame that the last event came from. Usually,
1503 switch-frame events will take care of this, but if some lisp
1504 code swallows a switch-frame event, we'll fix things up here.
1505 Is this a good idea? */
1506 if (FRAMEP (internal_last_event_frame)
1507 && !EQ (internal_last_event_frame, selected_frame))
1508 Fselect_frame (internal_last_event_frame, Qnil);
1509 #endif
1510 /* If it has changed current-menubar from previous value,
1511 really recompute the menubar from the value. */
1512 if (! NILP (Vlucid_menu_bar_dirty_flag)
1513 && !NILP (Ffboundp (Qrecompute_lucid_menubar)))
1514 call0 (Qrecompute_lucid_menubar);
1516 before_command_key_count = this_command_key_count;
1517 before_command_echo_length = echo_length ();
1519 Vthis_command = Qnil;
1520 real_this_command = Qnil;
1522 /* Read next key sequence; i gets its length. */
1523 i = read_key_sequence (keybuf, sizeof keybuf / sizeof keybuf[0],
1524 Qnil, 0, 1, 1);
1526 /* A filter may have run while we were reading the input. */
1527 if (! FRAME_LIVE_P (XFRAME (selected_frame)))
1528 Fkill_emacs (Qnil);
1529 if (XBUFFER (XWINDOW (selected_window)->buffer) != current_buffer)
1530 set_buffer_internal (XBUFFER (XWINDOW (selected_window)->buffer));
1532 ++num_input_keys;
1534 /* Now we have read a key sequence of length I,
1535 or else I is 0 and we found end of file. */
1537 if (i == 0) /* End of file -- happens only in */
1538 return Qnil; /* a kbd macro, at the end. */
1539 /* -1 means read_key_sequence got a menu that was rejected.
1540 Just loop around and read another command. */
1541 if (i == -1)
1543 cancel_echoing ();
1544 this_command_key_count = 0;
1545 this_command_key_count_reset = 0;
1546 this_single_command_key_start = 0;
1547 goto finalize;
1550 last_command_char = keybuf[i - 1];
1552 /* If the previous command tried to force a specific window-start,
1553 forget about that, in case this command moves point far away
1554 from that position. But also throw away beg_unchanged and
1555 end_unchanged information in that case, so that redisplay will
1556 update the whole window properly. */
1557 if (!NILP (XWINDOW (selected_window)->force_start))
1559 struct buffer *b;
1560 XWINDOW (selected_window)->force_start = Qnil;
1561 b = XBUFFER (XWINDOW (selected_window)->buffer);
1562 BUF_BEG_UNCHANGED (b) = BUF_END_UNCHANGED (b) = 0;
1565 cmd = read_key_sequence_cmd;
1566 if (!NILP (Vexecuting_macro))
1568 if (!NILP (Vquit_flag))
1570 Vexecuting_macro = Qt;
1571 QUIT; /* Make some noise. */
1572 /* Will return since macro now empty. */
1576 /* Do redisplay processing after this command except in special
1577 cases identified below. */
1578 prev_buffer = current_buffer;
1579 prev_modiff = MODIFF;
1580 last_point_position = PT;
1581 XSETBUFFER (last_point_position_buffer, prev_buffer);
1583 /* By default, we adjust point to a boundary of a region that
1584 has such a property that should be treated intangible
1585 (e.g. composition, display). But, some commands will set
1586 this variable differently. */
1587 Vdisable_point_adjustment = Qnil;
1589 /* Process filters and timers may have messed with deactivate-mark.
1590 reset it before we execute the command. */
1591 Vdeactivate_mark = Qnil;
1593 /* Remap command through active keymaps */
1594 Vthis_original_command = cmd;
1595 if (SYMBOLP (cmd))
1597 Lisp_Object cmd1;
1598 if (cmd1 = Fcommand_remapping (cmd), !NILP (cmd1))
1599 cmd = cmd1;
1602 /* Execute the command. */
1604 Vthis_command = cmd;
1605 real_this_command = cmd;
1606 /* Note that the value cell will never directly contain nil
1607 if the symbol is a local variable. */
1608 if (!NILP (Vpre_command_hook) && !NILP (Vrun_hooks))
1609 safe_run_hooks (Qpre_command_hook);
1611 already_adjusted = 0;
1613 if (NILP (Vthis_command))
1615 /* nil means key is undefined. */
1616 Lisp_Object keys = Fvector (i, keybuf);
1617 keys = Fkey_description (keys, Qnil);
1618 bitch_at_user ();
1619 message_with_string ("%s is undefined", keys, 0);
1620 current_kboard->defining_kbd_macro = Qnil;
1621 update_mode_lines = 1;
1622 current_kboard->Vprefix_arg = Qnil;
1624 else
1626 if (NILP (current_kboard->Vprefix_arg) && ! no_direct)
1628 /* In case we jump to directly_done. */
1629 Vcurrent_prefix_arg = current_kboard->Vprefix_arg;
1631 /* Recognize some common commands in common situations and
1632 do them directly. */
1633 if (EQ (Vthis_command, Qforward_char) && PT < ZV)
1635 struct Lisp_Char_Table *dp
1636 = window_display_table (XWINDOW (selected_window));
1637 lose = FETCH_CHAR (PT_BYTE);
1638 SET_PT (PT + 1);
1639 if (! NILP (Vpost_command_hook))
1640 /* Put this before calling adjust_point_for_property
1641 so it will only get called once in any case. */
1642 goto directly_done;
1643 if (current_buffer == prev_buffer
1644 && last_point_position != PT
1645 && NILP (Vdisable_point_adjustment)
1646 && NILP (Vglobal_disable_point_adjustment))
1647 adjust_point_for_property (last_point_position, 0);
1648 already_adjusted = 1;
1649 if (PT == last_point_position + 1
1650 && (dp
1651 ? (VECTORP (DISP_CHAR_VECTOR (dp, lose))
1652 ? XVECTOR (DISP_CHAR_VECTOR (dp, lose))->size == 1
1653 : (NILP (DISP_CHAR_VECTOR (dp, lose))
1654 && (lose >= 0x20 && lose < 0x7f)))
1655 : (lose >= 0x20 && lose < 0x7f))
1656 /* To extract the case of continuation on
1657 wide-column characters. */
1658 && (WIDTH_BY_CHAR_HEAD (FETCH_BYTE (PT_BYTE)) == 1)
1659 && (XFASTINT (XWINDOW (selected_window)->last_modified)
1660 >= MODIFF)
1661 && (XFASTINT (XWINDOW (selected_window)->last_overlay_modified)
1662 >= OVERLAY_MODIFF)
1663 && (XFASTINT (XWINDOW (selected_window)->last_point)
1664 == PT - 1)
1665 && !windows_or_buffers_changed
1666 && EQ (current_buffer->selective_display, Qnil)
1667 && !detect_input_pending ()
1668 && NILP (XWINDOW (selected_window)->column_number_displayed)
1669 && NILP (Vexecuting_macro))
1670 direct_output_forward_char (1);
1671 goto directly_done;
1673 else if (EQ (Vthis_command, Qbackward_char) && PT > BEGV)
1675 struct Lisp_Char_Table *dp
1676 = window_display_table (XWINDOW (selected_window));
1677 SET_PT (PT - 1);
1678 lose = FETCH_CHAR (PT_BYTE);
1679 if (! NILP (Vpost_command_hook))
1680 goto directly_done;
1681 if (current_buffer == prev_buffer
1682 && last_point_position != PT
1683 && NILP (Vdisable_point_adjustment)
1684 && NILP (Vglobal_disable_point_adjustment))
1685 adjust_point_for_property (last_point_position, 0);
1686 already_adjusted = 1;
1687 if (PT == last_point_position - 1
1688 && (dp
1689 ? (VECTORP (DISP_CHAR_VECTOR (dp, lose))
1690 ? XVECTOR (DISP_CHAR_VECTOR (dp, lose))->size == 1
1691 : (NILP (DISP_CHAR_VECTOR (dp, lose))
1692 && (lose >= 0x20 && lose < 0x7f)))
1693 : (lose >= 0x20 && lose < 0x7f))
1694 && (XFASTINT (XWINDOW (selected_window)->last_modified)
1695 >= MODIFF)
1696 && (XFASTINT (XWINDOW (selected_window)->last_overlay_modified)
1697 >= OVERLAY_MODIFF)
1698 && (XFASTINT (XWINDOW (selected_window)->last_point)
1699 == PT + 1)
1700 && !windows_or_buffers_changed
1701 && EQ (current_buffer->selective_display, Qnil)
1702 && !detect_input_pending ()
1703 && NILP (XWINDOW (selected_window)->column_number_displayed)
1704 && NILP (Vexecuting_macro))
1705 direct_output_forward_char (-1);
1706 goto directly_done;
1708 else if (EQ (Vthis_command, Qself_insert_command)
1709 /* Try this optimization only on char keystrokes. */
1710 && NATNUMP (last_command_char)
1711 && CHAR_VALID_P (XFASTINT (last_command_char), 0))
1713 unsigned int c
1714 = translate_char (Vtranslation_table_for_input,
1715 XFASTINT (last_command_char), 0, 0, 0);
1716 int value;
1717 if (NILP (Vexecuting_macro)
1718 && !EQ (minibuf_window, selected_window))
1720 if (!nonundocount || nonundocount >= 20)
1722 Fundo_boundary ();
1723 nonundocount = 0;
1725 nonundocount++;
1728 lose = ((XFASTINT (XWINDOW (selected_window)->last_modified)
1729 < MODIFF)
1730 || (XFASTINT (XWINDOW (selected_window)->last_overlay_modified)
1731 < OVERLAY_MODIFF)
1732 || (XFASTINT (XWINDOW (selected_window)->last_point)
1733 != PT)
1734 || MODIFF <= SAVE_MODIFF
1735 || windows_or_buffers_changed
1736 || !EQ (current_buffer->selective_display, Qnil)
1737 || detect_input_pending ()
1738 || !NILP (XWINDOW (selected_window)->column_number_displayed)
1739 || !NILP (Vexecuting_macro));
1741 value = internal_self_insert (c, 0);
1743 if (value == 2)
1744 nonundocount = 0;
1746 if (! NILP (Vpost_command_hook))
1747 /* Put this before calling adjust_point_for_property
1748 so it will only get called once in any case. */
1749 goto directly_done;
1751 /* VALUE == 1 when AFTER-CHANGE functions are
1752 installed which is the case most of the time
1753 because FONT-LOCK installs one. */
1754 if (!lose && !value)
1755 direct_output_for_insert (c);
1756 goto directly_done;
1760 /* Here for a command that isn't executed directly */
1763 #ifdef HAVE_X_WINDOWS
1764 int scount = SPECPDL_INDEX ();
1766 if (display_hourglass_p
1767 && NILP (Vexecuting_macro))
1769 record_unwind_protect (cancel_hourglass_unwind, Qnil);
1770 start_hourglass ();
1772 #endif
1774 nonundocount = 0;
1775 if (NILP (current_kboard->Vprefix_arg))
1776 Fundo_boundary ();
1777 Fcommand_execute (Vthis_command, Qnil, Qnil, Qnil);
1779 #ifdef HAVE_X_WINDOWS
1780 /* Do not check display_hourglass_p here, because
1781 Fcommand_execute could change it, but we should cancel
1782 hourglass cursor anyway.
1783 But don't cancel the hourglass within a macro
1784 just because a command in the macro finishes. */
1785 if (NILP (Vexecuting_macro))
1786 unbind_to (scount, Qnil);
1787 #endif
1790 directly_done: ;
1791 current_kboard->Vlast_prefix_arg = Vcurrent_prefix_arg;
1793 /* Note that the value cell will never directly contain nil
1794 if the symbol is a local variable. */
1795 if (!NILP (Vpost_command_hook) && !NILP (Vrun_hooks))
1796 safe_run_hooks (Qpost_command_hook);
1798 /* If displaying a message, resize the echo area window to fit
1799 that message's size exactly. */
1800 if (!NILP (echo_area_buffer[0]))
1801 resize_echo_area_exactly ();
1803 if (!NILP (Vdeferred_action_list))
1804 safe_run_hooks (Qdeferred_action_function);
1806 if (!NILP (Vpost_command_idle_hook) && !NILP (Vrun_hooks))
1808 if (NILP (Vunread_command_events)
1809 && NILP (Vunread_input_method_events)
1810 && NILP (Vunread_post_input_method_events)
1811 && NILP (Vexecuting_macro)
1812 && !NILP (sit_for (0, post_command_idle_delay, 0, 1, 1)))
1813 safe_run_hooks (Qpost_command_idle_hook);
1816 /* If there is a prefix argument,
1817 1) We don't want Vlast_command to be ``universal-argument''
1818 (that would be dumb), so don't set Vlast_command,
1819 2) we want to leave echoing on so that the prefix will be
1820 echoed as part of this key sequence, so don't call
1821 cancel_echoing, and
1822 3) we want to leave this_command_key_count non-zero, so that
1823 read_char will realize that it is re-reading a character, and
1824 not echo it a second time.
1826 If the command didn't actually create a prefix arg,
1827 but is merely a frame event that is transparent to prefix args,
1828 then the above doesn't apply. */
1829 if (NILP (current_kboard->Vprefix_arg) || CONSP (last_command_char))
1831 current_kboard->Vlast_command = Vthis_command;
1832 current_kboard->Vreal_last_command = real_this_command;
1833 cancel_echoing ();
1834 this_command_key_count = 0;
1835 this_command_key_count_reset = 0;
1836 this_single_command_key_start = 0;
1839 if (!NILP (current_buffer->mark_active) && !NILP (Vrun_hooks))
1841 /* Setting transient-mark-mode to `only' is a way of
1842 turning it on for just one command. */
1844 if (EQ (Vtransient_mark_mode, Qidentity))
1845 Vtransient_mark_mode = Qnil;
1846 if (EQ (Vtransient_mark_mode, Qonly))
1847 Vtransient_mark_mode = Qidentity;
1849 if (!NILP (Vdeactivate_mark) && !NILP (Vtransient_mark_mode))
1851 /* We could also call `deactivate'mark'. */
1852 if (EQ (Vtransient_mark_mode, Qlambda))
1853 Vtransient_mark_mode = Qnil;
1854 else
1856 current_buffer->mark_active = Qnil;
1857 call1 (Vrun_hooks, intern ("deactivate-mark-hook"));
1860 else if (current_buffer != prev_buffer || MODIFF != prev_modiff)
1861 call1 (Vrun_hooks, intern ("activate-mark-hook"));
1864 finalize:
1866 if (current_buffer == prev_buffer
1867 && last_point_position != PT
1868 && NILP (Vdisable_point_adjustment)
1869 && NILP (Vglobal_disable_point_adjustment)
1870 && !already_adjusted)
1871 adjust_point_for_property (last_point_position, MODIFF != prev_modiff);
1873 /* Install chars successfully executed in kbd macro. */
1875 if (!NILP (current_kboard->defining_kbd_macro)
1876 && NILP (current_kboard->Vprefix_arg))
1877 finalize_kbd_macro_chars ();
1879 #ifdef MULTI_KBOARD
1880 if (!was_locked)
1881 any_kboard_state ();
1882 #endif
1886 extern Lisp_Object Qcomposition, Qdisplay;
1888 /* Adjust point to a boundary of a region that has such a property
1889 that should be treated intangible. For the moment, we check
1890 `composition', `display' and `invisible' properties.
1891 LAST_PT is the last position of point. */
1893 extern Lisp_Object Qafter_string, Qbefore_string;
1894 extern Lisp_Object get_pos_property P_ ((Lisp_Object, Lisp_Object, Lisp_Object));
1896 static void
1897 adjust_point_for_property (last_pt, modified)
1898 int last_pt;
1899 int modified;
1901 int beg, end;
1902 Lisp_Object val, overlay, tmp;
1903 int check_composition = 1, check_display = 1, check_invisible = 1;
1904 int orig_pt = PT;
1906 /* FIXME: cycling is probably not necessary because these properties
1907 can't be usefully combined anyway. */
1908 while (check_composition || check_display || check_invisible)
1910 if (check_composition
1911 && PT > BEGV && PT < ZV
1912 && get_property_and_range (PT, Qcomposition, &val, &beg, &end, Qnil)
1913 && COMPOSITION_VALID_P (beg, end, val)
1914 && beg < PT /* && end > PT <- It's always the case. */
1915 && (last_pt <= beg || last_pt >= end))
1917 xassert (end > PT);
1918 SET_PT (PT < last_pt ? beg : end);
1919 check_display = check_invisible = 1;
1921 check_composition = 0;
1922 if (check_display
1923 && PT > BEGV && PT < ZV
1924 && !NILP (val = get_char_property_and_overlay
1925 (make_number (PT), Qdisplay, Qnil, &overlay))
1926 && display_prop_intangible_p (val)
1927 && (!OVERLAYP (overlay)
1928 ? get_property_and_range (PT, Qdisplay, &val, &beg, &end, Qnil)
1929 : (beg = OVERLAY_POSITION (OVERLAY_START (overlay)),
1930 end = OVERLAY_POSITION (OVERLAY_END (overlay))))
1931 && beg < PT) /* && end > PT <- It's always the case. */
1933 xassert (end > PT);
1934 SET_PT (PT < last_pt ? beg : end);
1935 check_composition = check_invisible = 1;
1937 check_display = 0;
1938 if (check_invisible && PT > BEGV && PT < ZV)
1940 int inv, ellipsis = 0;
1941 beg = end = PT;
1943 /* Find boundaries `beg' and `end' of the invisible area, if any. */
1944 while (end < ZV
1945 && !NILP (val = get_char_property_and_overlay
1946 (make_number (end), Qinvisible, Qnil, &overlay))
1947 && (inv = TEXT_PROP_MEANS_INVISIBLE (val)))
1949 ellipsis = ellipsis || inv > 1
1950 || (OVERLAYP (overlay)
1951 && (!NILP (Foverlay_get (overlay, Qafter_string))
1952 || !NILP (Foverlay_get (overlay, Qbefore_string))));
1953 tmp = Fnext_single_char_property_change
1954 (make_number (end), Qinvisible, Qnil, Qnil);
1955 end = NATNUMP (tmp) ? XFASTINT (tmp) : ZV;
1957 while (beg > BEGV
1958 && !NILP (val = get_char_property_and_overlay
1959 (make_number (beg - 1), Qinvisible, Qnil, &overlay))
1960 && (inv = TEXT_PROP_MEANS_INVISIBLE (val)))
1962 ellipsis = ellipsis || inv > 1
1963 || (OVERLAYP (overlay)
1964 && (!NILP (Foverlay_get (overlay, Qafter_string))
1965 || !NILP (Foverlay_get (overlay, Qbefore_string))));
1966 tmp = Fprevious_single_char_property_change
1967 (make_number (beg), Qinvisible, Qnil, Qnil);
1968 beg = NATNUMP (tmp) ? XFASTINT (tmp) : BEGV;
1971 /* Move away from the inside area. */
1972 if (beg < PT && end > PT)
1974 SET_PT ((orig_pt == PT && (last_pt < beg || last_pt > end))
1975 /* We haven't moved yet (so we don't need to fear
1976 infinite-looping) and we were outside the range
1977 before (so either end of the range still corresponds
1978 to a move in the right direction): pretend we moved
1979 less than we actually did, so that we still have
1980 more freedom below in choosing which end of the range
1981 to go to. */
1982 ? (orig_pt = -1, PT < last_pt ? end : beg)
1983 /* We either have moved already or the last point
1984 was already in the range: we don't get to choose
1985 which end of the range we have to go to. */
1986 : (PT < last_pt ? beg : end));
1987 check_composition = check_display = 1;
1989 #if 0 /* This assertion isn't correct, because SET_PT may end up setting
1990 the point to something other than its argument, due to
1991 point-motion hooks, intangibility, etc. */
1992 xassert (PT == beg || PT == end);
1993 #endif
1995 /* Pretend the area doesn't exist if the buffer is not
1996 modified. */
1997 if (!modified && !ellipsis && beg < end)
1999 if (last_pt == beg && PT == end && end < ZV)
2000 (check_composition = check_display = 1, SET_PT (end + 1));
2001 else if (last_pt == end && PT == beg && beg > BEGV)
2002 (check_composition = check_display = 1, SET_PT (beg - 1));
2003 else if (PT == ((PT < last_pt) ? beg : end))
2004 /* We've already moved as far as we can. Trying to go
2005 to the other end would mean moving backwards and thus
2006 could lead to an infinite loop. */
2008 else if (val = get_pos_property (make_number (PT),
2009 Qinvisible, Qnil),
2010 TEXT_PROP_MEANS_INVISIBLE (val)
2011 && (val = get_pos_property
2012 (make_number (PT == beg ? end : beg),
2013 Qinvisible, Qnil),
2014 !TEXT_PROP_MEANS_INVISIBLE (val)))
2015 (check_composition = check_display = 1,
2016 SET_PT (PT == beg ? end : beg));
2019 check_invisible = 0;
2023 /* Subroutine for safe_run_hooks: run the hook HOOK. */
2025 static Lisp_Object
2026 safe_run_hooks_1 (hook)
2027 Lisp_Object hook;
2029 return call1 (Vrun_hooks, Vinhibit_quit);
2032 /* Subroutine for safe_run_hooks: handle an error by clearing out the hook. */
2034 static Lisp_Object
2035 safe_run_hooks_error (data)
2036 Lisp_Object data;
2038 Lisp_Object args[3];
2039 args[0] = build_string ("Error in %s: %s");
2040 args[1] = Vinhibit_quit;
2041 args[2] = data;
2042 Fmessage (3, args);
2043 return Fset (Vinhibit_quit, Qnil);
2046 /* If we get an error while running the hook, cause the hook variable
2047 to be nil. Also inhibit quits, so that C-g won't cause the hook
2048 to mysteriously evaporate. */
2050 void
2051 safe_run_hooks (hook)
2052 Lisp_Object hook;
2054 int count = SPECPDL_INDEX ();
2055 specbind (Qinhibit_quit, hook);
2057 internal_condition_case (safe_run_hooks_1, Qt, safe_run_hooks_error);
2059 unbind_to (count, Qnil);
2063 /* Number of seconds between polling for input. This is a Lisp
2064 variable that can be bound. */
2066 EMACS_INT polling_period;
2068 /* Nonzero means polling for input is temporarily suppressed. */
2070 int poll_suppress_count;
2072 /* Asynchronous timer for polling. */
2074 struct atimer *poll_timer;
2077 #ifdef POLL_FOR_INPUT
2079 /* Poll for input, so what we catch a C-g if it comes in. This
2080 function is called from x_make_frame_visible, see comment
2081 there. */
2083 void
2084 poll_for_input_1 ()
2086 if (interrupt_input_blocked == 0
2087 && !waiting_for_input)
2088 read_avail_input (0);
2091 /* Timer callback function for poll_timer. TIMER is equal to
2092 poll_timer. */
2094 void
2095 poll_for_input (timer)
2096 struct atimer *timer;
2098 if (poll_suppress_count == 0)
2099 poll_for_input_1 ();
2102 #endif /* POLL_FOR_INPUT */
2104 /* Begin signals to poll for input, if they are appropriate.
2105 This function is called unconditionally from various places. */
2107 void
2108 start_polling ()
2110 #ifdef POLL_FOR_INPUT
2111 /* XXX This condition was (read_socket_hook && !interrupt_input),
2112 but read_socket_hook is not global anymore. Let's pretend that
2113 it's always set. */
2114 if (!interrupt_input)
2116 /* Turn alarm handling on unconditionally. It might have
2117 been turned off in process.c. */
2118 turn_on_atimers (1);
2120 /* If poll timer doesn't exist, are we need one with
2121 a different interval, start a new one. */
2122 if (poll_timer == NULL
2123 || EMACS_SECS (poll_timer->interval) != polling_period)
2125 EMACS_TIME interval;
2127 if (poll_timer)
2128 cancel_atimer (poll_timer);
2130 EMACS_SET_SECS_USECS (interval, polling_period, 0);
2131 poll_timer = start_atimer (ATIMER_CONTINUOUS, interval,
2132 poll_for_input, NULL);
2135 /* Let the timer's callback function poll for input
2136 if this becomes zero. */
2137 --poll_suppress_count;
2139 #endif
2142 /* Nonzero if we are using polling to handle input asynchronously. */
2145 input_polling_used ()
2147 #ifdef POLL_FOR_INPUT
2148 /* XXX This condition was (read_socket_hook && !interrupt_input),
2149 but read_socket_hook is not global anymore. Let's pretend that
2150 it's always set. */
2151 return !interrupt_input;
2152 #else
2153 return 0;
2154 #endif
2157 /* Turn off polling. */
2159 void
2160 stop_polling ()
2162 #ifdef POLL_FOR_INPUT
2163 /* XXX This condition was (read_socket_hook && !interrupt_input),
2164 but read_socket_hook is not global anymore. Let's pretend that
2165 it's always set. */
2166 if (!interrupt_input)
2167 ++poll_suppress_count;
2168 #endif
2171 /* Set the value of poll_suppress_count to COUNT
2172 and start or stop polling accordingly. */
2174 void
2175 set_poll_suppress_count (count)
2176 int count;
2178 #ifdef POLL_FOR_INPUT
2179 if (count == 0 && poll_suppress_count != 0)
2181 poll_suppress_count = 1;
2182 start_polling ();
2184 else if (count != 0 && poll_suppress_count == 0)
2186 stop_polling ();
2188 poll_suppress_count = count;
2189 #endif
2192 /* Bind polling_period to a value at least N.
2193 But don't decrease it. */
2195 void
2196 bind_polling_period (n)
2197 int n;
2199 #ifdef POLL_FOR_INPUT
2200 int new = polling_period;
2202 if (n > new)
2203 new = n;
2205 stop_other_atimers (poll_timer);
2206 stop_polling ();
2207 specbind (Qpolling_period, make_number (new));
2208 /* Start a new alarm with the new period. */
2209 start_polling ();
2210 #endif
2213 /* Apply the control modifier to CHARACTER. */
2216 make_ctrl_char (c)
2217 int c;
2219 /* Save the upper bits here. */
2220 int upper = c & ~0177;
2222 c &= 0177;
2224 /* Everything in the columns containing the upper-case letters
2225 denotes a control character. */
2226 if (c >= 0100 && c < 0140)
2228 int oc = c;
2229 c &= ~0140;
2230 /* Set the shift modifier for a control char
2231 made from a shifted letter. But only for letters! */
2232 if (oc >= 'A' && oc <= 'Z')
2233 c |= shift_modifier;
2236 /* The lower-case letters denote control characters too. */
2237 else if (c >= 'a' && c <= 'z')
2238 c &= ~0140;
2240 /* Include the bits for control and shift
2241 only if the basic ASCII code can't indicate them. */
2242 else if (c >= ' ')
2243 c |= ctrl_modifier;
2245 /* Replace the high bits. */
2246 c |= (upper & ~ctrl_modifier);
2248 return c;
2251 /* Display help echo in the echo area.
2253 HELP a string means display that string, HELP nil means clear the
2254 help echo. If HELP is a function, call it with OBJECT and POS as
2255 arguments; the function should return a help string or nil for
2256 none. For all other types of HELP evaluate it to obtain a string.
2258 WINDOW is the window in which the help was generated, if any.
2259 It is nil if not in a window.
2261 If OBJECT is a buffer, POS is the position in the buffer where the
2262 `help-echo' text property was found.
2264 If OBJECT is an overlay, that overlay has a `help-echo' property,
2265 and POS is the position in the overlay's buffer under the mouse.
2267 If OBJECT is a string (an overlay string or a string displayed with
2268 the `display' property). POS is the position in that string under
2269 the mouse.
2271 OK_TO_OVERWRITE_KEYSTROKE_ECHO non-zero means it's okay if the help
2272 echo overwrites a keystroke echo currently displayed in the echo
2273 area.
2275 Note: this function may only be called with HELP nil or a string
2276 from X code running asynchronously. */
2278 void
2279 show_help_echo (help, window, object, pos, ok_to_overwrite_keystroke_echo)
2280 Lisp_Object help, window, object, pos;
2281 int ok_to_overwrite_keystroke_echo;
2283 if (!NILP (help) && !STRINGP (help))
2285 if (FUNCTIONP (help))
2287 Lisp_Object args[4];
2288 args[0] = help;
2289 args[1] = window;
2290 args[2] = object;
2291 args[3] = pos;
2292 help = safe_call (4, args);
2294 else
2295 help = safe_eval (help);
2297 if (!STRINGP (help))
2298 return;
2301 if (STRINGP (help) || NILP (help))
2303 if (!NILP (Vshow_help_function))
2304 call1 (Vshow_help_function, help);
2305 else if (/* Don't overwrite minibuffer contents. */
2306 !MINI_WINDOW_P (XWINDOW (selected_window))
2307 /* Don't overwrite a keystroke echo. */
2308 && (NILP (echo_message_buffer)
2309 || ok_to_overwrite_keystroke_echo)
2310 /* Don't overwrite a prompt. */
2311 && !cursor_in_echo_area)
2313 if (STRINGP (help))
2315 int count = SPECPDL_INDEX ();
2317 if (!help_echo_showing_p)
2318 Vpre_help_message = current_message ();
2320 specbind (Qmessage_truncate_lines, Qt);
2321 message3_nolog (help, SBYTES (help),
2322 STRING_MULTIBYTE (help));
2323 unbind_to (count, Qnil);
2325 else if (STRINGP (Vpre_help_message))
2327 message3_nolog (Vpre_help_message,
2328 SBYTES (Vpre_help_message),
2329 STRING_MULTIBYTE (Vpre_help_message));
2330 Vpre_help_message = Qnil;
2332 else
2333 message (0);
2336 help_echo_showing_p = STRINGP (help);
2342 /* Input of single characters from keyboard */
2344 Lisp_Object print_help ();
2345 static Lisp_Object kbd_buffer_get_event ();
2346 static void record_char ();
2348 #ifdef MULTI_KBOARD
2349 static jmp_buf wrong_kboard_jmpbuf;
2350 #endif
2352 #define STOP_POLLING \
2353 do { if (! polling_stopped_here) stop_polling (); \
2354 polling_stopped_here = 1; } while (0)
2356 #define RESUME_POLLING \
2357 do { if (polling_stopped_here) start_polling (); \
2358 polling_stopped_here = 0; } while (0)
2360 /* read a character from the keyboard; call the redisplay if needed */
2361 /* commandflag 0 means do not do auto-saving, but do do redisplay.
2362 -1 means do not do redisplay, but do do autosaving.
2363 1 means do both. */
2365 /* The arguments MAPS and NMAPS are for menu prompting.
2366 MAPS is an array of keymaps; NMAPS is the length of MAPS.
2368 PREV_EVENT is the previous input event, or nil if we are reading
2369 the first event of a key sequence (or not reading a key sequence).
2370 If PREV_EVENT is t, that is a "magic" value that says
2371 not to run input methods, but in other respects to act as if
2372 not reading a key sequence.
2374 If USED_MOUSE_MENU is non-null, then we set *USED_MOUSE_MENU to 1
2375 if we used a mouse menu to read the input, or zero otherwise. If
2376 USED_MOUSE_MENU is null, we don't dereference it.
2378 Value is t if we showed a menu and the user rejected it. */
2380 Lisp_Object
2381 read_char (commandflag, nmaps, maps, prev_event, used_mouse_menu)
2382 int commandflag;
2383 int nmaps;
2384 Lisp_Object *maps;
2385 Lisp_Object prev_event;
2386 int *used_mouse_menu;
2388 volatile Lisp_Object c;
2389 int count;
2390 jmp_buf local_getcjmp;
2391 jmp_buf save_jump;
2392 volatile int key_already_recorded = 0;
2393 Lisp_Object tem, save;
2394 volatile Lisp_Object previous_echo_area_message;
2395 volatile Lisp_Object also_record;
2396 volatile int reread;
2397 struct gcpro gcpro1, gcpro2;
2398 int polling_stopped_here = 0;
2400 also_record = Qnil;
2402 #if 0 /* This was commented out as part of fixing echo for C-u left. */
2403 before_command_key_count = this_command_key_count;
2404 before_command_echo_length = echo_length ();
2405 #endif
2406 c = Qnil;
2407 previous_echo_area_message = Qnil;
2409 GCPRO2 (c, previous_echo_area_message);
2411 retry:
2413 reread = 0;
2414 if (CONSP (Vunread_post_input_method_events))
2416 c = XCAR (Vunread_post_input_method_events);
2417 Vunread_post_input_method_events
2418 = XCDR (Vunread_post_input_method_events);
2420 /* Undo what read_char_x_menu_prompt did when it unread
2421 additional keys returned by Fx_popup_menu. */
2422 if (CONSP (c)
2423 && (SYMBOLP (XCAR (c)) || INTEGERP (XCAR (c)))
2424 && NILP (XCDR (c)))
2425 c = XCAR (c);
2427 reread = 1;
2428 goto reread_first;
2431 if (unread_command_char != -1)
2433 XSETINT (c, unread_command_char);
2434 unread_command_char = -1;
2436 reread = 1;
2437 goto reread_first;
2440 if (CONSP (Vunread_command_events))
2442 c = XCAR (Vunread_command_events);
2443 Vunread_command_events = XCDR (Vunread_command_events);
2445 /* Undo what read_char_x_menu_prompt did when it unread
2446 additional keys returned by Fx_popup_menu. */
2447 if (CONSP (c)
2448 && EQ (XCDR (c), Qdisabled)
2449 && (SYMBOLP (XCAR (c)) || INTEGERP (XCAR (c))))
2450 c = XCAR (c);
2452 /* If the queued event is something that used the mouse,
2453 set used_mouse_menu accordingly. */
2454 if (used_mouse_menu
2455 && (EQ (c, Qtool_bar) || EQ (c, Qmenu_bar)))
2456 *used_mouse_menu = 1;
2458 reread = 1;
2459 goto reread_for_input_method;
2462 if (CONSP (Vunread_input_method_events))
2464 c = XCAR (Vunread_input_method_events);
2465 Vunread_input_method_events = XCDR (Vunread_input_method_events);
2467 /* Undo what read_char_x_menu_prompt did when it unread
2468 additional keys returned by Fx_popup_menu. */
2469 if (CONSP (c)
2470 && (SYMBOLP (XCAR (c)) || INTEGERP (XCAR (c)))
2471 && NILP (XCDR (c)))
2472 c = XCAR (c);
2473 reread = 1;
2474 goto reread_for_input_method;
2477 this_command_key_count_reset = 0;
2479 if (!NILP (Vexecuting_macro))
2481 /* We set this to Qmacro; since that's not a frame, nobody will
2482 try to switch frames on us, and the selected window will
2483 remain unchanged.
2485 Since this event came from a macro, it would be misleading to
2486 leave internal_last_event_frame set to wherever the last
2487 real event came from. Normally, a switch-frame event selects
2488 internal_last_event_frame after each command is read, but
2489 events read from a macro should never cause a new frame to be
2490 selected. */
2491 Vlast_event_frame = internal_last_event_frame = Qmacro;
2493 /* Exit the macro if we are at the end.
2494 Also, some things replace the macro with t
2495 to force an early exit. */
2496 if (EQ (Vexecuting_macro, Qt)
2497 || executing_macro_index >= XFASTINT (Flength (Vexecuting_macro)))
2499 XSETINT (c, -1);
2500 goto exit;
2503 c = Faref (Vexecuting_macro, make_number (executing_macro_index));
2504 if (STRINGP (Vexecuting_macro)
2505 && (XINT (c) & 0x80))
2506 XSETFASTINT (c, CHAR_META | (XINT (c) & ~0x80));
2508 executing_macro_index++;
2510 goto from_macro;
2513 if (!NILP (unread_switch_frame))
2515 c = unread_switch_frame;
2516 unread_switch_frame = Qnil;
2518 /* This event should make it into this_command_keys, and get echoed
2519 again, so we do not set `reread'. */
2520 goto reread_first;
2523 /* if redisplay was requested */
2524 if (commandflag >= 0)
2526 /* If there is pending input, process any events which are not
2527 user-visible, such as X selection_request events. */
2528 if (input_pending
2529 || detect_input_pending_run_timers (0))
2530 swallow_events (0); /* may clear input_pending */
2532 /* Redisplay if no pending input. */
2533 while (!input_pending)
2535 if (help_echo_showing_p && !EQ (selected_window, minibuf_window))
2536 redisplay_preserve_echo_area (5);
2537 else
2538 redisplay ();
2540 if (!input_pending)
2541 /* Normal case: no input arrived during redisplay. */
2542 break;
2544 /* Input arrived and pre-empted redisplay.
2545 Process any events which are not user-visible. */
2546 swallow_events (0);
2547 /* If that cleared input_pending, try again to redisplay. */
2551 /* Message turns off echoing unless more keystrokes turn it on again.
2553 The code in 20.x for the condition was
2555 1. echo_area_glyphs && *echo_area_glyphs
2556 2. && echo_area_glyphs != current_kboard->echobuf
2557 3. && ok_to_echo_at_next_pause != echo_area_glyphs
2559 (1) means there's a current message displayed
2561 (2) means it's not the message from echoing from the current
2562 kboard.
2564 (3) There's only one place in 20.x where ok_to_echo_at_next_pause
2565 is set to a non-null value. This is done in read_char and it is
2566 set to echo_area_glyphs after a call to echo_char. That means
2567 ok_to_echo_at_next_pause is either null or
2568 current_kboard->echobuf with the appropriate current_kboard at
2569 that time.
2571 So, condition (3) means in clear text ok_to_echo_at_next_pause
2572 must be either null, or the current message isn't from echoing at
2573 all, or it's from echoing from a different kboard than the
2574 current one. */
2576 if (/* There currently is something in the echo area. */
2577 !NILP (echo_area_buffer[0])
2578 && (/* And it's either not from echoing. */
2579 !EQ (echo_area_buffer[0], echo_message_buffer)
2580 /* Or it's an echo from a different kboard. */
2581 || echo_kboard != current_kboard
2582 /* Or we explicitly allow overwriting whatever there is. */
2583 || ok_to_echo_at_next_pause == NULL))
2584 cancel_echoing ();
2585 else
2586 echo_dash ();
2588 /* Try reading a character via menu prompting in the minibuf.
2589 Try this before the sit-for, because the sit-for
2590 would do the wrong thing if we are supposed to do
2591 menu prompting. If EVENT_HAS_PARAMETERS then we are reading
2592 after a mouse event so don't try a minibuf menu. */
2593 c = Qnil;
2594 if (nmaps > 0 && INTERACTIVE
2595 && !NILP (prev_event) && ! EVENT_HAS_PARAMETERS (prev_event)
2596 /* Don't bring up a menu if we already have another event. */
2597 && NILP (Vunread_command_events)
2598 && unread_command_char < 0
2599 && !detect_input_pending_run_timers (0))
2601 c = read_char_minibuf_menu_prompt (commandflag, nmaps, maps);
2602 if (! NILP (c))
2604 key_already_recorded = 1;
2605 goto non_reread_1;
2609 /* Make a longjmp point for quits to use, but don't alter getcjmp just yet.
2610 We will do that below, temporarily for short sections of code,
2611 when appropriate. local_getcjmp must be in effect
2612 around any call to sit_for or kbd_buffer_get_event;
2613 it *must not* be in effect when we call redisplay. */
2615 if (_setjmp (local_getcjmp))
2617 XSETINT (c, quit_char);
2618 internal_last_event_frame = selected_frame;
2619 Vlast_event_frame = internal_last_event_frame;
2620 /* If we report the quit char as an event,
2621 don't do so more than once. */
2622 if (!NILP (Vinhibit_quit))
2623 Vquit_flag = Qnil;
2625 #ifdef MULTI_KBOARD
2627 KBOARD *kb = FRAME_KBOARD (XFRAME (selected_frame));
2628 if (kb != current_kboard)
2630 Lisp_Object link = kb->kbd_queue;
2631 /* We shouldn't get here if we were in single-kboard mode! */
2632 if (single_kboard)
2633 abort ();
2634 if (CONSP (link))
2636 while (CONSP (XCDR (link)))
2637 link = XCDR (link);
2638 if (!NILP (XCDR (link)))
2639 abort ();
2641 if (!CONSP (link))
2642 kb->kbd_queue = Fcons (c, Qnil);
2643 else
2644 XSETCDR (link, Fcons (c, Qnil));
2645 kb->kbd_queue_has_data = 1;
2646 current_kboard = kb;
2647 /* This is going to exit from read_char
2648 so we had better get rid of this frame's stuff. */
2649 UNGCPRO;
2650 longjmp (wrong_kboard_jmpbuf, 1);
2653 #endif
2654 goto non_reread;
2657 timer_start_idle ();
2659 /* If in middle of key sequence and minibuffer not active,
2660 start echoing if enough time elapses. */
2662 if (minibuf_level == 0
2663 && !current_kboard->immediate_echo
2664 && this_command_key_count > 0
2665 && ! noninteractive
2666 && (FLOATP (Vecho_keystrokes) || INTEGERP (Vecho_keystrokes))
2667 && NILP (Fzerop (Vecho_keystrokes))
2668 && (/* No message. */
2669 NILP (echo_area_buffer[0])
2670 /* Or empty message. */
2671 || (BUF_BEG (XBUFFER (echo_area_buffer[0]))
2672 == BUF_Z (XBUFFER (echo_area_buffer[0])))
2673 /* Or already echoing from same kboard. */
2674 || (echo_kboard && ok_to_echo_at_next_pause == echo_kboard)
2675 /* Or not echoing before and echoing allowed. */
2676 || (!echo_kboard && ok_to_echo_at_next_pause)))
2678 Lisp_Object tem0;
2680 /* After a mouse event, start echoing right away.
2681 This is because we are probably about to display a menu,
2682 and we don't want to delay before doing so. */
2683 if (EVENT_HAS_PARAMETERS (prev_event))
2684 echo_now ();
2685 else
2687 int sec, usec;
2688 double duration = extract_float (Vecho_keystrokes);
2689 sec = (int) duration;
2690 usec = (duration - sec) * 1000000;
2691 save_getcjmp (save_jump);
2692 restore_getcjmp (local_getcjmp);
2693 tem0 = sit_for (sec, usec, 1, 1, 0);
2694 restore_getcjmp (save_jump);
2695 if (EQ (tem0, Qt)
2696 && ! CONSP (Vunread_command_events))
2697 echo_now ();
2701 /* Maybe auto save due to number of keystrokes. */
2703 if (commandflag != 0
2704 && auto_save_interval > 0
2705 && num_nonmacro_input_events - last_auto_save > max (auto_save_interval, 20)
2706 && !detect_input_pending_run_timers (0))
2708 Fdo_auto_save (Qnil, Qnil);
2709 /* Hooks can actually change some buffers in auto save. */
2710 redisplay ();
2713 /* Try reading using an X menu.
2714 This is never confused with reading using the minibuf
2715 because the recursive call of read_char in read_char_minibuf_menu_prompt
2716 does not pass on any keymaps. */
2718 if (nmaps > 0 && INTERACTIVE
2719 && !NILP (prev_event)
2720 && EVENT_HAS_PARAMETERS (prev_event)
2721 && !EQ (XCAR (prev_event), Qmenu_bar)
2722 && !EQ (XCAR (prev_event), Qtool_bar)
2723 /* Don't bring up a menu if we already have another event. */
2724 && NILP (Vunread_command_events)
2725 && unread_command_char < 0)
2727 c = read_char_x_menu_prompt (nmaps, maps, prev_event, used_mouse_menu);
2729 /* Now that we have read an event, Emacs is not idle. */
2730 timer_stop_idle ();
2732 goto exit;
2735 /* Maybe autosave and/or garbage collect due to idleness. */
2737 if (INTERACTIVE && NILP (c))
2739 int delay_level, buffer_size;
2741 /* Slow down auto saves logarithmically in size of current buffer,
2742 and garbage collect while we're at it. */
2743 if (! MINI_WINDOW_P (XWINDOW (selected_window)))
2744 last_non_minibuf_size = Z - BEG;
2745 buffer_size = (last_non_minibuf_size >> 8) + 1;
2746 delay_level = 0;
2747 while (buffer_size > 64)
2748 delay_level++, buffer_size -= buffer_size >> 2;
2749 if (delay_level < 4) delay_level = 4;
2750 /* delay_level is 4 for files under around 50k, 7 at 100k,
2751 9 at 200k, 11 at 300k, and 12 at 500k. It is 15 at 1 meg. */
2753 /* Auto save if enough time goes by without input. */
2754 if (commandflag != 0
2755 && num_nonmacro_input_events > last_auto_save
2756 && INTEGERP (Vauto_save_timeout)
2757 && XINT (Vauto_save_timeout) > 0)
2759 Lisp_Object tem0;
2761 save_getcjmp (save_jump);
2762 restore_getcjmp (local_getcjmp);
2763 tem0 = sit_for (delay_level * XFASTINT (Vauto_save_timeout) / 4,
2764 0, 1, 1, 0);
2765 restore_getcjmp (save_jump);
2767 if (EQ (tem0, Qt)
2768 && ! CONSP (Vunread_command_events))
2770 Fdo_auto_save (Qnil, Qnil);
2772 /* If we have auto-saved and there is still no input
2773 available, garbage collect if there has been enough
2774 consing going on to make it worthwhile. */
2775 if (!detect_input_pending_run_timers (0)
2776 && consing_since_gc > gc_cons_threshold / 2)
2777 Fgarbage_collect ();
2779 redisplay ();
2784 /* If this has become non-nil here, it has been set by a timer
2785 or sentinel or filter. */
2786 if (CONSP (Vunread_command_events))
2788 c = XCAR (Vunread_command_events);
2789 Vunread_command_events = XCDR (Vunread_command_events);
2792 /* Read something from current KBOARD's side queue, if possible. */
2794 if (NILP (c))
2796 if (current_kboard->kbd_queue_has_data)
2798 if (!CONSP (current_kboard->kbd_queue))
2799 abort ();
2800 c = XCAR (current_kboard->kbd_queue);
2801 current_kboard->kbd_queue
2802 = XCDR (current_kboard->kbd_queue);
2803 if (NILP (current_kboard->kbd_queue))
2804 current_kboard->kbd_queue_has_data = 0;
2805 input_pending = readable_events (0);
2806 if (EVENT_HAS_PARAMETERS (c)
2807 && EQ (EVENT_HEAD_KIND (EVENT_HEAD (c)), Qswitch_frame))
2808 internal_last_event_frame = XCAR (XCDR (c));
2809 Vlast_event_frame = internal_last_event_frame;
2813 #ifdef MULTI_KBOARD
2814 /* If current_kboard's side queue is empty check the other kboards.
2815 If one of them has data that we have not yet seen here,
2816 switch to it and process the data waiting for it.
2818 Note: if the events queued up for another kboard
2819 have already been seen here, and therefore are not a complete command,
2820 the kbd_queue_has_data field is 0, so we skip that kboard here.
2821 That's to avoid an infinite loop switching between kboards here. */
2822 if (NILP (c) && !single_kboard)
2824 KBOARD *kb;
2825 for (kb = all_kboards; kb; kb = kb->next_kboard)
2826 if (kb->kbd_queue_has_data)
2828 current_kboard = kb;
2829 /* This is going to exit from read_char
2830 so we had better get rid of this frame's stuff. */
2831 UNGCPRO;
2832 longjmp (wrong_kboard_jmpbuf, 1);
2835 #endif
2837 wrong_kboard:
2839 STOP_POLLING;
2841 /* Finally, we read from the main queue,
2842 and if that gives us something we can't use yet, we put it on the
2843 appropriate side queue and try again. */
2845 if (NILP (c))
2847 KBOARD *kb;
2849 /* Actually read a character, waiting if necessary. */
2850 save_getcjmp (save_jump);
2851 restore_getcjmp (local_getcjmp);
2852 timer_start_idle ();
2853 c = kbd_buffer_get_event (&kb, used_mouse_menu);
2854 restore_getcjmp (save_jump);
2856 #ifdef MULTI_KBOARD
2857 if (! NILP (c) && (kb != current_kboard))
2859 Lisp_Object link = kb->kbd_queue;
2860 if (CONSP (link))
2862 while (CONSP (XCDR (link)))
2863 link = XCDR (link);
2864 if (!NILP (XCDR (link)))
2865 abort ();
2867 if (!CONSP (link))
2868 kb->kbd_queue = Fcons (c, Qnil);
2869 else
2870 XSETCDR (link, Fcons (c, Qnil));
2871 kb->kbd_queue_has_data = 1;
2872 c = Qnil;
2873 if (single_kboard)
2874 goto wrong_kboard;
2875 current_kboard = kb;
2876 /* This is going to exit from read_char
2877 so we had better get rid of this frame's stuff. */
2878 UNGCPRO;
2879 longjmp (wrong_kboard_jmpbuf, 1);
2881 #endif
2884 /* Terminate Emacs in batch mode if at eof. */
2885 if (noninteractive && INTEGERP (c) && XINT (c) < 0)
2886 Fkill_emacs (make_number (1));
2888 if (INTEGERP (c))
2890 /* Add in any extra modifiers, where appropriate. */
2891 if ((extra_keyboard_modifiers & CHAR_CTL)
2892 || ((extra_keyboard_modifiers & 0177) < ' '
2893 && (extra_keyboard_modifiers & 0177) != 0))
2894 XSETINT (c, make_ctrl_char (XINT (c)));
2896 /* Transfer any other modifier bits directly from
2897 extra_keyboard_modifiers to c. Ignore the actual character code
2898 in the low 16 bits of extra_keyboard_modifiers. */
2899 XSETINT (c, XINT (c) | (extra_keyboard_modifiers & ~0xff7f & ~CHAR_CTL));
2902 non_reread:
2904 timer_stop_idle ();
2905 RESUME_POLLING;
2907 if (NILP (c))
2909 if (commandflag >= 0
2910 && !input_pending && !detect_input_pending_run_timers (0))
2911 redisplay ();
2913 goto wrong_kboard;
2916 non_reread_1:
2918 /* Buffer switch events are only for internal wakeups
2919 so don't show them to the user.
2920 Also, don't record a key if we already did. */
2921 if (BUFFERP (c) || key_already_recorded)
2922 goto exit;
2924 /* Process special events within read_char
2925 and loop around to read another event. */
2926 save = Vquit_flag;
2927 Vquit_flag = Qnil;
2928 tem = access_keymap (get_keymap (Vspecial_event_map, 0, 1), c, 0, 0, 1);
2929 Vquit_flag = save;
2931 if (!NILP (tem))
2933 int was_locked = single_kboard;
2935 last_input_char = c;
2936 Fcommand_execute (tem, Qnil, Fvector (1, &last_input_char), Qt);
2938 if (CONSP (c) && EQ (XCAR (c), Qselect_window))
2939 /* We stopped being idle for this event; undo that. This
2940 prevents automatic window selection (under
2941 mouse_autoselect_window from acting as a real input event, for
2942 example banishing the mouse under mouse-avoidance-mode. */
2943 timer_resume_idle ();
2945 /* Resume allowing input from any kboard, if that was true before. */
2946 if (!was_locked)
2947 any_kboard_state ();
2949 goto retry;
2952 /* Handle things that only apply to characters. */
2953 if (INTEGERP (c))
2955 /* If kbd_buffer_get_event gave us an EOF, return that. */
2956 if (XINT (c) == -1)
2957 goto exit;
2959 if ((STRINGP (Vkeyboard_translate_table)
2960 && SCHARS (Vkeyboard_translate_table) > (unsigned) XFASTINT (c))
2961 || (VECTORP (Vkeyboard_translate_table)
2962 && XVECTOR (Vkeyboard_translate_table)->size > (unsigned) XFASTINT (c))
2963 || (CHAR_TABLE_P (Vkeyboard_translate_table)
2964 && CHAR_VALID_P (XINT (c), 0)))
2966 Lisp_Object d;
2967 d = Faref (Vkeyboard_translate_table, c);
2968 /* nil in keyboard-translate-table means no translation. */
2969 if (!NILP (d))
2970 c = d;
2974 /* If this event is a mouse click in the menu bar,
2975 return just menu-bar for now. Modify the mouse click event
2976 so we won't do this twice, then queue it up. */
2977 if (EVENT_HAS_PARAMETERS (c)
2978 && CONSP (XCDR (c))
2979 && CONSP (EVENT_START (c))
2980 && CONSP (XCDR (EVENT_START (c))))
2982 Lisp_Object posn;
2984 posn = POSN_POSN (EVENT_START (c));
2985 /* Handle menu-bar events:
2986 insert the dummy prefix event `menu-bar'. */
2987 if (EQ (posn, Qmenu_bar) || EQ (posn, Qtool_bar))
2989 /* Change menu-bar to (menu-bar) as the event "position". */
2990 POSN_SET_POSN (EVENT_START (c), Fcons (posn, Qnil));
2992 also_record = c;
2993 Vunread_command_events = Fcons (c, Vunread_command_events);
2994 c = posn;
2998 /* Store these characters into recent_keys, the dribble file if any,
2999 and the keyboard macro being defined, if any. */
3000 record_char (c);
3001 if (! NILP (also_record))
3002 record_char (also_record);
3004 /* Wipe the echo area.
3005 But first, if we are about to use an input method,
3006 save the echo area contents for it to refer to. */
3007 if (INTEGERP (c)
3008 && ! NILP (Vinput_method_function)
3009 && (unsigned) XINT (c) >= ' '
3010 && (unsigned) XINT (c) != 127
3011 && (unsigned) XINT (c) < 256)
3013 previous_echo_area_message = Fcurrent_message ();
3014 Vinput_method_previous_message = previous_echo_area_message;
3017 /* Now wipe the echo area, except for help events which do their
3018 own stuff with the echo area. */
3019 if (!CONSP (c)
3020 || (!(EQ (Qhelp_echo, XCAR (c)))
3021 && !(EQ (Qswitch_frame, XCAR (c)))))
3023 if (!NILP (echo_area_buffer[0]))
3024 safe_run_hooks (Qecho_area_clear_hook);
3025 clear_message (1, 0);
3028 reread_for_input_method:
3029 from_macro:
3030 /* Pass this to the input method, if appropriate. */
3031 if (INTEGERP (c)
3032 && ! NILP (Vinput_method_function)
3033 /* Don't run the input method within a key sequence,
3034 after the first event of the key sequence. */
3035 && NILP (prev_event)
3036 && (unsigned) XINT (c) >= ' '
3037 && (unsigned) XINT (c) != 127
3038 && (unsigned) XINT (c) < 256)
3040 Lisp_Object keys;
3041 int key_count, key_count_reset;
3042 struct gcpro gcpro1;
3043 int count = SPECPDL_INDEX ();
3045 /* Save the echo status. */
3046 int saved_immediate_echo = current_kboard->immediate_echo;
3047 struct kboard *saved_ok_to_echo = ok_to_echo_at_next_pause;
3048 Lisp_Object saved_echo_string = current_kboard->echo_string;
3049 int saved_echo_after_prompt = current_kboard->echo_after_prompt;
3051 #if 0
3052 if (before_command_restore_flag)
3054 this_command_key_count = before_command_key_count_1;
3055 if (this_command_key_count < this_single_command_key_start)
3056 this_single_command_key_start = this_command_key_count;
3057 echo_truncate (before_command_echo_length_1);
3058 before_command_restore_flag = 0;
3060 #endif
3062 /* Save the this_command_keys status. */
3063 key_count = this_command_key_count;
3064 key_count_reset = this_command_key_count_reset;
3066 if (key_count > 0)
3067 keys = Fcopy_sequence (this_command_keys);
3068 else
3069 keys = Qnil;
3070 GCPRO1 (keys);
3072 /* Clear out this_command_keys. */
3073 this_command_key_count = 0;
3074 this_command_key_count_reset = 0;
3076 /* Now wipe the echo area. */
3077 if (!NILP (echo_area_buffer[0]))
3078 safe_run_hooks (Qecho_area_clear_hook);
3079 clear_message (1, 0);
3080 echo_truncate (0);
3082 /* If we are not reading a key sequence,
3083 never use the echo area. */
3084 if (maps == 0)
3086 specbind (Qinput_method_use_echo_area, Qt);
3089 /* Call the input method. */
3090 tem = call1 (Vinput_method_function, c);
3092 tem = unbind_to (count, tem);
3094 /* Restore the saved echoing state
3095 and this_command_keys state. */
3096 this_command_key_count = key_count;
3097 this_command_key_count_reset = key_count_reset;
3098 if (key_count > 0)
3099 this_command_keys = keys;
3101 cancel_echoing ();
3102 ok_to_echo_at_next_pause = saved_ok_to_echo;
3103 current_kboard->echo_string = saved_echo_string;
3104 current_kboard->echo_after_prompt = saved_echo_after_prompt;
3105 if (saved_immediate_echo)
3106 echo_now ();
3108 UNGCPRO;
3110 /* The input method can return no events. */
3111 if (! CONSP (tem))
3113 /* Bring back the previous message, if any. */
3114 if (! NILP (previous_echo_area_message))
3115 message_with_string ("%s", previous_echo_area_message, 0);
3116 goto retry;
3118 /* It returned one event or more. */
3119 c = XCAR (tem);
3120 Vunread_post_input_method_events
3121 = nconc2 (XCDR (tem), Vunread_post_input_method_events);
3124 reread_first:
3126 /* Display help if not echoing. */
3127 if (CONSP (c) && EQ (XCAR (c), Qhelp_echo))
3129 /* (help-echo FRAME HELP WINDOW OBJECT POS). */
3130 Lisp_Object help, object, position, window, tem;
3132 tem = Fcdr (XCDR (c));
3133 help = Fcar (tem);
3134 tem = Fcdr (tem);
3135 window = Fcar (tem);
3136 tem = Fcdr (tem);
3137 object = Fcar (tem);
3138 tem = Fcdr (tem);
3139 position = Fcar (tem);
3141 show_help_echo (help, window, object, position, 0);
3143 /* We stopped being idle for this event; undo that. */
3144 timer_resume_idle ();
3145 goto retry;
3148 if (! reread || this_command_key_count == 0
3149 || this_command_key_count_reset)
3152 /* Don't echo mouse motion events. */
3153 if ((FLOATP (Vecho_keystrokes) || INTEGERP (Vecho_keystrokes))
3154 && NILP (Fzerop (Vecho_keystrokes))
3155 && ! (EVENT_HAS_PARAMETERS (c)
3156 && EQ (EVENT_HEAD_KIND (EVENT_HEAD (c)), Qmouse_movement)))
3158 echo_char (c);
3159 if (! NILP (also_record))
3160 echo_char (also_record);
3161 /* Once we reread a character, echoing can happen
3162 the next time we pause to read a new one. */
3163 ok_to_echo_at_next_pause = current_kboard;
3166 /* Record this character as part of the current key. */
3167 add_command_key (c);
3168 if (! NILP (also_record))
3169 add_command_key (also_record);
3172 last_input_char = c;
3173 num_input_events++;
3175 /* Process the help character specially if enabled */
3176 if (!NILP (Vhelp_form) && help_char_p (c))
3178 Lisp_Object tem0;
3179 count = SPECPDL_INDEX ();
3181 record_unwind_protect (Fset_window_configuration,
3182 Fcurrent_window_configuration (Qnil));
3184 tem0 = Feval (Vhelp_form);
3185 if (STRINGP (tem0))
3186 internal_with_output_to_temp_buffer ("*Help*", print_help, tem0);
3188 cancel_echoing ();
3190 c = read_char (0, 0, 0, Qnil, 0);
3191 while (BUFFERP (c));
3192 /* Remove the help from the frame */
3193 unbind_to (count, Qnil);
3195 redisplay ();
3196 if (EQ (c, make_number (040)))
3198 cancel_echoing ();
3200 c = read_char (0, 0, 0, Qnil, 0);
3201 while (BUFFERP (c));
3205 exit:
3206 RESUME_POLLING;
3207 RETURN_UNGCPRO (c);
3210 /* Record a key that came from a mouse menu.
3211 Record it for echoing, for this-command-keys, and so on. */
3213 static void
3214 record_menu_key (c)
3215 Lisp_Object c;
3217 /* Wipe the echo area. */
3218 clear_message (1, 0);
3220 record_char (c);
3222 #if 0
3223 before_command_key_count = this_command_key_count;
3224 before_command_echo_length = echo_length ();
3225 #endif
3227 /* Don't echo mouse motion events. */
3228 if ((FLOATP (Vecho_keystrokes) || INTEGERP (Vecho_keystrokes))
3229 && NILP (Fzerop (Vecho_keystrokes)))
3231 echo_char (c);
3233 /* Once we reread a character, echoing can happen
3234 the next time we pause to read a new one. */
3235 ok_to_echo_at_next_pause = 0;
3238 /* Record this character as part of the current key. */
3239 add_command_key (c);
3241 /* Re-reading in the middle of a command */
3242 last_input_char = c;
3243 num_input_events++;
3246 /* Return 1 if should recognize C as "the help character". */
3249 help_char_p (c)
3250 Lisp_Object c;
3252 Lisp_Object tail;
3254 if (EQ (c, Vhelp_char))
3255 return 1;
3256 for (tail = Vhelp_event_list; CONSP (tail); tail = XCDR (tail))
3257 if (EQ (c, XCAR (tail)))
3258 return 1;
3259 return 0;
3262 /* Record the input event C in various ways. */
3264 static void
3265 record_char (c)
3266 Lisp_Object c;
3268 int recorded = 0;
3270 if (CONSP (c) && (EQ (XCAR (c), Qhelp_echo) || EQ (XCAR (c), Qmouse_movement)))
3272 /* To avoid filling recent_keys with help-echo and mouse-movement
3273 events, we filter out repeated help-echo events, only store the
3274 first and last in a series of mouse-movement events, and don't
3275 store repeated help-echo events which are only separated by
3276 mouse-movement events. */
3278 Lisp_Object ev1, ev2, ev3;
3279 int ix1, ix2, ix3;
3281 if ((ix1 = recent_keys_index - 1) < 0)
3282 ix1 = NUM_RECENT_KEYS - 1;
3283 ev1 = AREF (recent_keys, ix1);
3285 if ((ix2 = ix1 - 1) < 0)
3286 ix2 = NUM_RECENT_KEYS - 1;
3287 ev2 = AREF (recent_keys, ix2);
3289 if ((ix3 = ix2 - 1) < 0)
3290 ix3 = NUM_RECENT_KEYS - 1;
3291 ev3 = AREF (recent_keys, ix3);
3293 if (EQ (XCAR (c), Qhelp_echo))
3295 /* Don't record `help-echo' in recent_keys unless it shows some help
3296 message, and a different help than the previously recorded
3297 event. */
3298 Lisp_Object help, last_help;
3300 help = Fcar_safe (Fcdr_safe (XCDR (c)));
3301 if (!STRINGP (help))
3302 recorded = 1;
3303 else if (CONSP (ev1) && EQ (XCAR (ev1), Qhelp_echo)
3304 && (last_help = Fcar_safe (Fcdr_safe (XCDR (ev1))), EQ (last_help, help)))
3305 recorded = 1;
3306 else if (CONSP (ev1) && EQ (XCAR (ev1), Qmouse_movement)
3307 && CONSP (ev2) && EQ (XCAR (ev2), Qhelp_echo)
3308 && (last_help = Fcar_safe (Fcdr_safe (XCDR (ev2))), EQ (last_help, help)))
3309 recorded = -1;
3310 else if (CONSP (ev1) && EQ (XCAR (ev1), Qmouse_movement)
3311 && CONSP (ev2) && EQ (XCAR (ev2), Qmouse_movement)
3312 && CONSP (ev3) && EQ (XCAR (ev3), Qhelp_echo)
3313 && (last_help = Fcar_safe (Fcdr_safe (XCDR (ev3))), EQ (last_help, help)))
3314 recorded = -2;
3316 else if (EQ (XCAR (c), Qmouse_movement))
3318 /* Only record one pair of `mouse-movement' on a window in recent_keys.
3319 So additional mouse movement events replace the last element. */
3320 Lisp_Object last_window, window;
3322 window = Fcar_safe (Fcar_safe (XCDR (c)));
3323 if (CONSP (ev1) && EQ (XCAR (ev1), Qmouse_movement)
3324 && (last_window = Fcar_safe (Fcar_safe (XCDR (ev1))), EQ (last_window, window))
3325 && CONSP (ev2) && EQ (XCAR (ev2), Qmouse_movement)
3326 && (last_window = Fcar_safe (Fcar_safe (XCDR (ev2))), EQ (last_window, window)))
3328 ASET (recent_keys, ix1, c);
3329 recorded = 1;
3333 else
3334 store_kbd_macro_char (c);
3336 if (!recorded)
3338 total_keys++;
3339 ASET (recent_keys, recent_keys_index, c);
3340 if (++recent_keys_index >= NUM_RECENT_KEYS)
3341 recent_keys_index = 0;
3343 else if (recorded < 0)
3345 /* We need to remove one or two events from recent_keys.
3346 To do this, we simply put nil at those events and move the
3347 recent_keys_index backwards over those events. Usually,
3348 users will never see those nil events, as they will be
3349 overwritten by the command keys entered to see recent_keys
3350 (e.g. C-h l). */
3352 while (recorded++ < 0 && total_keys > 0)
3354 if (total_keys < NUM_RECENT_KEYS)
3355 total_keys--;
3356 if (--recent_keys_index < 0)
3357 recent_keys_index = NUM_RECENT_KEYS - 1;
3358 ASET (recent_keys, recent_keys_index, Qnil);
3362 num_nonmacro_input_events++;
3364 /* Write c to the dribble file. If c is a lispy event, write
3365 the event's symbol to the dribble file, in <brackets>. Bleaugh.
3366 If you, dear reader, have a better idea, you've got the source. :-) */
3367 if (dribble)
3369 if (INTEGERP (c))
3371 if (XUINT (c) < 0x100)
3372 putc (XINT (c), dribble);
3373 else
3374 fprintf (dribble, " 0x%x", (int) XUINT (c));
3376 else
3378 Lisp_Object dribblee;
3380 /* If it's a structured event, take the event header. */
3381 dribblee = EVENT_HEAD (c);
3383 if (SYMBOLP (dribblee))
3385 putc ('<', dribble);
3386 fwrite (SDATA (SYMBOL_NAME (dribblee)), sizeof (char),
3387 SBYTES (SYMBOL_NAME (dribblee)),
3388 dribble);
3389 putc ('>', dribble);
3393 fflush (dribble);
3397 Lisp_Object
3398 print_help (object)
3399 Lisp_Object object;
3401 struct buffer *old = current_buffer;
3402 Fprinc (object, Qnil);
3403 set_buffer_internal (XBUFFER (Vstandard_output));
3404 call0 (intern ("help-mode"));
3405 set_buffer_internal (old);
3406 return Qnil;
3409 /* Copy out or in the info on where C-g should throw to.
3410 This is used when running Lisp code from within get_char,
3411 in case get_char is called recursively.
3412 See read_process_output. */
3414 static void
3415 save_getcjmp (temp)
3416 jmp_buf temp;
3418 bcopy (getcjmp, temp, sizeof getcjmp);
3421 static void
3422 restore_getcjmp (temp)
3423 jmp_buf temp;
3425 bcopy (temp, getcjmp, sizeof getcjmp);
3428 #ifdef HAVE_MOUSE
3430 /* Restore mouse tracking enablement. See Ftrack_mouse for the only use
3431 of this function. */
3433 static Lisp_Object
3434 tracking_off (old_value)
3435 Lisp_Object old_value;
3437 do_mouse_tracking = old_value;
3438 if (NILP (old_value))
3440 /* Redisplay may have been preempted because there was input
3441 available, and it assumes it will be called again after the
3442 input has been processed. If the only input available was
3443 the sort that we have just disabled, then we need to call
3444 redisplay. */
3445 if (!readable_events (READABLE_EVENTS_DO_TIMERS_NOW))
3447 redisplay_preserve_echo_area (6);
3448 get_input_pending (&input_pending,
3449 READABLE_EVENTS_DO_TIMERS_NOW);
3452 return Qnil;
3455 DEFUN ("track-mouse", Ftrack_mouse, Strack_mouse, 0, UNEVALLED, 0,
3456 doc: /* Evaluate BODY with mouse movement events enabled.
3457 Within a `track-mouse' form, mouse motion generates input events that
3458 you can read with `read-event'.
3459 Normally, mouse motion is ignored.
3460 usage: (track-mouse BODY ...) */)
3461 (args)
3462 Lisp_Object args;
3464 int count = SPECPDL_INDEX ();
3465 Lisp_Object val;
3467 record_unwind_protect (tracking_off, do_mouse_tracking);
3469 do_mouse_tracking = Qt;
3471 val = Fprogn (args);
3472 return unbind_to (count, val);
3475 /* If mouse has moved on some frame, return one of those frames.
3476 Return 0 otherwise. */
3478 static FRAME_PTR
3479 some_mouse_moved ()
3481 Lisp_Object tail, frame;
3483 FOR_EACH_FRAME (tail, frame)
3485 if (XFRAME (frame)->mouse_moved)
3486 return XFRAME (frame);
3489 return 0;
3492 #endif /* HAVE_MOUSE */
3494 /* Low level keyboard/mouse input.
3495 kbd_buffer_store_event places events in kbd_buffer, and
3496 kbd_buffer_get_event retrieves them. */
3498 /* Return true iff there are any events in the queue that read-char
3499 would return. If this returns false, a read-char would block. */
3500 static int
3501 readable_events (flags)
3502 int flags;
3504 if (flags & READABLE_EVENTS_DO_TIMERS_NOW)
3505 timer_check (1);
3507 /* If the buffer contains only FOCUS_IN_EVENT events, and
3508 READABLE_EVENTS_FILTER_EVENTS is set, report it as empty. */
3509 if (kbd_fetch_ptr != kbd_store_ptr)
3511 int have_live_event = 1;
3513 if (flags & READABLE_EVENTS_FILTER_EVENTS)
3515 struct input_event *event;
3517 event = ((kbd_fetch_ptr < kbd_buffer + KBD_BUFFER_SIZE)
3518 ? kbd_fetch_ptr
3519 : kbd_buffer);
3521 while (have_live_event && event->kind == FOCUS_IN_EVENT)
3523 event++;
3524 if (event == kbd_buffer + KBD_BUFFER_SIZE)
3525 event = kbd_buffer;
3526 if (event == kbd_store_ptr)
3527 have_live_event = 0;
3530 if (have_live_event) return 1;
3533 #ifdef HAVE_MOUSE
3534 if (!(flags & READABLE_EVENTS_IGNORE_SQUEEZABLES)
3535 && !NILP (do_mouse_tracking) && some_mouse_moved ())
3536 return 1;
3537 #endif
3538 if (single_kboard)
3540 if (current_kboard->kbd_queue_has_data)
3541 return 1;
3543 else
3545 KBOARD *kb;
3546 for (kb = all_kboards; kb; kb = kb->next_kboard)
3547 if (kb->kbd_queue_has_data)
3548 return 1;
3550 return 0;
3553 /* Set this for debugging, to have a way to get out */
3554 int stop_character;
3556 #ifdef MULTI_KBOARD
3557 static KBOARD *
3558 event_to_kboard (event)
3559 struct input_event *event;
3561 Lisp_Object frame;
3562 frame = event->frame_or_window;
3563 if (CONSP (frame))
3564 frame = XCAR (frame);
3565 else if (WINDOWP (frame))
3566 frame = WINDOW_FRAME (XWINDOW (frame));
3568 /* There are still some events that don't set this field.
3569 For now, just ignore the problem.
3570 Also ignore dead frames here. */
3571 if (!FRAMEP (frame) || !FRAME_LIVE_P (XFRAME (frame)))
3572 return 0;
3573 else
3574 return FRAME_KBOARD (XFRAME (frame));
3576 #endif
3579 Lisp_Object Vthrow_on_input;
3581 /* Store an event obtained at interrupt level into kbd_buffer, fifo */
3583 void
3584 kbd_buffer_store_event (event)
3585 register struct input_event *event;
3587 kbd_buffer_store_event_hold (event, 0);
3590 /* Store EVENT obtained at interrupt level into kbd_buffer, fifo.
3592 If HOLD_QUIT is 0, just stuff EVENT into the fifo.
3593 Else, if HOLD_QUIT.kind != NO_EVENT, discard EVENT.
3594 Else, if EVENT is a quit event, store the quit event
3595 in HOLD_QUIT, and return (thus ignoring further events).
3597 This is used in read_avail_input to postpone the processing
3598 of the quit event until all subsequent input events have been
3599 parsed (and discarded).
3602 void
3603 kbd_buffer_store_event_hold (event, hold_quit)
3604 register struct input_event *event;
3605 struct input_event *hold_quit;
3607 if (event->kind == NO_EVENT)
3608 abort ();
3610 if (hold_quit && hold_quit->kind != NO_EVENT)
3611 return;
3613 if (event->kind == ASCII_KEYSTROKE_EVENT)
3615 register int c = event->code & 0377;
3617 if (event->modifiers & ctrl_modifier)
3618 c = make_ctrl_char (c);
3620 c |= (event->modifiers
3621 & (meta_modifier | alt_modifier
3622 | hyper_modifier | super_modifier));
3624 if (c == quit_char)
3626 #ifdef MULTI_KBOARD
3627 KBOARD *kb;
3628 struct input_event *sp;
3630 if (single_kboard
3631 && (kb = FRAME_KBOARD (XFRAME (event->frame_or_window)),
3632 kb != current_kboard))
3634 kb->kbd_queue
3635 = Fcons (make_lispy_switch_frame (event->frame_or_window),
3636 Fcons (make_number (c), Qnil));
3637 kb->kbd_queue_has_data = 1;
3638 for (sp = kbd_fetch_ptr; sp != kbd_store_ptr; sp++)
3640 if (sp == kbd_buffer + KBD_BUFFER_SIZE)
3641 sp = kbd_buffer;
3643 if (event_to_kboard (sp) == kb)
3645 sp->kind = NO_EVENT;
3646 sp->frame_or_window = Qnil;
3647 sp->arg = Qnil;
3650 return;
3652 #endif
3654 if (hold_quit)
3656 bcopy (event, (char *) hold_quit, sizeof (*event));
3657 return;
3660 /* If this results in a quit_char being returned to Emacs as
3661 input, set Vlast_event_frame properly. If this doesn't
3662 get returned to Emacs as an event, the next event read
3663 will set Vlast_event_frame again, so this is safe to do. */
3665 Lisp_Object focus;
3667 focus = FRAME_FOCUS_FRAME (XFRAME (event->frame_or_window));
3668 if (NILP (focus))
3669 focus = event->frame_or_window;
3670 internal_last_event_frame = focus;
3671 Vlast_event_frame = focus;
3674 last_event_timestamp = event->timestamp;
3675 handle_interrupt ();
3676 return;
3679 if (c && c == stop_character)
3681 sys_suspend ();
3682 return;
3685 /* Don't insert two BUFFER_SWITCH_EVENT's in a row.
3686 Just ignore the second one. */
3687 else if (event->kind == BUFFER_SWITCH_EVENT
3688 && kbd_fetch_ptr != kbd_store_ptr
3689 && ((kbd_store_ptr == kbd_buffer
3690 ? kbd_buffer + KBD_BUFFER_SIZE - 1
3691 : kbd_store_ptr - 1)->kind) == BUFFER_SWITCH_EVENT)
3692 return;
3694 if (kbd_store_ptr - kbd_buffer == KBD_BUFFER_SIZE)
3695 kbd_store_ptr = kbd_buffer;
3697 /* Don't let the very last slot in the buffer become full,
3698 since that would make the two pointers equal,
3699 and that is indistinguishable from an empty buffer.
3700 Discard the event if it would fill the last slot. */
3701 if (kbd_fetch_ptr - 1 != kbd_store_ptr)
3703 *kbd_store_ptr = *event;
3704 ++kbd_store_ptr;
3707 /* If we're inside while-no-input, and this event qualifies
3708 as input, set quit-flag to cause an interrupt. */
3709 if (!NILP (Vthrow_on_input)
3710 && event->kind != FOCUS_IN_EVENT
3711 && event->kind != HELP_EVENT
3712 && event->kind != DEICONIFY_EVENT)
3714 Vquit_flag = Vthrow_on_input;
3715 /* If we're inside a function that wants immediate quits,
3716 do it now. */
3717 if (immediate_quit && NILP (Vinhibit_quit))
3719 immediate_quit = 0;
3720 sigfree ();
3721 QUIT;
3727 /* Put an input event back in the head of the event queue. */
3729 void
3730 kbd_buffer_unget_event (event)
3731 register struct input_event *event;
3733 if (kbd_fetch_ptr == kbd_buffer)
3734 kbd_fetch_ptr = kbd_buffer + KBD_BUFFER_SIZE;
3736 /* Don't let the very last slot in the buffer become full, */
3737 if (kbd_fetch_ptr - 1 != kbd_store_ptr)
3739 --kbd_fetch_ptr;
3740 *kbd_fetch_ptr = *event;
3745 /* Generate HELP_EVENT input_events in BUFP which has room for
3746 SIZE events. If there's not enough room in BUFP, ignore this
3747 event.
3749 HELP is the help form.
3751 FRAME is the frame on which the help is generated. OBJECT is the
3752 Lisp object where the help was found (a buffer, a string, an
3753 overlay, or nil if neither from a string nor from a buffer. POS is
3754 the position within OBJECT where the help was found.
3756 Value is the number of input_events generated. */
3758 void
3759 gen_help_event (help, frame, window, object, pos)
3760 Lisp_Object help, frame, object, window;
3761 int pos;
3763 struct input_event event;
3765 EVENT_INIT (event);
3767 event.kind = HELP_EVENT;
3768 event.frame_or_window = frame;
3769 event.arg = object;
3770 event.x = WINDOWP (window) ? window : frame;
3771 event.y = help;
3772 event.code = pos;
3773 kbd_buffer_store_event (&event);
3777 /* Store HELP_EVENTs for HELP on FRAME in the input queue. */
3779 void
3780 kbd_buffer_store_help_event (frame, help)
3781 Lisp_Object frame, help;
3783 struct input_event event;
3785 event.kind = HELP_EVENT;
3786 event.frame_or_window = frame;
3787 event.arg = Qnil;
3788 event.x = Qnil;
3789 event.y = help;
3790 event.code = 0;
3791 kbd_buffer_store_event (&event);
3795 /* Discard any mouse events in the event buffer by setting them to
3796 NO_EVENT. */
3797 void
3798 discard_mouse_events ()
3800 struct input_event *sp;
3801 for (sp = kbd_fetch_ptr; sp != kbd_store_ptr; sp++)
3803 if (sp == kbd_buffer + KBD_BUFFER_SIZE)
3804 sp = kbd_buffer;
3806 if (sp->kind == MOUSE_CLICK_EVENT
3807 || sp->kind == WHEEL_EVENT
3808 #ifdef WINDOWSNT
3809 || sp->kind == W32_SCROLL_BAR_CLICK_EVENT
3810 #endif
3811 || sp->kind == SCROLL_BAR_CLICK_EVENT)
3813 sp->kind = NO_EVENT;
3819 /* Return non-zero if there are any real events waiting in the event
3820 buffer, not counting `NO_EVENT's.
3822 If DISCARD is non-zero, discard NO_EVENT events at the front of
3823 the input queue, possibly leaving the input queue empty if there
3824 are no real input events. */
3827 kbd_buffer_events_waiting (discard)
3828 int discard;
3830 struct input_event *sp;
3832 for (sp = kbd_fetch_ptr;
3833 sp != kbd_store_ptr && sp->kind == NO_EVENT;
3834 ++sp)
3836 if (sp == kbd_buffer + KBD_BUFFER_SIZE)
3837 sp = kbd_buffer;
3840 if (discard)
3841 kbd_fetch_ptr = sp;
3843 return sp != kbd_store_ptr && sp->kind != NO_EVENT;
3847 /* Clear input event EVENT. */
3849 static INLINE void
3850 clear_event (event)
3851 struct input_event *event;
3853 event->kind = NO_EVENT;
3857 /* Read one event from the event buffer, waiting if necessary.
3858 The value is a Lisp object representing the event.
3859 The value is nil for an event that should be ignored,
3860 or that was handled here.
3861 We always read and discard one event. */
3863 static Lisp_Object
3864 kbd_buffer_get_event (kbp, used_mouse_menu)
3865 KBOARD **kbp;
3866 int *used_mouse_menu;
3868 register int c;
3869 Lisp_Object obj;
3871 if (noninteractive)
3873 c = getchar ();
3874 XSETINT (obj, c);
3875 *kbp = current_kboard;
3876 return obj;
3879 /* Wait until there is input available. */
3880 for (;;)
3882 if (kbd_fetch_ptr != kbd_store_ptr)
3883 break;
3884 #ifdef HAVE_MOUSE
3885 if (!NILP (do_mouse_tracking) && some_mouse_moved ())
3886 break;
3887 #endif
3889 /* If the quit flag is set, then read_char will return
3890 quit_char, so that counts as "available input." */
3891 if (!NILP (Vquit_flag))
3892 quit_throw_to_read_char ();
3894 /* One way or another, wait until input is available; then, if
3895 interrupt handlers have not read it, read it now. */
3897 #ifdef OLDVMS
3898 wait_for_kbd_input ();
3899 #else
3900 /* Note SIGIO has been undef'd if FIONREAD is missing. */
3901 #ifdef SIGIO
3902 gobble_input (0);
3903 #endif /* SIGIO */
3904 if (kbd_fetch_ptr != kbd_store_ptr)
3905 break;
3906 #ifdef HAVE_MOUSE
3907 if (!NILP (do_mouse_tracking) && some_mouse_moved ())
3908 break;
3909 #endif
3911 wait_reading_process_output (0, 0, -1, 1, Qnil, NULL, 0);
3913 if (!interrupt_input && kbd_fetch_ptr == kbd_store_ptr)
3914 /* Pass 1 for EXPECT since we just waited to have input. */
3915 read_avail_input (1);
3917 #endif /* not VMS */
3920 if (CONSP (Vunread_command_events))
3922 Lisp_Object first;
3923 first = XCAR (Vunread_command_events);
3924 Vunread_command_events = XCDR (Vunread_command_events);
3925 *kbp = current_kboard;
3926 return first;
3929 /* At this point, we know that there is a readable event available
3930 somewhere. If the event queue is empty, then there must be a
3931 mouse movement enabled and available. */
3932 if (kbd_fetch_ptr != kbd_store_ptr)
3934 struct input_event *event;
3936 event = ((kbd_fetch_ptr < kbd_buffer + KBD_BUFFER_SIZE)
3937 ? kbd_fetch_ptr
3938 : kbd_buffer);
3940 last_event_timestamp = event->timestamp;
3942 #ifdef MULTI_KBOARD
3943 *kbp = event_to_kboard (event);
3944 if (*kbp == 0)
3945 *kbp = current_kboard; /* Better than returning null ptr? */
3946 #else
3947 *kbp = &the_only_kboard;
3948 #endif
3950 obj = Qnil;
3952 /* These two kinds of events get special handling
3953 and don't actually appear to the command loop.
3954 We return nil for them. */
3955 if (event->kind == SELECTION_REQUEST_EVENT
3956 || event->kind == SELECTION_CLEAR_EVENT)
3958 #ifdef HAVE_X11
3959 struct input_event copy;
3961 /* Remove it from the buffer before processing it,
3962 since otherwise swallow_events will see it
3963 and process it again. */
3964 copy = *event;
3965 kbd_fetch_ptr = event + 1;
3966 input_pending = readable_events (0);
3967 x_handle_selection_event (&copy);
3968 #else
3969 /* We're getting selection request events, but we don't have
3970 a window system. */
3971 abort ();
3972 #endif
3975 #if defined (HAVE_X11) || defined (HAVE_NTGUI) || defined (MAC_OS)
3976 else if (event->kind == DELETE_WINDOW_EVENT)
3978 /* Make an event (delete-frame (FRAME)). */
3979 obj = Fcons (event->frame_or_window, Qnil);
3980 obj = Fcons (Qdelete_frame, Fcons (obj, Qnil));
3981 kbd_fetch_ptr = event + 1;
3983 #endif
3984 #if defined (HAVE_X11) || defined (HAVE_NTGUI)
3985 else if (event->kind == ICONIFY_EVENT)
3987 /* Make an event (iconify-frame (FRAME)). */
3988 obj = Fcons (event->frame_or_window, Qnil);
3989 obj = Fcons (Qiconify_frame, Fcons (obj, Qnil));
3990 kbd_fetch_ptr = event + 1;
3992 else if (event->kind == DEICONIFY_EVENT)
3994 /* Make an event (make-frame-visible (FRAME)). */
3995 obj = Fcons (event->frame_or_window, Qnil);
3996 obj = Fcons (Qmake_frame_visible, Fcons (obj, Qnil));
3997 kbd_fetch_ptr = event + 1;
3999 #endif
4000 else if (event->kind == BUFFER_SWITCH_EVENT)
4002 /* The value doesn't matter here; only the type is tested. */
4003 XSETBUFFER (obj, current_buffer);
4004 kbd_fetch_ptr = event + 1;
4006 #if defined (USE_X_TOOLKIT) || defined (HAVE_NTGUI) || defined (MAC_OS) \
4007 || defined (USE_GTK)
4008 else if (event->kind == MENU_BAR_ACTIVATE_EVENT)
4010 kbd_fetch_ptr = event + 1;
4011 input_pending = readable_events (0);
4012 if (FRAME_LIVE_P (XFRAME (event->frame_or_window)))
4013 x_activate_menubar (XFRAME (event->frame_or_window));
4015 #endif
4016 #ifdef WINDOWSNT
4017 else if (event->kind == LANGUAGE_CHANGE_EVENT)
4019 /* Make an event (language-change (FRAME CHARSET LCID)). */
4020 obj = Fcons (event->frame_or_window, Qnil);
4021 obj = Fcons (Qlanguage_change, Fcons (obj, Qnil));
4022 kbd_fetch_ptr = event + 1;
4024 #endif
4025 else if (event->kind == SAVE_SESSION_EVENT)
4027 obj = Fcons (Qsave_session, Qnil);
4028 kbd_fetch_ptr = event + 1;
4030 /* Just discard these, by returning nil.
4031 With MULTI_KBOARD, these events are used as placeholders
4032 when we need to randomly delete events from the queue.
4033 (They shouldn't otherwise be found in the buffer,
4034 but on some machines it appears they do show up
4035 even without MULTI_KBOARD.) */
4036 /* On Windows NT/9X, NO_EVENT is used to delete extraneous
4037 mouse events during a popup-menu call. */
4038 else if (event->kind == NO_EVENT)
4039 kbd_fetch_ptr = event + 1;
4040 else if (event->kind == HELP_EVENT)
4042 Lisp_Object object, position, help, frame, window;
4044 frame = event->frame_or_window;
4045 object = event->arg;
4046 position = make_number (event->code);
4047 window = event->x;
4048 help = event->y;
4049 clear_event (event);
4051 kbd_fetch_ptr = event + 1;
4052 if (!WINDOWP (window))
4053 window = Qnil;
4054 obj = Fcons (Qhelp_echo,
4055 list5 (frame, help, window, object, position));
4057 else if (event->kind == FOCUS_IN_EVENT)
4059 /* Notification of a FocusIn event. The frame receiving the
4060 focus is in event->frame_or_window. Generate a
4061 switch-frame event if necessary. */
4062 Lisp_Object frame, focus;
4064 frame = event->frame_or_window;
4065 focus = FRAME_FOCUS_FRAME (XFRAME (frame));
4066 if (FRAMEP (focus))
4067 frame = focus;
4069 if (!EQ (frame, internal_last_event_frame)
4070 && !EQ (frame, selected_frame))
4071 obj = make_lispy_switch_frame (frame);
4072 internal_last_event_frame = frame;
4073 kbd_fetch_ptr = event + 1;
4075 else
4077 /* If this event is on a different frame, return a switch-frame this
4078 time, and leave the event in the queue for next time. */
4079 Lisp_Object frame;
4080 Lisp_Object focus;
4082 frame = event->frame_or_window;
4083 if (CONSP (frame))
4084 frame = XCAR (frame);
4085 else if (WINDOWP (frame))
4086 frame = WINDOW_FRAME (XWINDOW (frame));
4088 focus = FRAME_FOCUS_FRAME (XFRAME (frame));
4089 if (! NILP (focus))
4090 frame = focus;
4092 if (! EQ (frame, internal_last_event_frame)
4093 && !EQ (frame, selected_frame))
4094 obj = make_lispy_switch_frame (frame);
4095 internal_last_event_frame = frame;
4097 /* If we didn't decide to make a switch-frame event, go ahead
4098 and build a real event from the queue entry. */
4100 if (NILP (obj))
4102 obj = make_lispy_event (event);
4104 #if defined (USE_X_TOOLKIT) || defined (HAVE_NTGUI) || defined(MAC_OS) \
4105 || defined (USE_GTK)
4106 /* If this was a menu selection, then set the flag to inhibit
4107 writing to last_nonmenu_event. Don't do this if the event
4108 we're returning is (menu-bar), though; that indicates the
4109 beginning of the menu sequence, and we might as well leave
4110 that as the `event with parameters' for this selection. */
4111 if (used_mouse_menu
4112 && !EQ (event->frame_or_window, event->arg)
4113 && (event->kind == MENU_BAR_EVENT
4114 || event->kind == TOOL_BAR_EVENT))
4115 *used_mouse_menu = 1;
4116 #endif
4118 /* Wipe out this event, to catch bugs. */
4119 clear_event (event);
4120 kbd_fetch_ptr = event + 1;
4124 #ifdef HAVE_MOUSE
4125 /* Try generating a mouse motion event. */
4126 else if (!NILP (do_mouse_tracking) && some_mouse_moved ())
4128 FRAME_PTR f = some_mouse_moved ();
4129 Lisp_Object bar_window;
4130 enum scroll_bar_part part;
4131 Lisp_Object x, y;
4132 unsigned long time;
4134 *kbp = current_kboard;
4135 /* Note that this uses F to determine which display to look at.
4136 If there is no valid info, it does not store anything
4137 so x remains nil. */
4138 x = Qnil;
4140 /* XXX Can f or mouse_position_hook be NULL here? */
4141 if (f && FRAME_DISPLAY (f)->mouse_position_hook)
4142 (*FRAME_DISPLAY (f)->mouse_position_hook) (&f, 0, &bar_window,
4143 &part, &x, &y, &time);
4145 obj = Qnil;
4147 /* Decide if we should generate a switch-frame event. Don't
4148 generate switch-frame events for motion outside of all Emacs
4149 frames. */
4150 if (!NILP (x) && f)
4152 Lisp_Object frame;
4154 frame = FRAME_FOCUS_FRAME (f);
4155 if (NILP (frame))
4156 XSETFRAME (frame, f);
4158 if (! EQ (frame, internal_last_event_frame)
4159 && !EQ (frame, selected_frame))
4160 obj = make_lispy_switch_frame (frame);
4161 internal_last_event_frame = frame;
4164 /* If we didn't decide to make a switch-frame event, go ahead and
4165 return a mouse-motion event. */
4166 if (!NILP (x) && NILP (obj))
4167 obj = make_lispy_movement (f, bar_window, part, x, y, time);
4169 #endif /* HAVE_MOUSE */
4170 else
4171 /* We were promised by the above while loop that there was
4172 something for us to read! */
4173 abort ();
4175 input_pending = readable_events (0);
4177 Vlast_event_frame = internal_last_event_frame;
4179 return (obj);
4182 /* Process any events that are not user-visible,
4183 then return, without reading any user-visible events. */
4185 void
4186 swallow_events (do_display)
4187 int do_display;
4189 int old_timers_run;
4191 while (kbd_fetch_ptr != kbd_store_ptr)
4193 struct input_event *event;
4195 event = ((kbd_fetch_ptr < kbd_buffer + KBD_BUFFER_SIZE)
4196 ? kbd_fetch_ptr
4197 : kbd_buffer);
4199 last_event_timestamp = event->timestamp;
4201 /* These two kinds of events get special handling
4202 and don't actually appear to the command loop. */
4203 if (event->kind == SELECTION_REQUEST_EVENT
4204 || event->kind == SELECTION_CLEAR_EVENT)
4206 #ifdef HAVE_X11
4207 struct input_event copy;
4209 /* Remove it from the buffer before processing it,
4210 since otherwise swallow_events called recursively could see it
4211 and process it again. */
4212 copy = *event;
4213 kbd_fetch_ptr = event + 1;
4214 input_pending = readable_events (0);
4215 x_handle_selection_event (&copy);
4216 #else
4217 /* We're getting selection request events, but we don't have
4218 a window system. */
4219 abort ();
4220 #endif
4222 else
4223 break;
4226 old_timers_run = timers_run;
4227 get_input_pending (&input_pending, READABLE_EVENTS_DO_TIMERS_NOW);
4229 if (timers_run != old_timers_run && do_display)
4230 redisplay_preserve_echo_area (7);
4233 /* Record the start of when Emacs is idle,
4234 for the sake of running idle-time timers. */
4236 static void
4237 timer_start_idle ()
4239 Lisp_Object timers;
4241 /* If we are already in the idle state, do nothing. */
4242 if (! EMACS_TIME_NEG_P (timer_idleness_start_time))
4243 return;
4245 EMACS_GET_TIME (timer_idleness_start_time);
4247 timer_last_idleness_start_time = timer_idleness_start_time;
4249 /* Mark all idle-time timers as once again candidates for running. */
4250 for (timers = Vtimer_idle_list; CONSP (timers); timers = XCDR (timers))
4252 Lisp_Object timer;
4254 timer = XCAR (timers);
4256 if (!VECTORP (timer) || XVECTOR (timer)->size != 8)
4257 continue;
4258 XVECTOR (timer)->contents[0] = Qnil;
4262 /* Record that Emacs is no longer idle, so stop running idle-time timers. */
4264 static void
4265 timer_stop_idle ()
4267 EMACS_SET_SECS_USECS (timer_idleness_start_time, -1, -1);
4270 /* Resume idle timer from last idle start time. */
4272 static void
4273 timer_resume_idle ()
4275 if (! EMACS_TIME_NEG_P (timer_idleness_start_time))
4276 return;
4278 timer_idleness_start_time = timer_last_idleness_start_time;
4281 /* This is only for debugging. */
4282 struct input_event last_timer_event;
4284 /* Check whether a timer has fired. To prevent larger problems we simply
4285 disregard elements that are not proper timers. Do not make a circular
4286 timer list for the time being.
4288 Returns the number of seconds to wait until the next timer fires. If a
4289 timer is triggering now, return zero seconds.
4290 If no timer is active, return -1 seconds.
4292 If a timer is ripe, we run it, with quitting turned off.
4294 DO_IT_NOW is now ignored. It used to mean that we should
4295 run the timer directly instead of queueing a timer-event.
4296 Now we always run timers directly. */
4298 EMACS_TIME
4299 timer_check (do_it_now)
4300 int do_it_now;
4302 EMACS_TIME nexttime;
4303 EMACS_TIME now, idleness_now;
4304 Lisp_Object timers, idle_timers, chosen_timer;
4305 struct gcpro gcpro1, gcpro2, gcpro3;
4307 EMACS_SET_SECS (nexttime, -1);
4308 EMACS_SET_USECS (nexttime, -1);
4310 /* Always consider the ordinary timers. */
4311 timers = Vtimer_list;
4312 /* Consider the idle timers only if Emacs is idle. */
4313 if (! EMACS_TIME_NEG_P (timer_idleness_start_time))
4314 idle_timers = Vtimer_idle_list;
4315 else
4316 idle_timers = Qnil;
4317 chosen_timer = Qnil;
4318 GCPRO3 (timers, idle_timers, chosen_timer);
4320 if (CONSP (timers) || CONSP (idle_timers))
4322 EMACS_GET_TIME (now);
4323 if (! EMACS_TIME_NEG_P (timer_idleness_start_time))
4324 EMACS_SUB_TIME (idleness_now, now, timer_idleness_start_time);
4327 while (CONSP (timers) || CONSP (idle_timers))
4329 Lisp_Object *vector;
4330 Lisp_Object timer = Qnil, idle_timer = Qnil;
4331 EMACS_TIME timer_time, idle_timer_time;
4332 EMACS_TIME difference, timer_difference, idle_timer_difference;
4334 /* Skip past invalid timers and timers already handled. */
4335 if (!NILP (timers))
4337 timer = XCAR (timers);
4338 if (!VECTORP (timer) || XVECTOR (timer)->size != 8)
4340 timers = XCDR (timers);
4341 continue;
4343 vector = XVECTOR (timer)->contents;
4345 if (!INTEGERP (vector[1]) || !INTEGERP (vector[2])
4346 || !INTEGERP (vector[3])
4347 || ! NILP (vector[0]))
4349 timers = XCDR (timers);
4350 continue;
4353 if (!NILP (idle_timers))
4355 timer = XCAR (idle_timers);
4356 if (!VECTORP (timer) || XVECTOR (timer)->size != 8)
4358 idle_timers = XCDR (idle_timers);
4359 continue;
4361 vector = XVECTOR (timer)->contents;
4363 if (!INTEGERP (vector[1]) || !INTEGERP (vector[2])
4364 || !INTEGERP (vector[3])
4365 || ! NILP (vector[0]))
4367 idle_timers = XCDR (idle_timers);
4368 continue;
4372 /* Set TIMER, TIMER_TIME and TIMER_DIFFERENCE
4373 based on the next ordinary timer.
4374 TIMER_DIFFERENCE is the distance in time from NOW to when
4375 this timer becomes ripe (negative if it's already ripe). */
4376 if (!NILP (timers))
4378 timer = XCAR (timers);
4379 vector = XVECTOR (timer)->contents;
4380 EMACS_SET_SECS (timer_time,
4381 (XINT (vector[1]) << 16) | (XINT (vector[2])));
4382 EMACS_SET_USECS (timer_time, XINT (vector[3]));
4383 EMACS_SUB_TIME (timer_difference, timer_time, now);
4386 /* Set IDLE_TIMER, IDLE_TIMER_TIME and IDLE_TIMER_DIFFERENCE
4387 based on the next idle timer. */
4388 if (!NILP (idle_timers))
4390 idle_timer = XCAR (idle_timers);
4391 vector = XVECTOR (idle_timer)->contents;
4392 EMACS_SET_SECS (idle_timer_time,
4393 (XINT (vector[1]) << 16) | (XINT (vector[2])));
4394 EMACS_SET_USECS (idle_timer_time, XINT (vector[3]));
4395 EMACS_SUB_TIME (idle_timer_difference, idle_timer_time, idleness_now);
4398 /* Decide which timer is the next timer,
4399 and set CHOSEN_TIMER, VECTOR and DIFFERENCE accordingly.
4400 Also step down the list where we found that timer. */
4402 if (! NILP (timers) && ! NILP (idle_timers))
4404 EMACS_TIME temp;
4405 EMACS_SUB_TIME (temp, timer_difference, idle_timer_difference);
4406 if (EMACS_TIME_NEG_P (temp))
4408 chosen_timer = timer;
4409 timers = XCDR (timers);
4410 difference = timer_difference;
4412 else
4414 chosen_timer = idle_timer;
4415 idle_timers = XCDR (idle_timers);
4416 difference = idle_timer_difference;
4419 else if (! NILP (timers))
4421 chosen_timer = timer;
4422 timers = XCDR (timers);
4423 difference = timer_difference;
4425 else
4427 chosen_timer = idle_timer;
4428 idle_timers = XCDR (idle_timers);
4429 difference = idle_timer_difference;
4431 vector = XVECTOR (chosen_timer)->contents;
4433 /* If timer is ripe, run it if it hasn't been run. */
4434 if (EMACS_TIME_NEG_P (difference)
4435 || (EMACS_SECS (difference) == 0
4436 && EMACS_USECS (difference) == 0))
4438 if (NILP (vector[0]))
4440 int was_locked = single_kboard;
4441 int count = SPECPDL_INDEX ();
4442 Lisp_Object old_deactivate_mark = Vdeactivate_mark;
4444 /* Mark the timer as triggered to prevent problems if the lisp
4445 code fails to reschedule it right. */
4446 vector[0] = Qt;
4448 specbind (Qinhibit_quit, Qt);
4450 call1 (Qtimer_event_handler, chosen_timer);
4451 Vdeactivate_mark = old_deactivate_mark;
4452 timers_run++;
4453 unbind_to (count, Qnil);
4455 /* Resume allowing input from any kboard, if that was true before. */
4456 if (!was_locked)
4457 any_kboard_state ();
4459 /* Since we have handled the event,
4460 we don't need to tell the caller to wake up and do it. */
4463 else
4464 /* When we encounter a timer that is still waiting,
4465 return the amount of time to wait before it is ripe. */
4467 UNGCPRO;
4468 return difference;
4472 /* No timers are pending in the future. */
4473 /* Return 0 if we generated an event, and -1 if not. */
4474 UNGCPRO;
4475 return nexttime;
4478 /* Caches for modify_event_symbol. */
4479 static Lisp_Object accent_key_syms;
4480 static Lisp_Object func_key_syms;
4481 static Lisp_Object mouse_syms;
4482 static Lisp_Object wheel_syms;
4483 static Lisp_Object drag_n_drop_syms;
4485 /* This is a list of keysym codes for special "accent" characters.
4486 It parallels lispy_accent_keys. */
4488 static int lispy_accent_codes[] =
4490 #ifdef XK_dead_circumflex
4491 XK_dead_circumflex,
4492 #else
4494 #endif
4495 #ifdef XK_dead_grave
4496 XK_dead_grave,
4497 #else
4499 #endif
4500 #ifdef XK_dead_tilde
4501 XK_dead_tilde,
4502 #else
4504 #endif
4505 #ifdef XK_dead_diaeresis
4506 XK_dead_diaeresis,
4507 #else
4509 #endif
4510 #ifdef XK_dead_macron
4511 XK_dead_macron,
4512 #else
4514 #endif
4515 #ifdef XK_dead_degree
4516 XK_dead_degree,
4517 #else
4519 #endif
4520 #ifdef XK_dead_acute
4521 XK_dead_acute,
4522 #else
4524 #endif
4525 #ifdef XK_dead_cedilla
4526 XK_dead_cedilla,
4527 #else
4529 #endif
4530 #ifdef XK_dead_breve
4531 XK_dead_breve,
4532 #else
4534 #endif
4535 #ifdef XK_dead_ogonek
4536 XK_dead_ogonek,
4537 #else
4539 #endif
4540 #ifdef XK_dead_caron
4541 XK_dead_caron,
4542 #else
4544 #endif
4545 #ifdef XK_dead_doubleacute
4546 XK_dead_doubleacute,
4547 #else
4549 #endif
4550 #ifdef XK_dead_abovedot
4551 XK_dead_abovedot,
4552 #else
4554 #endif
4555 #ifdef XK_dead_abovering
4556 XK_dead_abovering,
4557 #else
4559 #endif
4560 #ifdef XK_dead_iota
4561 XK_dead_iota,
4562 #else
4564 #endif
4565 #ifdef XK_dead_belowdot
4566 XK_dead_belowdot,
4567 #else
4569 #endif
4570 #ifdef XK_dead_voiced_sound
4571 XK_dead_voiced_sound,
4572 #else
4574 #endif
4575 #ifdef XK_dead_semivoiced_sound
4576 XK_dead_semivoiced_sound,
4577 #else
4579 #endif
4580 #ifdef XK_dead_hook
4581 XK_dead_hook,
4582 #else
4584 #endif
4585 #ifdef XK_dead_horn
4586 XK_dead_horn,
4587 #else
4589 #endif
4592 /* This is a list of Lisp names for special "accent" characters.
4593 It parallels lispy_accent_codes. */
4595 static char *lispy_accent_keys[] =
4597 "dead-circumflex",
4598 "dead-grave",
4599 "dead-tilde",
4600 "dead-diaeresis",
4601 "dead-macron",
4602 "dead-degree",
4603 "dead-acute",
4604 "dead-cedilla",
4605 "dead-breve",
4606 "dead-ogonek",
4607 "dead-caron",
4608 "dead-doubleacute",
4609 "dead-abovedot",
4610 "dead-abovering",
4611 "dead-iota",
4612 "dead-belowdot",
4613 "dead-voiced-sound",
4614 "dead-semivoiced-sound",
4615 "dead-hook",
4616 "dead-horn",
4619 #ifdef HAVE_NTGUI
4620 #define FUNCTION_KEY_OFFSET 0x0
4622 char *lispy_function_keys[] =
4624 0, /* 0 */
4626 0, /* VK_LBUTTON 0x01 */
4627 0, /* VK_RBUTTON 0x02 */
4628 "cancel", /* VK_CANCEL 0x03 */
4629 0, /* VK_MBUTTON 0x04 */
4631 0, 0, 0, /* 0x05 .. 0x07 */
4633 "backspace", /* VK_BACK 0x08 */
4634 "tab", /* VK_TAB 0x09 */
4636 0, 0, /* 0x0A .. 0x0B */
4638 "clear", /* VK_CLEAR 0x0C */
4639 "return", /* VK_RETURN 0x0D */
4641 0, 0, /* 0x0E .. 0x0F */
4643 0, /* VK_SHIFT 0x10 */
4644 0, /* VK_CONTROL 0x11 */
4645 0, /* VK_MENU 0x12 */
4646 "pause", /* VK_PAUSE 0x13 */
4647 "capslock", /* VK_CAPITAL 0x14 */
4649 0, 0, 0, 0, 0, 0, /* 0x15 .. 0x1A */
4651 "escape", /* VK_ESCAPE 0x1B */
4653 0, 0, 0, 0, /* 0x1C .. 0x1F */
4655 0, /* VK_SPACE 0x20 */
4656 "prior", /* VK_PRIOR 0x21 */
4657 "next", /* VK_NEXT 0x22 */
4658 "end", /* VK_END 0x23 */
4659 "home", /* VK_HOME 0x24 */
4660 "left", /* VK_LEFT 0x25 */
4661 "up", /* VK_UP 0x26 */
4662 "right", /* VK_RIGHT 0x27 */
4663 "down", /* VK_DOWN 0x28 */
4664 "select", /* VK_SELECT 0x29 */
4665 "print", /* VK_PRINT 0x2A */
4666 "execute", /* VK_EXECUTE 0x2B */
4667 "snapshot", /* VK_SNAPSHOT 0x2C */
4668 "insert", /* VK_INSERT 0x2D */
4669 "delete", /* VK_DELETE 0x2E */
4670 "help", /* VK_HELP 0x2F */
4672 /* VK_0 thru VK_9 are the same as ASCII '0' thru '9' (0x30 - 0x39) */
4674 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
4676 0, 0, 0, 0, 0, 0, 0, /* 0x3A .. 0x40 */
4678 /* VK_A thru VK_Z are the same as ASCII 'A' thru 'Z' (0x41 - 0x5A) */
4680 0, 0, 0, 0, 0, 0, 0, 0, 0,
4681 0, 0, 0, 0, 0, 0, 0, 0, 0,
4682 0, 0, 0, 0, 0, 0, 0, 0,
4684 "lwindow", /* VK_LWIN 0x5B */
4685 "rwindow", /* VK_RWIN 0x5C */
4686 "apps", /* VK_APPS 0x5D */
4688 0, 0, /* 0x5E .. 0x5F */
4690 "kp-0", /* VK_NUMPAD0 0x60 */
4691 "kp-1", /* VK_NUMPAD1 0x61 */
4692 "kp-2", /* VK_NUMPAD2 0x62 */
4693 "kp-3", /* VK_NUMPAD3 0x63 */
4694 "kp-4", /* VK_NUMPAD4 0x64 */
4695 "kp-5", /* VK_NUMPAD5 0x65 */
4696 "kp-6", /* VK_NUMPAD6 0x66 */
4697 "kp-7", /* VK_NUMPAD7 0x67 */
4698 "kp-8", /* VK_NUMPAD8 0x68 */
4699 "kp-9", /* VK_NUMPAD9 0x69 */
4700 "kp-multiply", /* VK_MULTIPLY 0x6A */
4701 "kp-add", /* VK_ADD 0x6B */
4702 "kp-separator", /* VK_SEPARATOR 0x6C */
4703 "kp-subtract", /* VK_SUBTRACT 0x6D */
4704 "kp-decimal", /* VK_DECIMAL 0x6E */
4705 "kp-divide", /* VK_DIVIDE 0x6F */
4706 "f1", /* VK_F1 0x70 */
4707 "f2", /* VK_F2 0x71 */
4708 "f3", /* VK_F3 0x72 */
4709 "f4", /* VK_F4 0x73 */
4710 "f5", /* VK_F5 0x74 */
4711 "f6", /* VK_F6 0x75 */
4712 "f7", /* VK_F7 0x76 */
4713 "f8", /* VK_F8 0x77 */
4714 "f9", /* VK_F9 0x78 */
4715 "f10", /* VK_F10 0x79 */
4716 "f11", /* VK_F11 0x7A */
4717 "f12", /* VK_F12 0x7B */
4718 "f13", /* VK_F13 0x7C */
4719 "f14", /* VK_F14 0x7D */
4720 "f15", /* VK_F15 0x7E */
4721 "f16", /* VK_F16 0x7F */
4722 "f17", /* VK_F17 0x80 */
4723 "f18", /* VK_F18 0x81 */
4724 "f19", /* VK_F19 0x82 */
4725 "f20", /* VK_F20 0x83 */
4726 "f21", /* VK_F21 0x84 */
4727 "f22", /* VK_F22 0x85 */
4728 "f23", /* VK_F23 0x86 */
4729 "f24", /* VK_F24 0x87 */
4731 0, 0, 0, 0, /* 0x88 .. 0x8B */
4732 0, 0, 0, 0, /* 0x8C .. 0x8F */
4734 "kp-numlock", /* VK_NUMLOCK 0x90 */
4735 "scroll", /* VK_SCROLL 0x91 */
4737 "kp-space", /* VK_NUMPAD_CLEAR 0x92 */
4738 "kp-enter", /* VK_NUMPAD_ENTER 0x93 */
4739 "kp-prior", /* VK_NUMPAD_PRIOR 0x94 */
4740 "kp-next", /* VK_NUMPAD_NEXT 0x95 */
4741 "kp-end", /* VK_NUMPAD_END 0x96 */
4742 "kp-home", /* VK_NUMPAD_HOME 0x97 */
4743 "kp-left", /* VK_NUMPAD_LEFT 0x98 */
4744 "kp-up", /* VK_NUMPAD_UP 0x99 */
4745 "kp-right", /* VK_NUMPAD_RIGHT 0x9A */
4746 "kp-down", /* VK_NUMPAD_DOWN 0x9B */
4747 "kp-insert", /* VK_NUMPAD_INSERT 0x9C */
4748 "kp-delete", /* VK_NUMPAD_DELETE 0x9D */
4750 0, 0, /* 0x9E .. 0x9F */
4753 * VK_L* & VK_R* - left and right Alt, Ctrl and Shift virtual keys.
4754 * Used only as parameters to GetAsyncKeyState and GetKeyState.
4755 * No other API or message will distinguish left and right keys this way.
4757 /* 0xA0 .. 0xEF */
4759 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
4760 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
4761 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
4762 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
4763 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
4765 /* 0xF0 .. 0xF5 */
4767 0, 0, 0, 0, 0, 0,
4769 "attn", /* VK_ATTN 0xF6 */
4770 "crsel", /* VK_CRSEL 0xF7 */
4771 "exsel", /* VK_EXSEL 0xF8 */
4772 "ereof", /* VK_EREOF 0xF9 */
4773 "play", /* VK_PLAY 0xFA */
4774 "zoom", /* VK_ZOOM 0xFB */
4775 "noname", /* VK_NONAME 0xFC */
4776 "pa1", /* VK_PA1 0xFD */
4777 "oem_clear", /* VK_OEM_CLEAR 0xFE */
4778 0 /* 0xFF */
4781 #else /* not HAVE_NTGUI */
4783 /* This should be dealt with in XTread_socket now, and that doesn't
4784 depend on the client system having the Kana syms defined. See also
4785 the XK_kana_A case below. */
4786 #if 0
4787 #ifdef XK_kana_A
4788 static char *lispy_kana_keys[] =
4790 /* X Keysym value */
4791 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, /* 0x400 .. 0x40f */
4792 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, /* 0x410 .. 0x41f */
4793 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, /* 0x420 .. 0x42f */
4794 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, /* 0x430 .. 0x43f */
4795 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, /* 0x440 .. 0x44f */
4796 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, /* 0x450 .. 0x45f */
4797 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, /* 0x460 .. 0x46f */
4798 0,0,0,0,0,0,0,0,0,0,0,0,0,0,"overline",0,
4799 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, /* 0x480 .. 0x48f */
4800 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, /* 0x490 .. 0x49f */
4801 0, "kana-fullstop", "kana-openingbracket", "kana-closingbracket",
4802 "kana-comma", "kana-conjunctive", "kana-WO", "kana-a",
4803 "kana-i", "kana-u", "kana-e", "kana-o",
4804 "kana-ya", "kana-yu", "kana-yo", "kana-tsu",
4805 "prolongedsound", "kana-A", "kana-I", "kana-U",
4806 "kana-E", "kana-O", "kana-KA", "kana-KI",
4807 "kana-KU", "kana-KE", "kana-KO", "kana-SA",
4808 "kana-SHI", "kana-SU", "kana-SE", "kana-SO",
4809 "kana-TA", "kana-CHI", "kana-TSU", "kana-TE",
4810 "kana-TO", "kana-NA", "kana-NI", "kana-NU",
4811 "kana-NE", "kana-NO", "kana-HA", "kana-HI",
4812 "kana-FU", "kana-HE", "kana-HO", "kana-MA",
4813 "kana-MI", "kana-MU", "kana-ME", "kana-MO",
4814 "kana-YA", "kana-YU", "kana-YO", "kana-RA",
4815 "kana-RI", "kana-RU", "kana-RE", "kana-RO",
4816 "kana-WA", "kana-N", "voicedsound", "semivoicedsound",
4817 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, /* 0x4e0 .. 0x4ef */
4818 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, /* 0x4f0 .. 0x4ff */
4820 #endif /* XK_kana_A */
4821 #endif /* 0 */
4823 #define FUNCTION_KEY_OFFSET 0xff00
4825 /* You'll notice that this table is arranged to be conveniently
4826 indexed by X Windows keysym values. */
4827 static char *lispy_function_keys[] =
4829 /* X Keysym value */
4831 0, 0, 0, 0, 0, 0, 0, 0, /* 0xff00...0f */
4832 "backspace", "tab", "linefeed", "clear",
4833 0, "return", 0, 0,
4834 0, 0, 0, "pause", /* 0xff10...1f */
4835 0, 0, 0, 0, 0, 0, 0, "escape",
4836 0, 0, 0, 0,
4837 0, "kanji", "muhenkan", "henkan", /* 0xff20...2f */
4838 "romaji", "hiragana", "katakana", "hiragana-katakana",
4839 "zenkaku", "hankaku", "zenkaku-hankaku", "touroku",
4840 "massyo", "kana-lock", "kana-shift", "eisu-shift",
4841 "eisu-toggle", /* 0xff30...3f */
4842 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
4843 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, /* 0xff40...4f */
4845 "home", "left", "up", "right", /* 0xff50 */ /* IsCursorKey */
4846 "down", "prior", "next", "end",
4847 "begin", 0, 0, 0, 0, 0, 0, 0,
4848 "select", /* 0xff60 */ /* IsMiscFunctionKey */
4849 "print",
4850 "execute",
4851 "insert",
4852 0, /* 0xff64 */
4853 "undo",
4854 "redo",
4855 "menu",
4856 "find",
4857 "cancel",
4858 "help",
4859 "break", /* 0xff6b */
4861 0, 0, 0, 0,
4862 0, 0, 0, 0, "backtab", 0, 0, 0, /* 0xff70... */
4863 0, 0, 0, 0, 0, 0, 0, "kp-numlock", /* 0xff78... */
4864 "kp-space", /* 0xff80 */ /* IsKeypadKey */
4865 0, 0, 0, 0, 0, 0, 0, 0,
4866 "kp-tab", /* 0xff89 */
4867 0, 0, 0,
4868 "kp-enter", /* 0xff8d */
4869 0, 0, 0,
4870 "kp-f1", /* 0xff91 */
4871 "kp-f2",
4872 "kp-f3",
4873 "kp-f4",
4874 "kp-home", /* 0xff95 */
4875 "kp-left",
4876 "kp-up",
4877 "kp-right",
4878 "kp-down",
4879 "kp-prior", /* kp-page-up */
4880 "kp-next", /* kp-page-down */
4881 "kp-end",
4882 "kp-begin",
4883 "kp-insert",
4884 "kp-delete",
4885 0, /* 0xffa0 */
4886 0, 0, 0, 0, 0, 0, 0, 0, 0,
4887 "kp-multiply", /* 0xffaa */
4888 "kp-add",
4889 "kp-separator",
4890 "kp-subtract",
4891 "kp-decimal",
4892 "kp-divide", /* 0xffaf */
4893 "kp-0", /* 0xffb0 */
4894 "kp-1", "kp-2", "kp-3", "kp-4", "kp-5", "kp-6", "kp-7", "kp-8", "kp-9",
4895 0, /* 0xffba */
4896 0, 0,
4897 "kp-equal", /* 0xffbd */
4898 "f1", /* 0xffbe */ /* IsFunctionKey */
4899 "f2",
4900 "f3", "f4", "f5", "f6", "f7", "f8", "f9", "f10", /* 0xffc0 */
4901 "f11", "f12", "f13", "f14", "f15", "f16", "f17", "f18",
4902 "f19", "f20", "f21", "f22", "f23", "f24", "f25", "f26", /* 0xffd0 */
4903 "f27", "f28", "f29", "f30", "f31", "f32", "f33", "f34",
4904 "f35", 0, 0, 0, 0, 0, 0, 0, /* 0xffe0 */
4905 0, 0, 0, 0, 0, 0, 0, 0,
4906 0, 0, 0, 0, 0, 0, 0, 0, /* 0xfff0 */
4907 0, 0, 0, 0, 0, 0, 0, "delete"
4910 /* ISO 9995 Function and Modifier Keys; the first byte is 0xFE. */
4911 #define ISO_FUNCTION_KEY_OFFSET 0xfe00
4913 static char *iso_lispy_function_keys[] =
4915 0, 0, 0, 0, 0, 0, 0, 0, /* 0xfe00 */
4916 0, 0, 0, 0, 0, 0, 0, 0, /* 0xfe08 */
4917 0, 0, 0, 0, 0, 0, 0, 0, /* 0xfe10 */
4918 0, 0, 0, 0, 0, 0, 0, 0, /* 0xfe18 */
4919 "iso-lefttab", /* 0xfe20 */
4920 "iso-move-line-up", "iso-move-line-down",
4921 "iso-partial-line-up", "iso-partial-line-down",
4922 "iso-partial-space-left", "iso-partial-space-right",
4923 "iso-set-margin-left", "iso-set-margin-right", /* 0xffe27, 28 */
4924 "iso-release-margin-left", "iso-release-margin-right",
4925 "iso-release-both-margins",
4926 "iso-fast-cursor-left", "iso-fast-cursor-right",
4927 "iso-fast-cursor-up", "iso-fast-cursor-down",
4928 "iso-continuous-underline", "iso-discontinuous-underline", /* 0xfe30, 31 */
4929 "iso-emphasize", "iso-center-object", "iso-enter", /* ... 0xfe34 */
4932 #endif /* not HAVE_NTGUI */
4934 Lisp_Object Vlispy_mouse_stem;
4936 static char *lispy_wheel_names[] =
4938 "wheel-up", "wheel-down"
4941 /* drag-n-drop events are generated when a set of selected files are
4942 dragged from another application and dropped onto an Emacs window. */
4943 static char *lispy_drag_n_drop_names[] =
4945 "drag-n-drop"
4948 /* Scroll bar parts. */
4949 Lisp_Object Qabove_handle, Qhandle, Qbelow_handle;
4950 Lisp_Object Qup, Qdown, Qbottom, Qend_scroll;
4951 Lisp_Object Qtop, Qratio;
4953 /* An array of scroll bar parts, indexed by an enum scroll_bar_part value. */
4954 Lisp_Object *scroll_bar_parts[] = {
4955 &Qabove_handle, &Qhandle, &Qbelow_handle,
4956 &Qup, &Qdown, &Qtop, &Qbottom, &Qend_scroll, &Qratio
4959 /* User signal events. */
4960 Lisp_Object Qusr1_signal, Qusr2_signal;
4962 Lisp_Object *lispy_user_signals[] =
4964 &Qusr1_signal, &Qusr2_signal
4968 /* A vector, indexed by button number, giving the down-going location
4969 of currently depressed buttons, both scroll bar and non-scroll bar.
4971 The elements have the form
4972 (BUTTON-NUMBER MODIFIER-MASK . REST)
4973 where REST is the cdr of a position as it would be reported in the event.
4975 The make_lispy_event function stores positions here to tell the
4976 difference between click and drag events, and to store the starting
4977 location to be included in drag events. */
4979 static Lisp_Object button_down_location;
4981 /* Information about the most recent up-going button event: Which
4982 button, what location, and what time. */
4984 static int last_mouse_button;
4985 static int last_mouse_x;
4986 static int last_mouse_y;
4987 static unsigned long button_down_time;
4989 /* The maximum time between clicks to make a double-click, or Qnil to
4990 disable double-click detection, or Qt for no time limit. */
4992 Lisp_Object Vdouble_click_time;
4994 /* Maximum number of pixels the mouse may be moved between clicks
4995 to make a double-click. */
4997 EMACS_INT double_click_fuzz;
4999 /* The number of clicks in this multiple-click. */
5001 int double_click_count;
5003 /* Return position of a mouse click or wheel event */
5005 static Lisp_Object
5006 make_lispy_position (f, x, y, time)
5007 struct frame *f;
5008 Lisp_Object *x, *y;
5009 unsigned long time;
5011 Lisp_Object window;
5012 enum window_part part;
5013 Lisp_Object posn = Qnil;
5014 Lisp_Object extra_info = Qnil;
5015 int wx, wy;
5017 /* Set `window' to the window under frame pixel coordinates (x,y) */
5018 if (f)
5019 window = window_from_coordinates (f, XINT (*x), XINT (*y),
5020 &part, &wx, &wy, 0);
5021 else
5022 window = Qnil;
5024 if (WINDOWP (window))
5026 /* It's a click in window window at frame coordinates (x,y) */
5027 struct window *w = XWINDOW (window);
5028 Lisp_Object string_info = Qnil;
5029 int textpos = -1, rx = -1, ry = -1;
5030 int dx = -1, dy = -1;
5031 int width = -1, height = -1;
5032 Lisp_Object object = Qnil;
5034 /* Set event coordinates to window-relative coordinates
5035 for constructing the Lisp event below. */
5036 XSETINT (*x, wx);
5037 XSETINT (*y, wy);
5039 if (part == ON_MODE_LINE || part == ON_HEADER_LINE)
5041 /* Mode line or header line. Look for a string under
5042 the mouse that may have a `local-map' property. */
5043 Lisp_Object string;
5044 int charpos;
5046 posn = part == ON_MODE_LINE ? Qmode_line : Qheader_line;
5047 rx = wx, ry = wy;
5048 string = mode_line_string (w, part, &rx, &ry, &charpos,
5049 &object, &dx, &dy, &width, &height);
5050 if (STRINGP (string))
5051 string_info = Fcons (string, make_number (charpos));
5052 if (w == XWINDOW (selected_window))
5053 textpos = PT;
5054 else
5055 textpos = XMARKER (w->pointm)->charpos;
5057 else if (part == ON_VERTICAL_BORDER)
5059 posn = Qvertical_line;
5060 wx = -1;
5061 dx = 0;
5062 width = 1;
5064 else if (part == ON_LEFT_MARGIN || part == ON_RIGHT_MARGIN)
5066 Lisp_Object string;
5067 int charpos;
5069 posn = (part == ON_LEFT_MARGIN) ? Qleft_margin : Qright_margin;
5070 rx = wx, ry = wy;
5071 string = marginal_area_string (w, part, &rx, &ry, &charpos,
5072 &object, &dx, &dy, &width, &height);
5073 if (STRINGP (string))
5074 string_info = Fcons (string, make_number (charpos));
5076 else if (part == ON_LEFT_FRINGE || part == ON_RIGHT_FRINGE)
5078 posn = (part == ON_LEFT_FRINGE) ? Qleft_fringe : Qright_fringe;
5079 rx = 0;
5080 dx = wx;
5081 if (part == ON_RIGHT_FRINGE)
5082 dx -= (window_box_width (w, LEFT_MARGIN_AREA)
5083 + window_box_width (w, TEXT_AREA)
5084 + (WINDOW_HAS_FRINGES_OUTSIDE_MARGINS (w)
5085 ? window_box_width (w, RIGHT_MARGIN_AREA)
5086 : 0));
5087 else if (!WINDOW_HAS_FRINGES_OUTSIDE_MARGINS (w))
5088 dx -= window_box_width (w, LEFT_MARGIN_AREA);
5091 if (textpos < 0)
5093 Lisp_Object string2, object2 = Qnil;
5094 struct display_pos p;
5095 int dx2, dy2;
5096 int width2, height2;
5097 wx = max (WINDOW_LEFT_MARGIN_WIDTH (w), wx);
5098 string2 = buffer_posn_from_coords (w, &wx, &wy, &p,
5099 &object2, &dx2, &dy2,
5100 &width2, &height2);
5101 textpos = CHARPOS (p.pos);
5102 if (rx < 0) rx = wx;
5103 if (ry < 0) ry = wy;
5104 if (dx < 0) dx = dx2;
5105 if (dy < 0) dy = dy2;
5106 if (width < 0) width = width2;
5107 if (height < 0) height = height2;
5109 if (NILP (posn))
5111 posn = make_number (textpos);
5112 if (STRINGP (string2))
5113 string_info = Fcons (string2,
5114 make_number (CHARPOS (p.string_pos)));
5116 if (NILP (object))
5117 object = object2;
5120 #ifdef HAVE_WINDOW_SYSTEM
5121 if (IMAGEP (object))
5123 Lisp_Object image_map, hotspot;
5124 if ((image_map = Fplist_get (XCDR (object), QCmap),
5125 !NILP (image_map))
5126 && (hotspot = find_hot_spot (image_map, dx, dy),
5127 CONSP (hotspot))
5128 && (hotspot = XCDR (hotspot), CONSP (hotspot)))
5129 posn = XCAR (hotspot);
5131 #endif
5133 /* Object info */
5134 extra_info = Fcons (object,
5135 Fcons (Fcons (make_number (dx),
5136 make_number (dy)),
5137 Fcons (Fcons (make_number (width),
5138 make_number (height)),
5139 Qnil)));
5141 /* String info */
5142 extra_info = Fcons (string_info,
5143 Fcons (make_number (textpos),
5144 Fcons (Fcons (make_number (rx),
5145 make_number (ry)),
5146 extra_info)));
5148 else if (f != 0)
5150 XSETFRAME (window, f);
5152 else
5154 window = Qnil;
5155 XSETFASTINT (*x, 0);
5156 XSETFASTINT (*y, 0);
5159 return Fcons (window,
5160 Fcons (posn,
5161 Fcons (Fcons (*x, *y),
5162 Fcons (make_number (time),
5163 extra_info))));
5166 /* Given a struct input_event, build the lisp event which represents
5167 it. If EVENT is 0, build a mouse movement event from the mouse
5168 movement buffer, which should have a movement event in it.
5170 Note that events must be passed to this function in the order they
5171 are received; this function stores the location of button presses
5172 in order to build drag events when the button is released. */
5174 static Lisp_Object
5175 make_lispy_event (event)
5176 struct input_event *event;
5178 int i;
5180 switch (SWITCH_ENUM_CAST (event->kind))
5182 /* A simple keystroke. */
5183 case ASCII_KEYSTROKE_EVENT:
5185 Lisp_Object lispy_c;
5186 int c = event->code & 0377;
5187 /* Turn ASCII characters into control characters
5188 when proper. */
5189 if (event->modifiers & ctrl_modifier)
5190 c = make_ctrl_char (c);
5192 /* Add in the other modifier bits. We took care of ctrl_modifier
5193 just above, and the shift key was taken care of by the X code,
5194 and applied to control characters by make_ctrl_char. */
5195 c |= (event->modifiers
5196 & (meta_modifier | alt_modifier
5197 | hyper_modifier | super_modifier));
5198 /* Distinguish Shift-SPC from SPC. */
5199 if ((event->code & 0377) == 040
5200 && event->modifiers & shift_modifier)
5201 c |= shift_modifier;
5202 button_down_time = 0;
5203 XSETFASTINT (lispy_c, c);
5204 return lispy_c;
5207 case MULTIBYTE_CHAR_KEYSTROKE_EVENT:
5209 Lisp_Object lispy_c;
5210 int c = event->code;
5212 /* Add in the other modifier bits. We took care of ctrl_modifier
5213 just above, and the shift key was taken care of by the X code,
5214 and applied to control characters by make_ctrl_char. */
5215 c |= (event->modifiers
5216 & (meta_modifier | alt_modifier
5217 | hyper_modifier | super_modifier | ctrl_modifier));
5218 /* What about the `shift' modifier ? */
5219 button_down_time = 0;
5220 XSETFASTINT (lispy_c, c);
5221 return lispy_c;
5224 /* A function key. The symbol may need to have modifier prefixes
5225 tacked onto it. */
5226 case NON_ASCII_KEYSTROKE_EVENT:
5227 button_down_time = 0;
5229 for (i = 0; i < sizeof (lispy_accent_codes) / sizeof (int); i++)
5230 if (event->code == lispy_accent_codes[i])
5231 return modify_event_symbol (i,
5232 event->modifiers,
5233 Qfunction_key, Qnil,
5234 lispy_accent_keys, &accent_key_syms,
5235 (sizeof (lispy_accent_keys)
5236 / sizeof (lispy_accent_keys[0])));
5238 #if 0
5239 #ifdef XK_kana_A
5240 if (event->code >= 0x400 && event->code < 0x500)
5241 return modify_event_symbol (event->code - 0x400,
5242 event->modifiers & ~shift_modifier,
5243 Qfunction_key, Qnil,
5244 lispy_kana_keys, &func_key_syms,
5245 (sizeof (lispy_kana_keys)
5246 / sizeof (lispy_kana_keys[0])));
5247 #endif /* XK_kana_A */
5248 #endif /* 0 */
5250 #ifdef ISO_FUNCTION_KEY_OFFSET
5251 if (event->code < FUNCTION_KEY_OFFSET
5252 && event->code >= ISO_FUNCTION_KEY_OFFSET)
5253 return modify_event_symbol (event->code - ISO_FUNCTION_KEY_OFFSET,
5254 event->modifiers,
5255 Qfunction_key, Qnil,
5256 iso_lispy_function_keys, &func_key_syms,
5257 (sizeof (iso_lispy_function_keys)
5258 / sizeof (iso_lispy_function_keys[0])));
5259 #endif
5261 /* Handle system-specific or unknown keysyms. */
5262 if (event->code & (1 << 28)
5263 || event->code - FUNCTION_KEY_OFFSET < 0
5264 || (event->code - FUNCTION_KEY_OFFSET
5265 >= sizeof lispy_function_keys / sizeof *lispy_function_keys)
5266 || !lispy_function_keys[event->code - FUNCTION_KEY_OFFSET])
5268 /* We need to use an alist rather than a vector as the cache
5269 since we can't make a vector long enuf. */
5270 if (NILP (current_kboard->system_key_syms))
5271 current_kboard->system_key_syms = Fcons (Qnil, Qnil);
5272 return modify_event_symbol (event->code,
5273 event->modifiers,
5274 Qfunction_key,
5275 current_kboard->Vsystem_key_alist,
5276 0, &current_kboard->system_key_syms,
5277 (unsigned) -1);
5280 return modify_event_symbol (event->code - FUNCTION_KEY_OFFSET,
5281 event->modifiers,
5282 Qfunction_key, Qnil,
5283 lispy_function_keys, &func_key_syms,
5284 (sizeof (lispy_function_keys)
5285 / sizeof (lispy_function_keys[0])));
5287 #ifdef HAVE_MOUSE
5288 /* A mouse click. Figure out where it is, decide whether it's
5289 a press, click or drag, and build the appropriate structure. */
5290 case MOUSE_CLICK_EVENT:
5291 #ifndef USE_TOOLKIT_SCROLL_BARS
5292 case SCROLL_BAR_CLICK_EVENT:
5293 #endif
5295 int button = event->code;
5296 int is_double;
5297 Lisp_Object position;
5298 Lisp_Object *start_pos_ptr;
5299 Lisp_Object start_pos;
5301 position = Qnil;
5303 /* Build the position as appropriate for this mouse click. */
5304 if (event->kind == MOUSE_CLICK_EVENT)
5306 struct frame *f = XFRAME (event->frame_or_window);
5307 #if ! defined (USE_X_TOOLKIT) && ! defined (USE_GTK)
5308 int row, column;
5309 #endif
5311 /* Ignore mouse events that were made on frame that
5312 have been deleted. */
5313 if (! FRAME_LIVE_P (f))
5314 return Qnil;
5316 #if ! defined (USE_X_TOOLKIT) && ! defined (USE_GTK)
5317 /* EVENT->x and EVENT->y are frame-relative pixel
5318 coordinates at this place. Under old redisplay, COLUMN
5319 and ROW are set to frame relative glyph coordinates
5320 which are then used to determine whether this click is
5321 in a menu (non-toolkit version). */
5322 pixel_to_glyph_coords (f, XINT (event->x), XINT (event->y),
5323 &column, &row, NULL, 1);
5325 /* In the non-toolkit version, clicks on the menu bar
5326 are ordinary button events in the event buffer.
5327 Distinguish them, and invoke the menu.
5329 (In the toolkit version, the toolkit handles the menu bar
5330 and Emacs doesn't know about it until after the user
5331 makes a selection.) */
5332 if (row >= 0 && row < FRAME_MENU_BAR_LINES (f)
5333 && (event->modifiers & down_modifier))
5335 Lisp_Object items, item;
5336 int hpos;
5337 int i;
5339 #if 0
5340 /* Activate the menu bar on the down event. If the
5341 up event comes in before the menu code can deal with it,
5342 just ignore it. */
5343 if (! (event->modifiers & down_modifier))
5344 return Qnil;
5345 #endif
5347 /* Find the menu bar item under `column'. */
5348 item = Qnil;
5349 items = FRAME_MENU_BAR_ITEMS (f);
5350 for (i = 0; i < XVECTOR (items)->size; i += 4)
5352 Lisp_Object pos, string;
5353 string = AREF (items, i + 1);
5354 pos = AREF (items, i + 3);
5355 if (NILP (string))
5356 break;
5357 if (column >= XINT (pos)
5358 && column < XINT (pos) + SCHARS (string))
5360 item = AREF (items, i);
5361 break;
5365 /* ELisp manual 2.4b says (x y) are window relative but
5366 code says they are frame-relative. */
5367 position
5368 = Fcons (event->frame_or_window,
5369 Fcons (Qmenu_bar,
5370 Fcons (Fcons (event->x, event->y),
5371 Fcons (make_number (event->timestamp),
5372 Qnil))));
5374 return Fcons (item, Fcons (position, Qnil));
5376 #endif /* not USE_X_TOOLKIT && not USE_GTK */
5378 position = make_lispy_position (f, &event->x, &event->y,
5379 event->timestamp);
5381 #ifndef USE_TOOLKIT_SCROLL_BARS
5382 else
5384 /* It's a scrollbar click. */
5385 Lisp_Object window;
5386 Lisp_Object portion_whole;
5387 Lisp_Object part;
5389 window = event->frame_or_window;
5390 portion_whole = Fcons (event->x, event->y);
5391 part = *scroll_bar_parts[(int) event->part];
5393 position
5394 = Fcons (window,
5395 Fcons (Qvertical_scroll_bar,
5396 Fcons (portion_whole,
5397 Fcons (make_number (event->timestamp),
5398 Fcons (part, Qnil)))));
5400 #endif /* not USE_TOOLKIT_SCROLL_BARS */
5402 if (button >= ASIZE (button_down_location))
5404 button_down_location = larger_vector (button_down_location,
5405 button + 1, Qnil);
5406 mouse_syms = larger_vector (mouse_syms, button + 1, Qnil);
5409 start_pos_ptr = &AREF (button_down_location, button);
5410 start_pos = *start_pos_ptr;
5411 *start_pos_ptr = Qnil;
5414 /* On window-system frames, use the value of
5415 double-click-fuzz as is. On other frames, interpret it
5416 as a multiple of 1/8 characters. */
5417 struct frame *f;
5418 int fuzz;
5420 if (WINDOWP (event->frame_or_window))
5421 f = XFRAME (XWINDOW (event->frame_or_window)->frame);
5422 else if (FRAMEP (event->frame_or_window))
5423 f = XFRAME (event->frame_or_window);
5424 else
5425 abort ();
5427 if (FRAME_WINDOW_P (f))
5428 fuzz = double_click_fuzz;
5429 else
5430 fuzz = double_click_fuzz / 8;
5432 is_double = (button == last_mouse_button
5433 && (abs (XINT (event->x) - last_mouse_x) <= fuzz)
5434 && (abs (XINT (event->y) - last_mouse_y) <= fuzz)
5435 && button_down_time != 0
5436 && (EQ (Vdouble_click_time, Qt)
5437 || (INTEGERP (Vdouble_click_time)
5438 && ((int)(event->timestamp - button_down_time)
5439 < XINT (Vdouble_click_time)))));
5442 last_mouse_button = button;
5443 last_mouse_x = XINT (event->x);
5444 last_mouse_y = XINT (event->y);
5446 /* If this is a button press, squirrel away the location, so
5447 we can decide later whether it was a click or a drag. */
5448 if (event->modifiers & down_modifier)
5450 if (is_double)
5452 double_click_count++;
5453 event->modifiers |= ((double_click_count > 2)
5454 ? triple_modifier
5455 : double_modifier);
5457 else
5458 double_click_count = 1;
5459 button_down_time = event->timestamp;
5460 *start_pos_ptr = Fcopy_alist (position);
5463 /* Now we're releasing a button - check the co-ordinates to
5464 see if this was a click or a drag. */
5465 else if (event->modifiers & up_modifier)
5467 /* If we did not see a down before this up, ignore the up.
5468 Probably this happened because the down event chose a
5469 menu item. It would be an annoyance to treat the
5470 release of the button that chose the menu item as a
5471 separate event. */
5473 if (!CONSP (start_pos))
5474 return Qnil;
5476 event->modifiers &= ~up_modifier;
5477 #if 0 /* Formerly we treated an up with no down as a click event. */
5478 if (!CONSP (start_pos))
5479 event->modifiers |= click_modifier;
5480 else
5481 #endif
5483 Lisp_Object down;
5484 EMACS_INT xdiff = double_click_fuzz, ydiff = double_click_fuzz;
5486 /* The third element of every position
5487 should be the (x,y) pair. */
5488 down = Fcar (Fcdr (Fcdr (start_pos)));
5489 if (CONSP (down)
5490 && INTEGERP (XCAR (down)) && INTEGERP (XCDR (down)))
5492 xdiff = XFASTINT (event->x) - XFASTINT (XCAR (down));
5493 ydiff = XFASTINT (event->y) - XFASTINT (XCDR (down));
5496 if (xdiff < double_click_fuzz && xdiff > - double_click_fuzz
5497 && ydiff < double_click_fuzz
5498 && ydiff > - double_click_fuzz)
5499 /* Mouse hasn't moved (much). */
5500 event->modifiers |= click_modifier;
5501 else
5503 button_down_time = 0;
5504 event->modifiers |= drag_modifier;
5507 /* Don't check is_double; treat this as multiple
5508 if the down-event was multiple. */
5509 if (double_click_count > 1)
5510 event->modifiers |= ((double_click_count > 2)
5511 ? triple_modifier
5512 : double_modifier);
5515 else
5516 /* Every mouse event should either have the down_modifier or
5517 the up_modifier set. */
5518 abort ();
5521 /* Get the symbol we should use for the mouse click. */
5522 Lisp_Object head;
5524 head = modify_event_symbol (button,
5525 event->modifiers,
5526 Qmouse_click, Vlispy_mouse_stem,
5527 NULL,
5528 &mouse_syms,
5529 XVECTOR (mouse_syms)->size);
5530 if (event->modifiers & drag_modifier)
5531 return Fcons (head,
5532 Fcons (start_pos,
5533 Fcons (position,
5534 Qnil)));
5535 else if (event->modifiers & (double_modifier | triple_modifier))
5536 return Fcons (head,
5537 Fcons (position,
5538 Fcons (make_number (double_click_count),
5539 Qnil)));
5540 else
5541 return Fcons (head,
5542 Fcons (position,
5543 Qnil));
5547 case WHEEL_EVENT:
5549 Lisp_Object position;
5550 Lisp_Object head;
5552 /* Build the position as appropriate for this mouse click. */
5553 struct frame *f = XFRAME (event->frame_or_window);
5555 /* Ignore wheel events that were made on frame that have been
5556 deleted. */
5557 if (! FRAME_LIVE_P (f))
5558 return Qnil;
5560 position = make_lispy_position (f, &event->x, &event->y,
5561 event->timestamp);
5563 /* Set double or triple modifiers to indicate the wheel speed. */
5565 /* On window-system frames, use the value of
5566 double-click-fuzz as is. On other frames, interpret it
5567 as a multiple of 1/8 characters. */
5568 struct frame *f;
5569 int fuzz;
5570 int is_double;
5572 if (WINDOWP (event->frame_or_window))
5573 f = XFRAME (XWINDOW (event->frame_or_window)->frame);
5574 else if (FRAMEP (event->frame_or_window))
5575 f = XFRAME (event->frame_or_window);
5576 else
5577 abort ();
5579 if (FRAME_WINDOW_P (f))
5580 fuzz = double_click_fuzz;
5581 else
5582 fuzz = double_click_fuzz / 8;
5584 is_double = (last_mouse_button < 0
5585 && (abs (XINT (event->x) - last_mouse_x) <= fuzz)
5586 && (abs (XINT (event->y) - last_mouse_y) <= fuzz)
5587 && button_down_time != 0
5588 && (EQ (Vdouble_click_time, Qt)
5589 || (INTEGERP (Vdouble_click_time)
5590 && ((int)(event->timestamp - button_down_time)
5591 < XINT (Vdouble_click_time)))));
5592 if (is_double)
5594 double_click_count++;
5595 event->modifiers |= ((double_click_count > 2)
5596 ? triple_modifier
5597 : double_modifier);
5599 else
5601 double_click_count = 1;
5602 event->modifiers |= click_modifier;
5605 button_down_time = event->timestamp;
5606 /* Use a negative value to distinguish wheel from mouse button. */
5607 last_mouse_button = -1;
5608 last_mouse_x = XINT (event->x);
5609 last_mouse_y = XINT (event->y);
5613 int symbol_num;
5615 if (event->modifiers & up_modifier)
5617 /* Emit a wheel-up event. */
5618 event->modifiers &= ~up_modifier;
5619 symbol_num = 0;
5621 else if (event->modifiers & down_modifier)
5623 /* Emit a wheel-down event. */
5624 event->modifiers &= ~down_modifier;
5625 symbol_num = 1;
5627 else
5628 /* Every wheel event should either have the down_modifier or
5629 the up_modifier set. */
5630 abort ();
5632 /* Get the symbol we should use for the wheel event. */
5633 head = modify_event_symbol (symbol_num,
5634 event->modifiers,
5635 Qmouse_click,
5636 Qnil,
5637 lispy_wheel_names,
5638 &wheel_syms,
5639 ASIZE (wheel_syms));
5642 if (event->modifiers & (double_modifier | triple_modifier))
5643 return Fcons (head,
5644 Fcons (position,
5645 Fcons (make_number (double_click_count),
5646 Qnil)));
5647 else
5648 return Fcons (head,
5649 Fcons (position,
5650 Qnil));
5654 #ifdef USE_TOOLKIT_SCROLL_BARS
5656 /* We don't have down and up events if using toolkit scroll bars,
5657 so make this always a click event. Store in the `part' of
5658 the Lisp event a symbol which maps to the following actions:
5660 `above_handle' page up
5661 `below_handle' page down
5662 `up' line up
5663 `down' line down
5664 `top' top of buffer
5665 `bottom' bottom of buffer
5666 `handle' thumb has been dragged.
5667 `end-scroll' end of interaction with scroll bar
5669 The incoming input_event contains in its `part' member an
5670 index of type `enum scroll_bar_part' which we can use as an
5671 index in scroll_bar_parts to get the appropriate symbol. */
5673 case SCROLL_BAR_CLICK_EVENT:
5675 Lisp_Object position, head, window, portion_whole, part;
5677 window = event->frame_or_window;
5678 portion_whole = Fcons (event->x, event->y);
5679 part = *scroll_bar_parts[(int) event->part];
5681 position
5682 = Fcons (window,
5683 Fcons (Qvertical_scroll_bar,
5684 Fcons (portion_whole,
5685 Fcons (make_number (event->timestamp),
5686 Fcons (part, Qnil)))));
5688 /* Always treat scroll bar events as clicks. */
5689 event->modifiers |= click_modifier;
5690 event->modifiers &= ~up_modifier;
5692 if (event->code >= ASIZE (mouse_syms))
5693 mouse_syms = larger_vector (mouse_syms, event->code + 1, Qnil);
5695 /* Get the symbol we should use for the mouse click. */
5696 head = modify_event_symbol (event->code,
5697 event->modifiers,
5698 Qmouse_click,
5699 Vlispy_mouse_stem,
5700 NULL, &mouse_syms,
5701 XVECTOR (mouse_syms)->size);
5702 return Fcons (head, Fcons (position, Qnil));
5705 #endif /* USE_TOOLKIT_SCROLL_BARS */
5707 #ifdef WINDOWSNT
5708 case W32_SCROLL_BAR_CLICK_EVENT:
5710 int button = event->code;
5711 int is_double;
5712 Lisp_Object position;
5713 Lisp_Object *start_pos_ptr;
5714 Lisp_Object start_pos;
5717 Lisp_Object window;
5718 Lisp_Object portion_whole;
5719 Lisp_Object part;
5721 window = event->frame_or_window;
5722 portion_whole = Fcons (event->x, event->y);
5723 part = *scroll_bar_parts[(int) event->part];
5725 position
5726 = Fcons (window,
5727 Fcons (Qvertical_scroll_bar,
5728 Fcons (portion_whole,
5729 Fcons (make_number (event->timestamp),
5730 Fcons (part, Qnil)))));
5733 /* Always treat W32 scroll bar events as clicks. */
5734 event->modifiers |= click_modifier;
5737 /* Get the symbol we should use for the mouse click. */
5738 Lisp_Object head;
5740 head = modify_event_symbol (button,
5741 event->modifiers,
5742 Qmouse_click,
5743 Vlispy_mouse_stem,
5744 NULL, &mouse_syms,
5745 XVECTOR (mouse_syms)->size);
5746 return Fcons (head,
5747 Fcons (position,
5748 Qnil));
5751 #endif /* WINDOWSNT */
5753 case DRAG_N_DROP_EVENT:
5755 FRAME_PTR f;
5756 Lisp_Object head, position;
5757 Lisp_Object files;
5759 /* The frame_or_window field should be a cons of the frame in
5760 which the event occurred and a list of the filenames
5761 dropped. */
5762 if (! CONSP (event->frame_or_window))
5763 abort ();
5765 f = XFRAME (XCAR (event->frame_or_window));
5766 files = XCDR (event->frame_or_window);
5768 /* Ignore mouse events that were made on frames that
5769 have been deleted. */
5770 if (! FRAME_LIVE_P (f))
5771 return Qnil;
5773 position = make_lispy_position (f, &event->x, &event->y,
5774 event->timestamp);
5776 head = modify_event_symbol (0, event->modifiers,
5777 Qdrag_n_drop, Qnil,
5778 lispy_drag_n_drop_names,
5779 &drag_n_drop_syms, 1);
5780 return Fcons (head,
5781 Fcons (position,
5782 Fcons (files,
5783 Qnil)));
5785 #endif /* HAVE_MOUSE */
5787 #if defined (USE_X_TOOLKIT) || defined (HAVE_NTGUI) || defined (MAC_OS) \
5788 || defined (USE_GTK)
5789 case MENU_BAR_EVENT:
5790 if (EQ (event->arg, event->frame_or_window))
5791 /* This is the prefix key. We translate this to
5792 `(menu_bar)' because the code in keyboard.c for menu
5793 events, which we use, relies on this. */
5794 return Fcons (Qmenu_bar, Qnil);
5795 return event->arg;
5796 #endif
5798 case SELECT_WINDOW_EVENT:
5799 /* Make an event (select-window (WINDOW)). */
5800 return Fcons (Qselect_window,
5801 Fcons (Fcons (event->frame_or_window, Qnil),
5802 Qnil));
5804 case TOOL_BAR_EVENT:
5805 if (EQ (event->arg, event->frame_or_window))
5806 /* This is the prefix key. We translate this to
5807 `(tool_bar)' because the code in keyboard.c for tool bar
5808 events, which we use, relies on this. */
5809 return Fcons (Qtool_bar, Qnil);
5810 else if (SYMBOLP (event->arg))
5811 return apply_modifiers (event->modifiers, event->arg);
5812 return event->arg;
5814 case USER_SIGNAL_EVENT:
5815 /* A user signal. */
5816 return *lispy_user_signals[event->code];
5818 case SAVE_SESSION_EVENT:
5819 return Qsave_session;
5821 /* The 'kind' field of the event is something we don't recognize. */
5822 default:
5823 abort ();
5827 #ifdef HAVE_MOUSE
5829 static Lisp_Object
5830 make_lispy_movement (frame, bar_window, part, x, y, time)
5831 FRAME_PTR frame;
5832 Lisp_Object bar_window;
5833 enum scroll_bar_part part;
5834 Lisp_Object x, y;
5835 unsigned long time;
5837 /* Is it a scroll bar movement? */
5838 if (frame && ! NILP (bar_window))
5840 Lisp_Object part_sym;
5842 part_sym = *scroll_bar_parts[(int) part];
5843 return Fcons (Qscroll_bar_movement,
5844 (Fcons (Fcons (bar_window,
5845 Fcons (Qvertical_scroll_bar,
5846 Fcons (Fcons (x, y),
5847 Fcons (make_number (time),
5848 Fcons (part_sym,
5849 Qnil))))),
5850 Qnil)));
5853 /* Or is it an ordinary mouse movement? */
5854 else
5856 Lisp_Object position;
5858 position = make_lispy_position (frame, &x, &y, time);
5860 return Fcons (Qmouse_movement,
5861 Fcons (position,
5862 Qnil));
5866 #endif /* HAVE_MOUSE */
5868 /* Construct a switch frame event. */
5869 static Lisp_Object
5870 make_lispy_switch_frame (frame)
5871 Lisp_Object frame;
5873 return Fcons (Qswitch_frame, Fcons (frame, Qnil));
5876 /* Manipulating modifiers. */
5878 /* Parse the name of SYMBOL, and return the set of modifiers it contains.
5880 If MODIFIER_END is non-zero, set *MODIFIER_END to the position in
5881 SYMBOL's name of the end of the modifiers; the string from this
5882 position is the unmodified symbol name.
5884 This doesn't use any caches. */
5886 static int
5887 parse_modifiers_uncached (symbol, modifier_end)
5888 Lisp_Object symbol;
5889 int *modifier_end;
5891 Lisp_Object name;
5892 int i;
5893 int modifiers;
5895 CHECK_SYMBOL (symbol);
5897 modifiers = 0;
5898 name = SYMBOL_NAME (symbol);
5900 for (i = 0; i+2 <= SBYTES (name); )
5902 int this_mod_end = 0;
5903 int this_mod = 0;
5905 /* See if the name continues with a modifier word.
5906 Check that the word appears, but don't check what follows it.
5907 Set this_mod and this_mod_end to record what we find. */
5909 switch (SREF (name, i))
5911 #define SINGLE_LETTER_MOD(BIT) \
5912 (this_mod_end = i + 1, this_mod = BIT)
5914 case 'A':
5915 SINGLE_LETTER_MOD (alt_modifier);
5916 break;
5918 case 'C':
5919 SINGLE_LETTER_MOD (ctrl_modifier);
5920 break;
5922 case 'H':
5923 SINGLE_LETTER_MOD (hyper_modifier);
5924 break;
5926 case 'M':
5927 SINGLE_LETTER_MOD (meta_modifier);
5928 break;
5930 case 'S':
5931 SINGLE_LETTER_MOD (shift_modifier);
5932 break;
5934 case 's':
5935 SINGLE_LETTER_MOD (super_modifier);
5936 break;
5938 #undef SINGLE_LETTER_MOD
5940 #define MULTI_LETTER_MOD(BIT, NAME, LEN) \
5941 if (i + LEN + 1 <= SBYTES (name) \
5942 && ! strncmp (SDATA (name) + i, NAME, LEN)) \
5944 this_mod_end = i + LEN; \
5945 this_mod = BIT; \
5948 case 'd':
5949 MULTI_LETTER_MOD (drag_modifier, "drag", 4);
5950 MULTI_LETTER_MOD (down_modifier, "down", 4);
5951 MULTI_LETTER_MOD (double_modifier, "double", 6);
5952 break;
5954 case 't':
5955 MULTI_LETTER_MOD (triple_modifier, "triple", 6);
5956 break;
5957 #undef MULTI_LETTER_MOD
5961 /* If we found no modifier, stop looking for them. */
5962 if (this_mod_end == 0)
5963 break;
5965 /* Check there is a dash after the modifier, so that it
5966 really is a modifier. */
5967 if (this_mod_end >= SBYTES (name)
5968 || SREF (name, this_mod_end) != '-')
5969 break;
5971 /* This modifier is real; look for another. */
5972 modifiers |= this_mod;
5973 i = this_mod_end + 1;
5976 /* Should we include the `click' modifier? */
5977 if (! (modifiers & (down_modifier | drag_modifier
5978 | double_modifier | triple_modifier))
5979 && i + 7 == SBYTES (name)
5980 && strncmp (SDATA (name) + i, "mouse-", 6) == 0
5981 && ('0' <= SREF (name, i + 6) && SREF (name, i + 6) <= '9'))
5982 modifiers |= click_modifier;
5984 if (modifier_end)
5985 *modifier_end = i;
5987 return modifiers;
5990 /* Return a symbol whose name is the modifier prefixes for MODIFIERS
5991 prepended to the string BASE[0..BASE_LEN-1].
5992 This doesn't use any caches. */
5993 static Lisp_Object
5994 apply_modifiers_uncached (modifiers, base, base_len, base_len_byte)
5995 int modifiers;
5996 char *base;
5997 int base_len, base_len_byte;
5999 /* Since BASE could contain nulls, we can't use intern here; we have
6000 to use Fintern, which expects a genuine Lisp_String, and keeps a
6001 reference to it. */
6002 char *new_mods
6003 = (char *) alloca (sizeof ("A-C-H-M-S-s-down-drag-double-triple-"));
6004 int mod_len;
6007 char *p = new_mods;
6009 /* Only the event queue may use the `up' modifier; it should always
6010 be turned into a click or drag event before presented to lisp code. */
6011 if (modifiers & up_modifier)
6012 abort ();
6014 if (modifiers & alt_modifier) { *p++ = 'A'; *p++ = '-'; }
6015 if (modifiers & ctrl_modifier) { *p++ = 'C'; *p++ = '-'; }
6016 if (modifiers & hyper_modifier) { *p++ = 'H'; *p++ = '-'; }
6017 if (modifiers & meta_modifier) { *p++ = 'M'; *p++ = '-'; }
6018 if (modifiers & shift_modifier) { *p++ = 'S'; *p++ = '-'; }
6019 if (modifiers & super_modifier) { *p++ = 's'; *p++ = '-'; }
6020 if (modifiers & double_modifier) { strcpy (p, "double-"); p += 7; }
6021 if (modifiers & triple_modifier) { strcpy (p, "triple-"); p += 7; }
6022 if (modifiers & down_modifier) { strcpy (p, "down-"); p += 5; }
6023 if (modifiers & drag_modifier) { strcpy (p, "drag-"); p += 5; }
6024 /* The click modifier is denoted by the absence of other modifiers. */
6026 *p = '\0';
6028 mod_len = p - new_mods;
6032 Lisp_Object new_name;
6034 new_name = make_uninit_multibyte_string (mod_len + base_len,
6035 mod_len + base_len_byte);
6036 bcopy (new_mods, SDATA (new_name), mod_len);
6037 bcopy (base, SDATA (new_name) + mod_len, base_len_byte);
6039 return Fintern (new_name, Qnil);
6044 static char *modifier_names[] =
6046 "up", "down", "drag", "click", "double", "triple", 0, 0,
6047 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
6048 0, 0, "alt", "super", "hyper", "shift", "control", "meta"
6050 #define NUM_MOD_NAMES (sizeof (modifier_names) / sizeof (modifier_names[0]))
6052 static Lisp_Object modifier_symbols;
6054 /* Return the list of modifier symbols corresponding to the mask MODIFIERS. */
6055 static Lisp_Object
6056 lispy_modifier_list (modifiers)
6057 int modifiers;
6059 Lisp_Object modifier_list;
6060 int i;
6062 modifier_list = Qnil;
6063 for (i = 0; (1<<i) <= modifiers && i < NUM_MOD_NAMES; i++)
6064 if (modifiers & (1<<i))
6065 modifier_list = Fcons (XVECTOR (modifier_symbols)->contents[i],
6066 modifier_list);
6068 return modifier_list;
6072 /* Parse the modifiers on SYMBOL, and return a list like (UNMODIFIED MASK),
6073 where UNMODIFIED is the unmodified form of SYMBOL,
6074 MASK is the set of modifiers present in SYMBOL's name.
6075 This is similar to parse_modifiers_uncached, but uses the cache in
6076 SYMBOL's Qevent_symbol_element_mask property, and maintains the
6077 Qevent_symbol_elements property. */
6079 Lisp_Object
6080 parse_modifiers (symbol)
6081 Lisp_Object symbol;
6083 Lisp_Object elements;
6085 elements = Fget (symbol, Qevent_symbol_element_mask);
6086 if (CONSP (elements))
6087 return elements;
6088 else
6090 int end;
6091 int modifiers = parse_modifiers_uncached (symbol, &end);
6092 Lisp_Object unmodified;
6093 Lisp_Object mask;
6095 unmodified = Fintern (make_string (SDATA (SYMBOL_NAME (symbol)) + end,
6096 SBYTES (SYMBOL_NAME (symbol)) - end),
6097 Qnil);
6099 if (modifiers & ~INTMASK)
6100 abort ();
6101 XSETFASTINT (mask, modifiers);
6102 elements = Fcons (unmodified, Fcons (mask, Qnil));
6104 /* Cache the parsing results on SYMBOL. */
6105 Fput (symbol, Qevent_symbol_element_mask,
6106 elements);
6107 Fput (symbol, Qevent_symbol_elements,
6108 Fcons (unmodified, lispy_modifier_list (modifiers)));
6110 /* Since we know that SYMBOL is modifiers applied to unmodified,
6111 it would be nice to put that in unmodified's cache.
6112 But we can't, since we're not sure that parse_modifiers is
6113 canonical. */
6115 return elements;
6119 /* Apply the modifiers MODIFIERS to the symbol BASE.
6120 BASE must be unmodified.
6122 This is like apply_modifiers_uncached, but uses BASE's
6123 Qmodifier_cache property, if present. It also builds
6124 Qevent_symbol_elements properties, since it has that info anyway.
6126 apply_modifiers copies the value of BASE's Qevent_kind property to
6127 the modified symbol. */
6128 static Lisp_Object
6129 apply_modifiers (modifiers, base)
6130 int modifiers;
6131 Lisp_Object base;
6133 Lisp_Object cache, index, entry, new_symbol;
6135 /* Mask out upper bits. We don't know where this value's been. */
6136 modifiers &= INTMASK;
6138 /* The click modifier never figures into cache indices. */
6139 cache = Fget (base, Qmodifier_cache);
6140 XSETFASTINT (index, (modifiers & ~click_modifier));
6141 entry = assq_no_quit (index, cache);
6143 if (CONSP (entry))
6144 new_symbol = XCDR (entry);
6145 else
6147 /* We have to create the symbol ourselves. */
6148 new_symbol = apply_modifiers_uncached (modifiers,
6149 SDATA (SYMBOL_NAME (base)),
6150 SCHARS (SYMBOL_NAME (base)),
6151 SBYTES (SYMBOL_NAME (base)));
6153 /* Add the new symbol to the base's cache. */
6154 entry = Fcons (index, new_symbol);
6155 Fput (base, Qmodifier_cache, Fcons (entry, cache));
6157 /* We have the parsing info now for free, so we could add it to
6158 the caches:
6159 XSETFASTINT (index, modifiers);
6160 Fput (new_symbol, Qevent_symbol_element_mask,
6161 Fcons (base, Fcons (index, Qnil)));
6162 Fput (new_symbol, Qevent_symbol_elements,
6163 Fcons (base, lispy_modifier_list (modifiers)));
6164 Sadly, this is only correct if `base' is indeed a base event,
6165 which is not necessarily the case. -stef */
6168 /* Make sure this symbol is of the same kind as BASE.
6170 You'd think we could just set this once and for all when we
6171 intern the symbol above, but reorder_modifiers may call us when
6172 BASE's property isn't set right; we can't assume that just
6173 because it has a Qmodifier_cache property it must have its
6174 Qevent_kind set right as well. */
6175 if (NILP (Fget (new_symbol, Qevent_kind)))
6177 Lisp_Object kind;
6179 kind = Fget (base, Qevent_kind);
6180 if (! NILP (kind))
6181 Fput (new_symbol, Qevent_kind, kind);
6184 return new_symbol;
6188 /* Given a symbol whose name begins with modifiers ("C-", "M-", etc),
6189 return a symbol with the modifiers placed in the canonical order.
6190 Canonical order is alphabetical, except for down and drag, which
6191 always come last. The 'click' modifier is never written out.
6193 Fdefine_key calls this to make sure that (for example) C-M-foo
6194 and M-C-foo end up being equivalent in the keymap. */
6196 Lisp_Object
6197 reorder_modifiers (symbol)
6198 Lisp_Object symbol;
6200 /* It's hopefully okay to write the code this way, since everything
6201 will soon be in caches, and no consing will be done at all. */
6202 Lisp_Object parsed;
6204 parsed = parse_modifiers (symbol);
6205 return apply_modifiers ((int) XINT (XCAR (XCDR (parsed))),
6206 XCAR (parsed));
6210 /* For handling events, we often want to produce a symbol whose name
6211 is a series of modifier key prefixes ("M-", "C-", etcetera) attached
6212 to some base, like the name of a function key or mouse button.
6213 modify_event_symbol produces symbols of this sort.
6215 NAME_TABLE should point to an array of strings, such that NAME_TABLE[i]
6216 is the name of the i'th symbol. TABLE_SIZE is the number of elements
6217 in the table.
6219 Alternatively, NAME_ALIST_OR_STEM is either an alist mapping codes
6220 into symbol names, or a string specifying a name stem used to
6221 construct a symbol name or the form `STEM-N', where N is the decimal
6222 representation of SYMBOL_NUM. NAME_ALIST_OR_STEM is used if it is
6223 non-nil; otherwise NAME_TABLE is used.
6225 SYMBOL_TABLE should be a pointer to a Lisp_Object whose value will
6226 persist between calls to modify_event_symbol that it can use to
6227 store a cache of the symbols it's generated for this NAME_TABLE
6228 before. The object stored there may be a vector or an alist.
6230 SYMBOL_NUM is the number of the base name we want from NAME_TABLE.
6232 MODIFIERS is a set of modifier bits (as given in struct input_events)
6233 whose prefixes should be applied to the symbol name.
6235 SYMBOL_KIND is the value to be placed in the event_kind property of
6236 the returned symbol.
6238 The symbols we create are supposed to have an
6239 `event-symbol-elements' property, which lists the modifiers present
6240 in the symbol's name. */
6242 static Lisp_Object
6243 modify_event_symbol (symbol_num, modifiers, symbol_kind, name_alist_or_stem,
6244 name_table, symbol_table, table_size)
6245 int symbol_num;
6246 unsigned modifiers;
6247 Lisp_Object symbol_kind;
6248 Lisp_Object name_alist_or_stem;
6249 char **name_table;
6250 Lisp_Object *symbol_table;
6251 unsigned int table_size;
6253 Lisp_Object value;
6254 Lisp_Object symbol_int;
6256 /* Get rid of the "vendor-specific" bit here. */
6257 XSETINT (symbol_int, symbol_num & 0xffffff);
6259 /* Is this a request for a valid symbol? */
6260 if (symbol_num < 0 || symbol_num >= table_size)
6261 return Qnil;
6263 if (CONSP (*symbol_table))
6264 value = Fcdr (assq_no_quit (symbol_int, *symbol_table));
6266 /* If *symbol_table doesn't seem to be initialized properly, fix that.
6267 *symbol_table should be a lisp vector TABLE_SIZE elements long,
6268 where the Nth element is the symbol for NAME_TABLE[N], or nil if
6269 we've never used that symbol before. */
6270 else
6272 if (! VECTORP (*symbol_table)
6273 || XVECTOR (*symbol_table)->size != table_size)
6275 Lisp_Object size;
6277 XSETFASTINT (size, table_size);
6278 *symbol_table = Fmake_vector (size, Qnil);
6281 value = XVECTOR (*symbol_table)->contents[symbol_num];
6284 /* Have we already used this symbol before? */
6285 if (NILP (value))
6287 /* No; let's create it. */
6288 if (CONSP (name_alist_or_stem))
6289 value = Fcdr_safe (Fassq (symbol_int, name_alist_or_stem));
6290 else if (STRINGP (name_alist_or_stem))
6292 int len = SBYTES (name_alist_or_stem);
6293 char *buf = (char *) alloca (len + 50);
6294 sprintf (buf, "%s-%ld", SDATA (name_alist_or_stem),
6295 (long) XINT (symbol_int) + 1);
6296 value = intern (buf);
6298 else if (name_table != 0 && name_table[symbol_num])
6299 value = intern (name_table[symbol_num]);
6301 #ifdef HAVE_WINDOW_SYSTEM
6302 if (NILP (value))
6304 char *name = x_get_keysym_name (symbol_num);
6305 if (name)
6306 value = intern (name);
6308 #endif
6310 if (NILP (value))
6312 char buf[20];
6313 sprintf (buf, "key-%d", symbol_num);
6314 value = intern (buf);
6317 if (CONSP (*symbol_table))
6318 *symbol_table = Fcons (Fcons (symbol_int, value), *symbol_table);
6319 else
6320 XVECTOR (*symbol_table)->contents[symbol_num] = value;
6322 /* Fill in the cache entries for this symbol; this also
6323 builds the Qevent_symbol_elements property, which the user
6324 cares about. */
6325 apply_modifiers (modifiers & click_modifier, value);
6326 Fput (value, Qevent_kind, symbol_kind);
6329 /* Apply modifiers to that symbol. */
6330 return apply_modifiers (modifiers, value);
6333 /* Convert a list that represents an event type,
6334 such as (ctrl meta backspace), into the usual representation of that
6335 event type as a number or a symbol. */
6337 DEFUN ("event-convert-list", Fevent_convert_list, Sevent_convert_list, 1, 1, 0,
6338 doc: /* Convert the event description list EVENT-DESC to an event type.
6339 EVENT-DESC should contain one base event type (a character or symbol)
6340 and zero or more modifier names (control, meta, hyper, super, shift, alt,
6341 drag, down, double or triple). The base must be last.
6342 The return value is an event type (a character or symbol) which
6343 has the same base event type and all the specified modifiers. */)
6344 (event_desc)
6345 Lisp_Object event_desc;
6347 Lisp_Object base;
6348 int modifiers = 0;
6349 Lisp_Object rest;
6351 base = Qnil;
6352 rest = event_desc;
6353 while (CONSP (rest))
6355 Lisp_Object elt;
6356 int this = 0;
6358 elt = XCAR (rest);
6359 rest = XCDR (rest);
6361 /* Given a symbol, see if it is a modifier name. */
6362 if (SYMBOLP (elt) && CONSP (rest))
6363 this = parse_solitary_modifier (elt);
6365 if (this != 0)
6366 modifiers |= this;
6367 else if (!NILP (base))
6368 error ("Two bases given in one event");
6369 else
6370 base = elt;
6374 /* Let the symbol A refer to the character A. */
6375 if (SYMBOLP (base) && SCHARS (SYMBOL_NAME (base)) == 1)
6376 XSETINT (base, SREF (SYMBOL_NAME (base), 0));
6378 if (INTEGERP (base))
6380 /* Turn (shift a) into A. */
6381 if ((modifiers & shift_modifier) != 0
6382 && (XINT (base) >= 'a' && XINT (base) <= 'z'))
6384 XSETINT (base, XINT (base) - ('a' - 'A'));
6385 modifiers &= ~shift_modifier;
6388 /* Turn (control a) into C-a. */
6389 if (modifiers & ctrl_modifier)
6390 return make_number ((modifiers & ~ctrl_modifier)
6391 | make_ctrl_char (XINT (base)));
6392 else
6393 return make_number (modifiers | XINT (base));
6395 else if (SYMBOLP (base))
6396 return apply_modifiers (modifiers, base);
6397 else
6399 error ("Invalid base event");
6400 return Qnil;
6404 /* Try to recognize SYMBOL as a modifier name.
6405 Return the modifier flag bit, or 0 if not recognized. */
6407 static int
6408 parse_solitary_modifier (symbol)
6409 Lisp_Object symbol;
6411 Lisp_Object name = SYMBOL_NAME (symbol);
6413 switch (SREF (name, 0))
6415 #define SINGLE_LETTER_MOD(BIT) \
6416 if (SBYTES (name) == 1) \
6417 return BIT;
6419 #define MULTI_LETTER_MOD(BIT, NAME, LEN) \
6420 if (LEN == SBYTES (name) \
6421 && ! strncmp (SDATA (name), NAME, LEN)) \
6422 return BIT;
6424 case 'A':
6425 SINGLE_LETTER_MOD (alt_modifier);
6426 break;
6428 case 'a':
6429 MULTI_LETTER_MOD (alt_modifier, "alt", 3);
6430 break;
6432 case 'C':
6433 SINGLE_LETTER_MOD (ctrl_modifier);
6434 break;
6436 case 'c':
6437 MULTI_LETTER_MOD (ctrl_modifier, "ctrl", 4);
6438 MULTI_LETTER_MOD (ctrl_modifier, "control", 7);
6439 break;
6441 case 'H':
6442 SINGLE_LETTER_MOD (hyper_modifier);
6443 break;
6445 case 'h':
6446 MULTI_LETTER_MOD (hyper_modifier, "hyper", 5);
6447 break;
6449 case 'M':
6450 SINGLE_LETTER_MOD (meta_modifier);
6451 break;
6453 case 'm':
6454 MULTI_LETTER_MOD (meta_modifier, "meta", 4);
6455 break;
6457 case 'S':
6458 SINGLE_LETTER_MOD (shift_modifier);
6459 break;
6461 case 's':
6462 MULTI_LETTER_MOD (shift_modifier, "shift", 5);
6463 MULTI_LETTER_MOD (super_modifier, "super", 5);
6464 SINGLE_LETTER_MOD (super_modifier);
6465 break;
6467 case 'd':
6468 MULTI_LETTER_MOD (drag_modifier, "drag", 4);
6469 MULTI_LETTER_MOD (down_modifier, "down", 4);
6470 MULTI_LETTER_MOD (double_modifier, "double", 6);
6471 break;
6473 case 't':
6474 MULTI_LETTER_MOD (triple_modifier, "triple", 6);
6475 break;
6477 #undef SINGLE_LETTER_MOD
6478 #undef MULTI_LETTER_MOD
6481 return 0;
6484 /* Return 1 if EVENT is a list whose elements are all integers or symbols.
6485 Such a list is not valid as an event,
6486 but it can be a Lucid-style event type list. */
6489 lucid_event_type_list_p (object)
6490 Lisp_Object object;
6492 Lisp_Object tail;
6494 if (! CONSP (object))
6495 return 0;
6497 if (EQ (XCAR (object), Qhelp_echo)
6498 || EQ (XCAR (object), Qvertical_line)
6499 || EQ (XCAR (object), Qmode_line)
6500 || EQ (XCAR (object), Qheader_line))
6501 return 0;
6503 for (tail = object; CONSP (tail); tail = XCDR (tail))
6505 Lisp_Object elt;
6506 elt = XCAR (tail);
6507 if (! (INTEGERP (elt) || SYMBOLP (elt)))
6508 return 0;
6511 return NILP (tail);
6514 /* Store into *addr a value nonzero if terminal input chars are available.
6515 Serves the purpose of ioctl (0, FIONREAD, addr)
6516 but works even if FIONREAD does not exist.
6517 (In fact, this may actually read some input.)
6519 If READABLE_EVENTS_DO_TIMERS_NOW is set in FLAGS, actually run
6520 timer events that are ripe.
6521 If READABLE_EVENTS_FILTER_EVENTS is set in FLAGS, ignore internal
6522 events (FOCUS_IN_EVENT).
6523 If READABLE_EVENTS_IGNORE_SQUEEZABLES is set in FLAGS, ignore mouse
6524 movements. */
6526 static void
6527 get_input_pending (addr, flags)
6528 int *addr;
6529 int flags;
6531 /* First of all, have we already counted some input? */
6532 *addr = (!NILP (Vquit_flag) || readable_events (flags));
6534 /* If input is being read as it arrives, and we have none, there is none. */
6535 if (*addr > 0 || (interrupt_input && ! interrupts_deferred))
6536 return;
6538 /* Try to read some input and see how much we get. */
6539 gobble_input (0);
6540 *addr = (!NILP (Vquit_flag) || readable_events (flags));
6543 /* Interface to read_avail_input, blocking SIGIO or SIGALRM if necessary. */
6545 void
6546 gobble_input (expected)
6547 int expected;
6549 #ifndef VMS
6550 #ifdef SIGIO
6551 if (interrupt_input)
6553 SIGMASKTYPE mask;
6554 mask = sigblock (sigmask (SIGIO));
6555 read_avail_input (expected);
6556 sigsetmask (mask);
6558 else
6559 #ifdef POLL_FOR_INPUT
6560 /* XXX This condition was (read_socket_hook && !interrupt_input),
6561 but read_socket_hook is not global anymore. Let's pretend that
6562 it's always set. */
6563 if (!interrupt_input && poll_suppress_count == 0)
6565 SIGMASKTYPE mask;
6566 mask = sigblock (sigmask (SIGALRM));
6567 read_avail_input (expected);
6568 sigsetmask (mask);
6570 else
6571 #endif
6572 #endif
6573 read_avail_input (expected);
6574 #endif
6577 /* Put a BUFFER_SWITCH_EVENT in the buffer
6578 so that read_key_sequence will notice the new current buffer. */
6580 void
6581 record_asynch_buffer_change ()
6583 struct input_event event;
6584 Lisp_Object tem;
6585 EVENT_INIT (event);
6587 event.kind = BUFFER_SWITCH_EVENT;
6588 event.frame_or_window = Qnil;
6589 event.arg = Qnil;
6591 #ifdef subprocesses
6592 /* We don't need a buffer-switch event unless Emacs is waiting for input.
6593 The purpose of the event is to make read_key_sequence look up the
6594 keymaps again. If we aren't in read_key_sequence, we don't need one,
6595 and the event could cause trouble by messing up (input-pending-p). */
6596 tem = Fwaiting_for_user_input_p ();
6597 if (NILP (tem))
6598 return;
6599 #else
6600 /* We never need these events if we have no asynchronous subprocesses. */
6601 return;
6602 #endif
6604 /* Make sure no interrupt happens while storing the event. */
6605 #ifdef SIGIO
6606 if (interrupt_input)
6608 SIGMASKTYPE mask;
6609 mask = sigblock (sigmask (SIGIO));
6610 kbd_buffer_store_event (&event);
6611 sigsetmask (mask);
6613 else
6614 #endif
6616 stop_polling ();
6617 kbd_buffer_store_event (&event);
6618 start_polling ();
6622 #ifndef VMS
6624 /* Read any terminal input already buffered up by the system
6625 into the kbd_buffer, but do not wait.
6627 EXPECTED should be nonzero if the caller knows there is some input.
6629 Except on VMS, all input is read by this function.
6630 If interrupt_input is nonzero, this function MUST be called
6631 only when SIGIO is blocked.
6633 Returns the number of keyboard chars read, or -1 meaning
6634 this is a bad time to try to read input. */
6636 static int
6637 read_avail_input (expected)
6638 int expected;
6640 int nread = 0;
6641 int err = 0;
6642 struct display *d;
6644 /* Loop through the available displays, and call their input hooks. */
6645 d = display_list;
6646 while (d)
6648 struct display *next = d->next_display;
6650 if (d->read_socket_hook)
6652 int nr;
6653 struct input_event hold_quit;
6655 EVENT_INIT (hold_quit);
6656 hold_quit.kind = NO_EVENT;
6658 /* No need for FIONREAD or fcntl; just say don't wait. */
6659 while (nr = (*d->read_socket_hook) (d, expected, &hold_quit), nr > 0)
6661 nread += nr;
6662 expected = 0;
6665 if (nr == -1) /* Not OK to read input now. */
6667 err = 1;
6669 else if (nr == -2) /* Non-transient error. */
6671 /* The display device terminated; it should be closed. */
6673 /* Kill Emacs if this was our last display. */
6674 if (! display_list->next_display)
6675 /* Formerly simply reported no input, but that
6676 sometimes led to a failure of Emacs to terminate.
6677 SIGHUP seems appropriate if we can't reach the
6678 terminal. */
6679 /* ??? Is it really right to send the signal just to
6680 this process rather than to the whole process
6681 group? Perhaps on systems with FIONREAD Emacs is
6682 alone in its group. */
6683 kill (getpid (), SIGHUP);
6685 /* XXX Is calling delete_display safe here? It calls Fdelete_frame. */
6686 if (d->delete_display_hook)
6687 (*d->delete_display_hook) (d);
6688 else
6689 delete_display (d);
6692 if (hold_quit.kind != NO_EVENT)
6693 kbd_buffer_store_event (&hold_quit);
6696 d = next;
6699 if (err && !nread)
6700 nread = -1;
6702 return nread;
6705 /* This is the tty way of reading available input.
6707 Note that each terminal device has its own `struct display' object,
6708 and so this function is called once for each individual termcap
6709 display. The first parameter indicates which device to read from. */
6712 tty_read_avail_input (struct display *display,
6713 int expected,
6714 struct input_event *hold_quit)
6716 /* Using KBD_BUFFER_SIZE - 1 here avoids reading more than
6717 the kbd_buffer can really hold. That may prevent loss
6718 of characters on some systems when input is stuffed at us. */
6719 unsigned char cbuf[KBD_BUFFER_SIZE - 1];
6720 int n_to_read, i;
6721 struct tty_display_info *tty = display->display_info.tty;
6722 int nread = 0;
6724 if (display->type != output_termcap)
6725 abort ();
6727 /* XXX I think the following code should be moved to separate hook
6728 functions in system-dependent files. */
6729 #ifdef WINDOWSNT
6730 return 0;
6731 #else /* not WINDOWSNT */
6732 #ifdef MSDOS
6733 n_to_read = dos_keysns ();
6734 if (n_to_read == 0)
6735 return 0;
6737 cbuf[0] = dos_keyread ();
6738 nread = 1;
6740 #else /* not MSDOS */
6742 if (! tty->term_initted) /* In case we get called during bootstrap. */
6743 return 0;
6745 if (! tty->input)
6746 return 0; /* The terminal is suspended. */
6748 /* Determine how many characters we should *try* to read. */
6749 #ifdef FIONREAD
6750 /* Find out how much input is available. */
6751 if (ioctl (fileno (tty->input), FIONREAD, &n_to_read) < 0)
6753 if (! noninteractive)
6754 return -2; /* Close this display. */
6755 else
6756 n_to_read = 0;
6758 if (n_to_read == 0)
6759 return 0;
6760 if (n_to_read > sizeof cbuf)
6761 n_to_read = sizeof cbuf;
6762 #else /* no FIONREAD */
6763 #if defined (USG) || defined (DGUX) || defined(CYGWIN)
6764 /* Read some input if available, but don't wait. */
6765 n_to_read = sizeof cbuf;
6766 fcntl (fileno (tty->input), F_SETFL, O_NDELAY);
6767 #else
6768 you lose;
6769 #endif
6770 #endif
6772 /* Now read; for one reason or another, this will not block.
6773 NREAD is set to the number of chars read. */
6776 nread = emacs_read (fileno (tty->input), cbuf, n_to_read);
6777 /* POSIX infers that processes which are not in the session leader's
6778 process group won't get SIGHUP's at logout time. BSDI adheres to
6779 this part standard and returns -1 from read (0) with errno==EIO
6780 when the control tty is taken away.
6781 Jeffrey Honig <jch@bsdi.com> says this is generally safe. */
6782 if (nread == -1 && errno == EIO)
6783 return -2; /* Close this display. */
6784 #if defined (AIX) && (! defined (aix386) && defined (_BSD))
6785 /* The kernel sometimes fails to deliver SIGHUP for ptys.
6786 This looks incorrect, but it isn't, because _BSD causes
6787 O_NDELAY to be defined in fcntl.h as O_NONBLOCK,
6788 and that causes a value other than 0 when there is no input. */
6789 if (nread == 0)
6790 return -2; /* Close this display. */
6791 #endif
6793 while (
6794 /* We used to retry the read if it was interrupted.
6795 But this does the wrong thing when O_NDELAY causes
6796 an EAGAIN error. Does anybody know of a situation
6797 where a retry is actually needed? */
6798 #if 0
6799 nread < 0 && (errno == EAGAIN
6800 #ifdef EFAULT
6801 || errno == EFAULT
6802 #endif
6803 #ifdef EBADSLT
6804 || errno == EBADSLT
6805 #endif
6807 #else
6809 #endif
6812 #ifndef FIONREAD
6813 #if defined (USG) || defined (DGUX) || defined (CYGWIN)
6814 fcntl (fileno (tty->input), F_SETFL, 0);
6815 #endif /* USG or DGUX or CYGWIN */
6816 #endif /* no FIONREAD */
6818 if (nread <= 0)
6819 return nread;
6821 #endif /* not MSDOS */
6822 #endif /* not WINDOWSNT */
6824 for (i = 0; i < nread; i++)
6826 struct input_event buf;
6827 EVENT_INIT (buf);
6828 buf.kind = ASCII_KEYSTROKE_EVENT;
6829 buf.modifiers = 0;
6830 if (tty->meta_key == 1 && (cbuf[i] & 0x80))
6831 buf.modifiers = meta_modifier;
6832 if (tty->meta_key != 2)
6833 cbuf[i] &= ~0x80;
6835 buf.code = cbuf[i];
6836 /* Set the frame corresponding to the active tty. Note that the
6837 value of selected_frame is not reliable here, redisplay tends
6838 to temporarily change it. */
6839 buf.frame_or_window = tty->top_frame;
6840 buf.arg = Qnil;
6842 kbd_buffer_store_event (&buf);
6843 /* Don't look at input that follows a C-g too closely.
6844 This reduces lossage due to autorepeat on C-g. */
6845 if (buf.kind == ASCII_KEYSTROKE_EVENT
6846 && buf.code == quit_char)
6847 break;
6850 return nread;
6852 #endif /* not VMS */
6854 void
6855 handle_async_input ()
6857 #ifdef BSD4_1
6858 extern int select_alarmed;
6859 #endif
6861 interrupt_input_pending = 0;
6863 while (1)
6865 int nread;
6866 nread = read_avail_input (1);
6867 /* -1 means it's not ok to read the input now.
6868 UNBLOCK_INPUT will read it later; now, avoid infinite loop.
6869 0 means there was no keyboard input available. */
6870 if (nread <= 0)
6871 break;
6873 #ifdef BSD4_1
6874 select_alarmed = 1; /* Force the select emulator back to life */
6875 #endif
6879 #ifdef SIGIO /* for entire page */
6880 /* Note SIGIO has been undef'd if FIONREAD is missing. */
6882 static SIGTYPE
6883 input_available_signal (signo)
6884 int signo;
6886 /* Must preserve main program's value of errno. */
6887 int old_errno = errno;
6888 #if defined (USG) && !defined (POSIX_SIGNALS)
6889 /* USG systems forget handlers when they are used;
6890 must reestablish each time */
6891 signal (signo, input_available_signal);
6892 #endif /* USG */
6894 #ifdef BSD4_1
6895 sigisheld (SIGIO);
6896 #endif
6898 #ifdef SYNC_INPUT
6899 interrupt_input_pending = 1;
6900 #else
6901 SIGNAL_THREAD_CHECK (signo);
6902 #endif
6904 if (input_available_clear_time)
6905 EMACS_SET_SECS_USECS (*input_available_clear_time, 0, 0);
6907 #ifndef SYNC_INPUT
6908 handle_async_input ();
6909 #endif
6911 #ifdef BSD4_1
6912 sigfree ();
6913 #endif
6914 errno = old_errno;
6916 #endif /* SIGIO */
6918 /* Send ourselves a SIGIO.
6920 This function exists so that the UNBLOCK_INPUT macro in
6921 blockinput.h can have some way to take care of input we put off
6922 dealing with, without assuming that every file which uses
6923 UNBLOCK_INPUT also has #included the files necessary to get SIGIO. */
6924 void
6925 reinvoke_input_signal ()
6927 #ifdef SIGIO
6928 handle_async_input ();
6929 #endif
6934 static void menu_bar_item P_ ((Lisp_Object, Lisp_Object, Lisp_Object, void*));
6935 static Lisp_Object menu_bar_one_keymap_changed_items;
6937 /* These variables hold the vector under construction within
6938 menu_bar_items and its subroutines, and the current index
6939 for storing into that vector. */
6940 static Lisp_Object menu_bar_items_vector;
6941 static int menu_bar_items_index;
6943 /* Return a vector of menu items for a menu bar, appropriate
6944 to the current buffer. Each item has three elements in the vector:
6945 KEY STRING MAPLIST.
6947 OLD is an old vector we can optionally reuse, or nil. */
6949 Lisp_Object
6950 menu_bar_items (old)
6951 Lisp_Object old;
6953 /* The number of keymaps we're scanning right now, and the number of
6954 keymaps we have allocated space for. */
6955 int nmaps;
6957 /* maps[0..nmaps-1] are the prefix definitions of KEYBUF[0..t-1]
6958 in the current keymaps, or nil where it is not a prefix. */
6959 Lisp_Object *maps;
6961 Lisp_Object def, tail;
6963 Lisp_Object result;
6965 int mapno;
6966 Lisp_Object oquit;
6968 int i;
6970 struct gcpro gcpro1;
6972 /* In order to build the menus, we need to call the keymap
6973 accessors. They all call QUIT. But this function is called
6974 during redisplay, during which a quit is fatal. So inhibit
6975 quitting while building the menus.
6976 We do this instead of specbind because (1) errors will clear it anyway
6977 and (2) this avoids risk of specpdl overflow. */
6978 oquit = Vinhibit_quit;
6979 Vinhibit_quit = Qt;
6981 if (!NILP (old))
6982 menu_bar_items_vector = old;
6983 else
6984 menu_bar_items_vector = Fmake_vector (make_number (24), Qnil);
6985 menu_bar_items_index = 0;
6987 GCPRO1 (menu_bar_items_vector);
6989 /* Build our list of keymaps.
6990 If we recognize a function key and replace its escape sequence in
6991 keybuf with its symbol, or if the sequence starts with a mouse
6992 click and we need to switch buffers, we jump back here to rebuild
6993 the initial keymaps from the current buffer. */
6995 Lisp_Object *tmaps;
6997 /* Should overriding-terminal-local-map and overriding-local-map apply? */
6998 if (!NILP (Voverriding_local_map_menu_flag))
7000 /* Yes, use them (if non-nil) as well as the global map. */
7001 maps = (Lisp_Object *) alloca (3 * sizeof (maps[0]));
7002 nmaps = 0;
7003 if (!NILP (current_kboard->Voverriding_terminal_local_map))
7004 maps[nmaps++] = current_kboard->Voverriding_terminal_local_map;
7005 if (!NILP (Voverriding_local_map))
7006 maps[nmaps++] = Voverriding_local_map;
7008 else
7010 /* No, so use major and minor mode keymaps and keymap property.
7011 Note that menu-bar bindings in the local-map and keymap
7012 properties may not work reliable, as they are only
7013 recognized when the menu-bar (or mode-line) is updated,
7014 which does not normally happen after every command. */
7015 Lisp_Object tem;
7016 int nminor;
7017 nminor = current_minor_maps (NULL, &tmaps);
7018 maps = (Lisp_Object *) alloca ((nminor + 3) * sizeof (maps[0]));
7019 nmaps = 0;
7020 if (tem = get_local_map (PT, current_buffer, Qkeymap), !NILP (tem))
7021 maps[nmaps++] = tem;
7022 bcopy (tmaps, (void *) (maps + nmaps), nminor * sizeof (maps[0]));
7023 nmaps += nminor;
7024 maps[nmaps++] = get_local_map (PT, current_buffer, Qlocal_map);
7026 maps[nmaps++] = current_global_map;
7029 /* Look up in each map the dummy prefix key `menu-bar'. */
7031 result = Qnil;
7033 for (mapno = nmaps - 1; mapno >= 0; mapno--)
7034 if (!NILP (maps[mapno]))
7036 def = get_keymap (access_keymap (maps[mapno], Qmenu_bar, 1, 0, 1),
7037 0, 1);
7038 if (CONSP (def))
7040 menu_bar_one_keymap_changed_items = Qnil;
7041 map_keymap (def, menu_bar_item, Qnil, NULL, 1);
7045 /* Move to the end those items that should be at the end. */
7047 for (tail = Vmenu_bar_final_items; CONSP (tail); tail = XCDR (tail))
7049 int i;
7050 int end = menu_bar_items_index;
7052 for (i = 0; i < end; i += 4)
7053 if (EQ (XCAR (tail), XVECTOR (menu_bar_items_vector)->contents[i]))
7055 Lisp_Object tem0, tem1, tem2, tem3;
7056 /* Move the item at index I to the end,
7057 shifting all the others forward. */
7058 tem0 = XVECTOR (menu_bar_items_vector)->contents[i + 0];
7059 tem1 = XVECTOR (menu_bar_items_vector)->contents[i + 1];
7060 tem2 = XVECTOR (menu_bar_items_vector)->contents[i + 2];
7061 tem3 = XVECTOR (menu_bar_items_vector)->contents[i + 3];
7062 if (end > i + 4)
7063 bcopy (&XVECTOR (menu_bar_items_vector)->contents[i + 4],
7064 &XVECTOR (menu_bar_items_vector)->contents[i],
7065 (end - i - 4) * sizeof (Lisp_Object));
7066 XVECTOR (menu_bar_items_vector)->contents[end - 4] = tem0;
7067 XVECTOR (menu_bar_items_vector)->contents[end - 3] = tem1;
7068 XVECTOR (menu_bar_items_vector)->contents[end - 2] = tem2;
7069 XVECTOR (menu_bar_items_vector)->contents[end - 1] = tem3;
7070 break;
7074 /* Add nil, nil, nil, nil at the end. */
7075 i = menu_bar_items_index;
7076 if (i + 4 > XVECTOR (menu_bar_items_vector)->size)
7078 Lisp_Object tem;
7079 tem = Fmake_vector (make_number (2 * i), Qnil);
7080 bcopy (XVECTOR (menu_bar_items_vector)->contents,
7081 XVECTOR (tem)->contents, i * sizeof (Lisp_Object));
7082 menu_bar_items_vector = tem;
7084 /* Add this item. */
7085 XVECTOR (menu_bar_items_vector)->contents[i++] = Qnil;
7086 XVECTOR (menu_bar_items_vector)->contents[i++] = Qnil;
7087 XVECTOR (menu_bar_items_vector)->contents[i++] = Qnil;
7088 XVECTOR (menu_bar_items_vector)->contents[i++] = Qnil;
7089 menu_bar_items_index = i;
7091 Vinhibit_quit = oquit;
7092 UNGCPRO;
7093 return menu_bar_items_vector;
7096 /* Add one item to menu_bar_items_vector, for KEY, ITEM_STRING and DEF.
7097 If there's already an item for KEY, add this DEF to it. */
7099 Lisp_Object item_properties;
7101 static void
7102 menu_bar_item (key, item, dummy1, dummy2)
7103 Lisp_Object key, item, dummy1;
7104 void *dummy2;
7106 struct gcpro gcpro1;
7107 int i;
7108 Lisp_Object tem;
7110 if (EQ (item, Qundefined))
7112 /* If a map has an explicit `undefined' as definition,
7113 discard any previously made menu bar item. */
7115 for (i = 0; i < menu_bar_items_index; i += 4)
7116 if (EQ (key, XVECTOR (menu_bar_items_vector)->contents[i]))
7118 if (menu_bar_items_index > i + 4)
7119 bcopy (&XVECTOR (menu_bar_items_vector)->contents[i + 4],
7120 &XVECTOR (menu_bar_items_vector)->contents[i],
7121 (menu_bar_items_index - i - 4) * sizeof (Lisp_Object));
7122 menu_bar_items_index -= 4;
7126 /* If this keymap has already contributed to this KEY,
7127 don't contribute to it a second time. */
7128 tem = Fmemq (key, menu_bar_one_keymap_changed_items);
7129 if (!NILP (tem) || NILP (item))
7130 return;
7132 menu_bar_one_keymap_changed_items
7133 = Fcons (key, menu_bar_one_keymap_changed_items);
7135 /* We add to menu_bar_one_keymap_changed_items before doing the
7136 parse_menu_item, so that if it turns out it wasn't a menu item,
7137 it still correctly hides any further menu item. */
7138 GCPRO1 (key);
7139 i = parse_menu_item (item, 0, 1);
7140 UNGCPRO;
7141 if (!i)
7142 return;
7144 item = XVECTOR (item_properties)->contents[ITEM_PROPERTY_DEF];
7146 /* Find any existing item for this KEY. */
7147 for (i = 0; i < menu_bar_items_index; i += 4)
7148 if (EQ (key, XVECTOR (menu_bar_items_vector)->contents[i]))
7149 break;
7151 /* If we did not find this KEY, add it at the end. */
7152 if (i == menu_bar_items_index)
7154 /* If vector is too small, get a bigger one. */
7155 if (i + 4 > XVECTOR (menu_bar_items_vector)->size)
7157 Lisp_Object tem;
7158 tem = Fmake_vector (make_number (2 * i), Qnil);
7159 bcopy (XVECTOR (menu_bar_items_vector)->contents,
7160 XVECTOR (tem)->contents, i * sizeof (Lisp_Object));
7161 menu_bar_items_vector = tem;
7164 /* Add this item. */
7165 XVECTOR (menu_bar_items_vector)->contents[i++] = key;
7166 XVECTOR (menu_bar_items_vector)->contents[i++]
7167 = XVECTOR (item_properties)->contents[ITEM_PROPERTY_NAME];
7168 XVECTOR (menu_bar_items_vector)->contents[i++] = Fcons (item, Qnil);
7169 XVECTOR (menu_bar_items_vector)->contents[i++] = make_number (0);
7170 menu_bar_items_index = i;
7172 /* We did find an item for this KEY. Add ITEM to its list of maps. */
7173 else
7175 Lisp_Object old;
7176 old = XVECTOR (menu_bar_items_vector)->contents[i + 2];
7177 /* If the new and the old items are not both keymaps,
7178 the lookup will only find `item'. */
7179 item = Fcons (item, KEYMAPP (item) && KEYMAPP (XCAR (old)) ? old : Qnil);
7180 XVECTOR (menu_bar_items_vector)->contents[i + 2] = item;
7184 /* This is used as the handler when calling menu_item_eval_property. */
7185 static Lisp_Object
7186 menu_item_eval_property_1 (arg)
7187 Lisp_Object arg;
7189 /* If we got a quit from within the menu computation,
7190 quit all the way out of it. This takes care of C-] in the debugger. */
7191 if (CONSP (arg) && EQ (XCAR (arg), Qquit))
7192 Fsignal (Qquit, Qnil);
7194 return Qnil;
7197 /* Evaluate an expression and return the result (or nil if something
7198 went wrong). Used to evaluate dynamic parts of menu items. */
7199 Lisp_Object
7200 menu_item_eval_property (sexpr)
7201 Lisp_Object sexpr;
7203 int count = SPECPDL_INDEX ();
7204 Lisp_Object val;
7205 specbind (Qinhibit_redisplay, Qt);
7206 val = internal_condition_case_1 (Feval, sexpr, Qerror,
7207 menu_item_eval_property_1);
7208 return unbind_to (count, val);
7211 /* This function parses a menu item and leaves the result in the
7212 vector item_properties.
7213 ITEM is a key binding, a possible menu item.
7214 If NOTREAL is nonzero, only check for equivalent key bindings, don't
7215 evaluate dynamic expressions in the menu item.
7216 INMENUBAR is > 0 when this is considered for an entry in a menu bar
7217 top level.
7218 INMENUBAR is < 0 when this is considered for an entry in a keyboard menu.
7219 parse_menu_item returns true if the item is a menu item and false
7220 otherwise. */
7223 parse_menu_item (item, notreal, inmenubar)
7224 Lisp_Object item;
7225 int notreal, inmenubar;
7227 Lisp_Object def, tem, item_string, start;
7228 Lisp_Object cachelist;
7229 Lisp_Object filter;
7230 Lisp_Object keyhint;
7231 int i;
7232 int newcache = 0;
7234 cachelist = Qnil;
7235 filter = Qnil;
7236 keyhint = Qnil;
7238 if (!CONSP (item))
7239 return 0;
7241 /* Create item_properties vector if necessary. */
7242 if (NILP (item_properties))
7243 item_properties
7244 = Fmake_vector (make_number (ITEM_PROPERTY_ENABLE + 1), Qnil);
7246 /* Initialize optional entries. */
7247 for (i = ITEM_PROPERTY_DEF; i < ITEM_PROPERTY_ENABLE; i++)
7248 AREF (item_properties, i) = Qnil;
7249 AREF (item_properties, ITEM_PROPERTY_ENABLE) = Qt;
7251 /* Save the item here to protect it from GC. */
7252 AREF (item_properties, ITEM_PROPERTY_ITEM) = item;
7254 item_string = XCAR (item);
7256 start = item;
7257 item = XCDR (item);
7258 if (STRINGP (item_string))
7260 /* Old format menu item. */
7261 AREF (item_properties, ITEM_PROPERTY_NAME) = item_string;
7263 /* Maybe help string. */
7264 if (CONSP (item) && STRINGP (XCAR (item)))
7266 AREF (item_properties, ITEM_PROPERTY_HELP) = XCAR (item);
7267 start = item;
7268 item = XCDR (item);
7271 /* Maybe key binding cache. */
7272 if (CONSP (item) && CONSP (XCAR (item))
7273 && (NILP (XCAR (XCAR (item)))
7274 || VECTORP (XCAR (XCAR (item)))))
7276 cachelist = XCAR (item);
7277 item = XCDR (item);
7280 /* This is the real definition--the function to run. */
7281 AREF (item_properties, ITEM_PROPERTY_DEF) = item;
7283 /* Get enable property, if any. */
7284 if (SYMBOLP (item))
7286 tem = Fget (item, Qmenu_enable);
7287 if (!NILP (tem))
7288 AREF (item_properties, ITEM_PROPERTY_ENABLE) = tem;
7291 else if (EQ (item_string, Qmenu_item) && CONSP (item))
7293 /* New format menu item. */
7294 AREF (item_properties, ITEM_PROPERTY_NAME) = XCAR (item);
7295 start = XCDR (item);
7296 if (CONSP (start))
7298 /* We have a real binding. */
7299 AREF (item_properties, ITEM_PROPERTY_DEF) = XCAR (start);
7301 item = XCDR (start);
7302 /* Is there a cache list with key equivalences. */
7303 if (CONSP (item) && CONSP (XCAR (item)))
7305 cachelist = XCAR (item);
7306 item = XCDR (item);
7309 /* Parse properties. */
7310 while (CONSP (item) && CONSP (XCDR (item)))
7312 tem = XCAR (item);
7313 item = XCDR (item);
7315 if (EQ (tem, QCenable))
7316 AREF (item_properties, ITEM_PROPERTY_ENABLE) = XCAR (item);
7317 else if (EQ (tem, QCvisible) && !notreal)
7319 /* If got a visible property and that evaluates to nil
7320 then ignore this item. */
7321 tem = menu_item_eval_property (XCAR (item));
7322 if (NILP (tem))
7323 return 0;
7325 else if (EQ (tem, QChelp))
7326 AREF (item_properties, ITEM_PROPERTY_HELP) = XCAR (item);
7327 else if (EQ (tem, QCfilter))
7328 filter = item;
7329 else if (EQ (tem, QCkey_sequence))
7331 tem = XCAR (item);
7332 if (NILP (cachelist)
7333 && (SYMBOLP (tem) || STRINGP (tem) || VECTORP (tem)))
7334 /* Be GC protected. Set keyhint to item instead of tem. */
7335 keyhint = item;
7337 else if (EQ (tem, QCkeys))
7339 tem = XCAR (item);
7340 if (CONSP (tem) || (STRINGP (tem) && NILP (cachelist)))
7341 AREF (item_properties, ITEM_PROPERTY_KEYEQ) = tem;
7343 else if (EQ (tem, QCbutton) && CONSP (XCAR (item)))
7345 Lisp_Object type;
7346 tem = XCAR (item);
7347 type = XCAR (tem);
7348 if (EQ (type, QCtoggle) || EQ (type, QCradio))
7350 AREF (item_properties, ITEM_PROPERTY_SELECTED)
7351 = XCDR (tem);
7352 AREF (item_properties, ITEM_PROPERTY_TYPE)
7353 = type;
7356 item = XCDR (item);
7359 else if (inmenubar || !NILP (start))
7360 return 0;
7362 else
7363 return 0; /* not a menu item */
7365 /* If item string is not a string, evaluate it to get string.
7366 If we don't get a string, skip this item. */
7367 item_string = AREF (item_properties, ITEM_PROPERTY_NAME);
7368 if (!(STRINGP (item_string) || notreal))
7370 item_string = menu_item_eval_property (item_string);
7371 if (!STRINGP (item_string))
7372 return 0;
7373 AREF (item_properties, ITEM_PROPERTY_NAME) = item_string;
7376 /* If got a filter apply it on definition. */
7377 def = AREF (item_properties, ITEM_PROPERTY_DEF);
7378 if (!NILP (filter))
7380 def = menu_item_eval_property (list2 (XCAR (filter),
7381 list2 (Qquote, def)));
7383 AREF (item_properties, ITEM_PROPERTY_DEF) = def;
7386 /* Enable or disable selection of item. */
7387 tem = AREF (item_properties, ITEM_PROPERTY_ENABLE);
7388 if (!EQ (tem, Qt))
7390 if (notreal)
7391 tem = Qt;
7392 else
7393 tem = menu_item_eval_property (tem);
7394 if (inmenubar && NILP (tem))
7395 return 0; /* Ignore disabled items in menu bar. */
7396 AREF (item_properties, ITEM_PROPERTY_ENABLE) = tem;
7399 /* If we got no definition, this item is just unselectable text which
7400 is OK in a submenu but not in the menubar. */
7401 if (NILP (def))
7402 return (inmenubar ? 0 : 1);
7404 /* See if this is a separate pane or a submenu. */
7405 def = AREF (item_properties, ITEM_PROPERTY_DEF);
7406 tem = get_keymap (def, 0, 1);
7407 /* For a subkeymap, just record its details and exit. */
7408 if (CONSP (tem))
7410 AREF (item_properties, ITEM_PROPERTY_MAP) = tem;
7411 AREF (item_properties, ITEM_PROPERTY_DEF) = tem;
7412 return 1;
7415 /* At the top level in the menu bar, do likewise for commands also.
7416 The menu bar does not display equivalent key bindings anyway.
7417 ITEM_PROPERTY_DEF is already set up properly. */
7418 if (inmenubar > 0)
7419 return 1;
7421 /* This is a command. See if there is an equivalent key binding. */
7422 if (NILP (cachelist))
7424 /* We have to create a cachelist. */
7425 CHECK_IMPURE (start);
7426 XSETCDR (start, Fcons (Fcons (Qnil, Qnil), XCDR (start)));
7427 cachelist = XCAR (XCDR (start));
7428 newcache = 1;
7429 tem = AREF (item_properties, ITEM_PROPERTY_KEYEQ);
7430 if (!NILP (keyhint))
7432 XSETCAR (cachelist, XCAR (keyhint));
7433 newcache = 0;
7435 else if (STRINGP (tem))
7437 XSETCDR (cachelist, Fsubstitute_command_keys (tem));
7438 XSETCAR (cachelist, Qt);
7442 tem = XCAR (cachelist);
7443 if (!EQ (tem, Qt))
7445 int chkcache = 0;
7446 Lisp_Object prefix;
7448 if (!NILP (tem))
7449 tem = Fkey_binding (tem, Qnil, Qnil);
7451 prefix = AREF (item_properties, ITEM_PROPERTY_KEYEQ);
7452 if (CONSP (prefix))
7454 def = XCAR (prefix);
7455 prefix = XCDR (prefix);
7457 else
7458 def = AREF (item_properties, ITEM_PROPERTY_DEF);
7460 if (!update_menu_bindings)
7461 chkcache = 0;
7462 else if (NILP (XCAR (cachelist))) /* Have no saved key. */
7464 if (newcache /* Always check first time. */
7465 /* Should we check everything when precomputing key
7466 bindings? */
7467 /* If something had no key binding before, don't recheck it
7468 because that is too slow--except if we have a list of
7469 rebound commands in Vdefine_key_rebound_commands, do
7470 recheck any command that appears in that list. */
7471 || (CONSP (Vdefine_key_rebound_commands)
7472 && !NILP (Fmemq (def, Vdefine_key_rebound_commands))))
7473 chkcache = 1;
7475 /* We had a saved key. Is it still bound to the command? */
7476 else if (NILP (tem)
7477 || (!EQ (tem, def)
7478 /* If the command is an alias for another
7479 (such as lmenu.el set it up), check if the
7480 original command matches the cached command. */
7481 && !(SYMBOLP (def) && EQ (tem, XSYMBOL (def)->function))))
7482 chkcache = 1; /* Need to recompute key binding. */
7484 if (chkcache)
7486 /* Recompute equivalent key binding. If the command is an alias
7487 for another (such as lmenu.el set it up), see if the original
7488 command name has equivalent keys. Otherwise look up the
7489 specified command itself. We don't try both, because that
7490 makes lmenu menus slow. */
7491 if (SYMBOLP (def)
7492 && SYMBOLP (XSYMBOL (def)->function)
7493 && ! NILP (Fget (def, Qmenu_alias)))
7494 def = XSYMBOL (def)->function;
7495 tem = Fwhere_is_internal (def, Qnil, Qt, Qnil, Qt);
7496 XSETCAR (cachelist, tem);
7497 if (NILP (tem))
7499 XSETCDR (cachelist, Qnil);
7500 chkcache = 0;
7503 else if (!NILP (keyhint) && !NILP (XCAR (cachelist)))
7505 tem = XCAR (cachelist);
7506 chkcache = 1;
7509 newcache = chkcache;
7510 if (chkcache)
7512 tem = Fkey_description (tem, Qnil);
7513 if (CONSP (prefix))
7515 if (STRINGP (XCAR (prefix)))
7516 tem = concat2 (XCAR (prefix), tem);
7517 if (STRINGP (XCDR (prefix)))
7518 tem = concat2 (tem, XCDR (prefix));
7520 XSETCDR (cachelist, tem);
7524 tem = XCDR (cachelist);
7525 if (newcache && !NILP (tem))
7527 tem = concat3 (build_string (" ("), tem, build_string (")"));
7528 XSETCDR (cachelist, tem);
7531 /* If we only want to precompute equivalent key bindings, stop here. */
7532 if (notreal)
7533 return 1;
7535 /* If we have an equivalent key binding, use that. */
7536 AREF (item_properties, ITEM_PROPERTY_KEYEQ) = tem;
7538 /* Include this when menu help is implemented.
7539 tem = XVECTOR (item_properties)->contents[ITEM_PROPERTY_HELP];
7540 if (!(NILP (tem) || STRINGP (tem)))
7542 tem = menu_item_eval_property (tem);
7543 if (!STRINGP (tem))
7544 tem = Qnil;
7545 XVECTOR (item_properties)->contents[ITEM_PROPERTY_HELP] = tem;
7549 /* Handle radio buttons or toggle boxes. */
7550 tem = AREF (item_properties, ITEM_PROPERTY_SELECTED);
7551 if (!NILP (tem))
7552 AREF (item_properties, ITEM_PROPERTY_SELECTED)
7553 = menu_item_eval_property (tem);
7555 return 1;
7560 /***********************************************************************
7561 Tool-bars
7562 ***********************************************************************/
7564 /* A vector holding tool bar items while they are parsed in function
7565 tool_bar_items. Each item occupies TOOL_BAR_ITEM_NSCLOTS elements
7566 in the vector. */
7568 static Lisp_Object tool_bar_items_vector;
7570 /* A vector holding the result of parse_tool_bar_item. Layout is like
7571 the one for a single item in tool_bar_items_vector. */
7573 static Lisp_Object tool_bar_item_properties;
7575 /* Next free index in tool_bar_items_vector. */
7577 static int ntool_bar_items;
7579 /* The symbols `tool-bar', and `:image'. */
7581 extern Lisp_Object Qtool_bar;
7582 Lisp_Object QCimage;
7584 /* Function prototypes. */
7586 static void init_tool_bar_items P_ ((Lisp_Object));
7587 static void process_tool_bar_item P_ ((Lisp_Object, Lisp_Object));
7588 static int parse_tool_bar_item P_ ((Lisp_Object, Lisp_Object));
7589 static void append_tool_bar_item P_ ((void));
7592 /* Return a vector of tool bar items for keymaps currently in effect.
7593 Reuse vector REUSE if non-nil. Return in *NITEMS the number of
7594 tool bar items found. */
7596 Lisp_Object
7597 tool_bar_items (reuse, nitems)
7598 Lisp_Object reuse;
7599 int *nitems;
7601 Lisp_Object *maps;
7602 int nmaps, i;
7603 Lisp_Object oquit;
7604 Lisp_Object *tmaps;
7606 *nitems = 0;
7608 /* In order to build the menus, we need to call the keymap
7609 accessors. They all call QUIT. But this function is called
7610 during redisplay, during which a quit is fatal. So inhibit
7611 quitting while building the menus. We do this instead of
7612 specbind because (1) errors will clear it anyway and (2) this
7613 avoids risk of specpdl overflow. */
7614 oquit = Vinhibit_quit;
7615 Vinhibit_quit = Qt;
7617 /* Initialize tool_bar_items_vector and protect it from GC. */
7618 init_tool_bar_items (reuse);
7620 /* Build list of keymaps in maps. Set nmaps to the number of maps
7621 to process. */
7623 /* Should overriding-terminal-local-map and overriding-local-map apply? */
7624 if (!NILP (Voverriding_local_map_menu_flag))
7626 /* Yes, use them (if non-nil) as well as the global map. */
7627 maps = (Lisp_Object *) alloca (3 * sizeof (maps[0]));
7628 nmaps = 0;
7629 if (!NILP (current_kboard->Voverriding_terminal_local_map))
7630 maps[nmaps++] = current_kboard->Voverriding_terminal_local_map;
7631 if (!NILP (Voverriding_local_map))
7632 maps[nmaps++] = Voverriding_local_map;
7634 else
7636 /* No, so use major and minor mode keymaps and keymap property.
7637 Note that tool-bar bindings in the local-map and keymap
7638 properties may not work reliable, as they are only
7639 recognized when the tool-bar (or mode-line) is updated,
7640 which does not normally happen after every command. */
7641 Lisp_Object tem;
7642 int nminor;
7643 nminor = current_minor_maps (NULL, &tmaps);
7644 maps = (Lisp_Object *) alloca ((nminor + 3) * sizeof (maps[0]));
7645 nmaps = 0;
7646 if (tem = get_local_map (PT, current_buffer, Qkeymap), !NILP (tem))
7647 maps[nmaps++] = tem;
7648 bcopy (tmaps, (void *) (maps + nmaps), nminor * sizeof (maps[0]));
7649 nmaps += nminor;
7650 maps[nmaps++] = get_local_map (PT, current_buffer, Qlocal_map);
7653 /* Add global keymap at the end. */
7654 maps[nmaps++] = current_global_map;
7656 /* Process maps in reverse order and look up in each map the prefix
7657 key `tool-bar'. */
7658 for (i = nmaps - 1; i >= 0; --i)
7659 if (!NILP (maps[i]))
7661 Lisp_Object keymap;
7663 keymap = get_keymap (access_keymap (maps[i], Qtool_bar, 1, 0, 1), 0, 1);
7664 if (CONSP (keymap))
7666 Lisp_Object tail;
7668 /* KEYMAP is a list `(keymap (KEY . BINDING) ...)'. */
7669 for (tail = keymap; CONSP (tail); tail = XCDR (tail))
7671 Lisp_Object keydef = XCAR (tail);
7672 if (CONSP (keydef))
7673 process_tool_bar_item (XCAR (keydef), XCDR (keydef));
7678 Vinhibit_quit = oquit;
7679 *nitems = ntool_bar_items / TOOL_BAR_ITEM_NSLOTS;
7680 return tool_bar_items_vector;
7684 /* Process the definition of KEY which is DEF. */
7686 static void
7687 process_tool_bar_item (key, def)
7688 Lisp_Object key, def;
7690 int i;
7691 extern Lisp_Object Qundefined;
7692 struct gcpro gcpro1, gcpro2;
7694 /* Protect KEY and DEF from GC because parse_tool_bar_item may call
7695 eval. */
7696 GCPRO2 (key, def);
7698 if (EQ (def, Qundefined))
7700 /* If a map has an explicit `undefined' as definition,
7701 discard any previously made item. */
7702 for (i = 0; i < ntool_bar_items; i += TOOL_BAR_ITEM_NSLOTS)
7704 Lisp_Object *v = XVECTOR (tool_bar_items_vector)->contents + i;
7706 if (EQ (key, v[TOOL_BAR_ITEM_KEY]))
7708 if (ntool_bar_items > i + TOOL_BAR_ITEM_NSLOTS)
7709 bcopy (v + TOOL_BAR_ITEM_NSLOTS, v,
7710 ((ntool_bar_items - i - TOOL_BAR_ITEM_NSLOTS)
7711 * sizeof (Lisp_Object)));
7712 ntool_bar_items -= TOOL_BAR_ITEM_NSLOTS;
7713 break;
7717 else if (parse_tool_bar_item (key, def))
7718 /* Append a new tool bar item to tool_bar_items_vector. Accept
7719 more than one definition for the same key. */
7720 append_tool_bar_item ();
7722 UNGCPRO;
7726 /* Parse a tool bar item specification ITEM for key KEY and return the
7727 result in tool_bar_item_properties. Value is zero if ITEM is
7728 invalid.
7730 ITEM is a list `(menu-item CAPTION BINDING PROPS...)'.
7732 CAPTION is the caption of the item, If it's not a string, it is
7733 evaluated to get a string.
7735 BINDING is the tool bar item's binding. Tool-bar items with keymaps
7736 as binding are currently ignored.
7738 The following properties are recognized:
7740 - `:enable FORM'.
7742 FORM is evaluated and specifies whether the tool bar item is
7743 enabled or disabled.
7745 - `:visible FORM'
7747 FORM is evaluated and specifies whether the tool bar item is visible.
7749 - `:filter FUNCTION'
7751 FUNCTION is invoked with one parameter `(quote BINDING)'. Its
7752 result is stored as the new binding.
7754 - `:button (TYPE SELECTED)'
7756 TYPE must be one of `:radio' or `:toggle'. SELECTED is evaluated
7757 and specifies whether the button is selected (pressed) or not.
7759 - `:image IMAGES'
7761 IMAGES is either a single image specification or a vector of four
7762 image specifications. See enum tool_bar_item_images.
7764 - `:help HELP-STRING'.
7766 Gives a help string to display for the tool bar item. */
7768 static int
7769 parse_tool_bar_item (key, item)
7770 Lisp_Object key, item;
7772 /* Access slot with index IDX of vector tool_bar_item_properties. */
7773 #define PROP(IDX) XVECTOR (tool_bar_item_properties)->contents[IDX]
7775 Lisp_Object filter = Qnil;
7776 Lisp_Object caption;
7777 int i;
7779 /* Defininition looks like `(menu-item CAPTION BINDING PROPS...)'.
7780 Rule out items that aren't lists, don't start with
7781 `menu-item' or whose rest following `tool-bar-item' is not a
7782 list. */
7783 if (!CONSP (item)
7784 || !EQ (XCAR (item), Qmenu_item)
7785 || (item = XCDR (item),
7786 !CONSP (item)))
7787 return 0;
7789 /* Create tool_bar_item_properties vector if necessary. Reset it to
7790 defaults. */
7791 if (VECTORP (tool_bar_item_properties))
7793 for (i = 0; i < TOOL_BAR_ITEM_NSLOTS; ++i)
7794 PROP (i) = Qnil;
7796 else
7797 tool_bar_item_properties
7798 = Fmake_vector (make_number (TOOL_BAR_ITEM_NSLOTS), Qnil);
7800 /* Set defaults. */
7801 PROP (TOOL_BAR_ITEM_KEY) = key;
7802 PROP (TOOL_BAR_ITEM_ENABLED_P) = Qt;
7804 /* Get the caption of the item. If the caption is not a string,
7805 evaluate it to get a string. If we don't get a string, skip this
7806 item. */
7807 caption = XCAR (item);
7808 if (!STRINGP (caption))
7810 caption = menu_item_eval_property (caption);
7811 if (!STRINGP (caption))
7812 return 0;
7814 PROP (TOOL_BAR_ITEM_CAPTION) = caption;
7816 /* Give up if rest following the caption is not a list. */
7817 item = XCDR (item);
7818 if (!CONSP (item))
7819 return 0;
7821 /* Store the binding. */
7822 PROP (TOOL_BAR_ITEM_BINDING) = XCAR (item);
7823 item = XCDR (item);
7825 /* Ignore cached key binding, if any. */
7826 if (CONSP (item) && CONSP (XCAR (item)))
7827 item = XCDR (item);
7829 /* Process the rest of the properties. */
7830 for (; CONSP (item) && CONSP (XCDR (item)); item = XCDR (XCDR (item)))
7832 Lisp_Object key, value;
7834 key = XCAR (item);
7835 value = XCAR (XCDR (item));
7837 if (EQ (key, QCenable))
7838 /* `:enable FORM'. */
7839 PROP (TOOL_BAR_ITEM_ENABLED_P) = value;
7840 else if (EQ (key, QCvisible))
7842 /* `:visible FORM'. If got a visible property and that
7843 evaluates to nil then ignore this item. */
7844 if (NILP (menu_item_eval_property (value)))
7845 return 0;
7847 else if (EQ (key, QChelp))
7848 /* `:help HELP-STRING'. */
7849 PROP (TOOL_BAR_ITEM_HELP) = value;
7850 else if (EQ (key, QCfilter))
7851 /* ':filter FORM'. */
7852 filter = value;
7853 else if (EQ (key, QCbutton) && CONSP (value))
7855 /* `:button (TYPE . SELECTED)'. */
7856 Lisp_Object type, selected;
7858 type = XCAR (value);
7859 selected = XCDR (value);
7860 if (EQ (type, QCtoggle) || EQ (type, QCradio))
7862 PROP (TOOL_BAR_ITEM_SELECTED_P) = selected;
7863 PROP (TOOL_BAR_ITEM_TYPE) = type;
7866 else if (EQ (key, QCimage)
7867 && (CONSP (value)
7868 || (VECTORP (value) && XVECTOR (value)->size == 4)))
7869 /* Value is either a single image specification or a vector
7870 of 4 such specifications for the different button states. */
7871 PROP (TOOL_BAR_ITEM_IMAGES) = value;
7874 /* If got a filter apply it on binding. */
7875 if (!NILP (filter))
7876 PROP (TOOL_BAR_ITEM_BINDING)
7877 = menu_item_eval_property (list2 (filter,
7878 list2 (Qquote,
7879 PROP (TOOL_BAR_ITEM_BINDING))));
7881 /* See if the binding is a keymap. Give up if it is. */
7882 if (CONSP (get_keymap (PROP (TOOL_BAR_ITEM_BINDING), 0, 1)))
7883 return 0;
7885 /* Enable or disable selection of item. */
7886 if (!EQ (PROP (TOOL_BAR_ITEM_ENABLED_P), Qt))
7887 PROP (TOOL_BAR_ITEM_ENABLED_P)
7888 = menu_item_eval_property (PROP (TOOL_BAR_ITEM_ENABLED_P));
7890 /* Handle radio buttons or toggle boxes. */
7891 if (!NILP (PROP (TOOL_BAR_ITEM_SELECTED_P)))
7892 PROP (TOOL_BAR_ITEM_SELECTED_P)
7893 = menu_item_eval_property (PROP (TOOL_BAR_ITEM_SELECTED_P));
7895 return 1;
7897 #undef PROP
7901 /* Initialize tool_bar_items_vector. REUSE, if non-nil, is a vector
7902 that can be reused. */
7904 static void
7905 init_tool_bar_items (reuse)
7906 Lisp_Object reuse;
7908 if (VECTORP (reuse))
7909 tool_bar_items_vector = reuse;
7910 else
7911 tool_bar_items_vector = Fmake_vector (make_number (64), Qnil);
7912 ntool_bar_items = 0;
7916 /* Append parsed tool bar item properties from
7917 tool_bar_item_properties */
7919 static void
7920 append_tool_bar_item ()
7922 Lisp_Object *to, *from;
7924 /* Enlarge tool_bar_items_vector if necessary. */
7925 if (ntool_bar_items + TOOL_BAR_ITEM_NSLOTS
7926 >= XVECTOR (tool_bar_items_vector)->size)
7928 Lisp_Object new_vector;
7929 int old_size = XVECTOR (tool_bar_items_vector)->size;
7931 new_vector = Fmake_vector (make_number (2 * old_size), Qnil);
7932 bcopy (XVECTOR (tool_bar_items_vector)->contents,
7933 XVECTOR (new_vector)->contents,
7934 old_size * sizeof (Lisp_Object));
7935 tool_bar_items_vector = new_vector;
7938 /* Append entries from tool_bar_item_properties to the end of
7939 tool_bar_items_vector. */
7940 to = XVECTOR (tool_bar_items_vector)->contents + ntool_bar_items;
7941 from = XVECTOR (tool_bar_item_properties)->contents;
7942 bcopy (from, to, TOOL_BAR_ITEM_NSLOTS * sizeof *to);
7943 ntool_bar_items += TOOL_BAR_ITEM_NSLOTS;
7950 /* Read a character using menus based on maps in the array MAPS.
7951 NMAPS is the length of MAPS. Return nil if there are no menus in the maps.
7952 Return t if we displayed a menu but the user rejected it.
7954 PREV_EVENT is the previous input event, or nil if we are reading
7955 the first event of a key sequence.
7957 If USED_MOUSE_MENU is non-null, then we set *USED_MOUSE_MENU to 1
7958 if we used a mouse menu to read the input, or zero otherwise. If
7959 USED_MOUSE_MENU is null, we don't dereference it.
7961 The prompting is done based on the prompt-string of the map
7962 and the strings associated with various map elements.
7964 This can be done with X menus or with menus put in the minibuf.
7965 These are done in different ways, depending on how the input will be read.
7966 Menus using X are done after auto-saving in read-char, getting the input
7967 event from Fx_popup_menu; menus using the minibuf use read_char recursively
7968 and do auto-saving in the inner call of read_char. */
7970 static Lisp_Object
7971 read_char_x_menu_prompt (nmaps, maps, prev_event, used_mouse_menu)
7972 int nmaps;
7973 Lisp_Object *maps;
7974 Lisp_Object prev_event;
7975 int *used_mouse_menu;
7977 int mapno;
7978 register Lisp_Object name = Qnil;
7980 if (used_mouse_menu)
7981 *used_mouse_menu = 0;
7983 /* Use local over global Menu maps */
7985 if (! menu_prompting)
7986 return Qnil;
7988 /* Optionally disregard all but the global map. */
7989 if (inhibit_local_menu_bar_menus)
7991 maps += (nmaps - 1);
7992 nmaps = 1;
7995 /* Get the menu name from the first map that has one (a prompt string). */
7996 for (mapno = 0; mapno < nmaps; mapno++)
7998 name = Fkeymap_prompt (maps[mapno]);
7999 if (!NILP (name))
8000 break;
8003 /* If we don't have any menus, just read a character normally. */
8004 if (!STRINGP (name))
8005 return Qnil;
8007 #ifdef HAVE_MENUS
8008 /* If we got to this point via a mouse click,
8009 use a real menu for mouse selection. */
8010 if (EVENT_HAS_PARAMETERS (prev_event)
8011 && !EQ (XCAR (prev_event), Qmenu_bar)
8012 && !EQ (XCAR (prev_event), Qtool_bar))
8014 /* Display the menu and get the selection. */
8015 Lisp_Object *realmaps
8016 = (Lisp_Object *) alloca (nmaps * sizeof (Lisp_Object));
8017 Lisp_Object value;
8018 int nmaps1 = 0;
8020 /* Use the maps that are not nil. */
8021 for (mapno = 0; mapno < nmaps; mapno++)
8022 if (!NILP (maps[mapno]))
8023 realmaps[nmaps1++] = maps[mapno];
8025 value = Fx_popup_menu (prev_event, Flist (nmaps1, realmaps));
8026 if (CONSP (value))
8028 Lisp_Object tem;
8030 record_menu_key (XCAR (value));
8032 /* If we got multiple events, unread all but
8033 the first.
8034 There is no way to prevent those unread events
8035 from showing up later in last_nonmenu_event.
8036 So turn symbol and integer events into lists,
8037 to indicate that they came from a mouse menu,
8038 so that when present in last_nonmenu_event
8039 they won't confuse things. */
8040 for (tem = XCDR (value); !NILP (tem); tem = XCDR (tem))
8042 record_menu_key (XCAR (tem));
8043 if (SYMBOLP (XCAR (tem))
8044 || INTEGERP (XCAR (tem)))
8045 XSETCAR (tem, Fcons (XCAR (tem), Qdisabled));
8048 /* If we got more than one event, put all but the first
8049 onto this list to be read later.
8050 Return just the first event now. */
8051 Vunread_command_events
8052 = nconc2 (XCDR (value), Vunread_command_events);
8053 value = XCAR (value);
8055 else if (NILP (value))
8056 value = Qt;
8057 if (used_mouse_menu)
8058 *used_mouse_menu = 1;
8059 return value;
8061 #endif /* HAVE_MENUS */
8062 return Qnil ;
8065 /* Buffer in use so far for the minibuf prompts for menu keymaps.
8066 We make this bigger when necessary, and never free it. */
8067 static char *read_char_minibuf_menu_text;
8068 /* Size of that buffer. */
8069 static int read_char_minibuf_menu_width;
8071 static Lisp_Object
8072 read_char_minibuf_menu_prompt (commandflag, nmaps, maps)
8073 int commandflag ;
8074 int nmaps;
8075 Lisp_Object *maps;
8077 int mapno;
8078 register Lisp_Object name;
8079 int nlength;
8080 /* FIXME: Use the minibuffer's frame width. */
8081 int width = FRAME_COLS (SELECTED_FRAME ()) - 4;
8082 int idx = -1;
8083 int nobindings = 1;
8084 Lisp_Object rest, vector;
8085 char *menu;
8087 vector = Qnil;
8088 name = Qnil;
8090 if (! menu_prompting)
8091 return Qnil;
8093 /* Make sure we have a big enough buffer for the menu text. */
8094 if (read_char_minibuf_menu_text == 0)
8096 read_char_minibuf_menu_width = width + 4;
8097 read_char_minibuf_menu_text = (char *) xmalloc (width + 4);
8099 else if (width + 4 > read_char_minibuf_menu_width)
8101 read_char_minibuf_menu_width = width + 4;
8102 read_char_minibuf_menu_text
8103 = (char *) xrealloc (read_char_minibuf_menu_text, width + 4);
8105 menu = read_char_minibuf_menu_text;
8107 /* Get the menu name from the first map that has one (a prompt string). */
8108 for (mapno = 0; mapno < nmaps; mapno++)
8110 name = Fkeymap_prompt (maps[mapno]);
8111 if (!NILP (name))
8112 break;
8115 /* If we don't have any menus, just read a character normally. */
8116 if (!STRINGP (name))
8117 return Qnil;
8119 /* Prompt string always starts with map's prompt, and a space. */
8120 strcpy (menu, SDATA (name));
8121 nlength = SBYTES (name);
8122 menu[nlength++] = ':';
8123 menu[nlength++] = ' ';
8124 menu[nlength] = 0;
8126 /* Start prompting at start of first map. */
8127 mapno = 0;
8128 rest = maps[mapno];
8130 /* Present the documented bindings, a line at a time. */
8131 while (1)
8133 int notfirst = 0;
8134 int i = nlength;
8135 Lisp_Object obj;
8136 int ch;
8137 Lisp_Object orig_defn_macro;
8139 /* Loop over elements of map. */
8140 while (i < width)
8142 Lisp_Object elt;
8144 /* If reached end of map, start at beginning of next map. */
8145 if (NILP (rest))
8147 mapno++;
8148 /* At end of last map, wrap around to first map if just starting,
8149 or end this line if already have something on it. */
8150 if (mapno == nmaps)
8152 mapno = 0;
8153 if (notfirst || nobindings) break;
8155 rest = maps[mapno];
8158 /* Look at the next element of the map. */
8159 if (idx >= 0)
8160 elt = XVECTOR (vector)->contents[idx];
8161 else
8162 elt = Fcar_safe (rest);
8164 if (idx < 0 && VECTORP (elt))
8166 /* If we found a dense table in the keymap,
8167 advanced past it, but start scanning its contents. */
8168 rest = Fcdr_safe (rest);
8169 vector = elt;
8170 idx = 0;
8172 else
8174 /* An ordinary element. */
8175 Lisp_Object event, tem;
8177 if (idx < 0)
8179 event = Fcar_safe (elt); /* alist */
8180 elt = Fcdr_safe (elt);
8182 else
8184 XSETINT (event, idx); /* vector */
8187 /* Ignore the element if it has no prompt string. */
8188 if (INTEGERP (event) && parse_menu_item (elt, 0, -1))
8190 /* 1 if the char to type matches the string. */
8191 int char_matches;
8192 Lisp_Object upcased_event, downcased_event;
8193 Lisp_Object desc = Qnil;
8194 Lisp_Object s
8195 = XVECTOR (item_properties)->contents[ITEM_PROPERTY_NAME];
8197 upcased_event = Fupcase (event);
8198 downcased_event = Fdowncase (event);
8199 char_matches = (XINT (upcased_event) == SREF (s, 0)
8200 || XINT (downcased_event) == SREF (s, 0));
8201 if (! char_matches)
8202 desc = Fsingle_key_description (event, Qnil);
8204 #if 0 /* It is redundant to list the equivalent key bindings because
8205 the prefix is what the user has already typed. */
8207 = XVECTOR (item_properties)->contents[ITEM_PROPERTY_KEYEQ];
8208 if (!NILP (tem))
8209 /* Insert equivalent keybinding. */
8210 s = concat2 (s, tem);
8211 #endif
8213 = XVECTOR (item_properties)->contents[ITEM_PROPERTY_TYPE];
8214 if (EQ (tem, QCradio) || EQ (tem, QCtoggle))
8216 /* Insert button prefix. */
8217 Lisp_Object selected
8218 = XVECTOR (item_properties)->contents[ITEM_PROPERTY_SELECTED];
8219 if (EQ (tem, QCradio))
8220 tem = build_string (NILP (selected) ? "(*) " : "( ) ");
8221 else
8222 tem = build_string (NILP (selected) ? "[X] " : "[ ] ");
8223 s = concat2 (tem, s);
8227 /* If we have room for the prompt string, add it to this line.
8228 If this is the first on the line, always add it. */
8229 if ((SCHARS (s) + i + 2
8230 + (char_matches ? 0 : SCHARS (desc) + 3))
8231 < width
8232 || !notfirst)
8234 int thiswidth;
8236 /* Punctuate between strings. */
8237 if (notfirst)
8239 strcpy (menu + i, ", ");
8240 i += 2;
8242 notfirst = 1;
8243 nobindings = 0 ;
8245 /* If the char to type doesn't match the string's
8246 first char, explicitly show what char to type. */
8247 if (! char_matches)
8249 /* Add as much of string as fits. */
8250 thiswidth = SCHARS (desc);
8251 if (thiswidth + i > width)
8252 thiswidth = width - i;
8253 bcopy (SDATA (desc), menu + i, thiswidth);
8254 i += thiswidth;
8255 strcpy (menu + i, " = ");
8256 i += 3;
8259 /* Add as much of string as fits. */
8260 thiswidth = SCHARS (s);
8261 if (thiswidth + i > width)
8262 thiswidth = width - i;
8263 bcopy (SDATA (s), menu + i, thiswidth);
8264 i += thiswidth;
8265 menu[i] = 0;
8267 else
8269 /* If this element does not fit, end the line now,
8270 and save the element for the next line. */
8271 strcpy (menu + i, "...");
8272 break;
8276 /* Move past this element. */
8277 if (idx >= 0 && idx + 1 >= XVECTOR (vector)->size)
8278 /* Handle reaching end of dense table. */
8279 idx = -1;
8280 if (idx >= 0)
8281 idx++;
8282 else
8283 rest = Fcdr_safe (rest);
8287 /* Prompt with that and read response. */
8288 message2_nolog (menu, strlen (menu),
8289 ! NILP (current_buffer->enable_multibyte_characters));
8291 /* Make believe its not a keyboard macro in case the help char
8292 is pressed. Help characters are not recorded because menu prompting
8293 is not used on replay.
8295 orig_defn_macro = current_kboard->defining_kbd_macro;
8296 current_kboard->defining_kbd_macro = Qnil;
8298 obj = read_char (commandflag, 0, 0, Qt, 0);
8299 while (BUFFERP (obj));
8300 current_kboard->defining_kbd_macro = orig_defn_macro;
8302 if (!INTEGERP (obj))
8303 return obj;
8304 else
8305 ch = XINT (obj);
8307 if (! EQ (obj, menu_prompt_more_char)
8308 && (!INTEGERP (menu_prompt_more_char)
8309 || ! EQ (obj, make_number (Ctl (XINT (menu_prompt_more_char))))))
8311 if (!NILP (current_kboard->defining_kbd_macro))
8312 store_kbd_macro_char (obj);
8313 return obj;
8315 /* Help char - go round again */
8319 /* Reading key sequences. */
8321 /* Follow KEY in the maps in CURRENT[0..NMAPS-1], placing its bindings
8322 in DEFS[0..NMAPS-1]. Set NEXT[i] to DEFS[i] if DEFS[i] is a
8323 keymap, or nil otherwise. Return the index of the first keymap in
8324 which KEY has any binding, or NMAPS if no map has a binding.
8326 If KEY is a meta ASCII character, treat it like meta-prefix-char
8327 followed by the corresponding non-meta character. Keymaps in
8328 CURRENT with non-prefix bindings for meta-prefix-char become nil in
8329 NEXT.
8331 If KEY has no bindings in any of the CURRENT maps, NEXT is left
8332 unmodified.
8334 NEXT may be the same array as CURRENT. */
8336 static int
8337 follow_key (key, nmaps, current, defs, next)
8338 Lisp_Object key;
8339 Lisp_Object *current, *defs, *next;
8340 int nmaps;
8342 int i, first_binding;
8344 first_binding = nmaps;
8345 for (i = nmaps - 1; i >= 0; i--)
8347 if (! NILP (current[i]))
8349 defs[i] = access_keymap (current[i], key, 1, 0, 1);
8350 if (! NILP (defs[i]))
8351 first_binding = i;
8353 else
8354 defs[i] = Qnil;
8357 /* Given the set of bindings we've found, produce the next set of maps. */
8358 if (first_binding < nmaps)
8359 for (i = 0; i < nmaps; i++)
8360 next[i] = NILP (defs[i]) ? Qnil : get_keymap (defs[i], 0, 1);
8362 return first_binding;
8365 /* Structure used to keep track of partial application of key remapping
8366 such as Vfunction_key_map and Vkey_translation_map. */
8367 typedef struct keyremap
8369 Lisp_Object map, parent;
8370 int start, end;
8371 } keyremap;
8373 /* Lookup KEY in MAP.
8374 MAP is a keymap mapping keys to key vectors or functions.
8375 If the mapping is a function and DO_FUNCTION is non-zero, then
8376 the function is called with PROMPT as parameter and its return
8377 value is used as the return value of this function (after checking
8378 that it is indeed a vector). */
8380 static Lisp_Object
8381 access_keymap_keyremap (map, key, prompt, do_funcall)
8382 Lisp_Object map, key, prompt;
8383 int do_funcall;
8385 Lisp_Object next;
8387 next = access_keymap (map, key, 1, 0, 1);
8389 /* Handle symbol with autoload definition. */
8390 if (SYMBOLP (next) && !NILP (Ffboundp (next))
8391 && CONSP (XSYMBOL (next)->function)
8392 && EQ (XCAR (XSYMBOL (next)->function), Qautoload))
8393 do_autoload (XSYMBOL (next)->function, next);
8395 /* Handle a symbol whose function definition is a keymap
8396 or an array. */
8397 if (SYMBOLP (next) && !NILP (Ffboundp (next))
8398 && (!NILP (Farrayp (XSYMBOL (next)->function))
8399 || KEYMAPP (XSYMBOL (next)->function)))
8400 next = XSYMBOL (next)->function;
8402 /* If the keymap gives a function, not an
8403 array, then call the function with one arg and use
8404 its value instead. */
8405 if (SYMBOLP (next) && !NILP (Ffboundp (next)) && do_funcall)
8407 Lisp_Object tem;
8408 tem = next;
8410 next = call1 (next, prompt);
8411 /* If the function returned something invalid,
8412 barf--don't ignore it.
8413 (To ignore it safely, we would need to gcpro a bunch of
8414 other variables.) */
8415 if (! (VECTORP (next) || STRINGP (next)))
8416 error ("Function %s returns invalid key sequence", tem);
8418 return next;
8421 /* Do one step of the key remapping used for function-key-map and
8422 key-translation-map:
8423 KEYBUF is the buffer holding the input events.
8424 BUFSIZE is its maximum size.
8425 FKEY is a pointer to the keyremap structure to use.
8426 INPUT is the index of the last element in KEYBUF.
8427 DOIT if non-zero says that the remapping can actually take place.
8428 DIFF is used to return the number of keys added/removed by the remapping.
8429 PARENT is the root of the keymap.
8430 PROMPT is the prompt to use if the remapping happens through a function.
8431 The return value is non-zero if the remapping actually took place. */
8433 static int
8434 keyremap_step (keybuf, bufsize, fkey, input, doit, diff, prompt)
8435 Lisp_Object *keybuf, prompt;
8436 keyremap *fkey;
8437 int input, doit, *diff, bufsize;
8439 Lisp_Object next, key;
8441 key = keybuf[fkey->end++];
8442 next = access_keymap_keyremap (fkey->map, key, prompt, doit);
8444 /* If keybuf[fkey->start..fkey->end] is bound in the
8445 map and we're in a position to do the key remapping, replace it with
8446 the binding and restart with fkey->start at the end. */
8447 if ((VECTORP (next) || STRINGP (next)) && doit)
8449 int len = XFASTINT (Flength (next));
8450 int i;
8452 *diff = len - (fkey->end - fkey->start);
8454 if (input + *diff >= bufsize)
8455 error ("Key sequence too long");
8457 /* Shift the keys that follow fkey->end. */
8458 if (*diff < 0)
8459 for (i = fkey->end; i < input; i++)
8460 keybuf[i + *diff] = keybuf[i];
8461 else if (*diff > 0)
8462 for (i = input - 1; i >= fkey->end; i--)
8463 keybuf[i + *diff] = keybuf[i];
8464 /* Overwrite the old keys with the new ones. */
8465 for (i = 0; i < len; i++)
8466 keybuf[fkey->start + i]
8467 = Faref (next, make_number (i));
8469 fkey->start = fkey->end += *diff;
8470 fkey->map = fkey->parent;
8472 return 1;
8475 fkey->map = get_keymap (next, 0, 1);
8477 /* If we no longer have a bound suffix, try a new position for
8478 fkey->start. */
8479 if (!CONSP (fkey->map))
8481 fkey->end = ++fkey->start;
8482 fkey->map = fkey->parent;
8484 return 0;
8487 /* Read a sequence of keys that ends with a non prefix character,
8488 storing it in KEYBUF, a buffer of size BUFSIZE.
8489 Prompt with PROMPT.
8490 Return the length of the key sequence stored.
8491 Return -1 if the user rejected a command menu.
8493 Echo starting immediately unless `prompt' is 0.
8495 Where a key sequence ends depends on the currently active keymaps.
8496 These include any minor mode keymaps active in the current buffer,
8497 the current buffer's local map, and the global map.
8499 If a key sequence has no other bindings, we check Vfunction_key_map
8500 to see if some trailing subsequence might be the beginning of a
8501 function key's sequence. If so, we try to read the whole function
8502 key, and substitute its symbolic name into the key sequence.
8504 We ignore unbound `down-' mouse clicks. We turn unbound `drag-' and
8505 `double-' events into similar click events, if that would make them
8506 bound. We try to turn `triple-' events first into `double-' events,
8507 then into clicks.
8509 If we get a mouse click in a mode line, vertical divider, or other
8510 non-text area, we treat the click as if it were prefixed by the
8511 symbol denoting that area - `mode-line', `vertical-line', or
8512 whatever.
8514 If the sequence starts with a mouse click, we read the key sequence
8515 with respect to the buffer clicked on, not the current buffer.
8517 If the user switches frames in the midst of a key sequence, we put
8518 off the switch-frame event until later; the next call to
8519 read_char will return it.
8521 If FIX_CURRENT_BUFFER is nonzero, we restore current_buffer
8522 from the selected window's buffer. */
8524 static int
8525 read_key_sequence (keybuf, bufsize, prompt, dont_downcase_last,
8526 can_return_switch_frame, fix_current_buffer)
8527 Lisp_Object *keybuf;
8528 int bufsize;
8529 Lisp_Object prompt;
8530 int dont_downcase_last;
8531 int can_return_switch_frame;
8532 int fix_current_buffer;
8534 volatile Lisp_Object from_string;
8535 volatile int count = SPECPDL_INDEX ();
8537 /* How many keys there are in the current key sequence. */
8538 volatile int t;
8540 /* The length of the echo buffer when we started reading, and
8541 the length of this_command_keys when we started reading. */
8542 volatile int echo_start;
8543 volatile int keys_start;
8545 /* The number of keymaps we're scanning right now, and the number of
8546 keymaps we have allocated space for. */
8547 volatile int nmaps;
8548 volatile int nmaps_allocated = 0;
8550 /* defs[0..nmaps-1] are the definitions of KEYBUF[0..t-1] in
8551 the current keymaps. */
8552 Lisp_Object *volatile defs = NULL;
8554 /* submaps[0..nmaps-1] are the prefix definitions of KEYBUF[0..t-1]
8555 in the current keymaps, or nil where it is not a prefix. */
8556 Lisp_Object *volatile submaps = NULL;
8558 /* The local map to start out with at start of key sequence. */
8559 volatile Lisp_Object orig_local_map;
8561 /* The map from the `keymap' property to start out with at start of
8562 key sequence. */
8563 volatile Lisp_Object orig_keymap;
8565 /* 1 if we have already considered switching to the local-map property
8566 of the place where a mouse click occurred. */
8567 volatile int localized_local_map = 0;
8569 /* The index in defs[] of the first keymap that has a binding for
8570 this key sequence. In other words, the lowest i such that
8571 defs[i] is non-nil. */
8572 volatile int first_binding;
8573 /* Index of the first key that has no binding.
8574 It is useless to try fkey.start larger than that. */
8575 volatile int first_unbound;
8577 /* If t < mock_input, then KEYBUF[t] should be read as the next
8578 input key.
8580 We use this to recover after recognizing a function key. Once we
8581 realize that a suffix of the current key sequence is actually a
8582 function key's escape sequence, we replace the suffix with the
8583 function key's binding from Vfunction_key_map. Now keybuf
8584 contains a new and different key sequence, so the echo area,
8585 this_command_keys, and the submaps and defs arrays are wrong. In
8586 this situation, we set mock_input to t, set t to 0, and jump to
8587 restart_sequence; the loop will read keys from keybuf up until
8588 mock_input, thus rebuilding the state; and then it will resume
8589 reading characters from the keyboard. */
8590 volatile int mock_input = 0;
8592 /* If the sequence is unbound in submaps[], then
8593 keybuf[fkey.start..fkey.end-1] is a prefix in Vfunction_key_map,
8594 and fkey.map is its binding.
8596 These might be > t, indicating that all function key scanning
8597 should hold off until t reaches them. We do this when we've just
8598 recognized a function key, to avoid searching for the function
8599 key's again in Vfunction_key_map. */
8600 volatile keyremap fkey;
8602 /* Likewise, for key_translation_map. */
8603 volatile keyremap keytran;
8605 /* If we receive a `switch-frame' or `select-window' event in the middle of
8606 a key sequence, we put it off for later.
8607 While we're reading, we keep the event here. */
8608 volatile Lisp_Object delayed_switch_frame;
8610 /* See the comment below... */
8611 #if defined (GOBBLE_FIRST_EVENT)
8612 Lisp_Object first_event;
8613 #endif
8615 volatile Lisp_Object original_uppercase;
8616 volatile int original_uppercase_position = -1;
8618 /* Gets around Microsoft compiler limitations. */
8619 int dummyflag = 0;
8621 struct buffer *starting_buffer;
8623 /* List of events for which a fake prefix key has been generated. */
8624 volatile Lisp_Object fake_prefixed_keys = Qnil;
8626 #if defined (GOBBLE_FIRST_EVENT)
8627 int junk;
8628 #endif
8630 struct gcpro gcpro1;
8632 GCPRO1 (fake_prefixed_keys);
8633 raw_keybuf_count = 0;
8635 last_nonmenu_event = Qnil;
8637 delayed_switch_frame = Qnil;
8638 fkey.map = fkey.parent = Vfunction_key_map;
8639 keytran.map = keytran.parent = Vkey_translation_map;
8640 /* If there is no translation-map, turn off scanning. */
8641 fkey.start = fkey.end = KEYMAPP (fkey.map) ? 0 : bufsize + 1;
8642 keytran.start = keytran.end = KEYMAPP (keytran.map) ? 0 : bufsize + 1;
8644 if (INTERACTIVE)
8646 if (!NILP (prompt))
8647 echo_prompt (prompt);
8648 else if (cursor_in_echo_area
8649 && (FLOATP (Vecho_keystrokes) || INTEGERP (Vecho_keystrokes))
8650 && NILP (Fzerop (Vecho_keystrokes)))
8651 /* This doesn't put in a dash if the echo buffer is empty, so
8652 you don't always see a dash hanging out in the minibuffer. */
8653 echo_dash ();
8656 /* Record the initial state of the echo area and this_command_keys;
8657 we will need to restore them if we replay a key sequence. */
8658 if (INTERACTIVE)
8659 echo_start = echo_length ();
8660 keys_start = this_command_key_count;
8661 this_single_command_key_start = keys_start;
8663 #if defined (GOBBLE_FIRST_EVENT)
8664 /* This doesn't quite work, because some of the things that read_char
8665 does cannot safely be bypassed. It seems too risky to try to make
8666 this work right. */
8668 /* Read the first char of the sequence specially, before setting
8669 up any keymaps, in case a filter runs and switches buffers on us. */
8670 first_event = read_char (NILP (prompt), 0, submaps, last_nonmenu_event,
8671 &junk);
8672 #endif /* GOBBLE_FIRST_EVENT */
8674 orig_local_map = get_local_map (PT, current_buffer, Qlocal_map);
8675 orig_keymap = get_local_map (PT, current_buffer, Qkeymap);
8676 from_string = Qnil;
8678 /* We jump here when the key sequence has been thoroughly changed, and
8679 we need to rescan it starting from the beginning. When we jump here,
8680 keybuf[0..mock_input] holds the sequence we should reread. */
8681 replay_sequence:
8683 starting_buffer = current_buffer;
8684 first_unbound = bufsize + 1;
8686 /* Build our list of keymaps.
8687 If we recognize a function key and replace its escape sequence in
8688 keybuf with its symbol, or if the sequence starts with a mouse
8689 click and we need to switch buffers, we jump back here to rebuild
8690 the initial keymaps from the current buffer. */
8691 nmaps = 0;
8693 if (!NILP (current_kboard->Voverriding_terminal_local_map)
8694 || !NILP (Voverriding_local_map))
8696 if (3 > nmaps_allocated)
8698 submaps = (Lisp_Object *) alloca (3 * sizeof (submaps[0]));
8699 defs = (Lisp_Object *) alloca (3 * sizeof (defs[0]));
8700 nmaps_allocated = 3;
8702 if (!NILP (current_kboard->Voverriding_terminal_local_map))
8703 submaps[nmaps++] = current_kboard->Voverriding_terminal_local_map;
8704 if (!NILP (Voverriding_local_map))
8705 submaps[nmaps++] = Voverriding_local_map;
8707 else
8709 int nminor;
8710 int total;
8711 Lisp_Object *maps;
8713 nminor = current_minor_maps (0, &maps);
8714 total = nminor + (!NILP (orig_keymap) ? 3 : 2);
8716 if (total > nmaps_allocated)
8718 submaps = (Lisp_Object *) alloca (total * sizeof (submaps[0]));
8719 defs = (Lisp_Object *) alloca (total * sizeof (defs[0]));
8720 nmaps_allocated = total;
8723 if (!NILP (orig_keymap))
8724 submaps[nmaps++] = orig_keymap;
8726 bcopy (maps, (void *) (submaps + nmaps),
8727 nminor * sizeof (submaps[0]));
8729 nmaps += nminor;
8731 submaps[nmaps++] = orig_local_map;
8733 submaps[nmaps++] = current_global_map;
8735 /* Find an accurate initial value for first_binding. */
8736 for (first_binding = 0; first_binding < nmaps; first_binding++)
8737 if (! NILP (submaps[first_binding]))
8738 break;
8740 /* Start from the beginning in keybuf. */
8741 t = 0;
8743 /* These are no-ops the first time through, but if we restart, they
8744 revert the echo area and this_command_keys to their original state. */
8745 this_command_key_count = keys_start;
8746 if (INTERACTIVE && t < mock_input)
8747 echo_truncate (echo_start);
8749 /* If the best binding for the current key sequence is a keymap, or
8750 we may be looking at a function key's escape sequence, keep on
8751 reading. */
8752 while (first_binding < nmaps
8753 /* Keep reading as long as there's a prefix binding. */
8754 ? !NILP (submaps[first_binding])
8755 /* Don't return in the middle of a possible function key sequence,
8756 if the only bindings we found were via case conversion.
8757 Thus, if ESC O a has a function-key-map translation
8758 and ESC o has a binding, don't return after ESC O,
8759 so that we can translate ESC O plus the next character. */
8760 : (fkey.start < t || keytran.start < t))
8762 Lisp_Object key;
8763 int used_mouse_menu = 0;
8765 /* Where the last real key started. If we need to throw away a
8766 key that has expanded into more than one element of keybuf
8767 (say, a mouse click on the mode line which is being treated
8768 as [mode-line (mouse-...)], then we backtrack to this point
8769 of keybuf. */
8770 volatile int last_real_key_start;
8772 /* These variables are analogous to echo_start and keys_start;
8773 while those allow us to restart the entire key sequence,
8774 echo_local_start and keys_local_start allow us to throw away
8775 just one key. */
8776 volatile int echo_local_start, keys_local_start, local_first_binding;
8778 eassert (fkey.end == t || (fkey.end > t && fkey.end <= mock_input));
8779 eassert (fkey.start <= fkey.end);
8780 eassert (keytran.start <= keytran.end);
8781 /* key-translation-map is applied *after* function-key-map. */
8782 eassert (keytran.end <= fkey.start);
8784 if (first_unbound < fkey.start && first_unbound < keytran.start)
8785 { /* The prefix upto first_unbound has no binding and has
8786 no translation left to do either, so we know it's unbound.
8787 If we don't stop now, we risk staying here indefinitely
8788 (if the user keeps entering fkey or keytran prefixes
8789 like C-c ESC ESC ESC ESC ...) */
8790 int i;
8791 for (i = first_unbound + 1; i < t; i++)
8792 keybuf[i - first_unbound - 1] = keybuf[i];
8793 mock_input = t - first_unbound - 1;
8794 fkey.end = fkey.start -= first_unbound + 1;
8795 fkey.map = fkey.parent;
8796 keytran.end = keytran.start -= first_unbound + 1;
8797 keytran.map = keytran.parent;
8798 goto replay_sequence;
8801 if (t >= bufsize)
8802 error ("Key sequence too long");
8804 if (INTERACTIVE)
8805 echo_local_start = echo_length ();
8806 keys_local_start = this_command_key_count;
8807 local_first_binding = first_binding;
8809 replay_key:
8810 /* These are no-ops, unless we throw away a keystroke below and
8811 jumped back up to replay_key; in that case, these restore the
8812 variables to their original state, allowing us to replay the
8813 loop. */
8814 if (INTERACTIVE && t < mock_input)
8815 echo_truncate (echo_local_start);
8816 this_command_key_count = keys_local_start;
8817 first_binding = local_first_binding;
8819 /* By default, assume each event is "real". */
8820 last_real_key_start = t;
8822 /* Does mock_input indicate that we are re-reading a key sequence? */
8823 if (t < mock_input)
8825 key = keybuf[t];
8826 add_command_key (key);
8827 if ((FLOATP (Vecho_keystrokes) || INTEGERP (Vecho_keystrokes))
8828 && NILP (Fzerop (Vecho_keystrokes)))
8829 echo_char (key);
8832 /* If not, we should actually read a character. */
8833 else
8836 #ifdef MULTI_KBOARD
8837 KBOARD *interrupted_kboard = current_kboard;
8838 struct frame *interrupted_frame = SELECTED_FRAME ();
8839 if (setjmp (wrong_kboard_jmpbuf))
8841 if (!NILP (delayed_switch_frame))
8843 interrupted_kboard->kbd_queue
8844 = Fcons (delayed_switch_frame,
8845 interrupted_kboard->kbd_queue);
8846 delayed_switch_frame = Qnil;
8848 while (t > 0)
8849 interrupted_kboard->kbd_queue
8850 = Fcons (keybuf[--t], interrupted_kboard->kbd_queue);
8852 /* If the side queue is non-empty, ensure it begins with a
8853 switch-frame, so we'll replay it in the right context. */
8854 if (CONSP (interrupted_kboard->kbd_queue)
8855 && (key = XCAR (interrupted_kboard->kbd_queue),
8856 !(EVENT_HAS_PARAMETERS (key)
8857 && EQ (EVENT_HEAD_KIND (EVENT_HEAD (key)),
8858 Qswitch_frame))))
8860 Lisp_Object frame;
8861 XSETFRAME (frame, interrupted_frame);
8862 interrupted_kboard->kbd_queue
8863 = Fcons (make_lispy_switch_frame (frame),
8864 interrupted_kboard->kbd_queue);
8866 mock_input = 0;
8867 orig_local_map = get_local_map (PT, current_buffer, Qlocal_map);
8868 orig_keymap = get_local_map (PT, current_buffer, Qkeymap);
8869 goto replay_sequence;
8871 #endif
8872 key = read_char (NILP (prompt), nmaps,
8873 (Lisp_Object *) submaps, last_nonmenu_event,
8874 &used_mouse_menu);
8877 /* read_char returns t when it shows a menu and the user rejects it.
8878 Just return -1. */
8879 if (EQ (key, Qt))
8881 unbind_to (count, Qnil);
8882 UNGCPRO;
8883 return -1;
8886 /* read_char returns -1 at the end of a macro.
8887 Emacs 18 handles this by returning immediately with a
8888 zero, so that's what we'll do. */
8889 if (INTEGERP (key) && XINT (key) == -1)
8891 t = 0;
8892 /* The Microsoft C compiler can't handle the goto that
8893 would go here. */
8894 dummyflag = 1;
8895 break;
8898 /* If the current buffer has been changed from under us, the
8899 keymap may have changed, so replay the sequence. */
8900 if (BUFFERP (key))
8902 timer_resume_idle ();
8904 mock_input = t;
8905 /* Reset the current buffer from the selected window
8906 in case something changed the former and not the latter.
8907 This is to be more consistent with the behavior
8908 of the command_loop_1. */
8909 if (fix_current_buffer)
8911 if (! FRAME_LIVE_P (XFRAME (selected_frame)))
8912 Fkill_emacs (Qnil);
8913 if (XBUFFER (XWINDOW (selected_window)->buffer) != current_buffer)
8914 Fset_buffer (XWINDOW (selected_window)->buffer);
8917 orig_local_map = get_local_map (PT, current_buffer, Qlocal_map);
8918 orig_keymap = get_local_map (PT, current_buffer, Qkeymap);
8919 goto replay_sequence;
8922 /* If we have a quit that was typed in another frame, and
8923 quit_throw_to_read_char switched buffers,
8924 replay to get the right keymap. */
8925 if (INTEGERP (key)
8926 && XINT (key) == quit_char
8927 && current_buffer != starting_buffer)
8929 GROW_RAW_KEYBUF;
8930 XVECTOR (raw_keybuf)->contents[raw_keybuf_count++] = key;
8931 keybuf[t++] = key;
8932 mock_input = t;
8933 Vquit_flag = Qnil;
8934 orig_local_map = get_local_map (PT, current_buffer, Qlocal_map);
8935 orig_keymap = get_local_map (PT, current_buffer, Qkeymap);
8936 goto replay_sequence;
8939 Vquit_flag = Qnil;
8941 if (EVENT_HAS_PARAMETERS (key)
8942 /* Either a `switch-frame' or a `select-window' event. */
8943 && EQ (EVENT_HEAD_KIND (EVENT_HEAD (key)), Qswitch_frame))
8945 /* If we're at the beginning of a key sequence, and the caller
8946 says it's okay, go ahead and return this event. If we're
8947 in the midst of a key sequence, delay it until the end. */
8948 if (t > 0 || !can_return_switch_frame)
8950 delayed_switch_frame = key;
8951 goto replay_key;
8955 GROW_RAW_KEYBUF;
8956 XVECTOR (raw_keybuf)->contents[raw_keybuf_count++] = key;
8959 /* Clicks in non-text areas get prefixed by the symbol
8960 in their CHAR-ADDRESS field. For example, a click on
8961 the mode line is prefixed by the symbol `mode-line'.
8963 Furthermore, key sequences beginning with mouse clicks
8964 are read using the keymaps of the buffer clicked on, not
8965 the current buffer. So we may have to switch the buffer
8966 here.
8968 When we turn one event into two events, we must make sure
8969 that neither of the two looks like the original--so that,
8970 if we replay the events, they won't be expanded again.
8971 If not for this, such reexpansion could happen either here
8972 or when user programs play with this-command-keys. */
8973 if (EVENT_HAS_PARAMETERS (key))
8975 Lisp_Object kind;
8976 Lisp_Object string;
8978 kind = EVENT_HEAD_KIND (EVENT_HEAD (key));
8979 if (EQ (kind, Qmouse_click))
8981 Lisp_Object window, posn;
8983 window = POSN_WINDOW (EVENT_START (key));
8984 posn = POSN_POSN (EVENT_START (key));
8986 if (CONSP (posn)
8987 || (!NILP (fake_prefixed_keys)
8988 && !NILP (Fmemq (key, fake_prefixed_keys))))
8990 /* We're looking a second time at an event for which
8991 we generated a fake prefix key. Set
8992 last_real_key_start appropriately. */
8993 if (t > 0)
8994 last_real_key_start = t - 1;
8997 /* Key sequences beginning with mouse clicks are
8998 read using the keymaps in the buffer clicked on,
8999 not the current buffer. If we're at the
9000 beginning of a key sequence, switch buffers. */
9001 if (last_real_key_start == 0
9002 && WINDOWP (window)
9003 && BUFFERP (XWINDOW (window)->buffer)
9004 && XBUFFER (XWINDOW (window)->buffer) != current_buffer)
9006 XVECTOR (raw_keybuf)->contents[raw_keybuf_count++] = key;
9007 keybuf[t] = key;
9008 mock_input = t + 1;
9010 /* Arrange to go back to the original buffer once we're
9011 done reading the key sequence. Note that we can't
9012 use save_excursion_{save,restore} here, because they
9013 save point as well as the current buffer; we don't
9014 want to save point, because redisplay may change it,
9015 to accommodate a Fset_window_start or something. We
9016 don't want to do this at the top of the function,
9017 because we may get input from a subprocess which
9018 wants to change the selected window and stuff (say,
9019 emacsclient). */
9020 record_unwind_protect (Fset_buffer, Fcurrent_buffer ());
9022 if (! FRAME_LIVE_P (XFRAME (selected_frame)))
9023 Fkill_emacs (Qnil);
9024 set_buffer_internal (XBUFFER (XWINDOW (window)->buffer));
9025 orig_local_map = get_local_map (PT, current_buffer,
9026 Qlocal_map);
9027 orig_keymap = get_local_map (PT, current_buffer, Qkeymap);
9028 goto replay_sequence;
9031 /* For a mouse click, get the local text-property keymap
9032 of the place clicked on, rather than point. */
9033 if (last_real_key_start == 0
9034 && CONSP (XCDR (key))
9035 && ! localized_local_map)
9037 Lisp_Object map_here, start, pos;
9039 localized_local_map = 1;
9040 start = EVENT_START (key);
9042 if (CONSP (start) && POSN_INBUFFER_P (start))
9044 pos = POSN_BUFFER_POSN (start);
9045 if (INTEGERP (pos)
9046 && XINT (pos) >= BEG && XINT (pos) <= Z)
9048 map_here = get_local_map (XINT (pos),
9049 current_buffer, Qlocal_map);
9050 if (!EQ (map_here, orig_local_map))
9052 orig_local_map = map_here;
9053 keybuf[t] = key;
9054 mock_input = t + 1;
9056 goto replay_sequence;
9058 map_here = get_local_map (XINT (pos),
9059 current_buffer, Qkeymap);
9060 if (!EQ (map_here, orig_keymap))
9062 orig_keymap = map_here;
9063 keybuf[t] = key;
9064 mock_input = t + 1;
9066 goto replay_sequence;
9072 /* Expand mode-line and scroll-bar events into two events:
9073 use posn as a fake prefix key. */
9074 if (SYMBOLP (posn)
9075 && (NILP (fake_prefixed_keys)
9076 || NILP (Fmemq (key, fake_prefixed_keys))))
9078 if (t + 1 >= bufsize)
9079 error ("Key sequence too long");
9081 keybuf[t] = posn;
9082 keybuf[t + 1] = key;
9083 mock_input = t + 2;
9085 /* Record that a fake prefix key has been generated
9086 for KEY. Don't modify the event; this would
9087 prevent proper action when the event is pushed
9088 back into unread-command-events. */
9089 fake_prefixed_keys = Fcons (key, fake_prefixed_keys);
9091 /* If on a mode line string with a local keymap,
9092 reconsider the key sequence with that keymap. */
9093 if (string = POSN_STRING (EVENT_START (key)),
9094 (CONSP (string) && STRINGP (XCAR (string))))
9096 Lisp_Object pos, map, map2;
9098 pos = XCDR (string);
9099 string = XCAR (string);
9100 if (XINT (pos) >= 0
9101 && XINT (pos) < SCHARS (string))
9103 map = Fget_text_property (pos, Qlocal_map, string);
9104 if (!NILP (map))
9105 orig_local_map = map;
9106 map2 = Fget_text_property (pos, Qkeymap, string);
9107 if (!NILP (map2))
9108 orig_keymap = map2;
9109 if (!NILP (map) || !NILP (map2))
9110 goto replay_sequence;
9114 goto replay_key;
9116 else if (NILP (from_string)
9117 && (string = POSN_STRING (EVENT_START (key)),
9118 (CONSP (string) && STRINGP (XCAR (string)))))
9120 /* For a click on a string, i.e. overlay string or a
9121 string displayed via the `display' property,
9122 consider `local-map' and `keymap' properties of
9123 that string. */
9124 Lisp_Object pos, map, map2;
9126 pos = XCDR (string);
9127 string = XCAR (string);
9128 if (XINT (pos) >= 0
9129 && XINT (pos) < SCHARS (string))
9131 map = Fget_text_property (pos, Qlocal_map, string);
9132 if (!NILP (map))
9133 orig_local_map = map;
9134 map2 = Fget_text_property (pos, Qkeymap, string);
9135 if (!NILP (map2))
9136 orig_keymap = map2;
9138 if (!NILP (map) || !NILP (map2))
9140 from_string = string;
9141 goto replay_sequence;
9146 else if (CONSP (XCDR (key))
9147 && CONSP (EVENT_START (key))
9148 && CONSP (XCDR (EVENT_START (key))))
9150 Lisp_Object posn;
9152 posn = POSN_POSN (EVENT_START (key));
9153 /* Handle menu-bar events:
9154 insert the dummy prefix event `menu-bar'. */
9155 if (EQ (posn, Qmenu_bar) || EQ (posn, Qtool_bar))
9157 if (t + 1 >= bufsize)
9158 error ("Key sequence too long");
9159 keybuf[t] = posn;
9160 keybuf[t+1] = key;
9162 /* Zap the position in key, so we know that we've
9163 expanded it, and don't try to do so again. */
9164 POSN_SET_POSN (EVENT_START (key),
9165 Fcons (posn, Qnil));
9167 mock_input = t + 2;
9168 goto replay_sequence;
9170 else if (CONSP (posn))
9172 /* We're looking at the second event of a
9173 sequence which we expanded before. Set
9174 last_real_key_start appropriately. */
9175 if (last_real_key_start == t && t > 0)
9176 last_real_key_start = t - 1;
9181 /* We have finally decided that KEY is something we might want
9182 to look up. */
9183 first_binding = (follow_key (key,
9184 nmaps - first_binding,
9185 submaps + first_binding,
9186 defs + first_binding,
9187 submaps + first_binding)
9188 + first_binding);
9190 /* If KEY wasn't bound, we'll try some fallbacks. */
9191 if (first_binding < nmaps)
9192 /* This is needed for the following scenario:
9193 event 0: a down-event that gets dropped by calling replay_key.
9194 event 1: some normal prefix like C-h.
9195 After event 0, first_unbound is 0, after event 1 fkey.start
9196 and keytran.start are both 1, so when we see that C-h is bound,
9197 we need to update first_unbound. */
9198 first_unbound = max (t + 1, first_unbound);
9199 else
9201 Lisp_Object head;
9203 /* Remember the position to put an upper bound on fkey.start. */
9204 first_unbound = min (t, first_unbound);
9206 head = EVENT_HEAD (key);
9207 if (help_char_p (head) && t > 0)
9209 read_key_sequence_cmd = Vprefix_help_command;
9210 keybuf[t++] = key;
9211 last_nonmenu_event = key;
9212 /* The Microsoft C compiler can't handle the goto that
9213 would go here. */
9214 dummyflag = 1;
9215 break;
9218 if (SYMBOLP (head))
9220 Lisp_Object breakdown;
9221 int modifiers;
9223 breakdown = parse_modifiers (head);
9224 modifiers = XINT (XCAR (XCDR (breakdown)));
9225 /* Attempt to reduce an unbound mouse event to a simpler
9226 event that is bound:
9227 Drags reduce to clicks.
9228 Double-clicks reduce to clicks.
9229 Triple-clicks reduce to double-clicks, then to clicks.
9230 Down-clicks are eliminated.
9231 Double-downs reduce to downs, then are eliminated.
9232 Triple-downs reduce to double-downs, then to downs,
9233 then are eliminated. */
9234 if (modifiers & (down_modifier | drag_modifier
9235 | double_modifier | triple_modifier))
9237 while (modifiers & (down_modifier | drag_modifier
9238 | double_modifier | triple_modifier))
9240 Lisp_Object new_head, new_click;
9241 if (modifiers & triple_modifier)
9242 modifiers ^= (double_modifier | triple_modifier);
9243 else if (modifiers & double_modifier)
9244 modifiers &= ~double_modifier;
9245 else if (modifiers & drag_modifier)
9246 modifiers &= ~drag_modifier;
9247 else
9249 /* Dispose of this `down' event by simply jumping
9250 back to replay_key, to get another event.
9252 Note that if this event came from mock input,
9253 then just jumping back to replay_key will just
9254 hand it to us again. So we have to wipe out any
9255 mock input.
9257 We could delete keybuf[t] and shift everything
9258 after that to the left by one spot, but we'd also
9259 have to fix up any variable that points into
9260 keybuf, and shifting isn't really necessary
9261 anyway.
9263 Adding prefixes for non-textual mouse clicks
9264 creates two characters of mock input, and both
9265 must be thrown away. If we're only looking at
9266 the prefix now, we can just jump back to
9267 replay_key. On the other hand, if we've already
9268 processed the prefix, and now the actual click
9269 itself is giving us trouble, then we've lost the
9270 state of the keymaps we want to backtrack to, and
9271 we need to replay the whole sequence to rebuild
9274 Beyond that, only function key expansion could
9275 create more than two keys, but that should never
9276 generate mouse events, so it's okay to zero
9277 mock_input in that case too.
9279 FIXME: The above paragraph seems just plain
9280 wrong, if you consider things like
9281 xterm-mouse-mode. -stef
9283 Isn't this just the most wonderful code ever? */
9285 /* If mock_input > t + 1, the above simplification
9286 will actually end up dropping keys on the floor.
9287 This is probably OK for now, but even
9288 if mock_input <= t + 1, we need to adjust fkey
9289 and keytran.
9290 Typical case [header-line down-mouse-N]:
9291 mock_input = 2, t = 1, fkey.end = 1,
9292 last_real_key_start = 0. */
9293 if (fkey.end > last_real_key_start)
9295 fkey.end = fkey.start
9296 = min (last_real_key_start, fkey.start);
9297 fkey.map = fkey.parent;
9298 if (keytran.end > last_real_key_start)
9300 keytran.end = keytran.start
9301 = min (last_real_key_start, keytran.start);
9302 keytran.map = keytran.parent;
9305 if (t == last_real_key_start)
9307 mock_input = 0;
9308 goto replay_key;
9310 else
9312 mock_input = last_real_key_start;
9313 goto replay_sequence;
9317 new_head
9318 = apply_modifiers (modifiers, XCAR (breakdown));
9319 new_click
9320 = Fcons (new_head, Fcons (EVENT_START (key), Qnil));
9322 /* Look for a binding for this new key. follow_key
9323 promises that it didn't munge submaps the
9324 last time we called it, since key was unbound. */
9325 first_binding
9326 = (follow_key (new_click,
9327 nmaps - local_first_binding,
9328 submaps + local_first_binding,
9329 defs + local_first_binding,
9330 submaps + local_first_binding)
9331 + local_first_binding);
9333 /* If that click is bound, go for it. */
9334 if (first_binding < nmaps)
9336 key = new_click;
9337 break;
9339 /* Otherwise, we'll leave key set to the drag event. */
9345 keybuf[t++] = key;
9346 /* Normally, last_nonmenu_event gets the previous key we read.
9347 But when a mouse popup menu is being used,
9348 we don't update last_nonmenu_event; it continues to hold the mouse
9349 event that preceded the first level of menu. */
9350 if (!used_mouse_menu)
9351 last_nonmenu_event = key;
9353 /* Record what part of this_command_keys is the current key sequence. */
9354 this_single_command_key_start = this_command_key_count - t;
9356 if (first_binding < nmaps && NILP (submaps[first_binding]))
9357 /* There is a binding and it's not a prefix.
9358 There is thus no function-key in this sequence.
9359 Moving fkey.start is important in this case to allow keytran.start
9360 to go over the sequence before we return (since we keep the
9361 invariant that keytran.end <= fkey.start). */
9363 if (fkey.start < t)
9364 (fkey.start = fkey.end = t, fkey.map = fkey.parent);
9366 else
9367 /* If the sequence is unbound, see if we can hang a function key
9368 off the end of it. */
9369 /* Continue scan from fkey.end until we find a bound suffix. */
9370 while (fkey.end < t)
9372 struct gcpro gcpro1, gcpro2, gcpro3;
9373 int done, diff;
9375 GCPRO3 (fkey.map, keytran.map, delayed_switch_frame);
9376 done = keyremap_step (keybuf, bufsize, &fkey,
9377 max (t, mock_input),
9378 /* If there's a binding (i.e.
9379 first_binding >= nmaps) we don't want
9380 to apply this function-key-mapping. */
9381 fkey.end + 1 == t && first_binding >= nmaps,
9382 &diff, prompt);
9383 UNGCPRO;
9384 if (done)
9386 mock_input = diff + max (t, mock_input);
9387 goto replay_sequence;
9391 /* Look for this sequence in key-translation-map.
9392 Scan from keytran.end until we find a bound suffix. */
9393 while (keytran.end < fkey.start)
9395 struct gcpro gcpro1, gcpro2, gcpro3;
9396 int done, diff;
9398 GCPRO3 (fkey.map, keytran.map, delayed_switch_frame);
9399 done = keyremap_step (keybuf, bufsize, &keytran, max (t, mock_input),
9400 1, &diff, prompt);
9401 UNGCPRO;
9402 if (done)
9404 mock_input = diff + max (t, mock_input);
9405 /* Adjust the function-key-map counters. */
9406 fkey.end += diff;
9407 fkey.start += diff;
9409 goto replay_sequence;
9413 /* If KEY is not defined in any of the keymaps,
9414 and cannot be part of a function key or translation,
9415 and is an upper case letter
9416 use the corresponding lower-case letter instead. */
9417 if (first_binding >= nmaps
9418 && fkey.start >= t && keytran.start >= t
9419 && INTEGERP (key)
9420 && ((((XINT (key) & 0x3ffff)
9421 < XCHAR_TABLE (current_buffer->downcase_table)->size)
9422 && UPPERCASEP (XINT (key) & 0x3ffff))
9423 || (XINT (key) & shift_modifier)))
9425 Lisp_Object new_key;
9427 original_uppercase = key;
9428 original_uppercase_position = t - 1;
9430 if (XINT (key) & shift_modifier)
9431 XSETINT (new_key, XINT (key) & ~shift_modifier);
9432 else
9433 XSETINT (new_key, (DOWNCASE (XINT (key) & 0x3ffff)
9434 | (XINT (key) & ~0x3ffff)));
9436 /* We have to do this unconditionally, regardless of whether
9437 the lower-case char is defined in the keymaps, because they
9438 might get translated through function-key-map. */
9439 keybuf[t - 1] = new_key;
9440 mock_input = max (t, mock_input);
9442 goto replay_sequence;
9444 /* If KEY is not defined in any of the keymaps,
9445 and cannot be part of a function key or translation,
9446 and is a shifted function key,
9447 use the corresponding unshifted function key instead. */
9448 if (first_binding >= nmaps
9449 && fkey.start >= t && keytran.start >= t
9450 && SYMBOLP (key))
9452 Lisp_Object breakdown;
9453 int modifiers;
9455 breakdown = parse_modifiers (key);
9456 modifiers = XINT (XCAR (XCDR (breakdown)));
9457 if (modifiers & shift_modifier)
9459 Lisp_Object new_key;
9461 original_uppercase = key;
9462 original_uppercase_position = t - 1;
9464 modifiers &= ~shift_modifier;
9465 new_key = apply_modifiers (modifiers,
9466 XCAR (breakdown));
9468 keybuf[t - 1] = new_key;
9469 mock_input = max (t, mock_input);
9470 fkey.start = fkey.end = KEYMAPP (fkey.map) ? 0 : bufsize + 1;
9471 keytran.start = keytran.end = KEYMAPP (keytran.map) ? 0 : bufsize + 1;
9473 goto replay_sequence;
9478 if (!dummyflag)
9479 read_key_sequence_cmd = (first_binding < nmaps
9480 ? defs[first_binding]
9481 : Qnil);
9483 unread_switch_frame = delayed_switch_frame;
9484 unbind_to (count, Qnil);
9486 /* Don't downcase the last character if the caller says don't.
9487 Don't downcase it if the result is undefined, either. */
9488 if ((dont_downcase_last || first_binding >= nmaps)
9489 && t - 1 == original_uppercase_position)
9490 keybuf[t - 1] = original_uppercase;
9492 /* Occasionally we fabricate events, perhaps by expanding something
9493 according to function-key-map, or by adding a prefix symbol to a
9494 mouse click in the scroll bar or modeline. In this cases, return
9495 the entire generated key sequence, even if we hit an unbound
9496 prefix or a definition before the end. This means that you will
9497 be able to push back the event properly, and also means that
9498 read-key-sequence will always return a logical unit.
9500 Better ideas? */
9501 for (; t < mock_input; t++)
9503 if ((FLOATP (Vecho_keystrokes) || INTEGERP (Vecho_keystrokes))
9504 && NILP (Fzerop (Vecho_keystrokes)))
9505 echo_char (keybuf[t]);
9506 add_command_key (keybuf[t]);
9511 UNGCPRO;
9512 return t;
9515 DEFUN ("read-key-sequence", Fread_key_sequence, Sread_key_sequence, 1, 5, 0,
9516 doc: /* Read a sequence of keystrokes and return as a string or vector.
9517 The sequence is sufficient to specify a non-prefix command in the
9518 current local and global maps.
9520 First arg PROMPT is a prompt string. If nil, do not prompt specially.
9521 Second (optional) arg CONTINUE-ECHO, if non-nil, means this key echos
9522 as a continuation of the previous key.
9524 The third (optional) arg DONT-DOWNCASE-LAST, if non-nil, means do not
9525 convert the last event to lower case. (Normally any upper case event
9526 is converted to lower case if the original event is undefined and the lower
9527 case equivalent is defined.) A non-nil value is appropriate for reading
9528 a key sequence to be defined.
9530 A C-g typed while in this function is treated like any other character,
9531 and `quit-flag' is not set.
9533 If the key sequence starts with a mouse click, then the sequence is read
9534 using the keymaps of the buffer of the window clicked in, not the buffer
9535 of the selected window as normal.
9537 `read-key-sequence' drops unbound button-down events, since you normally
9538 only care about the click or drag events which follow them. If a drag
9539 or multi-click event is unbound, but the corresponding click event would
9540 be bound, `read-key-sequence' turns the event into a click event at the
9541 drag's starting position. This means that you don't have to distinguish
9542 between click and drag, double, or triple events unless you want to.
9544 `read-key-sequence' prefixes mouse events on mode lines, the vertical
9545 lines separating windows, and scroll bars with imaginary keys
9546 `mode-line', `vertical-line', and `vertical-scroll-bar'.
9548 Optional fourth argument CAN-RETURN-SWITCH-FRAME non-nil means that this
9549 function will process a switch-frame event if the user switches frames
9550 before typing anything. If the user switches frames in the middle of a
9551 key sequence, or at the start of the sequence but CAN-RETURN-SWITCH-FRAME
9552 is nil, then the event will be put off until after the current key sequence.
9554 `read-key-sequence' checks `function-key-map' for function key
9555 sequences, where they wouldn't conflict with ordinary bindings. See
9556 `function-key-map' for more details.
9558 The optional fifth argument COMMAND-LOOP, if non-nil, means
9559 that this key sequence is being read by something that will
9560 read commands one after another. It should be nil if the caller
9561 will read just one key sequence. */)
9562 (prompt, continue_echo, dont_downcase_last, can_return_switch_frame,
9563 command_loop)
9564 Lisp_Object prompt, continue_echo, dont_downcase_last;
9565 Lisp_Object can_return_switch_frame, command_loop;
9567 Lisp_Object keybuf[30];
9568 register int i;
9569 struct gcpro gcpro1;
9570 int count = SPECPDL_INDEX ();
9572 if (!NILP (prompt))
9573 CHECK_STRING (prompt);
9574 QUIT;
9576 specbind (Qinput_method_exit_on_first_char,
9577 (NILP (command_loop) ? Qt : Qnil));
9578 specbind (Qinput_method_use_echo_area,
9579 (NILP (command_loop) ? Qt : Qnil));
9581 bzero (keybuf, sizeof keybuf);
9582 GCPRO1 (keybuf[0]);
9583 gcpro1.nvars = (sizeof keybuf/sizeof (keybuf[0]));
9585 if (NILP (continue_echo))
9587 this_command_key_count = 0;
9588 this_command_key_count_reset = 0;
9589 this_single_command_key_start = 0;
9592 #ifdef HAVE_X_WINDOWS
9593 if (display_hourglass_p)
9594 cancel_hourglass ();
9595 #endif
9597 i = read_key_sequence (keybuf, (sizeof keybuf/sizeof (keybuf[0])),
9598 prompt, ! NILP (dont_downcase_last),
9599 ! NILP (can_return_switch_frame), 0);
9601 #if 0 /* The following is fine for code reading a key sequence and
9602 then proceeding with a lenghty computation, but it's not good
9603 for code reading keys in a loop, like an input method. */
9604 #ifdef HAVE_X_WINDOWS
9605 if (display_hourglass_p)
9606 start_hourglass ();
9607 #endif
9608 #endif
9610 if (i == -1)
9612 Vquit_flag = Qt;
9613 QUIT;
9615 UNGCPRO;
9616 return unbind_to (count, make_event_array (i, keybuf));
9619 DEFUN ("read-key-sequence-vector", Fread_key_sequence_vector,
9620 Sread_key_sequence_vector, 1, 5, 0,
9621 doc: /* Like `read-key-sequence' but always return a vector. */)
9622 (prompt, continue_echo, dont_downcase_last, can_return_switch_frame,
9623 command_loop)
9624 Lisp_Object prompt, continue_echo, dont_downcase_last;
9625 Lisp_Object can_return_switch_frame, command_loop;
9627 Lisp_Object keybuf[30];
9628 register int i;
9629 struct gcpro gcpro1;
9630 int count = SPECPDL_INDEX ();
9632 if (!NILP (prompt))
9633 CHECK_STRING (prompt);
9634 QUIT;
9636 specbind (Qinput_method_exit_on_first_char,
9637 (NILP (command_loop) ? Qt : Qnil));
9638 specbind (Qinput_method_use_echo_area,
9639 (NILP (command_loop) ? Qt : Qnil));
9641 bzero (keybuf, sizeof keybuf);
9642 GCPRO1 (keybuf[0]);
9643 gcpro1.nvars = (sizeof keybuf/sizeof (keybuf[0]));
9645 if (NILP (continue_echo))
9647 this_command_key_count = 0;
9648 this_command_key_count_reset = 0;
9649 this_single_command_key_start = 0;
9652 #ifdef HAVE_X_WINDOWS
9653 if (display_hourglass_p)
9654 cancel_hourglass ();
9655 #endif
9657 i = read_key_sequence (keybuf, (sizeof keybuf/sizeof (keybuf[0])),
9658 prompt, ! NILP (dont_downcase_last),
9659 ! NILP (can_return_switch_frame), 0);
9661 #ifdef HAVE_X_WINDOWS
9662 if (display_hourglass_p)
9663 start_hourglass ();
9664 #endif
9666 if (i == -1)
9668 Vquit_flag = Qt;
9669 QUIT;
9671 UNGCPRO;
9672 return unbind_to (count, Fvector (i, keybuf));
9675 DEFUN ("command-execute", Fcommand_execute, Scommand_execute, 1, 4, 0,
9676 doc: /* Execute CMD as an editor command.
9677 CMD must be a symbol that satisfies the `commandp' predicate.
9678 Optional second arg RECORD-FLAG non-nil
9679 means unconditionally put this command in `command-history'.
9680 Otherwise, that is done only if an arg is read using the minibuffer.
9681 The argument KEYS specifies the value to use instead of (this-command-keys)
9682 when reading the arguments; if it is nil, (this-command-keys) is used.
9683 The argument SPECIAL, if non-nil, means that this command is executing
9684 a special event, so ignore the prefix argument and don't clear it. */)
9685 (cmd, record_flag, keys, special)
9686 Lisp_Object cmd, record_flag, keys, special;
9688 register Lisp_Object final;
9689 register Lisp_Object tem;
9690 Lisp_Object prefixarg;
9691 struct backtrace backtrace;
9692 extern int debug_on_next_call;
9694 debug_on_next_call = 0;
9696 if (NILP (special))
9698 prefixarg = current_kboard->Vprefix_arg;
9699 Vcurrent_prefix_arg = prefixarg;
9700 current_kboard->Vprefix_arg = Qnil;
9702 else
9703 prefixarg = Qnil;
9705 if (SYMBOLP (cmd))
9707 tem = Fget (cmd, Qdisabled);
9708 if (!NILP (tem) && !NILP (Vrun_hooks))
9710 tem = Fsymbol_value (Qdisabled_command_function);
9711 if (!NILP (tem))
9712 return call1 (Vrun_hooks, Qdisabled_command_function);
9716 while (1)
9718 final = Findirect_function (cmd);
9720 if (CONSP (final) && (tem = Fcar (final), EQ (tem, Qautoload)))
9722 struct gcpro gcpro1, gcpro2;
9724 GCPRO2 (cmd, prefixarg);
9725 do_autoload (final, cmd);
9726 UNGCPRO;
9728 else
9729 break;
9732 if (STRINGP (final) || VECTORP (final))
9734 /* If requested, place the macro in the command history. For
9735 other sorts of commands, call-interactively takes care of
9736 this. */
9737 if (!NILP (record_flag))
9739 Vcommand_history
9740 = Fcons (Fcons (Qexecute_kbd_macro,
9741 Fcons (final, Fcons (prefixarg, Qnil))),
9742 Vcommand_history);
9744 /* Don't keep command history around forever. */
9745 if (NUMBERP (Vhistory_length) && XINT (Vhistory_length) > 0)
9747 tem = Fnthcdr (Vhistory_length, Vcommand_history);
9748 if (CONSP (tem))
9749 XSETCDR (tem, Qnil);
9753 return Fexecute_kbd_macro (final, prefixarg, Qnil);
9756 if (CONSP (final) || SUBRP (final) || COMPILEDP (final))
9758 backtrace.next = backtrace_list;
9759 backtrace_list = &backtrace;
9760 backtrace.function = &Qcall_interactively;
9761 backtrace.args = &cmd;
9762 backtrace.nargs = 1;
9763 backtrace.evalargs = 0;
9764 backtrace.debug_on_exit = 0;
9766 tem = Fcall_interactively (cmd, record_flag, keys);
9768 backtrace_list = backtrace.next;
9769 return tem;
9771 return Qnil;
9776 DEFUN ("execute-extended-command", Fexecute_extended_command, Sexecute_extended_command,
9777 1, 1, "P",
9778 doc: /* Read function name, then read its arguments and call it. */)
9779 (prefixarg)
9780 Lisp_Object prefixarg;
9782 Lisp_Object function;
9783 char buf[40];
9784 int saved_last_point_position;
9785 Lisp_Object saved_keys, saved_last_point_position_buffer;
9786 Lisp_Object bindings, value;
9787 struct gcpro gcpro1, gcpro2, gcpro3;
9789 saved_keys = Fvector (this_command_key_count,
9790 XVECTOR (this_command_keys)->contents);
9791 saved_last_point_position_buffer = last_point_position_buffer;
9792 saved_last_point_position = last_point_position;
9793 buf[0] = 0;
9794 GCPRO3 (saved_keys, prefixarg, saved_last_point_position_buffer);
9796 if (EQ (prefixarg, Qminus))
9797 strcpy (buf, "- ");
9798 else if (CONSP (prefixarg) && XINT (XCAR (prefixarg)) == 4)
9799 strcpy (buf, "C-u ");
9800 else if (CONSP (prefixarg) && INTEGERP (XCAR (prefixarg)))
9801 sprintf (buf, "%ld ", (long) XINT (XCAR (prefixarg)));
9802 else if (INTEGERP (prefixarg))
9803 sprintf (buf, "%ld ", (long) XINT (prefixarg));
9805 /* This isn't strictly correct if execute-extended-command
9806 is bound to anything else. Perhaps it should use
9807 this_command_keys? */
9808 strcat (buf, "M-x ");
9810 /* Prompt with buf, and then read a string, completing from and
9811 restricting to the set of all defined commands. Don't provide
9812 any initial input. Save the command read on the extended-command
9813 history list. */
9814 function = Fcompleting_read (build_string (buf),
9815 Vobarray, Qcommandp,
9816 Qt, Qnil, Qextended_command_history, Qnil,
9817 Qnil);
9819 if (STRINGP (function) && SCHARS (function) == 0)
9820 error ("No command name given");
9822 /* Set this_command_keys to the concatenation of saved_keys and
9823 function, followed by a RET. */
9825 Lisp_Object *keys;
9826 int i;
9828 this_command_key_count = 0;
9829 this_command_key_count_reset = 0;
9830 this_single_command_key_start = 0;
9832 keys = XVECTOR (saved_keys)->contents;
9833 for (i = 0; i < XVECTOR (saved_keys)->size; i++)
9834 add_command_key (keys[i]);
9836 for (i = 0; i < SCHARS (function); i++)
9837 add_command_key (Faref (function, make_number (i)));
9839 add_command_key (make_number ('\015'));
9842 last_point_position = saved_last_point_position;
9843 last_point_position_buffer = saved_last_point_position_buffer;
9845 UNGCPRO;
9847 function = Fintern (function, Qnil);
9848 current_kboard->Vprefix_arg = prefixarg;
9849 Vthis_command = function;
9850 real_this_command = function;
9852 /* If enabled, show which key runs this command. */
9853 if (!NILP (Vsuggest_key_bindings)
9854 && NILP (Vexecuting_macro)
9855 && SYMBOLP (function))
9856 bindings = Fwhere_is_internal (function, Voverriding_local_map,
9857 Qt, Qnil, Qnil);
9858 else
9859 bindings = Qnil;
9861 value = Qnil;
9862 GCPRO2 (bindings, value);
9863 value = Fcommand_execute (function, Qt, Qnil, Qnil);
9865 /* If the command has a key binding, print it now. */
9866 if (!NILP (bindings)
9867 && ! (VECTORP (bindings) && EQ (Faref (bindings, make_number (0)),
9868 Qmouse_movement)))
9870 /* But first wait, and skip the message if there is input. */
9871 int delay_time;
9872 if (!NILP (echo_area_buffer[0]))
9873 /* This command displayed something in the echo area;
9874 so wait a few seconds, then display our suggestion message. */
9875 delay_time = (NUMBERP (Vsuggest_key_bindings)
9876 ? XINT (Vsuggest_key_bindings) : 2);
9877 else
9878 /* This command left the echo area empty,
9879 so display our message immediately. */
9880 delay_time = 0;
9882 if (!NILP (Fsit_for (make_number (delay_time), Qnil, Qnil))
9883 && ! CONSP (Vunread_command_events))
9885 Lisp_Object binding;
9886 char *newmessage;
9887 int message_p = push_message ();
9888 int count = SPECPDL_INDEX ();
9890 record_unwind_protect (pop_message_unwind, Qnil);
9891 binding = Fkey_description (bindings, Qnil);
9893 newmessage
9894 = (char *) alloca (SCHARS (SYMBOL_NAME (function))
9895 + SBYTES (binding)
9896 + 100);
9897 sprintf (newmessage, "You can run the command `%s' with %s",
9898 SDATA (SYMBOL_NAME (function)),
9899 SDATA (binding));
9900 message2_nolog (newmessage,
9901 strlen (newmessage),
9902 STRING_MULTIBYTE (binding));
9903 if (!NILP (Fsit_for ((NUMBERP (Vsuggest_key_bindings)
9904 ? Vsuggest_key_bindings : make_number (2)),
9905 Qnil, Qnil))
9906 && message_p)
9907 restore_message ();
9909 unbind_to (count, Qnil);
9913 RETURN_UNGCPRO (value);
9917 /* Return nonzero if input events are pending. */
9920 detect_input_pending ()
9922 if (!input_pending)
9923 get_input_pending (&input_pending, 0);
9925 return input_pending;
9928 /* Return nonzero if input events other than mouse movements are
9929 pending. */
9932 detect_input_pending_ignore_squeezables ()
9934 if (!input_pending)
9935 get_input_pending (&input_pending, READABLE_EVENTS_IGNORE_SQUEEZABLES);
9937 return input_pending;
9940 /* Return nonzero if input events are pending, and run any pending timers. */
9943 detect_input_pending_run_timers (do_display)
9944 int do_display;
9946 int old_timers_run = timers_run;
9948 if (!input_pending)
9949 get_input_pending (&input_pending, READABLE_EVENTS_DO_TIMERS_NOW);
9951 if (old_timers_run != timers_run && do_display)
9953 redisplay_preserve_echo_area (8);
9954 /* The following fixes a bug when using lazy-lock with
9955 lazy-lock-defer-on-the-fly set to t, i.e. when fontifying
9956 from an idle timer function. The symptom of the bug is that
9957 the cursor sometimes doesn't become visible until the next X
9958 event is processed. --gerd. */
9960 Lisp_Object tail, frame;
9961 FOR_EACH_FRAME (tail, frame)
9962 if (FRAME_RIF (XFRAME (frame)))
9963 FRAME_RIF (XFRAME (frame))->flush_display (XFRAME (frame));
9967 return input_pending;
9970 /* This is called in some cases before a possible quit.
9971 It cases the next call to detect_input_pending to recompute input_pending.
9972 So calling this function unnecessarily can't do any harm. */
9974 void
9975 clear_input_pending ()
9977 input_pending = 0;
9980 /* Return nonzero if there are pending requeued events.
9981 This isn't used yet. The hope is to make wait_reading_process_output
9982 call it, and return if it runs Lisp code that unreads something.
9983 The problem is, kbd_buffer_get_event needs to be fixed to know what
9984 to do in that case. It isn't trivial. */
9987 requeued_events_pending_p ()
9989 return (!NILP (Vunread_command_events) || unread_command_char != -1);
9993 DEFUN ("input-pending-p", Finput_pending_p, Sinput_pending_p, 0, 0, 0,
9994 doc: /* Return t if command input is currently available with no wait.
9995 Actually, the value is nil only if we can be sure that no input is available;
9996 if there is a doubt, the value is t. */)
9999 if (!NILP (Vunread_command_events) || unread_command_char != -1)
10000 return (Qt);
10002 get_input_pending (&input_pending,
10003 READABLE_EVENTS_DO_TIMERS_NOW
10004 | READABLE_EVENTS_FILTER_EVENTS);
10005 return input_pending > 0 ? Qt : Qnil;
10008 DEFUN ("recent-keys", Frecent_keys, Srecent_keys, 0, 0, 0,
10009 doc: /* Return vector of last 100 events, not counting those from keyboard macros. */)
10012 Lisp_Object *keys = XVECTOR (recent_keys)->contents;
10013 Lisp_Object val;
10015 if (total_keys < NUM_RECENT_KEYS)
10016 return Fvector (total_keys, keys);
10017 else
10019 val = Fvector (NUM_RECENT_KEYS, keys);
10020 bcopy (keys + recent_keys_index,
10021 XVECTOR (val)->contents,
10022 (NUM_RECENT_KEYS - recent_keys_index) * sizeof (Lisp_Object));
10023 bcopy (keys,
10024 XVECTOR (val)->contents + NUM_RECENT_KEYS - recent_keys_index,
10025 recent_keys_index * sizeof (Lisp_Object));
10026 return val;
10030 DEFUN ("this-command-keys", Fthis_command_keys, Sthis_command_keys, 0, 0, 0,
10031 doc: /* Return the key sequence that invoked this command.
10032 However, if the command has called `read-key-sequence', it returns
10033 the last key sequence that has been read.
10034 The value is a string or a vector. */)
10037 return make_event_array (this_command_key_count,
10038 XVECTOR (this_command_keys)->contents);
10041 DEFUN ("this-command-keys-vector", Fthis_command_keys_vector, Sthis_command_keys_vector, 0, 0, 0,
10042 doc: /* Return the key sequence that invoked this command, as a vector.
10043 However, if the command has called `read-key-sequence', it returns
10044 the last key sequence that has been read. */)
10047 return Fvector (this_command_key_count,
10048 XVECTOR (this_command_keys)->contents);
10051 DEFUN ("this-single-command-keys", Fthis_single_command_keys,
10052 Sthis_single_command_keys, 0, 0, 0,
10053 doc: /* Return the key sequence that invoked this command.
10054 More generally, it returns the last key sequence read, either by
10055 the command loop or by `read-key-sequence'.
10056 Unlike `this-command-keys', this function's value
10057 does not include prefix arguments.
10058 The value is always a vector. */)
10061 return Fvector (this_command_key_count
10062 - this_single_command_key_start,
10063 (XVECTOR (this_command_keys)->contents
10064 + this_single_command_key_start));
10067 DEFUN ("this-single-command-raw-keys", Fthis_single_command_raw_keys,
10068 Sthis_single_command_raw_keys, 0, 0, 0,
10069 doc: /* Return the raw events that were read for this command.
10070 More generally, it returns the last key sequence read, either by
10071 the command loop or by `read-key-sequence'.
10072 Unlike `this-single-command-keys', this function's value
10073 shows the events before all translations (except for input methods).
10074 The value is always a vector. */)
10077 return Fvector (raw_keybuf_count,
10078 (XVECTOR (raw_keybuf)->contents));
10081 DEFUN ("reset-this-command-lengths", Freset_this_command_lengths,
10082 Sreset_this_command_lengths, 0, 0, 0,
10083 doc: /* Make the unread events replace the last command and echo.
10084 Used in `universal-argument-other-key'.
10086 `universal-argument-other-key' rereads the event just typed.
10087 It then gets translated through `function-key-map'.
10088 The translated event has to replace the real events,
10089 both in the value of (this-command-keys) and in echoing.
10090 To achieve this, `universal-argument-other-key' calls
10091 `reset-this-command-lengths', which discards the record of reading
10092 these events the first time. */)
10095 this_command_key_count = before_command_key_count;
10096 if (this_command_key_count < this_single_command_key_start)
10097 this_single_command_key_start = this_command_key_count;
10099 echo_truncate (before_command_echo_length);
10101 /* Cause whatever we put into unread-command-events
10102 to echo as if it were being freshly read from the keyboard. */
10103 this_command_key_count_reset = 1;
10105 return Qnil;
10108 DEFUN ("clear-this-command-keys", Fclear_this_command_keys,
10109 Sclear_this_command_keys, 0, 1, 0,
10110 doc: /* Clear out the vector that `this-command-keys' returns.
10111 Also clear the record of the last 100 events, unless optional arg
10112 KEEP-RECORD is non-nil. */)
10113 (keep_record)
10114 Lisp_Object keep_record;
10116 int i;
10118 this_command_key_count = 0;
10119 this_command_key_count_reset = 0;
10121 if (NILP (keep_record))
10123 for (i = 0; i < XVECTOR (recent_keys)->size; ++i)
10124 XVECTOR (recent_keys)->contents[i] = Qnil;
10125 total_keys = 0;
10126 recent_keys_index = 0;
10128 return Qnil;
10131 DEFUN ("recursion-depth", Frecursion_depth, Srecursion_depth, 0, 0, 0,
10132 doc: /* Return the current depth in recursive edits. */)
10135 Lisp_Object temp;
10136 XSETFASTINT (temp, command_loop_level + minibuf_level);
10137 return temp;
10140 DEFUN ("open-dribble-file", Fopen_dribble_file, Sopen_dribble_file, 1, 1,
10141 "FOpen dribble file: ",
10142 doc: /* Start writing all keyboard characters to a dribble file called FILE.
10143 If FILE is nil, close any open dribble file. */)
10144 (file)
10145 Lisp_Object file;
10147 if (dribble)
10149 fclose (dribble);
10150 dribble = 0;
10152 if (!NILP (file))
10154 file = Fexpand_file_name (file, Qnil);
10155 dribble = fopen (SDATA (file), "w");
10156 if (dribble == 0)
10157 report_file_error ("Opening dribble", Fcons (file, Qnil));
10159 return Qnil;
10162 DEFUN ("discard-input", Fdiscard_input, Sdiscard_input, 0, 0, 0,
10163 doc: /* Discard the contents of the terminal input buffer.
10164 Also end any kbd macro being defined. */)
10167 if (!NILP (current_kboard->defining_kbd_macro))
10169 /* Discard the last command from the macro. */
10170 Fcancel_kbd_macro_events ();
10171 end_kbd_macro ();
10174 update_mode_lines++;
10176 Vunread_command_events = Qnil;
10177 unread_command_char = -1;
10179 discard_tty_input ();
10181 kbd_fetch_ptr = kbd_store_ptr;
10182 input_pending = 0;
10184 return Qnil;
10187 DEFUN ("suspend-emacs", Fsuspend_emacs, Ssuspend_emacs, 0, 1, "",
10188 doc: /* Stop Emacs and return to superior process. You can resume later.
10189 If `cannot-suspend' is non-nil, or if the system doesn't support job
10190 control, run a subshell instead.
10192 If optional arg STUFFSTRING is non-nil, its characters are stuffed
10193 to be read as terminal input by Emacs's parent, after suspension.
10195 Before suspending, run the normal hook `suspend-hook'.
10196 After resumption run the normal hook `suspend-resume-hook'.
10198 Some operating systems cannot stop the Emacs process and resume it later.
10199 On such systems, Emacs starts a subshell instead of suspending. */)
10200 (stuffstring)
10201 Lisp_Object stuffstring;
10203 int count = SPECPDL_INDEX ();
10204 int old_height, old_width;
10205 int width, height;
10206 struct gcpro gcpro1;
10208 if (tty_list && tty_list->next)
10209 error ("There are other tty frames open; close them before suspending Emacs");
10211 if (!NILP (stuffstring))
10212 CHECK_STRING (stuffstring);
10214 /* Run the functions in suspend-hook. */
10215 if (!NILP (Vrun_hooks))
10216 call1 (Vrun_hooks, intern ("suspend-hook"));
10218 GCPRO1 (stuffstring);
10219 get_tty_size (fileno (CURTTY ()->input), &old_width, &old_height);
10220 reset_all_sys_modes ();
10221 /* sys_suspend can get an error if it tries to fork a subshell
10222 and the system resources aren't available for that. */
10223 record_unwind_protect ((Lisp_Object (*) P_ ((Lisp_Object))) init_all_sys_modes,
10224 Qnil);
10225 stuff_buffered_input (stuffstring);
10226 if (cannot_suspend)
10227 sys_subshell ();
10228 else
10229 sys_suspend ();
10230 unbind_to (count, Qnil);
10232 /* Check if terminal/window size has changed.
10233 Note that this is not useful when we are running directly
10234 with a window system; but suspend should be disabled in that case. */
10235 get_tty_size (fileno (CURTTY ()->input), &width, &height);
10236 if (width != old_width || height != old_height)
10237 change_frame_size (SELECTED_FRAME (), height, width, 0, 0, 0);
10239 /* Run suspend-resume-hook. */
10240 if (!NILP (Vrun_hooks))
10241 call1 (Vrun_hooks, intern ("suspend-resume-hook"));
10243 UNGCPRO;
10244 return Qnil;
10247 /* If STUFFSTRING is a string, stuff its contents as pending terminal input.
10248 Then in any case stuff anything Emacs has read ahead and not used. */
10250 void
10251 stuff_buffered_input (stuffstring)
10252 Lisp_Object stuffstring;
10254 #ifdef SIGTSTP /* stuff_char is defined if SIGTSTP. */
10255 register unsigned char *p;
10257 if (STRINGP (stuffstring))
10259 register int count;
10261 p = SDATA (stuffstring);
10262 count = SBYTES (stuffstring);
10263 while (count-- > 0)
10264 stuff_char (*p++);
10265 stuff_char ('\n');
10268 /* Anything we have read ahead, put back for the shell to read. */
10269 /* ?? What should this do when we have multiple keyboards??
10270 Should we ignore anything that was typed in at the "wrong" kboard?
10272 rms: we should stuff everything back into the kboard
10273 it came from. */
10274 for (; kbd_fetch_ptr != kbd_store_ptr; kbd_fetch_ptr++)
10277 if (kbd_fetch_ptr == kbd_buffer + KBD_BUFFER_SIZE)
10278 kbd_fetch_ptr = kbd_buffer;
10279 if (kbd_fetch_ptr->kind == ASCII_KEYSTROKE_EVENT)
10280 stuff_char (kbd_fetch_ptr->code);
10282 clear_event (kbd_fetch_ptr);
10285 input_pending = 0;
10286 #endif /* SIGTSTP */
10289 void
10290 set_waiting_for_input (time_to_clear)
10291 EMACS_TIME *time_to_clear;
10293 input_available_clear_time = time_to_clear;
10295 /* Tell handle_interrupt to throw back to read_char, */
10296 waiting_for_input = 1;
10298 /* If handle_interrupt was called before and buffered a C-g,
10299 make it run again now, to avoid timing error. */
10300 if (!NILP (Vquit_flag))
10301 quit_throw_to_read_char ();
10304 void
10305 clear_waiting_for_input ()
10307 /* Tell handle_interrupt not to throw back to read_char, */
10308 waiting_for_input = 0;
10309 input_available_clear_time = 0;
10312 /* The SIGINT handler.
10314 If we have a frame on the controlling tty, we assume that the
10315 SIGINT was generated by C-g, so we call handle_interrupt.
10316 Otherwise, the handler kills Emacs. */
10318 static SIGTYPE
10319 interrupt_signal (signalnum) /* If we don't have an argument, */
10320 int signalnum; /* some compilers complain in signal calls. */
10322 /* Must preserve main program's value of errno. */
10323 int old_errno = errno;
10324 struct display *display;
10326 #if defined (USG) && !defined (POSIX_SIGNALS)
10327 /* USG systems forget handlers when they are used;
10328 must reestablish each time */
10329 signal (SIGINT, interrupt_signal);
10330 signal (SIGQUIT, interrupt_signal);
10331 #endif /* USG */
10333 SIGNAL_THREAD_CHECK (signalnum);
10335 /* See if we have an active display on our controlling terminal. */
10336 display = get_named_tty_display (NULL);
10337 if (!display)
10339 /* If there are no frames there, let's pretend that we are a
10340 well-behaving UN*X program and quit. */
10341 fatal_error_signal (SIGTERM);
10343 else
10345 /* Otherwise, the SIGINT was probably generated by C-g. */
10347 /* Set internal_last_event_frame to the top frame of the
10348 controlling tty, if we have a frame there. We disable the
10349 interrupt key on secondary ttys, so the SIGINT must have come
10350 from the controlling tty. */
10351 internal_last_event_frame = display->display_info.tty->top_frame;
10353 handle_interrupt ();
10356 errno = old_errno;
10359 /* This routine is called at interrupt level in response to C-g.
10361 It is called from the SIGINT handler or kbd_buffer_store_event.
10363 If `waiting_for_input' is non zero, then unless `echoing' is
10364 nonzero, immediately throw back to read_char.
10366 Otherwise it sets the Lisp variable quit-flag not-nil. This causes
10367 eval to throw, when it gets a chance. If quit-flag is already
10368 non-nil, it stops the job right away. */
10370 static void
10371 handle_interrupt ()
10373 char c;
10375 cancel_echoing ();
10377 /* XXX This code needs to be revised for multi-tty support. */
10378 if (!NILP (Vquit_flag)
10379 #ifndef MSDOS
10380 && get_named_tty_display (NULL)
10381 #endif
10384 /* If SIGINT isn't blocked, don't let us be interrupted by
10385 another SIGINT, it might be harmful due to non-reentrancy
10386 in I/O functions. */
10387 sigblock (sigmask (SIGINT));
10389 fflush (stdout);
10390 reset_all_sys_modes ();
10392 #ifdef SIGTSTP /* Support possible in later USG versions */
10394 * On systems which can suspend the current process and return to the original
10395 * shell, this command causes the user to end up back at the shell.
10396 * The "Auto-save" and "Abort" questions are not asked until
10397 * the user elects to return to emacs, at which point he can save the current
10398 * job and either dump core or continue.
10400 sys_suspend ();
10401 #else
10402 #ifdef VMS
10403 if (sys_suspend () == -1)
10405 printf ("Not running as a subprocess;\n");
10406 printf ("you can continue or abort.\n");
10408 #else /* not VMS */
10409 /* Perhaps should really fork an inferior shell?
10410 But that would not provide any way to get back
10411 to the original shell, ever. */
10412 printf ("No support for stopping a process on this operating system;\n");
10413 printf ("you can continue or abort.\n");
10414 #endif /* not VMS */
10415 #endif /* not SIGTSTP */
10416 #ifdef MSDOS
10417 /* We must remain inside the screen area when the internal terminal
10418 is used. Note that [Enter] is not echoed by dos. */
10419 cursor_to (0, 0);
10420 #endif
10421 /* It doesn't work to autosave while GC is in progress;
10422 the code used for auto-saving doesn't cope with the mark bit. */
10423 if (!gc_in_progress)
10425 printf ("Auto-save? (y or n) ");
10426 fflush (stdout);
10427 if (((c = getchar ()) & ~040) == 'Y')
10429 Fdo_auto_save (Qt, Qnil);
10430 #ifdef MSDOS
10431 printf ("\r\nAuto-save done");
10432 #else /* not MSDOS */
10433 printf ("Auto-save done\n");
10434 #endif /* not MSDOS */
10436 while (c != '\n') c = getchar ();
10438 else
10440 /* During GC, it must be safe to reenable quitting again. */
10441 Vinhibit_quit = Qnil;
10442 #ifdef MSDOS
10443 printf ("\r\n");
10444 #endif /* not MSDOS */
10445 printf ("Garbage collection in progress; cannot auto-save now\r\n");
10446 printf ("but will instead do a real quit after garbage collection ends\r\n");
10447 fflush (stdout);
10450 #ifdef MSDOS
10451 printf ("\r\nAbort? (y or n) ");
10452 #else /* not MSDOS */
10453 #ifdef VMS
10454 printf ("Abort (and enter debugger)? (y or n) ");
10455 #else /* not VMS */
10456 printf ("Abort (and dump core)? (y or n) ");
10457 #endif /* not VMS */
10458 #endif /* not MSDOS */
10459 fflush (stdout);
10460 if (((c = getchar ()) & ~040) == 'Y')
10461 abort ();
10462 while (c != '\n') c = getchar ();
10463 #ifdef MSDOS
10464 printf ("\r\nContinuing...\r\n");
10465 #else /* not MSDOS */
10466 printf ("Continuing...\n");
10467 #endif /* not MSDOS */
10468 fflush (stdout);
10469 init_all_sys_modes ();
10470 sigfree ();
10472 else
10474 /* If executing a function that wants to be interrupted out of
10475 and the user has not deferred quitting by binding `inhibit-quit'
10476 then quit right away. */
10477 if (immediate_quit && NILP (Vinhibit_quit))
10479 struct gl_state_s saved;
10480 struct gcpro gcpro1, gcpro2, gcpro3, gcpro4;
10482 immediate_quit = 0;
10483 sigfree ();
10484 saved = gl_state;
10485 GCPRO4 (saved.object, saved.global_code,
10486 saved.current_syntax_table, saved.old_prop);
10487 Fsignal (Qquit, Qnil);
10488 gl_state = saved;
10489 UNGCPRO;
10491 else
10492 /* Else request quit when it's safe */
10493 Vquit_flag = Qt;
10496 if (waiting_for_input && !echoing)
10497 quit_throw_to_read_char ();
10500 /* Handle a C-g by making read_char return C-g. */
10502 void
10503 quit_throw_to_read_char ()
10505 sigfree ();
10506 /* Prevent another signal from doing this before we finish. */
10507 clear_waiting_for_input ();
10508 input_pending = 0;
10510 Vunread_command_events = Qnil;
10511 unread_command_char = -1;
10513 #if 0 /* Currently, sit_for is called from read_char without turning
10514 off polling. And that can call set_waiting_for_input.
10515 It seems to be harmless. */
10516 #ifdef POLL_FOR_INPUT
10517 /* May be > 1 if in recursive minibuffer. */
10518 if (poll_suppress_count == 0)
10519 abort ();
10520 #endif
10521 #endif
10522 if (FRAMEP (internal_last_event_frame)
10523 && !EQ (internal_last_event_frame, selected_frame))
10524 do_switch_frame (make_lispy_switch_frame (internal_last_event_frame),
10525 0, 0);
10527 _longjmp (getcjmp, 1);
10530 DEFUN ("set-input-mode", Fset_input_mode, Sset_input_mode, 3, 4, 0,
10531 doc: /* Set mode of reading keyboard input.
10532 First arg INTERRUPT non-nil means use input interrupts;
10533 nil means use CBREAK mode.
10534 Second arg FLOW non-nil means use ^S/^Q flow control for output to terminal
10535 (no effect except in CBREAK mode).
10536 Third arg META t means accept 8-bit input (for a Meta key).
10537 META nil means ignore the top bit, on the assumption it is parity.
10538 Otherwise, accept 8-bit input and don't use the top bit for Meta.
10539 Optional fourth arg QUIT if non-nil specifies character to use for quitting.
10540 See also `current-input-mode'. */)
10541 (interrupt, flow, meta, quit)
10542 Lisp_Object interrupt, flow, meta, quit;
10544 /* XXX This function needs to be revised for multi-device support.
10545 Currently it compiles fine, but its semantics are wrong. It sets
10546 global parameters (e.g. interrupt_input) based on only the
10547 current frame's device. */
10549 if (!NILP (quit)
10550 && (!INTEGERP (quit) || XINT (quit) < 0 || XINT (quit) > 0400))
10551 error ("set-input-mode: QUIT must be an ASCII character");
10553 #ifdef POLL_FOR_INPUT
10554 stop_polling ();
10555 #endif
10557 #ifndef DOS_NT
10558 /* this causes startup screen to be restored and messes with the mouse */
10559 reset_all_sys_modes ();
10560 #endif
10562 #ifdef SIGIO
10563 /* Note SIGIO has been undef'd if FIONREAD is missing. */
10564 if (FRAME_DISPLAY (SELECTED_FRAME ())->read_socket_hook)
10566 /* When using X, don't give the user a real choice,
10567 because we haven't implemented the mechanisms to support it. */
10568 #ifdef NO_SOCK_SIGIO
10569 interrupt_input = 0;
10570 #else /* not NO_SOCK_SIGIO */
10571 interrupt_input = 1;
10572 #endif /* NO_SOCK_SIGIO */
10574 else
10575 interrupt_input = !NILP (interrupt);
10576 #else /* not SIGIO */
10577 interrupt_input = 0;
10578 #endif /* not SIGIO */
10580 /* Our VMS input only works by interrupts, as of now. */
10581 #ifdef VMS
10582 interrupt_input = 1;
10583 #endif
10585 if (FRAME_TERMCAP_P (XFRAME (selected_frame)))
10587 struct tty_display_info *tty = CURTTY ();
10588 tty->flow_control = !NILP (flow);
10589 if (NILP (meta))
10590 tty->meta_key = 0;
10591 else if (EQ (meta, Qt))
10592 tty->meta_key = 1;
10593 else
10594 tty->meta_key = 2;
10597 if (!NILP (quit))
10598 /* Don't let this value be out of range. */
10599 quit_char = XINT (quit) & (NILP (meta) ? 0177 : 0377);
10601 #ifndef DOS_NT
10602 init_all_sys_modes ();
10603 #endif
10605 #ifdef POLL_FOR_INPUT
10606 poll_suppress_count = 1;
10607 start_polling ();
10608 #endif
10609 return Qnil;
10612 DEFUN ("current-input-mode", Fcurrent_input_mode, Scurrent_input_mode, 0, 0, 0,
10613 doc: /* Return information about the way Emacs currently reads keyboard input.
10614 The value is a list of the form (INTERRUPT FLOW META QUIT), where
10615 INTERRUPT is non-nil if Emacs is using interrupt-driven input; if
10616 nil, Emacs is using CBREAK mode.
10617 FLOW is non-nil if Emacs uses ^S/^Q flow control for output to the
10618 terminal; this does not apply if Emacs uses interrupt-driven input.
10619 META is t if accepting 8-bit input with 8th bit as Meta flag.
10620 META nil means ignoring the top bit, on the assumption it is parity.
10621 META is neither t nor nil if accepting 8-bit input and using
10622 all 8 bits as the character code.
10623 QUIT is the character Emacs currently uses to quit.
10624 The elements of this list correspond to the arguments of
10625 `set-input-mode'. */)
10628 Lisp_Object val[4];
10629 struct frame *sf = XFRAME (selected_frame);
10631 val[0] = interrupt_input ? Qt : Qnil;
10632 if (FRAME_TERMCAP_P (sf))
10634 val[1] = FRAME_TTY (sf)->flow_control ? Qt : Qnil;
10635 val[2] = (FRAME_TTY (sf)->meta_key == 2
10636 ? make_number (0)
10637 : (CURTTY ()->meta_key == 1 ? Qt : Qnil));
10639 else
10641 val[1] = Qnil;
10642 val[2] = Qt;
10644 XSETFASTINT (val[3], quit_char);
10646 return Flist (sizeof (val) / sizeof (val[0]), val);
10649 DEFUN ("posn-at-x-y", Fposn_at_x_y, Sposn_at_x_y, 2, 4, 0,
10650 doc: /* Return position information for pixel coordinates X and Y.
10651 By default, X and Y are relative to text area of the selected window.
10652 Optional third arg FRAME_OR_WINDOW non-nil specifies frame or window.
10653 If optional fourth arg WHOLE is non-nil, X is relative to the left
10654 edge of the window.
10656 The return value is similar to a mouse click position:
10657 (WINDOW AREA-OR-POS (X . Y) TIMESTAMP OBJECT POS (COL . ROW)
10658 IMAGE (DX . DY) (WIDTH . HEIGHT))
10659 The `posn-' functions access elements of such lists. */)
10660 (x, y, frame_or_window, whole)
10661 Lisp_Object x, y, frame_or_window, whole;
10663 CHECK_NATNUM (x);
10664 CHECK_NATNUM (y);
10666 if (NILP (frame_or_window))
10667 frame_or_window = selected_window;
10669 if (WINDOWP (frame_or_window))
10671 struct window *w;
10673 CHECK_LIVE_WINDOW (frame_or_window);
10675 w = XWINDOW (frame_or_window);
10676 XSETINT (x, (WINDOW_TO_FRAME_PIXEL_X (w, XINT (x))
10677 + (NILP (whole)
10678 ? window_box_left_offset (w, TEXT_AREA)
10679 : - (WINDOW_LEFT_SCROLL_BAR_COLS (w)
10680 * WINDOW_FRAME_COLUMN_WIDTH (w)))));
10681 XSETINT (y, WINDOW_TO_FRAME_PIXEL_Y (w, XINT (y)));
10682 frame_or_window = w->frame;
10685 CHECK_LIVE_FRAME (frame_or_window);
10687 return make_lispy_position (XFRAME (frame_or_window), &x, &y, 0);
10690 DEFUN ("posn-at-point", Fposn_at_point, Sposn_at_point, 0, 2, 0,
10691 doc: /* Return position information for buffer POS in WINDOW.
10692 POS defaults to point in WINDOW; WINDOW defaults to the selected window.
10694 Return nil if position is not visible in window. Otherwise,
10695 the return value is similar to that returned by `event-start' for
10696 a mouse click at the upper left corner of the glyph corresponding
10697 to the given buffer position:
10698 (WINDOW AREA-OR-POS (X . Y) TIMESTAMP OBJECT POS (COL . ROW)
10699 IMAGE (DX . DY) (WIDTH . HEIGHT))
10700 The `posn-' functions access elements of such lists. */)
10701 (pos, window)
10702 Lisp_Object pos, window;
10704 Lisp_Object tem;
10706 tem = Fpos_visible_in_window_p (pos, window, Qt);
10707 if (!NILP (tem))
10708 tem = Fposn_at_x_y (XCAR (tem), XCAR (XCDR (tem)), window, Qnil);
10709 return tem;
10714 * Set up a new kboard object with reasonable initial values.
10716 void
10717 init_kboard (kb)
10718 KBOARD *kb;
10720 kb->Voverriding_terminal_local_map = Qnil;
10721 kb->Vlast_command = Qnil;
10722 kb->Vreal_last_command = Qnil;
10723 kb->Vprefix_arg = Qnil;
10724 kb->Vlast_prefix_arg = Qnil;
10725 kb->kbd_queue = Qnil;
10726 kb->kbd_queue_has_data = 0;
10727 kb->immediate_echo = 0;
10728 kb->echo_string = Qnil;
10729 kb->echo_after_prompt = -1;
10730 kb->kbd_macro_buffer = 0;
10731 kb->kbd_macro_bufsize = 0;
10732 kb->defining_kbd_macro = Qnil;
10733 kb->Vlast_kbd_macro = Qnil;
10734 kb->reference_count = 0;
10735 kb->Vsystem_key_alist = Qnil;
10736 kb->system_key_syms = Qnil;
10737 kb->Vdefault_minibuffer_frame = Qnil;
10741 * Destroy the contents of a kboard object, but not the object itself.
10742 * We use this just before deleting it, or if we're going to initialize
10743 * it a second time.
10745 static void
10746 wipe_kboard (kb)
10747 KBOARD *kb;
10749 if (kb->kbd_macro_buffer)
10750 xfree (kb->kbd_macro_buffer);
10753 #ifdef MULTI_KBOARD
10755 /* Free KB and memory referenced from it. */
10757 void
10758 delete_kboard (kb)
10759 KBOARD *kb;
10761 KBOARD **kbp;
10763 for (kbp = &all_kboards; *kbp != kb; kbp = &(*kbp)->next_kboard)
10764 if (*kbp == NULL)
10765 abort ();
10766 *kbp = kb->next_kboard;
10768 /* Prevent a dangling reference to KB. */
10769 if (kb == current_kboard
10770 && FRAMEP (selected_frame)
10771 && FRAME_LIVE_P (XFRAME (selected_frame)))
10773 current_kboard = XFRAME (selected_frame)->kboard;
10774 if (current_kboard == kb)
10775 abort ();
10778 wipe_kboard (kb);
10779 xfree (kb);
10782 #endif /* MULTI_KBOARD */
10784 void
10785 init_keyboard ()
10787 /* This is correct before outermost invocation of the editor loop */
10788 command_loop_level = -1;
10789 immediate_quit = 0;
10790 quit_char = Ctl ('g');
10791 Vunread_command_events = Qnil;
10792 unread_command_char = -1;
10793 EMACS_SET_SECS_USECS (timer_idleness_start_time, -1, -1);
10794 total_keys = 0;
10795 recent_keys_index = 0;
10796 kbd_fetch_ptr = kbd_buffer;
10797 kbd_store_ptr = kbd_buffer;
10798 #ifdef HAVE_MOUSE
10799 do_mouse_tracking = Qnil;
10800 #endif
10801 input_pending = 0;
10803 /* This means that command_loop_1 won't try to select anything the first
10804 time through. */
10805 internal_last_event_frame = Qnil;
10806 Vlast_event_frame = internal_last_event_frame;
10808 #ifdef MULTI_KBOARD
10809 current_kboard = initial_kboard;
10810 #endif
10811 wipe_kboard (current_kboard);
10812 init_kboard (current_kboard);
10814 if (!noninteractive)
10816 /* Before multi-tty support, these handlers used to be installed
10817 only if the current session was a tty session. Now an Emacs
10818 session may have multiple display types, so we always handle
10819 SIGINT. There is special code in interrupt_signal to exit
10820 Emacs on SIGINT when there are no termcap frames on the
10821 controlling terminal. */
10822 signal (SIGINT, interrupt_signal);
10823 #if defined (HAVE_TERMIO) || defined (HAVE_TERMIOS)
10824 /* For systems with SysV TERMIO, C-g is set up for both SIGINT and
10825 SIGQUIT and we can't tell which one it will give us. */
10826 signal (SIGQUIT, interrupt_signal);
10827 #endif /* HAVE_TERMIO */
10829 /* Note SIGIO has been undef'd if FIONREAD is missing. */
10830 #ifdef SIGIO
10831 if (!noninteractive)
10832 signal (SIGIO, input_available_signal);
10833 #endif /* SIGIO */
10835 /* Use interrupt input by default, if it works and noninterrupt input
10836 has deficiencies. */
10838 #ifdef INTERRUPT_INPUT
10839 interrupt_input = 1;
10840 #else
10841 interrupt_input = 0;
10842 #endif
10844 /* Our VMS input only works by interrupts, as of now. */
10845 #ifdef VMS
10846 interrupt_input = 1;
10847 #endif
10849 sigfree ();
10850 dribble = 0;
10852 if (keyboard_init_hook)
10853 (*keyboard_init_hook) ();
10855 #ifdef POLL_FOR_INPUT
10856 poll_suppress_count = 1;
10857 start_polling ();
10858 #endif
10860 #ifdef MAC_OSX
10861 /* At least provide an escape route since C-g doesn't work. */
10862 signal (SIGINT, interrupt_signal);
10863 #endif
10866 /* This type's only use is in syms_of_keyboard, to initialize the
10867 event header symbols and put properties on them. */
10868 struct event_head {
10869 Lisp_Object *var;
10870 char *name;
10871 Lisp_Object *kind;
10874 struct event_head head_table[] = {
10875 {&Qmouse_movement, "mouse-movement", &Qmouse_movement},
10876 {&Qscroll_bar_movement, "scroll-bar-movement", &Qmouse_movement},
10877 {&Qswitch_frame, "switch-frame", &Qswitch_frame},
10878 {&Qdelete_frame, "delete-frame", &Qdelete_frame},
10879 {&Qiconify_frame, "iconify-frame", &Qiconify_frame},
10880 {&Qmake_frame_visible, "make-frame-visible", &Qmake_frame_visible},
10881 /* `select-window' should be handled just like `switch-frame'
10882 in read_key_sequence. */
10883 {&Qselect_window, "select-window", &Qswitch_frame}
10886 void
10887 syms_of_keyboard ()
10889 Vpre_help_message = Qnil;
10890 staticpro (&Vpre_help_message);
10892 Vlispy_mouse_stem = build_string ("mouse");
10893 staticpro (&Vlispy_mouse_stem);
10895 /* Tool-bars. */
10896 QCimage = intern (":image");
10897 staticpro (&QCimage);
10899 staticpro (&Qhelp_echo);
10900 Qhelp_echo = intern ("help-echo");
10902 staticpro (&item_properties);
10903 item_properties = Qnil;
10905 staticpro (&tool_bar_item_properties);
10906 tool_bar_item_properties = Qnil;
10907 staticpro (&tool_bar_items_vector);
10908 tool_bar_items_vector = Qnil;
10910 staticpro (&real_this_command);
10911 real_this_command = Qnil;
10913 Qtimer_event_handler = intern ("timer-event-handler");
10914 staticpro (&Qtimer_event_handler);
10916 Qdisabled_command_function = intern ("disabled-command-function");
10917 staticpro (&Qdisabled_command_function);
10919 Qself_insert_command = intern ("self-insert-command");
10920 staticpro (&Qself_insert_command);
10922 Qforward_char = intern ("forward-char");
10923 staticpro (&Qforward_char);
10925 Qbackward_char = intern ("backward-char");
10926 staticpro (&Qbackward_char);
10928 Qdisabled = intern ("disabled");
10929 staticpro (&Qdisabled);
10931 Qundefined = intern ("undefined");
10932 staticpro (&Qundefined);
10934 Qpre_command_hook = intern ("pre-command-hook");
10935 staticpro (&Qpre_command_hook);
10937 Qpost_command_hook = intern ("post-command-hook");
10938 staticpro (&Qpost_command_hook);
10940 Qpost_command_idle_hook = intern ("post-command-idle-hook");
10941 staticpro (&Qpost_command_idle_hook);
10943 Qdeferred_action_function = intern ("deferred-action-function");
10944 staticpro (&Qdeferred_action_function);
10946 Qcommand_hook_internal = intern ("command-hook-internal");
10947 staticpro (&Qcommand_hook_internal);
10949 Qfunction_key = intern ("function-key");
10950 staticpro (&Qfunction_key);
10951 Qmouse_click = intern ("mouse-click");
10952 staticpro (&Qmouse_click);
10953 #ifdef WINDOWSNT
10954 Qlanguage_change = intern ("language-change");
10955 staticpro (&Qlanguage_change);
10956 #endif
10957 Qdrag_n_drop = intern ("drag-n-drop");
10958 staticpro (&Qdrag_n_drop);
10960 Qsave_session = intern ("save-session");
10961 staticpro(&Qsave_session);
10963 Qusr1_signal = intern ("usr1-signal");
10964 staticpro (&Qusr1_signal);
10965 Qusr2_signal = intern ("usr2-signal");
10966 staticpro (&Qusr2_signal);
10968 Qmenu_enable = intern ("menu-enable");
10969 staticpro (&Qmenu_enable);
10970 Qmenu_alias = intern ("menu-alias");
10971 staticpro (&Qmenu_alias);
10972 QCenable = intern (":enable");
10973 staticpro (&QCenable);
10974 QCvisible = intern (":visible");
10975 staticpro (&QCvisible);
10976 QChelp = intern (":help");
10977 staticpro (&QChelp);
10978 QCfilter = intern (":filter");
10979 staticpro (&QCfilter);
10980 QCbutton = intern (":button");
10981 staticpro (&QCbutton);
10982 QCkeys = intern (":keys");
10983 staticpro (&QCkeys);
10984 QCkey_sequence = intern (":key-sequence");
10985 staticpro (&QCkey_sequence);
10986 QCtoggle = intern (":toggle");
10987 staticpro (&QCtoggle);
10988 QCradio = intern (":radio");
10989 staticpro (&QCradio);
10991 Qmode_line = intern ("mode-line");
10992 staticpro (&Qmode_line);
10993 Qvertical_line = intern ("vertical-line");
10994 staticpro (&Qvertical_line);
10995 Qvertical_scroll_bar = intern ("vertical-scroll-bar");
10996 staticpro (&Qvertical_scroll_bar);
10997 Qmenu_bar = intern ("menu-bar");
10998 staticpro (&Qmenu_bar);
11000 Qabove_handle = intern ("above-handle");
11001 staticpro (&Qabove_handle);
11002 Qhandle = intern ("handle");
11003 staticpro (&Qhandle);
11004 Qbelow_handle = intern ("below-handle");
11005 staticpro (&Qbelow_handle);
11006 Qup = intern ("up");
11007 staticpro (&Qup);
11008 Qdown = intern ("down");
11009 staticpro (&Qdown);
11010 Qtop = intern ("top");
11011 staticpro (&Qtop);
11012 Qbottom = intern ("bottom");
11013 staticpro (&Qbottom);
11014 Qend_scroll = intern ("end-scroll");
11015 staticpro (&Qend_scroll);
11016 Qratio = intern ("ratio");
11017 staticpro (&Qratio);
11019 Qevent_kind = intern ("event-kind");
11020 staticpro (&Qevent_kind);
11021 Qevent_symbol_elements = intern ("event-symbol-elements");
11022 staticpro (&Qevent_symbol_elements);
11023 Qevent_symbol_element_mask = intern ("event-symbol-element-mask");
11024 staticpro (&Qevent_symbol_element_mask);
11025 Qmodifier_cache = intern ("modifier-cache");
11026 staticpro (&Qmodifier_cache);
11028 Qrecompute_lucid_menubar = intern ("recompute-lucid-menubar");
11029 staticpro (&Qrecompute_lucid_menubar);
11030 Qactivate_menubar_hook = intern ("activate-menubar-hook");
11031 staticpro (&Qactivate_menubar_hook);
11033 Qpolling_period = intern ("polling-period");
11034 staticpro (&Qpolling_period);
11036 Qinput_method_function = intern ("input-method-function");
11037 staticpro (&Qinput_method_function);
11039 Qinput_method_exit_on_first_char = intern ("input-method-exit-on-first-char");
11040 staticpro (&Qinput_method_exit_on_first_char);
11041 Qinput_method_use_echo_area = intern ("input-method-use-echo-area");
11042 staticpro (&Qinput_method_use_echo_area);
11044 Fset (Qinput_method_exit_on_first_char, Qnil);
11045 Fset (Qinput_method_use_echo_area, Qnil);
11047 last_point_position_buffer = Qnil;
11050 struct event_head *p;
11052 for (p = head_table;
11053 p < head_table + (sizeof (head_table) / sizeof (head_table[0]));
11054 p++)
11056 *p->var = intern (p->name);
11057 staticpro (p->var);
11058 Fput (*p->var, Qevent_kind, *p->kind);
11059 Fput (*p->var, Qevent_symbol_elements, Fcons (*p->var, Qnil));
11063 button_down_location = Fmake_vector (make_number (1), Qnil);
11064 staticpro (&button_down_location);
11065 mouse_syms = Fmake_vector (make_number (1), Qnil);
11066 staticpro (&mouse_syms);
11067 wheel_syms = Fmake_vector (make_number (2), Qnil);
11068 staticpro (&wheel_syms);
11071 int i;
11072 int len = sizeof (modifier_names) / sizeof (modifier_names[0]);
11074 modifier_symbols = Fmake_vector (make_number (len), Qnil);
11075 for (i = 0; i < len; i++)
11076 if (modifier_names[i])
11077 XVECTOR (modifier_symbols)->contents[i] = intern (modifier_names[i]);
11078 staticpro (&modifier_symbols);
11081 recent_keys = Fmake_vector (make_number (NUM_RECENT_KEYS), Qnil);
11082 staticpro (&recent_keys);
11084 this_command_keys = Fmake_vector (make_number (40), Qnil);
11085 staticpro (&this_command_keys);
11087 raw_keybuf = Fmake_vector (make_number (30), Qnil);
11088 staticpro (&raw_keybuf);
11090 Qextended_command_history = intern ("extended-command-history");
11091 Fset (Qextended_command_history, Qnil);
11092 staticpro (&Qextended_command_history);
11094 accent_key_syms = Qnil;
11095 staticpro (&accent_key_syms);
11097 func_key_syms = Qnil;
11098 staticpro (&func_key_syms);
11100 drag_n_drop_syms = Qnil;
11101 staticpro (&drag_n_drop_syms);
11103 unread_switch_frame = Qnil;
11104 staticpro (&unread_switch_frame);
11106 internal_last_event_frame = Qnil;
11107 staticpro (&internal_last_event_frame);
11109 read_key_sequence_cmd = Qnil;
11110 staticpro (&read_key_sequence_cmd);
11112 menu_bar_one_keymap_changed_items = Qnil;
11113 staticpro (&menu_bar_one_keymap_changed_items);
11115 defsubr (&Sevent_convert_list);
11116 defsubr (&Sread_key_sequence);
11117 defsubr (&Sread_key_sequence_vector);
11118 defsubr (&Srecursive_edit);
11119 #ifdef HAVE_MOUSE
11120 defsubr (&Strack_mouse);
11121 #endif
11122 defsubr (&Sinput_pending_p);
11123 defsubr (&Scommand_execute);
11124 defsubr (&Srecent_keys);
11125 defsubr (&Sthis_command_keys);
11126 defsubr (&Sthis_command_keys_vector);
11127 defsubr (&Sthis_single_command_keys);
11128 defsubr (&Sthis_single_command_raw_keys);
11129 defsubr (&Sreset_this_command_lengths);
11130 defsubr (&Sclear_this_command_keys);
11131 defsubr (&Ssuspend_emacs);
11132 defsubr (&Sabort_recursive_edit);
11133 defsubr (&Sexit_recursive_edit);
11134 defsubr (&Srecursion_depth);
11135 defsubr (&Stop_level);
11136 defsubr (&Sdiscard_input);
11137 defsubr (&Sopen_dribble_file);
11138 defsubr (&Sset_input_mode);
11139 defsubr (&Scurrent_input_mode);
11140 defsubr (&Sexecute_extended_command);
11141 defsubr (&Sposn_at_point);
11142 defsubr (&Sposn_at_x_y);
11144 DEFVAR_LISP ("last-command-char", &last_command_char,
11145 doc: /* Last input event that was part of a command. */);
11147 DEFVAR_LISP_NOPRO ("last-command-event", &last_command_char,
11148 doc: /* Last input event that was part of a command. */);
11150 DEFVAR_LISP ("last-nonmenu-event", &last_nonmenu_event,
11151 doc: /* Last input event in a command, except for mouse menu events.
11152 Mouse menus give back keys that don't look like mouse events;
11153 this variable holds the actual mouse event that led to the menu,
11154 so that you can determine whether the command was run by mouse or not. */);
11156 DEFVAR_LISP ("last-input-char", &last_input_char,
11157 doc: /* Last input event. */);
11159 DEFVAR_LISP_NOPRO ("last-input-event", &last_input_char,
11160 doc: /* Last input event. */);
11162 DEFVAR_LISP ("unread-command-events", &Vunread_command_events,
11163 doc: /* List of events to be read as the command input.
11164 These events are processed first, before actual keyboard input. */);
11165 Vunread_command_events = Qnil;
11167 DEFVAR_INT ("unread-command-char", &unread_command_char,
11168 doc: /* If not -1, an object to be read as next command input event. */);
11170 DEFVAR_LISP ("unread-post-input-method-events", &Vunread_post_input_method_events,
11171 doc: /* List of events to be processed as input by input methods.
11172 These events are processed after `unread-command-events', but
11173 before actual keyboard input. */);
11174 Vunread_post_input_method_events = Qnil;
11176 DEFVAR_LISP ("unread-input-method-events", &Vunread_input_method_events,
11177 doc: /* List of events to be processed as input by input methods.
11178 These events are processed after `unread-command-events', but
11179 before actual keyboard input. */);
11180 Vunread_input_method_events = Qnil;
11182 DEFVAR_LISP ("meta-prefix-char", &meta_prefix_char,
11183 doc: /* Meta-prefix character code.
11184 Meta-foo as command input turns into this character followed by foo. */);
11185 XSETINT (meta_prefix_char, 033);
11187 DEFVAR_KBOARD ("last-command", Vlast_command,
11188 doc: /* The last command executed.
11189 Normally a symbol with a function definition, but can be whatever was found
11190 in the keymap, or whatever the variable `this-command' was set to by that
11191 command.
11193 The value `mode-exit' is special; it means that the previous command
11194 read an event that told it to exit, and it did so and unread that event.
11195 In other words, the present command is the event that made the previous
11196 command exit.
11198 The value `kill-region' is special; it means that the previous command
11199 was a kill command. */);
11201 DEFVAR_KBOARD ("real-last-command", Vreal_last_command,
11202 doc: /* Same as `last-command', but never altered by Lisp code. */);
11204 DEFVAR_LISP ("this-command", &Vthis_command,
11205 doc: /* The command now being executed.
11206 The command can set this variable; whatever is put here
11207 will be in `last-command' during the following command. */);
11208 Vthis_command = Qnil;
11210 DEFVAR_LISP ("this-original-command", &Vthis_original_command,
11211 doc: /* The command bound to the current key sequence before remapping.
11212 It equals `this-command' if the original command was not remapped through
11213 any of the active keymaps. Otherwise, the value of `this-command' is the
11214 result of looking up the original command in the active keymaps. */);
11215 Vthis_original_command = Qnil;
11217 DEFVAR_INT ("auto-save-interval", &auto_save_interval,
11218 doc: /* *Number of input events between auto-saves.
11219 Zero means disable autosaving due to number of characters typed. */);
11220 auto_save_interval = 300;
11222 DEFVAR_LISP ("auto-save-timeout", &Vauto_save_timeout,
11223 doc: /* *Number of seconds idle time before auto-save.
11224 Zero or nil means disable auto-saving due to idleness.
11225 After auto-saving due to this many seconds of idle time,
11226 Emacs also does a garbage collection if that seems to be warranted. */);
11227 XSETFASTINT (Vauto_save_timeout, 30);
11229 DEFVAR_LISP ("echo-keystrokes", &Vecho_keystrokes,
11230 doc: /* *Nonzero means echo unfinished commands after this many seconds of pause.
11231 The value may be integer or floating point. */);
11232 Vecho_keystrokes = make_number (1);
11234 DEFVAR_INT ("polling-period", &polling_period,
11235 doc: /* *Interval between polling for input during Lisp execution.
11236 The reason for polling is to make C-g work to stop a running program.
11237 Polling is needed only when using X windows and SIGIO does not work.
11238 Polling is automatically disabled in all other cases. */);
11239 polling_period = 2;
11241 DEFVAR_LISP ("double-click-time", &Vdouble_click_time,
11242 doc: /* *Maximum time between mouse clicks to make a double-click.
11243 Measured in milliseconds. nil means disable double-click recognition;
11244 t means double-clicks have no time limit and are detected
11245 by position only. */);
11246 Vdouble_click_time = make_number (500);
11248 DEFVAR_INT ("double-click-fuzz", &double_click_fuzz,
11249 doc: /* *Maximum mouse movement between clicks to make a double-click.
11250 On window-system frames, value is the number of pixels the mouse may have
11251 moved horizontally or vertically between two clicks to make a double-click.
11252 On non window-system frames, value is interpreted in units of 1/8 characters
11253 instead of pixels.
11255 This variable is also the threshold for motion of the mouse
11256 to count as a drag. */);
11257 double_click_fuzz = 3;
11259 DEFVAR_BOOL ("inhibit-local-menu-bar-menus", &inhibit_local_menu_bar_menus,
11260 doc: /* *Non-nil means inhibit local map menu bar menus. */);
11261 inhibit_local_menu_bar_menus = 0;
11263 DEFVAR_INT ("num-input-keys", &num_input_keys,
11264 doc: /* Number of complete key sequences read as input so far.
11265 This includes key sequences read from keyboard macros.
11266 The number is effectively the number of interactive command invocations. */);
11267 num_input_keys = 0;
11269 DEFVAR_INT ("num-nonmacro-input-events", &num_nonmacro_input_events,
11270 doc: /* Number of input events read from the keyboard so far.
11271 This does not include events generated by keyboard macros. */);
11272 num_nonmacro_input_events = 0;
11274 DEFVAR_LISP ("last-event-frame", &Vlast_event_frame,
11275 doc: /* The frame in which the most recently read event occurred.
11276 If the last event came from a keyboard macro, this is set to `macro'. */);
11277 Vlast_event_frame = Qnil;
11279 /* This variable is set up in sysdep.c. */
11280 DEFVAR_LISP ("tty-erase-char", &Vtty_erase_char,
11281 doc: /* The ERASE character as set by the user with stty. */);
11283 DEFVAR_LISP ("help-char", &Vhelp_char,
11284 doc: /* Character to recognize as meaning Help.
11285 When it is read, do `(eval help-form)', and display result if it's a string.
11286 If the value of `help-form' is nil, this char can be read normally. */);
11287 XSETINT (Vhelp_char, Ctl ('H'));
11289 DEFVAR_LISP ("help-event-list", &Vhelp_event_list,
11290 doc: /* List of input events to recognize as meaning Help.
11291 These work just like the value of `help-char' (see that). */);
11292 Vhelp_event_list = Qnil;
11294 DEFVAR_LISP ("help-form", &Vhelp_form,
11295 doc: /* Form to execute when character `help-char' is read.
11296 If the form returns a string, that string is displayed.
11297 If `help-form' is nil, the help char is not recognized. */);
11298 Vhelp_form = Qnil;
11300 DEFVAR_LISP ("prefix-help-command", &Vprefix_help_command,
11301 doc: /* Command to run when `help-char' character follows a prefix key.
11302 This command is used only when there is no actual binding
11303 for that character after that prefix key. */);
11304 Vprefix_help_command = Qnil;
11306 DEFVAR_LISP ("top-level", &Vtop_level,
11307 doc: /* Form to evaluate when Emacs starts up.
11308 Useful to set before you dump a modified Emacs. */);
11309 Vtop_level = Qnil;
11311 DEFVAR_LISP ("keyboard-translate-table", &Vkeyboard_translate_table,
11312 doc: /* Translate table for keyboard input, or nil.
11313 If non-nil, the value should be a char-table. Each character read
11314 from the keyboard is looked up in this char-table. If the value found
11315 there is non-nil, then it is used instead of the actual input character.
11317 The value can also be a string or vector, but this is considered obsolete.
11318 If it is a string or vector of length N, character codes N and up are left
11319 untranslated. In a vector, an element which is nil means "no translation".
11321 This is applied to the characters supplied to input methods, not their
11322 output. See also `translation-table-for-input'. */);
11323 Vkeyboard_translate_table = Qnil;
11325 DEFVAR_BOOL ("cannot-suspend", &cannot_suspend,
11326 doc: /* Non-nil means to always spawn a subshell instead of suspending.
11327 \(Even if the operating system has support for stopping a process.\) */);
11328 cannot_suspend = 0;
11330 DEFVAR_BOOL ("menu-prompting", &menu_prompting,
11331 doc: /* Non-nil means prompt with menus when appropriate.
11332 This is done when reading from a keymap that has a prompt string,
11333 for elements that have prompt strings.
11334 The menu is displayed on the screen
11335 if X menus were enabled at configuration
11336 time and the previous event was a mouse click prefix key.
11337 Otherwise, menu prompting uses the echo area. */);
11338 menu_prompting = 1;
11340 DEFVAR_LISP ("menu-prompt-more-char", &menu_prompt_more_char,
11341 doc: /* Character to see next line of menu prompt.
11342 Type this character while in a menu prompt to rotate around the lines of it. */);
11343 XSETINT (menu_prompt_more_char, ' ');
11345 DEFVAR_INT ("extra-keyboard-modifiers", &extra_keyboard_modifiers,
11346 doc: /* A mask of additional modifier keys to use with every keyboard character.
11347 Emacs applies the modifiers of the character stored here to each keyboard
11348 character it reads. For example, after evaluating the expression
11349 (setq extra-keyboard-modifiers ?\\C-x)
11350 all input characters will have the control modifier applied to them.
11352 Note that the character ?\\C-@, equivalent to the integer zero, does
11353 not count as a control character; rather, it counts as a character
11354 with no modifiers; thus, setting `extra-keyboard-modifiers' to zero
11355 cancels any modification. */);
11356 extra_keyboard_modifiers = 0;
11358 DEFVAR_LISP ("deactivate-mark", &Vdeactivate_mark,
11359 doc: /* If an editing command sets this to t, deactivate the mark afterward.
11360 The command loop sets this to nil before each command,
11361 and tests the value when the command returns.
11362 Buffer modification stores t in this variable. */);
11363 Vdeactivate_mark = Qnil;
11365 DEFVAR_LISP ("command-hook-internal", &Vcommand_hook_internal,
11366 doc: /* Temporary storage of pre-command-hook or post-command-hook. */);
11367 Vcommand_hook_internal = Qnil;
11369 DEFVAR_LISP ("pre-command-hook", &Vpre_command_hook,
11370 doc: /* Normal hook run before each command is executed.
11371 If an unhandled error happens in running this hook,
11372 the hook value is set to nil, since otherwise the error
11373 might happen repeatedly and make Emacs nonfunctional. */);
11374 Vpre_command_hook = Qnil;
11376 DEFVAR_LISP ("post-command-hook", &Vpost_command_hook,
11377 doc: /* Normal hook run after each command is executed.
11378 If an unhandled error happens in running this hook,
11379 the hook value is set to nil, since otherwise the error
11380 might happen repeatedly and make Emacs nonfunctional. */);
11381 Vpost_command_hook = Qnil;
11383 DEFVAR_LISP ("post-command-idle-hook", &Vpost_command_idle_hook,
11384 doc: /* Normal hook run after each command is executed, if idle.
11385 Errors running the hook are caught and ignored. */);
11386 Vpost_command_idle_hook = Qnil;
11388 DEFVAR_INT ("post-command-idle-delay", &post_command_idle_delay,
11389 doc: /* Delay time before running `post-command-idle-hook'.
11390 This is measured in microseconds. */);
11391 post_command_idle_delay = 100000;
11393 #if 0
11394 DEFVAR_LISP ("echo-area-clear-hook", ...,
11395 doc: /* Normal hook run when clearing the echo area. */);
11396 #endif
11397 Qecho_area_clear_hook = intern ("echo-area-clear-hook");
11398 SET_SYMBOL_VALUE (Qecho_area_clear_hook, Qnil);
11400 DEFVAR_LISP ("lucid-menu-bar-dirty-flag", &Vlucid_menu_bar_dirty_flag,
11401 doc: /* Non-nil means menu bar, specified Lucid style, needs to be recomputed. */);
11402 Vlucid_menu_bar_dirty_flag = Qnil;
11404 DEFVAR_LISP ("menu-bar-final-items", &Vmenu_bar_final_items,
11405 doc: /* List of menu bar items to move to the end of the menu bar.
11406 The elements of the list are event types that may have menu bar bindings. */);
11407 Vmenu_bar_final_items = Qnil;
11409 DEFVAR_KBOARD ("overriding-terminal-local-map",
11410 Voverriding_terminal_local_map,
11411 doc: /* Per-terminal keymap that overrides all other local keymaps.
11412 If this variable is non-nil, it is used as a keymap instead of the
11413 buffer's local map, and the minor mode keymaps and text property keymaps.
11414 It also replaces `overriding-local-map'.
11416 This variable is intended to let commands such as `universal-argument'
11417 set up a different keymap for reading the next command. */);
11419 DEFVAR_LISP ("overriding-local-map", &Voverriding_local_map,
11420 doc: /* Keymap that overrides all other local keymaps.
11421 If this variable is non-nil, it is used as a keymap--replacing the
11422 buffer's local map, the minor mode keymaps, and char property keymaps. */);
11423 Voverriding_local_map = Qnil;
11425 DEFVAR_LISP ("overriding-local-map-menu-flag", &Voverriding_local_map_menu_flag,
11426 doc: /* Non-nil means `overriding-local-map' applies to the menu bar.
11427 Otherwise, the menu bar continues to reflect the buffer's local map
11428 and the minor mode maps regardless of `overriding-local-map'. */);
11429 Voverriding_local_map_menu_flag = Qnil;
11431 DEFVAR_LISP ("special-event-map", &Vspecial_event_map,
11432 doc: /* Keymap defining bindings for special events to execute at low level. */);
11433 Vspecial_event_map = Fcons (intern ("keymap"), Qnil);
11435 DEFVAR_LISP ("track-mouse", &do_mouse_tracking,
11436 doc: /* *Non-nil means generate motion events for mouse motion. */);
11438 DEFVAR_KBOARD ("system-key-alist", Vsystem_key_alist,
11439 doc: /* Alist of system-specific X windows key symbols.
11440 Each element should have the form (N . SYMBOL) where N is the
11441 numeric keysym code (sans the \"system-specific\" bit 1<<28)
11442 and SYMBOL is its name. */);
11444 DEFVAR_LISP ("deferred-action-list", &Vdeferred_action_list,
11445 doc: /* List of deferred actions to be performed at a later time.
11446 The precise format isn't relevant here; we just check whether it is nil. */);
11447 Vdeferred_action_list = Qnil;
11449 DEFVAR_LISP ("deferred-action-function", &Vdeferred_action_function,
11450 doc: /* Function to call to handle deferred actions, after each command.
11451 This function is called with no arguments after each command
11452 whenever `deferred-action-list' is non-nil. */);
11453 Vdeferred_action_function = Qnil;
11455 DEFVAR_LISP ("suggest-key-bindings", &Vsuggest_key_bindings,
11456 doc: /* *Non-nil means show the equivalent key-binding when M-x command has one.
11457 The value can be a length of time to show the message for.
11458 If the value is non-nil and not a number, we wait 2 seconds. */);
11459 Vsuggest_key_bindings = Qt;
11461 DEFVAR_LISP ("timer-list", &Vtimer_list,
11462 doc: /* List of active absolute time timers in order of increasing time. */);
11463 Vtimer_list = Qnil;
11465 DEFVAR_LISP ("timer-idle-list", &Vtimer_idle_list,
11466 doc: /* List of active idle-time timers in order of increasing time. */);
11467 Vtimer_idle_list = Qnil;
11469 DEFVAR_LISP ("input-method-function", &Vinput_method_function,
11470 doc: /* If non-nil, the function that implements the current input method.
11471 It's called with one argument, a printing character that was just read.
11472 \(That means a character with code 040...0176.)
11473 Typically this function uses `read-event' to read additional events.
11474 When it does so, it should first bind `input-method-function' to nil
11475 so it will not be called recursively.
11477 The function should return a list of zero or more events
11478 to be used as input. If it wants to put back some events
11479 to be reconsidered, separately, by the input method,
11480 it can add them to the beginning of `unread-command-events'.
11482 The input method function can find in `input-method-previous-method'
11483 the previous echo area message.
11485 The input method function should refer to the variables
11486 `input-method-use-echo-area' and `input-method-exit-on-first-char'
11487 for guidance on what to do. */);
11488 Vinput_method_function = Qnil;
11490 DEFVAR_LISP ("input-method-previous-message",
11491 &Vinput_method_previous_message,
11492 doc: /* When `input-method-function' is called, hold the previous echo area message.
11493 This variable exists because `read-event' clears the echo area
11494 before running the input method. It is nil if there was no message. */);
11495 Vinput_method_previous_message = Qnil;
11497 DEFVAR_LISP ("show-help-function", &Vshow_help_function,
11498 doc: /* If non-nil, the function that implements the display of help.
11499 It's called with one argument, the help string to display. */);
11500 Vshow_help_function = Qnil;
11502 DEFVAR_LISP ("disable-point-adjustment", &Vdisable_point_adjustment,
11503 doc: /* If non-nil, suppress point adjustment after executing a command.
11505 After a command is executed, if point is moved into a region that has
11506 special properties (e.g. composition, display), we adjust point to
11507 the boundary of the region. But, when a command sets this variable to
11508 non-nil, we suppress the point adjustment.
11510 This variable is set to nil before reading a command, and is checked
11511 just after executing the command. */);
11512 Vdisable_point_adjustment = Qnil;
11514 DEFVAR_LISP ("global-disable-point-adjustment",
11515 &Vglobal_disable_point_adjustment,
11516 doc: /* *If non-nil, always suppress point adjustment.
11518 The default value is nil, in which case, point adjustment are
11519 suppressed only after special commands that set
11520 `disable-point-adjustment' (which see) to non-nil. */);
11521 Vglobal_disable_point_adjustment = Qnil;
11523 DEFVAR_BOOL ("update-menu-bindings", &update_menu_bindings,
11524 doc: /* Non-nil means updating menu bindings is allowed.
11525 A value of nil means menu bindings should not be updated.
11526 Used during Emacs' startup. */);
11527 update_menu_bindings = 1;
11529 DEFVAR_LISP ("minibuffer-message-timeout", &Vminibuffer_message_timeout,
11530 doc: /* *How long to display an echo-area message when the minibuffer is active.
11531 If the value is not a number, such messages don't time out. */);
11532 Vminibuffer_message_timeout = make_number (2);
11534 DEFVAR_LISP ("throw-on-input", &Vthrow_on_input,
11535 doc: /* If non-nil, any keyboard input throws to this symbol.
11536 The value of that variable is passed to `quit-flag' and later causes a
11537 peculiar kind of quitting. */);
11538 Vthrow_on_input = Qnil;
11541 void
11542 keys_of_keyboard ()
11544 initial_define_key (global_map, Ctl ('Z'), "suspend-emacs");
11545 initial_define_key (control_x_map, Ctl ('Z'), "suspend-emacs");
11546 initial_define_key (meta_map, Ctl ('C'), "exit-recursive-edit");
11547 initial_define_key (global_map, Ctl (']'), "abort-recursive-edit");
11548 initial_define_key (meta_map, 'x', "execute-extended-command");
11550 initial_define_lispy_key (Vspecial_event_map, "delete-frame",
11551 "handle-delete-frame");
11552 initial_define_lispy_key (Vspecial_event_map, "iconify-frame",
11553 "ignore-event");
11554 initial_define_lispy_key (Vspecial_event_map, "make-frame-visible",
11555 "ignore-event");
11556 /* Handling it at such a low-level causes read_key_sequence to get
11557 * confused because it doesn't realize that the current_buffer was
11558 * changed by read_char.
11560 * initial_define_lispy_key (Vspecial_event_map, "select-window",
11561 * "handle-select-window"); */
11562 initial_define_lispy_key (Vspecial_event_map, "save-session",
11563 "handle-save-session");
11566 /* Mark the pointers in the kboard objects.
11567 Called by the Fgarbage_collector. */
11568 void
11569 mark_kboards ()
11571 KBOARD *kb;
11572 Lisp_Object *p;
11573 for (kb = all_kboards; kb; kb = kb->next_kboard)
11575 if (kb->kbd_macro_buffer)
11576 for (p = kb->kbd_macro_buffer; p < kb->kbd_macro_ptr; p++)
11577 mark_object (*p);
11578 mark_object (kb->Voverriding_terminal_local_map);
11579 mark_object (kb->Vlast_command);
11580 mark_object (kb->Vreal_last_command);
11581 mark_object (kb->Vprefix_arg);
11582 mark_object (kb->Vlast_prefix_arg);
11583 mark_object (kb->kbd_queue);
11584 mark_object (kb->defining_kbd_macro);
11585 mark_object (kb->Vlast_kbd_macro);
11586 mark_object (kb->Vsystem_key_alist);
11587 mark_object (kb->system_key_syms);
11588 mark_object (kb->Vdefault_minibuffer_frame);
11589 mark_object (kb->echo_string);
11592 struct input_event *event;
11593 for (event = kbd_fetch_ptr; event != kbd_store_ptr; event++)
11595 if (event == kbd_buffer + KBD_BUFFER_SIZE)
11596 event = kbd_buffer;
11597 if (event->kind != SELECTION_REQUEST_EVENT
11598 && event->kind != SELECTION_CLEAR_EVENT)
11600 mark_object (event->x);
11601 mark_object (event->y);
11603 mark_object (event->frame_or_window);
11604 mark_object (event->arg);
11609 /* arch-tag: 774e34d7-6d31-42f3-8397-e079a4e4c9ca
11610 (do not change this comment) */