1 /* Keyboard and mouse input; editor command loop.
2 Copyright (C) 1985, 1986, 1987, 1988, 1989, 1993, 1994, 1995,
3 1996, 1997, 1999, 2000, 2001, 2002, 2003, 2004,
4 2005, 2006, 2007 Free Software Foundation, Inc.
6 This file is part of GNU Emacs.
8 GNU Emacs is free software; you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
10 the Free Software Foundation; either version 3, or (at your option)
13 GNU Emacs is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 GNU General Public License for more details.
18 You should have received a copy of the GNU General Public License
19 along with GNU Emacs; see the file COPYING. If not, write to
20 the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
21 Boston, MA 02110-1301, USA. */
29 #include "termhooks.h"
38 #include "dispextern.h"
40 #include "intervals.h"
42 #include "blockinput.h"
49 #ifdef HAVE_GTK_AND_PTHREAD
57 #include <sys/ioctl.h>
59 #endif /* not MSDOS */
61 #include "syssignal.h"
64 #include <sys/types.h>
73 /* This is to get the definitions of the XK_ symbols. */
80 #endif /* HAVE_NTGUI */
90 /* Variables for blockinput.h: */
92 /* Non-zero if interrupt input is blocked right now. */
93 volatile int interrupt_input_blocked
;
95 /* Nonzero means an input interrupt has arrived
96 during the current critical section. */
97 int interrupt_input_pending
;
100 /* File descriptor to use for input. */
103 #ifdef HAVE_WINDOW_SYSTEM
104 /* Make all keyboard buffers much bigger when using X windows. */
106 /* But not too big (local data > 32K error) if on Mac OS Classic. */
107 #define KBD_BUFFER_SIZE 512
109 #define KBD_BUFFER_SIZE 4096
111 #else /* No X-windows, character input */
112 #define KBD_BUFFER_SIZE 4096
113 #endif /* No X-windows */
116 #define abs(x) ((x) >= 0 ? (x) : -(x))
118 /* Following definition copied from eval.c */
122 struct backtrace
*next
;
123 Lisp_Object
*function
;
124 Lisp_Object
*args
; /* Points to vector of args. */
125 int nargs
; /* length of vector. If nargs is UNEVALLED,
126 args points to slot holding list of
129 /* Nonzero means call value of debugger when done with this operation. */
134 KBOARD
*initial_kboard
;
135 KBOARD
*current_kboard
;
139 KBOARD the_only_kboard
;
142 /* Non-nil disable property on a command means
143 do not execute it; call disabled-command-function's value instead. */
144 Lisp_Object Qdisabled
, Qdisabled_command_function
;
146 #define NUM_RECENT_KEYS (300)
147 int recent_keys_index
; /* Index for storing next element into recent_keys */
148 int total_keys
; /* Total number of elements stored into recent_keys */
149 Lisp_Object recent_keys
; /* Vector holds the last NUM_RECENT_KEYS keystrokes */
151 /* Vector holding the key sequence that invoked the current command.
152 It is reused for each command, and it may be longer than the current
153 sequence; this_command_key_count indicates how many elements
154 actually mean something.
155 It's easier to staticpro a single Lisp_Object than an array. */
156 Lisp_Object this_command_keys
;
157 int this_command_key_count
;
159 /* 1 after calling Freset_this_command_lengths.
161 int this_command_key_count_reset
;
163 /* This vector is used as a buffer to record the events that were actually read
164 by read_key_sequence. */
165 Lisp_Object raw_keybuf
;
166 int raw_keybuf_count
;
168 #define GROW_RAW_KEYBUF \
169 if (raw_keybuf_count == XVECTOR (raw_keybuf)->size) \
171 int newsize = 2 * XVECTOR (raw_keybuf)->size; \
173 new = Fmake_vector (make_number (newsize), Qnil); \
174 bcopy (XVECTOR (raw_keybuf)->contents, XVECTOR (new)->contents, \
175 raw_keybuf_count * sizeof (Lisp_Object)); \
179 /* Number of elements of this_command_keys
180 that precede this key sequence. */
181 int this_single_command_key_start
;
183 /* Record values of this_command_key_count and echo_length ()
184 before this command was read. */
185 static int before_command_key_count
;
186 static int before_command_echo_length
;
188 extern int minbuf_level
;
190 extern int message_enable_multibyte
;
192 extern struct backtrace
*backtrace_list
;
194 /* If non-nil, the function that implements the display of help.
195 It's called with one argument, the help string to display. */
197 Lisp_Object Vshow_help_function
;
199 /* If a string, the message displayed before displaying a help-echo
202 Lisp_Object Vpre_help_message
;
204 /* Nonzero means do menu prompting. */
206 static int menu_prompting
;
208 /* Character to see next line of menu prompt. */
210 static Lisp_Object menu_prompt_more_char
;
212 /* For longjmp to where kbd input is being done. */
214 static jmp_buf getcjmp
;
216 /* True while doing kbd input. */
217 int waiting_for_input
;
219 /* True while displaying for echoing. Delays C-g throwing. */
223 /* Non-null means we can start echoing at the next input pause even
224 though there is something in the echo area. */
226 static struct kboard
*ok_to_echo_at_next_pause
;
228 /* The kboard last echoing, or null for none. Reset to 0 in
229 cancel_echoing. If non-null, and a current echo area message
230 exists, and echo_message_buffer is eq to the current message
231 buffer, we know that the message comes from echo_kboard. */
233 struct kboard
*echo_kboard
;
235 /* The buffer used for echoing. Set in echo_now, reset in
238 Lisp_Object echo_message_buffer
;
240 /* Nonzero means disregard local maps for the menu bar. */
241 static int inhibit_local_menu_bar_menus
;
243 /* Nonzero means C-g should cause immediate error-signal. */
246 /* The user's hook function for outputting an error message. */
247 Lisp_Object Vcommand_error_function
;
249 /* The user's ERASE setting. */
250 Lisp_Object Vtty_erase_char
;
252 /* Character to recognize as the help char. */
253 Lisp_Object Vhelp_char
;
255 /* List of other event types to recognize as meaning "help". */
256 Lisp_Object Vhelp_event_list
;
258 /* Form to execute when help char is typed. */
259 Lisp_Object Vhelp_form
;
261 /* Command to run when the help character follows a prefix key. */
262 Lisp_Object Vprefix_help_command
;
264 /* List of items that should move to the end of the menu bar. */
265 Lisp_Object Vmenu_bar_final_items
;
267 /* Non-nil means show the equivalent key-binding for
268 any M-x command that has one.
269 The value can be a length of time to show the message for.
270 If the value is non-nil and not a number, we wait 2 seconds. */
271 Lisp_Object Vsuggest_key_bindings
;
273 /* How long to display an echo-area message when the minibuffer is active.
274 If the value is not a number, such messages don't time out. */
275 Lisp_Object Vminibuffer_message_timeout
;
277 /* Character that causes a quit. Normally C-g.
279 If we are running on an ordinary terminal, this must be an ordinary
280 ASCII char, since we want to make it our interrupt character.
282 If we are not running on an ordinary terminal, it still needs to be
283 an ordinary ASCII char. This character needs to be recognized in
284 the input interrupt handler. At this point, the keystroke is
285 represented as a struct input_event, while the desired quit
286 character is specified as a lispy event. The mapping from struct
287 input_events to lispy events cannot run in an interrupt handler,
288 and the reverse mapping is difficult for anything but ASCII
291 FOR THESE ELABORATE AND UNSATISFYING REASONS, quit_char must be an
295 extern Lisp_Object current_global_map
;
296 extern int minibuf_level
;
298 /* If non-nil, this is a map that overrides all other local maps. */
299 Lisp_Object Voverriding_local_map
;
301 /* If non-nil, Voverriding_local_map applies to the menu bar. */
302 Lisp_Object Voverriding_local_map_menu_flag
;
304 /* Keymap that defines special misc events that should
305 be processed immediately at a low level. */
306 Lisp_Object Vspecial_event_map
;
308 /* Current depth in recursive edits. */
309 int command_loop_level
;
311 /* Total number of times command_loop has read a key sequence. */
312 EMACS_INT num_input_keys
;
314 /* Last input character read as a command. */
315 Lisp_Object last_command_char
;
317 /* Last input character read as a command, not counting menus
318 reached by the mouse. */
319 Lisp_Object last_nonmenu_event
;
321 /* Last input character read for any purpose. */
322 Lisp_Object last_input_char
;
324 /* If not Qnil, a list of objects to be read as subsequent command input. */
325 Lisp_Object Vunread_command_events
;
327 /* If not Qnil, a list of objects to be read as subsequent command input
328 including input method processing. */
329 Lisp_Object Vunread_input_method_events
;
331 /* If not Qnil, a list of objects to be read as subsequent command input
332 but NOT including input method processing. */
333 Lisp_Object Vunread_post_input_method_events
;
335 /* If not -1, an event to be read as subsequent command input. */
336 EMACS_INT unread_command_char
;
338 /* If not Qnil, this is a switch-frame event which we decided to put
339 off until the end of a key sequence. This should be read as the
340 next command input, after any unread_command_events.
342 read_key_sequence uses this to delay switch-frame events until the
343 end of the key sequence; Fread_char uses it to put off switch-frame
344 events until a non-ASCII event is acceptable as input. */
345 Lisp_Object unread_switch_frame
;
347 /* A mask of extra modifier bits to put into every keyboard char. */
348 EMACS_INT extra_keyboard_modifiers
;
350 /* Char to use as prefix when a meta character is typed in.
351 This is bound on entry to minibuffer in case ESC is changed there. */
353 Lisp_Object meta_prefix_char
;
355 /* Last size recorded for a current buffer which is not a minibuffer. */
356 static int last_non_minibuf_size
;
358 /* Number of idle seconds before an auto-save and garbage collection. */
359 static Lisp_Object Vauto_save_timeout
;
361 /* Total number of times read_char has returned. */
362 int num_input_events
;
364 /* Total number of times read_char has returned, outside of macros. */
365 EMACS_INT num_nonmacro_input_events
;
367 /* Auto-save automatically when this many characters have been typed
368 since the last time. */
370 static EMACS_INT auto_save_interval
;
372 /* Value of num_nonmacro_input_events as of last auto save. */
376 /* The command being executed by the command loop.
377 Commands may set this, and the value set will be copied into
378 current_kboard->Vlast_command instead of the actual command. */
379 Lisp_Object Vthis_command
;
381 /* This is like Vthis_command, except that commands never set it. */
382 Lisp_Object real_this_command
;
384 /* If the lookup of the command returns a binding, the original
385 command is stored in this-original-command. It is nil otherwise. */
386 Lisp_Object Vthis_original_command
;
388 /* The value of point when the last command was started. */
389 int last_point_position
;
391 /* The buffer that was current when the last command was started. */
392 Lisp_Object last_point_position_buffer
;
394 /* The window that was selected when the last command was started. */
395 Lisp_Object last_point_position_window
;
397 /* The frame in which the last input event occurred, or Qmacro if the
398 last event came from a macro. We use this to determine when to
399 generate switch-frame events. This may be cleared by functions
400 like Fselect_frame, to make sure that a switch-frame event is
401 generated by the next character. */
402 Lisp_Object internal_last_event_frame
;
404 /* A user-visible version of the above, intended to allow users to
405 figure out where the last event came from, if the event doesn't
406 carry that information itself (i.e. if it was a character). */
407 Lisp_Object Vlast_event_frame
;
409 /* The timestamp of the last input event we received from the X server.
410 X Windows wants this for selection ownership. */
411 unsigned long last_event_timestamp
;
413 Lisp_Object Qself_insert_command
;
414 Lisp_Object Qforward_char
;
415 Lisp_Object Qbackward_char
;
416 Lisp_Object Qundefined
;
417 Lisp_Object Qtimer_event_handler
;
419 /* read_key_sequence stores here the command definition of the
420 key sequence that it reads. */
421 Lisp_Object read_key_sequence_cmd
;
423 /* Echo unfinished commands after this many seconds of pause. */
424 Lisp_Object Vecho_keystrokes
;
426 /* Form to evaluate (if non-nil) when Emacs is started. */
427 Lisp_Object Vtop_level
;
429 /* User-supplied table to translate input characters. */
430 Lisp_Object Vkeyboard_translate_table
;
432 /* Keymap mapping ASCII function key sequences onto their preferred forms. */
433 extern Lisp_Object Vfunction_key_map
;
435 /* Another keymap that maps key sequences into key sequences.
436 This one takes precedence over ordinary definitions. */
437 extern Lisp_Object Vkey_translation_map
;
439 /* If non-nil, this implements the current input method. */
440 Lisp_Object Vinput_method_function
;
441 Lisp_Object Qinput_method_function
;
443 /* When we call Vinput_method_function,
444 this holds the echo area message that was just erased. */
445 Lisp_Object Vinput_method_previous_message
;
447 /* Non-nil means deactivate the mark at end of this command. */
448 Lisp_Object Vdeactivate_mark
;
450 /* Menu bar specified in Lucid Emacs fashion. */
452 Lisp_Object Vlucid_menu_bar_dirty_flag
;
453 Lisp_Object Qrecompute_lucid_menubar
, Qactivate_menubar_hook
;
455 Lisp_Object Qecho_area_clear_hook
;
457 /* Hooks to run before and after each command. */
458 Lisp_Object Qpre_command_hook
, Vpre_command_hook
;
459 Lisp_Object Qpost_command_hook
, Vpost_command_hook
;
460 Lisp_Object Qcommand_hook_internal
, Vcommand_hook_internal
;
462 /* List of deferred actions to be performed at a later time.
463 The precise format isn't relevant here; we just check whether it is nil. */
464 Lisp_Object Vdeferred_action_list
;
466 /* Function to call to handle deferred actions, when there are any. */
467 Lisp_Object Vdeferred_action_function
;
468 Lisp_Object Qdeferred_action_function
;
470 Lisp_Object Qinput_method_exit_on_first_char
;
471 Lisp_Object Qinput_method_use_echo_area
;
473 /* File in which we write all commands we read. */
476 /* Nonzero if input is available. */
479 /* 1 if should obey 0200 bit in input chars as "Meta", 2 if should
480 keep 0200 bit in input chars. 0 to ignore the 0200 bit. */
484 extern char *pending_malloc_warning
;
486 /* Circular buffer for pre-read keyboard input. */
488 static struct input_event kbd_buffer
[KBD_BUFFER_SIZE
];
490 /* Pointer to next available character in kbd_buffer.
491 If kbd_fetch_ptr == kbd_store_ptr, the buffer is empty.
492 This may be kbd_buffer + KBD_BUFFER_SIZE, meaning that the
493 next available char is in kbd_buffer[0]. */
494 static struct input_event
*kbd_fetch_ptr
;
496 /* Pointer to next place to store character in kbd_buffer. This
497 may be kbd_buffer + KBD_BUFFER_SIZE, meaning that the next
498 character should go in kbd_buffer[0]. */
499 static struct input_event
* volatile kbd_store_ptr
;
501 /* The above pair of variables forms a "queue empty" flag. When we
502 enqueue a non-hook event, we increment kbd_store_ptr. When we
503 dequeue a non-hook event, we increment kbd_fetch_ptr. We say that
504 there is input available if the two pointers are not equal.
506 Why not just have a flag set and cleared by the enqueuing and
507 dequeuing functions? Such a flag could be screwed up by interrupts
508 at inopportune times. */
510 /* If this flag is non-nil, we check mouse_moved to see when the
511 mouse moves, and motion events will appear in the input stream.
512 Otherwise, mouse motion is ignored. */
513 Lisp_Object do_mouse_tracking
;
515 /* Symbols to head events. */
516 Lisp_Object Qmouse_movement
;
517 Lisp_Object Qscroll_bar_movement
;
518 Lisp_Object Qswitch_frame
;
519 Lisp_Object Qdelete_frame
;
520 Lisp_Object Qiconify_frame
;
521 Lisp_Object Qmake_frame_visible
;
522 Lisp_Object Qselect_window
;
523 Lisp_Object Qhelp_echo
;
526 Lisp_Object Qmouse_fixup_help_message
;
529 /* Symbols to denote kinds of events. */
530 Lisp_Object Qfunction_key
;
531 Lisp_Object Qmouse_click
;
532 #if defined (WINDOWSNT) || defined (MAC_OS)
533 Lisp_Object Qlanguage_change
;
535 Lisp_Object Qdrag_n_drop
;
536 Lisp_Object Qsave_session
;
538 Lisp_Object Qmac_apple_event
;
541 /* Lisp_Object Qmouse_movement; - also an event header */
543 /* Properties of event headers. */
544 Lisp_Object Qevent_kind
;
545 Lisp_Object Qevent_symbol_elements
;
547 /* menu item parts */
548 Lisp_Object Qmenu_alias
;
549 Lisp_Object Qmenu_enable
;
550 Lisp_Object QCenable
, QCvisible
, QChelp
, QCfilter
, QCkeys
, QCkey_sequence
;
551 Lisp_Object QCbutton
, QCtoggle
, QCradio
;
552 extern Lisp_Object Vdefine_key_rebound_commands
;
553 extern Lisp_Object Qmenu_item
;
555 /* An event header symbol HEAD may have a property named
556 Qevent_symbol_element_mask, which is of the form (BASE MODIFIERS);
557 BASE is the base, unmodified version of HEAD, and MODIFIERS is the
558 mask of modifiers applied to it. If present, this is used to help
559 speed up parse_modifiers. */
560 Lisp_Object Qevent_symbol_element_mask
;
562 /* An unmodified event header BASE may have a property named
563 Qmodifier_cache, which is an alist mapping modifier masks onto
564 modified versions of BASE. If present, this helps speed up
566 Lisp_Object Qmodifier_cache
;
568 /* Symbols to use for parts of windows. */
569 Lisp_Object Qmode_line
;
570 Lisp_Object Qvertical_line
;
571 Lisp_Object Qvertical_scroll_bar
;
572 Lisp_Object Qmenu_bar
;
573 extern Lisp_Object Qleft_margin
, Qright_margin
;
574 extern Lisp_Object Qleft_fringe
, Qright_fringe
;
575 extern Lisp_Object QCmap
;
577 Lisp_Object
recursive_edit_unwind (), command_loop ();
578 Lisp_Object
Fthis_command_keys ();
579 Lisp_Object Qextended_command_history
;
580 EMACS_TIME
timer_check ();
582 extern Lisp_Object Vhistory_length
, Vtranslation_table_for_input
;
584 extern char *x_get_keysym_name ();
586 static void record_menu_key ();
587 static int echo_length ();
589 Lisp_Object Qpolling_period
;
591 /* List of absolute timers. Appears in order of next scheduled event. */
592 Lisp_Object Vtimer_list
;
594 /* List of idle time timers. Appears in order of next scheduled event. */
595 Lisp_Object Vtimer_idle_list
;
597 /* Incremented whenever a timer is run. */
600 extern Lisp_Object Vprint_level
, Vprint_length
;
602 /* Address (if not 0) of EMACS_TIME to zero out if a SIGIO interrupt
604 EMACS_TIME
*input_available_clear_time
;
606 /* Nonzero means use SIGIO interrupts; zero means use CBREAK mode.
607 Default is 1 if INTERRUPT_INPUT is defined. */
610 /* Nonzero while interrupts are temporarily deferred during redisplay. */
611 int interrupts_deferred
;
613 /* Nonzero means use ^S/^Q for flow control. */
616 /* Allow m- file to inhibit use of FIONREAD. */
617 #ifdef BROKEN_FIONREAD
621 /* We are unable to use interrupts if FIONREAD is not available,
622 so flush SIGIO so we won't try. */
623 #if !defined (FIONREAD)
629 /* If we support a window system, turn on the code to poll periodically
630 to detect C-g. It isn't actually used when doing interrupt input. */
631 #if defined(HAVE_WINDOW_SYSTEM) && !defined(USE_ASYNC_EVENTS)
632 #define POLL_FOR_INPUT
635 /* After a command is executed, if point is moved into a region that
636 has specific properties (e.g. composition, display), we adjust
637 point to the boundary of the region. But, if a command sets this
638 variable to non-nil, we suppress this point adjustment. This
639 variable is set to nil before reading a command. */
641 Lisp_Object Vdisable_point_adjustment
;
643 /* If non-nil, always disable point adjustment. */
645 Lisp_Object Vglobal_disable_point_adjustment
;
647 /* The time when Emacs started being idle. */
649 static EMACS_TIME timer_idleness_start_time
;
651 /* After Emacs stops being idle, this saves the last value
652 of timer_idleness_start_time from when it was idle. */
654 static EMACS_TIME timer_last_idleness_start_time
;
656 /* If non-nil, events produced by disabled menu items and tool-bar
657 buttons are not ignored. Help functions bind this to allow help on
658 those items and buttons. */
659 Lisp_Object Venable_disabled_menus_and_buttons
;
662 /* Global variable declarations. */
664 /* Flags for readable_events. */
665 #define READABLE_EVENTS_DO_TIMERS_NOW (1 << 0)
666 #define READABLE_EVENTS_FILTER_EVENTS (1 << 1)
667 #define READABLE_EVENTS_IGNORE_SQUEEZABLES (1 << 2)
669 /* Function for init_keyboard to call with no args (if nonzero). */
670 void (*keyboard_init_hook
) ();
672 static int read_avail_input
P_ ((int));
673 static void get_input_pending
P_ ((int *, int));
674 static int readable_events
P_ ((int));
675 static Lisp_Object read_char_x_menu_prompt
P_ ((int, Lisp_Object
*,
676 Lisp_Object
, int *));
677 static Lisp_Object
read_char_x_menu_prompt ();
678 static Lisp_Object read_char_minibuf_menu_prompt
P_ ((int, int,
680 static Lisp_Object make_lispy_event
P_ ((struct input_event
*));
682 static Lisp_Object make_lispy_movement
P_ ((struct frame
*, Lisp_Object
,
683 enum scroll_bar_part
,
684 Lisp_Object
, Lisp_Object
,
687 static Lisp_Object modify_event_symbol
P_ ((int, unsigned, Lisp_Object
,
688 Lisp_Object
, char **,
689 Lisp_Object
*, unsigned));
690 static Lisp_Object make_lispy_switch_frame
P_ ((Lisp_Object
));
691 static int parse_solitary_modifier
P_ ((Lisp_Object
));
692 static int parse_solitary_modifier ();
693 static void save_getcjmp
P_ ((jmp_buf));
694 static void save_getcjmp ();
695 static void restore_getcjmp
P_ ((jmp_buf));
696 static Lisp_Object apply_modifiers
P_ ((int, Lisp_Object
));
697 static void clear_event
P_ ((struct input_event
*));
698 static void any_kboard_state
P_ ((void));
699 static SIGTYPE interrupt_signal
P_ ((int signalnum
));
700 static void timer_start_idle
P_ ((void));
701 static void timer_stop_idle
P_ ((void));
702 static void timer_resume_idle
P_ ((void));
703 static SIGTYPE handle_user_signal
P_ ((int));
704 static char *find_user_signal_name
P_ ((int));
705 static int store_user_signal_events
P_ ((void));
707 /* Nonzero means don't try to suspend even if the operating system seems
709 static int cannot_suspend
;
711 extern Lisp_Object Qidentity
, Qonly
;
713 /* Install the string STR as the beginning of the string of echoing,
714 so that it serves as a prompt for the next character.
715 Also start echoing. */
721 current_kboard
->echo_string
= str
;
722 current_kboard
->echo_after_prompt
= SCHARS (str
);
726 /* Add C to the echo string, if echoing is going on.
727 C can be a character, which is printed prettily ("M-C-x" and all that
728 jazz), or a symbol, whose name is printed. */
734 if (current_kboard
->immediate_echo
)
736 int size
= KEY_DESCRIPTION_SIZE
+ 100;
737 char *buffer
= (char *) alloca (size
);
739 Lisp_Object echo_string
;
741 echo_string
= current_kboard
->echo_string
;
743 /* If someone has passed us a composite event, use its head symbol. */
748 ptr
= push_key_description (XINT (c
), ptr
, 1);
750 else if (SYMBOLP (c
))
752 Lisp_Object name
= SYMBOL_NAME (c
);
753 int nbytes
= SBYTES (name
);
755 if (size
- (ptr
- buffer
) < nbytes
)
757 int offset
= ptr
- buffer
;
758 size
= max (2 * size
, size
+ nbytes
);
759 buffer
= (char *) alloca (size
);
760 ptr
= buffer
+ offset
;
763 ptr
+= copy_text (SDATA (name
), ptr
, nbytes
,
764 STRING_MULTIBYTE (name
), 1);
767 if ((NILP (echo_string
) || SCHARS (echo_string
) == 0)
770 const char *text
= " (Type ? for further options)";
771 int len
= strlen (text
);
773 if (size
- (ptr
- buffer
) < len
)
775 int offset
= ptr
- buffer
;
777 buffer
= (char *) alloca (size
);
778 ptr
= buffer
+ offset
;
781 bcopy (text
, ptr
, len
);
785 /* Replace a dash from echo_dash with a space, otherwise
786 add a space at the end as a separator between keys. */
787 if (STRINGP (echo_string
)
788 && SCHARS (echo_string
) > 1)
790 Lisp_Object last_char
, prev_char
, idx
;
792 idx
= make_number (SCHARS (echo_string
) - 2);
793 prev_char
= Faref (echo_string
, idx
);
795 idx
= make_number (SCHARS (echo_string
) - 1);
796 last_char
= Faref (echo_string
, idx
);
798 /* We test PREV_CHAR to make sure this isn't the echoing
800 if (XINT (last_char
) == '-' && XINT (prev_char
) != ' ')
801 Faset (echo_string
, idx
, make_number (' '));
803 echo_string
= concat2 (echo_string
, build_string (" "));
805 else if (STRINGP (echo_string
))
806 echo_string
= concat2 (echo_string
, build_string (" "));
808 current_kboard
->echo_string
809 = concat2 (echo_string
, make_string (buffer
, ptr
- buffer
));
815 /* Temporarily add a dash to the end of the echo string if it's not
816 empty, so that it serves as a mini-prompt for the very next character. */
821 /* Do nothing if not echoing at all. */
822 if (NILP (current_kboard
->echo_string
))
825 if (!current_kboard
->immediate_echo
826 && SCHARS (current_kboard
->echo_string
) == 0)
829 /* Do nothing if we just printed a prompt. */
830 if (current_kboard
->echo_after_prompt
831 == SCHARS (current_kboard
->echo_string
))
834 /* Do nothing if we have already put a dash at the end. */
835 if (SCHARS (current_kboard
->echo_string
) > 1)
837 Lisp_Object last_char
, prev_char
, idx
;
839 idx
= make_number (SCHARS (current_kboard
->echo_string
) - 2);
840 prev_char
= Faref (current_kboard
->echo_string
, idx
);
842 idx
= make_number (SCHARS (current_kboard
->echo_string
) - 1);
843 last_char
= Faref (current_kboard
->echo_string
, idx
);
845 if (XINT (last_char
) == '-' && XINT (prev_char
) != ' ')
849 /* Put a dash at the end of the buffer temporarily,
850 but make it go away when the next character is added. */
851 current_kboard
->echo_string
= concat2 (current_kboard
->echo_string
,
856 /* Display the current echo string, and begin echoing if not already
862 if (!current_kboard
->immediate_echo
)
865 current_kboard
->immediate_echo
= 1;
867 for (i
= 0; i
< this_command_key_count
; i
++)
871 /* Set before_command_echo_length to the value that would
872 have been saved before the start of this subcommand in
873 command_loop_1, if we had already been echoing then. */
874 if (i
== this_single_command_key_start
)
875 before_command_echo_length
= echo_length ();
877 c
= XVECTOR (this_command_keys
)->contents
[i
];
878 if (! (EVENT_HAS_PARAMETERS (c
)
879 && EQ (EVENT_HEAD_KIND (EVENT_HEAD (c
)), Qmouse_movement
)))
883 /* Set before_command_echo_length to the value that would
884 have been saved before the start of this subcommand in
885 command_loop_1, if we had already been echoing then. */
886 if (this_command_key_count
== this_single_command_key_start
)
887 before_command_echo_length
= echo_length ();
889 /* Put a dash at the end to invite the user to type more. */
894 message3_nolog (current_kboard
->echo_string
,
895 SBYTES (current_kboard
->echo_string
),
896 STRING_MULTIBYTE (current_kboard
->echo_string
));
899 /* Record in what buffer we echoed, and from which kboard. */
900 echo_message_buffer
= echo_area_buffer
[0];
901 echo_kboard
= current_kboard
;
903 if (waiting_for_input
&& !NILP (Vquit_flag
))
904 quit_throw_to_read_char ();
907 /* Turn off echoing, for the start of a new command. */
912 current_kboard
->immediate_echo
= 0;
913 current_kboard
->echo_after_prompt
= -1;
914 current_kboard
->echo_string
= Qnil
;
915 ok_to_echo_at_next_pause
= NULL
;
917 echo_message_buffer
= Qnil
;
920 /* Return the length of the current echo string. */
925 return (STRINGP (current_kboard
->echo_string
)
926 ? SCHARS (current_kboard
->echo_string
)
930 /* Truncate the current echo message to its first LEN chars.
931 This and echo_char get used by read_key_sequence when the user
932 switches frames while entering a key sequence. */
935 echo_truncate (nchars
)
938 if (STRINGP (current_kboard
->echo_string
))
939 current_kboard
->echo_string
940 = Fsubstring (current_kboard
->echo_string
,
941 make_number (0), make_number (nchars
));
942 truncate_echo_area (nchars
);
946 /* Functions for manipulating this_command_keys. */
948 add_command_key (key
)
951 #if 0 /* Not needed after we made Freset_this_command_lengths
952 do the job immediately. */
953 /* If reset-this-command-length was called recently, obey it now.
954 See the doc string of that function for an explanation of why. */
955 if (before_command_restore_flag
)
957 this_command_key_count
= before_command_key_count_1
;
958 if (this_command_key_count
< this_single_command_key_start
)
959 this_single_command_key_start
= this_command_key_count
;
960 echo_truncate (before_command_echo_length_1
);
961 before_command_restore_flag
= 0;
965 if (this_command_key_count
>= ASIZE (this_command_keys
))
966 this_command_keys
= larger_vector (this_command_keys
,
967 2 * ASIZE (this_command_keys
),
970 AREF (this_command_keys
, this_command_key_count
) = key
;
971 ++this_command_key_count
;
978 int count
= SPECPDL_INDEX ();
981 if (command_loop_level
> 0)
983 specbind (Qstandard_output
, Qt
);
984 specbind (Qstandard_input
, Qt
);
987 #ifdef HAVE_X_WINDOWS
988 /* The command loop has started an hourglass timer, so we have to
989 cancel it here, otherwise it will fire because the recursive edit
990 can take some time. Do not check for display_hourglass_p here,
991 because it could already be nil. */
995 /* This function may have been called from a debugger called from
996 within redisplay, for instance by Edebugging a function called
997 from fontification-functions. We want to allow redisplay in
998 the debugging session.
1000 The recursive edit is left with a `(throw exit ...)'. The `exit'
1001 tag is not caught anywhere in redisplay, i.e. when we leave the
1002 recursive edit, the original redisplay leading to the recursive
1003 edit will be unwound. The outcome should therefore be safe. */
1004 specbind (Qinhibit_redisplay
, Qnil
);
1007 val
= command_loop ();
1009 Fsignal (Qquit
, Qnil
);
1010 /* Handle throw from read_minibuf when using minibuffer
1011 while it's active but we're in another window. */
1013 xsignal1 (Qerror
, val
);
1015 return unbind_to (count
, Qnil
);
1018 /* When an auto-save happens, record the "time", and don't do again soon. */
1023 last_auto_save
= num_nonmacro_input_events
;
1026 /* Make an auto save happen as soon as possible at command level. */
1029 force_auto_save_soon ()
1031 last_auto_save
= - auto_save_interval
- 1;
1033 record_asynch_buffer_change ();
1036 DEFUN ("recursive-edit", Frecursive_edit
, Srecursive_edit
, 0, 0, "",
1037 doc
: /* Invoke the editor command loop recursively.
1038 To get out of the recursive edit, a command can do `(throw 'exit nil)';
1039 that tells this function to return.
1040 Alternatively, `(throw 'exit t)' makes this function signal an error.
1041 This function is called by the editor initialization to begin editing. */)
1044 int count
= SPECPDL_INDEX ();
1047 /* If we enter while input is blocked, don't lock up here.
1048 This may happen through the debugger during redisplay. */
1049 if (INPUT_BLOCKED_P
)
1052 command_loop_level
++;
1053 update_mode_lines
= 1;
1055 if (command_loop_level
1056 && current_buffer
!= XBUFFER (XWINDOW (selected_window
)->buffer
))
1057 buffer
= Fcurrent_buffer ();
1061 /* If we leave recursive_edit_1 below with a `throw' for instance,
1062 like it is done in the splash screen display, we have to
1063 make sure that we restore single_kboard as command_loop_1
1064 would have done if it were left normally. */
1065 record_unwind_protect (recursive_edit_unwind
,
1066 Fcons (buffer
, single_kboard
? Qt
: Qnil
));
1068 recursive_edit_1 ();
1069 return unbind_to (count
, Qnil
);
1073 recursive_edit_unwind (info
)
1076 if (BUFFERP (XCAR (info
)))
1077 Fset_buffer (XCAR (info
));
1079 if (NILP (XCDR (info
)))
1080 any_kboard_state ();
1082 single_kboard_state ();
1084 command_loop_level
--;
1085 update_mode_lines
= 1;
1094 #if 0 /* Theory: if there's anything in Vunread_command_events,
1095 it will right away be read by read_key_sequence,
1096 and then if we do switch KBOARDS, it will go into the side
1097 queue then. So we don't need to do anything special here -- rms. */
1098 if (CONSP (Vunread_command_events
))
1100 current_kboard
->kbd_queue
1101 = nconc2 (Vunread_command_events
, current_kboard
->kbd_queue
);
1102 current_kboard
->kbd_queue_has_data
= 1;
1104 Vunread_command_events
= Qnil
;
1110 /* Switch to the single-kboard state, making current_kboard
1111 the only KBOARD from which further input is accepted. */
1114 single_kboard_state ()
1121 /* If we're in single_kboard state for kboard KBOARD,
1125 not_single_kboard_state (kboard
)
1129 if (kboard
== current_kboard
)
1134 /* Maintain a stack of kboards, so other parts of Emacs
1135 can switch temporarily to the kboard of a given frame
1136 and then revert to the previous status. */
1141 struct kboard_stack
*next
;
1144 static struct kboard_stack
*kboard_stack
;
1147 push_frame_kboard (f
)
1151 struct kboard_stack
*p
1152 = (struct kboard_stack
*) xmalloc (sizeof (struct kboard_stack
));
1154 p
->next
= kboard_stack
;
1155 p
->kboard
= current_kboard
;
1158 current_kboard
= FRAME_KBOARD (f
);
1166 struct kboard_stack
*p
= kboard_stack
;
1167 current_kboard
= p
->kboard
;
1168 kboard_stack
= p
->next
;
1173 /* Handle errors that are not handled at inner levels
1174 by printing an error message and returning to the editor command loop. */
1180 Lisp_Object old_level
, old_length
;
1181 char macroerror
[50];
1183 #ifdef HAVE_X_WINDOWS
1184 if (display_hourglass_p
)
1185 cancel_hourglass ();
1188 if (!NILP (executing_kbd_macro
))
1190 if (executing_kbd_macro_iterations
== 1)
1191 sprintf (macroerror
, "After 1 kbd macro iteration: ");
1193 sprintf (macroerror
, "After %d kbd macro iterations: ",
1194 executing_kbd_macro_iterations
);
1199 Vstandard_output
= Qt
;
1200 Vstandard_input
= Qt
;
1201 Vexecuting_kbd_macro
= Qnil
;
1202 executing_kbd_macro
= Qnil
;
1203 current_kboard
->Vprefix_arg
= Qnil
;
1204 current_kboard
->Vlast_prefix_arg
= Qnil
;
1207 /* Avoid unquittable loop if data contains a circular list. */
1208 old_level
= Vprint_level
;
1209 old_length
= Vprint_length
;
1210 XSETFASTINT (Vprint_level
, 10);
1211 XSETFASTINT (Vprint_length
, 10);
1212 cmd_error_internal (data
, macroerror
);
1213 Vprint_level
= old_level
;
1214 Vprint_length
= old_length
;
1218 Vinhibit_quit
= Qnil
;
1220 if (command_loop_level
== 0 && minibuf_level
== 0)
1221 any_kboard_state ();
1224 return make_number (0);
1227 /* Take actions on handling an error. DATA is the data that describes
1230 CONTEXT is a C-string containing ASCII characters only which
1231 describes the context in which the error happened. If we need to
1232 generalize CONTEXT to allow multibyte characters, make it a Lisp
1236 cmd_error_internal (data
, context
)
1240 struct frame
*sf
= SELECTED_FRAME ();
1242 /* The immediate context is not interesting for Quits,
1243 since they are asyncronous. */
1244 if (EQ (XCAR (data
), Qquit
))
1245 Vsignaling_function
= Qnil
;
1250 /* Use user's specified output function if any. */
1251 if (!NILP (Vcommand_error_function
))
1252 call3 (Vcommand_error_function
, data
,
1253 build_string (context
? context
: ""),
1254 Vsignaling_function
);
1255 /* If the window system or terminal frame hasn't been initialized
1256 yet, or we're not interactive, write the message to stderr and exit. */
1257 else if (!sf
->glyphs_initialized_p
1258 /* This is the case of the frame dumped with Emacs, when we're
1259 running under a window system. */
1260 || (!NILP (Vwindow_system
)
1261 && !inhibit_window_system
1262 && FRAME_TERMCAP_P (sf
))
1265 print_error_message (data
, Qexternal_debugging_output
,
1266 context
, Vsignaling_function
);
1267 Fterpri (Qexternal_debugging_output
);
1268 Fkill_emacs (make_number (-1));
1272 clear_message (1, 0);
1274 message_log_maybe_newline ();
1277 print_error_message (data
, Qt
, context
, Vsignaling_function
);
1280 Vsignaling_function
= Qnil
;
1283 Lisp_Object
command_loop_1 ();
1284 Lisp_Object
command_loop_2 ();
1285 Lisp_Object
top_level_1 ();
1287 /* Entry to editor-command-loop.
1288 This level has the catches for exiting/returning to editor command loop.
1289 It returns nil to exit recursive edit, t to abort it. */
1294 if (command_loop_level
> 0 || minibuf_level
> 0)
1297 val
= internal_catch (Qexit
, command_loop_2
, Qnil
);
1298 executing_kbd_macro
= Qnil
;
1304 internal_catch (Qtop_level
, top_level_1
, Qnil
);
1305 /* Reset single_kboard in case top-level set it while
1306 evaluating an -f option, or we are stuck there for some
1308 any_kboard_state ();
1309 internal_catch (Qtop_level
, command_loop_2
, Qnil
);
1310 executing_kbd_macro
= Qnil
;
1312 /* End of file in -batch run causes exit here. */
1318 /* Here we catch errors in execution of commands within the
1319 editing loop, and reenter the editing loop.
1320 When there is an error, cmd_error runs and returns a non-nil
1321 value to us. A value of nil means that command_loop_1 itself
1322 returned due to end of file (or end of kbd macro). */
1327 register Lisp_Object val
;
1330 val
= internal_condition_case (command_loop_1
, Qerror
, cmd_error
);
1331 while (!NILP (val
));
1339 return Feval (Vtop_level
);
1345 /* On entry to the outer level, run the startup file */
1346 if (!NILP (Vtop_level
))
1347 internal_condition_case (top_level_2
, Qerror
, cmd_error
);
1348 else if (!NILP (Vpurify_flag
))
1349 message ("Bare impure Emacs (standard Lisp code not loaded)");
1351 message ("Bare Emacs (standard Lisp code not loaded)");
1355 DEFUN ("top-level", Ftop_level
, Stop_level
, 0, 0, "",
1356 doc
: /* Exit all recursive editing levels. */)
1359 #ifdef HAVE_X_WINDOWS
1360 if (display_hourglass_p
)
1361 cancel_hourglass ();
1364 /* Unblock input if we enter with input blocked. This may happen if
1365 redisplay traps e.g. during tool-bar update with input blocked. */
1366 while (INPUT_BLOCKED_P
)
1369 return Fthrow (Qtop_level
, Qnil
);
1372 DEFUN ("exit-recursive-edit", Fexit_recursive_edit
, Sexit_recursive_edit
, 0, 0, "",
1373 doc
: /* Exit from the innermost recursive edit or minibuffer. */)
1376 if (command_loop_level
> 0 || minibuf_level
> 0)
1377 Fthrow (Qexit
, Qnil
);
1379 error ("No recursive edit is in progress");
1383 DEFUN ("abort-recursive-edit", Fabort_recursive_edit
, Sabort_recursive_edit
, 0, 0, "",
1384 doc
: /* Abort the command that requested this recursive edit or minibuffer input. */)
1387 if (command_loop_level
> 0 || minibuf_level
> 0)
1390 error ("No recursive edit is in progress");
1396 /* Restore mouse tracking enablement. See Ftrack_mouse for the only use
1397 of this function. */
1400 tracking_off (old_value
)
1401 Lisp_Object old_value
;
1403 do_mouse_tracking
= old_value
;
1404 if (NILP (old_value
))
1406 /* Redisplay may have been preempted because there was input
1407 available, and it assumes it will be called again after the
1408 input has been processed. If the only input available was
1409 the sort that we have just disabled, then we need to call
1411 if (!readable_events (READABLE_EVENTS_DO_TIMERS_NOW
))
1413 redisplay_preserve_echo_area (6);
1414 get_input_pending (&input_pending
,
1415 READABLE_EVENTS_DO_TIMERS_NOW
);
1421 DEFUN ("track-mouse", Ftrack_mouse
, Strack_mouse
, 0, UNEVALLED
, 0,
1422 doc
: /* Evaluate BODY with mouse movement events enabled.
1423 Within a `track-mouse' form, mouse motion generates input events that
1424 you can read with `read-event'.
1425 Normally, mouse motion is ignored.
1426 usage: (track-mouse BODY...) */)
1430 int count
= SPECPDL_INDEX ();
1433 record_unwind_protect (tracking_off
, do_mouse_tracking
);
1435 do_mouse_tracking
= Qt
;
1437 val
= Fprogn (args
);
1438 return unbind_to (count
, val
);
1441 /* If mouse has moved on some frame, return one of those frames.
1445 If ignore_mouse_drag_p is non-zero, ignore (implicit) mouse movement
1446 after resizing the tool-bar window. */
1448 int ignore_mouse_drag_p
;
1453 Lisp_Object tail
, frame
;
1455 if (ignore_mouse_drag_p
)
1457 /* ignore_mouse_drag_p = 0; */
1461 FOR_EACH_FRAME (tail
, frame
)
1463 if (XFRAME (frame
)->mouse_moved
)
1464 return XFRAME (frame
);
1470 #endif /* HAVE_MOUSE */
1472 /* This is the actual command reading loop,
1473 sans error-handling encapsulation. */
1475 static int read_key_sequence
P_ ((Lisp_Object
*, int, Lisp_Object
,
1477 void safe_run_hooks
P_ ((Lisp_Object
));
1478 static void adjust_point_for_property
P_ ((int, int));
1480 /* Cancel hourglass from protect_unwind.
1482 #ifdef HAVE_X_WINDOWS
1484 cancel_hourglass_unwind (arg
)
1487 cancel_hourglass ();
1498 Lisp_Object keybuf
[30];
1501 int prev_modiff
= 0;
1502 struct buffer
*prev_buffer
= NULL
;
1504 int was_locked
= single_kboard
;
1506 int already_adjusted
;
1508 current_kboard
->Vprefix_arg
= Qnil
;
1509 current_kboard
->Vlast_prefix_arg
= Qnil
;
1510 Vdeactivate_mark
= Qnil
;
1511 waiting_for_input
= 0;
1515 this_command_key_count
= 0;
1516 this_command_key_count_reset
= 0;
1517 this_single_command_key_start
= 0;
1519 if (NILP (Vmemory_full
))
1521 /* Make sure this hook runs after commands that get errors and
1522 throw to top level. */
1523 /* Note that the value cell will never directly contain nil
1524 if the symbol is a local variable. */
1525 if (!NILP (Vpost_command_hook
) && !NILP (Vrun_hooks
))
1526 safe_run_hooks (Qpost_command_hook
);
1528 /* If displaying a message, resize the echo area window to fit
1529 that message's size exactly. */
1530 if (!NILP (echo_area_buffer
[0]))
1531 resize_echo_area_exactly ();
1533 if (!NILP (Vdeferred_action_list
))
1534 safe_run_hooks (Qdeferred_action_function
);
1537 /* Do this after running Vpost_command_hook, for consistency. */
1538 current_kboard
->Vlast_command
= Vthis_command
;
1539 current_kboard
->Vreal_last_command
= real_this_command
;
1540 if (!CONSP (last_command_char
))
1541 current_kboard
->Vlast_repeatable_command
= real_this_command
;
1545 if (! FRAME_LIVE_P (XFRAME (selected_frame
)))
1548 /* Make sure the current window's buffer is selected. */
1549 if (XBUFFER (XWINDOW (selected_window
)->buffer
) != current_buffer
)
1550 set_buffer_internal (XBUFFER (XWINDOW (selected_window
)->buffer
));
1552 /* Display any malloc warning that just came out. Use while because
1553 displaying one warning can cause another. */
1555 while (pending_malloc_warning
)
1556 display_malloc_warning ();
1560 Vdeactivate_mark
= Qnil
;
1562 /* If minibuffer on and echo area in use,
1563 wait a short time and redraw minibuffer. */
1566 && !NILP (echo_area_buffer
[0])
1567 && EQ (minibuf_window
, echo_area_window
))
1569 /* Bind inhibit-quit to t so that C-g gets read in
1570 rather than quitting back to the minibuffer. */
1571 int count
= SPECPDL_INDEX ();
1572 specbind (Qinhibit_quit
, Qt
);
1574 if (NUMBERP (Vminibuffer_message_timeout
))
1575 sit_for (Vminibuffer_message_timeout
, 0, 2);
1579 /* Clear the echo area. */
1581 safe_run_hooks (Qecho_area_clear_hook
);
1583 unbind_to (count
, Qnil
);
1585 /* If a C-g came in before, treat it as input now. */
1586 if (!NILP (Vquit_flag
))
1589 Vunread_command_events
= Fcons (make_number (quit_char
), Qnil
);
1594 alloca (0); /* Cause a garbage collection now */
1595 /* Since we can free the most stuff here. */
1596 #endif /* C_ALLOCA */
1599 /* Select the frame that the last event came from. Usually,
1600 switch-frame events will take care of this, but if some lisp
1601 code swallows a switch-frame event, we'll fix things up here.
1602 Is this a good idea? */
1603 if (FRAMEP (internal_last_event_frame
)
1604 && !EQ (internal_last_event_frame
, selected_frame
))
1605 Fselect_frame (internal_last_event_frame
);
1607 /* If it has changed current-menubar from previous value,
1608 really recompute the menubar from the value. */
1609 if (! NILP (Vlucid_menu_bar_dirty_flag
)
1610 && !NILP (Ffboundp (Qrecompute_lucid_menubar
)))
1611 call0 (Qrecompute_lucid_menubar
);
1613 before_command_key_count
= this_command_key_count
;
1614 before_command_echo_length
= echo_length ();
1616 Vthis_command
= Qnil
;
1617 real_this_command
= Qnil
;
1618 Vthis_original_command
= Qnil
;
1620 /* Read next key sequence; i gets its length. */
1621 i
= read_key_sequence (keybuf
, sizeof keybuf
/ sizeof keybuf
[0],
1624 /* A filter may have run while we were reading the input. */
1625 if (! FRAME_LIVE_P (XFRAME (selected_frame
)))
1627 if (XBUFFER (XWINDOW (selected_window
)->buffer
) != current_buffer
)
1628 set_buffer_internal (XBUFFER (XWINDOW (selected_window
)->buffer
));
1632 /* Now we have read a key sequence of length I,
1633 or else I is 0 and we found end of file. */
1635 if (i
== 0) /* End of file -- happens only in */
1636 return Qnil
; /* a kbd macro, at the end. */
1637 /* -1 means read_key_sequence got a menu that was rejected.
1638 Just loop around and read another command. */
1642 this_command_key_count
= 0;
1643 this_command_key_count_reset
= 0;
1644 this_single_command_key_start
= 0;
1648 last_command_char
= keybuf
[i
- 1];
1650 /* If the previous command tried to force a specific window-start,
1651 forget about that, in case this command moves point far away
1652 from that position. But also throw away beg_unchanged and
1653 end_unchanged information in that case, so that redisplay will
1654 update the whole window properly. */
1655 if (!NILP (XWINDOW (selected_window
)->force_start
))
1658 XWINDOW (selected_window
)->force_start
= Qnil
;
1659 b
= XBUFFER (XWINDOW (selected_window
)->buffer
);
1660 BUF_BEG_UNCHANGED (b
) = BUF_END_UNCHANGED (b
) = 0;
1663 cmd
= read_key_sequence_cmd
;
1664 if (!NILP (Vexecuting_kbd_macro
))
1666 if (!NILP (Vquit_flag
))
1668 Vexecuting_kbd_macro
= Qt
;
1669 QUIT
; /* Make some noise. */
1670 /* Will return since macro now empty. */
1674 /* Do redisplay processing after this command except in special
1675 cases identified below. */
1676 prev_buffer
= current_buffer
;
1677 prev_modiff
= MODIFF
;
1678 last_point_position
= PT
;
1679 last_point_position_window
= selected_window
;
1680 XSETBUFFER (last_point_position_buffer
, prev_buffer
);
1682 /* By default, we adjust point to a boundary of a region that
1683 has such a property that should be treated intangible
1684 (e.g. composition, display). But, some commands will set
1685 this variable differently. */
1686 Vdisable_point_adjustment
= Qnil
;
1688 /* Process filters and timers may have messed with deactivate-mark.
1689 reset it before we execute the command. */
1690 Vdeactivate_mark
= Qnil
;
1692 /* Remap command through active keymaps */
1693 Vthis_original_command
= cmd
;
1697 if (cmd1
= Fcommand_remapping (cmd
, Qnil
, Qnil
), !NILP (cmd1
))
1701 /* Execute the command. */
1703 Vthis_command
= cmd
;
1704 real_this_command
= cmd
;
1705 /* Note that the value cell will never directly contain nil
1706 if the symbol is a local variable. */
1707 if (!NILP (Vpre_command_hook
) && !NILP (Vrun_hooks
))
1708 safe_run_hooks (Qpre_command_hook
);
1710 already_adjusted
= 0;
1712 if (NILP (Vthis_command
))
1714 /* nil means key is undefined. */
1715 Lisp_Object keys
= Fvector (i
, keybuf
);
1716 keys
= Fkey_description (keys
, Qnil
);
1718 message_with_string ("%s is undefined", keys
, 0);
1719 current_kboard
->defining_kbd_macro
= Qnil
;
1720 update_mode_lines
= 1;
1721 current_kboard
->Vprefix_arg
= Qnil
;
1725 if (NILP (current_kboard
->Vprefix_arg
) && ! no_direct
)
1727 /* In case we jump to directly_done. */
1728 Vcurrent_prefix_arg
= current_kboard
->Vprefix_arg
;
1730 /* Recognize some common commands in common situations and
1731 do them directly. */
1732 if (EQ (Vthis_command
, Qforward_char
) && PT
< ZV
)
1734 struct Lisp_Char_Table
*dp
1735 = window_display_table (XWINDOW (selected_window
));
1736 lose
= FETCH_CHAR (PT_BYTE
);
1738 if (! NILP (Vpost_command_hook
))
1739 /* Put this before calling adjust_point_for_property
1740 so it will only get called once in any case. */
1742 if (current_buffer
== prev_buffer
1743 && last_point_position
!= PT
1744 && NILP (Vdisable_point_adjustment
)
1745 && NILP (Vglobal_disable_point_adjustment
))
1746 adjust_point_for_property (last_point_position
, 0);
1747 already_adjusted
= 1;
1748 if (PT
== last_point_position
+ 1
1750 ? (VECTORP (DISP_CHAR_VECTOR (dp
, lose
))
1751 ? XVECTOR (DISP_CHAR_VECTOR (dp
, lose
))->size
== 1
1752 : (NILP (DISP_CHAR_VECTOR (dp
, lose
))
1753 && (lose
>= 0x20 && lose
< 0x7f)))
1754 : (lose
>= 0x20 && lose
< 0x7f))
1755 /* To extract the case of continuation on
1756 wide-column characters. */
1757 && (WIDTH_BY_CHAR_HEAD (FETCH_BYTE (PT_BYTE
)) == 1)
1758 && (XFASTINT (XWINDOW (selected_window
)->last_modified
)
1760 && (XFASTINT (XWINDOW (selected_window
)->last_overlay_modified
)
1762 && (XFASTINT (XWINDOW (selected_window
)->last_point
)
1764 && !windows_or_buffers_changed
1765 && EQ (current_buffer
->selective_display
, Qnil
)
1766 && !detect_input_pending ()
1767 && NILP (XWINDOW (selected_window
)->column_number_displayed
)
1768 && NILP (Vexecuting_kbd_macro
))
1769 direct_output_forward_char (1);
1772 else if (EQ (Vthis_command
, Qbackward_char
) && PT
> BEGV
)
1774 struct Lisp_Char_Table
*dp
1775 = window_display_table (XWINDOW (selected_window
));
1777 lose
= FETCH_CHAR (PT_BYTE
);
1778 if (! NILP (Vpost_command_hook
))
1780 if (current_buffer
== prev_buffer
1781 && last_point_position
!= PT
1782 && NILP (Vdisable_point_adjustment
)
1783 && NILP (Vglobal_disable_point_adjustment
))
1784 adjust_point_for_property (last_point_position
, 0);
1785 already_adjusted
= 1;
1786 if (PT
== last_point_position
- 1
1788 ? (VECTORP (DISP_CHAR_VECTOR (dp
, lose
))
1789 ? XVECTOR (DISP_CHAR_VECTOR (dp
, lose
))->size
== 1
1790 : (NILP (DISP_CHAR_VECTOR (dp
, lose
))
1791 && (lose
>= 0x20 && lose
< 0x7f)))
1792 : (lose
>= 0x20 && lose
< 0x7f))
1793 && (XFASTINT (XWINDOW (selected_window
)->last_modified
)
1795 && (XFASTINT (XWINDOW (selected_window
)->last_overlay_modified
)
1797 && (XFASTINT (XWINDOW (selected_window
)->last_point
)
1799 && !windows_or_buffers_changed
1800 && EQ (current_buffer
->selective_display
, Qnil
)
1801 && !detect_input_pending ()
1802 && NILP (XWINDOW (selected_window
)->column_number_displayed
)
1803 && NILP (Vexecuting_kbd_macro
))
1804 direct_output_forward_char (-1);
1807 else if (EQ (Vthis_command
, Qself_insert_command
)
1808 /* Try this optimization only on char keystrokes. */
1809 && NATNUMP (last_command_char
)
1810 && CHAR_VALID_P (XFASTINT (last_command_char
), 0))
1813 = translate_char (Vtranslation_table_for_input
,
1814 XFASTINT (last_command_char
), 0, 0, 0);
1816 if (NILP (Vexecuting_kbd_macro
)
1817 && !EQ (minibuf_window
, selected_window
))
1819 if (!nonundocount
|| nonundocount
>= 20)
1827 lose
= ((XFASTINT (XWINDOW (selected_window
)->last_modified
)
1829 || (XFASTINT (XWINDOW (selected_window
)->last_overlay_modified
)
1831 || (XFASTINT (XWINDOW (selected_window
)->last_point
)
1833 || MODIFF
<= SAVE_MODIFF
1834 || windows_or_buffers_changed
1835 || !EQ (current_buffer
->selective_display
, Qnil
)
1836 || detect_input_pending ()
1837 || !NILP (XWINDOW (selected_window
)->column_number_displayed
)
1838 || !NILP (Vexecuting_kbd_macro
));
1840 value
= internal_self_insert (c
, 0);
1845 if (! NILP (Vpost_command_hook
))
1846 /* Put this before calling adjust_point_for_property
1847 so it will only get called once in any case. */
1850 /* VALUE == 1 when AFTER-CHANGE functions are
1851 installed which is the case most of the time
1852 because FONT-LOCK installs one. */
1853 if (!lose
&& !value
)
1854 direct_output_for_insert (c
);
1859 /* Here for a command that isn't executed directly */
1862 #ifdef HAVE_X_WINDOWS
1863 int scount
= SPECPDL_INDEX ();
1865 if (display_hourglass_p
1866 && NILP (Vexecuting_kbd_macro
))
1868 record_unwind_protect (cancel_hourglass_unwind
, Qnil
);
1874 if (NILP (current_kboard
->Vprefix_arg
))
1876 Fcommand_execute (Vthis_command
, Qnil
, Qnil
, Qnil
);
1878 #ifdef HAVE_X_WINDOWS
1879 /* Do not check display_hourglass_p here, because
1880 Fcommand_execute could change it, but we should cancel
1881 hourglass cursor anyway.
1882 But don't cancel the hourglass within a macro
1883 just because a command in the macro finishes. */
1884 if (NILP (Vexecuting_kbd_macro
))
1885 unbind_to (scount
, Qnil
);
1890 current_kboard
->Vlast_prefix_arg
= Vcurrent_prefix_arg
;
1892 /* Note that the value cell will never directly contain nil
1893 if the symbol is a local variable. */
1894 if (!NILP (Vpost_command_hook
) && !NILP (Vrun_hooks
))
1895 safe_run_hooks (Qpost_command_hook
);
1897 /* If displaying a message, resize the echo area window to fit
1898 that message's size exactly. */
1899 if (!NILP (echo_area_buffer
[0]))
1900 resize_echo_area_exactly ();
1902 if (!NILP (Vdeferred_action_list
))
1903 safe_run_hooks (Qdeferred_action_function
);
1905 /* If there is a prefix argument,
1906 1) We don't want Vlast_command to be ``universal-argument''
1907 (that would be dumb), so don't set Vlast_command,
1908 2) we want to leave echoing on so that the prefix will be
1909 echoed as part of this key sequence, so don't call
1911 3) we want to leave this_command_key_count non-zero, so that
1912 read_char will realize that it is re-reading a character, and
1913 not echo it a second time.
1915 If the command didn't actually create a prefix arg,
1916 but is merely a frame event that is transparent to prefix args,
1917 then the above doesn't apply. */
1918 if (NILP (current_kboard
->Vprefix_arg
) || CONSP (last_command_char
))
1920 current_kboard
->Vlast_command
= Vthis_command
;
1921 current_kboard
->Vreal_last_command
= real_this_command
;
1922 if (!CONSP (last_command_char
))
1923 current_kboard
->Vlast_repeatable_command
= real_this_command
;
1925 this_command_key_count
= 0;
1926 this_command_key_count_reset
= 0;
1927 this_single_command_key_start
= 0;
1930 if (!NILP (current_buffer
->mark_active
) && !NILP (Vrun_hooks
))
1932 /* Setting transient-mark-mode to `only' is a way of
1933 turning it on for just one command. */
1935 if (EQ (Vtransient_mark_mode
, Qidentity
))
1936 Vtransient_mark_mode
= Qnil
;
1937 if (EQ (Vtransient_mark_mode
, Qonly
))
1938 Vtransient_mark_mode
= Qidentity
;
1940 if (!NILP (Vdeactivate_mark
) && !NILP (Vtransient_mark_mode
))
1942 /* We could also call `deactivate'mark'. */
1943 if (EQ (Vtransient_mark_mode
, Qlambda
))
1944 Vtransient_mark_mode
= Qnil
;
1947 current_buffer
->mark_active
= Qnil
;
1948 call1 (Vrun_hooks
, intern ("deactivate-mark-hook"));
1951 else if (current_buffer
!= prev_buffer
|| MODIFF
!= prev_modiff
)
1952 call1 (Vrun_hooks
, intern ("activate-mark-hook"));
1957 if (current_buffer
== prev_buffer
1958 && last_point_position
!= PT
1959 && NILP (Vdisable_point_adjustment
)
1960 && NILP (Vglobal_disable_point_adjustment
)
1961 && !already_adjusted
)
1962 adjust_point_for_property (last_point_position
, MODIFF
!= prev_modiff
);
1964 /* Install chars successfully executed in kbd macro. */
1966 if (!NILP (current_kboard
->defining_kbd_macro
)
1967 && NILP (current_kboard
->Vprefix_arg
))
1968 finalize_kbd_macro_chars ();
1972 any_kboard_state ();
1977 extern Lisp_Object Qcomposition
, Qdisplay
;
1979 /* Adjust point to a boundary of a region that has such a property
1980 that should be treated intangible. For the moment, we check
1981 `composition', `display' and `invisible' properties.
1982 LAST_PT is the last position of point. */
1984 extern Lisp_Object Qafter_string
, Qbefore_string
;
1985 extern Lisp_Object get_pos_property
P_ ((Lisp_Object
, Lisp_Object
, Lisp_Object
));
1988 adjust_point_for_property (last_pt
, modified
)
1993 Lisp_Object val
, overlay
, tmp
;
1994 int check_composition
= 1, check_display
= 1, check_invisible
= 1;
1997 /* FIXME: cycling is probably not necessary because these properties
1998 can't be usefully combined anyway. */
1999 while (check_composition
|| check_display
|| check_invisible
)
2001 if (check_composition
2002 && PT
> BEGV
&& PT
< ZV
2003 && get_property_and_range (PT
, Qcomposition
, &val
, &beg
, &end
, Qnil
)
2004 && COMPOSITION_VALID_P (beg
, end
, val
)
2005 && beg
< PT
/* && end > PT <- It's always the case. */
2006 && (last_pt
<= beg
|| last_pt
>= end
))
2009 SET_PT (PT
< last_pt
? beg
: end
);
2010 check_display
= check_invisible
= 1;
2012 check_composition
= 0;
2014 && PT
> BEGV
&& PT
< ZV
2015 && !NILP (val
= get_char_property_and_overlay
2016 (make_number (PT
), Qdisplay
, Qnil
, &overlay
))
2017 && display_prop_intangible_p (val
)
2018 && (!OVERLAYP (overlay
)
2019 ? get_property_and_range (PT
, Qdisplay
, &val
, &beg
, &end
, Qnil
)
2020 : (beg
= OVERLAY_POSITION (OVERLAY_START (overlay
)),
2021 end
= OVERLAY_POSITION (OVERLAY_END (overlay
))))
2022 && (beg
< PT
/* && end > PT <- It's always the case. */
2023 || (beg
<= PT
&& STRINGP (val
) && SCHARS (val
) == 0)))
2026 SET_PT (PT
< last_pt
2027 ? (STRINGP (val
) && SCHARS (val
) == 0 ? beg
- 1 : beg
)
2029 check_composition
= check_invisible
= 1;
2032 if (check_invisible
&& PT
> BEGV
&& PT
< ZV
)
2034 int inv
, ellipsis
= 0;
2037 /* Find boundaries `beg' and `end' of the invisible area, if any. */
2039 && !NILP (val
= get_char_property_and_overlay
2040 (make_number (end
), Qinvisible
, Qnil
, &overlay
))
2041 && (inv
= TEXT_PROP_MEANS_INVISIBLE (val
)))
2043 ellipsis
= ellipsis
|| inv
> 1
2044 || (OVERLAYP (overlay
)
2045 && (!NILP (Foverlay_get (overlay
, Qafter_string
))
2046 || !NILP (Foverlay_get (overlay
, Qbefore_string
))));
2047 tmp
= Fnext_single_char_property_change
2048 (make_number (end
), Qinvisible
, Qnil
, Qnil
);
2049 end
= NATNUMP (tmp
) ? XFASTINT (tmp
) : ZV
;
2052 && !NILP (val
= get_char_property_and_overlay
2053 (make_number (beg
- 1), Qinvisible
, Qnil
, &overlay
))
2054 && (inv
= TEXT_PROP_MEANS_INVISIBLE (val
)))
2056 ellipsis
= ellipsis
|| inv
> 1
2057 || (OVERLAYP (overlay
)
2058 && (!NILP (Foverlay_get (overlay
, Qafter_string
))
2059 || !NILP (Foverlay_get (overlay
, Qbefore_string
))));
2060 tmp
= Fprevious_single_char_property_change
2061 (make_number (beg
), Qinvisible
, Qnil
, Qnil
);
2062 beg
= NATNUMP (tmp
) ? XFASTINT (tmp
) : BEGV
;
2065 /* Move away from the inside area. */
2066 if (beg
< PT
&& end
> PT
)
2068 SET_PT ((orig_pt
== PT
&& (last_pt
< beg
|| last_pt
> end
))
2069 /* We haven't moved yet (so we don't need to fear
2070 infinite-looping) and we were outside the range
2071 before (so either end of the range still corresponds
2072 to a move in the right direction): pretend we moved
2073 less than we actually did, so that we still have
2074 more freedom below in choosing which end of the range
2076 ? (orig_pt
= -1, PT
< last_pt
? end
: beg
)
2077 /* We either have moved already or the last point
2078 was already in the range: we don't get to choose
2079 which end of the range we have to go to. */
2080 : (PT
< last_pt
? beg
: end
));
2081 check_composition
= check_display
= 1;
2083 #if 0 /* This assertion isn't correct, because SET_PT may end up setting
2084 the point to something other than its argument, due to
2085 point-motion hooks, intangibility, etc. */
2086 xassert (PT
== beg
|| PT
== end
);
2089 /* Pretend the area doesn't exist if the buffer is not
2091 if (!modified
&& !ellipsis
&& beg
< end
)
2093 if (last_pt
== beg
&& PT
== end
&& end
< ZV
)
2094 (check_composition
= check_display
= 1, SET_PT (end
+ 1));
2095 else if (last_pt
== end
&& PT
== beg
&& beg
> BEGV
)
2096 (check_composition
= check_display
= 1, SET_PT (beg
- 1));
2097 else if (PT
== ((PT
< last_pt
) ? beg
: end
))
2098 /* We've already moved as far as we can. Trying to go
2099 to the other end would mean moving backwards and thus
2100 could lead to an infinite loop. */
2102 else if (val
= get_pos_property (make_number (PT
),
2104 TEXT_PROP_MEANS_INVISIBLE (val
)
2105 && (val
= get_pos_property
2106 (make_number (PT
== beg
? end
: beg
),
2108 !TEXT_PROP_MEANS_INVISIBLE (val
)))
2109 (check_composition
= check_display
= 1,
2110 SET_PT (PT
== beg
? end
: beg
));
2113 check_invisible
= 0;
2117 /* Subroutine for safe_run_hooks: run the hook HOOK. */
2120 safe_run_hooks_1 (hook
)
2123 if (NILP (Vrun_hooks
))
2125 return call1 (Vrun_hooks
, Vinhibit_quit
);
2128 /* Subroutine for safe_run_hooks: handle an error by clearing out the hook. */
2131 safe_run_hooks_error (data
)
2134 Lisp_Object args
[3];
2135 args
[0] = build_string ("Error in %s: %s");
2136 args
[1] = Vinhibit_quit
;
2139 return Fset (Vinhibit_quit
, Qnil
);
2142 /* If we get an error while running the hook, cause the hook variable
2143 to be nil. Also inhibit quits, so that C-g won't cause the hook
2144 to mysteriously evaporate. */
2147 safe_run_hooks (hook
)
2150 int count
= SPECPDL_INDEX ();
2151 specbind (Qinhibit_quit
, hook
);
2153 internal_condition_case (safe_run_hooks_1
, Qt
, safe_run_hooks_error
);
2155 unbind_to (count
, Qnil
);
2159 /* Number of seconds between polling for input. This is a Lisp
2160 variable that can be bound. */
2162 EMACS_INT polling_period
;
2164 /* Nonzero means polling for input is temporarily suppressed. */
2166 int poll_suppress_count
;
2168 /* Asynchronous timer for polling. */
2170 struct atimer
*poll_timer
;
2173 #ifdef POLL_FOR_INPUT
2175 /* Poll for input, so what we catch a C-g if it comes in. This
2176 function is called from x_make_frame_visible, see comment
2182 if (interrupt_input_blocked
== 0
2183 && !waiting_for_input
)
2184 read_avail_input (0);
2187 /* Timer callback function for poll_timer. TIMER is equal to
2191 poll_for_input (timer
)
2192 struct atimer
*timer
;
2194 if (poll_suppress_count
== 0)
2196 interrupt_input_pending
= 1;
2198 poll_for_input_1 ();
2202 #endif /* POLL_FOR_INPUT */
2204 /* Begin signals to poll for input, if they are appropriate.
2205 This function is called unconditionally from various places. */
2210 #ifdef POLL_FOR_INPUT
2211 if (read_socket_hook
&& !interrupt_input
)
2213 /* Turn alarm handling on unconditionally. It might have
2214 been turned off in process.c. */
2215 turn_on_atimers (1);
2217 /* If poll timer doesn't exist, are we need one with
2218 a different interval, start a new one. */
2219 if (poll_timer
== NULL
2220 || EMACS_SECS (poll_timer
->interval
) != polling_period
)
2222 EMACS_TIME interval
;
2225 cancel_atimer (poll_timer
);
2227 EMACS_SET_SECS_USECS (interval
, polling_period
, 0);
2228 poll_timer
= start_atimer (ATIMER_CONTINUOUS
, interval
,
2229 poll_for_input
, NULL
);
2232 /* Let the timer's callback function poll for input
2233 if this becomes zero. */
2234 --poll_suppress_count
;
2239 /* Nonzero if we are using polling to handle input asynchronously. */
2242 input_polling_used ()
2244 #ifdef POLL_FOR_INPUT
2245 return read_socket_hook
&& !interrupt_input
;
2251 /* Turn off polling. */
2256 #ifdef POLL_FOR_INPUT
2257 if (read_socket_hook
&& !interrupt_input
)
2258 ++poll_suppress_count
;
2262 /* Set the value of poll_suppress_count to COUNT
2263 and start or stop polling accordingly. */
2266 set_poll_suppress_count (count
)
2269 #ifdef POLL_FOR_INPUT
2270 if (count
== 0 && poll_suppress_count
!= 0)
2272 poll_suppress_count
= 1;
2275 else if (count
!= 0 && poll_suppress_count
== 0)
2279 poll_suppress_count
= count
;
2283 /* Bind polling_period to a value at least N.
2284 But don't decrease it. */
2287 bind_polling_period (n
)
2290 #ifdef POLL_FOR_INPUT
2291 int new = polling_period
;
2296 stop_other_atimers (poll_timer
);
2298 specbind (Qpolling_period
, make_number (new));
2299 /* Start a new alarm with the new period. */
2304 /* Apply the control modifier to CHARACTER. */
2310 /* Save the upper bits here. */
2311 int upper
= c
& ~0177;
2315 /* Everything in the columns containing the upper-case letters
2316 denotes a control character. */
2317 if (c
>= 0100 && c
< 0140)
2321 /* Set the shift modifier for a control char
2322 made from a shifted letter. But only for letters! */
2323 if (oc
>= 'A' && oc
<= 'Z')
2324 c
|= shift_modifier
;
2327 /* The lower-case letters denote control characters too. */
2328 else if (c
>= 'a' && c
<= 'z')
2331 /* Include the bits for control and shift
2332 only if the basic ASCII code can't indicate them. */
2336 /* Replace the high bits. */
2337 c
|= (upper
& ~ctrl_modifier
);
2342 /* Display the help-echo property of the character after the mouse pointer.
2343 Either show it in the echo area, or call show-help-function to display
2344 it by other means (maybe in a tooltip).
2346 If HELP is nil, that means clear the previous help echo.
2348 If HELP is a string, display that string. If HELP is a function,
2349 call it with OBJECT and POS as arguments; the function should
2350 return a help string or nil for none. For all other types of HELP,
2351 evaluate it to obtain a string.
2353 WINDOW is the window in which the help was generated, if any.
2354 It is nil if not in a window.
2356 If OBJECT is a buffer, POS is the position in the buffer where the
2357 `help-echo' text property was found.
2359 If OBJECT is an overlay, that overlay has a `help-echo' property,
2360 and POS is the position in the overlay's buffer under the mouse.
2362 If OBJECT is a string (an overlay string or a string displayed with
2363 the `display' property). POS is the position in that string under
2366 OK_TO_OVERWRITE_KEYSTROKE_ECHO non-zero means it's okay if the help
2367 echo overwrites a keystroke echo currently displayed in the echo
2370 Note: this function may only be called with HELP nil or a string
2371 from X code running asynchronously. */
2374 show_help_echo (help
, window
, object
, pos
, ok_to_overwrite_keystroke_echo
)
2375 Lisp_Object help
, window
, object
, pos
;
2376 int ok_to_overwrite_keystroke_echo
;
2378 if (!NILP (help
) && !STRINGP (help
))
2380 if (FUNCTIONP (help
))
2382 Lisp_Object args
[4];
2387 help
= safe_call (4, args
);
2390 help
= safe_eval (help
);
2392 if (!STRINGP (help
))
2397 if (!noninteractive
&& STRINGP (help
))
2399 /* The mouse-fixup-help-message Lisp function can call
2400 mouse_position_hook, which resets the mouse_moved flags.
2401 This causes trouble if we are trying to read a mouse motion
2402 event (i.e., if we are inside a `track-mouse' form), so we
2403 restore the mouse_moved flag. */
2404 FRAME_PTR f
= NILP (do_mouse_tracking
) ? NULL
: some_mouse_moved ();
2405 help
= call1 (Qmouse_fixup_help_message
, help
);
2411 if (STRINGP (help
) || NILP (help
))
2413 if (!NILP (Vshow_help_function
))
2414 call1 (Vshow_help_function
, help
);
2415 else if (/* Don't overwrite minibuffer contents. */
2416 !MINI_WINDOW_P (XWINDOW (selected_window
))
2417 /* Don't overwrite a keystroke echo. */
2418 && (NILP (echo_message_buffer
)
2419 || ok_to_overwrite_keystroke_echo
)
2420 /* Don't overwrite a prompt. */
2421 && !cursor_in_echo_area
)
2425 int count
= SPECPDL_INDEX ();
2427 if (!help_echo_showing_p
)
2428 Vpre_help_message
= current_message ();
2430 specbind (Qmessage_truncate_lines
, Qt
);
2431 message3_nolog (help
, SBYTES (help
),
2432 STRING_MULTIBYTE (help
));
2433 unbind_to (count
, Qnil
);
2435 else if (STRINGP (Vpre_help_message
))
2437 message3_nolog (Vpre_help_message
,
2438 SBYTES (Vpre_help_message
),
2439 STRING_MULTIBYTE (Vpre_help_message
));
2440 Vpre_help_message
= Qnil
;
2446 help_echo_showing_p
= STRINGP (help
);
2452 /* Input of single characters from keyboard */
2454 Lisp_Object
print_help ();
2455 static Lisp_Object
kbd_buffer_get_event ();
2456 static void record_char ();
2458 static Lisp_Object help_form_saved_window_configs
;
2460 read_char_help_form_unwind (arg
)
2462 Lisp_Object window_config
= XCAR (help_form_saved_window_configs
);
2463 help_form_saved_window_configs
= XCDR (help_form_saved_window_configs
);
2464 if (!NILP (window_config
))
2465 Fset_window_configuration (window_config
);
2470 static jmp_buf wrong_kboard_jmpbuf
;
2473 #define STOP_POLLING \
2474 do { if (! polling_stopped_here) stop_polling (); \
2475 polling_stopped_here = 1; } while (0)
2477 #define RESUME_POLLING \
2478 do { if (polling_stopped_here) start_polling (); \
2479 polling_stopped_here = 0; } while (0)
2481 /* read a character from the keyboard; call the redisplay if needed */
2482 /* commandflag 0 means do not do auto-saving, but do do redisplay.
2483 -1 means do not do redisplay, but do do autosaving.
2486 /* The arguments MAPS and NMAPS are for menu prompting.
2487 MAPS is an array of keymaps; NMAPS is the length of MAPS.
2489 PREV_EVENT is the previous input event, or nil if we are reading
2490 the first event of a key sequence (or not reading a key sequence).
2491 If PREV_EVENT is t, that is a "magic" value that says
2492 not to run input methods, but in other respects to act as if
2493 not reading a key sequence.
2495 If USED_MOUSE_MENU is non-null, then we set *USED_MOUSE_MENU to 1
2496 if we used a mouse menu to read the input, or zero otherwise. If
2497 USED_MOUSE_MENU is null, we don't dereference it.
2499 If END_TIME is non-null, it is a pointer to an EMACS_TIME
2500 specifying the maximum time to wait until. If no input arrives by
2501 that time, stop waiting and return nil.
2503 Value is t if we showed a menu and the user rejected it. */
2506 read_char (commandflag
, nmaps
, maps
, prev_event
, used_mouse_menu
, end_time
)
2510 Lisp_Object prev_event
;
2511 int *used_mouse_menu
;
2512 EMACS_TIME
*end_time
;
2514 volatile Lisp_Object c
;
2515 int count
, jmpcount
;
2516 jmp_buf local_getcjmp
;
2518 volatile int key_already_recorded
= 0;
2519 Lisp_Object tem
, save
;
2520 volatile Lisp_Object previous_echo_area_message
;
2521 volatile Lisp_Object also_record
;
2522 volatile int reread
;
2523 struct gcpro gcpro1
, gcpro2
;
2524 int polling_stopped_here
= 0;
2528 #if 0 /* This was commented out as part of fixing echo for C-u left. */
2529 before_command_key_count
= this_command_key_count
;
2530 before_command_echo_length
= echo_length ();
2533 previous_echo_area_message
= Qnil
;
2535 GCPRO2 (c
, previous_echo_area_message
);
2540 if (CONSP (Vunread_post_input_method_events
))
2542 c
= XCAR (Vunread_post_input_method_events
);
2543 Vunread_post_input_method_events
2544 = XCDR (Vunread_post_input_method_events
);
2546 /* Undo what read_char_x_menu_prompt did when it unread
2547 additional keys returned by Fx_popup_menu. */
2549 && (SYMBOLP (XCAR (c
)) || INTEGERP (XCAR (c
)))
2557 if (unread_command_char
!= -1)
2559 XSETINT (c
, unread_command_char
);
2560 unread_command_char
= -1;
2566 if (CONSP (Vunread_command_events
))
2568 c
= XCAR (Vunread_command_events
);
2569 Vunread_command_events
= XCDR (Vunread_command_events
);
2573 /* Undo what sit-for did when it unread additional keys
2574 inside universal-argument. */
2577 && EQ (XCAR (c
), Qt
))
2583 /* Undo what read_char_x_menu_prompt did when it unread
2584 additional keys returned by Fx_popup_menu. */
2586 && EQ (XCDR (c
), Qdisabled
)
2587 && (SYMBOLP (XCAR (c
)) || INTEGERP (XCAR (c
))))
2590 /* If the queued event is something that used the mouse,
2591 set used_mouse_menu accordingly. */
2593 && (EQ (c
, Qtool_bar
) || EQ (c
, Qmenu_bar
)))
2594 *used_mouse_menu
= 1;
2596 goto reread_for_input_method
;
2599 if (CONSP (Vunread_input_method_events
))
2601 c
= XCAR (Vunread_input_method_events
);
2602 Vunread_input_method_events
= XCDR (Vunread_input_method_events
);
2604 /* Undo what read_char_x_menu_prompt did when it unread
2605 additional keys returned by Fx_popup_menu. */
2607 && (SYMBOLP (XCAR (c
)) || INTEGERP (XCAR (c
)))
2611 goto reread_for_input_method
;
2614 this_command_key_count_reset
= 0;
2616 if (!NILP (Vexecuting_kbd_macro
))
2618 /* We set this to Qmacro; since that's not a frame, nobody will
2619 try to switch frames on us, and the selected window will
2622 Since this event came from a macro, it would be misleading to
2623 leave internal_last_event_frame set to wherever the last
2624 real event came from. Normally, a switch-frame event selects
2625 internal_last_event_frame after each command is read, but
2626 events read from a macro should never cause a new frame to be
2628 Vlast_event_frame
= internal_last_event_frame
= Qmacro
;
2630 /* Exit the macro if we are at the end.
2631 Also, some things replace the macro with t
2632 to force an early exit. */
2633 if (EQ (Vexecuting_kbd_macro
, Qt
)
2634 || executing_kbd_macro_index
>= XFASTINT (Flength (Vexecuting_kbd_macro
)))
2640 c
= Faref (Vexecuting_kbd_macro
, make_number (executing_kbd_macro_index
));
2641 if (STRINGP (Vexecuting_kbd_macro
)
2642 && (XINT (c
) & 0x80) && (XUINT (c
) <= 0xff))
2643 XSETFASTINT (c
, CHAR_META
| (XINT (c
) & ~0x80));
2645 executing_kbd_macro_index
++;
2650 if (!NILP (unread_switch_frame
))
2652 c
= unread_switch_frame
;
2653 unread_switch_frame
= Qnil
;
2655 /* This event should make it into this_command_keys, and get echoed
2656 again, so we do not set `reread'. */
2660 /* if redisplay was requested */
2661 if (commandflag
>= 0)
2663 /* If there is pending input, process any events which are not
2664 user-visible, such as X selection_request events. */
2666 || detect_input_pending_run_timers (0))
2667 swallow_events (0); /* may clear input_pending */
2669 /* Redisplay if no pending input. */
2670 while (!input_pending
)
2672 if (help_echo_showing_p
&& !EQ (selected_window
, minibuf_window
))
2673 redisplay_preserve_echo_area (5);
2678 /* Normal case: no input arrived during redisplay. */
2681 /* Input arrived and pre-empted redisplay.
2682 Process any events which are not user-visible. */
2684 /* If that cleared input_pending, try again to redisplay. */
2688 /* Message turns off echoing unless more keystrokes turn it on again.
2690 The code in 20.x for the condition was
2692 1. echo_area_glyphs && *echo_area_glyphs
2693 2. && echo_area_glyphs != current_kboard->echobuf
2694 3. && ok_to_echo_at_next_pause != echo_area_glyphs
2696 (1) means there's a current message displayed
2698 (2) means it's not the message from echoing from the current
2701 (3) There's only one place in 20.x where ok_to_echo_at_next_pause
2702 is set to a non-null value. This is done in read_char and it is
2703 set to echo_area_glyphs after a call to echo_char. That means
2704 ok_to_echo_at_next_pause is either null or
2705 current_kboard->echobuf with the appropriate current_kboard at
2708 So, condition (3) means in clear text ok_to_echo_at_next_pause
2709 must be either null, or the current message isn't from echoing at
2710 all, or it's from echoing from a different kboard than the
2713 if (/* There currently is something in the echo area. */
2714 !NILP (echo_area_buffer
[0])
2715 && (/* And it's either not from echoing. */
2716 !EQ (echo_area_buffer
[0], echo_message_buffer
)
2717 /* Or it's an echo from a different kboard. */
2718 || echo_kboard
!= current_kboard
2719 /* Or we explicitly allow overwriting whatever there is. */
2720 || ok_to_echo_at_next_pause
== NULL
))
2725 /* Try reading a character via menu prompting in the minibuf.
2726 Try this before the sit-for, because the sit-for
2727 would do the wrong thing if we are supposed to do
2728 menu prompting. If EVENT_HAS_PARAMETERS then we are reading
2729 after a mouse event so don't try a minibuf menu. */
2731 if (nmaps
> 0 && INTERACTIVE
2732 && !NILP (prev_event
) && ! EVENT_HAS_PARAMETERS (prev_event
)
2733 /* Don't bring up a menu if we already have another event. */
2734 && NILP (Vunread_command_events
)
2735 && unread_command_char
< 0
2736 && !detect_input_pending_run_timers (0))
2738 c
= read_char_minibuf_menu_prompt (commandflag
, nmaps
, maps
);
2741 key_already_recorded
= 1;
2746 /* Make a longjmp point for quits to use, but don't alter getcjmp just yet.
2747 We will do that below, temporarily for short sections of code,
2748 when appropriate. local_getcjmp must be in effect
2749 around any call to sit_for or kbd_buffer_get_event;
2750 it *must not* be in effect when we call redisplay. */
2752 jmpcount
= SPECPDL_INDEX ();
2753 if (_setjmp (local_getcjmp
))
2755 /* We must have saved the outer value of getcjmp here,
2756 so restore it now. */
2757 restore_getcjmp (save_jump
);
2758 unbind_to (jmpcount
, Qnil
);
2759 XSETINT (c
, quit_char
);
2760 internal_last_event_frame
= selected_frame
;
2761 Vlast_event_frame
= internal_last_event_frame
;
2762 /* If we report the quit char as an event,
2763 don't do so more than once. */
2764 if (!NILP (Vinhibit_quit
))
2769 KBOARD
*kb
= FRAME_KBOARD (XFRAME (selected_frame
));
2770 if (kb
!= current_kboard
)
2772 Lisp_Object link
= kb
->kbd_queue
;
2773 /* We shouldn't get here if we were in single-kboard mode! */
2778 while (CONSP (XCDR (link
)))
2780 if (!NILP (XCDR (link
)))
2784 kb
->kbd_queue
= Fcons (c
, Qnil
);
2786 XSETCDR (link
, Fcons (c
, Qnil
));
2787 kb
->kbd_queue_has_data
= 1;
2788 current_kboard
= kb
;
2789 /* This is going to exit from read_char
2790 so we had better get rid of this frame's stuff. */
2792 longjmp (wrong_kboard_jmpbuf
, 1);
2799 /* Start idle timers if no time limit is supplied. We don't do it
2800 if a time limit is supplied to avoid an infinite recursion in the
2801 situation where an idle timer calls `sit-for'. */
2804 timer_start_idle ();
2806 /* If in middle of key sequence and minibuffer not active,
2807 start echoing if enough time elapses. */
2809 if (minibuf_level
== 0
2811 && !current_kboard
->immediate_echo
2812 && this_command_key_count
> 0
2814 && (FLOATP (Vecho_keystrokes
) || INTEGERP (Vecho_keystrokes
))
2815 && NILP (Fzerop (Vecho_keystrokes
))
2816 && (/* No message. */
2817 NILP (echo_area_buffer
[0])
2818 /* Or empty message. */
2819 || (BUF_BEG (XBUFFER (echo_area_buffer
[0]))
2820 == BUF_Z (XBUFFER (echo_area_buffer
[0])))
2821 /* Or already echoing from same kboard. */
2822 || (echo_kboard
&& ok_to_echo_at_next_pause
== echo_kboard
)
2823 /* Or not echoing before and echoing allowed. */
2824 || (!echo_kboard
&& ok_to_echo_at_next_pause
)))
2826 /* After a mouse event, start echoing right away.
2827 This is because we are probably about to display a menu,
2828 and we don't want to delay before doing so. */
2829 if (EVENT_HAS_PARAMETERS (prev_event
))
2835 save_getcjmp (save_jump
);
2836 restore_getcjmp (local_getcjmp
);
2837 tem0
= sit_for (Vecho_keystrokes
, 1, 1);
2838 restore_getcjmp (save_jump
);
2840 && ! CONSP (Vunread_command_events
))
2845 /* Maybe auto save due to number of keystrokes. */
2847 if (commandflag
!= 0
2848 && auto_save_interval
> 0
2849 && num_nonmacro_input_events
- last_auto_save
> max (auto_save_interval
, 20)
2850 && !detect_input_pending_run_timers (0))
2852 Fdo_auto_save (Qnil
, Qnil
);
2853 /* Hooks can actually change some buffers in auto save. */
2857 /* Try reading using an X menu.
2858 This is never confused with reading using the minibuf
2859 because the recursive call of read_char in read_char_minibuf_menu_prompt
2860 does not pass on any keymaps. */
2862 if (nmaps
> 0 && INTERACTIVE
2863 && !NILP (prev_event
)
2864 && EVENT_HAS_PARAMETERS (prev_event
)
2865 && !EQ (XCAR (prev_event
), Qmenu_bar
)
2866 && !EQ (XCAR (prev_event
), Qtool_bar
)
2867 /* Don't bring up a menu if we already have another event. */
2868 && NILP (Vunread_command_events
)
2869 && unread_command_char
< 0)
2871 c
= read_char_x_menu_prompt (nmaps
, maps
, prev_event
, used_mouse_menu
);
2873 /* Now that we have read an event, Emacs is not idle. */
2880 /* Maybe autosave and/or garbage collect due to idleness. */
2882 if (INTERACTIVE
&& NILP (c
))
2884 int delay_level
, buffer_size
;
2886 /* Slow down auto saves logarithmically in size of current buffer,
2887 and garbage collect while we're at it. */
2888 if (! MINI_WINDOW_P (XWINDOW (selected_window
)))
2889 last_non_minibuf_size
= Z
- BEG
;
2890 buffer_size
= (last_non_minibuf_size
>> 8) + 1;
2892 while (buffer_size
> 64)
2893 delay_level
++, buffer_size
-= buffer_size
>> 2;
2894 if (delay_level
< 4) delay_level
= 4;
2895 /* delay_level is 4 for files under around 50k, 7 at 100k,
2896 9 at 200k, 11 at 300k, and 12 at 500k. It is 15 at 1 meg. */
2898 /* Auto save if enough time goes by without input. */
2899 if (commandflag
!= 0
2900 && num_nonmacro_input_events
> last_auto_save
2901 && INTEGERP (Vauto_save_timeout
)
2902 && XINT (Vauto_save_timeout
) > 0)
2905 int timeout
= delay_level
* XFASTINT (Vauto_save_timeout
) / 4;
2907 save_getcjmp (save_jump
);
2908 restore_getcjmp (local_getcjmp
);
2909 tem0
= sit_for (make_number (timeout
), 1, 1);
2910 restore_getcjmp (save_jump
);
2913 && ! CONSP (Vunread_command_events
))
2915 Fdo_auto_save (Qnil
, Qnil
);
2917 /* If we have auto-saved and there is still no input
2918 available, garbage collect if there has been enough
2919 consing going on to make it worthwhile. */
2920 if (!detect_input_pending_run_timers (0)
2921 && consing_since_gc
> gc_cons_threshold
/ 2)
2922 Fgarbage_collect ();
2929 /* If this has become non-nil here, it has been set by a timer
2930 or sentinel or filter. */
2931 if (CONSP (Vunread_command_events
))
2933 c
= XCAR (Vunread_command_events
);
2934 Vunread_command_events
= XCDR (Vunread_command_events
);
2937 /* Read something from current KBOARD's side queue, if possible. */
2941 if (current_kboard
->kbd_queue_has_data
)
2943 if (!CONSP (current_kboard
->kbd_queue
))
2945 c
= XCAR (current_kboard
->kbd_queue
);
2946 current_kboard
->kbd_queue
2947 = XCDR (current_kboard
->kbd_queue
);
2948 if (NILP (current_kboard
->kbd_queue
))
2949 current_kboard
->kbd_queue_has_data
= 0;
2950 input_pending
= readable_events (0);
2951 if (EVENT_HAS_PARAMETERS (c
)
2952 && EQ (EVENT_HEAD_KIND (EVENT_HEAD (c
)), Qswitch_frame
))
2953 internal_last_event_frame
= XCAR (XCDR (c
));
2954 Vlast_event_frame
= internal_last_event_frame
;
2959 /* If current_kboard's side queue is empty check the other kboards.
2960 If one of them has data that we have not yet seen here,
2961 switch to it and process the data waiting for it.
2963 Note: if the events queued up for another kboard
2964 have already been seen here, and therefore are not a complete command,
2965 the kbd_queue_has_data field is 0, so we skip that kboard here.
2966 That's to avoid an infinite loop switching between kboards here. */
2967 if (NILP (c
) && !single_kboard
)
2970 for (kb
= all_kboards
; kb
; kb
= kb
->next_kboard
)
2971 if (kb
->kbd_queue_has_data
)
2973 current_kboard
= kb
;
2974 /* This is going to exit from read_char
2975 so we had better get rid of this frame's stuff. */
2977 longjmp (wrong_kboard_jmpbuf
, 1);
2986 /* Finally, we read from the main queue,
2987 and if that gives us something we can't use yet, we put it on the
2988 appropriate side queue and try again. */
2997 EMACS_GET_TIME (now
);
2998 if (EMACS_TIME_GE (now
, *end_time
))
3002 /* Actually read a character, waiting if necessary. */
3003 save_getcjmp (save_jump
);
3004 restore_getcjmp (local_getcjmp
);
3006 timer_start_idle ();
3007 c
= kbd_buffer_get_event (&kb
, used_mouse_menu
, end_time
);
3008 restore_getcjmp (save_jump
);
3011 if (! NILP (c
) && (kb
!= current_kboard
))
3013 Lisp_Object link
= kb
->kbd_queue
;
3016 while (CONSP (XCDR (link
)))
3018 if (!NILP (XCDR (link
)))
3022 kb
->kbd_queue
= Fcons (c
, Qnil
);
3024 XSETCDR (link
, Fcons (c
, Qnil
));
3025 kb
->kbd_queue_has_data
= 1;
3029 current_kboard
= kb
;
3030 /* This is going to exit from read_char
3031 so we had better get rid of this frame's stuff. */
3033 longjmp (wrong_kboard_jmpbuf
, 1);
3038 /* Terminate Emacs in batch mode if at eof. */
3039 if (noninteractive
&& INTEGERP (c
) && XINT (c
) < 0)
3040 Fkill_emacs (make_number (1));
3044 /* Add in any extra modifiers, where appropriate. */
3045 if ((extra_keyboard_modifiers
& CHAR_CTL
)
3046 || ((extra_keyboard_modifiers
& 0177) < ' '
3047 && (extra_keyboard_modifiers
& 0177) != 0))
3048 XSETINT (c
, make_ctrl_char (XINT (c
)));
3050 /* Transfer any other modifier bits directly from
3051 extra_keyboard_modifiers to c. Ignore the actual character code
3052 in the low 16 bits of extra_keyboard_modifiers. */
3053 XSETINT (c
, XINT (c
) | (extra_keyboard_modifiers
& ~0xff7f & ~CHAR_CTL
));
3064 if (commandflag
>= 0
3065 && !input_pending
&& !detect_input_pending_run_timers (0))
3073 /* Buffer switch events are only for internal wakeups
3074 so don't show them to the user.
3075 Also, don't record a key if we already did. */
3076 if (BUFFERP (c
) || key_already_recorded
)
3079 /* Process special events within read_char
3080 and loop around to read another event. */
3083 tem
= access_keymap (get_keymap (Vspecial_event_map
, 0, 1), c
, 0, 0, 1);
3088 int was_locked
= single_kboard
;
3090 last_input_char
= c
;
3091 Fcommand_execute (tem
, Qnil
, Fvector (1, &last_input_char
), Qt
);
3093 if (CONSP (c
) && EQ (XCAR (c
), Qselect_window
) && !end_time
)
3094 /* We stopped being idle for this event; undo that. This
3095 prevents automatic window selection (under
3096 mouse_autoselect_window from acting as a real input event, for
3097 example banishing the mouse under mouse-avoidance-mode. */
3098 timer_resume_idle ();
3100 /* Resume allowing input from any kboard, if that was true before. */
3102 any_kboard_state ();
3107 /* Handle things that only apply to characters. */
3110 /* If kbd_buffer_get_event gave us an EOF, return that. */
3114 if ((STRINGP (Vkeyboard_translate_table
)
3115 && SCHARS (Vkeyboard_translate_table
) > (unsigned) XFASTINT (c
))
3116 || (VECTORP (Vkeyboard_translate_table
)
3117 && XVECTOR (Vkeyboard_translate_table
)->size
> (unsigned) XFASTINT (c
))
3118 || (CHAR_TABLE_P (Vkeyboard_translate_table
)
3119 && CHAR_VALID_P (XINT (c
), 0)))
3122 d
= Faref (Vkeyboard_translate_table
, c
);
3123 /* nil in keyboard-translate-table means no translation. */
3129 /* If this event is a mouse click in the menu bar,
3130 return just menu-bar for now. Modify the mouse click event
3131 so we won't do this twice, then queue it up. */
3132 if (EVENT_HAS_PARAMETERS (c
)
3134 && CONSP (EVENT_START (c
))
3135 && CONSP (XCDR (EVENT_START (c
))))
3139 posn
= POSN_POSN (EVENT_START (c
));
3140 /* Handle menu-bar events:
3141 insert the dummy prefix event `menu-bar'. */
3142 if (EQ (posn
, Qmenu_bar
) || EQ (posn
, Qtool_bar
))
3144 /* Change menu-bar to (menu-bar) as the event "position". */
3145 POSN_SET_POSN (EVENT_START (c
), Fcons (posn
, Qnil
));
3148 Vunread_command_events
= Fcons (c
, Vunread_command_events
);
3153 /* Store these characters into recent_keys, the dribble file if any,
3154 and the keyboard macro being defined, if any. */
3156 if (! NILP (also_record
))
3157 record_char (also_record
);
3159 /* Wipe the echo area.
3160 But first, if we are about to use an input method,
3161 save the echo area contents for it to refer to. */
3163 && ! NILP (Vinput_method_function
)
3164 && (unsigned) XINT (c
) >= ' '
3165 && (unsigned) XINT (c
) != 127
3166 && (unsigned) XINT (c
) < 256)
3168 previous_echo_area_message
= Fcurrent_message ();
3169 Vinput_method_previous_message
= previous_echo_area_message
;
3172 /* Now wipe the echo area, except for help events which do their
3173 own stuff with the echo area. */
3175 || (!(EQ (Qhelp_echo
, XCAR (c
)))
3176 && !(EQ (Qswitch_frame
, XCAR (c
)))))
3178 if (!NILP (echo_area_buffer
[0]))
3179 safe_run_hooks (Qecho_area_clear_hook
);
3180 clear_message (1, 0);
3183 reread_for_input_method
:
3185 /* Pass this to the input method, if appropriate. */
3187 && ! NILP (Vinput_method_function
)
3188 /* Don't run the input method within a key sequence,
3189 after the first event of the key sequence. */
3190 && NILP (prev_event
)
3191 && (unsigned) XINT (c
) >= ' '
3192 && (unsigned) XINT (c
) != 127
3193 && (unsigned) XINT (c
) < 256)
3196 int key_count
, key_count_reset
;
3197 struct gcpro gcpro1
;
3198 int count
= SPECPDL_INDEX ();
3200 /* Save the echo status. */
3201 int saved_immediate_echo
= current_kboard
->immediate_echo
;
3202 struct kboard
*saved_ok_to_echo
= ok_to_echo_at_next_pause
;
3203 Lisp_Object saved_echo_string
= current_kboard
->echo_string
;
3204 int saved_echo_after_prompt
= current_kboard
->echo_after_prompt
;
3207 if (before_command_restore_flag
)
3209 this_command_key_count
= before_command_key_count_1
;
3210 if (this_command_key_count
< this_single_command_key_start
)
3211 this_single_command_key_start
= this_command_key_count
;
3212 echo_truncate (before_command_echo_length_1
);
3213 before_command_restore_flag
= 0;
3217 /* Save the this_command_keys status. */
3218 key_count
= this_command_key_count
;
3219 key_count_reset
= this_command_key_count_reset
;
3222 keys
= Fcopy_sequence (this_command_keys
);
3227 /* Clear out this_command_keys. */
3228 this_command_key_count
= 0;
3229 this_command_key_count_reset
= 0;
3231 /* Now wipe the echo area. */
3232 if (!NILP (echo_area_buffer
[0]))
3233 safe_run_hooks (Qecho_area_clear_hook
);
3234 clear_message (1, 0);
3237 /* If we are not reading a key sequence,
3238 never use the echo area. */
3241 specbind (Qinput_method_use_echo_area
, Qt
);
3244 /* Call the input method. */
3245 tem
= call1 (Vinput_method_function
, c
);
3247 tem
= unbind_to (count
, tem
);
3249 /* Restore the saved echoing state
3250 and this_command_keys state. */
3251 this_command_key_count
= key_count
;
3252 this_command_key_count_reset
= key_count_reset
;
3254 this_command_keys
= keys
;
3257 ok_to_echo_at_next_pause
= saved_ok_to_echo
;
3258 current_kboard
->echo_string
= saved_echo_string
;
3259 current_kboard
->echo_after_prompt
= saved_echo_after_prompt
;
3260 if (saved_immediate_echo
)
3265 /* The input method can return no events. */
3268 /* Bring back the previous message, if any. */
3269 if (! NILP (previous_echo_area_message
))
3270 message_with_string ("%s", previous_echo_area_message
, 0);
3273 /* It returned one event or more. */
3275 Vunread_post_input_method_events
3276 = nconc2 (XCDR (tem
), Vunread_post_input_method_events
);
3281 /* Display help if not echoing. */
3282 if (CONSP (c
) && EQ (XCAR (c
), Qhelp_echo
))
3284 /* (help-echo FRAME HELP WINDOW OBJECT POS). */
3285 Lisp_Object help
, object
, position
, window
, tem
;
3287 tem
= Fcdr (XCDR (c
));
3290 window
= Fcar (tem
);
3292 object
= Fcar (tem
);
3294 position
= Fcar (tem
);
3296 show_help_echo (help
, window
, object
, position
, 0);
3298 /* We stopped being idle for this event; undo that. */
3300 timer_resume_idle ();
3304 if ((! reread
|| this_command_key_count
== 0
3305 || this_command_key_count_reset
)
3309 /* Don't echo mouse motion events. */
3310 if ((FLOATP (Vecho_keystrokes
) || INTEGERP (Vecho_keystrokes
))
3311 && NILP (Fzerop (Vecho_keystrokes
))
3312 && ! (EVENT_HAS_PARAMETERS (c
)
3313 && EQ (EVENT_HEAD_KIND (EVENT_HEAD (c
)), Qmouse_movement
)))
3316 if (! NILP (also_record
))
3317 echo_char (also_record
);
3318 /* Once we reread a character, echoing can happen
3319 the next time we pause to read a new one. */
3320 ok_to_echo_at_next_pause
= current_kboard
;
3323 /* Record this character as part of the current key. */
3324 add_command_key (c
);
3325 if (! NILP (also_record
))
3326 add_command_key (also_record
);
3329 last_input_char
= c
;
3332 /* Process the help character specially if enabled */
3333 if (!NILP (Vhelp_form
) && help_char_p (c
))
3336 count
= SPECPDL_INDEX ();
3338 help_form_saved_window_configs
3339 = Fcons (Fcurrent_window_configuration (Qnil
),
3340 help_form_saved_window_configs
);
3341 record_unwind_protect (read_char_help_form_unwind
, Qnil
);
3343 tem0
= Feval (Vhelp_form
);
3345 internal_with_output_to_temp_buffer ("*Help*", print_help
, tem0
);
3350 c
= read_char (0, 0, 0, Qnil
, 0, NULL
);
3351 if (EVENT_HAS_PARAMETERS (c
)
3352 && EQ (EVENT_HEAD_KIND (EVENT_HEAD (c
)), Qmouse_click
))
3353 XSETCAR (help_form_saved_window_configs
, Qnil
);
3355 while (BUFFERP (c
));
3356 /* Remove the help from the frame */
3357 unbind_to (count
, Qnil
);
3360 if (EQ (c
, make_number (040)))
3364 c
= read_char (0, 0, 0, Qnil
, 0, NULL
);
3365 while (BUFFERP (c
));
3374 /* Record a key that came from a mouse menu.
3375 Record it for echoing, for this-command-keys, and so on. */
3381 /* Wipe the echo area. */
3382 clear_message (1, 0);
3387 before_command_key_count
= this_command_key_count
;
3388 before_command_echo_length
= echo_length ();
3391 /* Don't echo mouse motion events. */
3392 if ((FLOATP (Vecho_keystrokes
) || INTEGERP (Vecho_keystrokes
))
3393 && NILP (Fzerop (Vecho_keystrokes
)))
3397 /* Once we reread a character, echoing can happen
3398 the next time we pause to read a new one. */
3399 ok_to_echo_at_next_pause
= 0;
3402 /* Record this character as part of the current key. */
3403 add_command_key (c
);
3405 /* Re-reading in the middle of a command */
3406 last_input_char
= c
;
3410 /* Return 1 if should recognize C as "the help character". */
3418 if (EQ (c
, Vhelp_char
))
3420 for (tail
= Vhelp_event_list
; CONSP (tail
); tail
= XCDR (tail
))
3421 if (EQ (c
, XCAR (tail
)))
3426 /* Record the input event C in various ways. */
3434 if (CONSP (c
) && (EQ (XCAR (c
), Qhelp_echo
) || EQ (XCAR (c
), Qmouse_movement
)))
3436 /* To avoid filling recent_keys with help-echo and mouse-movement
3437 events, we filter out repeated help-echo events, only store the
3438 first and last in a series of mouse-movement events, and don't
3439 store repeated help-echo events which are only separated by
3440 mouse-movement events. */
3442 Lisp_Object ev1
, ev2
, ev3
;
3445 if ((ix1
= recent_keys_index
- 1) < 0)
3446 ix1
= NUM_RECENT_KEYS
- 1;
3447 ev1
= AREF (recent_keys
, ix1
);
3449 if ((ix2
= ix1
- 1) < 0)
3450 ix2
= NUM_RECENT_KEYS
- 1;
3451 ev2
= AREF (recent_keys
, ix2
);
3453 if ((ix3
= ix2
- 1) < 0)
3454 ix3
= NUM_RECENT_KEYS
- 1;
3455 ev3
= AREF (recent_keys
, ix3
);
3457 if (EQ (XCAR (c
), Qhelp_echo
))
3459 /* Don't record `help-echo' in recent_keys unless it shows some help
3460 message, and a different help than the previously recorded
3462 Lisp_Object help
, last_help
;
3464 help
= Fcar_safe (Fcdr_safe (XCDR (c
)));
3465 if (!STRINGP (help
))
3467 else if (CONSP (ev1
) && EQ (XCAR (ev1
), Qhelp_echo
)
3468 && (last_help
= Fcar_safe (Fcdr_safe (XCDR (ev1
))), EQ (last_help
, help
)))
3470 else if (CONSP (ev1
) && EQ (XCAR (ev1
), Qmouse_movement
)
3471 && CONSP (ev2
) && EQ (XCAR (ev2
), Qhelp_echo
)
3472 && (last_help
= Fcar_safe (Fcdr_safe (XCDR (ev2
))), EQ (last_help
, help
)))
3474 else if (CONSP (ev1
) && EQ (XCAR (ev1
), Qmouse_movement
)
3475 && CONSP (ev2
) && EQ (XCAR (ev2
), Qmouse_movement
)
3476 && CONSP (ev3
) && EQ (XCAR (ev3
), Qhelp_echo
)
3477 && (last_help
= Fcar_safe (Fcdr_safe (XCDR (ev3
))), EQ (last_help
, help
)))
3480 else if (EQ (XCAR (c
), Qmouse_movement
))
3482 /* Only record one pair of `mouse-movement' on a window in recent_keys.
3483 So additional mouse movement events replace the last element. */
3484 Lisp_Object last_window
, window
;
3486 window
= Fcar_safe (Fcar_safe (XCDR (c
)));
3487 if (CONSP (ev1
) && EQ (XCAR (ev1
), Qmouse_movement
)
3488 && (last_window
= Fcar_safe (Fcar_safe (XCDR (ev1
))), EQ (last_window
, window
))
3489 && CONSP (ev2
) && EQ (XCAR (ev2
), Qmouse_movement
)
3490 && (last_window
= Fcar_safe (Fcar_safe (XCDR (ev2
))), EQ (last_window
, window
)))
3492 ASET (recent_keys
, ix1
, c
);
3498 store_kbd_macro_char (c
);
3503 ASET (recent_keys
, recent_keys_index
, c
);
3504 if (++recent_keys_index
>= NUM_RECENT_KEYS
)
3505 recent_keys_index
= 0;
3507 else if (recorded
< 0)
3509 /* We need to remove one or two events from recent_keys.
3510 To do this, we simply put nil at those events and move the
3511 recent_keys_index backwards over those events. Usually,
3512 users will never see those nil events, as they will be
3513 overwritten by the command keys entered to see recent_keys
3516 while (recorded
++ < 0 && total_keys
> 0)
3518 if (total_keys
< NUM_RECENT_KEYS
)
3520 if (--recent_keys_index
< 0)
3521 recent_keys_index
= NUM_RECENT_KEYS
- 1;
3522 ASET (recent_keys
, recent_keys_index
, Qnil
);
3526 num_nonmacro_input_events
++;
3528 /* Write c to the dribble file. If c is a lispy event, write
3529 the event's symbol to the dribble file, in <brackets>. Bleaugh.
3530 If you, dear reader, have a better idea, you've got the source. :-) */
3536 if (XUINT (c
) < 0x100)
3537 putc (XINT (c
), dribble
);
3539 fprintf (dribble
, " 0x%x", (int) XUINT (c
));
3543 Lisp_Object dribblee
;
3545 /* If it's a structured event, take the event header. */
3546 dribblee
= EVENT_HEAD (c
);
3548 if (SYMBOLP (dribblee
))
3550 putc ('<', dribble
);
3551 fwrite (SDATA (SYMBOL_NAME (dribblee
)), sizeof (char),
3552 SBYTES (SYMBOL_NAME (dribblee
)),
3554 putc ('>', dribble
);
3567 struct buffer
*old
= current_buffer
;
3568 Fprinc (object
, Qnil
);
3569 set_buffer_internal (XBUFFER (Vstandard_output
));
3570 call0 (intern ("help-mode"));
3571 set_buffer_internal (old
);
3575 /* Copy out or in the info on where C-g should throw to.
3576 This is used when running Lisp code from within get_char,
3577 in case get_char is called recursively.
3578 See read_process_output. */
3584 bcopy (getcjmp
, temp
, sizeof getcjmp
);
3588 restore_getcjmp (temp
)
3591 bcopy (temp
, getcjmp
, sizeof getcjmp
);
3594 /* Low level keyboard/mouse input.
3595 kbd_buffer_store_event places events in kbd_buffer, and
3596 kbd_buffer_get_event retrieves them. */
3598 /* Return true if there are any events in the queue that read-char
3599 would return. If this returns false, a read-char would block. */
3601 readable_events (flags
)
3604 if (flags
& READABLE_EVENTS_DO_TIMERS_NOW
)
3607 /* If the buffer contains only FOCUS_IN_EVENT events, and
3608 READABLE_EVENTS_FILTER_EVENTS is set, report it as empty. */
3609 if (kbd_fetch_ptr
!= kbd_store_ptr
)
3611 if (flags
& (READABLE_EVENTS_FILTER_EVENTS
3612 #ifdef USE_TOOLKIT_SCROLL_BARS
3613 | READABLE_EVENTS_IGNORE_SQUEEZABLES
3617 struct input_event
*event
;
3619 event
= ((kbd_fetch_ptr
< kbd_buffer
+ KBD_BUFFER_SIZE
)
3626 #ifdef USE_TOOLKIT_SCROLL_BARS
3627 (flags
& READABLE_EVENTS_FILTER_EVENTS
) &&
3629 event
->kind
== FOCUS_IN_EVENT
)
3630 #ifdef USE_TOOLKIT_SCROLL_BARS
3631 && !((flags
& READABLE_EVENTS_IGNORE_SQUEEZABLES
)
3632 && event
->kind
== SCROLL_BAR_CLICK_EVENT
3633 && event
->part
== scroll_bar_handle
3634 && event
->modifiers
== 0)
3639 if (event
== kbd_buffer
+ KBD_BUFFER_SIZE
)
3642 while (event
!= kbd_store_ptr
);
3649 if (!(flags
& READABLE_EVENTS_IGNORE_SQUEEZABLES
)
3650 && !NILP (do_mouse_tracking
) && some_mouse_moved ())
3655 if (current_kboard
->kbd_queue_has_data
)
3661 for (kb
= all_kboards
; kb
; kb
= kb
->next_kboard
)
3662 if (kb
->kbd_queue_has_data
)
3668 /* Set this for debugging, to have a way to get out */
3673 event_to_kboard (event
)
3674 struct input_event
*event
;
3677 frame
= event
->frame_or_window
;
3679 frame
= XCAR (frame
);
3680 else if (WINDOWP (frame
))
3681 frame
= WINDOW_FRAME (XWINDOW (frame
));
3683 /* There are still some events that don't set this field.
3684 For now, just ignore the problem.
3685 Also ignore dead frames here. */
3686 if (!FRAMEP (frame
) || !FRAME_LIVE_P (XFRAME (frame
)))
3689 return FRAME_KBOARD (XFRAME (frame
));
3694 Lisp_Object Vthrow_on_input
;
3696 /* Store an event obtained at interrupt level into kbd_buffer, fifo */
3699 kbd_buffer_store_event (event
)
3700 register struct input_event
*event
;
3702 kbd_buffer_store_event_hold (event
, 0);
3705 /* Store EVENT obtained at interrupt level into kbd_buffer, fifo.
3707 If HOLD_QUIT is 0, just stuff EVENT into the fifo.
3708 Else, if HOLD_QUIT.kind != NO_EVENT, discard EVENT.
3709 Else, if EVENT is a quit event, store the quit event
3710 in HOLD_QUIT, and return (thus ignoring further events).
3712 This is used in read_avail_input to postpone the processing
3713 of the quit event until all subsequent input events have been
3714 parsed (and discarded).
3718 kbd_buffer_store_event_hold (event
, hold_quit
)
3719 register struct input_event
*event
;
3720 struct input_event
*hold_quit
;
3722 if (event
->kind
== NO_EVENT
)
3725 if (hold_quit
&& hold_quit
->kind
!= NO_EVENT
)
3728 if (event
->kind
== ASCII_KEYSTROKE_EVENT
)
3730 register int c
= event
->code
& 0377;
3732 if (event
->modifiers
& ctrl_modifier
)
3733 c
= make_ctrl_char (c
);
3735 c
|= (event
->modifiers
3736 & (meta_modifier
| alt_modifier
3737 | hyper_modifier
| super_modifier
));
3743 struct input_event
*sp
;
3746 && (kb
= FRAME_KBOARD (XFRAME (event
->frame_or_window
)),
3747 kb
!= current_kboard
))
3750 = Fcons (make_lispy_switch_frame (event
->frame_or_window
),
3751 Fcons (make_number (c
), Qnil
));
3752 kb
->kbd_queue_has_data
= 1;
3753 for (sp
= kbd_fetch_ptr
; sp
!= kbd_store_ptr
; sp
++)
3755 if (sp
== kbd_buffer
+ KBD_BUFFER_SIZE
)
3758 if (event_to_kboard (sp
) == kb
)
3760 sp
->kind
= NO_EVENT
;
3761 sp
->frame_or_window
= Qnil
;
3771 bcopy (event
, (char *) hold_quit
, sizeof (*event
));
3775 /* If this results in a quit_char being returned to Emacs as
3776 input, set Vlast_event_frame properly. If this doesn't
3777 get returned to Emacs as an event, the next event read
3778 will set Vlast_event_frame again, so this is safe to do. */
3782 focus
= FRAME_FOCUS_FRAME (XFRAME (event
->frame_or_window
));
3784 focus
= event
->frame_or_window
;
3785 internal_last_event_frame
= focus
;
3786 Vlast_event_frame
= focus
;
3789 last_event_timestamp
= event
->timestamp
;
3790 interrupt_signal (0 /* dummy */);
3794 if (c
&& c
== stop_character
)
3800 /* Don't insert two BUFFER_SWITCH_EVENT's in a row.
3801 Just ignore the second one. */
3802 else if (event
->kind
== BUFFER_SWITCH_EVENT
3803 && kbd_fetch_ptr
!= kbd_store_ptr
3804 && ((kbd_store_ptr
== kbd_buffer
3805 ? kbd_buffer
+ KBD_BUFFER_SIZE
- 1
3806 : kbd_store_ptr
- 1)->kind
) == BUFFER_SWITCH_EVENT
)
3809 if (kbd_store_ptr
- kbd_buffer
== KBD_BUFFER_SIZE
)
3810 kbd_store_ptr
= kbd_buffer
;
3812 /* Don't let the very last slot in the buffer become full,
3813 since that would make the two pointers equal,
3814 and that is indistinguishable from an empty buffer.
3815 Discard the event if it would fill the last slot. */
3816 if (kbd_fetch_ptr
- 1 != kbd_store_ptr
)
3818 *kbd_store_ptr
= *event
;
3822 /* If we're inside while-no-input, and this event qualifies
3823 as input, set quit-flag to cause an interrupt. */
3824 if (!NILP (Vthrow_on_input
)
3825 && event
->kind
!= FOCUS_IN_EVENT
3826 && event
->kind
!= HELP_EVENT
3827 && event
->kind
!= DEICONIFY_EVENT
)
3829 Vquit_flag
= Vthrow_on_input
;
3830 /* If we're inside a function that wants immediate quits,
3832 if (immediate_quit
&& NILP (Vinhibit_quit
))
3842 /* Put an input event back in the head of the event queue. */
3845 kbd_buffer_unget_event (event
)
3846 register struct input_event
*event
;
3848 if (kbd_fetch_ptr
== kbd_buffer
)
3849 kbd_fetch_ptr
= kbd_buffer
+ KBD_BUFFER_SIZE
;
3851 /* Don't let the very last slot in the buffer become full, */
3852 if (kbd_fetch_ptr
- 1 != kbd_store_ptr
)
3855 *kbd_fetch_ptr
= *event
;
3860 /* Generate HELP_EVENT input_events in BUFP which has room for
3861 SIZE events. If there's not enough room in BUFP, ignore this
3864 HELP is the help form.
3866 FRAME is the frame on which the help is generated. OBJECT is the
3867 Lisp object where the help was found (a buffer, a string, an
3868 overlay, or nil if neither from a string nor from a buffer. POS is
3869 the position within OBJECT where the help was found.
3871 Value is the number of input_events generated. */
3874 gen_help_event (help
, frame
, window
, object
, pos
)
3875 Lisp_Object help
, frame
, object
, window
;
3878 struct input_event event
;
3882 event
.kind
= HELP_EVENT
;
3883 event
.frame_or_window
= frame
;
3885 event
.x
= WINDOWP (window
) ? window
: frame
;
3888 kbd_buffer_store_event (&event
);
3892 /* Store HELP_EVENTs for HELP on FRAME in the input queue. */
3895 kbd_buffer_store_help_event (frame
, help
)
3896 Lisp_Object frame
, help
;
3898 struct input_event event
;
3900 event
.kind
= HELP_EVENT
;
3901 event
.frame_or_window
= frame
;
3906 kbd_buffer_store_event (&event
);
3910 /* Discard any mouse events in the event buffer by setting them to
3913 discard_mouse_events ()
3915 struct input_event
*sp
;
3916 for (sp
= kbd_fetch_ptr
; sp
!= kbd_store_ptr
; sp
++)
3918 if (sp
== kbd_buffer
+ KBD_BUFFER_SIZE
)
3921 if (sp
->kind
== MOUSE_CLICK_EVENT
3922 || sp
->kind
== WHEEL_EVENT
3924 || sp
->kind
== W32_SCROLL_BAR_CLICK_EVENT
3926 || sp
->kind
== SCROLL_BAR_CLICK_EVENT
)
3928 sp
->kind
= NO_EVENT
;
3934 /* Return non-zero if there are any real events waiting in the event
3935 buffer, not counting `NO_EVENT's.
3937 If DISCARD is non-zero, discard NO_EVENT events at the front of
3938 the input queue, possibly leaving the input queue empty if there
3939 are no real input events. */
3942 kbd_buffer_events_waiting (discard
)
3945 struct input_event
*sp
;
3947 for (sp
= kbd_fetch_ptr
;
3948 sp
!= kbd_store_ptr
&& sp
->kind
== NO_EVENT
;
3951 if (sp
== kbd_buffer
+ KBD_BUFFER_SIZE
)
3958 return sp
!= kbd_store_ptr
&& sp
->kind
!= NO_EVENT
;
3962 /* Clear input event EVENT. */
3966 struct input_event
*event
;
3968 event
->kind
= NO_EVENT
;
3972 /* Read one event from the event buffer, waiting if necessary.
3973 The value is a Lisp object representing the event.
3974 The value is nil for an event that should be ignored,
3975 or that was handled here.
3976 We always read and discard one event. */
3979 kbd_buffer_get_event (kbp
, used_mouse_menu
, end_time
)
3981 int *used_mouse_menu
;
3982 EMACS_TIME
*end_time
;
3991 *kbp
= current_kboard
;
3995 /* Wait until there is input available. */
3998 /* Break loop if there's an unread command event. Needed in
3999 moused window autoselection which uses a timer to insert such
4001 if (CONSP (Vunread_command_events
))
4004 if (kbd_fetch_ptr
!= kbd_store_ptr
)
4007 if (!NILP (do_mouse_tracking
) && some_mouse_moved ())
4011 /* If the quit flag is set, then read_char will return
4012 quit_char, so that counts as "available input." */
4013 if (!NILP (Vquit_flag
))
4014 quit_throw_to_read_char ();
4016 /* One way or another, wait until input is available; then, if
4017 interrupt handlers have not read it, read it now. */
4020 wait_for_kbd_input ();
4022 /* Note SIGIO has been undef'd if FIONREAD is missing. */
4026 if (kbd_fetch_ptr
!= kbd_store_ptr
)
4029 if (!NILP (do_mouse_tracking
) && some_mouse_moved ())
4034 EMACS_TIME duration
;
4035 EMACS_GET_TIME (duration
);
4036 if (EMACS_TIME_GE (duration
, *end_time
))
4037 return Qnil
; /* finished waiting */
4040 EMACS_SUB_TIME (duration
, *end_time
, duration
);
4041 wait_reading_process_output (EMACS_SECS (duration
),
4042 EMACS_USECS (duration
),
4043 -1, 1, Qnil
, NULL
, 0);
4047 wait_reading_process_output (0, 0, -1, 1, Qnil
, NULL
, 0);
4049 if (!interrupt_input
&& kbd_fetch_ptr
== kbd_store_ptr
)
4050 /* Pass 1 for EXPECT since we just waited to have input. */
4051 read_avail_input (1);
4052 #endif /* not VMS */
4055 if (CONSP (Vunread_command_events
))
4058 first
= XCAR (Vunread_command_events
);
4059 Vunread_command_events
= XCDR (Vunread_command_events
);
4060 *kbp
= current_kboard
;
4064 /* At this point, we know that there is a readable event available
4065 somewhere. If the event queue is empty, then there must be a
4066 mouse movement enabled and available. */
4067 if (kbd_fetch_ptr
!= kbd_store_ptr
)
4069 struct input_event
*event
;
4071 event
= ((kbd_fetch_ptr
< kbd_buffer
+ KBD_BUFFER_SIZE
)
4075 last_event_timestamp
= event
->timestamp
;
4078 *kbp
= event_to_kboard (event
);
4080 *kbp
= current_kboard
; /* Better than returning null ptr? */
4082 *kbp
= &the_only_kboard
;
4087 /* These two kinds of events get special handling
4088 and don't actually appear to the command loop.
4089 We return nil for them. */
4090 if (event
->kind
== SELECTION_REQUEST_EVENT
4091 || event
->kind
== SELECTION_CLEAR_EVENT
)
4094 struct input_event copy
;
4096 /* Remove it from the buffer before processing it,
4097 since otherwise swallow_events will see it
4098 and process it again. */
4100 kbd_fetch_ptr
= event
+ 1;
4101 input_pending
= readable_events (0);
4102 x_handle_selection_event (©
);
4104 /* We're getting selection request events, but we don't have
4110 #if defined (HAVE_X11) || defined (HAVE_NTGUI) || defined (MAC_OS)
4111 else if (event
->kind
== DELETE_WINDOW_EVENT
)
4113 /* Make an event (delete-frame (FRAME)). */
4114 obj
= Fcons (event
->frame_or_window
, Qnil
);
4115 obj
= Fcons (Qdelete_frame
, Fcons (obj
, Qnil
));
4116 kbd_fetch_ptr
= event
+ 1;
4119 #if defined (HAVE_X11) || defined (HAVE_NTGUI) || defined (MAC_OS)
4120 else if (event
->kind
== ICONIFY_EVENT
)
4122 /* Make an event (iconify-frame (FRAME)). */
4123 obj
= Fcons (event
->frame_or_window
, Qnil
);
4124 obj
= Fcons (Qiconify_frame
, Fcons (obj
, Qnil
));
4125 kbd_fetch_ptr
= event
+ 1;
4127 else if (event
->kind
== DEICONIFY_EVENT
)
4129 /* Make an event (make-frame-visible (FRAME)). */
4130 obj
= Fcons (event
->frame_or_window
, Qnil
);
4131 obj
= Fcons (Qmake_frame_visible
, Fcons (obj
, Qnil
));
4132 kbd_fetch_ptr
= event
+ 1;
4135 else if (event
->kind
== BUFFER_SWITCH_EVENT
)
4137 /* The value doesn't matter here; only the type is tested. */
4138 XSETBUFFER (obj
, current_buffer
);
4139 kbd_fetch_ptr
= event
+ 1;
4141 #if defined (USE_X_TOOLKIT) || defined (HAVE_NTGUI) || defined (MAC_OS) \
4142 || defined (USE_GTK)
4143 else if (event
->kind
== MENU_BAR_ACTIVATE_EVENT
)
4145 kbd_fetch_ptr
= event
+ 1;
4146 input_pending
= readable_events (0);
4147 if (FRAME_LIVE_P (XFRAME (event
->frame_or_window
)))
4148 x_activate_menubar (XFRAME (event
->frame_or_window
));
4151 #if defined (WINDOWSNT) || defined (MAC_OS)
4152 else if (event
->kind
== LANGUAGE_CHANGE_EVENT
)
4155 /* Make an event (language-change (KEY_SCRIPT)). */
4156 obj
= Fcons (make_number (event
->code
), Qnil
);
4158 /* Make an event (language-change (FRAME CHARSET LCID)). */
4159 obj
= Fcons (event
->frame_or_window
, Qnil
);
4161 obj
= Fcons (Qlanguage_change
, Fcons (obj
, Qnil
));
4162 kbd_fetch_ptr
= event
+ 1;
4165 else if (event
->kind
== SAVE_SESSION_EVENT
)
4167 obj
= Fcons (Qsave_session
, Qnil
);
4168 kbd_fetch_ptr
= event
+ 1;
4170 /* Just discard these, by returning nil.
4171 With MULTI_KBOARD, these events are used as placeholders
4172 when we need to randomly delete events from the queue.
4173 (They shouldn't otherwise be found in the buffer,
4174 but on some machines it appears they do show up
4175 even without MULTI_KBOARD.) */
4176 /* On Windows NT/9X, NO_EVENT is used to delete extraneous
4177 mouse events during a popup-menu call. */
4178 else if (event
->kind
== NO_EVENT
)
4179 kbd_fetch_ptr
= event
+ 1;
4180 else if (event
->kind
== HELP_EVENT
)
4182 Lisp_Object object
, position
, help
, frame
, window
;
4184 frame
= event
->frame_or_window
;
4185 object
= event
->arg
;
4186 position
= make_number (event
->code
);
4189 clear_event (event
);
4191 kbd_fetch_ptr
= event
+ 1;
4192 if (!WINDOWP (window
))
4194 obj
= Fcons (Qhelp_echo
,
4195 list5 (frame
, help
, window
, object
, position
));
4197 else if (event
->kind
== FOCUS_IN_EVENT
)
4199 /* Notification of a FocusIn event. The frame receiving the
4200 focus is in event->frame_or_window. Generate a
4201 switch-frame event if necessary. */
4202 Lisp_Object frame
, focus
;
4204 frame
= event
->frame_or_window
;
4205 focus
= FRAME_FOCUS_FRAME (XFRAME (frame
));
4209 if (!EQ (frame
, internal_last_event_frame
)
4210 && !EQ (frame
, selected_frame
))
4211 obj
= make_lispy_switch_frame (frame
);
4212 internal_last_event_frame
= frame
;
4213 kbd_fetch_ptr
= event
+ 1;
4217 /* If this event is on a different frame, return a switch-frame this
4218 time, and leave the event in the queue for next time. */
4222 frame
= event
->frame_or_window
;
4224 frame
= XCAR (frame
);
4225 else if (WINDOWP (frame
))
4226 frame
= WINDOW_FRAME (XWINDOW (frame
));
4228 focus
= FRAME_FOCUS_FRAME (XFRAME (frame
));
4232 if (! EQ (frame
, internal_last_event_frame
)
4233 && !EQ (frame
, selected_frame
))
4234 obj
= make_lispy_switch_frame (frame
);
4235 internal_last_event_frame
= frame
;
4237 /* If we didn't decide to make a switch-frame event, go ahead
4238 and build a real event from the queue entry. */
4242 obj
= make_lispy_event (event
);
4244 #if defined (USE_X_TOOLKIT) || defined (HAVE_NTGUI) || defined(MAC_OS) \
4245 || defined (USE_GTK)
4246 /* If this was a menu selection, then set the flag to inhibit
4247 writing to last_nonmenu_event. Don't do this if the event
4248 we're returning is (menu-bar), though; that indicates the
4249 beginning of the menu sequence, and we might as well leave
4250 that as the `event with parameters' for this selection. */
4252 && !EQ (event
->frame_or_window
, event
->arg
)
4253 && (event
->kind
== MENU_BAR_EVENT
4254 || event
->kind
== TOOL_BAR_EVENT
))
4255 *used_mouse_menu
= 1;
4258 /* Wipe out this event, to catch bugs. */
4259 clear_event (event
);
4260 kbd_fetch_ptr
= event
+ 1;
4265 /* Try generating a mouse motion event. */
4266 else if (!NILP (do_mouse_tracking
) && some_mouse_moved ())
4268 FRAME_PTR f
= some_mouse_moved ();
4269 Lisp_Object bar_window
;
4270 enum scroll_bar_part part
;
4274 *kbp
= current_kboard
;
4275 /* Note that this uses F to determine which display to look at.
4276 If there is no valid info, it does not store anything
4277 so x remains nil. */
4279 (*mouse_position_hook
) (&f
, 0, &bar_window
, &part
, &x
, &y
, &time
);
4283 /* Decide if we should generate a switch-frame event. Don't
4284 generate switch-frame events for motion outside of all Emacs
4290 frame
= FRAME_FOCUS_FRAME (f
);
4292 XSETFRAME (frame
, f
);
4294 if (! EQ (frame
, internal_last_event_frame
)
4295 && !EQ (frame
, selected_frame
))
4296 obj
= make_lispy_switch_frame (frame
);
4297 internal_last_event_frame
= frame
;
4300 /* If we didn't decide to make a switch-frame event, go ahead and
4301 return a mouse-motion event. */
4302 if (!NILP (x
) && NILP (obj
))
4303 obj
= make_lispy_movement (f
, bar_window
, part
, x
, y
, time
);
4305 #endif /* HAVE_MOUSE */
4307 /* We were promised by the above while loop that there was
4308 something for us to read! */
4311 input_pending
= readable_events (0);
4313 Vlast_event_frame
= internal_last_event_frame
;
4318 /* Process any events that are not user-visible,
4319 then return, without reading any user-visible events. */
4322 swallow_events (do_display
)
4327 while (kbd_fetch_ptr
!= kbd_store_ptr
)
4329 struct input_event
*event
;
4331 event
= ((kbd_fetch_ptr
< kbd_buffer
+ KBD_BUFFER_SIZE
)
4335 last_event_timestamp
= event
->timestamp
;
4337 /* These two kinds of events get special handling
4338 and don't actually appear to the command loop. */
4339 if (event
->kind
== SELECTION_REQUEST_EVENT
4340 || event
->kind
== SELECTION_CLEAR_EVENT
)
4343 struct input_event copy
;
4345 /* Remove it from the buffer before processing it,
4346 since otherwise swallow_events called recursively could see it
4347 and process it again. */
4349 kbd_fetch_ptr
= event
+ 1;
4350 input_pending
= readable_events (0);
4351 x_handle_selection_event (©
);
4353 /* We're getting selection request events, but we don't have
4362 old_timers_run
= timers_run
;
4363 get_input_pending (&input_pending
, READABLE_EVENTS_DO_TIMERS_NOW
);
4365 if (timers_run
!= old_timers_run
&& do_display
)
4366 redisplay_preserve_echo_area (7);
4369 /* Record the start of when Emacs is idle,
4370 for the sake of running idle-time timers. */
4377 /* If we are already in the idle state, do nothing. */
4378 if (! EMACS_TIME_NEG_P (timer_idleness_start_time
))
4381 EMACS_GET_TIME (timer_idleness_start_time
);
4383 timer_last_idleness_start_time
= timer_idleness_start_time
;
4385 /* Mark all idle-time timers as once again candidates for running. */
4386 for (timers
= Vtimer_idle_list
; CONSP (timers
); timers
= XCDR (timers
))
4390 timer
= XCAR (timers
);
4392 if (!VECTORP (timer
) || XVECTOR (timer
)->size
!= 8)
4394 XVECTOR (timer
)->contents
[0] = Qnil
;
4398 /* Record that Emacs is no longer idle, so stop running idle-time timers. */
4403 EMACS_SET_SECS_USECS (timer_idleness_start_time
, -1, -1);
4406 /* Resume idle timer from last idle start time. */
4409 timer_resume_idle ()
4411 if (! EMACS_TIME_NEG_P (timer_idleness_start_time
))
4414 timer_idleness_start_time
= timer_last_idleness_start_time
;
4417 /* This is only for debugging. */
4418 struct input_event last_timer_event
;
4420 /* Check whether a timer has fired. To prevent larger problems we simply
4421 disregard elements that are not proper timers. Do not make a circular
4422 timer list for the time being.
4424 Returns the number of seconds to wait until the next timer fires. If a
4425 timer is triggering now, return zero seconds.
4426 If no timer is active, return -1 seconds.
4428 If a timer is ripe, we run it, with quitting turned off.
4430 DO_IT_NOW is now ignored. It used to mean that we should
4431 run the timer directly instead of queueing a timer-event.
4432 Now we always run timers directly. */
4435 timer_check (do_it_now
)
4438 EMACS_TIME nexttime
;
4439 EMACS_TIME now
, idleness_now
;
4440 Lisp_Object timers
, idle_timers
, chosen_timer
;
4441 struct gcpro gcpro1
, gcpro2
, gcpro3
;
4443 EMACS_SET_SECS (nexttime
, -1);
4444 EMACS_SET_USECS (nexttime
, -1);
4446 /* Always consider the ordinary timers. */
4447 timers
= Vtimer_list
;
4448 /* Consider the idle timers only if Emacs is idle. */
4449 if (! EMACS_TIME_NEG_P (timer_idleness_start_time
))
4450 idle_timers
= Vtimer_idle_list
;
4453 chosen_timer
= Qnil
;
4454 GCPRO3 (timers
, idle_timers
, chosen_timer
);
4456 if (CONSP (timers
) || CONSP (idle_timers
))
4458 EMACS_GET_TIME (now
);
4459 if (! EMACS_TIME_NEG_P (timer_idleness_start_time
))
4460 EMACS_SUB_TIME (idleness_now
, now
, timer_idleness_start_time
);
4463 while (CONSP (timers
) || CONSP (idle_timers
))
4465 Lisp_Object
*vector
;
4466 Lisp_Object timer
= Qnil
, idle_timer
= Qnil
;
4467 EMACS_TIME timer_time
, idle_timer_time
;
4468 EMACS_TIME difference
, timer_difference
, idle_timer_difference
;
4470 /* Skip past invalid timers and timers already handled. */
4473 timer
= XCAR (timers
);
4474 if (!VECTORP (timer
) || XVECTOR (timer
)->size
!= 8)
4476 timers
= XCDR (timers
);
4479 vector
= XVECTOR (timer
)->contents
;
4481 if (!INTEGERP (vector
[1]) || !INTEGERP (vector
[2])
4482 || !INTEGERP (vector
[3])
4483 || ! NILP (vector
[0]))
4485 timers
= XCDR (timers
);
4489 if (!NILP (idle_timers
))
4491 timer
= XCAR (idle_timers
);
4492 if (!VECTORP (timer
) || XVECTOR (timer
)->size
!= 8)
4494 idle_timers
= XCDR (idle_timers
);
4497 vector
= XVECTOR (timer
)->contents
;
4499 if (!INTEGERP (vector
[1]) || !INTEGERP (vector
[2])
4500 || !INTEGERP (vector
[3])
4501 || ! NILP (vector
[0]))
4503 idle_timers
= XCDR (idle_timers
);
4508 /* Set TIMER, TIMER_TIME and TIMER_DIFFERENCE
4509 based on the next ordinary timer.
4510 TIMER_DIFFERENCE is the distance in time from NOW to when
4511 this timer becomes ripe (negative if it's already ripe). */
4514 timer
= XCAR (timers
);
4515 vector
= XVECTOR (timer
)->contents
;
4516 EMACS_SET_SECS (timer_time
,
4517 (XINT (vector
[1]) << 16) | (XINT (vector
[2])));
4518 EMACS_SET_USECS (timer_time
, XINT (vector
[3]));
4519 EMACS_SUB_TIME (timer_difference
, timer_time
, now
);
4522 /* Set IDLE_TIMER, IDLE_TIMER_TIME and IDLE_TIMER_DIFFERENCE
4523 based on the next idle timer. */
4524 if (!NILP (idle_timers
))
4526 idle_timer
= XCAR (idle_timers
);
4527 vector
= XVECTOR (idle_timer
)->contents
;
4528 EMACS_SET_SECS (idle_timer_time
,
4529 (XINT (vector
[1]) << 16) | (XINT (vector
[2])));
4530 EMACS_SET_USECS (idle_timer_time
, XINT (vector
[3]));
4531 EMACS_SUB_TIME (idle_timer_difference
, idle_timer_time
, idleness_now
);
4534 /* Decide which timer is the next timer,
4535 and set CHOSEN_TIMER, VECTOR and DIFFERENCE accordingly.
4536 Also step down the list where we found that timer. */
4538 if (! NILP (timers
) && ! NILP (idle_timers
))
4541 EMACS_SUB_TIME (temp
, timer_difference
, idle_timer_difference
);
4542 if (EMACS_TIME_NEG_P (temp
))
4544 chosen_timer
= timer
;
4545 timers
= XCDR (timers
);
4546 difference
= timer_difference
;
4550 chosen_timer
= idle_timer
;
4551 idle_timers
= XCDR (idle_timers
);
4552 difference
= idle_timer_difference
;
4555 else if (! NILP (timers
))
4557 chosen_timer
= timer
;
4558 timers
= XCDR (timers
);
4559 difference
= timer_difference
;
4563 chosen_timer
= idle_timer
;
4564 idle_timers
= XCDR (idle_timers
);
4565 difference
= idle_timer_difference
;
4567 vector
= XVECTOR (chosen_timer
)->contents
;
4569 /* If timer is ripe, run it if it hasn't been run. */
4570 if (EMACS_TIME_NEG_P (difference
)
4571 || (EMACS_SECS (difference
) == 0
4572 && EMACS_USECS (difference
) == 0))
4574 if (NILP (vector
[0]))
4576 int was_locked
= single_kboard
;
4577 int count
= SPECPDL_INDEX ();
4578 Lisp_Object old_deactivate_mark
= Vdeactivate_mark
;
4580 /* Mark the timer as triggered to prevent problems if the lisp
4581 code fails to reschedule it right. */
4584 specbind (Qinhibit_quit
, Qt
);
4586 call1 (Qtimer_event_handler
, chosen_timer
);
4587 Vdeactivate_mark
= old_deactivate_mark
;
4589 unbind_to (count
, Qnil
);
4591 /* Resume allowing input from any kboard, if that was true before. */
4593 any_kboard_state ();
4595 /* Since we have handled the event,
4596 we don't need to tell the caller to wake up and do it. */
4600 /* When we encounter a timer that is still waiting,
4601 return the amount of time to wait before it is ripe. */
4608 /* No timers are pending in the future. */
4609 /* Return 0 if we generated an event, and -1 if not. */
4614 DEFUN ("current-idle-time", Fcurrent_idle_time
, Scurrent_idle_time
, 0, 0, 0,
4615 doc
: /* Return the current length of Emacs idleness.
4616 The value is returned as a list of three integers. The first has the
4617 most significant 16 bits of the seconds, while the second has the
4618 least significant 16 bits. The third integer gives the microsecond
4621 The microsecond count is zero on systems that do not provide
4622 resolution finer than a second. */)
4625 if (! EMACS_TIME_NEG_P (timer_idleness_start_time
))
4627 EMACS_TIME now
, idleness_now
;
4629 EMACS_GET_TIME (now
);
4630 EMACS_SUB_TIME (idleness_now
, now
, timer_idleness_start_time
);
4632 return list3 (make_number ((EMACS_SECS (idleness_now
) >> 16) & 0xffff),
4633 make_number ((EMACS_SECS (idleness_now
) >> 0) & 0xffff),
4634 make_number (EMACS_USECS (idleness_now
)));
4640 /* Caches for modify_event_symbol. */
4641 static Lisp_Object accent_key_syms
;
4642 static Lisp_Object func_key_syms
;
4643 static Lisp_Object mouse_syms
;
4644 static Lisp_Object wheel_syms
;
4645 static Lisp_Object drag_n_drop_syms
;
4647 /* This is a list of keysym codes for special "accent" characters.
4648 It parallels lispy_accent_keys. */
4650 static int lispy_accent_codes
[] =
4652 #ifdef XK_dead_circumflex
4657 #ifdef XK_dead_grave
4662 #ifdef XK_dead_tilde
4667 #ifdef XK_dead_diaeresis
4672 #ifdef XK_dead_macron
4677 #ifdef XK_dead_degree
4682 #ifdef XK_dead_acute
4687 #ifdef XK_dead_cedilla
4692 #ifdef XK_dead_breve
4697 #ifdef XK_dead_ogonek
4702 #ifdef XK_dead_caron
4707 #ifdef XK_dead_doubleacute
4708 XK_dead_doubleacute
,
4712 #ifdef XK_dead_abovedot
4717 #ifdef XK_dead_abovering
4727 #ifdef XK_dead_belowdot
4732 #ifdef XK_dead_voiced_sound
4733 XK_dead_voiced_sound
,
4737 #ifdef XK_dead_semivoiced_sound
4738 XK_dead_semivoiced_sound
,
4754 /* This is a list of Lisp names for special "accent" characters.
4755 It parallels lispy_accent_codes. */
4757 static char *lispy_accent_keys
[] =
4775 "dead-voiced-sound",
4776 "dead-semivoiced-sound",
4782 #define FUNCTION_KEY_OFFSET 0x0
4784 char *lispy_function_keys
[] =
4788 0, /* VK_LBUTTON 0x01 */
4789 0, /* VK_RBUTTON 0x02 */
4790 "cancel", /* VK_CANCEL 0x03 */
4791 0, /* VK_MBUTTON 0x04 */
4793 0, 0, 0, /* 0x05 .. 0x07 */
4795 "backspace", /* VK_BACK 0x08 */
4796 "tab", /* VK_TAB 0x09 */
4798 0, 0, /* 0x0A .. 0x0B */
4800 "clear", /* VK_CLEAR 0x0C */
4801 "return", /* VK_RETURN 0x0D */
4803 0, 0, /* 0x0E .. 0x0F */
4805 0, /* VK_SHIFT 0x10 */
4806 0, /* VK_CONTROL 0x11 */
4807 0, /* VK_MENU 0x12 */
4808 "pause", /* VK_PAUSE 0x13 */
4809 "capslock", /* VK_CAPITAL 0x14 */
4811 0, 0, 0, 0, 0, 0, /* 0x15 .. 0x1A */
4813 "escape", /* VK_ESCAPE 0x1B */
4815 0, 0, 0, 0, /* 0x1C .. 0x1F */
4817 0, /* VK_SPACE 0x20 */
4818 "prior", /* VK_PRIOR 0x21 */
4819 "next", /* VK_NEXT 0x22 */
4820 "end", /* VK_END 0x23 */
4821 "home", /* VK_HOME 0x24 */
4822 "left", /* VK_LEFT 0x25 */
4823 "up", /* VK_UP 0x26 */
4824 "right", /* VK_RIGHT 0x27 */
4825 "down", /* VK_DOWN 0x28 */
4826 "select", /* VK_SELECT 0x29 */
4827 "print", /* VK_PRINT 0x2A */
4828 "execute", /* VK_EXECUTE 0x2B */
4829 "snapshot", /* VK_SNAPSHOT 0x2C */
4830 "insert", /* VK_INSERT 0x2D */
4831 "delete", /* VK_DELETE 0x2E */
4832 "help", /* VK_HELP 0x2F */
4834 /* VK_0 thru VK_9 are the same as ASCII '0' thru '9' (0x30 - 0x39) */
4836 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
4838 0, 0, 0, 0, 0, 0, 0, /* 0x3A .. 0x40 */
4840 /* VK_A thru VK_Z are the same as ASCII 'A' thru 'Z' (0x41 - 0x5A) */
4842 0, 0, 0, 0, 0, 0, 0, 0, 0,
4843 0, 0, 0, 0, 0, 0, 0, 0, 0,
4844 0, 0, 0, 0, 0, 0, 0, 0,
4846 "lwindow", /* VK_LWIN 0x5B */
4847 "rwindow", /* VK_RWIN 0x5C */
4848 "apps", /* VK_APPS 0x5D */
4850 0, 0, /* 0x5E .. 0x5F */
4852 "kp-0", /* VK_NUMPAD0 0x60 */
4853 "kp-1", /* VK_NUMPAD1 0x61 */
4854 "kp-2", /* VK_NUMPAD2 0x62 */
4855 "kp-3", /* VK_NUMPAD3 0x63 */
4856 "kp-4", /* VK_NUMPAD4 0x64 */
4857 "kp-5", /* VK_NUMPAD5 0x65 */
4858 "kp-6", /* VK_NUMPAD6 0x66 */
4859 "kp-7", /* VK_NUMPAD7 0x67 */
4860 "kp-8", /* VK_NUMPAD8 0x68 */
4861 "kp-9", /* VK_NUMPAD9 0x69 */
4862 "kp-multiply", /* VK_MULTIPLY 0x6A */
4863 "kp-add", /* VK_ADD 0x6B */
4864 "kp-separator", /* VK_SEPARATOR 0x6C */
4865 "kp-subtract", /* VK_SUBTRACT 0x6D */
4866 "kp-decimal", /* VK_DECIMAL 0x6E */
4867 "kp-divide", /* VK_DIVIDE 0x6F */
4868 "f1", /* VK_F1 0x70 */
4869 "f2", /* VK_F2 0x71 */
4870 "f3", /* VK_F3 0x72 */
4871 "f4", /* VK_F4 0x73 */
4872 "f5", /* VK_F5 0x74 */
4873 "f6", /* VK_F6 0x75 */
4874 "f7", /* VK_F7 0x76 */
4875 "f8", /* VK_F8 0x77 */
4876 "f9", /* VK_F9 0x78 */
4877 "f10", /* VK_F10 0x79 */
4878 "f11", /* VK_F11 0x7A */
4879 "f12", /* VK_F12 0x7B */
4880 "f13", /* VK_F13 0x7C */
4881 "f14", /* VK_F14 0x7D */
4882 "f15", /* VK_F15 0x7E */
4883 "f16", /* VK_F16 0x7F */
4884 "f17", /* VK_F17 0x80 */
4885 "f18", /* VK_F18 0x81 */
4886 "f19", /* VK_F19 0x82 */
4887 "f20", /* VK_F20 0x83 */
4888 "f21", /* VK_F21 0x84 */
4889 "f22", /* VK_F22 0x85 */
4890 "f23", /* VK_F23 0x86 */
4891 "f24", /* VK_F24 0x87 */
4893 0, 0, 0, 0, /* 0x88 .. 0x8B */
4894 0, 0, 0, 0, /* 0x8C .. 0x8F */
4896 "kp-numlock", /* VK_NUMLOCK 0x90 */
4897 "scroll", /* VK_SCROLL 0x91 */
4899 "kp-space", /* VK_NUMPAD_CLEAR 0x92 */
4900 "kp-enter", /* VK_NUMPAD_ENTER 0x93 */
4901 "kp-prior", /* VK_NUMPAD_PRIOR 0x94 */
4902 "kp-next", /* VK_NUMPAD_NEXT 0x95 */
4903 "kp-end", /* VK_NUMPAD_END 0x96 */
4904 "kp-home", /* VK_NUMPAD_HOME 0x97 */
4905 "kp-left", /* VK_NUMPAD_LEFT 0x98 */
4906 "kp-up", /* VK_NUMPAD_UP 0x99 */
4907 "kp-right", /* VK_NUMPAD_RIGHT 0x9A */
4908 "kp-down", /* VK_NUMPAD_DOWN 0x9B */
4909 "kp-insert", /* VK_NUMPAD_INSERT 0x9C */
4910 "kp-delete", /* VK_NUMPAD_DELETE 0x9D */
4912 0, 0, /* 0x9E .. 0x9F */
4915 * VK_L* & VK_R* - left and right Alt, Ctrl and Shift virtual keys.
4916 * Used only as parameters to GetAsyncKeyState and GetKeyState.
4917 * No other API or message will distinguish left and right keys this way.
4921 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
4922 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
4923 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
4924 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
4925 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
4931 "attn", /* VK_ATTN 0xF6 */
4932 "crsel", /* VK_CRSEL 0xF7 */
4933 "exsel", /* VK_EXSEL 0xF8 */
4934 "ereof", /* VK_EREOF 0xF9 */
4935 "play", /* VK_PLAY 0xFA */
4936 "zoom", /* VK_ZOOM 0xFB */
4937 "noname", /* VK_NONAME 0xFC */
4938 "pa1", /* VK_PA1 0xFD */
4939 "oem_clear", /* VK_OEM_CLEAR 0xFE */
4943 #else /* not HAVE_NTGUI */
4945 /* This should be dealt with in XTread_socket now, and that doesn't
4946 depend on the client system having the Kana syms defined. See also
4947 the XK_kana_A case below. */
4950 static char *lispy_kana_keys
[] =
4952 /* X Keysym value */
4953 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, /* 0x400 .. 0x40f */
4954 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, /* 0x410 .. 0x41f */
4955 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, /* 0x420 .. 0x42f */
4956 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, /* 0x430 .. 0x43f */
4957 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, /* 0x440 .. 0x44f */
4958 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, /* 0x450 .. 0x45f */
4959 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, /* 0x460 .. 0x46f */
4960 0,0,0,0,0,0,0,0,0,0,0,0,0,0,"overline",0,
4961 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, /* 0x480 .. 0x48f */
4962 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, /* 0x490 .. 0x49f */
4963 0, "kana-fullstop", "kana-openingbracket", "kana-closingbracket",
4964 "kana-comma", "kana-conjunctive", "kana-WO", "kana-a",
4965 "kana-i", "kana-u", "kana-e", "kana-o",
4966 "kana-ya", "kana-yu", "kana-yo", "kana-tsu",
4967 "prolongedsound", "kana-A", "kana-I", "kana-U",
4968 "kana-E", "kana-O", "kana-KA", "kana-KI",
4969 "kana-KU", "kana-KE", "kana-KO", "kana-SA",
4970 "kana-SHI", "kana-SU", "kana-SE", "kana-SO",
4971 "kana-TA", "kana-CHI", "kana-TSU", "kana-TE",
4972 "kana-TO", "kana-NA", "kana-NI", "kana-NU",
4973 "kana-NE", "kana-NO", "kana-HA", "kana-HI",
4974 "kana-FU", "kana-HE", "kana-HO", "kana-MA",
4975 "kana-MI", "kana-MU", "kana-ME", "kana-MO",
4976 "kana-YA", "kana-YU", "kana-YO", "kana-RA",
4977 "kana-RI", "kana-RU", "kana-RE", "kana-RO",
4978 "kana-WA", "kana-N", "voicedsound", "semivoicedsound",
4979 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, /* 0x4e0 .. 0x4ef */
4980 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, /* 0x4f0 .. 0x4ff */
4982 #endif /* XK_kana_A */
4985 #define FUNCTION_KEY_OFFSET 0xff00
4987 /* You'll notice that this table is arranged to be conveniently
4988 indexed by X Windows keysym values. */
4989 static char *lispy_function_keys
[] =
4991 /* X Keysym value */
4993 0, 0, 0, 0, 0, 0, 0, 0, /* 0xff00...0f */
4994 "backspace", "tab", "linefeed", "clear",
4996 0, 0, 0, "pause", /* 0xff10...1f */
4997 0, 0, 0, 0, 0, 0, 0, "escape",
4999 0, "kanji", "muhenkan", "henkan", /* 0xff20...2f */
5000 "romaji", "hiragana", "katakana", "hiragana-katakana",
5001 "zenkaku", "hankaku", "zenkaku-hankaku", "touroku",
5002 "massyo", "kana-lock", "kana-shift", "eisu-shift",
5003 "eisu-toggle", /* 0xff30...3f */
5004 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
5005 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, /* 0xff40...4f */
5007 "home", "left", "up", "right", /* 0xff50 */ /* IsCursorKey */
5008 "down", "prior", "next", "end",
5009 "begin", 0, 0, 0, 0, 0, 0, 0,
5010 "select", /* 0xff60 */ /* IsMiscFunctionKey */
5021 "break", /* 0xff6b */
5024 0, 0, 0, 0, "backtab", 0, 0, 0, /* 0xff70... */
5025 0, 0, 0, 0, 0, 0, 0, "kp-numlock", /* 0xff78... */
5026 "kp-space", /* 0xff80 */ /* IsKeypadKey */
5027 0, 0, 0, 0, 0, 0, 0, 0,
5028 "kp-tab", /* 0xff89 */
5030 "kp-enter", /* 0xff8d */
5032 "kp-f1", /* 0xff91 */
5036 "kp-home", /* 0xff95 */
5041 "kp-prior", /* kp-page-up */
5042 "kp-next", /* kp-page-down */
5048 0, 0, 0, 0, 0, 0, 0, 0, 0,
5049 "kp-multiply", /* 0xffaa */
5054 "kp-divide", /* 0xffaf */
5055 "kp-0", /* 0xffb0 */
5056 "kp-1", "kp-2", "kp-3", "kp-4", "kp-5", "kp-6", "kp-7", "kp-8", "kp-9",
5059 "kp-equal", /* 0xffbd */
5060 "f1", /* 0xffbe */ /* IsFunctionKey */
5062 "f3", "f4", "f5", "f6", "f7", "f8", "f9", "f10", /* 0xffc0 */
5063 "f11", "f12", "f13", "f14", "f15", "f16", "f17", "f18",
5064 "f19", "f20", "f21", "f22", "f23", "f24", "f25", "f26", /* 0xffd0 */
5065 "f27", "f28", "f29", "f30", "f31", "f32", "f33", "f34",
5066 "f35", 0, 0, 0, 0, 0, 0, 0, /* 0xffe0 */
5067 0, 0, 0, 0, 0, 0, 0, 0,
5068 0, 0, 0, 0, 0, 0, 0, 0, /* 0xfff0 */
5069 0, 0, 0, 0, 0, 0, 0, "delete"
5072 /* ISO 9995 Function and Modifier Keys; the first byte is 0xFE. */
5073 #define ISO_FUNCTION_KEY_OFFSET 0xfe00
5075 static char *iso_lispy_function_keys
[] =
5077 0, 0, 0, 0, 0, 0, 0, 0, /* 0xfe00 */
5078 0, 0, 0, 0, 0, 0, 0, 0, /* 0xfe08 */
5079 0, 0, 0, 0, 0, 0, 0, 0, /* 0xfe10 */
5080 0, 0, 0, 0, 0, 0, 0, 0, /* 0xfe18 */
5081 "iso-lefttab", /* 0xfe20 */
5082 "iso-move-line-up", "iso-move-line-down",
5083 "iso-partial-line-up", "iso-partial-line-down",
5084 "iso-partial-space-left", "iso-partial-space-right",
5085 "iso-set-margin-left", "iso-set-margin-right", /* 0xffe27, 28 */
5086 "iso-release-margin-left", "iso-release-margin-right",
5087 "iso-release-both-margins",
5088 "iso-fast-cursor-left", "iso-fast-cursor-right",
5089 "iso-fast-cursor-up", "iso-fast-cursor-down",
5090 "iso-continuous-underline", "iso-discontinuous-underline", /* 0xfe30, 31 */
5091 "iso-emphasize", "iso-center-object", "iso-enter", /* ... 0xfe34 */
5094 #endif /* not HAVE_NTGUI */
5096 Lisp_Object Vlispy_mouse_stem
;
5098 static char *lispy_wheel_names
[] =
5100 "wheel-up", "wheel-down"
5103 /* drag-n-drop events are generated when a set of selected files are
5104 dragged from another application and dropped onto an Emacs window. */
5105 static char *lispy_drag_n_drop_names
[] =
5110 /* Scroll bar parts. */
5111 Lisp_Object Qabove_handle
, Qhandle
, Qbelow_handle
;
5112 Lisp_Object Qup
, Qdown
, Qbottom
, Qend_scroll
;
5113 Lisp_Object Qtop
, Qratio
;
5115 /* An array of scroll bar parts, indexed by an enum scroll_bar_part value. */
5116 Lisp_Object
*scroll_bar_parts
[] = {
5117 &Qabove_handle
, &Qhandle
, &Qbelow_handle
,
5118 &Qup
, &Qdown
, &Qtop
, &Qbottom
, &Qend_scroll
, &Qratio
5121 /* A vector, indexed by button number, giving the down-going location
5122 of currently depressed buttons, both scroll bar and non-scroll bar.
5124 The elements have the form
5125 (BUTTON-NUMBER MODIFIER-MASK . REST)
5126 where REST is the cdr of a position as it would be reported in the event.
5128 The make_lispy_event function stores positions here to tell the
5129 difference between click and drag events, and to store the starting
5130 location to be included in drag events. */
5132 static Lisp_Object button_down_location
;
5134 /* Information about the most recent up-going button event: Which
5135 button, what location, and what time. */
5137 static int last_mouse_button
;
5138 static int last_mouse_x
;
5139 static int last_mouse_y
;
5140 static unsigned long button_down_time
;
5142 /* The maximum time between clicks to make a double-click, or Qnil to
5143 disable double-click detection, or Qt for no time limit. */
5145 Lisp_Object Vdouble_click_time
;
5147 /* Maximum number of pixels the mouse may be moved between clicks
5148 to make a double-click. */
5150 EMACS_INT double_click_fuzz
;
5152 /* The number of clicks in this multiple-click. */
5154 int double_click_count
;
5156 /* Return position of a mouse click or wheel event */
5159 make_lispy_position (f
, x
, y
, time
)
5165 enum window_part part
;
5166 Lisp_Object posn
= Qnil
;
5167 Lisp_Object extra_info
= Qnil
;
5170 /* Set `window' to the window under frame pixel coordinates (x,y) */
5172 window
= window_from_coordinates (f
, XINT (*x
), XINT (*y
),
5173 &part
, &wx
, &wy
, 0);
5177 if (WINDOWP (window
))
5179 /* It's a click in window window at frame coordinates (x,y) */
5180 struct window
*w
= XWINDOW (window
);
5181 Lisp_Object string_info
= Qnil
;
5182 int textpos
= -1, rx
= -1, ry
= -1;
5183 int dx
= -1, dy
= -1;
5184 int width
= -1, height
= -1;
5185 Lisp_Object object
= Qnil
;
5187 /* Set event coordinates to window-relative coordinates
5188 for constructing the Lisp event below. */
5192 if (part
== ON_TEXT
)
5194 wx
+= WINDOW_LEFT_MARGIN_WIDTH (w
);
5196 else if (part
== ON_MODE_LINE
|| part
== ON_HEADER_LINE
)
5198 /* Mode line or header line. Look for a string under
5199 the mouse that may have a `local-map' property. */
5203 posn
= part
== ON_MODE_LINE
? Qmode_line
: Qheader_line
;
5205 string
= mode_line_string (w
, part
, &rx
, &ry
, &charpos
,
5206 &object
, &dx
, &dy
, &width
, &height
);
5207 if (STRINGP (string
))
5208 string_info
= Fcons (string
, make_number (charpos
));
5209 if (w
== XWINDOW (selected_window
))
5212 textpos
= XMARKER (w
->pointm
)->charpos
;
5214 else if (part
== ON_VERTICAL_BORDER
)
5216 posn
= Qvertical_line
;
5221 else if (part
== ON_LEFT_MARGIN
|| part
== ON_RIGHT_MARGIN
)
5226 posn
= (part
== ON_LEFT_MARGIN
) ? Qleft_margin
: Qright_margin
;
5228 string
= marginal_area_string (w
, part
, &rx
, &ry
, &charpos
,
5229 &object
, &dx
, &dy
, &width
, &height
);
5230 if (STRINGP (string
))
5231 string_info
= Fcons (string
, make_number (charpos
));
5232 if (part
== ON_LEFT_MARGIN
)
5235 wx
= window_box_right_offset (w
, TEXT_AREA
) - 1;
5237 else if (part
== ON_LEFT_FRINGE
)
5239 posn
= Qleft_fringe
;
5242 wx
= (WINDOW_HAS_FRINGES_OUTSIDE_MARGINS (w
)
5244 : window_box_width (w
, LEFT_MARGIN_AREA
));
5247 else if (part
== ON_RIGHT_FRINGE
)
5249 posn
= Qright_fringe
;
5252 wx
= (window_box_width (w
, LEFT_MARGIN_AREA
)
5253 + window_box_width (w
, TEXT_AREA
)
5254 + (WINDOW_HAS_FRINGES_OUTSIDE_MARGINS (w
)
5255 ? window_box_width (w
, RIGHT_MARGIN_AREA
)
5261 /* Note: We have no special posn for part == ON_SCROLL_BAR. */
5262 wx
= max (WINDOW_LEFT_MARGIN_WIDTH (w
), wx
);
5267 Lisp_Object string2
, object2
= Qnil
;
5268 struct display_pos p
;
5270 int width2
, height2
;
5271 string2
= buffer_posn_from_coords (w
, &wx
, &wy
, &p
,
5272 &object2
, &dx2
, &dy2
,
5274 textpos
= CHARPOS (p
.pos
);
5275 if (rx
< 0) rx
= wx
;
5276 if (ry
< 0) ry
= wy
;
5277 if (dx
< 0) dx
= dx2
;
5278 if (dy
< 0) dy
= dy2
;
5279 if (width
< 0) width
= width2
;
5280 if (height
< 0) height
= height2
;
5284 posn
= make_number (textpos
);
5285 if (STRINGP (string2
))
5286 string_info
= Fcons (string2
,
5287 make_number (CHARPOS (p
.string_pos
)));
5293 #ifdef HAVE_WINDOW_SYSTEM
5294 if (IMAGEP (object
))
5296 Lisp_Object image_map
, hotspot
;
5297 if ((image_map
= Fplist_get (XCDR (object
), QCmap
),
5299 && (hotspot
= find_hot_spot (image_map
, dx
, dy
),
5301 && (hotspot
= XCDR (hotspot
), CONSP (hotspot
)))
5302 posn
= XCAR (hotspot
);
5307 extra_info
= Fcons (object
,
5308 Fcons (Fcons (make_number (dx
),
5310 Fcons (Fcons (make_number (width
),
5311 make_number (height
)),
5315 extra_info
= Fcons (string_info
,
5316 Fcons (make_number (textpos
),
5317 Fcons (Fcons (make_number (rx
),
5323 XSETFRAME (window
, f
);
5328 XSETFASTINT (*x
, 0);
5329 XSETFASTINT (*y
, 0);
5332 return Fcons (window
,
5334 Fcons (Fcons (*x
, *y
),
5335 Fcons (make_number (time
),
5339 /* Given a struct input_event, build the lisp event which represents
5340 it. If EVENT is 0, build a mouse movement event from the mouse
5341 movement buffer, which should have a movement event in it.
5343 Note that events must be passed to this function in the order they
5344 are received; this function stores the location of button presses
5345 in order to build drag events when the button is released. */
5348 make_lispy_event (event
)
5349 struct input_event
*event
;
5353 switch (SWITCH_ENUM_CAST (event
->kind
))
5355 /* A simple keystroke. */
5356 case ASCII_KEYSTROKE_EVENT
:
5358 Lisp_Object lispy_c
;
5359 int c
= event
->code
& 0377;
5360 /* Turn ASCII characters into control characters
5362 if (event
->modifiers
& ctrl_modifier
)
5363 c
= make_ctrl_char (c
);
5365 /* Add in the other modifier bits. We took care of ctrl_modifier
5366 just above, and the shift key was taken care of by the X code,
5367 and applied to control characters by make_ctrl_char. */
5368 c
|= (event
->modifiers
5369 & (meta_modifier
| alt_modifier
5370 | hyper_modifier
| super_modifier
));
5371 /* Distinguish Shift-SPC from SPC. */
5372 if ((event
->code
& 0377) == 040
5373 && event
->modifiers
& shift_modifier
)
5374 c
|= shift_modifier
;
5375 button_down_time
= 0;
5376 XSETFASTINT (lispy_c
, c
);
5380 case MULTIBYTE_CHAR_KEYSTROKE_EVENT
:
5382 Lisp_Object lispy_c
;
5383 int c
= event
->code
;
5385 /* Add in the other modifier bits. We took care of ctrl_modifier
5386 just above, and the shift key was taken care of by the X code,
5387 and applied to control characters by make_ctrl_char. */
5388 c
|= (event
->modifiers
5389 & (meta_modifier
| alt_modifier
5390 | hyper_modifier
| super_modifier
| ctrl_modifier
));
5391 /* What about the `shift' modifier ? */
5392 button_down_time
= 0;
5393 XSETFASTINT (lispy_c
, c
);
5397 /* A function key. The symbol may need to have modifier prefixes
5399 case NON_ASCII_KEYSTROKE_EVENT
:
5400 button_down_time
= 0;
5402 for (i
= 0; i
< sizeof (lispy_accent_codes
) / sizeof (int); i
++)
5403 if (event
->code
== lispy_accent_codes
[i
])
5404 return modify_event_symbol (i
,
5406 Qfunction_key
, Qnil
,
5407 lispy_accent_keys
, &accent_key_syms
,
5408 (sizeof (lispy_accent_keys
)
5409 / sizeof (lispy_accent_keys
[0])));
5413 if (event
->code
>= 0x400 && event
->code
< 0x500)
5414 return modify_event_symbol (event
->code
- 0x400,
5415 event
->modifiers
& ~shift_modifier
,
5416 Qfunction_key
, Qnil
,
5417 lispy_kana_keys
, &func_key_syms
,
5418 (sizeof (lispy_kana_keys
)
5419 / sizeof (lispy_kana_keys
[0])));
5420 #endif /* XK_kana_A */
5423 #ifdef ISO_FUNCTION_KEY_OFFSET
5424 if (event
->code
< FUNCTION_KEY_OFFSET
5425 && event
->code
>= ISO_FUNCTION_KEY_OFFSET
)
5426 return modify_event_symbol (event
->code
- ISO_FUNCTION_KEY_OFFSET
,
5428 Qfunction_key
, Qnil
,
5429 iso_lispy_function_keys
, &func_key_syms
,
5430 (sizeof (iso_lispy_function_keys
)
5431 / sizeof (iso_lispy_function_keys
[0])));
5434 /* Handle system-specific or unknown keysyms. */
5435 if (event
->code
& (1 << 28)
5436 || event
->code
- FUNCTION_KEY_OFFSET
< 0
5437 || (event
->code
- FUNCTION_KEY_OFFSET
5438 >= sizeof lispy_function_keys
/ sizeof *lispy_function_keys
)
5439 || !lispy_function_keys
[event
->code
- FUNCTION_KEY_OFFSET
])
5441 /* We need to use an alist rather than a vector as the cache
5442 since we can't make a vector long enuf. */
5443 if (NILP (current_kboard
->system_key_syms
))
5444 current_kboard
->system_key_syms
= Fcons (Qnil
, Qnil
);
5445 return modify_event_symbol (event
->code
,
5448 current_kboard
->Vsystem_key_alist
,
5449 0, ¤t_kboard
->system_key_syms
,
5453 return modify_event_symbol (event
->code
- FUNCTION_KEY_OFFSET
,
5455 Qfunction_key
, Qnil
,
5456 lispy_function_keys
, &func_key_syms
,
5457 (sizeof (lispy_function_keys
)
5458 / sizeof (lispy_function_keys
[0])));
5461 /* A mouse click. Figure out where it is, decide whether it's
5462 a press, click or drag, and build the appropriate structure. */
5463 case MOUSE_CLICK_EVENT
:
5464 #ifndef USE_TOOLKIT_SCROLL_BARS
5465 case SCROLL_BAR_CLICK_EVENT
:
5468 int button
= event
->code
;
5470 Lisp_Object position
;
5471 Lisp_Object
*start_pos_ptr
;
5472 Lisp_Object start_pos
;
5476 /* Build the position as appropriate for this mouse click. */
5477 if (event
->kind
== MOUSE_CLICK_EVENT
)
5479 struct frame
*f
= XFRAME (event
->frame_or_window
);
5480 #if ! defined (USE_X_TOOLKIT) && ! defined (USE_GTK)
5484 /* Ignore mouse events that were made on frame that
5485 have been deleted. */
5486 if (! FRAME_LIVE_P (f
))
5489 #if ! defined (USE_X_TOOLKIT) && ! defined (USE_GTK)
5490 /* EVENT->x and EVENT->y are frame-relative pixel
5491 coordinates at this place. Under old redisplay, COLUMN
5492 and ROW are set to frame relative glyph coordinates
5493 which are then used to determine whether this click is
5494 in a menu (non-toolkit version). */
5495 pixel_to_glyph_coords (f
, XINT (event
->x
), XINT (event
->y
),
5496 &column
, &row
, NULL
, 1);
5498 /* In the non-toolkit version, clicks on the menu bar
5499 are ordinary button events in the event buffer.
5500 Distinguish them, and invoke the menu.
5502 (In the toolkit version, the toolkit handles the menu bar
5503 and Emacs doesn't know about it until after the user
5504 makes a selection.) */
5505 if (row
>= 0 && row
< FRAME_MENU_BAR_LINES (f
)
5506 && (event
->modifiers
& down_modifier
))
5508 Lisp_Object items
, item
;
5513 /* Activate the menu bar on the down event. If the
5514 up event comes in before the menu code can deal with it,
5516 if (! (event
->modifiers
& down_modifier
))
5520 /* Find the menu bar item under `column'. */
5522 items
= FRAME_MENU_BAR_ITEMS (f
);
5523 for (i
= 0; i
< XVECTOR (items
)->size
; i
+= 4)
5525 Lisp_Object pos
, string
;
5526 string
= AREF (items
, i
+ 1);
5527 pos
= AREF (items
, i
+ 3);
5530 if (column
>= XINT (pos
)
5531 && column
< XINT (pos
) + SCHARS (string
))
5533 item
= AREF (items
, i
);
5538 /* ELisp manual 2.4b says (x y) are window relative but
5539 code says they are frame-relative. */
5541 = Fcons (event
->frame_or_window
,
5543 Fcons (Fcons (event
->x
, event
->y
),
5544 Fcons (make_number (event
->timestamp
),
5547 return Fcons (item
, Fcons (position
, Qnil
));
5549 #endif /* not USE_X_TOOLKIT && not USE_GTK */
5551 position
= make_lispy_position (f
, &event
->x
, &event
->y
,
5554 #ifndef USE_TOOLKIT_SCROLL_BARS
5557 /* It's a scrollbar click. */
5559 Lisp_Object portion_whole
;
5562 window
= event
->frame_or_window
;
5563 portion_whole
= Fcons (event
->x
, event
->y
);
5564 part
= *scroll_bar_parts
[(int) event
->part
];
5568 Fcons (Qvertical_scroll_bar
,
5569 Fcons (portion_whole
,
5570 Fcons (make_number (event
->timestamp
),
5571 Fcons (part
, Qnil
)))));
5573 #endif /* not USE_TOOLKIT_SCROLL_BARS */
5575 if (button
>= ASIZE (button_down_location
))
5577 button_down_location
= larger_vector (button_down_location
,
5579 mouse_syms
= larger_vector (mouse_syms
, button
+ 1, Qnil
);
5582 start_pos_ptr
= &AREF (button_down_location
, button
);
5583 start_pos
= *start_pos_ptr
;
5584 *start_pos_ptr
= Qnil
;
5587 /* On window-system frames, use the value of
5588 double-click-fuzz as is. On other frames, interpret it
5589 as a multiple of 1/8 characters. */
5593 if (WINDOWP (event
->frame_or_window
))
5594 f
= XFRAME (XWINDOW (event
->frame_or_window
)->frame
);
5595 else if (FRAMEP (event
->frame_or_window
))
5596 f
= XFRAME (event
->frame_or_window
);
5600 if (FRAME_WINDOW_P (f
))
5601 fuzz
= double_click_fuzz
;
5603 fuzz
= double_click_fuzz
/ 8;
5605 is_double
= (button
== last_mouse_button
5606 && (abs (XINT (event
->x
) - last_mouse_x
) <= fuzz
)
5607 && (abs (XINT (event
->y
) - last_mouse_y
) <= fuzz
)
5608 && button_down_time
!= 0
5609 && (EQ (Vdouble_click_time
, Qt
)
5610 || (INTEGERP (Vdouble_click_time
)
5611 && ((int)(event
->timestamp
- button_down_time
)
5612 < XINT (Vdouble_click_time
)))));
5615 last_mouse_button
= button
;
5616 last_mouse_x
= XINT (event
->x
);
5617 last_mouse_y
= XINT (event
->y
);
5619 /* If this is a button press, squirrel away the location, so
5620 we can decide later whether it was a click or a drag. */
5621 if (event
->modifiers
& down_modifier
)
5625 double_click_count
++;
5626 event
->modifiers
|= ((double_click_count
> 2)
5631 double_click_count
= 1;
5632 button_down_time
= event
->timestamp
;
5633 *start_pos_ptr
= Fcopy_alist (position
);
5634 ignore_mouse_drag_p
= 0;
5637 /* Now we're releasing a button - check the co-ordinates to
5638 see if this was a click or a drag. */
5639 else if (event
->modifiers
& up_modifier
)
5641 /* If we did not see a down before this up, ignore the up.
5642 Probably this happened because the down event chose a
5643 menu item. It would be an annoyance to treat the
5644 release of the button that chose the menu item as a
5647 if (!CONSP (start_pos
))
5650 event
->modifiers
&= ~up_modifier
;
5651 #if 0 /* Formerly we treated an up with no down as a click event. */
5652 if (!CONSP (start_pos
))
5653 event
->modifiers
|= click_modifier
;
5658 EMACS_INT xdiff
= double_click_fuzz
, ydiff
= double_click_fuzz
;
5660 /* The third element of every position
5661 should be the (x,y) pair. */
5662 down
= Fcar (Fcdr (Fcdr (start_pos
)));
5664 && INTEGERP (XCAR (down
)) && INTEGERP (XCDR (down
)))
5666 xdiff
= XINT (event
->x
) - XINT (XCAR (down
));
5667 ydiff
= XINT (event
->y
) - XINT (XCDR (down
));
5670 if (ignore_mouse_drag_p
)
5672 event
->modifiers
|= click_modifier
;
5673 ignore_mouse_drag_p
= 0;
5675 else if (xdiff
< double_click_fuzz
&& xdiff
> - double_click_fuzz
5676 && ydiff
< double_click_fuzz
&& ydiff
> - double_click_fuzz
5677 /* Maybe the mouse has moved a lot, caused scrolling, and
5678 eventually ended up at the same screen position (but
5679 not buffer position) in which case it is a drag, not
5681 /* FIXME: OTOH if the buffer position has changed
5682 because of a timer or process filter rather than
5683 because of mouse movement, it should be considered as
5684 a click. But mouse-drag-region completely ignores
5685 this case and it hasn't caused any real problem, so
5686 it's probably OK to ignore it as well. */
5687 && EQ (Fcar (Fcdr (start_pos
)), Fcar (Fcdr (position
))))
5688 /* Mouse hasn't moved (much). */
5689 event
->modifiers
|= click_modifier
;
5692 button_down_time
= 0;
5693 event
->modifiers
|= drag_modifier
;
5696 /* Don't check is_double; treat this as multiple
5697 if the down-event was multiple. */
5698 if (double_click_count
> 1)
5699 event
->modifiers
|= ((double_click_count
> 2)
5705 /* Every mouse event should either have the down_modifier or
5706 the up_modifier set. */
5710 /* Get the symbol we should use for the mouse click. */
5713 head
= modify_event_symbol (button
,
5715 Qmouse_click
, Vlispy_mouse_stem
,
5718 XVECTOR (mouse_syms
)->size
);
5719 if (event
->modifiers
& drag_modifier
)
5724 else if (event
->modifiers
& (double_modifier
| triple_modifier
))
5727 Fcons (make_number (double_click_count
),
5738 Lisp_Object position
;
5741 /* Build the position as appropriate for this mouse click. */
5742 struct frame
*f
= XFRAME (event
->frame_or_window
);
5744 /* Ignore wheel events that were made on frame that have been
5746 if (! FRAME_LIVE_P (f
))
5749 position
= make_lispy_position (f
, &event
->x
, &event
->y
,
5752 /* Set double or triple modifiers to indicate the wheel speed. */
5754 /* On window-system frames, use the value of
5755 double-click-fuzz as is. On other frames, interpret it
5756 as a multiple of 1/8 characters. */
5761 if (WINDOWP (event
->frame_or_window
))
5762 f
= XFRAME (XWINDOW (event
->frame_or_window
)->frame
);
5763 else if (FRAMEP (event
->frame_or_window
))
5764 f
= XFRAME (event
->frame_or_window
);
5768 if (FRAME_WINDOW_P (f
))
5769 fuzz
= double_click_fuzz
;
5771 fuzz
= double_click_fuzz
/ 8;
5773 is_double
= (last_mouse_button
< 0
5774 && (abs (XINT (event
->x
) - last_mouse_x
) <= fuzz
)
5775 && (abs (XINT (event
->y
) - last_mouse_y
) <= fuzz
)
5776 && button_down_time
!= 0
5777 && (EQ (Vdouble_click_time
, Qt
)
5778 || (INTEGERP (Vdouble_click_time
)
5779 && ((int)(event
->timestamp
- button_down_time
)
5780 < XINT (Vdouble_click_time
)))));
5783 double_click_count
++;
5784 event
->modifiers
|= ((double_click_count
> 2)
5790 double_click_count
= 1;
5791 event
->modifiers
|= click_modifier
;
5794 button_down_time
= event
->timestamp
;
5795 /* Use a negative value to distinguish wheel from mouse button. */
5796 last_mouse_button
= -1;
5797 last_mouse_x
= XINT (event
->x
);
5798 last_mouse_y
= XINT (event
->y
);
5804 if (event
->modifiers
& up_modifier
)
5806 /* Emit a wheel-up event. */
5807 event
->modifiers
&= ~up_modifier
;
5810 else if (event
->modifiers
& down_modifier
)
5812 /* Emit a wheel-down event. */
5813 event
->modifiers
&= ~down_modifier
;
5817 /* Every wheel event should either have the down_modifier or
5818 the up_modifier set. */
5821 /* Get the symbol we should use for the wheel event. */
5822 head
= modify_event_symbol (symbol_num
,
5828 ASIZE (wheel_syms
));
5831 if (event
->modifiers
& (double_modifier
| triple_modifier
))
5834 Fcons (make_number (double_click_count
),
5843 #ifdef USE_TOOLKIT_SCROLL_BARS
5845 /* We don't have down and up events if using toolkit scroll bars,
5846 so make this always a click event. Store in the `part' of
5847 the Lisp event a symbol which maps to the following actions:
5849 `above_handle' page up
5850 `below_handle' page down
5854 `bottom' bottom of buffer
5855 `handle' thumb has been dragged.
5856 `end-scroll' end of interaction with scroll bar
5858 The incoming input_event contains in its `part' member an
5859 index of type `enum scroll_bar_part' which we can use as an
5860 index in scroll_bar_parts to get the appropriate symbol. */
5862 case SCROLL_BAR_CLICK_EVENT
:
5864 Lisp_Object position
, head
, window
, portion_whole
, part
;
5866 window
= event
->frame_or_window
;
5867 portion_whole
= Fcons (event
->x
, event
->y
);
5868 part
= *scroll_bar_parts
[(int) event
->part
];
5872 Fcons (Qvertical_scroll_bar
,
5873 Fcons (portion_whole
,
5874 Fcons (make_number (event
->timestamp
),
5875 Fcons (part
, Qnil
)))));
5877 /* Always treat scroll bar events as clicks. */
5878 event
->modifiers
|= click_modifier
;
5879 event
->modifiers
&= ~up_modifier
;
5881 if (event
->code
>= ASIZE (mouse_syms
))
5882 mouse_syms
= larger_vector (mouse_syms
, event
->code
+ 1, Qnil
);
5884 /* Get the symbol we should use for the mouse click. */
5885 head
= modify_event_symbol (event
->code
,
5890 XVECTOR (mouse_syms
)->size
);
5891 return Fcons (head
, Fcons (position
, Qnil
));
5894 #endif /* USE_TOOLKIT_SCROLL_BARS */
5897 case W32_SCROLL_BAR_CLICK_EVENT
:
5899 int button
= event
->code
;
5901 Lisp_Object position
;
5902 Lisp_Object
*start_pos_ptr
;
5903 Lisp_Object start_pos
;
5907 Lisp_Object portion_whole
;
5910 window
= event
->frame_or_window
;
5911 portion_whole
= Fcons (event
->x
, event
->y
);
5912 part
= *scroll_bar_parts
[(int) event
->part
];
5916 Fcons (Qvertical_scroll_bar
,
5917 Fcons (portion_whole
,
5918 Fcons (make_number (event
->timestamp
),
5919 Fcons (part
, Qnil
)))));
5922 /* Always treat W32 scroll bar events as clicks. */
5923 event
->modifiers
|= click_modifier
;
5926 /* Get the symbol we should use for the mouse click. */
5929 head
= modify_event_symbol (button
,
5934 XVECTOR (mouse_syms
)->size
);
5940 #endif /* WINDOWSNT */
5942 case DRAG_N_DROP_EVENT
:
5945 Lisp_Object head
, position
;
5948 f
= XFRAME (event
->frame_or_window
);
5951 /* Ignore mouse events that were made on frames that
5952 have been deleted. */
5953 if (! FRAME_LIVE_P (f
))
5956 position
= make_lispy_position (f
, &event
->x
, &event
->y
,
5959 head
= modify_event_symbol (0, event
->modifiers
,
5961 lispy_drag_n_drop_names
,
5962 &drag_n_drop_syms
, 1);
5968 #endif /* HAVE_MOUSE */
5970 #if defined (USE_X_TOOLKIT) || defined (HAVE_NTGUI) || defined (MAC_OS) \
5971 || defined (USE_GTK)
5972 case MENU_BAR_EVENT
:
5973 if (EQ (event
->arg
, event
->frame_or_window
))
5974 /* This is the prefix key. We translate this to
5975 `(menu_bar)' because the code in keyboard.c for menu
5976 events, which we use, relies on this. */
5977 return Fcons (Qmenu_bar
, Qnil
);
5981 case SELECT_WINDOW_EVENT
:
5982 /* Make an event (select-window (WINDOW)). */
5983 return Fcons (Qselect_window
,
5984 Fcons (Fcons (event
->frame_or_window
, Qnil
),
5987 case TOOL_BAR_EVENT
:
5988 if (EQ (event
->arg
, event
->frame_or_window
))
5989 /* This is the prefix key. We translate this to
5990 `(tool_bar)' because the code in keyboard.c for tool bar
5991 events, which we use, relies on this. */
5992 return Fcons (Qtool_bar
, Qnil
);
5993 else if (SYMBOLP (event
->arg
))
5994 return apply_modifiers (event
->modifiers
, event
->arg
);
5997 case USER_SIGNAL_EVENT
:
5998 /* A user signal. */
6000 char *name
= find_user_signal_name (event
->code
);
6003 return intern (name
);
6006 case SAVE_SESSION_EVENT
:
6007 return Qsave_session
;
6010 case MAC_APPLE_EVENT
:
6012 Lisp_Object spec
[2];
6016 return Fcons (Qmac_apple_event
,
6017 Fcons (Fvector (2, spec
),
6018 Fcons (event
->arg
, Qnil
)));
6022 /* The 'kind' field of the event is something we don't recognize. */
6031 make_lispy_movement (frame
, bar_window
, part
, x
, y
, time
)
6033 Lisp_Object bar_window
;
6034 enum scroll_bar_part part
;
6038 /* Is it a scroll bar movement? */
6039 if (frame
&& ! NILP (bar_window
))
6041 Lisp_Object part_sym
;
6043 part_sym
= *scroll_bar_parts
[(int) part
];
6044 return Fcons (Qscroll_bar_movement
,
6045 (Fcons (Fcons (bar_window
,
6046 Fcons (Qvertical_scroll_bar
,
6047 Fcons (Fcons (x
, y
),
6048 Fcons (make_number (time
),
6054 /* Or is it an ordinary mouse movement? */
6057 Lisp_Object position
;
6059 position
= make_lispy_position (frame
, &x
, &y
, time
);
6061 return Fcons (Qmouse_movement
,
6067 #endif /* HAVE_MOUSE */
6069 /* Construct a switch frame event. */
6071 make_lispy_switch_frame (frame
)
6074 return Fcons (Qswitch_frame
, Fcons (frame
, Qnil
));
6077 /* Manipulating modifiers. */
6079 /* Parse the name of SYMBOL, and return the set of modifiers it contains.
6081 If MODIFIER_END is non-zero, set *MODIFIER_END to the position in
6082 SYMBOL's name of the end of the modifiers; the string from this
6083 position is the unmodified symbol name.
6085 This doesn't use any caches. */
6088 parse_modifiers_uncached (symbol
, modifier_end
)
6096 CHECK_SYMBOL (symbol
);
6099 name
= SYMBOL_NAME (symbol
);
6101 for (i
= 0; i
+2 <= SBYTES (name
); )
6103 int this_mod_end
= 0;
6106 /* See if the name continues with a modifier word.
6107 Check that the word appears, but don't check what follows it.
6108 Set this_mod and this_mod_end to record what we find. */
6110 switch (SREF (name
, i
))
6112 #define SINGLE_LETTER_MOD(BIT) \
6113 (this_mod_end = i + 1, this_mod = BIT)
6116 SINGLE_LETTER_MOD (alt_modifier
);
6120 SINGLE_LETTER_MOD (ctrl_modifier
);
6124 SINGLE_LETTER_MOD (hyper_modifier
);
6128 SINGLE_LETTER_MOD (meta_modifier
);
6132 SINGLE_LETTER_MOD (shift_modifier
);
6136 SINGLE_LETTER_MOD (super_modifier
);
6139 #undef SINGLE_LETTER_MOD
6141 #define MULTI_LETTER_MOD(BIT, NAME, LEN) \
6142 if (i + LEN + 1 <= SBYTES (name) \
6143 && ! strncmp (SDATA (name) + i, NAME, LEN)) \
6145 this_mod_end = i + LEN; \
6150 MULTI_LETTER_MOD (drag_modifier
, "drag", 4);
6151 MULTI_LETTER_MOD (down_modifier
, "down", 4);
6152 MULTI_LETTER_MOD (double_modifier
, "double", 6);
6156 MULTI_LETTER_MOD (triple_modifier
, "triple", 6);
6158 #undef MULTI_LETTER_MOD
6162 /* If we found no modifier, stop looking for them. */
6163 if (this_mod_end
== 0)
6166 /* Check there is a dash after the modifier, so that it
6167 really is a modifier. */
6168 if (this_mod_end
>= SBYTES (name
)
6169 || SREF (name
, this_mod_end
) != '-')
6172 /* This modifier is real; look for another. */
6173 modifiers
|= this_mod
;
6174 i
= this_mod_end
+ 1;
6177 /* Should we include the `click' modifier? */
6178 if (! (modifiers
& (down_modifier
| drag_modifier
6179 | double_modifier
| triple_modifier
))
6180 && i
+ 7 == SBYTES (name
)
6181 && strncmp (SDATA (name
) + i
, "mouse-", 6) == 0
6182 && ('0' <= SREF (name
, i
+ 6) && SREF (name
, i
+ 6) <= '9'))
6183 modifiers
|= click_modifier
;
6191 /* Return a symbol whose name is the modifier prefixes for MODIFIERS
6192 prepended to the string BASE[0..BASE_LEN-1].
6193 This doesn't use any caches. */
6195 apply_modifiers_uncached (modifiers
, base
, base_len
, base_len_byte
)
6198 int base_len
, base_len_byte
;
6200 /* Since BASE could contain nulls, we can't use intern here; we have
6201 to use Fintern, which expects a genuine Lisp_String, and keeps a
6204 = (char *) alloca (sizeof ("A-C-H-M-S-s-down-drag-double-triple-"));
6210 /* Only the event queue may use the `up' modifier; it should always
6211 be turned into a click or drag event before presented to lisp code. */
6212 if (modifiers
& up_modifier
)
6215 if (modifiers
& alt_modifier
) { *p
++ = 'A'; *p
++ = '-'; }
6216 if (modifiers
& ctrl_modifier
) { *p
++ = 'C'; *p
++ = '-'; }
6217 if (modifiers
& hyper_modifier
) { *p
++ = 'H'; *p
++ = '-'; }
6218 if (modifiers
& meta_modifier
) { *p
++ = 'M'; *p
++ = '-'; }
6219 if (modifiers
& shift_modifier
) { *p
++ = 'S'; *p
++ = '-'; }
6220 if (modifiers
& super_modifier
) { *p
++ = 's'; *p
++ = '-'; }
6221 if (modifiers
& double_modifier
) { strcpy (p
, "double-"); p
+= 7; }
6222 if (modifiers
& triple_modifier
) { strcpy (p
, "triple-"); p
+= 7; }
6223 if (modifiers
& down_modifier
) { strcpy (p
, "down-"); p
+= 5; }
6224 if (modifiers
& drag_modifier
) { strcpy (p
, "drag-"); p
+= 5; }
6225 /* The click modifier is denoted by the absence of other modifiers. */
6229 mod_len
= p
- new_mods
;
6233 Lisp_Object new_name
;
6235 new_name
= make_uninit_multibyte_string (mod_len
+ base_len
,
6236 mod_len
+ base_len_byte
);
6237 bcopy (new_mods
, SDATA (new_name
), mod_len
);
6238 bcopy (base
, SDATA (new_name
) + mod_len
, base_len_byte
);
6240 return Fintern (new_name
, Qnil
);
6245 static char *modifier_names
[] =
6247 "up", "down", "drag", "click", "double", "triple", 0, 0,
6248 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
6249 0, 0, "alt", "super", "hyper", "shift", "control", "meta"
6251 #define NUM_MOD_NAMES (sizeof (modifier_names) / sizeof (modifier_names[0]))
6253 static Lisp_Object modifier_symbols
;
6255 /* Return the list of modifier symbols corresponding to the mask MODIFIERS. */
6257 lispy_modifier_list (modifiers
)
6260 Lisp_Object modifier_list
;
6263 modifier_list
= Qnil
;
6264 for (i
= 0; (1<<i
) <= modifiers
&& i
< NUM_MOD_NAMES
; i
++)
6265 if (modifiers
& (1<<i
))
6266 modifier_list
= Fcons (XVECTOR (modifier_symbols
)->contents
[i
],
6269 return modifier_list
;
6273 /* Parse the modifiers on SYMBOL, and return a list like (UNMODIFIED MASK),
6274 where UNMODIFIED is the unmodified form of SYMBOL,
6275 MASK is the set of modifiers present in SYMBOL's name.
6276 This is similar to parse_modifiers_uncached, but uses the cache in
6277 SYMBOL's Qevent_symbol_element_mask property, and maintains the
6278 Qevent_symbol_elements property. */
6281 parse_modifiers (symbol
)
6284 Lisp_Object elements
;
6286 elements
= Fget (symbol
, Qevent_symbol_element_mask
);
6287 if (CONSP (elements
))
6292 int modifiers
= parse_modifiers_uncached (symbol
, &end
);
6293 Lisp_Object unmodified
;
6296 unmodified
= Fintern (make_string (SDATA (SYMBOL_NAME (symbol
)) + end
,
6297 SBYTES (SYMBOL_NAME (symbol
)) - end
),
6300 if (modifiers
& ~INTMASK
)
6302 XSETFASTINT (mask
, modifiers
);
6303 elements
= Fcons (unmodified
, Fcons (mask
, Qnil
));
6305 /* Cache the parsing results on SYMBOL. */
6306 Fput (symbol
, Qevent_symbol_element_mask
,
6308 Fput (symbol
, Qevent_symbol_elements
,
6309 Fcons (unmodified
, lispy_modifier_list (modifiers
)));
6311 /* Since we know that SYMBOL is modifiers applied to unmodified,
6312 it would be nice to put that in unmodified's cache.
6313 But we can't, since we're not sure that parse_modifiers is
6320 /* Apply the modifiers MODIFIERS to the symbol BASE.
6321 BASE must be unmodified.
6323 This is like apply_modifiers_uncached, but uses BASE's
6324 Qmodifier_cache property, if present. It also builds
6325 Qevent_symbol_elements properties, since it has that info anyway.
6327 apply_modifiers copies the value of BASE's Qevent_kind property to
6328 the modified symbol. */
6330 apply_modifiers (modifiers
, base
)
6334 Lisp_Object cache
, index
, entry
, new_symbol
;
6336 /* Mask out upper bits. We don't know where this value's been. */
6337 modifiers
&= INTMASK
;
6339 /* The click modifier never figures into cache indices. */
6340 cache
= Fget (base
, Qmodifier_cache
);
6341 XSETFASTINT (index
, (modifiers
& ~click_modifier
));
6342 entry
= assq_no_quit (index
, cache
);
6345 new_symbol
= XCDR (entry
);
6348 /* We have to create the symbol ourselves. */
6349 new_symbol
= apply_modifiers_uncached (modifiers
,
6350 SDATA (SYMBOL_NAME (base
)),
6351 SCHARS (SYMBOL_NAME (base
)),
6352 SBYTES (SYMBOL_NAME (base
)));
6354 /* Add the new symbol to the base's cache. */
6355 entry
= Fcons (index
, new_symbol
);
6356 Fput (base
, Qmodifier_cache
, Fcons (entry
, cache
));
6358 /* We have the parsing info now for free, so we could add it to
6360 XSETFASTINT (index, modifiers);
6361 Fput (new_symbol, Qevent_symbol_element_mask,
6362 Fcons (base, Fcons (index, Qnil)));
6363 Fput (new_symbol, Qevent_symbol_elements,
6364 Fcons (base, lispy_modifier_list (modifiers)));
6365 Sadly, this is only correct if `base' is indeed a base event,
6366 which is not necessarily the case. -stef */
6369 /* Make sure this symbol is of the same kind as BASE.
6371 You'd think we could just set this once and for all when we
6372 intern the symbol above, but reorder_modifiers may call us when
6373 BASE's property isn't set right; we can't assume that just
6374 because it has a Qmodifier_cache property it must have its
6375 Qevent_kind set right as well. */
6376 if (NILP (Fget (new_symbol
, Qevent_kind
)))
6380 kind
= Fget (base
, Qevent_kind
);
6382 Fput (new_symbol
, Qevent_kind
, kind
);
6389 /* Given a symbol whose name begins with modifiers ("C-", "M-", etc),
6390 return a symbol with the modifiers placed in the canonical order.
6391 Canonical order is alphabetical, except for down and drag, which
6392 always come last. The 'click' modifier is never written out.
6394 Fdefine_key calls this to make sure that (for example) C-M-foo
6395 and M-C-foo end up being equivalent in the keymap. */
6398 reorder_modifiers (symbol
)
6401 /* It's hopefully okay to write the code this way, since everything
6402 will soon be in caches, and no consing will be done at all. */
6405 parsed
= parse_modifiers (symbol
);
6406 return apply_modifiers ((int) XINT (XCAR (XCDR (parsed
))),
6411 /* For handling events, we often want to produce a symbol whose name
6412 is a series of modifier key prefixes ("M-", "C-", etcetera) attached
6413 to some base, like the name of a function key or mouse button.
6414 modify_event_symbol produces symbols of this sort.
6416 NAME_TABLE should point to an array of strings, such that NAME_TABLE[i]
6417 is the name of the i'th symbol. TABLE_SIZE is the number of elements
6420 Alternatively, NAME_ALIST_OR_STEM is either an alist mapping codes
6421 into symbol names, or a string specifying a name stem used to
6422 construct a symbol name or the form `STEM-N', where N is the decimal
6423 representation of SYMBOL_NUM. NAME_ALIST_OR_STEM is used if it is
6424 non-nil; otherwise NAME_TABLE is used.
6426 SYMBOL_TABLE should be a pointer to a Lisp_Object whose value will
6427 persist between calls to modify_event_symbol that it can use to
6428 store a cache of the symbols it's generated for this NAME_TABLE
6429 before. The object stored there may be a vector or an alist.
6431 SYMBOL_NUM is the number of the base name we want from NAME_TABLE.
6433 MODIFIERS is a set of modifier bits (as given in struct input_events)
6434 whose prefixes should be applied to the symbol name.
6436 SYMBOL_KIND is the value to be placed in the event_kind property of
6437 the returned symbol.
6439 The symbols we create are supposed to have an
6440 `event-symbol-elements' property, which lists the modifiers present
6441 in the symbol's name. */
6444 modify_event_symbol (symbol_num
, modifiers
, symbol_kind
, name_alist_or_stem
,
6445 name_table
, symbol_table
, table_size
)
6448 Lisp_Object symbol_kind
;
6449 Lisp_Object name_alist_or_stem
;
6451 Lisp_Object
*symbol_table
;
6452 unsigned int table_size
;
6455 Lisp_Object symbol_int
;
6457 /* Get rid of the "vendor-specific" bit here. */
6458 XSETINT (symbol_int
, symbol_num
& 0xffffff);
6460 /* Is this a request for a valid symbol? */
6461 if (symbol_num
< 0 || symbol_num
>= table_size
)
6464 if (CONSP (*symbol_table
))
6465 value
= Fcdr (assq_no_quit (symbol_int
, *symbol_table
));
6467 /* If *symbol_table doesn't seem to be initialized properly, fix that.
6468 *symbol_table should be a lisp vector TABLE_SIZE elements long,
6469 where the Nth element is the symbol for NAME_TABLE[N], or nil if
6470 we've never used that symbol before. */
6473 if (! VECTORP (*symbol_table
)
6474 || XVECTOR (*symbol_table
)->size
!= table_size
)
6478 XSETFASTINT (size
, table_size
);
6479 *symbol_table
= Fmake_vector (size
, Qnil
);
6482 value
= XVECTOR (*symbol_table
)->contents
[symbol_num
];
6485 /* Have we already used this symbol before? */
6488 /* No; let's create it. */
6489 if (CONSP (name_alist_or_stem
))
6490 value
= Fcdr_safe (Fassq (symbol_int
, name_alist_or_stem
));
6491 else if (STRINGP (name_alist_or_stem
))
6493 int len
= SBYTES (name_alist_or_stem
);
6494 char *buf
= (char *) alloca (len
+ 50);
6495 sprintf (buf
, "%s-%ld", SDATA (name_alist_or_stem
),
6496 (long) XINT (symbol_int
) + 1);
6497 value
= intern (buf
);
6499 else if (name_table
!= 0 && name_table
[symbol_num
])
6500 value
= intern (name_table
[symbol_num
]);
6502 #ifdef HAVE_WINDOW_SYSTEM
6505 char *name
= x_get_keysym_name (symbol_num
);
6507 value
= intern (name
);
6514 sprintf (buf
, "key-%d", symbol_num
);
6515 value
= intern (buf
);
6518 if (CONSP (*symbol_table
))
6519 *symbol_table
= Fcons (Fcons (symbol_int
, value
), *symbol_table
);
6521 XVECTOR (*symbol_table
)->contents
[symbol_num
] = value
;
6523 /* Fill in the cache entries for this symbol; this also
6524 builds the Qevent_symbol_elements property, which the user
6526 apply_modifiers (modifiers
& click_modifier
, value
);
6527 Fput (value
, Qevent_kind
, symbol_kind
);
6530 /* Apply modifiers to that symbol. */
6531 return apply_modifiers (modifiers
, value
);
6534 /* Convert a list that represents an event type,
6535 such as (ctrl meta backspace), into the usual representation of that
6536 event type as a number or a symbol. */
6538 DEFUN ("event-convert-list", Fevent_convert_list
, Sevent_convert_list
, 1, 1, 0,
6539 doc
: /* Convert the event description list EVENT-DESC to an event type.
6540 EVENT-DESC should contain one base event type (a character or symbol)
6541 and zero or more modifier names (control, meta, hyper, super, shift, alt,
6542 drag, down, double or triple). The base must be last.
6543 The return value is an event type (a character or symbol) which
6544 has the same base event type and all the specified modifiers. */)
6546 Lisp_Object event_desc
;
6554 while (CONSP (rest
))
6562 /* Given a symbol, see if it is a modifier name. */
6563 if (SYMBOLP (elt
) && CONSP (rest
))
6564 this = parse_solitary_modifier (elt
);
6568 else if (!NILP (base
))
6569 error ("Two bases given in one event");
6575 /* Let the symbol A refer to the character A. */
6576 if (SYMBOLP (base
) && SCHARS (SYMBOL_NAME (base
)) == 1)
6577 XSETINT (base
, SREF (SYMBOL_NAME (base
), 0));
6579 if (INTEGERP (base
))
6581 /* Turn (shift a) into A. */
6582 if ((modifiers
& shift_modifier
) != 0
6583 && (XINT (base
) >= 'a' && XINT (base
) <= 'z'))
6585 XSETINT (base
, XINT (base
) - ('a' - 'A'));
6586 modifiers
&= ~shift_modifier
;
6589 /* Turn (control a) into C-a. */
6590 if (modifiers
& ctrl_modifier
)
6591 return make_number ((modifiers
& ~ctrl_modifier
)
6592 | make_ctrl_char (XINT (base
)));
6594 return make_number (modifiers
| XINT (base
));
6596 else if (SYMBOLP (base
))
6597 return apply_modifiers (modifiers
, base
);
6600 error ("Invalid base event");
6605 /* Try to recognize SYMBOL as a modifier name.
6606 Return the modifier flag bit, or 0 if not recognized. */
6609 parse_solitary_modifier (symbol
)
6612 Lisp_Object name
= SYMBOL_NAME (symbol
);
6614 switch (SREF (name
, 0))
6616 #define SINGLE_LETTER_MOD(BIT) \
6617 if (SBYTES (name) == 1) \
6620 #define MULTI_LETTER_MOD(BIT, NAME, LEN) \
6621 if (LEN == SBYTES (name) \
6622 && ! strncmp (SDATA (name), NAME, LEN)) \
6626 SINGLE_LETTER_MOD (alt_modifier
);
6630 MULTI_LETTER_MOD (alt_modifier
, "alt", 3);
6634 SINGLE_LETTER_MOD (ctrl_modifier
);
6638 MULTI_LETTER_MOD (ctrl_modifier
, "ctrl", 4);
6639 MULTI_LETTER_MOD (ctrl_modifier
, "control", 7);
6643 SINGLE_LETTER_MOD (hyper_modifier
);
6647 MULTI_LETTER_MOD (hyper_modifier
, "hyper", 5);
6651 SINGLE_LETTER_MOD (meta_modifier
);
6655 MULTI_LETTER_MOD (meta_modifier
, "meta", 4);
6659 SINGLE_LETTER_MOD (shift_modifier
);
6663 MULTI_LETTER_MOD (shift_modifier
, "shift", 5);
6664 MULTI_LETTER_MOD (super_modifier
, "super", 5);
6665 SINGLE_LETTER_MOD (super_modifier
);
6669 MULTI_LETTER_MOD (drag_modifier
, "drag", 4);
6670 MULTI_LETTER_MOD (down_modifier
, "down", 4);
6671 MULTI_LETTER_MOD (double_modifier
, "double", 6);
6675 MULTI_LETTER_MOD (triple_modifier
, "triple", 6);
6678 #undef SINGLE_LETTER_MOD
6679 #undef MULTI_LETTER_MOD
6685 /* Return 1 if EVENT is a list whose elements are all integers or symbols.
6686 Such a list is not valid as an event,
6687 but it can be a Lucid-style event type list. */
6690 lucid_event_type_list_p (object
)
6695 if (! CONSP (object
))
6698 if (EQ (XCAR (object
), Qhelp_echo
)
6699 || EQ (XCAR (object
), Qvertical_line
)
6700 || EQ (XCAR (object
), Qmode_line
)
6701 || EQ (XCAR (object
), Qheader_line
))
6704 for (tail
= object
; CONSP (tail
); tail
= XCDR (tail
))
6708 if (! (INTEGERP (elt
) || SYMBOLP (elt
)))
6715 /* Store into *addr a value nonzero if terminal input chars are available.
6716 Serves the purpose of ioctl (0, FIONREAD, addr)
6717 but works even if FIONREAD does not exist.
6718 (In fact, this may actually read some input.)
6720 If READABLE_EVENTS_DO_TIMERS_NOW is set in FLAGS, actually run
6721 timer events that are ripe.
6722 If READABLE_EVENTS_FILTER_EVENTS is set in FLAGS, ignore internal
6723 events (FOCUS_IN_EVENT).
6724 If READABLE_EVENTS_IGNORE_SQUEEZABLES is set in FLAGS, ignore mouse
6725 movements and toolkit scroll bar thumb drags. */
6728 get_input_pending (addr
, flags
)
6732 /* First of all, have we already counted some input? */
6733 *addr
= (!NILP (Vquit_flag
) || readable_events (flags
));
6735 /* If input is being read as it arrives, and we have none, there is none. */
6736 if (*addr
> 0 || (interrupt_input
&& ! interrupts_deferred
))
6739 /* Try to read some input and see how much we get. */
6741 *addr
= (!NILP (Vquit_flag
) || readable_events (flags
));
6744 /* Interface to read_avail_input, blocking SIGIO or SIGALRM if necessary. */
6747 gobble_input (expected
)
6752 if (interrupt_input
)
6755 mask
= sigblock (sigmask (SIGIO
));
6756 read_avail_input (expected
);
6760 #ifdef POLL_FOR_INPUT
6761 if (read_socket_hook
&& !interrupt_input
&& poll_suppress_count
== 0)
6764 mask
= sigblock (sigmask (SIGALRM
));
6765 read_avail_input (expected
);
6771 read_avail_input (expected
);
6775 /* Put a BUFFER_SWITCH_EVENT in the buffer
6776 so that read_key_sequence will notice the new current buffer. */
6779 record_asynch_buffer_change ()
6781 struct input_event event
;
6785 event
.kind
= BUFFER_SWITCH_EVENT
;
6786 event
.frame_or_window
= Qnil
;
6790 /* We don't need a buffer-switch event unless Emacs is waiting for input.
6791 The purpose of the event is to make read_key_sequence look up the
6792 keymaps again. If we aren't in read_key_sequence, we don't need one,
6793 and the event could cause trouble by messing up (input-pending-p). */
6794 tem
= Fwaiting_for_user_input_p ();
6798 /* We never need these events if we have no asynchronous subprocesses. */
6802 /* Make sure no interrupt happens while storing the event. */
6804 if (interrupt_input
)
6807 mask
= sigblock (sigmask (SIGIO
));
6808 kbd_buffer_store_event (&event
);
6815 kbd_buffer_store_event (&event
);
6822 /* Read any terminal input already buffered up by the system
6823 into the kbd_buffer, but do not wait.
6825 EXPECTED should be nonzero if the caller knows there is some input.
6827 Except on VMS, all input is read by this function.
6828 If interrupt_input is nonzero, this function MUST be called
6829 only when SIGIO is blocked.
6831 Returns the number of keyboard chars read, or -1 meaning
6832 this is a bad time to try to read input. */
6835 read_avail_input (expected
)
6841 /* Store pending user signal events, if any. */
6842 if (store_user_signal_events ())
6845 if (read_socket_hook
)
6848 struct input_event hold_quit
;
6850 EVENT_INIT (hold_quit
);
6851 hold_quit
.kind
= NO_EVENT
;
6853 /* No need for FIONREAD or fcntl; just say don't wait. */
6854 while (nr
= (*read_socket_hook
) (input_fd
, expected
, &hold_quit
), nr
> 0)
6859 if (hold_quit
.kind
!= NO_EVENT
)
6860 kbd_buffer_store_event (&hold_quit
);
6864 /* Using KBD_BUFFER_SIZE - 1 here avoids reading more than
6865 the kbd_buffer can really hold. That may prevent loss
6866 of characters on some systems when input is stuffed at us. */
6867 unsigned char cbuf
[KBD_BUFFER_SIZE
- 1];
6870 /* Determine how many characters we should *try* to read. */
6873 #else /* not WINDOWSNT */
6875 n_to_read
= dos_keysns ();
6878 #else /* not MSDOS */
6880 /* Find out how much input is available. */
6881 if (ioctl (input_fd
, FIONREAD
, &n_to_read
) < 0)
6882 /* Formerly simply reported no input, but that sometimes led to
6883 a failure of Emacs to terminate.
6884 SIGHUP seems appropriate if we can't reach the terminal. */
6885 /* ??? Is it really right to send the signal just to this process
6886 rather than to the whole process group?
6887 Perhaps on systems with FIONREAD Emacs is alone in its group. */
6889 if (! noninteractive
)
6890 kill (getpid (), SIGHUP
);
6896 if (n_to_read
> sizeof cbuf
)
6897 n_to_read
= sizeof cbuf
;
6898 #else /* no FIONREAD */
6899 #if defined (USG) || defined (DGUX) || defined(CYGWIN)
6900 /* Read some input if available, but don't wait. */
6901 n_to_read
= sizeof cbuf
;
6902 fcntl (input_fd
, F_SETFL
, O_NDELAY
);
6907 #endif /* not MSDOS */
6908 #endif /* not WINDOWSNT */
6910 /* Now read; for one reason or another, this will not block.
6911 NREAD is set to the number of chars read. */
6915 cbuf
[0] = dos_keyread ();
6918 nread
= emacs_read (input_fd
, cbuf
, n_to_read
);
6920 /* POSIX infers that processes which are not in the session leader's
6921 process group won't get SIGHUP's at logout time. BSDI adheres to
6922 this part standard and returns -1 from read (0) with errno==EIO
6923 when the control tty is taken away.
6924 Jeffrey Honig <jch@bsdi.com> says this is generally safe. */
6925 if (nread
== -1 && errno
== EIO
)
6927 #if defined (AIX) && (! defined (aix386) && defined (_BSD))
6928 /* The kernel sometimes fails to deliver SIGHUP for ptys.
6929 This looks incorrect, but it isn't, because _BSD causes
6930 O_NDELAY to be defined in fcntl.h as O_NONBLOCK,
6931 and that causes a value other than 0 when there is no input. */
6937 /* We used to retry the read if it was interrupted.
6938 But this does the wrong thing when O_NDELAY causes
6939 an EAGAIN error. Does anybody know of a situation
6940 where a retry is actually needed? */
6942 nread
< 0 && (errno
== EAGAIN
6956 #if defined (USG) || defined (DGUX) || defined (CYGWIN)
6957 fcntl (input_fd
, F_SETFL
, 0);
6958 #endif /* USG or DGUX or CYGWIN */
6959 #endif /* no FIONREAD */
6960 for (i
= 0; i
< nread
; i
++)
6962 struct input_event buf
;
6964 buf
.kind
= ASCII_KEYSTROKE_EVENT
;
6966 if (meta_key
== 1 && (cbuf
[i
] & 0x80))
6967 buf
.modifiers
= meta_modifier
;
6972 buf
.frame_or_window
= selected_frame
;
6975 kbd_buffer_store_event (&buf
);
6976 /* Don't look at input that follows a C-g too closely.
6977 This reduces lossage due to autorepeat on C-g. */
6978 if (buf
.kind
== ASCII_KEYSTROKE_EVENT
6979 && buf
.code
== quit_char
)
6986 #endif /* not VMS */
6989 handle_async_input ()
6992 extern int select_alarmed
;
6995 interrupt_input_pending
= 0;
7000 nread
= read_avail_input (1);
7001 /* -1 means it's not ok to read the input now.
7002 UNBLOCK_INPUT will read it later; now, avoid infinite loop.
7003 0 means there was no keyboard input available. */
7008 select_alarmed
= 1; /* Force the select emulator back to life */
7013 #ifdef SIGIO /* for entire page */
7014 /* Note SIGIO has been undef'd if FIONREAD is missing. */
7017 input_available_signal (signo
)
7020 /* Must preserve main program's value of errno. */
7021 int old_errno
= errno
;
7022 #if defined (USG) && !defined (POSIX_SIGNALS)
7023 /* USG systems forget handlers when they are used;
7024 must reestablish each time */
7025 signal (signo
, input_available_signal
);
7033 interrupt_input_pending
= 1;
7035 SIGNAL_THREAD_CHECK (signo
);
7038 if (input_available_clear_time
)
7039 EMACS_SET_SECS_USECS (*input_available_clear_time
, 0, 0);
7042 handle_async_input ();
7052 /* Send ourselves a SIGIO.
7054 This function exists so that the UNBLOCK_INPUT macro in
7055 blockinput.h can have some way to take care of input we put off
7056 dealing with, without assuming that every file which uses
7057 UNBLOCK_INPUT also has #included the files necessary to get SIGIO. */
7059 reinvoke_input_signal ()
7062 handle_async_input ();
7068 /* User signal events. */
7070 struct user_signal_info
7072 /* Signal number. */
7075 /* Name of the signal. */
7078 /* Number of pending signals. */
7081 struct user_signal_info
*next
;
7084 /* List of user signals. */
7085 static struct user_signal_info
*user_signals
= NULL
;
7088 add_user_signal (sig
, name
)
7092 struct user_signal_info
*p
;
7094 for (p
= user_signals
; p
; p
= p
->next
)
7096 /* Already added. */
7099 p
= xmalloc (sizeof (struct user_signal_info
));
7101 p
->name
= xstrdup (name
);
7103 p
->next
= user_signals
;
7106 signal (sig
, handle_user_signal
);
7110 handle_user_signal (sig
)
7113 int old_errno
= errno
;
7114 struct user_signal_info
*p
;
7116 #if defined (USG) && !defined (POSIX_SIGNALS)
7117 /* USG systems forget handlers when they are used;
7118 must reestablish each time */
7119 signal (sig
, handle_user_signal
);
7122 SIGNAL_THREAD_CHECK (sig
);
7124 for (p
= user_signals
; p
; p
= p
->next
)
7129 if (interrupt_input
)
7130 kill (getpid (), SIGIO
);
7134 /* Tell wait_reading_process_output that it needs to wake
7135 up and look around. */
7136 if (input_available_clear_time
)
7137 EMACS_SET_SECS_USECS (*input_available_clear_time
, 0, 0);
7146 find_user_signal_name (sig
)
7149 struct user_signal_info
*p
;
7151 for (p
= user_signals
; p
; p
= p
->next
)
7159 store_user_signal_events ()
7161 struct user_signal_info
*p
;
7162 struct input_event buf
;
7165 for (p
= user_signals
; p
; p
= p
->next
)
7166 if (p
->npending
> 0)
7172 bzero (&buf
, sizeof buf
);
7173 buf
.kind
= USER_SIGNAL_EVENT
;
7174 buf
.frame_or_window
= selected_frame
;
7176 nstored
+= p
->npending
;
7178 mask
= sigblock (sigmask (p
->sig
));
7182 kbd_buffer_store_event (&buf
);
7185 while (p
->npending
> 0);
7193 static void menu_bar_item
P_ ((Lisp_Object
, Lisp_Object
, Lisp_Object
, void*));
7194 static Lisp_Object menu_bar_one_keymap_changed_items
;
7196 /* These variables hold the vector under construction within
7197 menu_bar_items and its subroutines, and the current index
7198 for storing into that vector. */
7199 static Lisp_Object menu_bar_items_vector
;
7200 static int menu_bar_items_index
;
7202 /* Return a vector of menu items for a menu bar, appropriate
7203 to the current buffer. Each item has three elements in the vector:
7206 OLD is an old vector we can optionally reuse, or nil. */
7209 menu_bar_items (old
)
7212 /* The number of keymaps we're scanning right now, and the number of
7213 keymaps we have allocated space for. */
7216 /* maps[0..nmaps-1] are the prefix definitions of KEYBUF[0..t-1]
7217 in the current keymaps, or nil where it is not a prefix. */
7220 Lisp_Object def
, tail
;
7229 /* In order to build the menus, we need to call the keymap
7230 accessors. They all call QUIT. But this function is called
7231 during redisplay, during which a quit is fatal. So inhibit
7232 quitting while building the menus.
7233 We do this instead of specbind because (1) errors will clear it anyway
7234 and (2) this avoids risk of specpdl overflow. */
7235 oquit
= Vinhibit_quit
;
7239 menu_bar_items_vector
= old
;
7241 menu_bar_items_vector
= Fmake_vector (make_number (24), Qnil
);
7242 menu_bar_items_index
= 0;
7244 /* Build our list of keymaps.
7245 If we recognize a function key and replace its escape sequence in
7246 keybuf with its symbol, or if the sequence starts with a mouse
7247 click and we need to switch buffers, we jump back here to rebuild
7248 the initial keymaps from the current buffer. */
7252 /* Should overriding-terminal-local-map and overriding-local-map apply? */
7253 if (!NILP (Voverriding_local_map_menu_flag
))
7255 /* Yes, use them (if non-nil) as well as the global map. */
7256 maps
= (Lisp_Object
*) alloca (3 * sizeof (maps
[0]));
7258 if (!NILP (current_kboard
->Voverriding_terminal_local_map
))
7259 maps
[nmaps
++] = current_kboard
->Voverriding_terminal_local_map
;
7260 if (!NILP (Voverriding_local_map
))
7261 maps
[nmaps
++] = Voverriding_local_map
;
7265 /* No, so use major and minor mode keymaps and keymap property.
7266 Note that menu-bar bindings in the local-map and keymap
7267 properties may not work reliable, as they are only
7268 recognized when the menu-bar (or mode-line) is updated,
7269 which does not normally happen after every command. */
7272 nminor
= current_minor_maps (NULL
, &tmaps
);
7273 maps
= (Lisp_Object
*) alloca ((nminor
+ 3) * sizeof (maps
[0]));
7275 if (tem
= get_local_map (PT
, current_buffer
, Qkeymap
), !NILP (tem
))
7276 maps
[nmaps
++] = tem
;
7277 bcopy (tmaps
, (void *) (maps
+ nmaps
), nminor
* sizeof (maps
[0]));
7279 maps
[nmaps
++] = get_local_map (PT
, current_buffer
, Qlocal_map
);
7281 maps
[nmaps
++] = current_global_map
;
7284 /* Look up in each map the dummy prefix key `menu-bar'. */
7288 for (mapno
= nmaps
- 1; mapno
>= 0; mapno
--)
7289 if (!NILP (maps
[mapno
]))
7291 def
= get_keymap (access_keymap (maps
[mapno
], Qmenu_bar
, 1, 0, 1),
7295 menu_bar_one_keymap_changed_items
= Qnil
;
7296 map_keymap (def
, menu_bar_item
, Qnil
, NULL
, 1);
7300 /* Move to the end those items that should be at the end. */
7302 for (tail
= Vmenu_bar_final_items
; CONSP (tail
); tail
= XCDR (tail
))
7305 int end
= menu_bar_items_index
;
7307 for (i
= 0; i
< end
; i
+= 4)
7308 if (EQ (XCAR (tail
), XVECTOR (menu_bar_items_vector
)->contents
[i
]))
7310 Lisp_Object tem0
, tem1
, tem2
, tem3
;
7311 /* Move the item at index I to the end,
7312 shifting all the others forward. */
7313 tem0
= XVECTOR (menu_bar_items_vector
)->contents
[i
+ 0];
7314 tem1
= XVECTOR (menu_bar_items_vector
)->contents
[i
+ 1];
7315 tem2
= XVECTOR (menu_bar_items_vector
)->contents
[i
+ 2];
7316 tem3
= XVECTOR (menu_bar_items_vector
)->contents
[i
+ 3];
7318 bcopy (&XVECTOR (menu_bar_items_vector
)->contents
[i
+ 4],
7319 &XVECTOR (menu_bar_items_vector
)->contents
[i
],
7320 (end
- i
- 4) * sizeof (Lisp_Object
));
7321 XVECTOR (menu_bar_items_vector
)->contents
[end
- 4] = tem0
;
7322 XVECTOR (menu_bar_items_vector
)->contents
[end
- 3] = tem1
;
7323 XVECTOR (menu_bar_items_vector
)->contents
[end
- 2] = tem2
;
7324 XVECTOR (menu_bar_items_vector
)->contents
[end
- 1] = tem3
;
7329 /* Add nil, nil, nil, nil at the end. */
7330 i
= menu_bar_items_index
;
7331 if (i
+ 4 > XVECTOR (menu_bar_items_vector
)->size
)
7334 tem
= Fmake_vector (make_number (2 * i
), Qnil
);
7335 bcopy (XVECTOR (menu_bar_items_vector
)->contents
,
7336 XVECTOR (tem
)->contents
, i
* sizeof (Lisp_Object
));
7337 menu_bar_items_vector
= tem
;
7339 /* Add this item. */
7340 XVECTOR (menu_bar_items_vector
)->contents
[i
++] = Qnil
;
7341 XVECTOR (menu_bar_items_vector
)->contents
[i
++] = Qnil
;
7342 XVECTOR (menu_bar_items_vector
)->contents
[i
++] = Qnil
;
7343 XVECTOR (menu_bar_items_vector
)->contents
[i
++] = Qnil
;
7344 menu_bar_items_index
= i
;
7346 Vinhibit_quit
= oquit
;
7347 return menu_bar_items_vector
;
7350 /* Add one item to menu_bar_items_vector, for KEY, ITEM_STRING and DEF.
7351 If there's already an item for KEY, add this DEF to it. */
7353 Lisp_Object item_properties
;
7356 menu_bar_item (key
, item
, dummy1
, dummy2
)
7357 Lisp_Object key
, item
, dummy1
;
7360 struct gcpro gcpro1
;
7364 if (EQ (item
, Qundefined
))
7366 /* If a map has an explicit `undefined' as definition,
7367 discard any previously made menu bar item. */
7369 for (i
= 0; i
< menu_bar_items_index
; i
+= 4)
7370 if (EQ (key
, XVECTOR (menu_bar_items_vector
)->contents
[i
]))
7372 if (menu_bar_items_index
> i
+ 4)
7373 bcopy (&XVECTOR (menu_bar_items_vector
)->contents
[i
+ 4],
7374 &XVECTOR (menu_bar_items_vector
)->contents
[i
],
7375 (menu_bar_items_index
- i
- 4) * sizeof (Lisp_Object
));
7376 menu_bar_items_index
-= 4;
7380 /* If this keymap has already contributed to this KEY,
7381 don't contribute to it a second time. */
7382 tem
= Fmemq (key
, menu_bar_one_keymap_changed_items
);
7383 if (!NILP (tem
) || NILP (item
))
7386 menu_bar_one_keymap_changed_items
7387 = Fcons (key
, menu_bar_one_keymap_changed_items
);
7389 /* We add to menu_bar_one_keymap_changed_items before doing the
7390 parse_menu_item, so that if it turns out it wasn't a menu item,
7391 it still correctly hides any further menu item. */
7393 i
= parse_menu_item (item
, 0, 1);
7398 item
= XVECTOR (item_properties
)->contents
[ITEM_PROPERTY_DEF
];
7400 /* Find any existing item for this KEY. */
7401 for (i
= 0; i
< menu_bar_items_index
; i
+= 4)
7402 if (EQ (key
, XVECTOR (menu_bar_items_vector
)->contents
[i
]))
7405 /* If we did not find this KEY, add it at the end. */
7406 if (i
== menu_bar_items_index
)
7408 /* If vector is too small, get a bigger one. */
7409 if (i
+ 4 > XVECTOR (menu_bar_items_vector
)->size
)
7412 tem
= Fmake_vector (make_number (2 * i
), Qnil
);
7413 bcopy (XVECTOR (menu_bar_items_vector
)->contents
,
7414 XVECTOR (tem
)->contents
, i
* sizeof (Lisp_Object
));
7415 menu_bar_items_vector
= tem
;
7418 /* Add this item. */
7419 XVECTOR (menu_bar_items_vector
)->contents
[i
++] = key
;
7420 XVECTOR (menu_bar_items_vector
)->contents
[i
++]
7421 = XVECTOR (item_properties
)->contents
[ITEM_PROPERTY_NAME
];
7422 XVECTOR (menu_bar_items_vector
)->contents
[i
++] = Fcons (item
, Qnil
);
7423 XVECTOR (menu_bar_items_vector
)->contents
[i
++] = make_number (0);
7424 menu_bar_items_index
= i
;
7426 /* We did find an item for this KEY. Add ITEM to its list of maps. */
7430 old
= XVECTOR (menu_bar_items_vector
)->contents
[i
+ 2];
7431 /* If the new and the old items are not both keymaps,
7432 the lookup will only find `item'. */
7433 item
= Fcons (item
, KEYMAPP (item
) && KEYMAPP (XCAR (old
)) ? old
: Qnil
);
7434 XVECTOR (menu_bar_items_vector
)->contents
[i
+ 2] = item
;
7438 /* This is used as the handler when calling menu_item_eval_property. */
7440 menu_item_eval_property_1 (arg
)
7443 /* If we got a quit from within the menu computation,
7444 quit all the way out of it. This takes care of C-] in the debugger. */
7445 if (CONSP (arg
) && EQ (XCAR (arg
), Qquit
))
7446 Fsignal (Qquit
, Qnil
);
7451 /* Evaluate an expression and return the result (or nil if something
7452 went wrong). Used to evaluate dynamic parts of menu items. */
7454 menu_item_eval_property (sexpr
)
7457 int count
= SPECPDL_INDEX ();
7459 specbind (Qinhibit_redisplay
, Qt
);
7460 val
= internal_condition_case_1 (Feval
, sexpr
, Qerror
,
7461 menu_item_eval_property_1
);
7462 return unbind_to (count
, val
);
7465 /* This function parses a menu item and leaves the result in the
7466 vector item_properties.
7467 ITEM is a key binding, a possible menu item.
7468 If NOTREAL is nonzero, only check for equivalent key bindings, don't
7469 evaluate dynamic expressions in the menu item.
7470 INMENUBAR is > 0 when this is considered for an entry in a menu bar
7472 INMENUBAR is < 0 when this is considered for an entry in a keyboard menu.
7473 parse_menu_item returns true if the item is a menu item and false
7477 parse_menu_item (item
, notreal
, inmenubar
)
7479 int notreal
, inmenubar
;
7481 Lisp_Object def
, tem
, item_string
, start
;
7482 Lisp_Object cachelist
;
7484 Lisp_Object keyhint
;
7495 /* Create item_properties vector if necessary. */
7496 if (NILP (item_properties
))
7498 = Fmake_vector (make_number (ITEM_PROPERTY_ENABLE
+ 1), Qnil
);
7500 /* Initialize optional entries. */
7501 for (i
= ITEM_PROPERTY_DEF
; i
< ITEM_PROPERTY_ENABLE
; i
++)
7502 AREF (item_properties
, i
) = Qnil
;
7503 AREF (item_properties
, ITEM_PROPERTY_ENABLE
) = Qt
;
7505 /* Save the item here to protect it from GC. */
7506 AREF (item_properties
, ITEM_PROPERTY_ITEM
) = item
;
7508 item_string
= XCAR (item
);
7512 if (STRINGP (item_string
))
7514 /* Old format menu item. */
7515 AREF (item_properties
, ITEM_PROPERTY_NAME
) = item_string
;
7517 /* Maybe help string. */
7518 if (CONSP (item
) && STRINGP (XCAR (item
)))
7520 AREF (item_properties
, ITEM_PROPERTY_HELP
) = XCAR (item
);
7525 /* Maybe key binding cache. */
7526 if (CONSP (item
) && CONSP (XCAR (item
))
7527 && (NILP (XCAR (XCAR (item
)))
7528 || VECTORP (XCAR (XCAR (item
)))))
7530 cachelist
= XCAR (item
);
7534 /* This is the real definition--the function to run. */
7535 AREF (item_properties
, ITEM_PROPERTY_DEF
) = item
;
7537 /* Get enable property, if any. */
7540 tem
= Fget (item
, Qmenu_enable
);
7541 if (!NILP (Venable_disabled_menus_and_buttons
))
7542 AREF (item_properties
, ITEM_PROPERTY_ENABLE
) = Qt
;
7543 else if (!NILP (tem
))
7544 AREF (item_properties
, ITEM_PROPERTY_ENABLE
) = tem
;
7547 else if (EQ (item_string
, Qmenu_item
) && CONSP (item
))
7549 /* New format menu item. */
7550 AREF (item_properties
, ITEM_PROPERTY_NAME
) = XCAR (item
);
7551 start
= XCDR (item
);
7554 /* We have a real binding. */
7555 AREF (item_properties
, ITEM_PROPERTY_DEF
) = XCAR (start
);
7557 item
= XCDR (start
);
7558 /* Is there a cache list with key equivalences. */
7559 if (CONSP (item
) && CONSP (XCAR (item
)))
7561 cachelist
= XCAR (item
);
7565 /* Parse properties. */
7566 while (CONSP (item
) && CONSP (XCDR (item
)))
7571 if (EQ (tem
, QCenable
))
7573 if (!NILP (Venable_disabled_menus_and_buttons
))
7574 AREF (item_properties
, ITEM_PROPERTY_ENABLE
) = Qt
;
7576 AREF (item_properties
, ITEM_PROPERTY_ENABLE
) = XCAR (item
);
7578 else if (EQ (tem
, QCvisible
) && !notreal
)
7580 /* If got a visible property and that evaluates to nil
7581 then ignore this item. */
7582 tem
= menu_item_eval_property (XCAR (item
));
7586 else if (EQ (tem
, QChelp
))
7587 AREF (item_properties
, ITEM_PROPERTY_HELP
) = XCAR (item
);
7588 else if (EQ (tem
, QCfilter
))
7590 else if (EQ (tem
, QCkey_sequence
))
7593 if (NILP (cachelist
)
7594 && (SYMBOLP (tem
) || STRINGP (tem
) || VECTORP (tem
)))
7595 /* Be GC protected. Set keyhint to item instead of tem. */
7598 else if (EQ (tem
, QCkeys
))
7601 if (CONSP (tem
) || (STRINGP (tem
) && NILP (cachelist
)))
7602 AREF (item_properties
, ITEM_PROPERTY_KEYEQ
) = tem
;
7604 else if (EQ (tem
, QCbutton
) && CONSP (XCAR (item
)))
7609 if (EQ (type
, QCtoggle
) || EQ (type
, QCradio
))
7611 AREF (item_properties
, ITEM_PROPERTY_SELECTED
)
7613 AREF (item_properties
, ITEM_PROPERTY_TYPE
)
7620 else if (inmenubar
|| !NILP (start
))
7624 return 0; /* not a menu item */
7626 /* If item string is not a string, evaluate it to get string.
7627 If we don't get a string, skip this item. */
7628 item_string
= AREF (item_properties
, ITEM_PROPERTY_NAME
);
7629 if (!(STRINGP (item_string
) || notreal
))
7631 item_string
= menu_item_eval_property (item_string
);
7632 if (!STRINGP (item_string
))
7634 AREF (item_properties
, ITEM_PROPERTY_NAME
) = item_string
;
7637 /* If got a filter apply it on definition. */
7638 def
= AREF (item_properties
, ITEM_PROPERTY_DEF
);
7641 def
= menu_item_eval_property (list2 (XCAR (filter
),
7642 list2 (Qquote
, def
)));
7644 AREF (item_properties
, ITEM_PROPERTY_DEF
) = def
;
7647 /* Enable or disable selection of item. */
7648 tem
= AREF (item_properties
, ITEM_PROPERTY_ENABLE
);
7654 tem
= menu_item_eval_property (tem
);
7655 if (inmenubar
&& NILP (tem
))
7656 return 0; /* Ignore disabled items in menu bar. */
7657 AREF (item_properties
, ITEM_PROPERTY_ENABLE
) = tem
;
7660 /* If we got no definition, this item is just unselectable text which
7661 is OK in a submenu but not in the menubar. */
7663 return (inmenubar
? 0 : 1);
7665 /* See if this is a separate pane or a submenu. */
7666 def
= AREF (item_properties
, ITEM_PROPERTY_DEF
);
7667 tem
= get_keymap (def
, 0, 1);
7668 /* For a subkeymap, just record its details and exit. */
7671 AREF (item_properties
, ITEM_PROPERTY_MAP
) = tem
;
7672 AREF (item_properties
, ITEM_PROPERTY_DEF
) = tem
;
7676 /* At the top level in the menu bar, do likewise for commands also.
7677 The menu bar does not display equivalent key bindings anyway.
7678 ITEM_PROPERTY_DEF is already set up properly. */
7682 /* This is a command. See if there is an equivalent key binding. */
7683 if (NILP (cachelist
))
7685 /* We have to create a cachelist. */
7686 CHECK_IMPURE (start
);
7687 XSETCDR (start
, Fcons (Fcons (Qnil
, Qnil
), XCDR (start
)));
7688 cachelist
= XCAR (XCDR (start
));
7690 tem
= AREF (item_properties
, ITEM_PROPERTY_KEYEQ
);
7691 if (!NILP (keyhint
))
7693 XSETCAR (cachelist
, XCAR (keyhint
));
7696 else if (STRINGP (tem
))
7698 XSETCDR (cachelist
, Fsubstitute_command_keys (tem
));
7699 XSETCAR (cachelist
, Qt
);
7703 tem
= XCAR (cachelist
);
7710 tem
= Fkey_binding (tem
, Qnil
, Qnil
, Qnil
);
7712 prefix
= AREF (item_properties
, ITEM_PROPERTY_KEYEQ
);
7715 def
= XCAR (prefix
);
7716 prefix
= XCDR (prefix
);
7719 def
= AREF (item_properties
, ITEM_PROPERTY_DEF
);
7721 if (NILP (XCAR (cachelist
))) /* Have no saved key. */
7723 if (newcache
/* Always check first time. */
7724 /* Should we check everything when precomputing key
7726 /* If something had no key binding before, don't recheck it
7727 because that is too slow--except if we have a list of
7728 rebound commands in Vdefine_key_rebound_commands, do
7729 recheck any command that appears in that list. */
7730 || (CONSP (Vdefine_key_rebound_commands
)
7731 && !NILP (Fmemq (def
, Vdefine_key_rebound_commands
))))
7734 /* We had a saved key. Is it still bound to the command? */
7737 /* If the command is an alias for another
7738 (such as lmenu.el set it up), check if the
7739 original command matches the cached command. */
7740 && !(SYMBOLP (def
) && EQ (tem
, XSYMBOL (def
)->function
))))
7741 chkcache
= 1; /* Need to recompute key binding. */
7745 /* Recompute equivalent key binding. If the command is an alias
7746 for another (such as lmenu.el set it up), see if the original
7747 command name has equivalent keys. Otherwise look up the
7748 specified command itself. We don't try both, because that
7749 makes lmenu menus slow. */
7751 && SYMBOLP (XSYMBOL (def
)->function
)
7752 && ! NILP (Fget (def
, Qmenu_alias
)))
7753 def
= XSYMBOL (def
)->function
;
7754 tem
= Fwhere_is_internal (def
, Qnil
, Qt
, Qnil
, Qt
);
7755 XSETCAR (cachelist
, tem
);
7758 XSETCDR (cachelist
, Qnil
);
7762 else if (!NILP (keyhint
) && !NILP (XCAR (cachelist
)))
7764 tem
= XCAR (cachelist
);
7768 newcache
= chkcache
;
7771 tem
= Fkey_description (tem
, Qnil
);
7774 if (STRINGP (XCAR (prefix
)))
7775 tem
= concat2 (XCAR (prefix
), tem
);
7776 if (STRINGP (XCDR (prefix
)))
7777 tem
= concat2 (tem
, XCDR (prefix
));
7779 XSETCDR (cachelist
, tem
);
7783 tem
= XCDR (cachelist
);
7784 if (newcache
&& !NILP (tem
))
7786 tem
= concat3 (build_string (" ("), tem
, build_string (")"));
7787 XSETCDR (cachelist
, tem
);
7790 /* If we only want to precompute equivalent key bindings, stop here. */
7794 /* If we have an equivalent key binding, use that. */
7795 AREF (item_properties
, ITEM_PROPERTY_KEYEQ
) = tem
;
7797 /* Include this when menu help is implemented.
7798 tem = XVECTOR (item_properties)->contents[ITEM_PROPERTY_HELP];
7799 if (!(NILP (tem) || STRINGP (tem)))
7801 tem = menu_item_eval_property (tem);
7804 XVECTOR (item_properties)->contents[ITEM_PROPERTY_HELP] = tem;
7808 /* Handle radio buttons or toggle boxes. */
7809 tem
= AREF (item_properties
, ITEM_PROPERTY_SELECTED
);
7811 AREF (item_properties
, ITEM_PROPERTY_SELECTED
)
7812 = menu_item_eval_property (tem
);
7819 /***********************************************************************
7821 ***********************************************************************/
7823 /* A vector holding tool bar items while they are parsed in function
7824 tool_bar_items. Each item occupies TOOL_BAR_ITEM_NSCLOTS elements
7827 static Lisp_Object tool_bar_items_vector
;
7829 /* A vector holding the result of parse_tool_bar_item. Layout is like
7830 the one for a single item in tool_bar_items_vector. */
7832 static Lisp_Object tool_bar_item_properties
;
7834 /* Next free index in tool_bar_items_vector. */
7836 static int ntool_bar_items
;
7838 /* The symbols `tool-bar', `:image' and `:rtl'. */
7840 extern Lisp_Object Qtool_bar
;
7841 Lisp_Object QCimage
;
7844 /* Function prototypes. */
7846 static void init_tool_bar_items
P_ ((Lisp_Object
));
7847 static void process_tool_bar_item
P_ ((Lisp_Object
, Lisp_Object
, Lisp_Object
, void*));
7848 static int parse_tool_bar_item
P_ ((Lisp_Object
, Lisp_Object
));
7849 static void append_tool_bar_item
P_ ((void));
7852 /* Return a vector of tool bar items for keymaps currently in effect.
7853 Reuse vector REUSE if non-nil. Return in *NITEMS the number of
7854 tool bar items found. */
7857 tool_bar_items (reuse
, nitems
)
7868 /* In order to build the menus, we need to call the keymap
7869 accessors. They all call QUIT. But this function is called
7870 during redisplay, during which a quit is fatal. So inhibit
7871 quitting while building the menus. We do this instead of
7872 specbind because (1) errors will clear it anyway and (2) this
7873 avoids risk of specpdl overflow. */
7874 oquit
= Vinhibit_quit
;
7877 /* Initialize tool_bar_items_vector and protect it from GC. */
7878 init_tool_bar_items (reuse
);
7880 /* Build list of keymaps in maps. Set nmaps to the number of maps
7883 /* Should overriding-terminal-local-map and overriding-local-map apply? */
7884 if (!NILP (Voverriding_local_map_menu_flag
))
7886 /* Yes, use them (if non-nil) as well as the global map. */
7887 maps
= (Lisp_Object
*) alloca (3 * sizeof (maps
[0]));
7889 if (!NILP (current_kboard
->Voverriding_terminal_local_map
))
7890 maps
[nmaps
++] = current_kboard
->Voverriding_terminal_local_map
;
7891 if (!NILP (Voverriding_local_map
))
7892 maps
[nmaps
++] = Voverriding_local_map
;
7896 /* No, so use major and minor mode keymaps and keymap property.
7897 Note that tool-bar bindings in the local-map and keymap
7898 properties may not work reliable, as they are only
7899 recognized when the tool-bar (or mode-line) is updated,
7900 which does not normally happen after every command. */
7903 nminor
= current_minor_maps (NULL
, &tmaps
);
7904 maps
= (Lisp_Object
*) alloca ((nminor
+ 3) * sizeof (maps
[0]));
7906 if (tem
= get_local_map (PT
, current_buffer
, Qkeymap
), !NILP (tem
))
7907 maps
[nmaps
++] = tem
;
7908 bcopy (tmaps
, (void *) (maps
+ nmaps
), nminor
* sizeof (maps
[0]));
7910 maps
[nmaps
++] = get_local_map (PT
, current_buffer
, Qlocal_map
);
7913 /* Add global keymap at the end. */
7914 maps
[nmaps
++] = current_global_map
;
7916 /* Process maps in reverse order and look up in each map the prefix
7918 for (i
= nmaps
- 1; i
>= 0; --i
)
7919 if (!NILP (maps
[i
]))
7923 keymap
= get_keymap (access_keymap (maps
[i
], Qtool_bar
, 1, 0, 1), 0, 1);
7925 map_keymap (keymap
, process_tool_bar_item
, Qnil
, NULL
, 1);
7928 Vinhibit_quit
= oquit
;
7929 *nitems
= ntool_bar_items
/ TOOL_BAR_ITEM_NSLOTS
;
7930 return tool_bar_items_vector
;
7934 /* Process the definition of KEY which is DEF. */
7937 process_tool_bar_item (key
, def
, data
, args
)
7938 Lisp_Object key
, def
, data
;
7942 extern Lisp_Object Qundefined
;
7943 struct gcpro gcpro1
, gcpro2
;
7945 /* Protect KEY and DEF from GC because parse_tool_bar_item may call
7949 if (EQ (def
, Qundefined
))
7951 /* If a map has an explicit `undefined' as definition,
7952 discard any previously made item. */
7953 for (i
= 0; i
< ntool_bar_items
; i
+= TOOL_BAR_ITEM_NSLOTS
)
7955 Lisp_Object
*v
= XVECTOR (tool_bar_items_vector
)->contents
+ i
;
7957 if (EQ (key
, v
[TOOL_BAR_ITEM_KEY
]))
7959 if (ntool_bar_items
> i
+ TOOL_BAR_ITEM_NSLOTS
)
7960 bcopy (v
+ TOOL_BAR_ITEM_NSLOTS
, v
,
7961 ((ntool_bar_items
- i
- TOOL_BAR_ITEM_NSLOTS
)
7962 * sizeof (Lisp_Object
)));
7963 ntool_bar_items
-= TOOL_BAR_ITEM_NSLOTS
;
7968 else if (parse_tool_bar_item (key
, def
))
7969 /* Append a new tool bar item to tool_bar_items_vector. Accept
7970 more than one definition for the same key. */
7971 append_tool_bar_item ();
7977 /* Parse a tool bar item specification ITEM for key KEY and return the
7978 result in tool_bar_item_properties. Value is zero if ITEM is
7981 ITEM is a list `(menu-item CAPTION BINDING PROPS...)'.
7983 CAPTION is the caption of the item, If it's not a string, it is
7984 evaluated to get a string.
7986 BINDING is the tool bar item's binding. Tool-bar items with keymaps
7987 as binding are currently ignored.
7989 The following properties are recognized:
7993 FORM is evaluated and specifies whether the tool bar item is
7994 enabled or disabled.
7998 FORM is evaluated and specifies whether the tool bar item is visible.
8000 - `:filter FUNCTION'
8002 FUNCTION is invoked with one parameter `(quote BINDING)'. Its
8003 result is stored as the new binding.
8005 - `:button (TYPE SELECTED)'
8007 TYPE must be one of `:radio' or `:toggle'. SELECTED is evaluated
8008 and specifies whether the button is selected (pressed) or not.
8012 IMAGES is either a single image specification or a vector of four
8013 image specifications. See enum tool_bar_item_images.
8015 - `:help HELP-STRING'.
8017 Gives a help string to display for the tool bar item. */
8020 parse_tool_bar_item (key
, item
)
8021 Lisp_Object key
, item
;
8023 /* Access slot with index IDX of vector tool_bar_item_properties. */
8024 #define PROP(IDX) XVECTOR (tool_bar_item_properties)->contents[IDX]
8026 Lisp_Object filter
= Qnil
;
8027 Lisp_Object caption
;
8030 /* Defininition looks like `(menu-item CAPTION BINDING PROPS...)'.
8031 Rule out items that aren't lists, don't start with
8032 `menu-item' or whose rest following `tool-bar-item' is not a
8035 || !EQ (XCAR (item
), Qmenu_item
)
8036 || (item
= XCDR (item
),
8040 /* Create tool_bar_item_properties vector if necessary. Reset it to
8042 if (VECTORP (tool_bar_item_properties
))
8044 for (i
= 0; i
< TOOL_BAR_ITEM_NSLOTS
; ++i
)
8048 tool_bar_item_properties
8049 = Fmake_vector (make_number (TOOL_BAR_ITEM_NSLOTS
), Qnil
);
8052 PROP (TOOL_BAR_ITEM_KEY
) = key
;
8053 PROP (TOOL_BAR_ITEM_ENABLED_P
) = Qt
;
8055 /* Get the caption of the item. If the caption is not a string,
8056 evaluate it to get a string. If we don't get a string, skip this
8058 caption
= XCAR (item
);
8059 if (!STRINGP (caption
))
8061 caption
= menu_item_eval_property (caption
);
8062 if (!STRINGP (caption
))
8065 PROP (TOOL_BAR_ITEM_CAPTION
) = caption
;
8067 /* Give up if rest following the caption is not a list. */
8072 /* Store the binding. */
8073 PROP (TOOL_BAR_ITEM_BINDING
) = XCAR (item
);
8076 /* Ignore cached key binding, if any. */
8077 if (CONSP (item
) && CONSP (XCAR (item
)))
8080 /* Process the rest of the properties. */
8081 for (; CONSP (item
) && CONSP (XCDR (item
)); item
= XCDR (XCDR (item
)))
8083 Lisp_Object key
, value
;
8086 value
= XCAR (XCDR (item
));
8088 if (EQ (key
, QCenable
))
8090 /* `:enable FORM'. */
8091 if (!NILP (Venable_disabled_menus_and_buttons
))
8092 PROP (TOOL_BAR_ITEM_ENABLED_P
) = Qt
;
8094 PROP (TOOL_BAR_ITEM_ENABLED_P
) = value
;
8096 else if (EQ (key
, QCvisible
))
8098 /* `:visible FORM'. If got a visible property and that
8099 evaluates to nil then ignore this item. */
8100 if (NILP (menu_item_eval_property (value
)))
8103 else if (EQ (key
, QChelp
))
8104 /* `:help HELP-STRING'. */
8105 PROP (TOOL_BAR_ITEM_HELP
) = value
;
8106 else if (EQ (key
, QCfilter
))
8107 /* ':filter FORM'. */
8109 else if (EQ (key
, QCbutton
) && CONSP (value
))
8111 /* `:button (TYPE . SELECTED)'. */
8112 Lisp_Object type
, selected
;
8114 type
= XCAR (value
);
8115 selected
= XCDR (value
);
8116 if (EQ (type
, QCtoggle
) || EQ (type
, QCradio
))
8118 PROP (TOOL_BAR_ITEM_SELECTED_P
) = selected
;
8119 PROP (TOOL_BAR_ITEM_TYPE
) = type
;
8122 else if (EQ (key
, QCimage
)
8124 || (VECTORP (value
) && XVECTOR (value
)->size
== 4)))
8125 /* Value is either a single image specification or a vector
8126 of 4 such specifications for the different button states. */
8127 PROP (TOOL_BAR_ITEM_IMAGES
) = value
;
8128 else if (EQ (key
, Qrtl
))
8130 PROP (TOOL_BAR_ITEM_RTL_IMAGE
) = value
;
8133 /* If got a filter apply it on binding. */
8135 PROP (TOOL_BAR_ITEM_BINDING
)
8136 = menu_item_eval_property (list2 (filter
,
8138 PROP (TOOL_BAR_ITEM_BINDING
))));
8140 /* See if the binding is a keymap. Give up if it is. */
8141 if (CONSP (get_keymap (PROP (TOOL_BAR_ITEM_BINDING
), 0, 1)))
8144 /* Enable or disable selection of item. */
8145 if (!EQ (PROP (TOOL_BAR_ITEM_ENABLED_P
), Qt
))
8146 PROP (TOOL_BAR_ITEM_ENABLED_P
)
8147 = menu_item_eval_property (PROP (TOOL_BAR_ITEM_ENABLED_P
));
8149 /* Handle radio buttons or toggle boxes. */
8150 if (!NILP (PROP (TOOL_BAR_ITEM_SELECTED_P
)))
8151 PROP (TOOL_BAR_ITEM_SELECTED_P
)
8152 = menu_item_eval_property (PROP (TOOL_BAR_ITEM_SELECTED_P
));
8160 /* Initialize tool_bar_items_vector. REUSE, if non-nil, is a vector
8161 that can be reused. */
8164 init_tool_bar_items (reuse
)
8167 if (VECTORP (reuse
))
8168 tool_bar_items_vector
= reuse
;
8170 tool_bar_items_vector
= Fmake_vector (make_number (64), Qnil
);
8171 ntool_bar_items
= 0;
8175 /* Append parsed tool bar item properties from
8176 tool_bar_item_properties */
8179 append_tool_bar_item ()
8181 Lisp_Object
*to
, *from
;
8183 /* Enlarge tool_bar_items_vector if necessary. */
8184 if (ntool_bar_items
+ TOOL_BAR_ITEM_NSLOTS
8185 >= XVECTOR (tool_bar_items_vector
)->size
)
8187 Lisp_Object new_vector
;
8188 int old_size
= XVECTOR (tool_bar_items_vector
)->size
;
8190 new_vector
= Fmake_vector (make_number (2 * old_size
), Qnil
);
8191 bcopy (XVECTOR (tool_bar_items_vector
)->contents
,
8192 XVECTOR (new_vector
)->contents
,
8193 old_size
* sizeof (Lisp_Object
));
8194 tool_bar_items_vector
= new_vector
;
8197 /* Append entries from tool_bar_item_properties to the end of
8198 tool_bar_items_vector. */
8199 to
= XVECTOR (tool_bar_items_vector
)->contents
+ ntool_bar_items
;
8200 from
= XVECTOR (tool_bar_item_properties
)->contents
;
8201 bcopy (from
, to
, TOOL_BAR_ITEM_NSLOTS
* sizeof *to
);
8202 ntool_bar_items
+= TOOL_BAR_ITEM_NSLOTS
;
8209 /* Read a character using menus based on maps in the array MAPS.
8210 NMAPS is the length of MAPS. Return nil if there are no menus in the maps.
8211 Return t if we displayed a menu but the user rejected it.
8213 PREV_EVENT is the previous input event, or nil if we are reading
8214 the first event of a key sequence.
8216 If USED_MOUSE_MENU is non-null, then we set *USED_MOUSE_MENU to 1
8217 if we used a mouse menu to read the input, or zero otherwise. If
8218 USED_MOUSE_MENU is null, we don't dereference it.
8220 The prompting is done based on the prompt-string of the map
8221 and the strings associated with various map elements.
8223 This can be done with X menus or with menus put in the minibuf.
8224 These are done in different ways, depending on how the input will be read.
8225 Menus using X are done after auto-saving in read-char, getting the input
8226 event from Fx_popup_menu; menus using the minibuf use read_char recursively
8227 and do auto-saving in the inner call of read_char. */
8230 read_char_x_menu_prompt (nmaps
, maps
, prev_event
, used_mouse_menu
)
8233 Lisp_Object prev_event
;
8234 int *used_mouse_menu
;
8237 register Lisp_Object name
= Qnil
;
8239 if (used_mouse_menu
)
8240 *used_mouse_menu
= 0;
8242 /* Use local over global Menu maps */
8244 if (! menu_prompting
)
8247 /* Optionally disregard all but the global map. */
8248 if (inhibit_local_menu_bar_menus
)
8250 maps
+= (nmaps
- 1);
8254 /* Get the menu name from the first map that has one (a prompt string). */
8255 for (mapno
= 0; mapno
< nmaps
; mapno
++)
8257 name
= Fkeymap_prompt (maps
[mapno
]);
8262 /* If we don't have any menus, just read a character normally. */
8263 if (!STRINGP (name
))
8267 /* If we got to this point via a mouse click,
8268 use a real menu for mouse selection. */
8269 if (EVENT_HAS_PARAMETERS (prev_event
)
8270 && !EQ (XCAR (prev_event
), Qmenu_bar
)
8271 && !EQ (XCAR (prev_event
), Qtool_bar
))
8273 /* Display the menu and get the selection. */
8274 Lisp_Object
*realmaps
8275 = (Lisp_Object
*) alloca (nmaps
* sizeof (Lisp_Object
));
8279 /* Use the maps that are not nil. */
8280 for (mapno
= 0; mapno
< nmaps
; mapno
++)
8281 if (!NILP (maps
[mapno
]))
8282 realmaps
[nmaps1
++] = maps
[mapno
];
8284 value
= Fx_popup_menu (prev_event
, Flist (nmaps1
, realmaps
));
8289 record_menu_key (XCAR (value
));
8291 /* If we got multiple events, unread all but
8293 There is no way to prevent those unread events
8294 from showing up later in last_nonmenu_event.
8295 So turn symbol and integer events into lists,
8296 to indicate that they came from a mouse menu,
8297 so that when present in last_nonmenu_event
8298 they won't confuse things. */
8299 for (tem
= XCDR (value
); !NILP (tem
); tem
= XCDR (tem
))
8301 record_menu_key (XCAR (tem
));
8302 if (SYMBOLP (XCAR (tem
))
8303 || INTEGERP (XCAR (tem
)))
8304 XSETCAR (tem
, Fcons (XCAR (tem
), Qdisabled
));
8307 /* If we got more than one event, put all but the first
8308 onto this list to be read later.
8309 Return just the first event now. */
8310 Vunread_command_events
8311 = nconc2 (XCDR (value
), Vunread_command_events
);
8312 value
= XCAR (value
);
8314 else if (NILP (value
))
8316 if (used_mouse_menu
)
8317 *used_mouse_menu
= 1;
8320 #endif /* HAVE_MENUS */
8324 /* Buffer in use so far for the minibuf prompts for menu keymaps.
8325 We make this bigger when necessary, and never free it. */
8326 static char *read_char_minibuf_menu_text
;
8327 /* Size of that buffer. */
8328 static int read_char_minibuf_menu_width
;
8331 read_char_minibuf_menu_prompt (commandflag
, nmaps
, maps
)
8337 register Lisp_Object name
;
8339 /* FIXME: Use the minibuffer's frame width. */
8340 int width
= FRAME_COLS (SELECTED_FRAME ()) - 4;
8343 Lisp_Object rest
, vector
;
8349 if (! menu_prompting
)
8352 /* Make sure we have a big enough buffer for the menu text. */
8353 if (read_char_minibuf_menu_text
== 0)
8355 read_char_minibuf_menu_width
= width
+ 4;
8356 read_char_minibuf_menu_text
= (char *) xmalloc (width
+ 4);
8358 else if (width
+ 4 > read_char_minibuf_menu_width
)
8360 read_char_minibuf_menu_width
= width
+ 4;
8361 read_char_minibuf_menu_text
8362 = (char *) xrealloc (read_char_minibuf_menu_text
, width
+ 4);
8364 menu
= read_char_minibuf_menu_text
;
8366 /* Get the menu name from the first map that has one (a prompt string). */
8367 for (mapno
= 0; mapno
< nmaps
; mapno
++)
8369 name
= Fkeymap_prompt (maps
[mapno
]);
8374 /* If we don't have any menus, just read a character normally. */
8375 if (!STRINGP (name
))
8378 /* Prompt string always starts with map's prompt, and a space. */
8379 strcpy (menu
, SDATA (name
));
8380 nlength
= SBYTES (name
);
8381 menu
[nlength
++] = ':';
8382 menu
[nlength
++] = ' ';
8385 /* Start prompting at start of first map. */
8389 /* Present the documented bindings, a line at a time. */
8396 Lisp_Object orig_defn_macro
;
8398 /* Loop over elements of map. */
8403 /* If reached end of map, start at beginning of next map. */
8407 /* At end of last map, wrap around to first map if just starting,
8408 or end this line if already have something on it. */
8412 if (notfirst
|| nobindings
) break;
8417 /* Look at the next element of the map. */
8419 elt
= XVECTOR (vector
)->contents
[idx
];
8421 elt
= Fcar_safe (rest
);
8423 if (idx
< 0 && VECTORP (elt
))
8425 /* If we found a dense table in the keymap,
8426 advanced past it, but start scanning its contents. */
8427 rest
= Fcdr_safe (rest
);
8433 /* An ordinary element. */
8434 Lisp_Object event
, tem
;
8438 event
= Fcar_safe (elt
); /* alist */
8439 elt
= Fcdr_safe (elt
);
8443 XSETINT (event
, idx
); /* vector */
8446 /* Ignore the element if it has no prompt string. */
8447 if (INTEGERP (event
) && parse_menu_item (elt
, 0, -1))
8449 /* 1 if the char to type matches the string. */
8451 Lisp_Object upcased_event
, downcased_event
;
8452 Lisp_Object desc
= Qnil
;
8454 = XVECTOR (item_properties
)->contents
[ITEM_PROPERTY_NAME
];
8456 upcased_event
= Fupcase (event
);
8457 downcased_event
= Fdowncase (event
);
8458 char_matches
= (XINT (upcased_event
) == SREF (s
, 0)
8459 || XINT (downcased_event
) == SREF (s
, 0));
8461 desc
= Fsingle_key_description (event
, Qnil
);
8463 #if 0 /* It is redundant to list the equivalent key bindings because
8464 the prefix is what the user has already typed. */
8466 = XVECTOR (item_properties
)->contents
[ITEM_PROPERTY_KEYEQ
];
8468 /* Insert equivalent keybinding. */
8469 s
= concat2 (s
, tem
);
8472 = XVECTOR (item_properties
)->contents
[ITEM_PROPERTY_TYPE
];
8473 if (EQ (tem
, QCradio
) || EQ (tem
, QCtoggle
))
8475 /* Insert button prefix. */
8476 Lisp_Object selected
8477 = XVECTOR (item_properties
)->contents
[ITEM_PROPERTY_SELECTED
];
8478 if (EQ (tem
, QCradio
))
8479 tem
= build_string (NILP (selected
) ? "(*) " : "( ) ");
8481 tem
= build_string (NILP (selected
) ? "[X] " : "[ ] ");
8482 s
= concat2 (tem
, s
);
8486 /* If we have room for the prompt string, add it to this line.
8487 If this is the first on the line, always add it. */
8488 if ((SCHARS (s
) + i
+ 2
8489 + (char_matches
? 0 : SCHARS (desc
) + 3))
8495 /* Punctuate between strings. */
8498 strcpy (menu
+ i
, ", ");
8504 /* If the char to type doesn't match the string's
8505 first char, explicitly show what char to type. */
8508 /* Add as much of string as fits. */
8509 thiswidth
= SCHARS (desc
);
8510 if (thiswidth
+ i
> width
)
8511 thiswidth
= width
- i
;
8512 bcopy (SDATA (desc
), menu
+ i
, thiswidth
);
8514 strcpy (menu
+ i
, " = ");
8518 /* Add as much of string as fits. */
8519 thiswidth
= SCHARS (s
);
8520 if (thiswidth
+ i
> width
)
8521 thiswidth
= width
- i
;
8522 bcopy (SDATA (s
), menu
+ i
, thiswidth
);
8528 /* If this element does not fit, end the line now,
8529 and save the element for the next line. */
8530 strcpy (menu
+ i
, "...");
8535 /* Move past this element. */
8536 if (idx
>= 0 && idx
+ 1 >= XVECTOR (vector
)->size
)
8537 /* Handle reaching end of dense table. */
8542 rest
= Fcdr_safe (rest
);
8546 /* Prompt with that and read response. */
8547 message2_nolog (menu
, strlen (menu
),
8548 ! NILP (current_buffer
->enable_multibyte_characters
));
8550 /* Make believe its not a keyboard macro in case the help char
8551 is pressed. Help characters are not recorded because menu prompting
8552 is not used on replay.
8554 orig_defn_macro
= current_kboard
->defining_kbd_macro
;
8555 current_kboard
->defining_kbd_macro
= Qnil
;
8557 obj
= read_char (commandflag
, 0, 0, Qt
, 0, NULL
);
8558 while (BUFFERP (obj
));
8559 current_kboard
->defining_kbd_macro
= orig_defn_macro
;
8561 if (!INTEGERP (obj
))
8566 if (! EQ (obj
, menu_prompt_more_char
)
8567 && (!INTEGERP (menu_prompt_more_char
)
8568 || ! EQ (obj
, make_number (Ctl (XINT (menu_prompt_more_char
))))))
8570 if (!NILP (current_kboard
->defining_kbd_macro
))
8571 store_kbd_macro_char (obj
);
8574 /* Help char - go round again */
8578 /* Reading key sequences. */
8580 /* Follow KEY in the maps in CURRENT[0..NMAPS-1], placing its bindings
8581 in DEFS[0..NMAPS-1]. Set NEXT[i] to DEFS[i] if DEFS[i] is a
8582 keymap, or nil otherwise. Return the index of the first keymap in
8583 which KEY has any binding, or NMAPS if no map has a binding.
8585 If KEY is a meta ASCII character, treat it like meta-prefix-char
8586 followed by the corresponding non-meta character. Keymaps in
8587 CURRENT with non-prefix bindings for meta-prefix-char become nil in
8590 If KEY has no bindings in any of the CURRENT maps, NEXT is left
8593 NEXT may be the same array as CURRENT. */
8596 follow_key (key
, nmaps
, current
, defs
, next
)
8598 Lisp_Object
*current
, *defs
, *next
;
8601 int i
, first_binding
;
8603 first_binding
= nmaps
;
8604 for (i
= nmaps
- 1; i
>= 0; i
--)
8606 if (! NILP (current
[i
]))
8608 defs
[i
] = access_keymap (current
[i
], key
, 1, 0, 1);
8609 if (! NILP (defs
[i
]))
8616 /* Given the set of bindings we've found, produce the next set of maps. */
8617 if (first_binding
< nmaps
)
8618 for (i
= 0; i
< nmaps
; i
++)
8619 next
[i
] = NILP (defs
[i
]) ? Qnil
: get_keymap (defs
[i
], 0, 1);
8621 return first_binding
;
8624 /* Structure used to keep track of partial application of key remapping
8625 such as Vfunction_key_map and Vkey_translation_map. */
8626 typedef struct keyremap
8628 /* This is the map originally specified for this use. */
8630 /* This is a submap reached by looking up, in PARENT,
8631 the events from START to END. */
8633 /* Positions [START, END) in the key sequence buffer
8634 are the key that we have scanned so far.
8635 Those events are the ones that we will replace
8636 if PAREHT maps them into a key sequence. */
8640 /* Lookup KEY in MAP.
8641 MAP is a keymap mapping keys to key vectors or functions.
8642 If the mapping is a function and DO_FUNCTION is non-zero, then
8643 the function is called with PROMPT as parameter and its return
8644 value is used as the return value of this function (after checking
8645 that it is indeed a vector). */
8648 access_keymap_keyremap (map
, key
, prompt
, do_funcall
)
8649 Lisp_Object map
, key
, prompt
;
8654 next
= access_keymap (map
, key
, 1, 0, 1);
8656 /* Handle symbol with autoload definition. */
8657 if (SYMBOLP (next
) && !NILP (Ffboundp (next
))
8658 && CONSP (XSYMBOL (next
)->function
)
8659 && EQ (XCAR (XSYMBOL (next
)->function
), Qautoload
))
8660 do_autoload (XSYMBOL (next
)->function
, next
);
8662 /* Handle a symbol whose function definition is a keymap
8664 if (SYMBOLP (next
) && !NILP (Ffboundp (next
))
8665 && (ARRAYP (XSYMBOL (next
)->function
)
8666 || KEYMAPP (XSYMBOL (next
)->function
)))
8667 next
= XSYMBOL (next
)->function
;
8669 /* If the keymap gives a function, not an
8670 array, then call the function with one arg and use
8671 its value instead. */
8672 if (SYMBOLP (next
) && !NILP (Ffboundp (next
)) && do_funcall
)
8677 next
= call1 (next
, prompt
);
8678 /* If the function returned something invalid,
8679 barf--don't ignore it.
8680 (To ignore it safely, we would need to gcpro a bunch of
8681 other variables.) */
8682 if (! (VECTORP (next
) || STRINGP (next
)))
8683 error ("Function %s returns invalid key sequence", tem
);
8688 /* Do one step of the key remapping used for function-key-map and
8689 key-translation-map:
8690 KEYBUF is the buffer holding the input events.
8691 BUFSIZE is its maximum size.
8692 FKEY is a pointer to the keyremap structure to use.
8693 INPUT is the index of the last element in KEYBUF.
8694 DOIT if non-zero says that the remapping can actually take place.
8695 DIFF is used to return the number of keys added/removed by the remapping.
8696 PARENT is the root of the keymap.
8697 PROMPT is the prompt to use if the remapping happens through a function.
8698 The return value is non-zero if the remapping actually took place. */
8701 keyremap_step (keybuf
, bufsize
, fkey
, input
, doit
, diff
, prompt
)
8702 Lisp_Object
*keybuf
, prompt
;
8704 int input
, doit
, *diff
, bufsize
;
8706 Lisp_Object next
, key
;
8708 key
= keybuf
[fkey
->end
++];
8710 if (KEYMAPP (fkey
->parent
))
8711 next
= access_keymap_keyremap (fkey
->map
, key
, prompt
, doit
);
8715 /* If keybuf[fkey->start..fkey->end] is bound in the
8716 map and we're in a position to do the key remapping, replace it with
8717 the binding and restart with fkey->start at the end. */
8718 if ((VECTORP (next
) || STRINGP (next
)) && doit
)
8720 int len
= XFASTINT (Flength (next
));
8723 *diff
= len
- (fkey
->end
- fkey
->start
);
8725 if (input
+ *diff
>= bufsize
)
8726 error ("Key sequence too long");
8728 /* Shift the keys that follow fkey->end. */
8730 for (i
= fkey
->end
; i
< input
; i
++)
8731 keybuf
[i
+ *diff
] = keybuf
[i
];
8733 for (i
= input
- 1; i
>= fkey
->end
; i
--)
8734 keybuf
[i
+ *diff
] = keybuf
[i
];
8735 /* Overwrite the old keys with the new ones. */
8736 for (i
= 0; i
< len
; i
++)
8737 keybuf
[fkey
->start
+ i
]
8738 = Faref (next
, make_number (i
));
8740 fkey
->start
= fkey
->end
+= *diff
;
8741 fkey
->map
= fkey
->parent
;
8746 fkey
->map
= get_keymap (next
, 0, 1);
8748 /* If we no longer have a bound suffix, try a new position for
8750 if (!CONSP (fkey
->map
))
8752 fkey
->end
= ++fkey
->start
;
8753 fkey
->map
= fkey
->parent
;
8758 /* Read a sequence of keys that ends with a non prefix character,
8759 storing it in KEYBUF, a buffer of size BUFSIZE.
8761 Return the length of the key sequence stored.
8762 Return -1 if the user rejected a command menu.
8764 Echo starting immediately unless `prompt' is 0.
8766 Where a key sequence ends depends on the currently active keymaps.
8767 These include any minor mode keymaps active in the current buffer,
8768 the current buffer's local map, and the global map.
8770 If a key sequence has no other bindings, we check Vfunction_key_map
8771 to see if some trailing subsequence might be the beginning of a
8772 function key's sequence. If so, we try to read the whole function
8773 key, and substitute its symbolic name into the key sequence.
8775 We ignore unbound `down-' mouse clicks. We turn unbound `drag-' and
8776 `double-' events into similar click events, if that would make them
8777 bound. We try to turn `triple-' events first into `double-' events,
8780 If we get a mouse click in a mode line, vertical divider, or other
8781 non-text area, we treat the click as if it were prefixed by the
8782 symbol denoting that area - `mode-line', `vertical-line', or
8785 If the sequence starts with a mouse click, we read the key sequence
8786 with respect to the buffer clicked on, not the current buffer.
8788 If the user switches frames in the midst of a key sequence, we put
8789 off the switch-frame event until later; the next call to
8790 read_char will return it.
8792 If FIX_CURRENT_BUFFER is nonzero, we restore current_buffer
8793 from the selected window's buffer. */
8796 read_key_sequence (keybuf
, bufsize
, prompt
, dont_downcase_last
,
8797 can_return_switch_frame
, fix_current_buffer
)
8798 Lisp_Object
*keybuf
;
8801 int dont_downcase_last
;
8802 int can_return_switch_frame
;
8803 int fix_current_buffer
;
8805 volatile Lisp_Object from_string
;
8806 volatile int count
= SPECPDL_INDEX ();
8808 /* How many keys there are in the current key sequence. */
8811 /* The length of the echo buffer when we started reading, and
8812 the length of this_command_keys when we started reading. */
8813 volatile int echo_start
;
8814 volatile int keys_start
;
8816 /* The number of keymaps we're scanning right now, and the number of
8817 keymaps we have allocated space for. */
8819 volatile int nmaps_allocated
= 0;
8821 /* defs[0..nmaps-1] are the definitions of KEYBUF[0..t-1] in
8822 the current keymaps. */
8823 Lisp_Object
*volatile defs
= NULL
;
8825 /* submaps[0..nmaps-1] are the prefix definitions of KEYBUF[0..t-1]
8826 in the current keymaps, or nil where it is not a prefix. */
8827 Lisp_Object
*volatile submaps
= NULL
;
8829 /* The local map to start out with at start of key sequence. */
8830 volatile Lisp_Object orig_local_map
;
8832 /* The map from the `keymap' property to start out with at start of
8834 volatile Lisp_Object orig_keymap
;
8836 /* 1 if we have already considered switching to the local-map property
8837 of the place where a mouse click occurred. */
8838 volatile int localized_local_map
= 0;
8840 /* The index in submaps[] of the first keymap that has a binding for
8841 this key sequence. In other words, the lowest i such that
8842 submaps[i] is non-nil. */
8843 volatile int first_binding
;
8844 /* Index of the first key that has no binding.
8845 It is useless to try fkey.start larger than that. */
8846 volatile int first_unbound
;
8848 /* If t < mock_input, then KEYBUF[t] should be read as the next
8851 We use this to recover after recognizing a function key. Once we
8852 realize that a suffix of the current key sequence is actually a
8853 function key's escape sequence, we replace the suffix with the
8854 function key's binding from Vfunction_key_map. Now keybuf
8855 contains a new and different key sequence, so the echo area,
8856 this_command_keys, and the submaps and defs arrays are wrong. In
8857 this situation, we set mock_input to t, set t to 0, and jump to
8858 restart_sequence; the loop will read keys from keybuf up until
8859 mock_input, thus rebuilding the state; and then it will resume
8860 reading characters from the keyboard. */
8861 volatile int mock_input
= 0;
8863 /* If the sequence is unbound in submaps[], then
8864 keybuf[fkey.start..fkey.end-1] is a prefix in Vfunction_key_map,
8865 and fkey.map is its binding.
8867 These might be > t, indicating that all function key scanning
8868 should hold off until t reaches them. We do this when we've just
8869 recognized a function key, to avoid searching for the function
8870 key's again in Vfunction_key_map. */
8871 volatile keyremap fkey
;
8873 /* Likewise, for key_translation_map. */
8874 volatile keyremap keytran
;
8876 /* If we receive a `switch-frame' or `select-window' event in the middle of
8877 a key sequence, we put it off for later.
8878 While we're reading, we keep the event here. */
8879 volatile Lisp_Object delayed_switch_frame
;
8881 /* See the comment below... */
8882 #if defined (GOBBLE_FIRST_EVENT)
8883 Lisp_Object first_event
;
8886 volatile Lisp_Object original_uppercase
;
8887 volatile int original_uppercase_position
= -1;
8889 /* Gets around Microsoft compiler limitations. */
8892 struct buffer
*starting_buffer
;
8894 /* List of events for which a fake prefix key has been generated. */
8895 volatile Lisp_Object fake_prefixed_keys
= Qnil
;
8897 #if defined (GOBBLE_FIRST_EVENT)
8901 struct gcpro gcpro1
;
8903 GCPRO1 (fake_prefixed_keys
);
8904 raw_keybuf_count
= 0;
8906 last_nonmenu_event
= Qnil
;
8908 delayed_switch_frame
= Qnil
;
8909 fkey
.map
= fkey
.parent
= Vfunction_key_map
;
8910 keytran
.map
= keytran
.parent
= Vkey_translation_map
;
8911 fkey
.start
= fkey
.end
= 0;
8912 keytran
.start
= keytran
.end
= 0;
8917 echo_prompt (prompt
);
8918 else if (cursor_in_echo_area
8919 && (FLOATP (Vecho_keystrokes
) || INTEGERP (Vecho_keystrokes
))
8920 && NILP (Fzerop (Vecho_keystrokes
)))
8921 /* This doesn't put in a dash if the echo buffer is empty, so
8922 you don't always see a dash hanging out in the minibuffer. */
8926 /* Record the initial state of the echo area and this_command_keys;
8927 we will need to restore them if we replay a key sequence. */
8929 echo_start
= echo_length ();
8930 keys_start
= this_command_key_count
;
8931 this_single_command_key_start
= keys_start
;
8933 #if defined (GOBBLE_FIRST_EVENT)
8934 /* This doesn't quite work, because some of the things that read_char
8935 does cannot safely be bypassed. It seems too risky to try to make
8938 /* Read the first char of the sequence specially, before setting
8939 up any keymaps, in case a filter runs and switches buffers on us. */
8940 first_event
= read_char (NILP (prompt
), 0, submaps
, last_nonmenu_event
,
8942 #endif /* GOBBLE_FIRST_EVENT */
8944 orig_local_map
= get_local_map (PT
, current_buffer
, Qlocal_map
);
8945 orig_keymap
= get_local_map (PT
, current_buffer
, Qkeymap
);
8948 /* We jump here when the key sequence has been thoroughly changed, and
8949 we need to rescan it starting from the beginning. When we jump here,
8950 keybuf[0..mock_input] holds the sequence we should reread. */
8953 starting_buffer
= current_buffer
;
8954 first_unbound
= bufsize
+ 1;
8956 /* Build our list of keymaps.
8957 If we recognize a function key and replace its escape sequence in
8958 keybuf with its symbol, or if the sequence starts with a mouse
8959 click and we need to switch buffers, we jump back here to rebuild
8960 the initial keymaps from the current buffer. */
8963 if (!NILP (current_kboard
->Voverriding_terminal_local_map
))
8965 if (2 > nmaps_allocated
)
8967 submaps
= (Lisp_Object
*) alloca (2 * sizeof (submaps
[0]));
8968 defs
= (Lisp_Object
*) alloca (2 * sizeof (defs
[0]));
8969 nmaps_allocated
= 2;
8971 if (!NILP (current_kboard
->Voverriding_terminal_local_map
))
8972 submaps
[nmaps
++] = current_kboard
->Voverriding_terminal_local_map
;
8974 else if (!NILP (Voverriding_local_map
))
8976 if (2 > nmaps_allocated
)
8978 submaps
= (Lisp_Object
*) alloca (2 * sizeof (submaps
[0]));
8979 defs
= (Lisp_Object
*) alloca (2 * sizeof (defs
[0]));
8980 nmaps_allocated
= 2;
8982 if (!NILP (Voverriding_local_map
))
8983 submaps
[nmaps
++] = Voverriding_local_map
;
8991 nminor
= current_minor_maps (0, &maps
);
8992 total
= nminor
+ (!NILP (orig_keymap
) ? 3 : 2);
8994 if (total
> nmaps_allocated
)
8996 submaps
= (Lisp_Object
*) alloca (total
* sizeof (submaps
[0]));
8997 defs
= (Lisp_Object
*) alloca (total
* sizeof (defs
[0]));
8998 nmaps_allocated
= total
;
9001 if (!NILP (orig_keymap
))
9002 submaps
[nmaps
++] = orig_keymap
;
9004 bcopy (maps
, (void *) (submaps
+ nmaps
),
9005 nminor
* sizeof (submaps
[0]));
9009 submaps
[nmaps
++] = orig_local_map
;
9011 submaps
[nmaps
++] = current_global_map
;
9013 /* Find an accurate initial value for first_binding. */
9014 for (first_binding
= 0; first_binding
< nmaps
; first_binding
++)
9015 if (! NILP (submaps
[first_binding
]))
9018 /* Start from the beginning in keybuf. */
9021 /* These are no-ops the first time through, but if we restart, they
9022 revert the echo area and this_command_keys to their original state. */
9023 this_command_key_count
= keys_start
;
9024 if (INTERACTIVE
&& t
< mock_input
)
9025 echo_truncate (echo_start
);
9027 /* If the best binding for the current key sequence is a keymap, or
9028 we may be looking at a function key's escape sequence, keep on
9030 while (first_binding
< nmaps
9031 /* Keep reading as long as there's a prefix binding. */
9032 ? !NILP (submaps
[first_binding
])
9033 /* Don't return in the middle of a possible function key sequence,
9034 if the only bindings we found were via case conversion.
9035 Thus, if ESC O a has a function-key-map translation
9036 and ESC o has a binding, don't return after ESC O,
9037 so that we can translate ESC O plus the next character. */
9038 : (fkey
.start
< t
|| keytran
.start
< t
))
9041 int used_mouse_menu
= 0;
9043 /* Where the last real key started. If we need to throw away a
9044 key that has expanded into more than one element of keybuf
9045 (say, a mouse click on the mode line which is being treated
9046 as [mode-line (mouse-...)], then we backtrack to this point
9048 volatile int last_real_key_start
;
9050 /* These variables are analogous to echo_start and keys_start;
9051 while those allow us to restart the entire key sequence,
9052 echo_local_start and keys_local_start allow us to throw away
9054 volatile int echo_local_start
, keys_local_start
, local_first_binding
;
9056 eassert (fkey
.end
== t
|| (fkey
.end
> t
&& fkey
.end
<= mock_input
));
9057 eassert (fkey
.start
<= fkey
.end
);
9058 eassert (keytran
.start
<= keytran
.end
);
9059 /* key-translation-map is applied *after* function-key-map. */
9060 eassert (keytran
.end
<= fkey
.start
);
9062 if (first_unbound
< fkey
.start
&& first_unbound
< keytran
.start
)
9063 { /* The prefix upto first_unbound has no binding and has
9064 no translation left to do either, so we know it's unbound.
9065 If we don't stop now, we risk staying here indefinitely
9066 (if the user keeps entering fkey or keytran prefixes
9067 like C-c ESC ESC ESC ESC ...) */
9069 for (i
= first_unbound
+ 1; i
< t
; i
++)
9070 keybuf
[i
- first_unbound
- 1] = keybuf
[i
];
9071 mock_input
= t
- first_unbound
- 1;
9072 fkey
.end
= fkey
.start
-= first_unbound
+ 1;
9073 fkey
.map
= fkey
.parent
;
9074 keytran
.end
= keytran
.start
-= first_unbound
+ 1;
9075 keytran
.map
= keytran
.parent
;
9076 goto replay_sequence
;
9080 error ("Key sequence too long");
9083 echo_local_start
= echo_length ();
9084 keys_local_start
= this_command_key_count
;
9085 local_first_binding
= first_binding
;
9088 /* These are no-ops, unless we throw away a keystroke below and
9089 jumped back up to replay_key; in that case, these restore the
9090 variables to their original state, allowing us to replay the
9092 if (INTERACTIVE
&& t
< mock_input
)
9093 echo_truncate (echo_local_start
);
9094 this_command_key_count
= keys_local_start
;
9095 first_binding
= local_first_binding
;
9097 /* By default, assume each event is "real". */
9098 last_real_key_start
= t
;
9100 /* Does mock_input indicate that we are re-reading a key sequence? */
9104 add_command_key (key
);
9105 if ((FLOATP (Vecho_keystrokes
) || INTEGERP (Vecho_keystrokes
))
9106 && NILP (Fzerop (Vecho_keystrokes
)))
9110 /* If not, we should actually read a character. */
9115 KBOARD
*interrupted_kboard
= current_kboard
;
9116 struct frame
*interrupted_frame
= SELECTED_FRAME ();
9117 if (setjmp (wrong_kboard_jmpbuf
))
9119 if (!NILP (delayed_switch_frame
))
9121 interrupted_kboard
->kbd_queue
9122 = Fcons (delayed_switch_frame
,
9123 interrupted_kboard
->kbd_queue
);
9124 delayed_switch_frame
= Qnil
;
9127 interrupted_kboard
->kbd_queue
9128 = Fcons (keybuf
[--t
], interrupted_kboard
->kbd_queue
);
9130 /* If the side queue is non-empty, ensure it begins with a
9131 switch-frame, so we'll replay it in the right context. */
9132 if (CONSP (interrupted_kboard
->kbd_queue
)
9133 && (key
= XCAR (interrupted_kboard
->kbd_queue
),
9134 !(EVENT_HAS_PARAMETERS (key
)
9135 && EQ (EVENT_HEAD_KIND (EVENT_HEAD (key
)),
9139 XSETFRAME (frame
, interrupted_frame
);
9140 interrupted_kboard
->kbd_queue
9141 = Fcons (make_lispy_switch_frame (frame
),
9142 interrupted_kboard
->kbd_queue
);
9145 orig_local_map
= get_local_map (PT
, current_buffer
, Qlocal_map
);
9146 orig_keymap
= get_local_map (PT
, current_buffer
, Qkeymap
);
9147 goto replay_sequence
;
9150 key
= read_char (NILP (prompt
), nmaps
,
9151 (Lisp_Object
*) submaps
, last_nonmenu_event
,
9152 &used_mouse_menu
, NULL
);
9155 /* read_char returns t when it shows a menu and the user rejects it.
9159 unbind_to (count
, Qnil
);
9164 /* read_char returns -1 at the end of a macro.
9165 Emacs 18 handles this by returning immediately with a
9166 zero, so that's what we'll do. */
9167 if (INTEGERP (key
) && XINT (key
) == -1)
9170 /* The Microsoft C compiler can't handle the goto that
9176 /* If the current buffer has been changed from under us, the
9177 keymap may have changed, so replay the sequence. */
9180 timer_resume_idle ();
9183 /* Reset the current buffer from the selected window
9184 in case something changed the former and not the latter.
9185 This is to be more consistent with the behavior
9186 of the command_loop_1. */
9187 if (fix_current_buffer
)
9189 if (! FRAME_LIVE_P (XFRAME (selected_frame
)))
9191 if (XBUFFER (XWINDOW (selected_window
)->buffer
) != current_buffer
)
9192 Fset_buffer (XWINDOW (selected_window
)->buffer
);
9195 orig_local_map
= get_local_map (PT
, current_buffer
, Qlocal_map
);
9196 orig_keymap
= get_local_map (PT
, current_buffer
, Qkeymap
);
9197 goto replay_sequence
;
9200 /* If we have a quit that was typed in another frame, and
9201 quit_throw_to_read_char switched buffers,
9202 replay to get the right keymap. */
9204 && XINT (key
) == quit_char
9205 && current_buffer
!= starting_buffer
)
9208 XVECTOR (raw_keybuf
)->contents
[raw_keybuf_count
++] = key
;
9212 orig_local_map
= get_local_map (PT
, current_buffer
, Qlocal_map
);
9213 orig_keymap
= get_local_map (PT
, current_buffer
, Qkeymap
);
9214 goto replay_sequence
;
9219 if (EVENT_HAS_PARAMETERS (key
)
9220 /* Either a `switch-frame' or a `select-window' event. */
9221 && EQ (EVENT_HEAD_KIND (EVENT_HEAD (key
)), Qswitch_frame
))
9223 /* If we're at the beginning of a key sequence, and the caller
9224 says it's okay, go ahead and return this event. If we're
9225 in the midst of a key sequence, delay it until the end. */
9226 if (t
> 0 || !can_return_switch_frame
)
9228 delayed_switch_frame
= key
;
9234 XVECTOR (raw_keybuf
)->contents
[raw_keybuf_count
++] = key
;
9237 /* Clicks in non-text areas get prefixed by the symbol
9238 in their CHAR-ADDRESS field. For example, a click on
9239 the mode line is prefixed by the symbol `mode-line'.
9241 Furthermore, key sequences beginning with mouse clicks
9242 are read using the keymaps of the buffer clicked on, not
9243 the current buffer. So we may have to switch the buffer
9246 When we turn one event into two events, we must make sure
9247 that neither of the two looks like the original--so that,
9248 if we replay the events, they won't be expanded again.
9249 If not for this, such reexpansion could happen either here
9250 or when user programs play with this-command-keys. */
9251 if (EVENT_HAS_PARAMETERS (key
))
9256 kind
= EVENT_HEAD_KIND (EVENT_HEAD (key
));
9257 if (EQ (kind
, Qmouse_click
))
9259 Lisp_Object window
, posn
;
9261 window
= POSN_WINDOW (EVENT_START (key
));
9262 posn
= POSN_POSN (EVENT_START (key
));
9265 || (!NILP (fake_prefixed_keys
)
9266 && !NILP (Fmemq (key
, fake_prefixed_keys
))))
9268 /* We're looking a second time at an event for which
9269 we generated a fake prefix key. Set
9270 last_real_key_start appropriately. */
9272 last_real_key_start
= t
- 1;
9275 /* Key sequences beginning with mouse clicks are
9276 read using the keymaps in the buffer clicked on,
9277 not the current buffer. If we're at the
9278 beginning of a key sequence, switch buffers. */
9279 if (last_real_key_start
== 0
9281 && BUFFERP (XWINDOW (window
)->buffer
)
9282 && XBUFFER (XWINDOW (window
)->buffer
) != current_buffer
)
9284 XVECTOR (raw_keybuf
)->contents
[raw_keybuf_count
++] = key
;
9288 /* Arrange to go back to the original buffer once we're
9289 done reading the key sequence. Note that we can't
9290 use save_excursion_{save,restore} here, because they
9291 save point as well as the current buffer; we don't
9292 want to save point, because redisplay may change it,
9293 to accommodate a Fset_window_start or something. We
9294 don't want to do this at the top of the function,
9295 because we may get input from a subprocess which
9296 wants to change the selected window and stuff (say,
9298 record_unwind_protect (Fset_buffer
, Fcurrent_buffer ());
9300 if (! FRAME_LIVE_P (XFRAME (selected_frame
)))
9302 set_buffer_internal (XBUFFER (XWINDOW (window
)->buffer
));
9303 orig_local_map
= get_local_map (PT
, current_buffer
,
9305 orig_keymap
= get_local_map (PT
, current_buffer
, Qkeymap
);
9306 goto replay_sequence
;
9309 /* For a mouse click, get the local text-property keymap
9310 of the place clicked on, rather than point. */
9311 if (last_real_key_start
== 0
9312 && CONSP (XCDR (key
))
9313 && ! localized_local_map
)
9315 Lisp_Object map_here
, start
, pos
;
9317 localized_local_map
= 1;
9318 start
= EVENT_START (key
);
9320 if (CONSP (start
) && POSN_INBUFFER_P (start
))
9322 pos
= POSN_BUFFER_POSN (start
);
9324 && XINT (pos
) >= BEGV
9325 && XINT (pos
) <= ZV
)
9327 map_here
= get_local_map (XINT (pos
),
9328 current_buffer
, Qlocal_map
);
9329 if (!EQ (map_here
, orig_local_map
))
9331 orig_local_map
= map_here
;
9332 ++localized_local_map
;
9335 map_here
= get_local_map (XINT (pos
),
9336 current_buffer
, Qkeymap
);
9337 if (!EQ (map_here
, orig_keymap
))
9339 orig_keymap
= map_here
;
9340 ++localized_local_map
;
9343 if (localized_local_map
> 1)
9348 goto replay_sequence
;
9354 /* Expand mode-line and scroll-bar events into two events:
9355 use posn as a fake prefix key. */
9357 && (NILP (fake_prefixed_keys
)
9358 || NILP (Fmemq (key
, fake_prefixed_keys
))))
9360 if (t
+ 1 >= bufsize
)
9361 error ("Key sequence too long");
9364 keybuf
[t
+ 1] = key
;
9367 /* Record that a fake prefix key has been generated
9368 for KEY. Don't modify the event; this would
9369 prevent proper action when the event is pushed
9370 back into unread-command-events. */
9371 fake_prefixed_keys
= Fcons (key
, fake_prefixed_keys
);
9373 /* If on a mode line string with a local keymap,
9374 reconsider the key sequence with that keymap. */
9375 if (string
= POSN_STRING (EVENT_START (key
)),
9376 (CONSP (string
) && STRINGP (XCAR (string
))))
9378 Lisp_Object pos
, map
, map2
;
9380 pos
= XCDR (string
);
9381 string
= XCAR (string
);
9383 && XINT (pos
) < SCHARS (string
))
9385 map
= Fget_text_property (pos
, Qlocal_map
, string
);
9387 orig_local_map
= map
;
9388 map2
= Fget_text_property (pos
, Qkeymap
, string
);
9391 if (!NILP (map
) || !NILP (map2
))
9392 goto replay_sequence
;
9398 else if (NILP (from_string
)
9399 && (string
= POSN_STRING (EVENT_START (key
)),
9400 (CONSP (string
) && STRINGP (XCAR (string
)))))
9402 /* For a click on a string, i.e. overlay string or a
9403 string displayed via the `display' property,
9404 consider `local-map' and `keymap' properties of
9406 Lisp_Object pos
, map
, map2
;
9408 pos
= XCDR (string
);
9409 string
= XCAR (string
);
9411 && XINT (pos
) < SCHARS (string
))
9413 map
= Fget_text_property (pos
, Qlocal_map
, string
);
9415 orig_local_map
= map
;
9416 map2
= Fget_text_property (pos
, Qkeymap
, string
);
9420 if (!NILP (map
) || !NILP (map2
))
9422 from_string
= string
;
9425 goto replay_sequence
;
9430 else if (CONSP (XCDR (key
))
9431 && CONSP (EVENT_START (key
))
9432 && CONSP (XCDR (EVENT_START (key
))))
9436 posn
= POSN_POSN (EVENT_START (key
));
9437 /* Handle menu-bar events:
9438 insert the dummy prefix event `menu-bar'. */
9439 if (EQ (posn
, Qmenu_bar
) || EQ (posn
, Qtool_bar
))
9441 if (t
+ 1 >= bufsize
)
9442 error ("Key sequence too long");
9446 /* Zap the position in key, so we know that we've
9447 expanded it, and don't try to do so again. */
9448 POSN_SET_POSN (EVENT_START (key
),
9449 Fcons (posn
, Qnil
));
9452 goto replay_sequence
;
9454 else if (CONSP (posn
))
9456 /* We're looking at the second event of a
9457 sequence which we expanded before. Set
9458 last_real_key_start appropriately. */
9459 if (last_real_key_start
== t
&& t
> 0)
9460 last_real_key_start
= t
- 1;
9465 /* We have finally decided that KEY is something we might want
9467 first_binding
= (follow_key (key
,
9468 nmaps
- first_binding
,
9469 submaps
+ first_binding
,
9470 defs
+ first_binding
,
9471 submaps
+ first_binding
)
9474 /* If KEY wasn't bound, we'll try some fallbacks. */
9475 if (first_binding
< nmaps
)
9476 /* This is needed for the following scenario:
9477 event 0: a down-event that gets dropped by calling replay_key.
9478 event 1: some normal prefix like C-h.
9479 After event 0, first_unbound is 0, after event 1 fkey.start
9480 and keytran.start are both 1, so when we see that C-h is bound,
9481 we need to update first_unbound. */
9482 first_unbound
= max (t
+ 1, first_unbound
);
9487 /* Remember the position to put an upper bound on fkey.start. */
9488 first_unbound
= min (t
, first_unbound
);
9490 head
= EVENT_HEAD (key
);
9491 if (help_char_p (head
) && t
> 0)
9493 read_key_sequence_cmd
= Vprefix_help_command
;
9495 last_nonmenu_event
= key
;
9496 /* The Microsoft C compiler can't handle the goto that
9504 Lisp_Object breakdown
;
9507 breakdown
= parse_modifiers (head
);
9508 modifiers
= XINT (XCAR (XCDR (breakdown
)));
9509 /* Attempt to reduce an unbound mouse event to a simpler
9510 event that is bound:
9511 Drags reduce to clicks.
9512 Double-clicks reduce to clicks.
9513 Triple-clicks reduce to double-clicks, then to clicks.
9514 Down-clicks are eliminated.
9515 Double-downs reduce to downs, then are eliminated.
9516 Triple-downs reduce to double-downs, then to downs,
9517 then are eliminated. */
9518 if (modifiers
& (down_modifier
| drag_modifier
9519 | double_modifier
| triple_modifier
))
9521 while (modifiers
& (down_modifier
| drag_modifier
9522 | double_modifier
| triple_modifier
))
9524 Lisp_Object new_head
, new_click
;
9525 if (modifiers
& triple_modifier
)
9526 modifiers
^= (double_modifier
| triple_modifier
);
9527 else if (modifiers
& double_modifier
)
9528 modifiers
&= ~double_modifier
;
9529 else if (modifiers
& drag_modifier
)
9530 modifiers
&= ~drag_modifier
;
9533 /* Dispose of this `down' event by simply jumping
9534 back to replay_key, to get another event.
9536 Note that if this event came from mock input,
9537 then just jumping back to replay_key will just
9538 hand it to us again. So we have to wipe out any
9541 We could delete keybuf[t] and shift everything
9542 after that to the left by one spot, but we'd also
9543 have to fix up any variable that points into
9544 keybuf, and shifting isn't really necessary
9547 Adding prefixes for non-textual mouse clicks
9548 creates two characters of mock input, and both
9549 must be thrown away. If we're only looking at
9550 the prefix now, we can just jump back to
9551 replay_key. On the other hand, if we've already
9552 processed the prefix, and now the actual click
9553 itself is giving us trouble, then we've lost the
9554 state of the keymaps we want to backtrack to, and
9555 we need to replay the whole sequence to rebuild
9558 Beyond that, only function key expansion could
9559 create more than two keys, but that should never
9560 generate mouse events, so it's okay to zero
9561 mock_input in that case too.
9563 FIXME: The above paragraph seems just plain
9564 wrong, if you consider things like
9565 xterm-mouse-mode. -stef
9567 Isn't this just the most wonderful code ever? */
9569 /* If mock_input > t + 1, the above simplification
9570 will actually end up dropping keys on the floor.
9571 This is probably OK for now, but even
9572 if mock_input <= t + 1, we need to adjust fkey
9574 Typical case [header-line down-mouse-N]:
9575 mock_input = 2, t = 1, fkey.end = 1,
9576 last_real_key_start = 0. */
9577 if (fkey
.end
> last_real_key_start
)
9579 fkey
.end
= fkey
.start
9580 = min (last_real_key_start
, fkey
.start
);
9581 fkey
.map
= fkey
.parent
;
9582 if (keytran
.end
> last_real_key_start
)
9584 keytran
.end
= keytran
.start
9585 = min (last_real_key_start
, keytran
.start
);
9586 keytran
.map
= keytran
.parent
;
9589 if (t
== last_real_key_start
)
9596 mock_input
= last_real_key_start
;
9597 goto replay_sequence
;
9602 = apply_modifiers (modifiers
, XCAR (breakdown
));
9604 = Fcons (new_head
, Fcons (EVENT_START (key
), Qnil
));
9606 /* Look for a binding for this new key. follow_key
9607 promises that it didn't munge submaps the
9608 last time we called it, since key was unbound. */
9610 = (follow_key (new_click
,
9611 nmaps
- local_first_binding
,
9612 submaps
+ local_first_binding
,
9613 defs
+ local_first_binding
,
9614 submaps
+ local_first_binding
)
9615 + local_first_binding
);
9617 /* If that click is bound, go for it. */
9618 if (first_binding
< nmaps
)
9623 /* Otherwise, we'll leave key set to the drag event. */
9630 /* Normally, last_nonmenu_event gets the previous key we read.
9631 But when a mouse popup menu is being used,
9632 we don't update last_nonmenu_event; it continues to hold the mouse
9633 event that preceded the first level of menu. */
9634 if (!used_mouse_menu
)
9635 last_nonmenu_event
= key
;
9637 /* Record what part of this_command_keys is the current key sequence. */
9638 this_single_command_key_start
= this_command_key_count
- t
;
9640 if (first_binding
< nmaps
&& NILP (submaps
[first_binding
]))
9641 /* There is a binding and it's not a prefix.
9642 There is thus no function-key in this sequence.
9643 Moving fkey.start is important in this case to allow keytran.start
9644 to go over the sequence before we return (since we keep the
9645 invariant that keytran.end <= fkey.start). */
9648 (fkey
.start
= fkey
.end
= t
, fkey
.map
= fkey
.parent
);
9651 /* If the sequence is unbound, see if we can hang a function key
9652 off the end of it. */
9653 /* Continue scan from fkey.end until we find a bound suffix. */
9654 while (fkey
.end
< t
)
9656 struct gcpro gcpro1
, gcpro2
, gcpro3
;
9659 GCPRO3 (fkey
.map
, keytran
.map
, delayed_switch_frame
);
9660 done
= keyremap_step (keybuf
, bufsize
, &fkey
,
9661 max (t
, mock_input
),
9662 /* If there's a binding (i.e.
9663 first_binding >= nmaps) we don't want
9664 to apply this function-key-mapping. */
9665 fkey
.end
+ 1 == t
&& first_binding
>= nmaps
,
9670 mock_input
= diff
+ max (t
, mock_input
);
9671 goto replay_sequence
;
9675 /* Look for this sequence in key-translation-map.
9676 Scan from keytran.end until we find a bound suffix. */
9677 while (keytran
.end
< fkey
.start
)
9679 struct gcpro gcpro1
, gcpro2
, gcpro3
;
9682 GCPRO3 (fkey
.map
, keytran
.map
, delayed_switch_frame
);
9683 done
= keyremap_step (keybuf
, bufsize
, &keytran
, max (t
, mock_input
),
9688 mock_input
= diff
+ max (t
, mock_input
);
9689 /* Adjust the function-key-map counters. */
9693 goto replay_sequence
;
9697 /* If KEY is not defined in any of the keymaps,
9698 and cannot be part of a function key or translation,
9699 and is an upper case letter
9700 use the corresponding lower-case letter instead. */
9701 if (first_binding
>= nmaps
9702 && fkey
.start
>= t
&& keytran
.start
>= t
9704 && ((((XINT (key
) & 0x3ffff)
9705 < XCHAR_TABLE (current_buffer
->downcase_table
)->size
)
9706 && UPPERCASEP (XINT (key
) & 0x3ffff))
9707 || (XINT (key
) & shift_modifier
)))
9709 Lisp_Object new_key
;
9711 original_uppercase
= key
;
9712 original_uppercase_position
= t
- 1;
9714 if (XINT (key
) & shift_modifier
)
9715 XSETINT (new_key
, XINT (key
) & ~shift_modifier
);
9717 XSETINT (new_key
, (DOWNCASE (XINT (key
) & 0x3ffff)
9718 | (XINT (key
) & ~0x3ffff)));
9720 /* We have to do this unconditionally, regardless of whether
9721 the lower-case char is defined in the keymaps, because they
9722 might get translated through function-key-map. */
9723 keybuf
[t
- 1] = new_key
;
9724 mock_input
= max (t
, mock_input
);
9726 goto replay_sequence
;
9728 /* If KEY is not defined in any of the keymaps,
9729 and cannot be part of a function key or translation,
9730 and is a shifted function key,
9731 use the corresponding unshifted function key instead. */
9732 if (first_binding
>= nmaps
9733 && fkey
.start
>= t
&& keytran
.start
>= t
9736 Lisp_Object breakdown
;
9739 breakdown
= parse_modifiers (key
);
9740 modifiers
= XINT (XCAR (XCDR (breakdown
)));
9741 if (modifiers
& shift_modifier
)
9743 Lisp_Object new_key
;
9745 original_uppercase
= key
;
9746 original_uppercase_position
= t
- 1;
9748 modifiers
&= ~shift_modifier
;
9749 new_key
= apply_modifiers (modifiers
,
9752 keybuf
[t
- 1] = new_key
;
9753 mock_input
= max (t
, mock_input
);
9754 fkey
.start
= fkey
.end
= 0;
9755 keytran
.start
= keytran
.end
= 0;
9757 goto replay_sequence
;
9763 read_key_sequence_cmd
= (first_binding
< nmaps
9764 ? defs
[first_binding
]
9767 unread_switch_frame
= delayed_switch_frame
;
9768 unbind_to (count
, Qnil
);
9770 /* Don't downcase the last character if the caller says don't.
9771 Don't downcase it if the result is undefined, either. */
9772 if ((dont_downcase_last
|| first_binding
>= nmaps
)
9774 && t
- 1 == original_uppercase_position
)
9775 keybuf
[t
- 1] = original_uppercase
;
9777 /* Occasionally we fabricate events, perhaps by expanding something
9778 according to function-key-map, or by adding a prefix symbol to a
9779 mouse click in the scroll bar or modeline. In this cases, return
9780 the entire generated key sequence, even if we hit an unbound
9781 prefix or a definition before the end. This means that you will
9782 be able to push back the event properly, and also means that
9783 read-key-sequence will always return a logical unit.
9786 for (; t
< mock_input
; t
++)
9788 if ((FLOATP (Vecho_keystrokes
) || INTEGERP (Vecho_keystrokes
))
9789 && NILP (Fzerop (Vecho_keystrokes
)))
9790 echo_char (keybuf
[t
]);
9791 add_command_key (keybuf
[t
]);
9800 DEFUN ("read-key-sequence", Fread_key_sequence
, Sread_key_sequence
, 1, 5, 0,
9801 doc
: /* Read a sequence of keystrokes and return as a string or vector.
9802 The sequence is sufficient to specify a non-prefix command in the
9803 current local and global maps.
9805 First arg PROMPT is a prompt string. If nil, do not prompt specially.
9806 Second (optional) arg CONTINUE-ECHO, if non-nil, means this key echos
9807 as a continuation of the previous key.
9809 The third (optional) arg DONT-DOWNCASE-LAST, if non-nil, means do not
9810 convert the last event to lower case. (Normally any upper case event
9811 is converted to lower case if the original event is undefined and the lower
9812 case equivalent is defined.) A non-nil value is appropriate for reading
9813 a key sequence to be defined.
9815 A C-g typed while in this function is treated like any other character,
9816 and `quit-flag' is not set.
9818 If the key sequence starts with a mouse click, then the sequence is read
9819 using the keymaps of the buffer of the window clicked in, not the buffer
9820 of the selected window as normal.
9822 `read-key-sequence' drops unbound button-down events, since you normally
9823 only care about the click or drag events which follow them. If a drag
9824 or multi-click event is unbound, but the corresponding click event would
9825 be bound, `read-key-sequence' turns the event into a click event at the
9826 drag's starting position. This means that you don't have to distinguish
9827 between click and drag, double, or triple events unless you want to.
9829 `read-key-sequence' prefixes mouse events on mode lines, the vertical
9830 lines separating windows, and scroll bars with imaginary keys
9831 `mode-line', `vertical-line', and `vertical-scroll-bar'.
9833 Optional fourth argument CAN-RETURN-SWITCH-FRAME non-nil means that this
9834 function will process a switch-frame event if the user switches frames
9835 before typing anything. If the user switches frames in the middle of a
9836 key sequence, or at the start of the sequence but CAN-RETURN-SWITCH-FRAME
9837 is nil, then the event will be put off until after the current key sequence.
9839 `read-key-sequence' checks `function-key-map' for function key
9840 sequences, where they wouldn't conflict with ordinary bindings. See
9841 `function-key-map' for more details.
9843 The optional fifth argument COMMAND-LOOP, if non-nil, means
9844 that this key sequence is being read by something that will
9845 read commands one after another. It should be nil if the caller
9846 will read just one key sequence. */)
9847 (prompt
, continue_echo
, dont_downcase_last
, can_return_switch_frame
,
9849 Lisp_Object prompt
, continue_echo
, dont_downcase_last
;
9850 Lisp_Object can_return_switch_frame
, command_loop
;
9852 Lisp_Object keybuf
[30];
9854 struct gcpro gcpro1
;
9855 int count
= SPECPDL_INDEX ();
9858 CHECK_STRING (prompt
);
9861 specbind (Qinput_method_exit_on_first_char
,
9862 (NILP (command_loop
) ? Qt
: Qnil
));
9863 specbind (Qinput_method_use_echo_area
,
9864 (NILP (command_loop
) ? Qt
: Qnil
));
9866 bzero (keybuf
, sizeof keybuf
);
9868 gcpro1
.nvars
= (sizeof keybuf
/sizeof (keybuf
[0]));
9870 if (NILP (continue_echo
))
9872 this_command_key_count
= 0;
9873 this_command_key_count_reset
= 0;
9874 this_single_command_key_start
= 0;
9877 #ifdef HAVE_X_WINDOWS
9878 if (display_hourglass_p
)
9879 cancel_hourglass ();
9882 i
= read_key_sequence (keybuf
, (sizeof keybuf
/sizeof (keybuf
[0])),
9883 prompt
, ! NILP (dont_downcase_last
),
9884 ! NILP (can_return_switch_frame
), 0);
9886 #if 0 /* The following is fine for code reading a key sequence and
9887 then proceeding with a lenghty computation, but it's not good
9888 for code reading keys in a loop, like an input method. */
9889 #ifdef HAVE_X_WINDOWS
9890 if (display_hourglass_p
)
9901 return unbind_to (count
, make_event_array (i
, keybuf
));
9904 DEFUN ("read-key-sequence-vector", Fread_key_sequence_vector
,
9905 Sread_key_sequence_vector
, 1, 5, 0,
9906 doc
: /* Like `read-key-sequence' but always return a vector. */)
9907 (prompt
, continue_echo
, dont_downcase_last
, can_return_switch_frame
,
9909 Lisp_Object prompt
, continue_echo
, dont_downcase_last
;
9910 Lisp_Object can_return_switch_frame
, command_loop
;
9912 Lisp_Object keybuf
[30];
9914 struct gcpro gcpro1
;
9915 int count
= SPECPDL_INDEX ();
9918 CHECK_STRING (prompt
);
9921 specbind (Qinput_method_exit_on_first_char
,
9922 (NILP (command_loop
) ? Qt
: Qnil
));
9923 specbind (Qinput_method_use_echo_area
,
9924 (NILP (command_loop
) ? Qt
: Qnil
));
9926 bzero (keybuf
, sizeof keybuf
);
9928 gcpro1
.nvars
= (sizeof keybuf
/sizeof (keybuf
[0]));
9930 if (NILP (continue_echo
))
9932 this_command_key_count
= 0;
9933 this_command_key_count_reset
= 0;
9934 this_single_command_key_start
= 0;
9937 #ifdef HAVE_X_WINDOWS
9938 if (display_hourglass_p
)
9939 cancel_hourglass ();
9942 i
= read_key_sequence (keybuf
, (sizeof keybuf
/sizeof (keybuf
[0])),
9943 prompt
, ! NILP (dont_downcase_last
),
9944 ! NILP (can_return_switch_frame
), 0);
9946 #ifdef HAVE_X_WINDOWS
9947 if (display_hourglass_p
)
9957 return unbind_to (count
, Fvector (i
, keybuf
));
9960 DEFUN ("command-execute", Fcommand_execute
, Scommand_execute
, 1, 4, 0,
9961 doc
: /* Execute CMD as an editor command.
9962 CMD must be a symbol that satisfies the `commandp' predicate.
9963 Optional second arg RECORD-FLAG non-nil
9964 means unconditionally put this command in `command-history'.
9965 Otherwise, that is done only if an arg is read using the minibuffer.
9966 The argument KEYS specifies the value to use instead of (this-command-keys)
9967 when reading the arguments; if it is nil, (this-command-keys) is used.
9968 The argument SPECIAL, if non-nil, means that this command is executing
9969 a special event, so ignore the prefix argument and don't clear it. */)
9970 (cmd
, record_flag
, keys
, special
)
9971 Lisp_Object cmd
, record_flag
, keys
, special
;
9973 register Lisp_Object final
;
9974 register Lisp_Object tem
;
9975 Lisp_Object prefixarg
;
9976 struct backtrace backtrace
;
9977 extern int debug_on_next_call
;
9979 debug_on_next_call
= 0;
9983 prefixarg
= current_kboard
->Vprefix_arg
;
9984 Vcurrent_prefix_arg
= prefixarg
;
9985 current_kboard
->Vprefix_arg
= Qnil
;
9992 tem
= Fget (cmd
, Qdisabled
);
9993 if (!NILP (tem
) && !NILP (Vrun_hooks
))
9995 tem
= Fsymbol_value (Qdisabled_command_function
);
9997 return call1 (Vrun_hooks
, Qdisabled_command_function
);
10003 final
= Findirect_function (cmd
, Qnil
);
10005 if (CONSP (final
) && (tem
= Fcar (final
), EQ (tem
, Qautoload
)))
10007 struct gcpro gcpro1
, gcpro2
;
10009 GCPRO2 (cmd
, prefixarg
);
10010 do_autoload (final
, cmd
);
10017 if (STRINGP (final
) || VECTORP (final
))
10019 /* If requested, place the macro in the command history. For
10020 other sorts of commands, call-interactively takes care of
10022 if (!NILP (record_flag
))
10025 = Fcons (Fcons (Qexecute_kbd_macro
,
10026 Fcons (final
, Fcons (prefixarg
, Qnil
))),
10029 /* Don't keep command history around forever. */
10030 if (NUMBERP (Vhistory_length
) && XINT (Vhistory_length
) > 0)
10032 tem
= Fnthcdr (Vhistory_length
, Vcommand_history
);
10034 XSETCDR (tem
, Qnil
);
10038 return Fexecute_kbd_macro (final
, prefixarg
, Qnil
);
10041 if (CONSP (final
) || SUBRP (final
) || COMPILEDP (final
))
10043 backtrace
.next
= backtrace_list
;
10044 backtrace_list
= &backtrace
;
10045 backtrace
.function
= &Qcall_interactively
;
10046 backtrace
.args
= &cmd
;
10047 backtrace
.nargs
= 1;
10048 backtrace
.evalargs
= 0;
10049 backtrace
.debug_on_exit
= 0;
10051 tem
= Fcall_interactively (cmd
, record_flag
, keys
);
10053 backtrace_list
= backtrace
.next
;
10061 DEFUN ("execute-extended-command", Fexecute_extended_command
, Sexecute_extended_command
,
10063 doc
: /* Read function name, then read its arguments and call it.
10065 To pass a numeric argument to the command you are invoking with, specify
10066 the numeric argument to this command.
10068 Noninteractively, the argument PREFIXARG is the prefix argument to
10069 give to the command you invoke, if it asks for an argument. */)
10071 Lisp_Object prefixarg
;
10073 Lisp_Object function
;
10075 int saved_last_point_position
;
10076 Lisp_Object saved_keys
, saved_last_point_position_buffer
;
10077 Lisp_Object bindings
, value
;
10078 struct gcpro gcpro1
, gcpro2
, gcpro3
;
10079 #ifdef HAVE_X_WINDOWS
10080 /* The call to Fcompleting_read wil start and cancel the hourglass,
10081 but if the hourglass was already scheduled, this means that no
10082 hourglass will be shown for the actual M-x command itself.
10083 So we restart it if it is already scheduled. Note that checking
10084 hourglass_shown_p is not enough, normally the hourglass is not shown,
10085 just scheduled to be shown. */
10086 int hstarted
= hourglass_started ();
10089 saved_keys
= Fvector (this_command_key_count
,
10090 XVECTOR (this_command_keys
)->contents
);
10091 saved_last_point_position_buffer
= last_point_position_buffer
;
10092 saved_last_point_position
= last_point_position
;
10094 GCPRO3 (saved_keys
, prefixarg
, saved_last_point_position_buffer
);
10096 if (EQ (prefixarg
, Qminus
))
10097 strcpy (buf
, "- ");
10098 else if (CONSP (prefixarg
) && XINT (XCAR (prefixarg
)) == 4)
10099 strcpy (buf
, "C-u ");
10100 else if (CONSP (prefixarg
) && INTEGERP (XCAR (prefixarg
)))
10101 sprintf (buf
, "%ld ", (long) XINT (XCAR (prefixarg
)));
10102 else if (INTEGERP (prefixarg
))
10103 sprintf (buf
, "%ld ", (long) XINT (prefixarg
));
10105 /* This isn't strictly correct if execute-extended-command
10106 is bound to anything else. Perhaps it should use
10107 this_command_keys? */
10108 strcat (buf
, "M-x ");
10110 /* Prompt with buf, and then read a string, completing from and
10111 restricting to the set of all defined commands. Don't provide
10112 any initial input. Save the command read on the extended-command
10114 function
= Fcompleting_read (build_string (buf
),
10115 Vobarray
, Qcommandp
,
10116 Qt
, Qnil
, Qextended_command_history
, Qnil
,
10119 #ifdef HAVE_X_WINDOWS
10120 if (hstarted
) start_hourglass ();
10123 if (STRINGP (function
) && SCHARS (function
) == 0)
10124 error ("No command name given");
10126 /* Set this_command_keys to the concatenation of saved_keys and
10127 function, followed by a RET. */
10132 this_command_key_count
= 0;
10133 this_command_key_count_reset
= 0;
10134 this_single_command_key_start
= 0;
10136 keys
= XVECTOR (saved_keys
)->contents
;
10137 for (i
= 0; i
< XVECTOR (saved_keys
)->size
; i
++)
10138 add_command_key (keys
[i
]);
10140 for (i
= 0; i
< SCHARS (function
); i
++)
10141 add_command_key (Faref (function
, make_number (i
)));
10143 add_command_key (make_number ('\015'));
10146 last_point_position
= saved_last_point_position
;
10147 last_point_position_buffer
= saved_last_point_position_buffer
;
10151 function
= Fintern (function
, Qnil
);
10152 current_kboard
->Vprefix_arg
= prefixarg
;
10153 Vthis_command
= function
;
10154 real_this_command
= function
;
10156 /* If enabled, show which key runs this command. */
10157 if (!NILP (Vsuggest_key_bindings
)
10158 && NILP (Vexecuting_kbd_macro
)
10159 && SYMBOLP (function
))
10160 bindings
= Fwhere_is_internal (function
, Voverriding_local_map
,
10166 GCPRO2 (bindings
, value
);
10167 value
= Fcommand_execute (function
, Qt
, Qnil
, Qnil
);
10169 /* If the command has a key binding, print it now. */
10170 if (!NILP (bindings
)
10171 && ! (VECTORP (bindings
) && EQ (Faref (bindings
, make_number (0)),
10174 /* But first wait, and skip the message if there is input. */
10175 Lisp_Object waited
;
10177 /* If this command displayed something in the echo area;
10178 wait a few seconds, then display our suggestion message. */
10179 if (NILP (echo_area_buffer
[0]))
10180 waited
= sit_for (make_number (0), 0, 2);
10181 else if (NUMBERP (Vsuggest_key_bindings
))
10182 waited
= sit_for (Vsuggest_key_bindings
, 0, 2);
10184 waited
= sit_for (make_number (2), 0, 2);
10186 if (!NILP (waited
) && ! CONSP (Vunread_command_events
))
10188 Lisp_Object binding
;
10190 int message_p
= push_message ();
10191 int count
= SPECPDL_INDEX ();
10193 record_unwind_protect (pop_message_unwind
, Qnil
);
10194 binding
= Fkey_description (bindings
, Qnil
);
10197 = (char *) alloca (SCHARS (SYMBOL_NAME (function
))
10200 sprintf (newmessage
, "You can run the command `%s' with %s",
10201 SDATA (SYMBOL_NAME (function
)),
10203 message2_nolog (newmessage
,
10204 strlen (newmessage
),
10205 STRING_MULTIBYTE (binding
));
10206 if (NUMBERP (Vsuggest_key_bindings
))
10207 waited
= sit_for (Vsuggest_key_bindings
, 0, 2);
10209 waited
= sit_for (make_number (2), 0, 2);
10211 if (!NILP (waited
) && message_p
)
10212 restore_message ();
10214 unbind_to (count
, Qnil
);
10218 RETURN_UNGCPRO (value
);
10222 /* Return nonzero if input events are pending. */
10225 detect_input_pending ()
10227 if (!input_pending
)
10228 get_input_pending (&input_pending
, 0);
10230 return input_pending
;
10233 /* Return nonzero if input events other than mouse movements are
10237 detect_input_pending_ignore_squeezables ()
10239 if (!input_pending
)
10240 get_input_pending (&input_pending
, READABLE_EVENTS_IGNORE_SQUEEZABLES
);
10242 return input_pending
;
10245 /* Return nonzero if input events are pending, and run any pending timers. */
10248 detect_input_pending_run_timers (do_display
)
10251 int old_timers_run
= timers_run
;
10253 if (!input_pending
)
10254 get_input_pending (&input_pending
, READABLE_EVENTS_DO_TIMERS_NOW
);
10256 if (old_timers_run
!= timers_run
&& do_display
)
10258 redisplay_preserve_echo_area (8);
10259 /* The following fixes a bug when using lazy-lock with
10260 lazy-lock-defer-on-the-fly set to t, i.e. when fontifying
10261 from an idle timer function. The symptom of the bug is that
10262 the cursor sometimes doesn't become visible until the next X
10263 event is processed. --gerd. */
10265 rif
->flush_display (NULL
);
10268 return input_pending
;
10271 /* This is called in some cases before a possible quit.
10272 It cases the next call to detect_input_pending to recompute input_pending.
10273 So calling this function unnecessarily can't do any harm. */
10276 clear_input_pending ()
10281 /* Return nonzero if there are pending requeued events.
10282 This isn't used yet. The hope is to make wait_reading_process_output
10283 call it, and return if it runs Lisp code that unreads something.
10284 The problem is, kbd_buffer_get_event needs to be fixed to know what
10285 to do in that case. It isn't trivial. */
10288 requeued_events_pending_p ()
10290 return (!NILP (Vunread_command_events
) || unread_command_char
!= -1);
10294 DEFUN ("input-pending-p", Finput_pending_p
, Sinput_pending_p
, 0, 0, 0,
10295 doc
: /* Return t if command input is currently available with no wait.
10296 Actually, the value is nil only if we can be sure that no input is available;
10297 if there is a doubt, the value is t. */)
10300 if (!NILP (Vunread_command_events
) || unread_command_char
!= -1
10301 || !NILP (Vunread_post_input_method_events
)
10302 || !NILP (Vunread_input_method_events
))
10305 get_input_pending (&input_pending
,
10306 READABLE_EVENTS_DO_TIMERS_NOW
10307 | READABLE_EVENTS_FILTER_EVENTS
);
10308 return input_pending
> 0 ? Qt
: Qnil
;
10311 DEFUN ("recent-keys", Frecent_keys
, Srecent_keys
, 0, 0, 0,
10312 doc
: /* Return vector of last 300 events, not counting those from keyboard macros. */)
10315 Lisp_Object
*keys
= XVECTOR (recent_keys
)->contents
;
10318 if (total_keys
< NUM_RECENT_KEYS
)
10319 return Fvector (total_keys
, keys
);
10322 val
= Fvector (NUM_RECENT_KEYS
, keys
);
10323 bcopy (keys
+ recent_keys_index
,
10324 XVECTOR (val
)->contents
,
10325 (NUM_RECENT_KEYS
- recent_keys_index
) * sizeof (Lisp_Object
));
10327 XVECTOR (val
)->contents
+ NUM_RECENT_KEYS
- recent_keys_index
,
10328 recent_keys_index
* sizeof (Lisp_Object
));
10333 DEFUN ("this-command-keys", Fthis_command_keys
, Sthis_command_keys
, 0, 0, 0,
10334 doc
: /* Return the key sequence that invoked this command.
10335 However, if the command has called `read-key-sequence', it returns
10336 the last key sequence that has been read.
10337 The value is a string or a vector.
10339 See also `this-command-keys-vector'. */)
10342 return make_event_array (this_command_key_count
,
10343 XVECTOR (this_command_keys
)->contents
);
10346 DEFUN ("this-command-keys-vector", Fthis_command_keys_vector
, Sthis_command_keys_vector
, 0, 0, 0,
10347 doc
: /* Return the key sequence that invoked this command, as a vector.
10348 However, if the command has called `read-key-sequence', it returns
10349 the last key sequence that has been read.
10351 See also `this-command-keys'. */)
10354 return Fvector (this_command_key_count
,
10355 XVECTOR (this_command_keys
)->contents
);
10358 DEFUN ("this-single-command-keys", Fthis_single_command_keys
,
10359 Sthis_single_command_keys
, 0, 0, 0,
10360 doc
: /* Return the key sequence that invoked this command.
10361 More generally, it returns the last key sequence read, either by
10362 the command loop or by `read-key-sequence'.
10363 Unlike `this-command-keys', this function's value
10364 does not include prefix arguments.
10365 The value is always a vector. */)
10368 return Fvector (this_command_key_count
10369 - this_single_command_key_start
,
10370 (XVECTOR (this_command_keys
)->contents
10371 + this_single_command_key_start
));
10374 DEFUN ("this-single-command-raw-keys", Fthis_single_command_raw_keys
,
10375 Sthis_single_command_raw_keys
, 0, 0, 0,
10376 doc
: /* Return the raw events that were read for this command.
10377 More generally, it returns the last key sequence read, either by
10378 the command loop or by `read-key-sequence'.
10379 Unlike `this-single-command-keys', this function's value
10380 shows the events before all translations (except for input methods).
10381 The value is always a vector. */)
10384 return Fvector (raw_keybuf_count
,
10385 (XVECTOR (raw_keybuf
)->contents
));
10388 DEFUN ("reset-this-command-lengths", Freset_this_command_lengths
,
10389 Sreset_this_command_lengths
, 0, 0, 0,
10390 doc
: /* Make the unread events replace the last command and echo.
10391 Used in `universal-argument-other-key'.
10393 `universal-argument-other-key' rereads the event just typed.
10394 It then gets translated through `function-key-map'.
10395 The translated event has to replace the real events,
10396 both in the value of (this-command-keys) and in echoing.
10397 To achieve this, `universal-argument-other-key' calls
10398 `reset-this-command-lengths', which discards the record of reading
10399 these events the first time. */)
10402 this_command_key_count
= before_command_key_count
;
10403 if (this_command_key_count
< this_single_command_key_start
)
10404 this_single_command_key_start
= this_command_key_count
;
10406 echo_truncate (before_command_echo_length
);
10408 /* Cause whatever we put into unread-command-events
10409 to echo as if it were being freshly read from the keyboard. */
10410 this_command_key_count_reset
= 1;
10415 DEFUN ("clear-this-command-keys", Fclear_this_command_keys
,
10416 Sclear_this_command_keys
, 0, 1, 0,
10417 doc
: /* Clear out the vector that `this-command-keys' returns.
10418 Also clear the record of the last 100 events, unless optional arg
10419 KEEP-RECORD is non-nil. */)
10421 Lisp_Object keep_record
;
10425 this_command_key_count
= 0;
10426 this_command_key_count_reset
= 0;
10428 if (NILP (keep_record
))
10430 for (i
= 0; i
< XVECTOR (recent_keys
)->size
; ++i
)
10431 XVECTOR (recent_keys
)->contents
[i
] = Qnil
;
10433 recent_keys_index
= 0;
10438 DEFUN ("recursion-depth", Frecursion_depth
, Srecursion_depth
, 0, 0, 0,
10439 doc
: /* Return the current depth in recursive edits. */)
10443 XSETFASTINT (temp
, command_loop_level
+ minibuf_level
);
10447 DEFUN ("open-dribble-file", Fopen_dribble_file
, Sopen_dribble_file
, 1, 1,
10448 "FOpen dribble file: ",
10449 doc
: /* Start writing all keyboard characters to a dribble file called FILE.
10450 If FILE is nil, close any open dribble file. */)
10463 file
= Fexpand_file_name (file
, Qnil
);
10464 dribble
= fopen (SDATA (file
), "w");
10466 report_file_error ("Opening dribble", Fcons (file
, Qnil
));
10471 DEFUN ("discard-input", Fdiscard_input
, Sdiscard_input
, 0, 0, 0,
10472 doc
: /* Discard the contents of the terminal input buffer.
10473 Also end any kbd macro being defined. */)
10476 if (!NILP (current_kboard
->defining_kbd_macro
))
10478 /* Discard the last command from the macro. */
10479 Fcancel_kbd_macro_events ();
10483 update_mode_lines
++;
10485 Vunread_command_events
= Qnil
;
10486 unread_command_char
= -1;
10488 discard_tty_input ();
10490 kbd_fetch_ptr
= kbd_store_ptr
;
10496 DEFUN ("suspend-emacs", Fsuspend_emacs
, Ssuspend_emacs
, 0, 1, "",
10497 doc
: /* Stop Emacs and return to superior process. You can resume later.
10498 If `cannot-suspend' is non-nil, or if the system doesn't support job
10499 control, run a subshell instead.
10501 If optional arg STUFFSTRING is non-nil, its characters are stuffed
10502 to be read as terminal input by Emacs's parent, after suspension.
10504 Before suspending, run the normal hook `suspend-hook'.
10505 After resumption run the normal hook `suspend-resume-hook'.
10507 Some operating systems cannot stop the Emacs process and resume it later.
10508 On such systems, Emacs starts a subshell instead of suspending. */)
10510 Lisp_Object stuffstring
;
10512 int count
= SPECPDL_INDEX ();
10513 int old_height
, old_width
;
10515 struct gcpro gcpro1
;
10517 if (!NILP (stuffstring
))
10518 CHECK_STRING (stuffstring
);
10520 /* Run the functions in suspend-hook. */
10521 if (!NILP (Vrun_hooks
))
10522 call1 (Vrun_hooks
, intern ("suspend-hook"));
10524 GCPRO1 (stuffstring
);
10525 get_frame_size (&old_width
, &old_height
);
10526 reset_sys_modes ();
10527 /* sys_suspend can get an error if it tries to fork a subshell
10528 and the system resources aren't available for that. */
10529 record_unwind_protect ((Lisp_Object (*) P_ ((Lisp_Object
))) init_sys_modes
,
10531 stuff_buffered_input (stuffstring
);
10532 if (cannot_suspend
)
10536 unbind_to (count
, Qnil
);
10538 /* Check if terminal/window size has changed.
10539 Note that this is not useful when we are running directly
10540 with a window system; but suspend should be disabled in that case. */
10541 get_frame_size (&width
, &height
);
10542 if (width
!= old_width
|| height
!= old_height
)
10543 change_frame_size (SELECTED_FRAME (), height
, width
, 0, 0, 0);
10545 /* Run suspend-resume-hook. */
10546 if (!NILP (Vrun_hooks
))
10547 call1 (Vrun_hooks
, intern ("suspend-resume-hook"));
10553 /* If STUFFSTRING is a string, stuff its contents as pending terminal input.
10554 Then in any case stuff anything Emacs has read ahead and not used. */
10557 stuff_buffered_input (stuffstring
)
10558 Lisp_Object stuffstring
;
10560 #ifdef SIGTSTP /* stuff_char is defined if SIGTSTP. */
10561 register unsigned char *p
;
10563 if (STRINGP (stuffstring
))
10565 register int count
;
10567 p
= SDATA (stuffstring
);
10568 count
= SBYTES (stuffstring
);
10569 while (count
-- > 0)
10574 /* Anything we have read ahead, put back for the shell to read. */
10575 /* ?? What should this do when we have multiple keyboards??
10576 Should we ignore anything that was typed in at the "wrong" kboard?
10578 rms: we should stuff everything back into the kboard
10580 for (; kbd_fetch_ptr
!= kbd_store_ptr
; kbd_fetch_ptr
++)
10583 if (kbd_fetch_ptr
== kbd_buffer
+ KBD_BUFFER_SIZE
)
10584 kbd_fetch_ptr
= kbd_buffer
;
10585 if (kbd_fetch_ptr
->kind
== ASCII_KEYSTROKE_EVENT
)
10586 stuff_char (kbd_fetch_ptr
->code
);
10588 clear_event (kbd_fetch_ptr
);
10592 #endif /* SIGTSTP */
10596 set_waiting_for_input (time_to_clear
)
10597 EMACS_TIME
*time_to_clear
;
10599 input_available_clear_time
= time_to_clear
;
10601 /* Tell interrupt_signal to throw back to read_char, */
10602 waiting_for_input
= 1;
10604 /* If interrupt_signal was called before and buffered a C-g,
10605 make it run again now, to avoid timing error. */
10606 if (!NILP (Vquit_flag
))
10607 quit_throw_to_read_char ();
10611 clear_waiting_for_input ()
10613 /* Tell interrupt_signal not to throw back to read_char, */
10614 waiting_for_input
= 0;
10615 input_available_clear_time
= 0;
10618 /* This routine is called at interrupt level in response to C-g.
10620 If interrupt_input, this is the handler for SIGINT. Otherwise, it
10621 is called from kbd_buffer_store_event, in handling SIGIO or
10624 If `waiting_for_input' is non zero, then unless `echoing' is
10625 nonzero, immediately throw back to read_char.
10627 Otherwise it sets the Lisp variable quit-flag not-nil. This causes
10628 eval to throw, when it gets a chance. If quit-flag is already
10629 non-nil, it stops the job right away. */
10632 interrupt_signal (signalnum
) /* If we don't have an argument, */
10633 int signalnum
; /* some compilers complain in signal calls. */
10636 /* Must preserve main program's value of errno. */
10637 int old_errno
= errno
;
10638 struct frame
*sf
= SELECTED_FRAME ();
10640 #if defined (USG) && !defined (POSIX_SIGNALS)
10641 if (!read_socket_hook
&& NILP (Vwindow_system
))
10643 /* USG systems forget handlers when they are used;
10644 must reestablish each time */
10645 signal (SIGINT
, interrupt_signal
);
10646 signal (SIGQUIT
, interrupt_signal
);
10650 SIGNAL_THREAD_CHECK (signalnum
);
10653 if (!NILP (Vquit_flag
)
10654 && (FRAME_TERMCAP_P (sf
) || FRAME_MSDOS_P (sf
)))
10656 /* If SIGINT isn't blocked, don't let us be interrupted by
10657 another SIGINT, it might be harmful due to non-reentrancy
10658 in I/O functions. */
10659 sigblock (sigmask (SIGINT
));
10662 reset_sys_modes ();
10664 #ifdef SIGTSTP /* Support possible in later USG versions */
10666 * On systems which can suspend the current process and return to the original
10667 * shell, this command causes the user to end up back at the shell.
10668 * The "Auto-save" and "Abort" questions are not asked until
10669 * the user elects to return to emacs, at which point he can save the current
10670 * job and either dump core or continue.
10675 if (sys_suspend () == -1)
10677 printf ("Not running as a subprocess;\n");
10678 printf ("you can continue or abort.\n");
10680 #else /* not VMS */
10681 /* Perhaps should really fork an inferior shell?
10682 But that would not provide any way to get back
10683 to the original shell, ever. */
10684 printf ("No support for stopping a process on this operating system;\n");
10685 printf ("you can continue or abort.\n");
10686 #endif /* not VMS */
10687 #endif /* not SIGTSTP */
10689 /* We must remain inside the screen area when the internal terminal
10690 is used. Note that [Enter] is not echoed by dos. */
10693 /* It doesn't work to autosave while GC is in progress;
10694 the code used for auto-saving doesn't cope with the mark bit. */
10695 if (!gc_in_progress
)
10697 printf ("Auto-save? (y or n) ");
10699 if (((c
= getchar ()) & ~040) == 'Y')
10701 Fdo_auto_save (Qt
, Qnil
);
10703 printf ("\r\nAuto-save done");
10704 #else /* not MSDOS */
10705 printf ("Auto-save done\n");
10706 #endif /* not MSDOS */
10708 while (c
!= '\n') c
= getchar ();
10712 /* During GC, it must be safe to reenable quitting again. */
10713 Vinhibit_quit
= Qnil
;
10716 #endif /* not MSDOS */
10717 printf ("Garbage collection in progress; cannot auto-save now\r\n");
10718 printf ("but will instead do a real quit after garbage collection ends\r\n");
10723 printf ("\r\nAbort? (y or n) ");
10724 #else /* not MSDOS */
10726 printf ("Abort (and enter debugger)? (y or n) ");
10727 #else /* not VMS */
10728 printf ("Abort (and dump core)? (y or n) ");
10729 #endif /* not VMS */
10730 #endif /* not MSDOS */
10732 if (((c
= getchar ()) & ~040) == 'Y')
10734 while (c
!= '\n') c
= getchar ();
10736 printf ("\r\nContinuing...\r\n");
10737 #else /* not MSDOS */
10738 printf ("Continuing...\n");
10739 #endif /* not MSDOS */
10746 /* If executing a function that wants to be interrupted out of
10747 and the user has not deferred quitting by binding `inhibit-quit'
10748 then quit right away. */
10749 if (immediate_quit
&& NILP (Vinhibit_quit
))
10751 struct gl_state_s saved
;
10752 struct gcpro gcpro1
, gcpro2
, gcpro3
, gcpro4
;
10754 immediate_quit
= 0;
10757 GCPRO4 (saved
.object
, saved
.global_code
,
10758 saved
.current_syntax_table
, saved
.old_prop
);
10759 Fsignal (Qquit
, Qnil
);
10764 /* Else request quit when it's safe */
10768 if (waiting_for_input
&& !echoing
)
10769 quit_throw_to_read_char ();
10774 /* Handle a C-g by making read_char return C-g. */
10777 quit_throw_to_read_char ()
10780 /* Prevent another signal from doing this before we finish. */
10781 clear_waiting_for_input ();
10784 Vunread_command_events
= Qnil
;
10785 unread_command_char
= -1;
10787 #if 0 /* Currently, sit_for is called from read_char without turning
10788 off polling. And that can call set_waiting_for_input.
10789 It seems to be harmless. */
10790 #ifdef POLL_FOR_INPUT
10791 /* May be > 1 if in recursive minibuffer. */
10792 if (poll_suppress_count
== 0)
10796 if (FRAMEP (internal_last_event_frame
)
10797 && !EQ (internal_last_event_frame
, selected_frame
))
10798 do_switch_frame (make_lispy_switch_frame (internal_last_event_frame
),
10801 _longjmp (getcjmp
, 1);
10804 DEFUN ("set-input-mode", Fset_input_mode
, Sset_input_mode
, 3, 4, 0,
10805 doc
: /* Set mode of reading keyboard input.
10806 First arg INTERRUPT non-nil means use input interrupts;
10807 nil means use CBREAK mode.
10808 Second arg FLOW non-nil means use ^S/^Q flow control for output to terminal
10809 (no effect except in CBREAK mode).
10810 Third arg META t means accept 8-bit input (for a Meta key).
10811 META nil means ignore the top bit, on the assumption it is parity.
10812 Otherwise, accept 8-bit input and don't use the top bit for Meta.
10813 Optional fourth arg QUIT if non-nil specifies character to use for quitting.
10814 See also `current-input-mode'. */)
10815 (interrupt
, flow
, meta
, quit
)
10816 Lisp_Object interrupt
, flow
, meta
, quit
;
10819 && (!INTEGERP (quit
) || XINT (quit
) < 0 || XINT (quit
) > 0400))
10820 error ("set-input-mode: QUIT must be an ASCII character");
10822 #ifdef POLL_FOR_INPUT
10827 /* this causes startup screen to be restored and messes with the mouse */
10828 reset_sys_modes ();
10832 /* Note SIGIO has been undef'd if FIONREAD is missing. */
10833 if (read_socket_hook
)
10835 /* When using X, don't give the user a real choice,
10836 because we haven't implemented the mechanisms to support it. */
10837 #ifdef NO_SOCK_SIGIO
10838 interrupt_input
= 0;
10839 #else /* not NO_SOCK_SIGIO */
10840 interrupt_input
= 1;
10841 #endif /* NO_SOCK_SIGIO */
10844 interrupt_input
= !NILP (interrupt
);
10845 #else /* not SIGIO */
10846 interrupt_input
= 0;
10847 #endif /* not SIGIO */
10849 /* Our VMS input only works by interrupts, as of now. */
10851 interrupt_input
= 1;
10854 flow_control
= !NILP (flow
);
10857 else if (EQ (meta
, Qt
))
10862 /* Don't let this value be out of range. */
10863 quit_char
= XINT (quit
) & (meta_key
? 0377 : 0177);
10869 #ifdef POLL_FOR_INPUT
10870 poll_suppress_count
= 1;
10876 DEFUN ("current-input-mode", Fcurrent_input_mode
, Scurrent_input_mode
, 0, 0, 0,
10877 doc
: /* Return information about the way Emacs currently reads keyboard input.
10878 The value is a list of the form (INTERRUPT FLOW META QUIT), where
10879 INTERRUPT is non-nil if Emacs is using interrupt-driven input; if
10880 nil, Emacs is using CBREAK mode.
10881 FLOW is non-nil if Emacs uses ^S/^Q flow control for output to the
10882 terminal; this does not apply if Emacs uses interrupt-driven input.
10883 META is t if accepting 8-bit input with 8th bit as Meta flag.
10884 META nil means ignoring the top bit, on the assumption it is parity.
10885 META is neither t nor nil if accepting 8-bit input and using
10886 all 8 bits as the character code.
10887 QUIT is the character Emacs currently uses to quit.
10888 The elements of this list correspond to the arguments of
10889 `set-input-mode'. */)
10892 Lisp_Object val
[4];
10894 val
[0] = interrupt_input
? Qt
: Qnil
;
10895 val
[1] = flow_control
? Qt
: Qnil
;
10896 val
[2] = meta_key
== 2 ? make_number (0) : meta_key
== 1 ? Qt
: Qnil
;
10897 XSETFASTINT (val
[3], quit_char
);
10899 return Flist (sizeof (val
) / sizeof (val
[0]), val
);
10902 DEFUN ("posn-at-x-y", Fposn_at_x_y
, Sposn_at_x_y
, 2, 4, 0,
10903 doc
: /* Return position information for pixel coordinates X and Y.
10904 By default, X and Y are relative to text area of the selected window.
10905 Optional third arg FRAME-OR-WINDOW non-nil specifies frame or window.
10906 If optional fourth arg WHOLE is non-nil, X is relative to the left
10907 edge of the window.
10909 The return value is similar to a mouse click position:
10910 (WINDOW AREA-OR-POS (X . Y) TIMESTAMP OBJECT POS (COL . ROW)
10911 IMAGE (DX . DY) (WIDTH . HEIGHT))
10912 The `posn-' functions access elements of such lists. */)
10913 (x
, y
, frame_or_window
, whole
)
10914 Lisp_Object x
, y
, frame_or_window
, whole
;
10919 if (NILP (frame_or_window
))
10920 frame_or_window
= selected_window
;
10922 if (WINDOWP (frame_or_window
))
10926 CHECK_LIVE_WINDOW (frame_or_window
);
10928 w
= XWINDOW (frame_or_window
);
10929 XSETINT (x
, (XINT (x
)
10930 + WINDOW_LEFT_EDGE_X (w
)
10932 ? window_box_left_offset (w
, TEXT_AREA
)
10934 XSETINT (y
, WINDOW_TO_FRAME_PIXEL_Y (w
, XINT (y
)));
10935 frame_or_window
= w
->frame
;
10938 CHECK_LIVE_FRAME (frame_or_window
);
10940 return make_lispy_position (XFRAME (frame_or_window
), &x
, &y
, 0);
10943 DEFUN ("posn-at-point", Fposn_at_point
, Sposn_at_point
, 0, 2, 0,
10944 doc
: /* Return position information for buffer POS in WINDOW.
10945 POS defaults to point in WINDOW; WINDOW defaults to the selected window.
10947 Return nil if position is not visible in window. Otherwise,
10948 the return value is similar to that returned by `event-start' for
10949 a mouse click at the upper left corner of the glyph corresponding
10950 to the given buffer position:
10951 (WINDOW AREA-OR-POS (X . Y) TIMESTAMP OBJECT POS (COL . ROW)
10952 IMAGE (DX . DY) (WIDTH . HEIGHT))
10953 The `posn-' functions access elements of such lists. */)
10955 Lisp_Object pos
, window
;
10960 window
= selected_window
;
10962 tem
= Fpos_visible_in_window_p (pos
, window
, Qt
);
10965 Lisp_Object x
= XCAR (tem
);
10966 Lisp_Object y
= XCAR (XCDR (tem
));
10968 /* Point invisible due to hscrolling? */
10971 tem
= Fposn_at_x_y (x
, y
, window
, Qnil
);
10979 * Set up a new kboard object with reasonable initial values.
10985 kb
->Voverriding_terminal_local_map
= Qnil
;
10986 kb
->Vlast_command
= Qnil
;
10987 kb
->Vreal_last_command
= Qnil
;
10988 kb
->Vlast_repeatable_command
= Qnil
;
10989 kb
->Vprefix_arg
= Qnil
;
10990 kb
->Vlast_prefix_arg
= Qnil
;
10991 kb
->kbd_queue
= Qnil
;
10992 kb
->kbd_queue_has_data
= 0;
10993 kb
->immediate_echo
= 0;
10994 kb
->echo_string
= Qnil
;
10995 kb
->echo_after_prompt
= -1;
10996 kb
->kbd_macro_buffer
= 0;
10997 kb
->kbd_macro_bufsize
= 0;
10998 kb
->defining_kbd_macro
= Qnil
;
10999 kb
->Vlast_kbd_macro
= Qnil
;
11000 kb
->reference_count
= 0;
11001 kb
->Vsystem_key_alist
= Qnil
;
11002 kb
->system_key_syms
= Qnil
;
11003 kb
->Vdefault_minibuffer_frame
= Qnil
;
11007 * Destroy the contents of a kboard object, but not the object itself.
11008 * We use this just before deleting it, or if we're going to initialize
11009 * it a second time.
11015 if (kb
->kbd_macro_buffer
)
11016 xfree (kb
->kbd_macro_buffer
);
11019 #ifdef MULTI_KBOARD
11021 /* Free KB and memory referenced from it. */
11029 for (kbp
= &all_kboards
; *kbp
!= kb
; kbp
= &(*kbp
)->next_kboard
)
11032 *kbp
= kb
->next_kboard
;
11034 /* Prevent a dangling reference to KB. */
11035 if (kb
== current_kboard
11036 && FRAMEP (selected_frame
)
11037 && FRAME_LIVE_P (XFRAME (selected_frame
)))
11039 current_kboard
= XFRAME (selected_frame
)->kboard
;
11040 if (current_kboard
== kb
)
11048 #endif /* MULTI_KBOARD */
11053 /* This is correct before outermost invocation of the editor loop */
11054 command_loop_level
= -1;
11055 immediate_quit
= 0;
11056 quit_char
= Ctl ('g');
11057 Vunread_command_events
= Qnil
;
11058 unread_command_char
= -1;
11059 EMACS_SET_SECS_USECS (timer_idleness_start_time
, -1, -1);
11061 recent_keys_index
= 0;
11062 kbd_fetch_ptr
= kbd_buffer
;
11063 kbd_store_ptr
= kbd_buffer
;
11065 do_mouse_tracking
= Qnil
;
11068 interrupt_input_blocked
= 0;
11069 interrupt_input_pending
= 0;
11071 /* This means that command_loop_1 won't try to select anything the first
11073 internal_last_event_frame
= Qnil
;
11074 Vlast_event_frame
= internal_last_event_frame
;
11076 #ifdef MULTI_KBOARD
11077 current_kboard
= initial_kboard
;
11079 wipe_kboard (current_kboard
);
11080 init_kboard (current_kboard
);
11082 if (!noninteractive
&& !read_socket_hook
&& NILP (Vwindow_system
))
11084 signal (SIGINT
, interrupt_signal
);
11085 #if defined (HAVE_TERMIO) || defined (HAVE_TERMIOS)
11086 /* For systems with SysV TERMIO, C-g is set up for both SIGINT and
11087 SIGQUIT and we can't tell which one it will give us. */
11088 signal (SIGQUIT
, interrupt_signal
);
11089 #endif /* HAVE_TERMIO */
11091 /* Note SIGIO has been undef'd if FIONREAD is missing. */
11093 if (!noninteractive
)
11094 signal (SIGIO
, input_available_signal
);
11097 /* Use interrupt input by default, if it works and noninterrupt input
11098 has deficiencies. */
11100 #ifdef INTERRUPT_INPUT
11101 interrupt_input
= 1;
11103 interrupt_input
= 0;
11106 /* Our VMS input only works by interrupts, as of now. */
11108 interrupt_input
= 1;
11114 if (keyboard_init_hook
)
11115 (*keyboard_init_hook
) ();
11117 #ifdef POLL_FOR_INPUT
11118 poll_suppress_count
= 1;
11123 /* This type's only use is in syms_of_keyboard, to initialize the
11124 event header symbols and put properties on them. */
11125 struct event_head
{
11131 struct event_head head_table
[] = {
11132 {&Qmouse_movement
, "mouse-movement", &Qmouse_movement
},
11133 {&Qscroll_bar_movement
, "scroll-bar-movement", &Qmouse_movement
},
11134 {&Qswitch_frame
, "switch-frame", &Qswitch_frame
},
11135 {&Qdelete_frame
, "delete-frame", &Qdelete_frame
},
11136 {&Qiconify_frame
, "iconify-frame", &Qiconify_frame
},
11137 {&Qmake_frame_visible
, "make-frame-visible", &Qmake_frame_visible
},
11138 /* `select-window' should be handled just like `switch-frame'
11139 in read_key_sequence. */
11140 {&Qselect_window
, "select-window", &Qswitch_frame
}
11144 syms_of_keyboard ()
11146 Vpre_help_message
= Qnil
;
11147 staticpro (&Vpre_help_message
);
11149 Vlispy_mouse_stem
= build_string ("mouse");
11150 staticpro (&Vlispy_mouse_stem
);
11153 QCimage
= intern (":image");
11154 staticpro (&QCimage
);
11156 staticpro (&Qhelp_echo
);
11157 Qhelp_echo
= intern ("help-echo");
11160 Qrtl
= intern (":rtl");
11162 staticpro (&item_properties
);
11163 item_properties
= Qnil
;
11165 staticpro (&tool_bar_item_properties
);
11166 tool_bar_item_properties
= Qnil
;
11167 staticpro (&tool_bar_items_vector
);
11168 tool_bar_items_vector
= Qnil
;
11170 staticpro (&real_this_command
);
11171 real_this_command
= Qnil
;
11173 Qtimer_event_handler
= intern ("timer-event-handler");
11174 staticpro (&Qtimer_event_handler
);
11176 Qdisabled_command_function
= intern ("disabled-command-function");
11177 staticpro (&Qdisabled_command_function
);
11179 Qself_insert_command
= intern ("self-insert-command");
11180 staticpro (&Qself_insert_command
);
11182 Qforward_char
= intern ("forward-char");
11183 staticpro (&Qforward_char
);
11185 Qbackward_char
= intern ("backward-char");
11186 staticpro (&Qbackward_char
);
11188 Qdisabled
= intern ("disabled");
11189 staticpro (&Qdisabled
);
11191 Qundefined
= intern ("undefined");
11192 staticpro (&Qundefined
);
11194 Qpre_command_hook
= intern ("pre-command-hook");
11195 staticpro (&Qpre_command_hook
);
11197 Qpost_command_hook
= intern ("post-command-hook");
11198 staticpro (&Qpost_command_hook
);
11200 Qdeferred_action_function
= intern ("deferred-action-function");
11201 staticpro (&Qdeferred_action_function
);
11203 Qcommand_hook_internal
= intern ("command-hook-internal");
11204 staticpro (&Qcommand_hook_internal
);
11206 Qfunction_key
= intern ("function-key");
11207 staticpro (&Qfunction_key
);
11208 Qmouse_click
= intern ("mouse-click");
11209 staticpro (&Qmouse_click
);
11210 #if defined (WINDOWSNT) || defined (MAC_OS)
11211 Qlanguage_change
= intern ("language-change");
11212 staticpro (&Qlanguage_change
);
11214 Qdrag_n_drop
= intern ("drag-n-drop");
11215 staticpro (&Qdrag_n_drop
);
11217 Qsave_session
= intern ("save-session");
11218 staticpro (&Qsave_session
);
11221 Qmac_apple_event
= intern ("mac-apple-event");
11222 staticpro (&Qmac_apple_event
);
11225 Qmenu_enable
= intern ("menu-enable");
11226 staticpro (&Qmenu_enable
);
11227 Qmenu_alias
= intern ("menu-alias");
11228 staticpro (&Qmenu_alias
);
11229 QCenable
= intern (":enable");
11230 staticpro (&QCenable
);
11231 QCvisible
= intern (":visible");
11232 staticpro (&QCvisible
);
11233 QChelp
= intern (":help");
11234 staticpro (&QChelp
);
11235 QCfilter
= intern (":filter");
11236 staticpro (&QCfilter
);
11237 QCbutton
= intern (":button");
11238 staticpro (&QCbutton
);
11239 QCkeys
= intern (":keys");
11240 staticpro (&QCkeys
);
11241 QCkey_sequence
= intern (":key-sequence");
11242 staticpro (&QCkey_sequence
);
11243 QCtoggle
= intern (":toggle");
11244 staticpro (&QCtoggle
);
11245 QCradio
= intern (":radio");
11246 staticpro (&QCradio
);
11248 Qmode_line
= intern ("mode-line");
11249 staticpro (&Qmode_line
);
11250 Qvertical_line
= intern ("vertical-line");
11251 staticpro (&Qvertical_line
);
11252 Qvertical_scroll_bar
= intern ("vertical-scroll-bar");
11253 staticpro (&Qvertical_scroll_bar
);
11254 Qmenu_bar
= intern ("menu-bar");
11255 staticpro (&Qmenu_bar
);
11258 Qmouse_fixup_help_message
= intern ("mouse-fixup-help-message");
11259 staticpro (&Qmouse_fixup_help_message
);
11262 Qabove_handle
= intern ("above-handle");
11263 staticpro (&Qabove_handle
);
11264 Qhandle
= intern ("handle");
11265 staticpro (&Qhandle
);
11266 Qbelow_handle
= intern ("below-handle");
11267 staticpro (&Qbelow_handle
);
11268 Qup
= intern ("up");
11270 Qdown
= intern ("down");
11271 staticpro (&Qdown
);
11272 Qtop
= intern ("top");
11274 Qbottom
= intern ("bottom");
11275 staticpro (&Qbottom
);
11276 Qend_scroll
= intern ("end-scroll");
11277 staticpro (&Qend_scroll
);
11278 Qratio
= intern ("ratio");
11279 staticpro (&Qratio
);
11281 Qevent_kind
= intern ("event-kind");
11282 staticpro (&Qevent_kind
);
11283 Qevent_symbol_elements
= intern ("event-symbol-elements");
11284 staticpro (&Qevent_symbol_elements
);
11285 Qevent_symbol_element_mask
= intern ("event-symbol-element-mask");
11286 staticpro (&Qevent_symbol_element_mask
);
11287 Qmodifier_cache
= intern ("modifier-cache");
11288 staticpro (&Qmodifier_cache
);
11290 Qrecompute_lucid_menubar
= intern ("recompute-lucid-menubar");
11291 staticpro (&Qrecompute_lucid_menubar
);
11292 Qactivate_menubar_hook
= intern ("activate-menubar-hook");
11293 staticpro (&Qactivate_menubar_hook
);
11295 Qpolling_period
= intern ("polling-period");
11296 staticpro (&Qpolling_period
);
11298 Qinput_method_function
= intern ("input-method-function");
11299 staticpro (&Qinput_method_function
);
11301 Qinput_method_exit_on_first_char
= intern ("input-method-exit-on-first-char");
11302 staticpro (&Qinput_method_exit_on_first_char
);
11303 Qinput_method_use_echo_area
= intern ("input-method-use-echo-area");
11304 staticpro (&Qinput_method_use_echo_area
);
11306 Fset (Qinput_method_exit_on_first_char
, Qnil
);
11307 Fset (Qinput_method_use_echo_area
, Qnil
);
11309 last_point_position_buffer
= Qnil
;
11310 last_point_position_window
= Qnil
;
11313 struct event_head
*p
;
11315 for (p
= head_table
;
11316 p
< head_table
+ (sizeof (head_table
) / sizeof (head_table
[0]));
11319 *p
->var
= intern (p
->name
);
11320 staticpro (p
->var
);
11321 Fput (*p
->var
, Qevent_kind
, *p
->kind
);
11322 Fput (*p
->var
, Qevent_symbol_elements
, Fcons (*p
->var
, Qnil
));
11326 button_down_location
= Fmake_vector (make_number (1), Qnil
);
11327 staticpro (&button_down_location
);
11328 mouse_syms
= Fmake_vector (make_number (1), Qnil
);
11329 staticpro (&mouse_syms
);
11330 wheel_syms
= Fmake_vector (make_number (2), Qnil
);
11331 staticpro (&wheel_syms
);
11335 int len
= sizeof (modifier_names
) / sizeof (modifier_names
[0]);
11337 modifier_symbols
= Fmake_vector (make_number (len
), Qnil
);
11338 for (i
= 0; i
< len
; i
++)
11339 if (modifier_names
[i
])
11340 XVECTOR (modifier_symbols
)->contents
[i
] = intern (modifier_names
[i
]);
11341 staticpro (&modifier_symbols
);
11344 recent_keys
= Fmake_vector (make_number (NUM_RECENT_KEYS
), Qnil
);
11345 staticpro (&recent_keys
);
11347 this_command_keys
= Fmake_vector (make_number (40), Qnil
);
11348 staticpro (&this_command_keys
);
11350 raw_keybuf
= Fmake_vector (make_number (30), Qnil
);
11351 staticpro (&raw_keybuf
);
11353 Qextended_command_history
= intern ("extended-command-history");
11354 Fset (Qextended_command_history
, Qnil
);
11355 staticpro (&Qextended_command_history
);
11357 accent_key_syms
= Qnil
;
11358 staticpro (&accent_key_syms
);
11360 func_key_syms
= Qnil
;
11361 staticpro (&func_key_syms
);
11363 drag_n_drop_syms
= Qnil
;
11364 staticpro (&drag_n_drop_syms
);
11366 unread_switch_frame
= Qnil
;
11367 staticpro (&unread_switch_frame
);
11369 internal_last_event_frame
= Qnil
;
11370 staticpro (&internal_last_event_frame
);
11372 read_key_sequence_cmd
= Qnil
;
11373 staticpro (&read_key_sequence_cmd
);
11375 menu_bar_one_keymap_changed_items
= Qnil
;
11376 staticpro (&menu_bar_one_keymap_changed_items
);
11378 menu_bar_items_vector
= Qnil
;
11379 staticpro (&menu_bar_items_vector
);
11381 help_form_saved_window_configs
= Qnil
;
11382 staticpro (&help_form_saved_window_configs
);
11384 defsubr (&Scurrent_idle_time
);
11385 defsubr (&Sevent_convert_list
);
11386 defsubr (&Sread_key_sequence
);
11387 defsubr (&Sread_key_sequence_vector
);
11388 defsubr (&Srecursive_edit
);
11390 defsubr (&Strack_mouse
);
11392 defsubr (&Sinput_pending_p
);
11393 defsubr (&Scommand_execute
);
11394 defsubr (&Srecent_keys
);
11395 defsubr (&Sthis_command_keys
);
11396 defsubr (&Sthis_command_keys_vector
);
11397 defsubr (&Sthis_single_command_keys
);
11398 defsubr (&Sthis_single_command_raw_keys
);
11399 defsubr (&Sreset_this_command_lengths
);
11400 defsubr (&Sclear_this_command_keys
);
11401 defsubr (&Ssuspend_emacs
);
11402 defsubr (&Sabort_recursive_edit
);
11403 defsubr (&Sexit_recursive_edit
);
11404 defsubr (&Srecursion_depth
);
11405 defsubr (&Stop_level
);
11406 defsubr (&Sdiscard_input
);
11407 defsubr (&Sopen_dribble_file
);
11408 defsubr (&Sset_input_mode
);
11409 defsubr (&Scurrent_input_mode
);
11410 defsubr (&Sexecute_extended_command
);
11411 defsubr (&Sposn_at_point
);
11412 defsubr (&Sposn_at_x_y
);
11414 DEFVAR_LISP ("last-command-char", &last_command_char
,
11415 doc
: /* Last input event that was part of a command. */);
11417 DEFVAR_LISP_NOPRO ("last-command-event", &last_command_char
,
11418 doc
: /* Last input event that was part of a command. */);
11420 DEFVAR_LISP ("last-nonmenu-event", &last_nonmenu_event
,
11421 doc
: /* Last input event in a command, except for mouse menu events.
11422 Mouse menus give back keys that don't look like mouse events;
11423 this variable holds the actual mouse event that led to the menu,
11424 so that you can determine whether the command was run by mouse or not. */);
11426 DEFVAR_LISP ("last-input-char", &last_input_char
,
11427 doc
: /* Last input event. */);
11429 DEFVAR_LISP_NOPRO ("last-input-event", &last_input_char
,
11430 doc
: /* Last input event. */);
11432 DEFVAR_LISP ("unread-command-events", &Vunread_command_events
,
11433 doc
: /* List of events to be read as the command input.
11434 These events are processed first, before actual keyboard input.
11435 Events read from this list are not normally added to `this-command-keys',
11436 as they will already have been added once as they were read for the first time.
11437 An element of the form (t . EVENT) forces EVENT to be added to that list. */);
11438 Vunread_command_events
= Qnil
;
11440 DEFVAR_INT ("unread-command-char", &unread_command_char
,
11441 doc
: /* If not -1, an object to be read as next command input event. */);
11443 DEFVAR_LISP ("unread-post-input-method-events", &Vunread_post_input_method_events
,
11444 doc
: /* List of events to be processed as input by input methods.
11445 These events are processed before `unread-command-events'
11446 and actual keyboard input, but are not given to `input-method-function'. */);
11447 Vunread_post_input_method_events
= Qnil
;
11449 DEFVAR_LISP ("unread-input-method-events", &Vunread_input_method_events
,
11450 doc
: /* List of events to be processed as input by input methods.
11451 These events are processed after `unread-command-events', but
11452 before actual keyboard input.
11453 If there's an active input method, the events are given to
11454 `input-method-function'. */);
11455 Vunread_input_method_events
= Qnil
;
11457 DEFVAR_LISP ("meta-prefix-char", &meta_prefix_char
,
11458 doc
: /* Meta-prefix character code.
11459 Meta-foo as command input turns into this character followed by foo. */);
11460 XSETINT (meta_prefix_char
, 033);
11462 DEFVAR_KBOARD ("last-command", Vlast_command
,
11463 doc
: /* The last command executed.
11464 Normally a symbol with a function definition, but can be whatever was found
11465 in the keymap, or whatever the variable `this-command' was set to by that
11468 The value `mode-exit' is special; it means that the previous command
11469 read an event that told it to exit, and it did so and unread that event.
11470 In other words, the present command is the event that made the previous
11473 The value `kill-region' is special; it means that the previous command
11474 was a kill command. */);
11476 DEFVAR_KBOARD ("real-last-command", Vreal_last_command
,
11477 doc
: /* Same as `last-command', but never altered by Lisp code. */);
11479 DEFVAR_KBOARD ("last-repeatable-command", Vlast_repeatable_command
,
11480 doc
: /* Last command that may be repeated.
11481 The last command executed that was not bound to an input event.
11482 This is the command `repeat' will try to repeat. */);
11484 DEFVAR_LISP ("this-command", &Vthis_command
,
11485 doc
: /* The command now being executed.
11486 The command can set this variable; whatever is put here
11487 will be in `last-command' during the following command. */);
11488 Vthis_command
= Qnil
;
11490 DEFVAR_LISP ("this-original-command", &Vthis_original_command
,
11491 doc
: /* The command bound to the current key sequence before remapping.
11492 It equals `this-command' if the original command was not remapped through
11493 any of the active keymaps. Otherwise, the value of `this-command' is the
11494 result of looking up the original command in the active keymaps. */);
11495 Vthis_original_command
= Qnil
;
11497 DEFVAR_INT ("auto-save-interval", &auto_save_interval
,
11498 doc
: /* *Number of input events between auto-saves.
11499 Zero means disable autosaving due to number of characters typed. */);
11500 auto_save_interval
= 300;
11502 DEFVAR_LISP ("auto-save-timeout", &Vauto_save_timeout
,
11503 doc
: /* *Number of seconds idle time before auto-save.
11504 Zero or nil means disable auto-saving due to idleness.
11505 After auto-saving due to this many seconds of idle time,
11506 Emacs also does a garbage collection if that seems to be warranted. */);
11507 XSETFASTINT (Vauto_save_timeout
, 30);
11509 DEFVAR_LISP ("echo-keystrokes", &Vecho_keystrokes
,
11510 doc
: /* *Nonzero means echo unfinished commands after this many seconds of pause.
11511 The value may be integer or floating point. */);
11512 Vecho_keystrokes
= make_number (1);
11514 DEFVAR_INT ("polling-period", &polling_period
,
11515 doc
: /* *Interval between polling for input during Lisp execution.
11516 The reason for polling is to make C-g work to stop a running program.
11517 Polling is needed only when using X windows and SIGIO does not work.
11518 Polling is automatically disabled in all other cases. */);
11519 polling_period
= 2;
11521 DEFVAR_LISP ("double-click-time", &Vdouble_click_time
,
11522 doc
: /* *Maximum time between mouse clicks to make a double-click.
11523 Measured in milliseconds. The value nil means disable double-click
11524 recognition; t means double-clicks have no time limit and are detected
11525 by position only. */);
11526 Vdouble_click_time
= make_number (500);
11528 DEFVAR_INT ("double-click-fuzz", &double_click_fuzz
,
11529 doc
: /* *Maximum mouse movement between clicks to make a double-click.
11530 On window-system frames, value is the number of pixels the mouse may have
11531 moved horizontally or vertically between two clicks to make a double-click.
11532 On non window-system frames, value is interpreted in units of 1/8 characters
11535 This variable is also the threshold for motion of the mouse
11536 to count as a drag. */);
11537 double_click_fuzz
= 3;
11539 DEFVAR_BOOL ("inhibit-local-menu-bar-menus", &inhibit_local_menu_bar_menus
,
11540 doc
: /* *Non-nil means inhibit local map menu bar menus. */);
11541 inhibit_local_menu_bar_menus
= 0;
11543 DEFVAR_INT ("num-input-keys", &num_input_keys
,
11544 doc
: /* Number of complete key sequences read as input so far.
11545 This includes key sequences read from keyboard macros.
11546 The number is effectively the number of interactive command invocations. */);
11547 num_input_keys
= 0;
11549 DEFVAR_INT ("num-nonmacro-input-events", &num_nonmacro_input_events
,
11550 doc
: /* Number of input events read from the keyboard so far.
11551 This does not include events generated by keyboard macros. */);
11552 num_nonmacro_input_events
= 0;
11554 DEFVAR_LISP ("last-event-frame", &Vlast_event_frame
,
11555 doc
: /* The frame in which the most recently read event occurred.
11556 If the last event came from a keyboard macro, this is set to `macro'. */);
11557 Vlast_event_frame
= Qnil
;
11559 /* This variable is set up in sysdep.c. */
11560 DEFVAR_LISP ("tty-erase-char", &Vtty_erase_char
,
11561 doc
: /* The ERASE character as set by the user with stty. */);
11563 DEFVAR_LISP ("help-char", &Vhelp_char
,
11564 doc
: /* Character to recognize as meaning Help.
11565 When it is read, do `(eval help-form)', and display result if it's a string.
11566 If the value of `help-form' is nil, this char can be read normally. */);
11567 XSETINT (Vhelp_char
, Ctl ('H'));
11569 DEFVAR_LISP ("help-event-list", &Vhelp_event_list
,
11570 doc
: /* List of input events to recognize as meaning Help.
11571 These work just like the value of `help-char' (see that). */);
11572 Vhelp_event_list
= Qnil
;
11574 DEFVAR_LISP ("help-form", &Vhelp_form
,
11575 doc
: /* Form to execute when character `help-char' is read.
11576 If the form returns a string, that string is displayed.
11577 If `help-form' is nil, the help char is not recognized. */);
11580 DEFVAR_LISP ("prefix-help-command", &Vprefix_help_command
,
11581 doc
: /* Command to run when `help-char' character follows a prefix key.
11582 This command is used only when there is no actual binding
11583 for that character after that prefix key. */);
11584 Vprefix_help_command
= Qnil
;
11586 DEFVAR_LISP ("top-level", &Vtop_level
,
11587 doc
: /* Form to evaluate when Emacs starts up.
11588 Useful to set before you dump a modified Emacs. */);
11591 DEFVAR_LISP ("keyboard-translate-table", &Vkeyboard_translate_table
,
11592 doc
: /* Translate table for keyboard input, or nil.
11593 If non-nil, the value should be a char-table. Each character read
11594 from the keyboard is looked up in this char-table. If the value found
11595 there is non-nil, then it is used instead of the actual input character.
11597 The value can also be a string or vector, but this is considered obsolete.
11598 If it is a string or vector of length N, character codes N and up are left
11599 untranslated. In a vector, an element which is nil means "no translation".
11601 This is applied to the characters supplied to input methods, not their
11602 output. See also `translation-table-for-input'. */);
11603 Vkeyboard_translate_table
= Qnil
;
11605 DEFVAR_BOOL ("cannot-suspend", &cannot_suspend
,
11606 doc
: /* Non-nil means to always spawn a subshell instead of suspending.
11607 \(Even if the operating system has support for stopping a process.\) */);
11608 cannot_suspend
= 0;
11610 DEFVAR_BOOL ("menu-prompting", &menu_prompting
,
11611 doc
: /* Non-nil means prompt with menus when appropriate.
11612 This is done when reading from a keymap that has a prompt string,
11613 for elements that have prompt strings.
11614 The menu is displayed on the screen
11615 if X menus were enabled at configuration
11616 time and the previous event was a mouse click prefix key.
11617 Otherwise, menu prompting uses the echo area. */);
11618 menu_prompting
= 1;
11620 DEFVAR_LISP ("menu-prompt-more-char", &menu_prompt_more_char
,
11621 doc
: /* Character to see next line of menu prompt.
11622 Type this character while in a menu prompt to rotate around the lines of it. */);
11623 XSETINT (menu_prompt_more_char
, ' ');
11625 DEFVAR_INT ("extra-keyboard-modifiers", &extra_keyboard_modifiers
,
11626 doc
: /* A mask of additional modifier keys to use with every keyboard character.
11627 Emacs applies the modifiers of the character stored here to each keyboard
11628 character it reads. For example, after evaluating the expression
11629 (setq extra-keyboard-modifiers ?\\C-x)
11630 all input characters will have the control modifier applied to them.
11632 Note that the character ?\\C-@, equivalent to the integer zero, does
11633 not count as a control character; rather, it counts as a character
11634 with no modifiers; thus, setting `extra-keyboard-modifiers' to zero
11635 cancels any modification. */);
11636 extra_keyboard_modifiers
= 0;
11638 DEFVAR_LISP ("deactivate-mark", &Vdeactivate_mark
,
11639 doc
: /* If an editing command sets this to t, deactivate the mark afterward.
11640 The command loop sets this to nil before each command,
11641 and tests the value when the command returns.
11642 Buffer modification stores t in this variable. */);
11643 Vdeactivate_mark
= Qnil
;
11645 DEFVAR_LISP ("command-hook-internal", &Vcommand_hook_internal
,
11646 doc
: /* Temporary storage of pre-command-hook or post-command-hook. */);
11647 Vcommand_hook_internal
= Qnil
;
11649 DEFVAR_LISP ("pre-command-hook", &Vpre_command_hook
,
11650 doc
: /* Normal hook run before each command is executed.
11651 If an unhandled error happens in running this hook,
11652 the hook value is set to nil, since otherwise the error
11653 might happen repeatedly and make Emacs nonfunctional. */);
11654 Vpre_command_hook
= Qnil
;
11656 DEFVAR_LISP ("post-command-hook", &Vpost_command_hook
,
11657 doc
: /* Normal hook run after each command is executed.
11658 If an unhandled error happens in running this hook,
11659 the hook value is set to nil, since otherwise the error
11660 might happen repeatedly and make Emacs nonfunctional. */);
11661 Vpost_command_hook
= Qnil
;
11664 DEFVAR_LISP ("echo-area-clear-hook", ...,
11665 doc
: /* Normal hook run when clearing the echo area. */);
11667 Qecho_area_clear_hook
= intern ("echo-area-clear-hook");
11668 staticpro (&Qecho_area_clear_hook
);
11669 SET_SYMBOL_VALUE (Qecho_area_clear_hook
, Qnil
);
11671 DEFVAR_LISP ("lucid-menu-bar-dirty-flag", &Vlucid_menu_bar_dirty_flag
,
11672 doc
: /* Non-nil means menu bar, specified Lucid style, needs to be recomputed. */);
11673 Vlucid_menu_bar_dirty_flag
= Qnil
;
11675 DEFVAR_LISP ("menu-bar-final-items", &Vmenu_bar_final_items
,
11676 doc
: /* List of menu bar items to move to the end of the menu bar.
11677 The elements of the list are event types that may have menu bar bindings. */);
11678 Vmenu_bar_final_items
= Qnil
;
11680 DEFVAR_KBOARD ("overriding-terminal-local-map",
11681 Voverriding_terminal_local_map
,
11682 doc
: /* Per-terminal keymap that overrides all other local keymaps.
11683 If this variable is non-nil, it is used as a keymap instead of the
11684 buffer's local map, and the minor mode keymaps and text property keymaps.
11685 It also replaces `overriding-local-map'.
11687 This variable is intended to let commands such as `universal-argument'
11688 set up a different keymap for reading the next command. */);
11690 DEFVAR_LISP ("overriding-local-map", &Voverriding_local_map
,
11691 doc
: /* Keymap that overrides all other local keymaps.
11692 If this variable is non-nil, it is used as a keymap--replacing the
11693 buffer's local map, the minor mode keymaps, and char property keymaps. */);
11694 Voverriding_local_map
= Qnil
;
11696 DEFVAR_LISP ("overriding-local-map-menu-flag", &Voverriding_local_map_menu_flag
,
11697 doc
: /* Non-nil means `overriding-local-map' applies to the menu bar.
11698 Otherwise, the menu bar continues to reflect the buffer's local map
11699 and the minor mode maps regardless of `overriding-local-map'. */);
11700 Voverriding_local_map_menu_flag
= Qnil
;
11702 DEFVAR_LISP ("special-event-map", &Vspecial_event_map
,
11703 doc
: /* Keymap defining bindings for special events to execute at low level. */);
11704 Vspecial_event_map
= Fcons (intern ("keymap"), Qnil
);
11706 DEFVAR_LISP ("track-mouse", &do_mouse_tracking
,
11707 doc
: /* *Non-nil means generate motion events for mouse motion. */);
11709 DEFVAR_KBOARD ("system-key-alist", Vsystem_key_alist
,
11710 doc
: /* Alist of system-specific X windows key symbols.
11711 Each element should have the form (N . SYMBOL) where N is the
11712 numeric keysym code (sans the \"system-specific\" bit 1<<28)
11713 and SYMBOL is its name. */);
11715 DEFVAR_LISP ("deferred-action-list", &Vdeferred_action_list
,
11716 doc
: /* List of deferred actions to be performed at a later time.
11717 The precise format isn't relevant here; we just check whether it is nil. */);
11718 Vdeferred_action_list
= Qnil
;
11720 DEFVAR_LISP ("deferred-action-function", &Vdeferred_action_function
,
11721 doc
: /* Function to call to handle deferred actions, after each command.
11722 This function is called with no arguments after each command
11723 whenever `deferred-action-list' is non-nil. */);
11724 Vdeferred_action_function
= Qnil
;
11726 DEFVAR_LISP ("suggest-key-bindings", &Vsuggest_key_bindings
,
11727 doc
: /* *Non-nil means show the equivalent key-binding when M-x command has one.
11728 The value can be a length of time to show the message for.
11729 If the value is non-nil and not a number, we wait 2 seconds. */);
11730 Vsuggest_key_bindings
= Qt
;
11732 DEFVAR_LISP ("timer-list", &Vtimer_list
,
11733 doc
: /* List of active absolute time timers in order of increasing time. */);
11734 Vtimer_list
= Qnil
;
11736 DEFVAR_LISP ("timer-idle-list", &Vtimer_idle_list
,
11737 doc
: /* List of active idle-time timers in order of increasing time. */);
11738 Vtimer_idle_list
= Qnil
;
11740 DEFVAR_LISP ("input-method-function", &Vinput_method_function
,
11741 doc
: /* If non-nil, the function that implements the current input method.
11742 It's called with one argument, a printing character that was just read.
11743 \(That means a character with code 040...0176.)
11744 Typically this function uses `read-event' to read additional events.
11745 When it does so, it should first bind `input-method-function' to nil
11746 so it will not be called recursively.
11748 The function should return a list of zero or more events
11749 to be used as input. If it wants to put back some events
11750 to be reconsidered, separately, by the input method,
11751 it can add them to the beginning of `unread-command-events'.
11753 The input method function can find in `input-method-previous-method'
11754 the previous echo area message.
11756 The input method function should refer to the variables
11757 `input-method-use-echo-area' and `input-method-exit-on-first-char'
11758 for guidance on what to do. */);
11759 Vinput_method_function
= Qnil
;
11761 DEFVAR_LISP ("input-method-previous-message",
11762 &Vinput_method_previous_message
,
11763 doc
: /* When `input-method-function' is called, hold the previous echo area message.
11764 This variable exists because `read-event' clears the echo area
11765 before running the input method. It is nil if there was no message. */);
11766 Vinput_method_previous_message
= Qnil
;
11768 DEFVAR_LISP ("show-help-function", &Vshow_help_function
,
11769 doc
: /* If non-nil, the function that implements the display of help.
11770 It's called with one argument, the help string to display. */);
11771 Vshow_help_function
= Qnil
;
11773 DEFVAR_LISP ("disable-point-adjustment", &Vdisable_point_adjustment
,
11774 doc
: /* If non-nil, suppress point adjustment after executing a command.
11776 After a command is executed, if point is moved into a region that has
11777 special properties (e.g. composition, display), we adjust point to
11778 the boundary of the region. But, when a command sets this variable to
11779 non-nil, we suppress the point adjustment.
11781 This variable is set to nil before reading a command, and is checked
11782 just after executing the command. */);
11783 Vdisable_point_adjustment
= Qnil
;
11785 DEFVAR_LISP ("global-disable-point-adjustment",
11786 &Vglobal_disable_point_adjustment
,
11787 doc
: /* *If non-nil, always suppress point adjustment.
11789 The default value is nil, in which case, point adjustment are
11790 suppressed only after special commands that set
11791 `disable-point-adjustment' (which see) to non-nil. */);
11792 Vglobal_disable_point_adjustment
= Qnil
;
11794 DEFVAR_LISP ("minibuffer-message-timeout", &Vminibuffer_message_timeout
,
11795 doc
: /* *How long to display an echo-area message when the minibuffer is active.
11796 If the value is not a number, such messages don't time out. */);
11797 Vminibuffer_message_timeout
= make_number (2);
11799 DEFVAR_LISP ("throw-on-input", &Vthrow_on_input
,
11800 doc
: /* If non-nil, any keyboard input throws to this symbol.
11801 The value of that variable is passed to `quit-flag' and later causes a
11802 peculiar kind of quitting. */);
11803 Vthrow_on_input
= Qnil
;
11805 DEFVAR_LISP ("command-error-function", &Vcommand_error_function
,
11806 doc
: /* If non-nil, function to output error messages.
11807 The arguments are the error data, a list of the form
11808 (SIGNALED-CONDITIONS . SIGNAL-DATA)
11809 such as just as `condition-case' would bind its variable to,
11810 the context (a string which normally goes at the start of the message),
11811 and the Lisp function within which the error was signaled. */);
11812 Vcommand_error_function
= Qnil
;
11814 DEFVAR_LISP ("enable-disabled-menus-and-buttons",
11815 &Venable_disabled_menus_and_buttons
,
11816 doc
: /* If non-nil, don't ignore events produced by disabled menu items and tool-bar.
11818 Help functions bind this to allow help on disabled menu items
11819 and tool-bar buttons. */);
11820 Venable_disabled_menus_and_buttons
= Qnil
;
11824 keys_of_keyboard ()
11826 initial_define_key (global_map
, Ctl ('Z'), "suspend-emacs");
11827 initial_define_key (control_x_map
, Ctl ('Z'), "suspend-emacs");
11828 initial_define_key (meta_map
, Ctl ('C'), "exit-recursive-edit");
11829 initial_define_key (global_map
, Ctl (']'), "abort-recursive-edit");
11830 initial_define_key (meta_map
, 'x', "execute-extended-command");
11832 initial_define_lispy_key (Vspecial_event_map
, "delete-frame",
11833 "handle-delete-frame");
11834 /* Here we used to use `ignore-event' which would simple set prefix-arg to
11835 current-prefix-arg, as is done in `handle-switch-frame'.
11836 But `handle-switch-frame is not run from the special-map.
11837 Commands from that map are run in a special way that automatically
11838 preserves the prefix-arg. Restoring the prefix arg here is not just
11839 redundant but harmful:
11841 - current-prefix-arg is set to non-nil, prefix-arg is set to nil.
11842 - after the first prompt, the exit-minibuffer-hook is run which may
11843 iconify a frame and thus push a `iconify-frame' event.
11844 - after running exit-minibuffer-hook, current-prefix-arg is
11845 restored to the non-nil value it had before the prompt.
11846 - we enter the second prompt.
11847 current-prefix-arg is non-nil, prefix-arg is nil.
11848 - before running the first real event, we run the special iconify-frame
11849 event, but we pass the `special' arg to execute-command so
11850 current-prefix-arg and prefix-arg are left untouched.
11851 - here we foolishly copy the non-nil current-prefix-arg to prefix-arg.
11852 - the next key event will have a spuriously non-nil current-prefix-arg. */
11853 initial_define_lispy_key (Vspecial_event_map
, "iconify-frame",
11855 initial_define_lispy_key (Vspecial_event_map
, "make-frame-visible",
11857 /* Handling it at such a low-level causes read_key_sequence to get
11858 * confused because it doesn't realize that the current_buffer was
11859 * changed by read_char.
11861 * initial_define_lispy_key (Vspecial_event_map, "select-window",
11862 * "handle-select-window"); */
11863 initial_define_lispy_key (Vspecial_event_map
, "save-session",
11864 "handle-save-session");
11867 /* Mark the pointers in the kboard objects.
11868 Called by the Fgarbage_collector. */
11874 for (kb
= all_kboards
; kb
; kb
= kb
->next_kboard
)
11876 if (kb
->kbd_macro_buffer
)
11877 for (p
= kb
->kbd_macro_buffer
; p
< kb
->kbd_macro_ptr
; p
++)
11879 mark_object (kb
->Voverriding_terminal_local_map
);
11880 mark_object (kb
->Vlast_command
);
11881 mark_object (kb
->Vreal_last_command
);
11882 mark_object (kb
->Vlast_repeatable_command
);
11883 mark_object (kb
->Vprefix_arg
);
11884 mark_object (kb
->Vlast_prefix_arg
);
11885 mark_object (kb
->kbd_queue
);
11886 mark_object (kb
->defining_kbd_macro
);
11887 mark_object (kb
->Vlast_kbd_macro
);
11888 mark_object (kb
->Vsystem_key_alist
);
11889 mark_object (kb
->system_key_syms
);
11890 mark_object (kb
->Vdefault_minibuffer_frame
);
11891 mark_object (kb
->echo_string
);
11894 struct input_event
*event
;
11895 for (event
= kbd_fetch_ptr
; event
!= kbd_store_ptr
; event
++)
11897 if (event
== kbd_buffer
+ KBD_BUFFER_SIZE
)
11898 event
= kbd_buffer
;
11899 if (event
->kind
!= SELECTION_REQUEST_EVENT
11900 && event
->kind
!= SELECTION_CLEAR_EVENT
)
11902 mark_object (event
->x
);
11903 mark_object (event
->y
);
11905 mark_object (event
->frame_or_window
);
11906 mark_object (event
->arg
);
11911 /* arch-tag: 774e34d7-6d31-42f3-8397-e079a4e4c9ca
11912 (do not change this comment) */