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, 2008, 2009 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 of the License, or
11 (at your option) any later version.
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. If not, see <http://www.gnu.org/licenses/>. */
28 #include "termhooks.h"
34 #include "character.h"
36 #include "dispextern.h"
38 #include "intervals.h"
40 #include "blockinput.h"
47 #ifdef HAVE_GTK_AND_PTHREAD
54 #include <sys/ioctl.h>
55 #endif /* not MSDOS */
57 #include "syssignal.h"
59 #include <sys/types.h>
68 /* This is to get the definitions of the XK_ symbols. */
75 #endif /* HAVE_NTGUI */
85 /* Variables for blockinput.h: */
87 /* Non-zero if interrupt input is blocked right now. */
88 volatile int interrupt_input_blocked
;
90 /* Nonzero means an input interrupt has arrived
91 during the current critical section. */
92 int interrupt_input_pending
;
94 #define KBD_BUFFER_SIZE 4096
96 KBOARD
*initial_kboard
;
97 KBOARD
*current_kboard
;
101 /* Non-nil disable property on a command means
102 do not execute it; call disabled-command-function's value instead. */
103 Lisp_Object Qdisabled
, Qdisabled_command_function
;
105 #define NUM_RECENT_KEYS (300)
106 int recent_keys_index
; /* Index for storing next element into recent_keys */
107 int total_keys
; /* Total number of elements stored into recent_keys */
108 Lisp_Object recent_keys
; /* Vector holds the last NUM_RECENT_KEYS keystrokes */
110 /* Vector holding the key sequence that invoked the current command.
111 It is reused for each command, and it may be longer than the current
112 sequence; this_command_key_count indicates how many elements
113 actually mean something.
114 It's easier to staticpro a single Lisp_Object than an array. */
115 Lisp_Object this_command_keys
;
116 int this_command_key_count
;
118 /* 1 after calling Freset_this_command_lengths.
120 int this_command_key_count_reset
;
122 /* This vector is used as a buffer to record the events that were actually read
123 by read_key_sequence. */
124 Lisp_Object raw_keybuf
;
125 int raw_keybuf_count
;
127 /* Non-nil if the present key sequence was obtained by shift translation. */
128 Lisp_Object Vthis_command_keys_shift_translated
;
130 #define GROW_RAW_KEYBUF \
131 if (raw_keybuf_count == XVECTOR (raw_keybuf)->size) \
132 raw_keybuf = larger_vector (raw_keybuf, raw_keybuf_count * 2, Qnil) \
134 /* Number of elements of this_command_keys
135 that precede this key sequence. */
136 int this_single_command_key_start
;
138 /* Record values of this_command_key_count and echo_length ()
139 before this command was read. */
140 static int before_command_key_count
;
141 static int before_command_echo_length
;
143 extern int minbuf_level
;
145 extern int message_enable_multibyte
;
147 /* If non-nil, the function that implements the display of help.
148 It's called with one argument, the help string to display. */
150 Lisp_Object Vshow_help_function
;
152 /* Nonzero means do menu prompting. */
154 static int menu_prompting
;
156 /* Character to see next line of menu prompt. */
158 static Lisp_Object menu_prompt_more_char
;
160 /* For longjmp to where kbd input is being done. */
162 static jmp_buf getcjmp
;
164 /* True while doing kbd input. */
165 int waiting_for_input
;
167 /* True while displaying for echoing. Delays C-g throwing. */
171 /* Non-null means we can start echoing at the next input pause even
172 though there is something in the echo area. */
174 static struct kboard
*ok_to_echo_at_next_pause
;
176 /* The kboard last echoing, or null for none. Reset to 0 in
177 cancel_echoing. If non-null, and a current echo area message
178 exists, and echo_message_buffer is eq to the current message
179 buffer, we know that the message comes from echo_kboard. */
181 struct kboard
*echo_kboard
;
183 /* The buffer used for echoing. Set in echo_now, reset in
186 Lisp_Object echo_message_buffer
;
188 /* Nonzero means disregard local maps for the menu bar. */
189 static int inhibit_local_menu_bar_menus
;
191 /* Nonzero means C-g should cause immediate error-signal. */
194 /* The user's hook function for outputting an error message. */
195 Lisp_Object Vcommand_error_function
;
197 /* The user's ERASE setting. */
198 Lisp_Object Vtty_erase_char
;
200 /* Character to recognize as the help char. */
201 Lisp_Object Vhelp_char
;
203 /* List of other event types to recognize as meaning "help". */
204 Lisp_Object Vhelp_event_list
;
206 /* Form to execute when help char is typed. */
207 Lisp_Object Vhelp_form
;
209 /* Command to run when the help character follows a prefix key. */
210 Lisp_Object Vprefix_help_command
;
212 /* List of items that should move to the end of the menu bar. */
213 Lisp_Object Vmenu_bar_final_items
;
215 /* Non-nil means show the equivalent key-binding for
216 any M-x command that has one.
217 The value can be a length of time to show the message for.
218 If the value is non-nil and not a number, we wait 2 seconds. */
219 Lisp_Object Vsuggest_key_bindings
;
221 /* How long to display an echo-area message when the minibuffer is active.
222 If the value is not a number, such messages don't time out. */
223 Lisp_Object Vminibuffer_message_timeout
;
225 /* Character that causes a quit. Normally C-g.
227 If we are running on an ordinary terminal, this must be an ordinary
228 ASCII char, since we want to make it our interrupt character.
230 If we are not running on an ordinary terminal, it still needs to be
231 an ordinary ASCII char. This character needs to be recognized in
232 the input interrupt handler. At this point, the keystroke is
233 represented as a struct input_event, while the desired quit
234 character is specified as a lispy event. The mapping from struct
235 input_events to lispy events cannot run in an interrupt handler,
236 and the reverse mapping is difficult for anything but ASCII
239 FOR THESE ELABORATE AND UNSATISFYING REASONS, quit_char must be an
243 extern Lisp_Object current_global_map
;
244 extern int minibuf_level
;
246 /* If non-nil, this is a map that overrides all other local maps. */
247 Lisp_Object Voverriding_local_map
;
249 /* If non-nil, Voverriding_local_map applies to the menu bar. */
250 Lisp_Object Voverriding_local_map_menu_flag
;
252 /* Keymap that defines special misc events that should
253 be processed immediately at a low level. */
254 Lisp_Object Vspecial_event_map
;
256 /* Current depth in recursive edits. */
257 int command_loop_level
;
259 /* Total number of times command_loop has read a key sequence. */
260 EMACS_INT num_input_keys
;
262 /* Last input character read as a command. */
263 Lisp_Object last_command_char
;
265 /* Last input character read as a command, not counting menus
266 reached by the mouse. */
267 Lisp_Object last_nonmenu_event
;
269 /* Last input character read for any purpose. */
270 Lisp_Object last_input_char
;
272 /* If not Qnil, a list of objects to be read as subsequent command input. */
273 Lisp_Object Vunread_command_events
;
275 /* If not Qnil, a list of objects to be read as subsequent command input
276 including input method processing. */
277 Lisp_Object Vunread_input_method_events
;
279 /* If not Qnil, a list of objects to be read as subsequent command input
280 but NOT including input method processing. */
281 Lisp_Object Vunread_post_input_method_events
;
283 /* If not -1, an event to be read as subsequent command input. */
284 EMACS_INT unread_command_char
;
286 /* If not Qnil, this is a switch-frame event which we decided to put
287 off until the end of a key sequence. This should be read as the
288 next command input, after any unread_command_events.
290 read_key_sequence uses this to delay switch-frame events until the
291 end of the key sequence; Fread_char uses it to put off switch-frame
292 events until a non-ASCII event is acceptable as input. */
293 Lisp_Object unread_switch_frame
;
295 /* A mask of extra modifier bits to put into every keyboard char. */
296 EMACS_INT extra_keyboard_modifiers
;
298 /* Char to use as prefix when a meta character is typed in.
299 This is bound on entry to minibuffer in case ESC is changed there. */
301 Lisp_Object meta_prefix_char
;
303 /* Last size recorded for a current buffer which is not a minibuffer. */
304 static int last_non_minibuf_size
;
306 /* Number of idle seconds before an auto-save and garbage collection. */
307 static Lisp_Object Vauto_save_timeout
;
309 /* Total number of times read_char has returned. */
310 int num_input_events
;
312 /* Total number of times read_char has returned, outside of macros. */
313 EMACS_INT num_nonmacro_input_events
;
315 /* Auto-save automatically when this many characters have been typed
316 since the last time. */
318 static EMACS_INT auto_save_interval
;
320 /* Value of num_nonmacro_input_events as of last auto save. */
324 /* The command being executed by the command loop.
325 Commands may set this, and the value set will be copied into
326 current_kboard->Vlast_command instead of the actual command. */
327 Lisp_Object Vthis_command
;
329 /* This is like Vthis_command, except that commands never set it. */
330 Lisp_Object real_this_command
;
332 /* If the lookup of the command returns a binding, the original
333 command is stored in this-original-command. It is nil otherwise. */
334 Lisp_Object Vthis_original_command
;
336 /* The value of point when the last command was started. */
337 int last_point_position
;
339 /* The buffer that was current when the last command was started. */
340 Lisp_Object last_point_position_buffer
;
342 /* The window that was selected when the last command was started. */
343 Lisp_Object last_point_position_window
;
345 /* The frame in which the last input event occurred, or Qmacro if the
346 last event came from a macro. We use this to determine when to
347 generate switch-frame events. This may be cleared by functions
348 like Fselect_frame, to make sure that a switch-frame event is
349 generated by the next character. */
350 Lisp_Object internal_last_event_frame
;
352 /* A user-visible version of the above, intended to allow users to
353 figure out where the last event came from, if the event doesn't
354 carry that information itself (i.e. if it was a character). */
355 Lisp_Object Vlast_event_frame
;
357 /* The timestamp of the last input event we received from the X server.
358 X Windows wants this for selection ownership. */
359 unsigned long last_event_timestamp
;
361 Lisp_Object Qself_insert_command
;
362 Lisp_Object Qforward_char
;
363 Lisp_Object Qbackward_char
;
364 Lisp_Object Qundefined
;
365 Lisp_Object Qtimer_event_handler
;
367 /* read_key_sequence stores here the command definition of the
368 key sequence that it reads. */
369 Lisp_Object read_key_sequence_cmd
;
371 /* Echo unfinished commands after this many seconds of pause. */
372 Lisp_Object Vecho_keystrokes
;
374 /* Form to evaluate (if non-nil) when Emacs is started. */
375 Lisp_Object Vtop_level
;
377 /* If non-nil, this implements the current input method. */
378 Lisp_Object Vinput_method_function
;
379 Lisp_Object Qinput_method_function
;
381 /* When we call Vinput_method_function,
382 this holds the echo area message that was just erased. */
383 Lisp_Object Vinput_method_previous_message
;
385 /* Non-nil means deactivate the mark at end of this command. */
386 Lisp_Object Vdeactivate_mark
;
387 Lisp_Object Qdeactivate_mark
;
389 /* Menu bar specified in Lucid Emacs fashion. */
391 Lisp_Object Vlucid_menu_bar_dirty_flag
;
392 Lisp_Object Qrecompute_lucid_menubar
, Qactivate_menubar_hook
;
394 Lisp_Object Qecho_area_clear_hook
;
396 /* Hooks to run before and after each command. */
397 Lisp_Object Qpre_command_hook
, Vpre_command_hook
;
398 Lisp_Object Qpost_command_hook
, Vpost_command_hook
;
399 Lisp_Object Qcommand_hook_internal
, Vcommand_hook_internal
;
401 /* Parent keymap of terminal-local function-key-map instances. */
402 Lisp_Object Vfunction_key_map
;
404 /* Keymap of key translations that can override keymaps. */
405 Lisp_Object Vkey_translation_map
;
407 /* List of deferred actions to be performed at a later time.
408 The precise format isn't relevant here; we just check whether it is nil. */
409 Lisp_Object Vdeferred_action_list
;
411 /* Function to call to handle deferred actions, when there are any. */
412 Lisp_Object Vdeferred_action_function
;
413 Lisp_Object Qdeferred_action_function
;
415 Lisp_Object Qinput_method_exit_on_first_char
;
416 Lisp_Object Qinput_method_use_echo_area
;
418 /* File in which we write all commands we read. */
421 /* Nonzero if input is available. */
424 extern char *pending_malloc_warning
;
426 /* Circular buffer for pre-read keyboard input. */
428 static struct input_event kbd_buffer
[KBD_BUFFER_SIZE
];
430 /* Pointer to next available character in kbd_buffer.
431 If kbd_fetch_ptr == kbd_store_ptr, the buffer is empty.
432 This may be kbd_buffer + KBD_BUFFER_SIZE, meaning that the
433 next available char is in kbd_buffer[0]. */
434 static struct input_event
*kbd_fetch_ptr
;
436 /* Pointer to next place to store character in kbd_buffer. This
437 may be kbd_buffer + KBD_BUFFER_SIZE, meaning that the next
438 character should go in kbd_buffer[0]. */
439 static struct input_event
* volatile kbd_store_ptr
;
441 /* The above pair of variables forms a "queue empty" flag. When we
442 enqueue a non-hook event, we increment kbd_store_ptr. When we
443 dequeue a non-hook event, we increment kbd_fetch_ptr. We say that
444 there is input available if the two pointers are not equal.
446 Why not just have a flag set and cleared by the enqueuing and
447 dequeuing functions? Such a flag could be screwed up by interrupts
448 at inopportune times. */
450 /* If this flag is non-nil, we check mouse_moved to see when the
451 mouse moves, and motion events will appear in the input stream.
452 Otherwise, mouse motion is ignored. */
453 Lisp_Object do_mouse_tracking
;
455 /* Symbols to head events. */
456 Lisp_Object Qmouse_movement
;
457 Lisp_Object Qscroll_bar_movement
;
458 Lisp_Object Qswitch_frame
;
459 Lisp_Object Qdelete_frame
;
460 Lisp_Object Qiconify_frame
;
461 Lisp_Object Qmake_frame_visible
;
462 Lisp_Object Qselect_window
;
463 Lisp_Object Qhelp_echo
;
465 #if defined (HAVE_MOUSE) || defined (HAVE_GPM)
466 Lisp_Object Qmouse_fixup_help_message
;
469 /* Symbols to denote kinds of events. */
470 Lisp_Object Qfunction_key
;
471 Lisp_Object Qmouse_click
;
472 #if defined (WINDOWSNT)
473 Lisp_Object Qlanguage_change
;
475 Lisp_Object Qdrag_n_drop
;
476 Lisp_Object Qsave_session
;
478 Lisp_Object Qdbus_event
;
480 /* Lisp_Object Qmouse_movement; - also an event header */
482 /* Properties of event headers. */
483 Lisp_Object Qevent_kind
;
484 Lisp_Object Qevent_symbol_elements
;
486 /* menu item parts */
487 Lisp_Object Qmenu_alias
;
488 Lisp_Object Qmenu_enable
;
489 Lisp_Object QCenable
, QCvisible
, QChelp
, QCfilter
, QCkeys
, QCkey_sequence
;
490 Lisp_Object QCbutton
, QCtoggle
, QCradio
;
491 extern Lisp_Object Vdefine_key_rebound_commands
;
492 extern Lisp_Object Qmenu_item
;
494 /* An event header symbol HEAD may have a property named
495 Qevent_symbol_element_mask, which is of the form (BASE MODIFIERS);
496 BASE is the base, unmodified version of HEAD, and MODIFIERS is the
497 mask of modifiers applied to it. If present, this is used to help
498 speed up parse_modifiers. */
499 Lisp_Object Qevent_symbol_element_mask
;
501 /* An unmodified event header BASE may have a property named
502 Qmodifier_cache, which is an alist mapping modifier masks onto
503 modified versions of BASE. If present, this helps speed up
505 Lisp_Object Qmodifier_cache
;
507 /* Symbols to use for parts of windows. */
508 Lisp_Object Qmode_line
;
509 Lisp_Object Qvertical_line
;
510 Lisp_Object Qvertical_scroll_bar
;
511 Lisp_Object Qmenu_bar
;
512 extern Lisp_Object Qleft_margin
, Qright_margin
;
513 extern Lisp_Object Qleft_fringe
, Qright_fringe
;
514 extern Lisp_Object QCmap
;
516 Lisp_Object
recursive_edit_unwind (), command_loop ();
517 Lisp_Object
Fthis_command_keys ();
518 Lisp_Object Qextended_command_history
;
519 EMACS_TIME
timer_check ();
521 extern Lisp_Object Vhistory_length
, Vtranslation_table_for_input
;
523 extern char *x_get_keysym_name ();
525 static void record_menu_key ();
526 static int echo_length ();
528 Lisp_Object Qpolling_period
;
530 /* List of absolute timers. Appears in order of next scheduled event. */
531 Lisp_Object Vtimer_list
;
533 /* List of idle time timers. Appears in order of next scheduled event. */
534 Lisp_Object Vtimer_idle_list
;
536 /* Incremented whenever a timer is run. */
539 extern Lisp_Object Vprint_level
, Vprint_length
;
541 /* Address (if not 0) of EMACS_TIME to zero out if a SIGIO interrupt
543 EMACS_TIME
*input_available_clear_time
;
545 /* Nonzero means use SIGIO interrupts; zero means use CBREAK mode.
546 Default is 1 if INTERRUPT_INPUT is defined. */
549 /* Nonzero while interrupts are temporarily deferred during redisplay. */
550 int interrupts_deferred
;
552 /* Allow m- file to inhibit use of FIONREAD. */
553 #ifdef BROKEN_FIONREAD
557 /* We are unable to use interrupts if FIONREAD is not available,
558 so flush SIGIO so we won't try. */
559 #if !defined (FIONREAD)
565 /* If we support a window system, turn on the code to poll periodically
566 to detect C-g. It isn't actually used when doing interrupt input. */
567 #if defined(HAVE_WINDOW_SYSTEM) && !defined(USE_ASYNC_EVENTS)
568 #define POLL_FOR_INPUT
571 /* After a command is executed, if point is moved into a region that
572 has specific properties (e.g. composition, display), we adjust
573 point to the boundary of the region. But, if a command sets this
574 variable to non-nil, we suppress this point adjustment. This
575 variable is set to nil before reading a command. */
577 Lisp_Object Vdisable_point_adjustment
;
579 /* If non-nil, always disable point adjustment. */
581 Lisp_Object Vglobal_disable_point_adjustment
;
583 /* The time when Emacs started being idle. */
585 static EMACS_TIME timer_idleness_start_time
;
587 /* After Emacs stops being idle, this saves the last value
588 of timer_idleness_start_time from when it was idle. */
590 static EMACS_TIME timer_last_idleness_start_time
;
592 /* If non-nil, events produced by disabled menu items and tool-bar
593 buttons are not ignored. Help functions bind this to allow help on
594 those items and buttons. */
595 Lisp_Object Venable_disabled_menus_and_buttons
;
598 /* Global variable declarations. */
600 /* Flags for readable_events. */
601 #define READABLE_EVENTS_DO_TIMERS_NOW (1 << 0)
602 #define READABLE_EVENTS_FILTER_EVENTS (1 << 1)
603 #define READABLE_EVENTS_IGNORE_SQUEEZABLES (1 << 2)
605 /* Function for init_keyboard to call with no args (if nonzero). */
606 void (*keyboard_init_hook
) ();
608 static int read_avail_input
P_ ((int));
609 static void get_input_pending
P_ ((int *, int));
610 static int readable_events
P_ ((int));
611 static Lisp_Object read_char_x_menu_prompt
P_ ((int, Lisp_Object
*,
612 Lisp_Object
, int *));
613 static Lisp_Object
read_char_x_menu_prompt ();
614 static Lisp_Object read_char_minibuf_menu_prompt
P_ ((int, int,
616 static Lisp_Object make_lispy_event
P_ ((struct input_event
*));
617 #if defined (HAVE_MOUSE) || defined (HAVE_GPM)
618 static Lisp_Object make_lispy_movement
P_ ((struct frame
*, Lisp_Object
,
619 enum scroll_bar_part
,
620 Lisp_Object
, Lisp_Object
,
623 static Lisp_Object modify_event_symbol
P_ ((int, unsigned, Lisp_Object
,
624 Lisp_Object
, char **,
625 Lisp_Object
*, unsigned));
626 static Lisp_Object make_lispy_switch_frame
P_ ((Lisp_Object
));
627 static void save_getcjmp
P_ ((jmp_buf));
628 static void save_getcjmp ();
629 static void restore_getcjmp
P_ ((jmp_buf));
630 static Lisp_Object apply_modifiers
P_ ((int, Lisp_Object
));
631 static void clear_event
P_ ((struct input_event
*));
632 static Lisp_Object restore_kboard_configuration
P_ ((Lisp_Object
));
633 static SIGTYPE interrupt_signal
P_ ((int signalnum
));
634 static void handle_interrupt
P_ ((void));
635 static void timer_start_idle
P_ ((void));
636 static void timer_stop_idle
P_ ((void));
637 static void timer_resume_idle
P_ ((void));
638 static SIGTYPE handle_user_signal
P_ ((int));
639 static char *find_user_signal_name
P_ ((int));
640 static int store_user_signal_events
P_ ((void));
642 /* Nonzero means don't try to suspend even if the operating system seems
644 static int cannot_suspend
;
646 extern Lisp_Object Qidentity
, Qonly
;
648 /* Install the string STR as the beginning of the string of echoing,
649 so that it serves as a prompt for the next character.
650 Also start echoing. */
656 current_kboard
->echo_string
= str
;
657 current_kboard
->echo_after_prompt
= SCHARS (str
);
661 /* Add C to the echo string, if echoing is going on.
662 C can be a character, which is printed prettily ("M-C-x" and all that
663 jazz), or a symbol, whose name is printed. */
669 if (current_kboard
->immediate_echo
)
671 int size
= KEY_DESCRIPTION_SIZE
+ 100;
672 char *buffer
= (char *) alloca (size
);
674 Lisp_Object echo_string
;
676 echo_string
= current_kboard
->echo_string
;
678 /* If someone has passed us a composite event, use its head symbol. */
683 ptr
= push_key_description (XINT (c
), ptr
, 1);
685 else if (SYMBOLP (c
))
687 Lisp_Object name
= SYMBOL_NAME (c
);
688 int nbytes
= SBYTES (name
);
690 if (size
- (ptr
- buffer
) < nbytes
)
692 int offset
= ptr
- buffer
;
693 size
= max (2 * size
, size
+ nbytes
);
694 buffer
= (char *) alloca (size
);
695 ptr
= buffer
+ offset
;
698 ptr
+= copy_text (SDATA (name
), ptr
, nbytes
,
699 STRING_MULTIBYTE (name
), 1);
702 if ((NILP (echo_string
) || SCHARS (echo_string
) == 0)
705 const char *text
= " (Type ? for further options)";
706 int len
= strlen (text
);
708 if (size
- (ptr
- buffer
) < len
)
710 int offset
= ptr
- buffer
;
712 buffer
= (char *) alloca (size
);
713 ptr
= buffer
+ offset
;
716 bcopy (text
, ptr
, len
);
720 /* Replace a dash from echo_dash with a space, otherwise
721 add a space at the end as a separator between keys. */
722 if (STRINGP (echo_string
)
723 && SCHARS (echo_string
) > 1)
725 Lisp_Object last_char
, prev_char
, idx
;
727 idx
= make_number (SCHARS (echo_string
) - 2);
728 prev_char
= Faref (echo_string
, idx
);
730 idx
= make_number (SCHARS (echo_string
) - 1);
731 last_char
= Faref (echo_string
, idx
);
733 /* We test PREV_CHAR to make sure this isn't the echoing
735 if (XINT (last_char
) == '-' && XINT (prev_char
) != ' ')
736 Faset (echo_string
, idx
, make_number (' '));
738 echo_string
= concat2 (echo_string
, build_string (" "));
740 else if (STRINGP (echo_string
))
741 echo_string
= concat2 (echo_string
, build_string (" "));
743 current_kboard
->echo_string
744 = concat2 (echo_string
, make_string (buffer
, ptr
- buffer
));
750 /* Temporarily add a dash to the end of the echo string if it's not
751 empty, so that it serves as a mini-prompt for the very next character. */
756 /* Do nothing if not echoing at all. */
757 if (NILP (current_kboard
->echo_string
))
760 if (!current_kboard
->immediate_echo
761 && SCHARS (current_kboard
->echo_string
) == 0)
764 /* Do nothing if we just printed a prompt. */
765 if (current_kboard
->echo_after_prompt
766 == SCHARS (current_kboard
->echo_string
))
769 /* Do nothing if we have already put a dash at the end. */
770 if (SCHARS (current_kboard
->echo_string
) > 1)
772 Lisp_Object last_char
, prev_char
, idx
;
774 idx
= make_number (SCHARS (current_kboard
->echo_string
) - 2);
775 prev_char
= Faref (current_kboard
->echo_string
, idx
);
777 idx
= make_number (SCHARS (current_kboard
->echo_string
) - 1);
778 last_char
= Faref (current_kboard
->echo_string
, idx
);
780 if (XINT (last_char
) == '-' && XINT (prev_char
) != ' ')
784 /* Put a dash at the end of the buffer temporarily,
785 but make it go away when the next character is added. */
786 current_kboard
->echo_string
= concat2 (current_kboard
->echo_string
,
791 /* Display the current echo string, and begin echoing if not already
797 if (!current_kboard
->immediate_echo
)
800 current_kboard
->immediate_echo
= 1;
802 for (i
= 0; i
< this_command_key_count
; i
++)
806 /* Set before_command_echo_length to the value that would
807 have been saved before the start of this subcommand in
808 command_loop_1, if we had already been echoing then. */
809 if (i
== this_single_command_key_start
)
810 before_command_echo_length
= echo_length ();
812 c
= XVECTOR (this_command_keys
)->contents
[i
];
813 if (! (EVENT_HAS_PARAMETERS (c
)
814 && EQ (EVENT_HEAD_KIND (EVENT_HEAD (c
)), Qmouse_movement
)))
818 /* Set before_command_echo_length to the value that would
819 have been saved before the start of this subcommand in
820 command_loop_1, if we had already been echoing then. */
821 if (this_command_key_count
== this_single_command_key_start
)
822 before_command_echo_length
= echo_length ();
824 /* Put a dash at the end to invite the user to type more. */
829 message3_nolog (current_kboard
->echo_string
,
830 SBYTES (current_kboard
->echo_string
),
831 STRING_MULTIBYTE (current_kboard
->echo_string
));
834 /* Record in what buffer we echoed, and from which kboard. */
835 echo_message_buffer
= echo_area_buffer
[0];
836 echo_kboard
= current_kboard
;
838 if (waiting_for_input
&& !NILP (Vquit_flag
))
839 quit_throw_to_read_char ();
842 /* Turn off echoing, for the start of a new command. */
847 current_kboard
->immediate_echo
= 0;
848 current_kboard
->echo_after_prompt
= -1;
849 current_kboard
->echo_string
= Qnil
;
850 ok_to_echo_at_next_pause
= NULL
;
852 echo_message_buffer
= Qnil
;
855 /* Return the length of the current echo string. */
860 return (STRINGP (current_kboard
->echo_string
)
861 ? SCHARS (current_kboard
->echo_string
)
865 /* Truncate the current echo message to its first LEN chars.
866 This and echo_char get used by read_key_sequence when the user
867 switches frames while entering a key sequence. */
870 echo_truncate (nchars
)
873 if (STRINGP (current_kboard
->echo_string
))
874 current_kboard
->echo_string
875 = Fsubstring (current_kboard
->echo_string
,
876 make_number (0), make_number (nchars
));
877 truncate_echo_area (nchars
);
881 /* Functions for manipulating this_command_keys. */
883 add_command_key (key
)
886 #if 0 /* Not needed after we made Freset_this_command_lengths
887 do the job immediately. */
888 /* If reset-this-command-length was called recently, obey it now.
889 See the doc string of that function for an explanation of why. */
890 if (before_command_restore_flag
)
892 this_command_key_count
= before_command_key_count_1
;
893 if (this_command_key_count
< this_single_command_key_start
)
894 this_single_command_key_start
= this_command_key_count
;
895 echo_truncate (before_command_echo_length_1
);
896 before_command_restore_flag
= 0;
900 if (this_command_key_count
>= ASIZE (this_command_keys
))
901 this_command_keys
= larger_vector (this_command_keys
,
902 2 * ASIZE (this_command_keys
),
905 ASET (this_command_keys
, this_command_key_count
, key
);
906 ++this_command_key_count
;
913 int count
= SPECPDL_INDEX ();
916 if (command_loop_level
> 0)
918 specbind (Qstandard_output
, Qt
);
919 specbind (Qstandard_input
, Qt
);
922 #ifdef HAVE_WINDOW_SYSTEM
923 /* The command loop has started an hourglass timer, so we have to
924 cancel it here, otherwise it will fire because the recursive edit
925 can take some time. Do not check for display_hourglass_p here,
926 because it could already be nil. */
930 /* This function may have been called from a debugger called from
931 within redisplay, for instance by Edebugging a function called
932 from fontification-functions. We want to allow redisplay in
933 the debugging session.
935 The recursive edit is left with a `(throw exit ...)'. The `exit'
936 tag is not caught anywhere in redisplay, i.e. when we leave the
937 recursive edit, the original redisplay leading to the recursive
938 edit will be unwound. The outcome should therefore be safe. */
939 specbind (Qinhibit_redisplay
, Qnil
);
942 val
= command_loop ();
944 Fsignal (Qquit
, Qnil
);
945 /* Handle throw from read_minibuf when using minibuffer
946 while it's active but we're in another window. */
948 xsignal1 (Qerror
, val
);
950 return unbind_to (count
, Qnil
);
953 /* When an auto-save happens, record the "time", and don't do again soon. */
958 last_auto_save
= num_nonmacro_input_events
;
961 /* Make an auto save happen as soon as possible at command level. */
964 force_auto_save_soon ()
966 last_auto_save
= - auto_save_interval
- 1;
968 record_asynch_buffer_change ();
971 DEFUN ("recursive-edit", Frecursive_edit
, Srecursive_edit
, 0, 0, "",
972 doc
: /* Invoke the editor command loop recursively.
973 To get out of the recursive edit, a command can do `(throw 'exit nil)';
974 that tells this function to return.
975 Alternatively, `(throw 'exit t)' makes this function signal an error.
976 This function is called by the editor initialization to begin editing. */)
979 int count
= SPECPDL_INDEX ();
982 /* If we enter while input is blocked, don't lock up here.
983 This may happen through the debugger during redisplay. */
987 command_loop_level
++;
988 update_mode_lines
= 1;
990 if (command_loop_level
991 && current_buffer
!= XBUFFER (XWINDOW (selected_window
)->buffer
))
992 buffer
= Fcurrent_buffer ();
996 /* If we leave recursive_edit_1 below with a `throw' for instance,
997 like it is done in the splash screen display, we have to
998 make sure that we restore single_kboard as command_loop_1
999 would have done if it were left normally. */
1000 if (command_loop_level
> 0)
1001 temporarily_switch_to_single_kboard (SELECTED_FRAME ());
1002 record_unwind_protect (recursive_edit_unwind
, buffer
);
1004 recursive_edit_1 ();
1005 return unbind_to (count
, Qnil
);
1009 recursive_edit_unwind (buffer
)
1012 if (BUFFERP (buffer
))
1013 Fset_buffer (buffer
);
1015 command_loop_level
--;
1016 update_mode_lines
= 1;
1021 #if 0 /* These two functions are now replaced with
1022 temporarily_switch_to_single_kboard. */
1026 #if 0 /* Theory: if there's anything in Vunread_command_events,
1027 it will right away be read by read_key_sequence,
1028 and then if we do switch KBOARDS, it will go into the side
1029 queue then. So we don't need to do anything special here -- rms. */
1030 if (CONSP (Vunread_command_events
))
1032 current_kboard
->kbd_queue
1033 = nconc2 (Vunread_command_events
, current_kboard
->kbd_queue
);
1034 current_kboard
->kbd_queue_has_data
= 1;
1036 Vunread_command_events
= Qnil
;
1041 /* Switch to the single-kboard state, making current_kboard
1042 the only KBOARD from which further input is accepted. */
1045 single_kboard_state ()
1051 /* If we're in single_kboard state for kboard KBOARD,
1055 not_single_kboard_state (kboard
)
1058 if (kboard
== current_kboard
)
1062 /* Maintain a stack of kboards, so other parts of Emacs
1063 can switch temporarily to the kboard of a given frame
1064 and then revert to the previous status. */
1069 struct kboard_stack
*next
;
1072 static struct kboard_stack
*kboard_stack
;
1078 struct kboard_stack
*p
1079 = (struct kboard_stack
*) xmalloc (sizeof (struct kboard_stack
));
1081 p
->next
= kboard_stack
;
1082 p
->kboard
= current_kboard
;
1092 struct kboard_stack
*p
= kboard_stack
;
1094 for (t
= terminal_list
; t
; t
= t
->next_terminal
)
1096 if (t
->kboard
== p
->kboard
)
1098 current_kboard
= p
->kboard
;
1105 /* The terminal we remembered has been deleted. */
1106 current_kboard
= FRAME_KBOARD (SELECTED_FRAME ());
1109 kboard_stack
= p
->next
;
1113 /* Switch to single_kboard mode, making current_kboard the only KBOARD
1114 from which further input is accepted. If F is non-nil, set its
1115 KBOARD as the current keyboard.
1117 This function uses record_unwind_protect to return to the previous
1120 If Emacs is already in single_kboard mode, and F's keyboard is
1121 locked, then this function will throw an errow. */
1124 temporarily_switch_to_single_kboard (f
)
1127 int was_locked
= single_kboard
;
1130 if (f
!= NULL
&& FRAME_KBOARD (f
) != current_kboard
)
1131 /* We can not switch keyboards while in single_kboard mode.
1132 In rare cases, Lisp code may call `recursive-edit' (or
1133 `read-minibuffer' or `y-or-n-p') after it switched to a
1134 locked frame. For example, this is likely to happen
1135 when server.el connects to a new terminal while Emacs is in
1136 single_kboard mode. It is best to throw an error instead
1137 of presenting the user with a frozen screen. */
1138 error ("Terminal %d is locked, cannot read from it",
1139 FRAME_TERMINAL (f
)->id
);
1141 /* This call is unnecessary, but helps
1142 `restore_kboard_configuration' discover if somebody changed
1143 `current_kboard' behind our back. */
1144 push_kboard (current_kboard
);
1147 current_kboard
= FRAME_KBOARD (f
);
1149 record_unwind_protect (restore_kboard_configuration
,
1150 (was_locked
? Qt
: Qnil
));
1153 #if 0 /* This function is not needed anymore. */
1155 record_single_kboard_state ()
1158 push_kboard (current_kboard
);
1159 record_unwind_protect (restore_kboard_configuration
,
1160 (single_kboard
? Qt
: Qnil
));
1165 restore_kboard_configuration (was_locked
)
1166 Lisp_Object was_locked
;
1168 if (NILP (was_locked
))
1172 struct kboard
*prev
= current_kboard
;
1175 /* The pop should not change the kboard. */
1176 if (single_kboard
&& current_kboard
!= prev
)
1183 /* Handle errors that are not handled at inner levels
1184 by printing an error message and returning to the editor command loop. */
1190 Lisp_Object old_level
, old_length
;
1191 char macroerror
[50];
1193 #ifdef HAVE_WINDOW_SYSTEM
1194 if (display_hourglass_p
)
1195 cancel_hourglass ();
1198 if (!NILP (executing_kbd_macro
))
1200 if (executing_kbd_macro_iterations
== 1)
1201 sprintf (macroerror
, "After 1 kbd macro iteration: ");
1203 sprintf (macroerror
, "After %d kbd macro iterations: ",
1204 executing_kbd_macro_iterations
);
1209 Vstandard_output
= Qt
;
1210 Vstandard_input
= Qt
;
1211 Vexecuting_kbd_macro
= Qnil
;
1212 executing_kbd_macro
= Qnil
;
1213 current_kboard
->Vprefix_arg
= Qnil
;
1214 current_kboard
->Vlast_prefix_arg
= Qnil
;
1217 /* Avoid unquittable loop if data contains a circular list. */
1218 old_level
= Vprint_level
;
1219 old_length
= Vprint_length
;
1220 XSETFASTINT (Vprint_level
, 10);
1221 XSETFASTINT (Vprint_length
, 10);
1222 cmd_error_internal (data
, macroerror
);
1223 Vprint_level
= old_level
;
1224 Vprint_length
= old_length
;
1228 Vinhibit_quit
= Qnil
;
1229 #if 0 /* This shouldn't be necessary anymore. --lorentey */
1230 if (command_loop_level
== 0 && minibuf_level
== 0)
1231 any_kboard_state ();
1234 return make_number (0);
1237 /* Take actions on handling an error. DATA is the data that describes
1240 CONTEXT is a C-string containing ASCII characters only which
1241 describes the context in which the error happened. If we need to
1242 generalize CONTEXT to allow multibyte characters, make it a Lisp
1246 cmd_error_internal (data
, context
)
1250 struct frame
*sf
= SELECTED_FRAME ();
1252 /* The immediate context is not interesting for Quits,
1253 since they are asyncronous. */
1254 if (EQ (XCAR (data
), Qquit
))
1255 Vsignaling_function
= Qnil
;
1260 /* Use user's specified output function if any. */
1261 if (!NILP (Vcommand_error_function
))
1262 call3 (Vcommand_error_function
, data
,
1263 context
? build_string (context
) : empty_unibyte_string
,
1264 Vsignaling_function
);
1265 /* If the window system or terminal frame hasn't been initialized
1266 yet, or we're not interactive, write the message to stderr and exit. */
1267 else if (!sf
->glyphs_initialized_p
1268 /* We used to check if "This is the case of the frame dumped with
1269 Emacs, when we're running under a window system" with
1270 || (!NILP (Vwindow_system) && !inhibit_window_system
1271 && FRAME_TERMCAP_P (sf))
1272 then the multi-tty code generalized this check to
1273 || FRAME_INITIAL_P (sf)
1274 but this leads to undesirable behavior in daemon mode where
1275 we don't want to exit just because we got an error without
1276 having a frame (bug#1310).
1277 So I just removed the check, and rely instead on the `message_*'
1278 functions properly using FRAME_INITIAL_P. In the worst case
1279 this should just make Emacs not exit when it should. */
1282 print_error_message (data
, Qexternal_debugging_output
,
1283 context
, Vsignaling_function
);
1284 Fterpri (Qexternal_debugging_output
);
1285 Fkill_emacs (make_number (-1));
1289 clear_message (1, 0);
1291 message_log_maybe_newline ();
1294 print_error_message (data
, Qt
, context
, Vsignaling_function
);
1297 Vsignaling_function
= Qnil
;
1300 Lisp_Object
command_loop_1 ();
1301 Lisp_Object
command_loop_2 ();
1302 Lisp_Object
top_level_1 ();
1304 /* Entry to editor-command-loop.
1305 This level has the catches for exiting/returning to editor command loop.
1306 It returns nil to exit recursive edit, t to abort it. */
1311 if (command_loop_level
> 0 || minibuf_level
> 0)
1314 val
= internal_catch (Qexit
, command_loop_2
, Qnil
);
1315 executing_kbd_macro
= Qnil
;
1321 internal_catch (Qtop_level
, top_level_1
, Qnil
);
1322 #if 0 /* This shouldn't be necessary anymore. --lorentey */
1323 /* Reset single_kboard in case top-level set it while
1324 evaluating an -f option, or we are stuck there for some
1326 any_kboard_state ();
1328 internal_catch (Qtop_level
, command_loop_2
, Qnil
);
1329 executing_kbd_macro
= Qnil
;
1331 /* End of file in -batch run causes exit here. */
1337 /* Here we catch errors in execution of commands within the
1338 editing loop, and reenter the editing loop.
1339 When there is an error, cmd_error runs and returns a non-nil
1340 value to us. A value of nil means that command_loop_1 itself
1341 returned due to end of file (or end of kbd macro). */
1346 register Lisp_Object val
;
1349 val
= internal_condition_case (command_loop_1
, Qerror
, cmd_error
);
1350 while (!NILP (val
));
1358 return Feval (Vtop_level
);
1364 /* On entry to the outer level, run the startup file */
1365 if (!NILP (Vtop_level
))
1366 internal_condition_case (top_level_2
, Qerror
, cmd_error
);
1367 else if (!NILP (Vpurify_flag
))
1368 message ("Bare impure Emacs (standard Lisp code not loaded)");
1370 message ("Bare Emacs (standard Lisp code not loaded)");
1374 DEFUN ("top-level", Ftop_level
, Stop_level
, 0, 0, "",
1375 doc
: /* Exit all recursive editing levels.
1376 This also exits all active minibuffers. */)
1379 #ifdef HAVE_WINDOW_SYSTEM
1380 if (display_hourglass_p
)
1381 cancel_hourglass ();
1384 /* Unblock input if we enter with input blocked. This may happen if
1385 redisplay traps e.g. during tool-bar update with input blocked. */
1386 while (INPUT_BLOCKED_P
)
1389 return Fthrow (Qtop_level
, Qnil
);
1392 DEFUN ("exit-recursive-edit", Fexit_recursive_edit
, Sexit_recursive_edit
, 0, 0, "",
1393 doc
: /* Exit from the innermost recursive edit or minibuffer. */)
1396 if (command_loop_level
> 0 || minibuf_level
> 0)
1397 Fthrow (Qexit
, Qnil
);
1399 error ("No recursive edit is in progress");
1403 DEFUN ("abort-recursive-edit", Fabort_recursive_edit
, Sabort_recursive_edit
, 0, 0, "",
1404 doc
: /* Abort the command that requested this recursive edit or minibuffer input. */)
1407 if (command_loop_level
> 0 || minibuf_level
> 0)
1410 error ("No recursive edit is in progress");
1414 #if defined (HAVE_MOUSE) || defined (HAVE_GPM)
1416 /* Restore mouse tracking enablement. See Ftrack_mouse for the only use
1417 of this function. */
1420 tracking_off (old_value
)
1421 Lisp_Object old_value
;
1423 do_mouse_tracking
= old_value
;
1424 if (NILP (old_value
))
1426 /* Redisplay may have been preempted because there was input
1427 available, and it assumes it will be called again after the
1428 input has been processed. If the only input available was
1429 the sort that we have just disabled, then we need to call
1431 if (!readable_events (READABLE_EVENTS_DO_TIMERS_NOW
))
1433 redisplay_preserve_echo_area (6);
1434 get_input_pending (&input_pending
,
1435 READABLE_EVENTS_DO_TIMERS_NOW
);
1441 DEFUN ("track-mouse", Ftrack_mouse
, Strack_mouse
, 0, UNEVALLED
, 0,
1442 doc
: /* Evaluate BODY with mouse movement events enabled.
1443 Within a `track-mouse' form, mouse motion generates input events that
1444 you can read with `read-event'.
1445 Normally, mouse motion is ignored.
1446 usage: (track-mouse BODY...) */)
1450 int count
= SPECPDL_INDEX ();
1453 record_unwind_protect (tracking_off
, do_mouse_tracking
);
1455 do_mouse_tracking
= Qt
;
1457 val
= Fprogn (args
);
1458 return unbind_to (count
, val
);
1461 /* If mouse has moved on some frame, return one of those frames.
1465 If ignore_mouse_drag_p is non-zero, ignore (implicit) mouse movement
1466 after resizing the tool-bar window. */
1468 int ignore_mouse_drag_p
;
1473 Lisp_Object tail
, frame
;
1475 if (ignore_mouse_drag_p
)
1477 /* ignore_mouse_drag_p = 0; */
1481 FOR_EACH_FRAME (tail
, frame
)
1483 if (XFRAME (frame
)->mouse_moved
)
1484 return XFRAME (frame
);
1490 #endif /* HAVE_MOUSE || HAVE_GPM */
1492 /* This is the actual command reading loop,
1493 sans error-handling encapsulation. */
1495 static int read_key_sequence
P_ ((Lisp_Object
*, int, Lisp_Object
,
1497 void safe_run_hooks
P_ ((Lisp_Object
));
1498 static void adjust_point_for_property
P_ ((int, int));
1500 /* Cancel hourglass from protect_unwind.
1502 #ifdef HAVE_WINDOW_SYSTEM
1504 cancel_hourglass_unwind (arg
)
1507 cancel_hourglass ();
1518 Lisp_Object keybuf
[30];
1520 int prev_modiff
= 0;
1521 struct buffer
*prev_buffer
= NULL
;
1522 #if 0 /* This shouldn't be necessary anymore. --lorentey */
1523 int was_locked
= single_kboard
;
1525 int already_adjusted
= 0;
1527 current_kboard
->Vprefix_arg
= Qnil
;
1528 current_kboard
->Vlast_prefix_arg
= Qnil
;
1529 Vdeactivate_mark
= Qnil
;
1530 waiting_for_input
= 0;
1534 this_command_key_count
= 0;
1535 this_command_key_count_reset
= 0;
1536 this_single_command_key_start
= 0;
1538 if (NILP (Vmemory_full
))
1540 /* Make sure this hook runs after commands that get errors and
1541 throw to top level. */
1542 /* Note that the value cell will never directly contain nil
1543 if the symbol is a local variable. */
1544 if (!NILP (Vpost_command_hook
) && !NILP (Vrun_hooks
))
1545 safe_run_hooks (Qpost_command_hook
);
1547 /* If displaying a message, resize the echo area window to fit
1548 that message's size exactly. */
1549 if (!NILP (echo_area_buffer
[0]))
1550 resize_echo_area_exactly ();
1552 if (!NILP (Vdeferred_action_list
))
1553 safe_run_hooks (Qdeferred_action_function
);
1556 /* Do this after running Vpost_command_hook, for consistency. */
1557 current_kboard
->Vlast_command
= Vthis_command
;
1558 current_kboard
->Vreal_last_command
= real_this_command
;
1559 if (!CONSP (last_command_char
))
1560 current_kboard
->Vlast_repeatable_command
= real_this_command
;
1564 if (! FRAME_LIVE_P (XFRAME (selected_frame
)))
1567 /* Make sure the current window's buffer is selected. */
1568 if (XBUFFER (XWINDOW (selected_window
)->buffer
) != current_buffer
)
1569 set_buffer_internal (XBUFFER (XWINDOW (selected_window
)->buffer
));
1571 /* Display any malloc warning that just came out. Use while because
1572 displaying one warning can cause another. */
1574 while (pending_malloc_warning
)
1575 display_malloc_warning ();
1577 Vdeactivate_mark
= Qnil
;
1579 /* If minibuffer on and echo area in use,
1580 wait a short time and redraw minibuffer. */
1583 && !NILP (echo_area_buffer
[0])
1584 && EQ (minibuf_window
, echo_area_window
)
1585 && NUMBERP (Vminibuffer_message_timeout
))
1587 /* Bind inhibit-quit to t so that C-g gets read in
1588 rather than quitting back to the minibuffer. */
1589 int count
= SPECPDL_INDEX ();
1590 specbind (Qinhibit_quit
, Qt
);
1592 sit_for (Vminibuffer_message_timeout
, 0, 2);
1594 /* Clear the echo area. */
1596 safe_run_hooks (Qecho_area_clear_hook
);
1598 unbind_to (count
, Qnil
);
1600 /* If a C-g came in before, treat it as input now. */
1601 if (!NILP (Vquit_flag
))
1604 Vunread_command_events
= Fcons (make_number (quit_char
), Qnil
);
1609 /* Select the frame that the last event came from. Usually,
1610 switch-frame events will take care of this, but if some lisp
1611 code swallows a switch-frame event, we'll fix things up here.
1612 Is this a good idea? */
1613 if (FRAMEP (internal_last_event_frame
)
1614 && !EQ (internal_last_event_frame
, selected_frame
))
1615 Fselect_frame (internal_last_event_frame
, Qnil
);
1617 /* If it has changed current-menubar from previous value,
1618 really recompute the menubar from the value. */
1619 if (! NILP (Vlucid_menu_bar_dirty_flag
)
1620 && !NILP (Ffboundp (Qrecompute_lucid_menubar
)))
1621 call0 (Qrecompute_lucid_menubar
);
1623 before_command_key_count
= this_command_key_count
;
1624 before_command_echo_length
= echo_length ();
1626 Vthis_command
= Qnil
;
1627 real_this_command
= Qnil
;
1628 Vthis_original_command
= Qnil
;
1629 Vthis_command_keys_shift_translated
= Qnil
;
1631 /* Read next key sequence; i gets its length. */
1632 i
= read_key_sequence (keybuf
, sizeof keybuf
/ sizeof keybuf
[0],
1635 /* A filter may have run while we were reading the input. */
1636 if (! FRAME_LIVE_P (XFRAME (selected_frame
)))
1638 if (XBUFFER (XWINDOW (selected_window
)->buffer
) != current_buffer
)
1639 set_buffer_internal (XBUFFER (XWINDOW (selected_window
)->buffer
));
1643 /* Now we have read a key sequence of length I,
1644 or else I is 0 and we found end of file. */
1646 if (i
== 0) /* End of file -- happens only in */
1647 return Qnil
; /* a kbd macro, at the end. */
1648 /* -1 means read_key_sequence got a menu that was rejected.
1649 Just loop around and read another command. */
1653 this_command_key_count
= 0;
1654 this_command_key_count_reset
= 0;
1655 this_single_command_key_start
= 0;
1659 last_command_char
= keybuf
[i
- 1];
1661 /* If the previous command tried to force a specific window-start,
1662 forget about that, in case this command moves point far away
1663 from that position. But also throw away beg_unchanged and
1664 end_unchanged information in that case, so that redisplay will
1665 update the whole window properly. */
1666 if (!NILP (XWINDOW (selected_window
)->force_start
))
1669 XWINDOW (selected_window
)->force_start
= Qnil
;
1670 b
= XBUFFER (XWINDOW (selected_window
)->buffer
);
1671 BUF_BEG_UNCHANGED (b
) = BUF_END_UNCHANGED (b
) = 0;
1674 cmd
= read_key_sequence_cmd
;
1675 if (!NILP (Vexecuting_kbd_macro
))
1677 if (!NILP (Vquit_flag
))
1679 Vexecuting_kbd_macro
= Qt
;
1680 QUIT
; /* Make some noise. */
1681 /* Will return since macro now empty. */
1685 /* Do redisplay processing after this command except in special
1686 cases identified below. */
1687 prev_buffer
= current_buffer
;
1688 prev_modiff
= MODIFF
;
1689 last_point_position
= PT
;
1690 last_point_position_window
= selected_window
;
1691 XSETBUFFER (last_point_position_buffer
, prev_buffer
);
1693 /* By default, we adjust point to a boundary of a region that
1694 has such a property that should be treated intangible
1695 (e.g. composition, display). But, some commands will set
1696 this variable differently. */
1697 Vdisable_point_adjustment
= Qnil
;
1699 /* Process filters and timers may have messed with deactivate-mark.
1700 reset it before we execute the command. */
1701 Vdeactivate_mark
= Qnil
;
1703 /* Remap command through active keymaps */
1704 Vthis_original_command
= cmd
;
1708 if (cmd1
= Fcommand_remapping (cmd
, Qnil
, Qnil
), !NILP (cmd1
))
1712 /* Execute the command. */
1714 Vthis_command
= cmd
;
1715 real_this_command
= cmd
;
1716 /* Note that the value cell will never directly contain nil
1717 if the symbol is a local variable. */
1718 if (!NILP (Vpre_command_hook
) && !NILP (Vrun_hooks
))
1719 safe_run_hooks (Qpre_command_hook
);
1721 already_adjusted
= 0;
1723 if (NILP (Vthis_command
))
1725 /* nil means key is undefined. */
1726 Lisp_Object keys
= Fvector (i
, keybuf
);
1727 keys
= Fkey_description (keys
, Qnil
);
1729 message_with_string ("%s is undefined", keys
, 0);
1730 current_kboard
->defining_kbd_macro
= Qnil
;
1731 update_mode_lines
= 1;
1732 current_kboard
->Vprefix_arg
= Qnil
;
1736 if (NILP (current_kboard
->Vprefix_arg
))
1738 /* In case we jump to directly_done. */
1739 Vcurrent_prefix_arg
= current_kboard
->Vprefix_arg
;
1741 /* Recognize some common commands in common situations and
1742 do them directly. */
1743 if (EQ (Vthis_command
, Qforward_char
) && PT
< ZV
1744 && NILP (Vthis_command_keys_shift_translated
)
1745 && !CONSP (Vtransient_mark_mode
))
1747 struct Lisp_Char_Table
*dp
1748 = window_display_table (XWINDOW (selected_window
));
1749 lose
= FETCH_CHAR (PT_BYTE
);
1751 if (! NILP (Vpost_command_hook
))
1752 /* Put this before calling adjust_point_for_property
1753 so it will only get called once in any case. */
1755 if (current_buffer
== prev_buffer
1756 && last_point_position
!= PT
1757 && NILP (Vdisable_point_adjustment
)
1758 && NILP (Vglobal_disable_point_adjustment
))
1759 adjust_point_for_property (last_point_position
, 0);
1760 already_adjusted
= 1;
1761 if (PT
== last_point_position
+ 1
1763 ? (VECTORP (DISP_CHAR_VECTOR (dp
, lose
))
1764 ? XVECTOR (DISP_CHAR_VECTOR (dp
, lose
))->size
== 1
1765 : (NILP (DISP_CHAR_VECTOR (dp
, lose
))
1766 && (lose
>= 0x20 && lose
< 0x7f)))
1767 : (lose
>= 0x20 && lose
< 0x7f))
1768 /* To extract the case of continuation on
1769 wide-column characters. */
1770 && ASCII_BYTE_P (lose
)
1771 && (XFASTINT (XWINDOW (selected_window
)->last_modified
)
1773 && (XFASTINT (XWINDOW (selected_window
)->last_overlay_modified
)
1775 && (XFASTINT (XWINDOW (selected_window
)->last_point
)
1777 && !windows_or_buffers_changed
1778 && EQ (current_buffer
->selective_display
, Qnil
)
1779 && !detect_input_pending ()
1780 && NILP (XWINDOW (selected_window
)->column_number_displayed
)
1781 && NILP (Vexecuting_kbd_macro
))
1782 direct_output_forward_char (1);
1785 else if (EQ (Vthis_command
, Qbackward_char
) && PT
> BEGV
1786 && NILP (Vthis_command_keys_shift_translated
)
1787 && !CONSP (Vtransient_mark_mode
))
1789 struct Lisp_Char_Table
*dp
1790 = window_display_table (XWINDOW (selected_window
));
1792 lose
= FETCH_CHAR (PT_BYTE
);
1793 if (! NILP (Vpost_command_hook
))
1795 if (current_buffer
== prev_buffer
1796 && last_point_position
!= PT
1797 && NILP (Vdisable_point_adjustment
)
1798 && NILP (Vglobal_disable_point_adjustment
))
1799 adjust_point_for_property (last_point_position
, 0);
1800 already_adjusted
= 1;
1801 if (PT
== last_point_position
- 1
1803 ? (VECTORP (DISP_CHAR_VECTOR (dp
, lose
))
1804 ? XVECTOR (DISP_CHAR_VECTOR (dp
, lose
))->size
== 1
1805 : (NILP (DISP_CHAR_VECTOR (dp
, lose
))
1806 && (lose
>= 0x20 && lose
< 0x7f)))
1807 : (lose
>= 0x20 && lose
< 0x7f))
1808 && (XFASTINT (XWINDOW (selected_window
)->last_modified
)
1810 && (XFASTINT (XWINDOW (selected_window
)->last_overlay_modified
)
1812 && (XFASTINT (XWINDOW (selected_window
)->last_point
)
1814 && !windows_or_buffers_changed
1815 && EQ (current_buffer
->selective_display
, Qnil
)
1816 && !detect_input_pending ()
1817 && NILP (XWINDOW (selected_window
)->column_number_displayed
)
1818 && NILP (Vexecuting_kbd_macro
))
1819 direct_output_forward_char (-1);
1822 else if (EQ (Vthis_command
, Qself_insert_command
)
1823 /* Try this optimization only on char keystrokes. */
1824 && NATNUMP (last_command_char
)
1825 && CHAR_VALID_P (XFASTINT (last_command_char
), 0))
1828 = translate_char (Vtranslation_table_for_input
,
1829 XFASTINT (last_command_char
));
1831 if (NILP (Vexecuting_kbd_macro
)
1832 && !EQ (minibuf_window
, selected_window
))
1834 if (!nonundocount
|| nonundocount
>= 20)
1842 lose
= ((XFASTINT (XWINDOW (selected_window
)->last_modified
)
1844 || (XFASTINT (XWINDOW (selected_window
)->last_overlay_modified
)
1846 || (XFASTINT (XWINDOW (selected_window
)->last_point
)
1848 || MODIFF
<= SAVE_MODIFF
1849 || windows_or_buffers_changed
1850 || !EQ (current_buffer
->selective_display
, Qnil
)
1851 || detect_input_pending ()
1852 || !NILP (XWINDOW (selected_window
)->column_number_displayed
)
1853 || !NILP (Vexecuting_kbd_macro
));
1855 value
= internal_self_insert (c
, 0);
1860 if (! NILP (Vpost_command_hook
))
1861 /* Put this before calling adjust_point_for_property
1862 so it will only get called once in any case. */
1865 /* VALUE == 1 when AFTER-CHANGE functions are
1866 installed which is the case most of the time
1867 because FONT-LOCK installs one. */
1868 if (!lose
&& !value
)
1869 direct_output_for_insert (c
);
1874 /* Here for a command that isn't executed directly */
1877 #ifdef HAVE_WINDOW_SYSTEM
1878 int scount
= SPECPDL_INDEX ();
1880 if (display_hourglass_p
1881 && NILP (Vexecuting_kbd_macro
))
1883 record_unwind_protect (cancel_hourglass_unwind
, Qnil
);
1889 if (NILP (current_kboard
->Vprefix_arg
))
1891 Fcommand_execute (Vthis_command
, Qnil
, Qnil
, Qnil
);
1893 #ifdef HAVE_WINDOW_SYSTEM
1894 /* Do not check display_hourglass_p here, because
1895 Fcommand_execute could change it, but we should cancel
1896 hourglass cursor anyway.
1897 But don't cancel the hourglass within a macro
1898 just because a command in the macro finishes. */
1899 if (NILP (Vexecuting_kbd_macro
))
1900 unbind_to (scount
, Qnil
);
1905 current_kboard
->Vlast_prefix_arg
= Vcurrent_prefix_arg
;
1907 /* Note that the value cell will never directly contain nil
1908 if the symbol is a local variable. */
1909 if (!NILP (Vpost_command_hook
) && !NILP (Vrun_hooks
))
1910 safe_run_hooks (Qpost_command_hook
);
1912 /* If displaying a message, resize the echo area window to fit
1913 that message's size exactly. */
1914 if (!NILP (echo_area_buffer
[0]))
1915 resize_echo_area_exactly ();
1917 if (!NILP (Vdeferred_action_list
))
1918 safe_run_hooks (Qdeferred_action_function
);
1920 /* If there is a prefix argument,
1921 1) We don't want Vlast_command to be ``universal-argument''
1922 (that would be dumb), so don't set Vlast_command,
1923 2) we want to leave echoing on so that the prefix will be
1924 echoed as part of this key sequence, so don't call
1926 3) we want to leave this_command_key_count non-zero, so that
1927 read_char will realize that it is re-reading a character, and
1928 not echo it a second time.
1930 If the command didn't actually create a prefix arg,
1931 but is merely a frame event that is transparent to prefix args,
1932 then the above doesn't apply. */
1933 if (NILP (current_kboard
->Vprefix_arg
) || CONSP (last_command_char
))
1935 current_kboard
->Vlast_command
= Vthis_command
;
1936 current_kboard
->Vreal_last_command
= real_this_command
;
1937 if (!CONSP (last_command_char
))
1938 current_kboard
->Vlast_repeatable_command
= real_this_command
;
1940 this_command_key_count
= 0;
1941 this_command_key_count_reset
= 0;
1942 this_single_command_key_start
= 0;
1945 if (!NILP (current_buffer
->mark_active
) && !NILP (Vrun_hooks
))
1947 /* In Emacs 22, setting transient-mark-mode to `only' was a
1948 way of turning it on for just one command. This usage is
1949 obsolete, but support it anyway. */
1950 if (EQ (Vtransient_mark_mode
, Qidentity
))
1951 Vtransient_mark_mode
= Qnil
;
1952 else if (EQ (Vtransient_mark_mode
, Qonly
))
1953 Vtransient_mark_mode
= Qidentity
;
1955 if (!NILP (Vdeactivate_mark
))
1956 call0 (Qdeactivate_mark
);
1957 else if (current_buffer
!= prev_buffer
|| MODIFF
!= prev_modiff
)
1958 call1 (Vrun_hooks
, intern ("activate-mark-hook"));
1963 if (current_buffer
== prev_buffer
1964 && last_point_position
!= PT
1965 && NILP (Vdisable_point_adjustment
)
1966 && NILP (Vglobal_disable_point_adjustment
)
1967 && !already_adjusted
)
1968 adjust_point_for_property (last_point_position
, MODIFF
!= prev_modiff
);
1970 /* Install chars successfully executed in kbd macro. */
1972 if (!NILP (current_kboard
->defining_kbd_macro
)
1973 && NILP (current_kboard
->Vprefix_arg
))
1974 finalize_kbd_macro_chars ();
1975 #if 0 /* This shouldn't be necessary anymore. --lorentey */
1977 any_kboard_state ();
1982 extern Lisp_Object Qcomposition
, Qdisplay
;
1984 /* Adjust point to a boundary of a region that has such a property
1985 that should be treated intangible. For the moment, we check
1986 `composition', `display' and `invisible' properties.
1987 LAST_PT is the last position of point. */
1989 extern Lisp_Object Qafter_string
, Qbefore_string
;
1990 extern Lisp_Object get_pos_property
P_ ((Lisp_Object
, Lisp_Object
, Lisp_Object
));
1993 adjust_point_for_property (last_pt
, modified
)
1998 Lisp_Object val
, overlay
, tmp
;
1999 int check_composition
= 1, check_display
= 1, check_invisible
= 1;
2002 /* FIXME: cycling is probably not necessary because these properties
2003 can't be usefully combined anyway. */
2004 while (check_composition
|| check_display
|| check_invisible
)
2006 /* FIXME: check `intangible'. */
2007 if (check_composition
2008 && PT
> BEGV
&& PT
< ZV
2009 && (beg
= composition_adjust_point (last_pt
)) != PT
)
2012 check_display
= check_invisible
= 1;
2014 check_composition
= 0;
2016 && PT
> BEGV
&& PT
< ZV
2017 && !NILP (val
= get_char_property_and_overlay
2018 (make_number (PT
), Qdisplay
, Qnil
, &overlay
))
2019 && display_prop_intangible_p (val
)
2020 && (!OVERLAYP (overlay
)
2021 ? get_property_and_range (PT
, Qdisplay
, &val
, &beg
, &end
, Qnil
)
2022 : (beg
= OVERLAY_POSITION (OVERLAY_START (overlay
)),
2023 end
= OVERLAY_POSITION (OVERLAY_END (overlay
))))
2024 && (beg
< PT
/* && end > PT <- It's always the case. */
2025 || (beg
<= PT
&& STRINGP (val
) && SCHARS (val
) == 0)))
2028 SET_PT (PT
< last_pt
2029 ? (STRINGP (val
) && SCHARS (val
) == 0 ? beg
- 1 : beg
)
2031 check_composition
= check_invisible
= 1;
2034 if (check_invisible
&& PT
> BEGV
&& PT
< ZV
)
2036 int inv
, ellipsis
= 0;
2039 /* Find boundaries `beg' and `end' of the invisible area, if any. */
2041 && !NILP (val
= get_char_property_and_overlay
2042 (make_number (end
), Qinvisible
, Qnil
, &overlay
))
2043 && (inv
= TEXT_PROP_MEANS_INVISIBLE (val
)))
2045 ellipsis
= ellipsis
|| inv
> 1
2046 || (OVERLAYP (overlay
)
2047 && (!NILP (Foverlay_get (overlay
, Qafter_string
))
2048 || !NILP (Foverlay_get (overlay
, Qbefore_string
))));
2049 tmp
= Fnext_single_char_property_change
2050 (make_number (end
), Qinvisible
, Qnil
, Qnil
);
2051 end
= NATNUMP (tmp
) ? XFASTINT (tmp
) : ZV
;
2054 && !NILP (val
= get_char_property_and_overlay
2055 (make_number (beg
- 1), Qinvisible
, Qnil
, &overlay
))
2056 && (inv
= TEXT_PROP_MEANS_INVISIBLE (val
)))
2058 ellipsis
= ellipsis
|| inv
> 1
2059 || (OVERLAYP (overlay
)
2060 && (!NILP (Foverlay_get (overlay
, Qafter_string
))
2061 || !NILP (Foverlay_get (overlay
, Qbefore_string
))));
2062 tmp
= Fprevious_single_char_property_change
2063 (make_number (beg
), Qinvisible
, Qnil
, Qnil
);
2064 beg
= NATNUMP (tmp
) ? XFASTINT (tmp
) : BEGV
;
2067 /* Move away from the inside area. */
2068 if (beg
< PT
&& end
> PT
)
2070 SET_PT ((orig_pt
== PT
&& (last_pt
< beg
|| last_pt
> end
))
2071 /* We haven't moved yet (so we don't need to fear
2072 infinite-looping) and we were outside the range
2073 before (so either end of the range still corresponds
2074 to a move in the right direction): pretend we moved
2075 less than we actually did, so that we still have
2076 more freedom below in choosing which end of the range
2078 ? (orig_pt
= -1, PT
< last_pt
? end
: beg
)
2079 /* We either have moved already or the last point
2080 was already in the range: we don't get to choose
2081 which end of the range we have to go to. */
2082 : (PT
< last_pt
? beg
: end
));
2083 check_composition
= check_display
= 1;
2085 #if 0 /* This assertion isn't correct, because SET_PT may end up setting
2086 the point to something other than its argument, due to
2087 point-motion hooks, intangibility, etc. */
2088 xassert (PT
== beg
|| PT
== end
);
2091 /* Pretend the area doesn't exist if the buffer is not
2093 if (!modified
&& !ellipsis
&& beg
< end
)
2095 if (last_pt
== beg
&& PT
== end
&& end
< ZV
)
2096 (check_composition
= check_display
= 1, SET_PT (end
+ 1));
2097 else if (last_pt
== end
&& PT
== beg
&& beg
> BEGV
)
2098 (check_composition
= check_display
= 1, SET_PT (beg
- 1));
2099 else if (PT
== ((PT
< last_pt
) ? beg
: end
))
2100 /* We've already moved as far as we can. Trying to go
2101 to the other end would mean moving backwards and thus
2102 could lead to an infinite loop. */
2104 else if (val
= get_pos_property (make_number (PT
),
2106 TEXT_PROP_MEANS_INVISIBLE (val
)
2107 && (val
= get_pos_property
2108 (make_number (PT
== beg
? end
: beg
),
2110 !TEXT_PROP_MEANS_INVISIBLE (val
)))
2111 (check_composition
= check_display
= 1,
2112 SET_PT (PT
== beg
? end
: beg
));
2115 check_invisible
= 0;
2119 /* Subroutine for safe_run_hooks: run the hook HOOK. */
2122 safe_run_hooks_1 (hook
)
2125 if (NILP (Vrun_hooks
))
2127 return call1 (Vrun_hooks
, Vinhibit_quit
);
2130 /* Subroutine for safe_run_hooks: handle an error by clearing out the hook. */
2133 safe_run_hooks_error (data
)
2136 Lisp_Object args
[3];
2137 args
[0] = build_string ("Error in %s: %s");
2138 args
[1] = Vinhibit_quit
;
2141 return Fset (Vinhibit_quit
, Qnil
);
2144 /* If we get an error while running the hook, cause the hook variable
2145 to be nil. Also inhibit quits, so that C-g won't cause the hook
2146 to mysteriously evaporate. */
2149 safe_run_hooks (hook
)
2152 int count
= SPECPDL_INDEX ();
2153 specbind (Qinhibit_quit
, hook
);
2155 internal_condition_case (safe_run_hooks_1
, Qt
, safe_run_hooks_error
);
2157 unbind_to (count
, Qnil
);
2161 /* Number of seconds between polling for input. This is a Lisp
2162 variable that can be bound. */
2164 EMACS_INT polling_period
;
2166 /* Nonzero means polling for input is temporarily suppressed. */
2168 int poll_suppress_count
;
2170 /* Asynchronous timer for polling. */
2172 struct atimer
*poll_timer
;
2175 #ifdef POLL_FOR_INPUT
2177 /* Poll for input, so what we catch a C-g if it comes in. This
2178 function is called from x_make_frame_visible, see comment
2184 if (interrupt_input_blocked
== 0
2185 && !waiting_for_input
)
2186 read_avail_input (0);
2189 /* Timer callback function for poll_timer. TIMER is equal to
2193 poll_for_input (timer
)
2194 struct atimer
*timer
;
2196 if (poll_suppress_count
== 0)
2198 interrupt_input_pending
= 1;
2200 poll_for_input_1 ();
2204 #endif /* POLL_FOR_INPUT */
2206 /* Begin signals to poll for input, if they are appropriate.
2207 This function is called unconditionally from various places. */
2212 #ifdef POLL_FOR_INPUT
2213 /* XXX This condition was (read_socket_hook && !interrupt_input),
2214 but read_socket_hook is not global anymore. Let's pretend that
2216 if (!interrupt_input
)
2218 /* Turn alarm handling on unconditionally. It might have
2219 been turned off in process.c. */
2220 turn_on_atimers (1);
2222 /* If poll timer doesn't exist, are we need one with
2223 a different interval, start a new one. */
2224 if (poll_timer
== NULL
2225 || EMACS_SECS (poll_timer
->interval
) != polling_period
)
2227 EMACS_TIME interval
;
2230 cancel_atimer (poll_timer
);
2232 EMACS_SET_SECS_USECS (interval
, polling_period
, 0);
2233 poll_timer
= start_atimer (ATIMER_CONTINUOUS
, interval
,
2234 poll_for_input
, NULL
);
2237 /* Let the timer's callback function poll for input
2238 if this becomes zero. */
2239 --poll_suppress_count
;
2244 /* Nonzero if we are using polling to handle input asynchronously. */
2247 input_polling_used ()
2249 #ifdef POLL_FOR_INPUT
2250 /* XXX This condition was (read_socket_hook && !interrupt_input),
2251 but read_socket_hook is not global anymore. Let's pretend that
2253 return !interrupt_input
;
2259 /* Turn off polling. */
2264 #ifdef POLL_FOR_INPUT
2265 /* XXX This condition was (read_socket_hook && !interrupt_input),
2266 but read_socket_hook is not global anymore. Let's pretend that
2268 if (!interrupt_input
)
2269 ++poll_suppress_count
;
2273 /* Set the value of poll_suppress_count to COUNT
2274 and start or stop polling accordingly. */
2277 set_poll_suppress_count (count
)
2280 #ifdef POLL_FOR_INPUT
2281 if (count
== 0 && poll_suppress_count
!= 0)
2283 poll_suppress_count
= 1;
2286 else if (count
!= 0 && poll_suppress_count
== 0)
2290 poll_suppress_count
= count
;
2294 /* Bind polling_period to a value at least N.
2295 But don't decrease it. */
2298 bind_polling_period (n
)
2301 #ifdef POLL_FOR_INPUT
2302 int new = polling_period
;
2307 stop_other_atimers (poll_timer
);
2309 specbind (Qpolling_period
, make_number (new));
2310 /* Start a new alarm with the new period. */
2315 /* Apply the control modifier to CHARACTER. */
2321 /* Save the upper bits here. */
2322 int upper
= c
& ~0177;
2324 if (! ASCII_BYTE_P (c
))
2325 return c
|= ctrl_modifier
;
2329 /* Everything in the columns containing the upper-case letters
2330 denotes a control character. */
2331 if (c
>= 0100 && c
< 0140)
2335 /* Set the shift modifier for a control char
2336 made from a shifted letter. But only for letters! */
2337 if (oc
>= 'A' && oc
<= 'Z')
2338 c
|= shift_modifier
;
2341 /* The lower-case letters denote control characters too. */
2342 else if (c
>= 'a' && c
<= 'z')
2345 /* Include the bits for control and shift
2346 only if the basic ASCII code can't indicate them. */
2350 /* Replace the high bits. */
2351 c
|= (upper
& ~ctrl_modifier
);
2356 /* Display the help-echo property of the character after the mouse pointer.
2357 Either show it in the echo area, or call show-help-function to display
2358 it by other means (maybe in a tooltip).
2360 If HELP is nil, that means clear the previous help echo.
2362 If HELP is a string, display that string. If HELP is a function,
2363 call it with OBJECT and POS as arguments; the function should
2364 return a help string or nil for none. For all other types of HELP,
2365 evaluate it to obtain a string.
2367 WINDOW is the window in which the help was generated, if any.
2368 It is nil if not in a window.
2370 If OBJECT is a buffer, POS is the position in the buffer where the
2371 `help-echo' text property was found.
2373 If OBJECT is an overlay, that overlay has a `help-echo' property,
2374 and POS is the position in the overlay's buffer under the mouse.
2376 If OBJECT is a string (an overlay string or a string displayed with
2377 the `display' property). POS is the position in that string under
2380 OK_TO_OVERWRITE_KEYSTROKE_ECHO non-zero means it's okay if the help
2381 echo overwrites a keystroke echo currently displayed in the echo
2384 Note: this function may only be called with HELP nil or a string
2385 from X code running asynchronously. */
2388 show_help_echo (help
, window
, object
, pos
, ok_to_overwrite_keystroke_echo
)
2389 Lisp_Object help
, window
, object
, pos
;
2390 int ok_to_overwrite_keystroke_echo
;
2392 if (!NILP (help
) && !STRINGP (help
))
2394 if (FUNCTIONP (help
))
2396 Lisp_Object args
[4];
2401 help
= safe_call (4, args
);
2404 help
= safe_eval (help
);
2406 if (!STRINGP (help
))
2410 #if defined (HAVE_MOUSE) || defined (HAVE_GPM)
2411 if (!noninteractive
&& STRINGP (help
))
2413 /* The mouse-fixup-help-message Lisp function can call
2414 mouse_position_hook, which resets the mouse_moved flags.
2415 This causes trouble if we are trying to read a mouse motion
2416 event (i.e., if we are inside a `track-mouse' form), so we
2417 restore the mouse_moved flag. */
2418 FRAME_PTR f
= NILP (do_mouse_tracking
) ? NULL
: some_mouse_moved ();
2419 help
= call1 (Qmouse_fixup_help_message
, help
);
2425 if (STRINGP (help
) || NILP (help
))
2427 if (!NILP (Vshow_help_function
))
2428 call1 (Vshow_help_function
, help
);
2429 help_echo_showing_p
= STRINGP (help
);
2435 /* Input of single characters from keyboard */
2437 Lisp_Object
print_help ();
2438 static Lisp_Object
kbd_buffer_get_event ();
2439 static void record_char ();
2441 static Lisp_Object help_form_saved_window_configs
;
2443 read_char_help_form_unwind (Lisp_Object arg
)
2445 Lisp_Object window_config
= XCAR (help_form_saved_window_configs
);
2446 help_form_saved_window_configs
= XCDR (help_form_saved_window_configs
);
2447 if (!NILP (window_config
))
2448 Fset_window_configuration (window_config
);
2452 #define STOP_POLLING \
2453 do { if (! polling_stopped_here) stop_polling (); \
2454 polling_stopped_here = 1; } while (0)
2456 #define RESUME_POLLING \
2457 do { if (polling_stopped_here) start_polling (); \
2458 polling_stopped_here = 0; } while (0)
2460 /* read a character from the keyboard; call the redisplay if needed */
2461 /* commandflag 0 means do not do auto-saving, but do do redisplay.
2462 -1 means do not do redisplay, but do do autosaving.
2465 /* The arguments MAPS and NMAPS are for menu prompting.
2466 MAPS is an array of keymaps; NMAPS is the length of MAPS.
2468 PREV_EVENT is the previous input event, or nil if we are reading
2469 the first event of a key sequence (or not reading a key sequence).
2470 If PREV_EVENT is t, that is a "magic" value that says
2471 not to run input methods, but in other respects to act as if
2472 not reading a key sequence.
2474 If USED_MOUSE_MENU is non-null, then we set *USED_MOUSE_MENU to 1
2475 if we used a mouse menu to read the input, or zero otherwise. If
2476 USED_MOUSE_MENU is null, we don't dereference it.
2478 Value is -2 when we find input on another keyboard. A second call
2479 to read_char will read it.
2481 If END_TIME is non-null, it is a pointer to an EMACS_TIME
2482 specifying the maximum time to wait until. If no input arrives by
2483 that time, stop waiting and return nil.
2485 Value is t if we showed a menu and the user rejected it. */
2488 read_char (commandflag
, nmaps
, maps
, prev_event
, used_mouse_menu
, end_time
)
2492 Lisp_Object prev_event
;
2493 int *used_mouse_menu
;
2494 EMACS_TIME
*end_time
;
2496 volatile Lisp_Object c
;
2497 int count
, jmpcount
;
2498 jmp_buf local_getcjmp
;
2500 volatile int key_already_recorded
= 0;
2501 Lisp_Object tem
, save
;
2502 volatile Lisp_Object previous_echo_area_message
;
2503 volatile Lisp_Object also_record
;
2504 volatile int reread
;
2505 struct gcpro gcpro1
, gcpro2
;
2506 int polling_stopped_here
= 0;
2507 struct kboard
*orig_kboard
= current_kboard
;
2511 #if 0 /* This was commented out as part of fixing echo for C-u left. */
2512 before_command_key_count
= this_command_key_count
;
2513 before_command_echo_length
= echo_length ();
2516 previous_echo_area_message
= Qnil
;
2518 GCPRO2 (c
, previous_echo_area_message
);
2523 if (CONSP (Vunread_post_input_method_events
))
2525 c
= XCAR (Vunread_post_input_method_events
);
2526 Vunread_post_input_method_events
2527 = XCDR (Vunread_post_input_method_events
);
2529 /* Undo what read_char_x_menu_prompt did when it unread
2530 additional keys returned by Fx_popup_menu. */
2532 && (SYMBOLP (XCAR (c
)) || INTEGERP (XCAR (c
)))
2540 if (unread_command_char
!= -1)
2542 XSETINT (c
, unread_command_char
);
2543 unread_command_char
= -1;
2549 if (CONSP (Vunread_command_events
))
2551 c
= XCAR (Vunread_command_events
);
2552 Vunread_command_events
= XCDR (Vunread_command_events
);
2556 /* Undo what sit-for did when it unread additional keys
2557 inside universal-argument. */
2560 && EQ (XCAR (c
), Qt
))
2566 /* Undo what read_char_x_menu_prompt did when it unread
2567 additional keys returned by Fx_popup_menu. */
2569 && EQ (XCDR (c
), Qdisabled
)
2570 && (SYMBOLP (XCAR (c
)) || INTEGERP (XCAR (c
))))
2573 /* If the queued event is something that used the mouse,
2574 set used_mouse_menu accordingly. */
2576 && (EQ (c
, Qtool_bar
) || EQ (c
, Qmenu_bar
)))
2577 *used_mouse_menu
= 1;
2579 goto reread_for_input_method
;
2582 if (CONSP (Vunread_input_method_events
))
2584 c
= XCAR (Vunread_input_method_events
);
2585 Vunread_input_method_events
= XCDR (Vunread_input_method_events
);
2587 /* Undo what read_char_x_menu_prompt did when it unread
2588 additional keys returned by Fx_popup_menu. */
2590 && (SYMBOLP (XCAR (c
)) || INTEGERP (XCAR (c
)))
2594 goto reread_for_input_method
;
2597 this_command_key_count_reset
= 0;
2599 if (!NILP (Vexecuting_kbd_macro
))
2601 /* We set this to Qmacro; since that's not a frame, nobody will
2602 try to switch frames on us, and the selected window will
2605 Since this event came from a macro, it would be misleading to
2606 leave internal_last_event_frame set to wherever the last
2607 real event came from. Normally, a switch-frame event selects
2608 internal_last_event_frame after each command is read, but
2609 events read from a macro should never cause a new frame to be
2611 Vlast_event_frame
= internal_last_event_frame
= Qmacro
;
2613 /* Exit the macro if we are at the end.
2614 Also, some things replace the macro with t
2615 to force an early exit. */
2616 if (EQ (Vexecuting_kbd_macro
, Qt
)
2617 || executing_kbd_macro_index
>= XFASTINT (Flength (Vexecuting_kbd_macro
)))
2623 c
= Faref (Vexecuting_kbd_macro
, make_number (executing_kbd_macro_index
));
2624 if (STRINGP (Vexecuting_kbd_macro
)
2625 && (XINT (c
) & 0x80) && (XUINT (c
) <= 0xff))
2626 XSETFASTINT (c
, CHAR_META
| (XINT (c
) & ~0x80));
2628 executing_kbd_macro_index
++;
2633 if (!NILP (unread_switch_frame
))
2635 c
= unread_switch_frame
;
2636 unread_switch_frame
= Qnil
;
2638 /* This event should make it into this_command_keys, and get echoed
2639 again, so we do not set `reread'. */
2643 /* if redisplay was requested */
2644 if (commandflag
>= 0)
2646 int echo_current
= EQ (echo_message_buffer
, echo_area_buffer
[0]);
2648 /* If there is pending input, process any events which are not
2649 user-visible, such as X selection_request events. */
2651 || detect_input_pending_run_timers (0))
2652 swallow_events (0); /* may clear input_pending */
2654 /* Redisplay if no pending input. */
2655 while (!input_pending
)
2657 if (help_echo_showing_p
&& !EQ (selected_window
, minibuf_window
))
2658 redisplay_preserve_echo_area (5);
2663 /* Normal case: no input arrived during redisplay. */
2666 /* Input arrived and pre-empted redisplay.
2667 Process any events which are not user-visible. */
2669 /* If that cleared input_pending, try again to redisplay. */
2672 /* Prevent the redisplay we just did
2673 from messing up echoing of the input after the prompt. */
2674 if (commandflag
== 0 && echo_current
)
2675 echo_message_buffer
= echo_area_buffer
[0];
2679 /* Message turns off echoing unless more keystrokes turn it on again.
2681 The code in 20.x for the condition was
2683 1. echo_area_glyphs && *echo_area_glyphs
2684 2. && echo_area_glyphs != current_kboard->echobuf
2685 3. && ok_to_echo_at_next_pause != echo_area_glyphs
2687 (1) means there's a current message displayed
2689 (2) means it's not the message from echoing from the current
2692 (3) There's only one place in 20.x where ok_to_echo_at_next_pause
2693 is set to a non-null value. This is done in read_char and it is
2694 set to echo_area_glyphs after a call to echo_char. That means
2695 ok_to_echo_at_next_pause is either null or
2696 current_kboard->echobuf with the appropriate current_kboard at
2699 So, condition (3) means in clear text ok_to_echo_at_next_pause
2700 must be either null, or the current message isn't from echoing at
2701 all, or it's from echoing from a different kboard than the
2704 if (/* There currently is something in the echo area. */
2705 !NILP (echo_area_buffer
[0])
2706 && (/* And it's either not from echoing. */
2707 !EQ (echo_area_buffer
[0], echo_message_buffer
)
2708 /* Or it's an echo from a different kboard. */
2709 || echo_kboard
!= current_kboard
2710 /* Or we explicitly allow overwriting whatever there is. */
2711 || ok_to_echo_at_next_pause
== NULL
))
2716 /* Try reading a character via menu prompting in the minibuf.
2717 Try this before the sit-for, because the sit-for
2718 would do the wrong thing if we are supposed to do
2719 menu prompting. If EVENT_HAS_PARAMETERS then we are reading
2720 after a mouse event so don't try a minibuf menu. */
2722 if (nmaps
> 0 && INTERACTIVE
2723 && !NILP (prev_event
) && ! EVENT_HAS_PARAMETERS (prev_event
)
2724 /* Don't bring up a menu if we already have another event. */
2725 && NILP (Vunread_command_events
)
2726 && unread_command_char
< 0
2727 && !detect_input_pending_run_timers (0))
2729 c
= read_char_minibuf_menu_prompt (commandflag
, nmaps
, maps
);
2731 if (INTEGERP (c
) && XINT (c
) == -2)
2732 return c
; /* wrong_kboard_jmpbuf */
2736 key_already_recorded
= 1;
2741 /* Make a longjmp point for quits to use, but don't alter getcjmp just yet.
2742 We will do that below, temporarily for short sections of code,
2743 when appropriate. local_getcjmp must be in effect
2744 around any call to sit_for or kbd_buffer_get_event;
2745 it *must not* be in effect when we call redisplay. */
2747 jmpcount
= SPECPDL_INDEX ();
2748 if (_setjmp (local_getcjmp
))
2750 /* Handle quits while reading the keyboard. */
2751 /* We must have saved the outer value of getcjmp here,
2752 so restore it now. */
2753 restore_getcjmp (save_jump
);
2754 unbind_to (jmpcount
, Qnil
);
2755 XSETINT (c
, quit_char
);
2756 internal_last_event_frame
= selected_frame
;
2757 Vlast_event_frame
= internal_last_event_frame
;
2758 /* If we report the quit char as an event,
2759 don't do so more than once. */
2760 if (!NILP (Vinhibit_quit
))
2764 KBOARD
*kb
= FRAME_KBOARD (XFRAME (selected_frame
));
2765 if (kb
!= current_kboard
)
2767 Lisp_Object link
= kb
->kbd_queue
;
2768 /* We shouldn't get here if we were in single-kboard mode! */
2773 while (CONSP (XCDR (link
)))
2775 if (!NILP (XCDR (link
)))
2779 kb
->kbd_queue
= Fcons (c
, Qnil
);
2781 XSETCDR (link
, Fcons (c
, Qnil
));
2782 kb
->kbd_queue_has_data
= 1;
2783 current_kboard
= kb
;
2784 /* This is going to exit from read_char
2785 so we had better get rid of this frame's stuff. */
2787 return make_number (-2); /* wrong_kboard_jmpbuf */
2793 /* Start idle timers if no time limit is supplied. We don't do it
2794 if a time limit is supplied to avoid an infinite recursion in the
2795 situation where an idle timer calls `sit-for'. */
2798 timer_start_idle ();
2800 /* If in middle of key sequence and minibuffer not active,
2801 start echoing if enough time elapses. */
2803 if (minibuf_level
== 0
2805 && !current_kboard
->immediate_echo
2806 && this_command_key_count
> 0
2808 && (FLOATP (Vecho_keystrokes
) || INTEGERP (Vecho_keystrokes
))
2809 && NILP (Fzerop (Vecho_keystrokes
))
2810 && (/* No message. */
2811 NILP (echo_area_buffer
[0])
2812 /* Or empty message. */
2813 || (BUF_BEG (XBUFFER (echo_area_buffer
[0]))
2814 == BUF_Z (XBUFFER (echo_area_buffer
[0])))
2815 /* Or already echoing from same kboard. */
2816 || (echo_kboard
&& ok_to_echo_at_next_pause
== echo_kboard
)
2817 /* Or not echoing before and echoing allowed. */
2818 || (!echo_kboard
&& ok_to_echo_at_next_pause
)))
2820 /* After a mouse event, start echoing right away.
2821 This is because we are probably about to display a menu,
2822 and we don't want to delay before doing so. */
2823 if (EVENT_HAS_PARAMETERS (prev_event
))
2829 save_getcjmp (save_jump
);
2830 restore_getcjmp (local_getcjmp
);
2831 tem0
= sit_for (Vecho_keystrokes
, 1, 1);
2832 restore_getcjmp (save_jump
);
2834 && ! CONSP (Vunread_command_events
))
2839 /* Maybe auto save due to number of keystrokes. */
2841 if (commandflag
!= 0
2842 && auto_save_interval
> 0
2843 && num_nonmacro_input_events
- last_auto_save
> max (auto_save_interval
, 20)
2844 && !detect_input_pending_run_timers (0))
2846 Fdo_auto_save (Qnil
, Qnil
);
2847 /* Hooks can actually change some buffers in auto save. */
2851 /* Try reading using an X menu.
2852 This is never confused with reading using the minibuf
2853 because the recursive call of read_char in read_char_minibuf_menu_prompt
2854 does not pass on any keymaps. */
2856 if (nmaps
> 0 && INTERACTIVE
2857 && !NILP (prev_event
)
2858 && EVENT_HAS_PARAMETERS (prev_event
)
2859 && !EQ (XCAR (prev_event
), Qmenu_bar
)
2860 && !EQ (XCAR (prev_event
), Qtool_bar
)
2861 /* Don't bring up a menu if we already have another event. */
2862 && NILP (Vunread_command_events
)
2863 && unread_command_char
< 0)
2865 c
= read_char_x_menu_prompt (nmaps
, maps
, prev_event
, used_mouse_menu
);
2867 /* Now that we have read an event, Emacs is not idle. */
2874 /* Maybe autosave and/or garbage collect due to idleness. */
2876 if (INTERACTIVE
&& NILP (c
))
2878 int delay_level
, buffer_size
;
2880 /* Slow down auto saves logarithmically in size of current buffer,
2881 and garbage collect while we're at it. */
2882 if (! MINI_WINDOW_P (XWINDOW (selected_window
)))
2883 last_non_minibuf_size
= Z
- BEG
;
2884 buffer_size
= (last_non_minibuf_size
>> 8) + 1;
2886 while (buffer_size
> 64)
2887 delay_level
++, buffer_size
-= buffer_size
>> 2;
2888 if (delay_level
< 4) delay_level
= 4;
2889 /* delay_level is 4 for files under around 50k, 7 at 100k,
2890 9 at 200k, 11 at 300k, and 12 at 500k. It is 15 at 1 meg. */
2892 /* Auto save if enough time goes by without input. */
2893 if (commandflag
!= 0
2894 && num_nonmacro_input_events
> last_auto_save
2895 && INTEGERP (Vauto_save_timeout
)
2896 && XINT (Vauto_save_timeout
) > 0)
2899 int timeout
= delay_level
* XFASTINT (Vauto_save_timeout
) / 4;
2901 save_getcjmp (save_jump
);
2902 restore_getcjmp (local_getcjmp
);
2903 tem0
= sit_for (make_number (timeout
), 1, 1);
2904 restore_getcjmp (save_jump
);
2907 && ! CONSP (Vunread_command_events
))
2909 Fdo_auto_save (Qnil
, Qnil
);
2911 /* If we have auto-saved and there is still no input
2912 available, garbage collect if there has been enough
2913 consing going on to make it worthwhile. */
2914 if (!detect_input_pending_run_timers (0)
2915 && consing_since_gc
> gc_cons_threshold
/ 2)
2916 Fgarbage_collect ();
2923 /* Notify the caller if an autosave hook, or a timer, sentinel or
2924 filter in the sit_for calls above have changed the current
2925 kboard. This could happen if they use the minibuffer or start a
2926 recursive edit, like the fancy splash screen in server.el's
2927 filter. If this longjmp wasn't here, read_key_sequence would
2928 interpret the next key sequence using the wrong translation
2929 tables and function keymaps. */
2930 if (NILP (c
) && current_kboard
!= orig_kboard
)
2933 return make_number (-2); /* wrong_kboard_jmpbuf */
2936 /* If this has become non-nil here, it has been set by a timer
2937 or sentinel or filter. */
2938 if (CONSP (Vunread_command_events
))
2940 c
= XCAR (Vunread_command_events
);
2941 Vunread_command_events
= XCDR (Vunread_command_events
);
2944 /* Read something from current KBOARD's side queue, if possible. */
2948 if (current_kboard
->kbd_queue_has_data
)
2950 if (!CONSP (current_kboard
->kbd_queue
))
2952 c
= XCAR (current_kboard
->kbd_queue
);
2953 current_kboard
->kbd_queue
2954 = XCDR (current_kboard
->kbd_queue
);
2955 if (NILP (current_kboard
->kbd_queue
))
2956 current_kboard
->kbd_queue_has_data
= 0;
2957 input_pending
= readable_events (0);
2958 if (EVENT_HAS_PARAMETERS (c
)
2959 && EQ (EVENT_HEAD_KIND (EVENT_HEAD (c
)), Qswitch_frame
))
2960 internal_last_event_frame
= XCAR (XCDR (c
));
2961 Vlast_event_frame
= internal_last_event_frame
;
2965 /* If current_kboard's side queue is empty check the other kboards.
2966 If one of them has data that we have not yet seen here,
2967 switch to it and process the data waiting for it.
2969 Note: if the events queued up for another kboard
2970 have already been seen here, and therefore are not a complete command,
2971 the kbd_queue_has_data field is 0, so we skip that kboard here.
2972 That's to avoid an infinite loop switching between kboards here. */
2973 if (NILP (c
) && !single_kboard
)
2976 for (kb
= all_kboards
; kb
; kb
= kb
->next_kboard
)
2977 if (kb
->kbd_queue_has_data
)
2979 current_kboard
= kb
;
2980 /* This is going to exit from read_char
2981 so we had better get rid of this frame's stuff. */
2983 return make_number (-2); /* wrong_kboard_jmpbuf */
2991 /* Finally, we read from the main queue,
2992 and if that gives us something we can't use yet, we put it on the
2993 appropriate side queue and try again. */
3002 EMACS_GET_TIME (now
);
3003 if (EMACS_TIME_GE (now
, *end_time
))
3007 /* Actually read a character, waiting if necessary. */
3008 save_getcjmp (save_jump
);
3009 restore_getcjmp (local_getcjmp
);
3011 timer_start_idle ();
3012 c
= kbd_buffer_get_event (&kb
, used_mouse_menu
, end_time
);
3013 restore_getcjmp (save_jump
);
3015 if (! NILP (c
) && (kb
!= current_kboard
))
3017 Lisp_Object link
= kb
->kbd_queue
;
3020 while (CONSP (XCDR (link
)))
3022 if (!NILP (XCDR (link
)))
3026 kb
->kbd_queue
= Fcons (c
, Qnil
);
3028 XSETCDR (link
, Fcons (c
, Qnil
));
3029 kb
->kbd_queue_has_data
= 1;
3033 current_kboard
= kb
;
3034 /* This is going to exit from read_char
3035 so we had better get rid of this frame's stuff. */
3037 return make_number (-2);
3041 /* Terminate Emacs in batch mode if at eof. */
3042 if (noninteractive
&& INTEGERP (c
) && XINT (c
) < 0)
3043 Fkill_emacs (make_number (1));
3047 /* Add in any extra modifiers, where appropriate. */
3048 if ((extra_keyboard_modifiers
& CHAR_CTL
)
3049 || ((extra_keyboard_modifiers
& 0177) < ' '
3050 && (extra_keyboard_modifiers
& 0177) != 0))
3051 XSETINT (c
, make_ctrl_char (XINT (c
)));
3053 /* Transfer any other modifier bits directly from
3054 extra_keyboard_modifiers to c. Ignore the actual character code
3055 in the low 16 bits of extra_keyboard_modifiers. */
3056 XSETINT (c
, XINT (c
) | (extra_keyboard_modifiers
& ~0xff7f & ~CHAR_CTL
));
3067 if (commandflag
>= 0
3068 && !input_pending
&& !detect_input_pending_run_timers (0))
3076 /* Buffer switch events are only for internal wakeups
3077 so don't show them to the user.
3078 Also, don't record a key if we already did. */
3079 if (BUFFERP (c
) || key_already_recorded
)
3082 /* Process special events within read_char
3083 and loop around to read another event. */
3086 tem
= access_keymap (get_keymap (Vspecial_event_map
, 0, 1), c
, 0, 0, 1);
3091 #if 0 /* This shouldn't be necessary anymore. --lorentey */
3092 int was_locked
= single_kboard
;
3093 int count
= SPECPDL_INDEX ();
3094 record_single_kboard_state ();
3097 last_input_char
= c
;
3098 Fcommand_execute (tem
, Qnil
, Fvector (1, &last_input_char
), Qt
);
3100 if (CONSP (c
) && EQ (XCAR (c
), Qselect_window
) && !end_time
)
3101 /* We stopped being idle for this event; undo that. This
3102 prevents automatic window selection (under
3103 mouse_autoselect_window from acting as a real input event, for
3104 example banishing the mouse under mouse-avoidance-mode. */
3105 timer_resume_idle ();
3107 #if 0 /* This shouldn't be necessary anymore. --lorentey */
3108 /* Resume allowing input from any kboard, if that was true before. */
3110 any_kboard_state ();
3111 unbind_to (count
, Qnil
);
3117 /* Handle things that only apply to characters. */
3120 /* If kbd_buffer_get_event gave us an EOF, return that. */
3124 if ((STRINGP (current_kboard
->Vkeyboard_translate_table
)
3125 && SCHARS (current_kboard
->Vkeyboard_translate_table
) > (unsigned) XFASTINT (c
))
3126 || (VECTORP (current_kboard
->Vkeyboard_translate_table
)
3127 && XVECTOR (current_kboard
->Vkeyboard_translate_table
)->size
> (unsigned) XFASTINT (c
))
3128 || (CHAR_TABLE_P (current_kboard
->Vkeyboard_translate_table
)
3132 d
= Faref (current_kboard
->Vkeyboard_translate_table
, c
);
3133 /* nil in keyboard-translate-table means no translation. */
3139 /* If this event is a mouse click in the menu bar,
3140 return just menu-bar for now. Modify the mouse click event
3141 so we won't do this twice, then queue it up. */
3142 if (EVENT_HAS_PARAMETERS (c
)
3144 && CONSP (EVENT_START (c
))
3145 && CONSP (XCDR (EVENT_START (c
))))
3149 posn
= POSN_POSN (EVENT_START (c
));
3150 /* Handle menu-bar events:
3151 insert the dummy prefix event `menu-bar'. */
3152 if (EQ (posn
, Qmenu_bar
) || EQ (posn
, Qtool_bar
))
3154 /* Change menu-bar to (menu-bar) as the event "position". */
3155 POSN_SET_POSN (EVENT_START (c
), Fcons (posn
, Qnil
));
3158 Vunread_command_events
= Fcons (c
, Vunread_command_events
);
3163 /* Store these characters into recent_keys, the dribble file if any,
3164 and the keyboard macro being defined, if any. */
3166 if (! NILP (also_record
))
3167 record_char (also_record
);
3169 /* Wipe the echo area.
3170 But first, if we are about to use an input method,
3171 save the echo area contents for it to refer to. */
3173 && ! NILP (Vinput_method_function
)
3174 && (unsigned) XINT (c
) >= ' '
3175 && (unsigned) XINT (c
) != 127
3176 && (unsigned) XINT (c
) < 256)
3178 previous_echo_area_message
= Fcurrent_message ();
3179 Vinput_method_previous_message
= previous_echo_area_message
;
3182 /* Now wipe the echo area, except for help events which do their
3183 own stuff with the echo area. */
3185 || (!(EQ (Qhelp_echo
, XCAR (c
)))
3186 && !(EQ (Qswitch_frame
, XCAR (c
)))))
3188 if (!NILP (echo_area_buffer
[0]))
3189 safe_run_hooks (Qecho_area_clear_hook
);
3190 clear_message (1, 0);
3193 reread_for_input_method
:
3195 /* Pass this to the input method, if appropriate. */
3197 && ! NILP (Vinput_method_function
)
3198 /* Don't run the input method within a key sequence,
3199 after the first event of the key sequence. */
3200 && NILP (prev_event
)
3201 && (unsigned) XINT (c
) >= ' '
3202 && (unsigned) XINT (c
) != 127
3203 && (unsigned) XINT (c
) < 256)
3206 int key_count
, key_count_reset
;
3207 struct gcpro gcpro1
;
3208 int count
= SPECPDL_INDEX ();
3210 /* Save the echo status. */
3211 int saved_immediate_echo
= current_kboard
->immediate_echo
;
3212 struct kboard
*saved_ok_to_echo
= ok_to_echo_at_next_pause
;
3213 Lisp_Object saved_echo_string
= current_kboard
->echo_string
;
3214 int saved_echo_after_prompt
= current_kboard
->echo_after_prompt
;
3217 if (before_command_restore_flag
)
3219 this_command_key_count
= before_command_key_count_1
;
3220 if (this_command_key_count
< this_single_command_key_start
)
3221 this_single_command_key_start
= this_command_key_count
;
3222 echo_truncate (before_command_echo_length_1
);
3223 before_command_restore_flag
= 0;
3227 /* Save the this_command_keys status. */
3228 key_count
= this_command_key_count
;
3229 key_count_reset
= this_command_key_count_reset
;
3232 keys
= Fcopy_sequence (this_command_keys
);
3237 /* Clear out this_command_keys. */
3238 this_command_key_count
= 0;
3239 this_command_key_count_reset
= 0;
3241 /* Now wipe the echo area. */
3242 if (!NILP (echo_area_buffer
[0]))
3243 safe_run_hooks (Qecho_area_clear_hook
);
3244 clear_message (1, 0);
3247 /* If we are not reading a key sequence,
3248 never use the echo area. */
3251 specbind (Qinput_method_use_echo_area
, Qt
);
3254 /* Call the input method. */
3255 tem
= call1 (Vinput_method_function
, c
);
3257 tem
= unbind_to (count
, tem
);
3259 /* Restore the saved echoing state
3260 and this_command_keys state. */
3261 this_command_key_count
= key_count
;
3262 this_command_key_count_reset
= key_count_reset
;
3264 this_command_keys
= keys
;
3267 ok_to_echo_at_next_pause
= saved_ok_to_echo
;
3268 current_kboard
->echo_string
= saved_echo_string
;
3269 current_kboard
->echo_after_prompt
= saved_echo_after_prompt
;
3270 if (saved_immediate_echo
)
3275 /* The input method can return no events. */
3278 /* Bring back the previous message, if any. */
3279 if (! NILP (previous_echo_area_message
))
3280 message_with_string ("%s", previous_echo_area_message
, 0);
3283 /* It returned one event or more. */
3285 Vunread_post_input_method_events
3286 = nconc2 (XCDR (tem
), Vunread_post_input_method_events
);
3291 /* Display help if not echoing. */
3292 if (CONSP (c
) && EQ (XCAR (c
), Qhelp_echo
))
3294 /* (help-echo FRAME HELP WINDOW OBJECT POS). */
3295 Lisp_Object help
, object
, position
, window
, tem
;
3297 tem
= Fcdr (XCDR (c
));
3300 window
= Fcar (tem
);
3302 object
= Fcar (tem
);
3304 position
= Fcar (tem
);
3306 show_help_echo (help
, window
, object
, position
, 0);
3308 /* We stopped being idle for this event; undo that. */
3310 timer_resume_idle ();
3314 if ((! reread
|| this_command_key_count
== 0
3315 || this_command_key_count_reset
)
3319 /* Don't echo mouse motion events. */
3320 if ((FLOATP (Vecho_keystrokes
) || INTEGERP (Vecho_keystrokes
))
3321 && NILP (Fzerop (Vecho_keystrokes
))
3322 && ! (EVENT_HAS_PARAMETERS (c
)
3323 && EQ (EVENT_HEAD_KIND (EVENT_HEAD (c
)), Qmouse_movement
)))
3326 if (! NILP (also_record
))
3327 echo_char (also_record
);
3328 /* Once we reread a character, echoing can happen
3329 the next time we pause to read a new one. */
3330 ok_to_echo_at_next_pause
= current_kboard
;
3333 /* Record this character as part of the current key. */
3334 add_command_key (c
);
3335 if (! NILP (also_record
))
3336 add_command_key (also_record
);
3339 last_input_char
= c
;
3342 /* Process the help character specially if enabled */
3343 if (!NILP (Vhelp_form
) && help_char_p (c
))
3346 count
= SPECPDL_INDEX ();
3348 help_form_saved_window_configs
3349 = Fcons (Fcurrent_window_configuration (Qnil
),
3350 help_form_saved_window_configs
);
3351 record_unwind_protect (read_char_help_form_unwind
, Qnil
);
3353 tem0
= Feval (Vhelp_form
);
3355 internal_with_output_to_temp_buffer ("*Help*", print_help
, tem0
);
3360 c
= read_char (0, 0, 0, Qnil
, 0, NULL
);
3361 if (EVENT_HAS_PARAMETERS (c
)
3362 && EQ (EVENT_HEAD_KIND (EVENT_HEAD (c
)), Qmouse_click
))
3363 XSETCAR (help_form_saved_window_configs
, Qnil
);
3365 while (BUFFERP (c
));
3366 /* Remove the help from the frame */
3367 unbind_to (count
, Qnil
);
3370 if (EQ (c
, make_number (040)))
3374 c
= read_char (0, 0, 0, Qnil
, 0, NULL
);
3375 while (BUFFERP (c
));
3384 /* Record a key that came from a mouse menu.
3385 Record it for echoing, for this-command-keys, and so on. */
3391 /* Wipe the echo area. */
3392 clear_message (1, 0);
3397 before_command_key_count
= this_command_key_count
;
3398 before_command_echo_length
= echo_length ();
3401 /* Don't echo mouse motion events. */
3402 if ((FLOATP (Vecho_keystrokes
) || INTEGERP (Vecho_keystrokes
))
3403 && NILP (Fzerop (Vecho_keystrokes
)))
3407 /* Once we reread a character, echoing can happen
3408 the next time we pause to read a new one. */
3409 ok_to_echo_at_next_pause
= 0;
3412 /* Record this character as part of the current key. */
3413 add_command_key (c
);
3415 /* Re-reading in the middle of a command */
3416 last_input_char
= c
;
3420 /* Return 1 if should recognize C as "the help character". */
3428 if (EQ (c
, Vhelp_char
))
3430 for (tail
= Vhelp_event_list
; CONSP (tail
); tail
= XCDR (tail
))
3431 if (EQ (c
, XCAR (tail
)))
3436 /* Record the input event C in various ways. */
3444 if (CONSP (c
) && (EQ (XCAR (c
), Qhelp_echo
) || EQ (XCAR (c
), Qmouse_movement
)))
3446 /* To avoid filling recent_keys with help-echo and mouse-movement
3447 events, we filter out repeated help-echo events, only store the
3448 first and last in a series of mouse-movement events, and don't
3449 store repeated help-echo events which are only separated by
3450 mouse-movement events. */
3452 Lisp_Object ev1
, ev2
, ev3
;
3455 if ((ix1
= recent_keys_index
- 1) < 0)
3456 ix1
= NUM_RECENT_KEYS
- 1;
3457 ev1
= AREF (recent_keys
, ix1
);
3459 if ((ix2
= ix1
- 1) < 0)
3460 ix2
= NUM_RECENT_KEYS
- 1;
3461 ev2
= AREF (recent_keys
, ix2
);
3463 if ((ix3
= ix2
- 1) < 0)
3464 ix3
= NUM_RECENT_KEYS
- 1;
3465 ev3
= AREF (recent_keys
, ix3
);
3467 if (EQ (XCAR (c
), Qhelp_echo
))
3469 /* Don't record `help-echo' in recent_keys unless it shows some help
3470 message, and a different help than the previously recorded
3472 Lisp_Object help
, last_help
;
3474 help
= Fcar_safe (Fcdr_safe (XCDR (c
)));
3475 if (!STRINGP (help
))
3477 else if (CONSP (ev1
) && EQ (XCAR (ev1
), Qhelp_echo
)
3478 && (last_help
= Fcar_safe (Fcdr_safe (XCDR (ev1
))), EQ (last_help
, help
)))
3480 else if (CONSP (ev1
) && EQ (XCAR (ev1
), Qmouse_movement
)
3481 && CONSP (ev2
) && EQ (XCAR (ev2
), Qhelp_echo
)
3482 && (last_help
= Fcar_safe (Fcdr_safe (XCDR (ev2
))), EQ (last_help
, help
)))
3484 else if (CONSP (ev1
) && EQ (XCAR (ev1
), Qmouse_movement
)
3485 && CONSP (ev2
) && EQ (XCAR (ev2
), Qmouse_movement
)
3486 && CONSP (ev3
) && EQ (XCAR (ev3
), Qhelp_echo
)
3487 && (last_help
= Fcar_safe (Fcdr_safe (XCDR (ev3
))), EQ (last_help
, help
)))
3490 else if (EQ (XCAR (c
), Qmouse_movement
))
3492 /* Only record one pair of `mouse-movement' on a window in recent_keys.
3493 So additional mouse movement events replace the last element. */
3494 Lisp_Object last_window
, window
;
3496 window
= Fcar_safe (Fcar_safe (XCDR (c
)));
3497 if (CONSP (ev1
) && EQ (XCAR (ev1
), Qmouse_movement
)
3498 && (last_window
= Fcar_safe (Fcar_safe (XCDR (ev1
))), EQ (last_window
, window
))
3499 && CONSP (ev2
) && EQ (XCAR (ev2
), Qmouse_movement
)
3500 && (last_window
= Fcar_safe (Fcar_safe (XCDR (ev2
))), EQ (last_window
, window
)))
3502 ASET (recent_keys
, ix1
, c
);
3508 store_kbd_macro_char (c
);
3513 ASET (recent_keys
, recent_keys_index
, c
);
3514 if (++recent_keys_index
>= NUM_RECENT_KEYS
)
3515 recent_keys_index
= 0;
3517 else if (recorded
< 0)
3519 /* We need to remove one or two events from recent_keys.
3520 To do this, we simply put nil at those events and move the
3521 recent_keys_index backwards over those events. Usually,
3522 users will never see those nil events, as they will be
3523 overwritten by the command keys entered to see recent_keys
3526 while (recorded
++ < 0 && total_keys
> 0)
3528 if (total_keys
< NUM_RECENT_KEYS
)
3530 if (--recent_keys_index
< 0)
3531 recent_keys_index
= NUM_RECENT_KEYS
- 1;
3532 ASET (recent_keys
, recent_keys_index
, Qnil
);
3536 num_nonmacro_input_events
++;
3538 /* Write c to the dribble file. If c is a lispy event, write
3539 the event's symbol to the dribble file, in <brackets>. Bleaugh.
3540 If you, dear reader, have a better idea, you've got the source. :-) */
3546 if (XUINT (c
) < 0x100)
3547 putc (XINT (c
), dribble
);
3549 fprintf (dribble
, " 0x%x", (int) XUINT (c
));
3553 Lisp_Object dribblee
;
3555 /* If it's a structured event, take the event header. */
3556 dribblee
= EVENT_HEAD (c
);
3558 if (SYMBOLP (dribblee
))
3560 putc ('<', dribble
);
3561 fwrite (SDATA (SYMBOL_NAME (dribblee
)), sizeof (char),
3562 SBYTES (SYMBOL_NAME (dribblee
)),
3564 putc ('>', dribble
);
3577 struct buffer
*old
= current_buffer
;
3578 Fprinc (object
, Qnil
);
3579 set_buffer_internal (XBUFFER (Vstandard_output
));
3580 call0 (intern ("help-mode"));
3581 set_buffer_internal (old
);
3585 /* Copy out or in the info on where C-g should throw to.
3586 This is used when running Lisp code from within get_char,
3587 in case get_char is called recursively.
3588 See read_process_output. */
3594 bcopy (getcjmp
, temp
, sizeof getcjmp
);
3598 restore_getcjmp (temp
)
3601 bcopy (temp
, getcjmp
, sizeof getcjmp
);
3604 /* Low level keyboard/mouse input.
3605 kbd_buffer_store_event places events in kbd_buffer, and
3606 kbd_buffer_get_event retrieves them. */
3608 /* Return true if there are any events in the queue that read-char
3609 would return. If this returns false, a read-char would block. */
3611 readable_events (flags
)
3614 if (flags
& READABLE_EVENTS_DO_TIMERS_NOW
)
3617 /* If the buffer contains only FOCUS_IN_EVENT events, and
3618 READABLE_EVENTS_FILTER_EVENTS is set, report it as empty. */
3619 if (kbd_fetch_ptr
!= kbd_store_ptr
)
3621 if (flags
& (READABLE_EVENTS_FILTER_EVENTS
3622 #ifdef USE_TOOLKIT_SCROLL_BARS
3623 | READABLE_EVENTS_IGNORE_SQUEEZABLES
3627 struct input_event
*event
;
3629 event
= ((kbd_fetch_ptr
< kbd_buffer
+ KBD_BUFFER_SIZE
)
3636 #ifdef USE_TOOLKIT_SCROLL_BARS
3637 (flags
& READABLE_EVENTS_FILTER_EVENTS
) &&
3639 event
->kind
== FOCUS_IN_EVENT
)
3640 #ifdef USE_TOOLKIT_SCROLL_BARS
3641 && !((flags
& READABLE_EVENTS_IGNORE_SQUEEZABLES
)
3642 && event
->kind
== SCROLL_BAR_CLICK_EVENT
3643 && event
->part
== scroll_bar_handle
3644 && event
->modifiers
== 0)
3649 if (event
== kbd_buffer
+ KBD_BUFFER_SIZE
)
3652 while (event
!= kbd_store_ptr
);
3658 #if defined (HAVE_MOUSE) || defined (HAVE_GPM)
3659 if (!(flags
& READABLE_EVENTS_IGNORE_SQUEEZABLES
)
3660 && !NILP (do_mouse_tracking
) && some_mouse_moved ())
3665 if (current_kboard
->kbd_queue_has_data
)
3671 for (kb
= all_kboards
; kb
; kb
= kb
->next_kboard
)
3672 if (kb
->kbd_queue_has_data
)
3678 /* Set this for debugging, to have a way to get out */
3682 event_to_kboard (event
)
3683 struct input_event
*event
;
3686 frame
= event
->frame_or_window
;
3688 frame
= XCAR (frame
);
3689 else if (WINDOWP (frame
))
3690 frame
= WINDOW_FRAME (XWINDOW (frame
));
3692 /* There are still some events that don't set this field.
3693 For now, just ignore the problem.
3694 Also ignore dead frames here. */
3695 if (!FRAMEP (frame
) || !FRAME_LIVE_P (XFRAME (frame
)))
3698 return FRAME_KBOARD (XFRAME (frame
));
3702 Lisp_Object Vthrow_on_input
;
3704 /* Store an event obtained at interrupt level into kbd_buffer, fifo */
3707 kbd_buffer_store_event (event
)
3708 register struct input_event
*event
;
3710 kbd_buffer_store_event_hold (event
, 0);
3713 /* Store EVENT obtained at interrupt level into kbd_buffer, fifo.
3715 If HOLD_QUIT is 0, just stuff EVENT into the fifo.
3716 Else, if HOLD_QUIT.kind != NO_EVENT, discard EVENT.
3717 Else, if EVENT is a quit event, store the quit event
3718 in HOLD_QUIT, and return (thus ignoring further events).
3720 This is used in read_avail_input to postpone the processing
3721 of the quit event until all subsequent input events have been
3722 parsed (and discarded).
3726 kbd_buffer_store_event_hold (event
, hold_quit
)
3727 register struct input_event
*event
;
3728 struct input_event
*hold_quit
;
3730 if (event
->kind
== NO_EVENT
)
3733 if (hold_quit
&& hold_quit
->kind
!= NO_EVENT
)
3736 if (event
->kind
== ASCII_KEYSTROKE_EVENT
)
3738 register int c
= event
->code
& 0377;
3740 if (event
->modifiers
& ctrl_modifier
)
3741 c
= make_ctrl_char (c
);
3743 c
|= (event
->modifiers
3744 & (meta_modifier
| alt_modifier
3745 | hyper_modifier
| super_modifier
));
3749 KBOARD
*kb
= FRAME_KBOARD (XFRAME (event
->frame_or_window
));
3750 struct input_event
*sp
;
3752 if (single_kboard
&& kb
!= current_kboard
)
3755 = Fcons (make_lispy_switch_frame (event
->frame_or_window
),
3756 Fcons (make_number (c
), Qnil
));
3757 kb
->kbd_queue_has_data
= 1;
3758 for (sp
= kbd_fetch_ptr
; sp
!= kbd_store_ptr
; sp
++)
3760 if (sp
== kbd_buffer
+ KBD_BUFFER_SIZE
)
3763 if (event_to_kboard (sp
) == kb
)
3765 sp
->kind
= NO_EVENT
;
3766 sp
->frame_or_window
= Qnil
;
3775 bcopy (event
, (char *) hold_quit
, sizeof (*event
));
3779 /* If this results in a quit_char being returned to Emacs as
3780 input, set Vlast_event_frame properly. If this doesn't
3781 get returned to Emacs as an event, the next event read
3782 will set Vlast_event_frame again, so this is safe to do. */
3786 focus
= FRAME_FOCUS_FRAME (XFRAME (event
->frame_or_window
));
3788 focus
= event
->frame_or_window
;
3789 internal_last_event_frame
= focus
;
3790 Vlast_event_frame
= focus
;
3793 last_event_timestamp
= event
->timestamp
;
3794 handle_interrupt ();
3798 if (c
&& c
== stop_character
)
3804 /* Don't insert two BUFFER_SWITCH_EVENT's in a row.
3805 Just ignore the second one. */
3806 else if (event
->kind
== BUFFER_SWITCH_EVENT
3807 && kbd_fetch_ptr
!= kbd_store_ptr
3808 && ((kbd_store_ptr
== kbd_buffer
3809 ? kbd_buffer
+ KBD_BUFFER_SIZE
- 1
3810 : kbd_store_ptr
- 1)->kind
) == BUFFER_SWITCH_EVENT
)
3813 if (kbd_store_ptr
- kbd_buffer
== KBD_BUFFER_SIZE
)
3814 kbd_store_ptr
= kbd_buffer
;
3816 /* Don't let the very last slot in the buffer become full,
3817 since that would make the two pointers equal,
3818 and that is indistinguishable from an empty buffer.
3819 Discard the event if it would fill the last slot. */
3820 if (kbd_fetch_ptr
- 1 != kbd_store_ptr
)
3822 *kbd_store_ptr
= *event
;
3826 /* If we're inside while-no-input, and this event qualifies
3827 as input, set quit-flag to cause an interrupt. */
3828 if (!NILP (Vthrow_on_input
)
3829 && event
->kind
!= FOCUS_IN_EVENT
3830 && event
->kind
!= HELP_EVENT
3831 && event
->kind
!= DEICONIFY_EVENT
)
3833 Vquit_flag
= Vthrow_on_input
;
3834 /* If we're inside a function that wants immediate quits,
3836 if (immediate_quit
&& NILP (Vinhibit_quit
))
3846 /* Put an input event back in the head of the event queue. */
3849 kbd_buffer_unget_event (event
)
3850 register struct input_event
*event
;
3852 if (kbd_fetch_ptr
== kbd_buffer
)
3853 kbd_fetch_ptr
= kbd_buffer
+ KBD_BUFFER_SIZE
;
3855 /* Don't let the very last slot in the buffer become full, */
3856 if (kbd_fetch_ptr
- 1 != kbd_store_ptr
)
3859 *kbd_fetch_ptr
= *event
;
3864 /* Generate HELP_EVENT input_events in BUFP which has room for
3865 SIZE events. If there's not enough room in BUFP, ignore this
3868 HELP is the help form.
3870 FRAME is the frame on which the help is generated. OBJECT is the
3871 Lisp object where the help was found (a buffer, a string, an
3872 overlay, or nil if neither from a string nor from a buffer. POS is
3873 the position within OBJECT where the help was found.
3875 Value is the number of input_events generated. */
3878 gen_help_event (help
, frame
, window
, object
, pos
)
3879 Lisp_Object help
, frame
, object
, window
;
3882 struct input_event event
;
3886 event
.kind
= HELP_EVENT
;
3887 event
.frame_or_window
= frame
;
3889 event
.x
= WINDOWP (window
) ? window
: frame
;
3892 kbd_buffer_store_event (&event
);
3896 /* Store HELP_EVENTs for HELP on FRAME in the input queue. */
3899 kbd_buffer_store_help_event (frame
, help
)
3900 Lisp_Object frame
, help
;
3902 struct input_event event
;
3904 event
.kind
= HELP_EVENT
;
3905 event
.frame_or_window
= frame
;
3910 kbd_buffer_store_event (&event
);
3914 /* Discard any mouse events in the event buffer by setting them to
3917 discard_mouse_events ()
3919 struct input_event
*sp
;
3920 for (sp
= kbd_fetch_ptr
; sp
!= kbd_store_ptr
; sp
++)
3922 if (sp
== kbd_buffer
+ KBD_BUFFER_SIZE
)
3925 if (sp
->kind
== MOUSE_CLICK_EVENT
3926 || sp
->kind
== WHEEL_EVENT
3927 || sp
->kind
== HORIZ_WHEEL_EVENT
3929 || sp
->kind
== GPM_CLICK_EVENT
3931 || sp
->kind
== SCROLL_BAR_CLICK_EVENT
)
3933 sp
->kind
= NO_EVENT
;
3939 /* Return non-zero if there are any real events waiting in the event
3940 buffer, not counting `NO_EVENT's.
3942 If DISCARD is non-zero, discard NO_EVENT events at the front of
3943 the input queue, possibly leaving the input queue empty if there
3944 are no real input events. */
3947 kbd_buffer_events_waiting (discard
)
3950 struct input_event
*sp
;
3952 for (sp
= kbd_fetch_ptr
;
3953 sp
!= kbd_store_ptr
&& sp
->kind
== NO_EVENT
;
3956 if (sp
== kbd_buffer
+ KBD_BUFFER_SIZE
)
3963 return sp
!= kbd_store_ptr
&& sp
->kind
!= NO_EVENT
;
3967 /* Clear input event EVENT. */
3971 struct input_event
*event
;
3973 event
->kind
= NO_EVENT
;
3977 /* Read one event from the event buffer, waiting if necessary.
3978 The value is a Lisp object representing the event.
3979 The value is nil for an event that should be ignored,
3980 or that was handled here.
3981 We always read and discard one event. */
3984 kbd_buffer_get_event (kbp
, used_mouse_menu
, end_time
)
3986 int *used_mouse_menu
;
3987 EMACS_TIME
*end_time
;
3993 /* In case we are running as a daemon, only do this before
3994 detaching from the terminal. */
3995 || (IS_DAEMON
&& daemon_pipe
[1] >= 0))
3999 *kbp
= current_kboard
;
4003 /* Wait until there is input available. */
4006 /* Break loop if there's an unread command event. Needed in
4007 moused window autoselection which uses a timer to insert such
4009 if (CONSP (Vunread_command_events
))
4012 if (kbd_fetch_ptr
!= kbd_store_ptr
)
4014 #if defined (HAVE_MOUSE) || defined (HAVE_GPM)
4015 if (!NILP (do_mouse_tracking
) && some_mouse_moved ())
4019 /* If the quit flag is set, then read_char will return
4020 quit_char, so that counts as "available input." */
4021 if (!NILP (Vquit_flag
))
4022 quit_throw_to_read_char ();
4024 /* One way or another, wait until input is available; then, if
4025 interrupt handlers have not read it, read it now. */
4027 /* Note SIGIO has been undef'd if FIONREAD is missing. */
4031 if (kbd_fetch_ptr
!= kbd_store_ptr
)
4033 #if defined (HAVE_MOUSE) || defined (HAVE_GPM)
4034 if (!NILP (do_mouse_tracking
) && some_mouse_moved ())
4039 EMACS_TIME duration
;
4040 EMACS_GET_TIME (duration
);
4041 if (EMACS_TIME_GE (duration
, *end_time
))
4042 return Qnil
; /* finished waiting */
4045 EMACS_SUB_TIME (duration
, *end_time
, duration
);
4046 wait_reading_process_output (EMACS_SECS (duration
),
4047 EMACS_USECS (duration
),
4048 -1, 1, Qnil
, NULL
, 0);
4052 wait_reading_process_output (0, 0, -1, 1, Qnil
, NULL
, 0);
4054 if (!interrupt_input
&& kbd_fetch_ptr
== kbd_store_ptr
)
4055 /* Pass 1 for EXPECT since we just waited to have input. */
4056 read_avail_input (1);
4059 if (CONSP (Vunread_command_events
))
4062 first
= XCAR (Vunread_command_events
);
4063 Vunread_command_events
= XCDR (Vunread_command_events
);
4064 *kbp
= current_kboard
;
4068 /* At this point, we know that there is a readable event available
4069 somewhere. If the event queue is empty, then there must be a
4070 mouse movement enabled and available. */
4071 if (kbd_fetch_ptr
!= kbd_store_ptr
)
4073 struct input_event
*event
;
4075 event
= ((kbd_fetch_ptr
< kbd_buffer
+ KBD_BUFFER_SIZE
)
4079 last_event_timestamp
= event
->timestamp
;
4081 *kbp
= event_to_kboard (event
);
4083 *kbp
= current_kboard
; /* Better than returning null ptr? */
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) \
4111 || defined (HAVE_NS)
4112 else if (event
->kind
== DELETE_WINDOW_EVENT
)
4114 /* Make an event (delete-frame (FRAME)). */
4115 obj
= Fcons (event
->frame_or_window
, Qnil
);
4116 obj
= Fcons (Qdelete_frame
, Fcons (obj
, Qnil
));
4117 kbd_fetch_ptr
= event
+ 1;
4120 #if defined (HAVE_X11) || defined (HAVE_NTGUI) \
4121 || defined (HAVE_NS)
4122 else if (event
->kind
== ICONIFY_EVENT
)
4124 /* Make an event (iconify-frame (FRAME)). */
4125 obj
= Fcons (event
->frame_or_window
, Qnil
);
4126 obj
= Fcons (Qiconify_frame
, Fcons (obj
, Qnil
));
4127 kbd_fetch_ptr
= event
+ 1;
4129 else if (event
->kind
== DEICONIFY_EVENT
)
4131 /* Make an event (make-frame-visible (FRAME)). */
4132 obj
= Fcons (event
->frame_or_window
, Qnil
);
4133 obj
= Fcons (Qmake_frame_visible
, Fcons (obj
, Qnil
));
4134 kbd_fetch_ptr
= event
+ 1;
4137 else if (event
->kind
== BUFFER_SWITCH_EVENT
)
4139 /* The value doesn't matter here; only the type is tested. */
4140 XSETBUFFER (obj
, current_buffer
);
4141 kbd_fetch_ptr
= event
+ 1;
4143 #if defined (USE_X_TOOLKIT) || defined (HAVE_NTGUI) \
4144 || defined(HAVE_NS) || defined (USE_GTK)
4145 else if (event
->kind
== MENU_BAR_ACTIVATE_EVENT
)
4147 kbd_fetch_ptr
= event
+ 1;
4148 input_pending
= readable_events (0);
4149 if (FRAME_LIVE_P (XFRAME (event
->frame_or_window
)))
4150 x_activate_menubar (XFRAME (event
->frame_or_window
));
4153 #if defined (WINDOWSNT)
4154 else if (event
->kind
== LANGUAGE_CHANGE_EVENT
)
4156 /* Make an event (language-change (FRAME CHARSET LCID)). */
4157 obj
= Fcons (event
->frame_or_window
, Qnil
);
4158 obj
= Fcons (Qlanguage_change
, Fcons (obj
, Qnil
));
4159 kbd_fetch_ptr
= event
+ 1;
4162 else if (event
->kind
== SAVE_SESSION_EVENT
)
4164 obj
= Fcons (Qsave_session
, Qnil
);
4165 kbd_fetch_ptr
= event
+ 1;
4167 /* Just discard these, by returning nil.
4168 With MULTI_KBOARD, these events are used as placeholders
4169 when we need to randomly delete events from the queue.
4170 (They shouldn't otherwise be found in the buffer,
4171 but on some machines it appears they do show up
4172 even without MULTI_KBOARD.) */
4173 /* On Windows NT/9X, NO_EVENT is used to delete extraneous
4174 mouse events during a popup-menu call. */
4175 else if (event
->kind
== NO_EVENT
)
4176 kbd_fetch_ptr
= event
+ 1;
4177 else if (event
->kind
== HELP_EVENT
)
4179 Lisp_Object object
, position
, help
, frame
, window
;
4181 frame
= event
->frame_or_window
;
4182 object
= event
->arg
;
4183 position
= make_number (event
->code
);
4186 clear_event (event
);
4188 kbd_fetch_ptr
= event
+ 1;
4189 if (!WINDOWP (window
))
4191 obj
= Fcons (Qhelp_echo
,
4192 list5 (frame
, help
, window
, object
, position
));
4194 else if (event
->kind
== FOCUS_IN_EVENT
)
4196 /* Notification of a FocusIn event. The frame receiving the
4197 focus is in event->frame_or_window. Generate a
4198 switch-frame event if necessary. */
4199 Lisp_Object frame
, focus
;
4201 frame
= event
->frame_or_window
;
4202 focus
= FRAME_FOCUS_FRAME (XFRAME (frame
));
4206 if (!EQ (frame
, internal_last_event_frame
)
4207 && !EQ (frame
, selected_frame
))
4208 obj
= make_lispy_switch_frame (frame
);
4209 internal_last_event_frame
= frame
;
4210 kbd_fetch_ptr
= event
+ 1;
4213 else if (event
->kind
== DBUS_EVENT
)
4215 obj
= make_lispy_event (event
);
4216 kbd_fetch_ptr
= event
+ 1;
4221 /* If this event is on a different frame, return a switch-frame this
4222 time, and leave the event in the queue for next time. */
4226 frame
= event
->frame_or_window
;
4228 frame
= XCAR (frame
);
4229 else if (WINDOWP (frame
))
4230 frame
= WINDOW_FRAME (XWINDOW (frame
));
4232 focus
= FRAME_FOCUS_FRAME (XFRAME (frame
));
4236 if (! EQ (frame
, internal_last_event_frame
)
4237 && !EQ (frame
, selected_frame
))
4238 obj
= make_lispy_switch_frame (frame
);
4239 internal_last_event_frame
= frame
;
4241 /* If we didn't decide to make a switch-frame event, go ahead
4242 and build a real event from the queue entry. */
4246 obj
= make_lispy_event (event
);
4248 #if defined (USE_X_TOOLKIT) || defined (HAVE_NTGUI) \
4249 || defined(HAVE_NS) || defined (USE_GTK)
4250 /* If this was a menu selection, then set the flag to inhibit
4251 writing to last_nonmenu_event. Don't do this if the event
4252 we're returning is (menu-bar), though; that indicates the
4253 beginning of the menu sequence, and we might as well leave
4254 that as the `event with parameters' for this selection. */
4256 && !EQ (event
->frame_or_window
, event
->arg
)
4257 && (event
->kind
== MENU_BAR_EVENT
4258 || event
->kind
== TOOL_BAR_EVENT
))
4259 *used_mouse_menu
= 1;
4262 /* Wipe out this event, to catch bugs. */
4263 clear_event (event
);
4264 kbd_fetch_ptr
= event
+ 1;
4268 #if defined (HAVE_MOUSE) || defined (HAVE_GPM)
4269 /* Try generating a mouse motion event. */
4270 else if (!NILP (do_mouse_tracking
) && some_mouse_moved ())
4272 FRAME_PTR f
= some_mouse_moved ();
4273 Lisp_Object bar_window
;
4274 enum scroll_bar_part part
;
4278 *kbp
= current_kboard
;
4279 /* Note that this uses F to determine which terminal to look at.
4280 If there is no valid info, it does not store anything
4281 so x remains nil. */
4284 /* XXX Can f or mouse_position_hook be NULL here? */
4285 if (f
&& FRAME_TERMINAL (f
)->mouse_position_hook
)
4286 (*FRAME_TERMINAL (f
)->mouse_position_hook
) (&f
, 0, &bar_window
,
4287 &part
, &x
, &y
, &time
);
4291 /* Decide if we should generate a switch-frame event. Don't
4292 generate switch-frame events for motion outside of all Emacs
4298 frame
= FRAME_FOCUS_FRAME (f
);
4300 XSETFRAME (frame
, f
);
4302 if (! EQ (frame
, internal_last_event_frame
)
4303 && !EQ (frame
, selected_frame
))
4304 obj
= make_lispy_switch_frame (frame
);
4305 internal_last_event_frame
= frame
;
4308 /* If we didn't decide to make a switch-frame event, go ahead and
4309 return a mouse-motion event. */
4310 if (!NILP (x
) && NILP (obj
))
4311 obj
= make_lispy_movement (f
, bar_window
, part
, x
, y
, time
);
4313 #endif /* HAVE_MOUSE || HAVE GPM */
4315 /* We were promised by the above while loop that there was
4316 something for us to read! */
4319 input_pending
= readable_events (0);
4321 Vlast_event_frame
= internal_last_event_frame
;
4326 /* Process any events that are not user-visible,
4327 then return, without reading any user-visible events. */
4330 swallow_events (do_display
)
4335 while (kbd_fetch_ptr
!= kbd_store_ptr
)
4337 struct input_event
*event
;
4339 event
= ((kbd_fetch_ptr
< kbd_buffer
+ KBD_BUFFER_SIZE
)
4343 last_event_timestamp
= event
->timestamp
;
4345 /* These two kinds of events get special handling
4346 and don't actually appear to the command loop. */
4347 if (event
->kind
== SELECTION_REQUEST_EVENT
4348 || event
->kind
== SELECTION_CLEAR_EVENT
)
4351 struct input_event copy
;
4353 /* Remove it from the buffer before processing it,
4354 since otherwise swallow_events called recursively could see it
4355 and process it again. */
4357 kbd_fetch_ptr
= event
+ 1;
4358 input_pending
= readable_events (0);
4359 x_handle_selection_event (©
);
4361 /* We're getting selection request events, but we don't have
4370 old_timers_run
= timers_run
;
4371 get_input_pending (&input_pending
, READABLE_EVENTS_DO_TIMERS_NOW
);
4373 if (timers_run
!= old_timers_run
&& do_display
)
4374 redisplay_preserve_echo_area (7);
4377 /* Record the start of when Emacs is idle,
4378 for the sake of running idle-time timers. */
4385 /* If we are already in the idle state, do nothing. */
4386 if (! EMACS_TIME_NEG_P (timer_idleness_start_time
))
4389 EMACS_GET_TIME (timer_idleness_start_time
);
4391 timer_last_idleness_start_time
= timer_idleness_start_time
;
4393 /* Mark all idle-time timers as once again candidates for running. */
4394 for (timers
= Vtimer_idle_list
; CONSP (timers
); timers
= XCDR (timers
))
4398 timer
= XCAR (timers
);
4400 if (!VECTORP (timer
) || XVECTOR (timer
)->size
!= 8)
4402 XVECTOR (timer
)->contents
[0] = Qnil
;
4406 /* Record that Emacs is no longer idle, so stop running idle-time timers. */
4411 EMACS_SET_SECS_USECS (timer_idleness_start_time
, -1, -1);
4414 /* Resume idle timer from last idle start time. */
4417 timer_resume_idle ()
4419 if (! EMACS_TIME_NEG_P (timer_idleness_start_time
))
4422 timer_idleness_start_time
= timer_last_idleness_start_time
;
4425 /* This is only for debugging. */
4426 struct input_event last_timer_event
;
4428 /* List of elisp functions to call, delayed because they were generated in
4429 a context where Elisp could not be safely run (e.g. redisplay, signal,
4430 ...). Each lement has the form (FUN . ARGS). */
4431 Lisp_Object pending_funcalls
;
4433 extern Lisp_Object Qapply
;
4435 /* Check whether a timer has fired. To prevent larger problems we simply
4436 disregard elements that are not proper timers. Do not make a circular
4437 timer list for the time being.
4439 Returns the number of seconds to wait until the next timer fires. If a
4440 timer is triggering now, return zero seconds.
4441 If no timer is active, return -1 seconds.
4443 If a timer is ripe, we run it, with quitting turned off.
4445 DO_IT_NOW is now ignored. It used to mean that we should
4446 run the timer directly instead of queueing a timer-event.
4447 Now we always run timers directly. */
4450 timer_check (do_it_now
)
4453 EMACS_TIME nexttime
;
4454 EMACS_TIME now
, idleness_now
;
4455 Lisp_Object timers
, idle_timers
, chosen_timer
;
4456 struct gcpro gcpro1
, gcpro2
, gcpro3
;
4458 EMACS_SET_SECS (nexttime
, -1);
4459 EMACS_SET_USECS (nexttime
, -1);
4461 /* Always consider the ordinary timers. */
4462 timers
= Vtimer_list
;
4463 /* Consider the idle timers only if Emacs is idle. */
4464 if (! EMACS_TIME_NEG_P (timer_idleness_start_time
))
4465 idle_timers
= Vtimer_idle_list
;
4468 chosen_timer
= Qnil
;
4469 GCPRO3 (timers
, idle_timers
, chosen_timer
);
4471 /* First run the code that was delayed. */
4472 while (CONSP (pending_funcalls
))
4474 Lisp_Object funcall
= XCAR (pending_funcalls
);
4475 pending_funcalls
= XCDR (pending_funcalls
);
4476 safe_call2 (Qapply
, XCAR (funcall
), XCDR (funcall
));
4479 if (CONSP (timers
) || CONSP (idle_timers
))
4481 EMACS_GET_TIME (now
);
4482 if (! EMACS_TIME_NEG_P (timer_idleness_start_time
))
4483 EMACS_SUB_TIME (idleness_now
, now
, timer_idleness_start_time
);
4486 while (CONSP (timers
) || CONSP (idle_timers
))
4488 Lisp_Object
*vector
;
4489 Lisp_Object timer
= Qnil
, idle_timer
= Qnil
;
4490 EMACS_TIME timer_time
, idle_timer_time
;
4491 EMACS_TIME difference
, timer_difference
, idle_timer_difference
;
4493 /* Skip past invalid timers and timers already handled. */
4496 timer
= XCAR (timers
);
4497 if (!VECTORP (timer
) || XVECTOR (timer
)->size
!= 8)
4499 timers
= XCDR (timers
);
4502 vector
= XVECTOR (timer
)->contents
;
4504 if (!INTEGERP (vector
[1]) || !INTEGERP (vector
[2])
4505 || !INTEGERP (vector
[3])
4506 || ! NILP (vector
[0]))
4508 timers
= XCDR (timers
);
4512 if (!NILP (idle_timers
))
4514 timer
= XCAR (idle_timers
);
4515 if (!VECTORP (timer
) || XVECTOR (timer
)->size
!= 8)
4517 idle_timers
= XCDR (idle_timers
);
4520 vector
= XVECTOR (timer
)->contents
;
4522 if (!INTEGERP (vector
[1]) || !INTEGERP (vector
[2])
4523 || !INTEGERP (vector
[3])
4524 || ! NILP (vector
[0]))
4526 idle_timers
= XCDR (idle_timers
);
4531 /* Set TIMER, TIMER_TIME and TIMER_DIFFERENCE
4532 based on the next ordinary timer.
4533 TIMER_DIFFERENCE is the distance in time from NOW to when
4534 this timer becomes ripe (negative if it's already ripe). */
4537 timer
= XCAR (timers
);
4538 vector
= XVECTOR (timer
)->contents
;
4539 EMACS_SET_SECS (timer_time
,
4540 (XINT (vector
[1]) << 16) | (XINT (vector
[2])));
4541 EMACS_SET_USECS (timer_time
, XINT (vector
[3]));
4542 EMACS_SUB_TIME (timer_difference
, timer_time
, now
);
4545 /* Set IDLE_TIMER, IDLE_TIMER_TIME and IDLE_TIMER_DIFFERENCE
4546 based on the next idle timer. */
4547 if (!NILP (idle_timers
))
4549 idle_timer
= XCAR (idle_timers
);
4550 vector
= XVECTOR (idle_timer
)->contents
;
4551 EMACS_SET_SECS (idle_timer_time
,
4552 (XINT (vector
[1]) << 16) | (XINT (vector
[2])));
4553 EMACS_SET_USECS (idle_timer_time
, XINT (vector
[3]));
4554 EMACS_SUB_TIME (idle_timer_difference
, idle_timer_time
, idleness_now
);
4557 /* Decide which timer is the next timer,
4558 and set CHOSEN_TIMER, VECTOR and DIFFERENCE accordingly.
4559 Also step down the list where we found that timer. */
4561 if (! NILP (timers
) && ! NILP (idle_timers
))
4564 EMACS_SUB_TIME (temp
, timer_difference
, idle_timer_difference
);
4565 if (EMACS_TIME_NEG_P (temp
))
4567 chosen_timer
= timer
;
4568 timers
= XCDR (timers
);
4569 difference
= timer_difference
;
4573 chosen_timer
= idle_timer
;
4574 idle_timers
= XCDR (idle_timers
);
4575 difference
= idle_timer_difference
;
4578 else if (! NILP (timers
))
4580 chosen_timer
= timer
;
4581 timers
= XCDR (timers
);
4582 difference
= timer_difference
;
4586 chosen_timer
= idle_timer
;
4587 idle_timers
= XCDR (idle_timers
);
4588 difference
= idle_timer_difference
;
4590 vector
= XVECTOR (chosen_timer
)->contents
;
4592 /* If timer is ripe, run it if it hasn't been run. */
4593 if (EMACS_TIME_NEG_P (difference
)
4594 || (EMACS_SECS (difference
) == 0
4595 && EMACS_USECS (difference
) == 0))
4597 if (NILP (vector
[0]))
4599 int count
= SPECPDL_INDEX ();
4600 Lisp_Object old_deactivate_mark
= Vdeactivate_mark
;
4602 /* Mark the timer as triggered to prevent problems if the lisp
4603 code fails to reschedule it right. */
4606 specbind (Qinhibit_quit
, Qt
);
4608 call1 (Qtimer_event_handler
, chosen_timer
);
4609 Vdeactivate_mark
= old_deactivate_mark
;
4611 unbind_to (count
, Qnil
);
4613 /* Since we have handled the event,
4614 we don't need to tell the caller to wake up and do it. */
4618 /* When we encounter a timer that is still waiting,
4619 return the amount of time to wait before it is ripe. */
4626 /* No timers are pending in the future. */
4627 /* Return 0 if we generated an event, and -1 if not. */
4632 DEFUN ("current-idle-time", Fcurrent_idle_time
, Scurrent_idle_time
, 0, 0, 0,
4633 doc
: /* Return the current length of Emacs idleness, or nil.
4634 The value when Emacs is idle is a list of three integers. The first has the
4635 most significant 16 bits of the seconds, while the second has the
4636 least significant 16 bits. The third integer gives the microsecond
4639 The value when Emacs is not idle is nil.
4641 The microsecond count is zero on systems that do not provide
4642 resolution finer than a second. */)
4645 if (! EMACS_TIME_NEG_P (timer_idleness_start_time
))
4647 EMACS_TIME now
, idleness_now
;
4649 EMACS_GET_TIME (now
);
4650 EMACS_SUB_TIME (idleness_now
, now
, timer_idleness_start_time
);
4652 return list3 (make_number ((EMACS_SECS (idleness_now
) >> 16) & 0xffff),
4653 make_number ((EMACS_SECS (idleness_now
) >> 0) & 0xffff),
4654 make_number (EMACS_USECS (idleness_now
)));
4660 /* Caches for modify_event_symbol. */
4661 static Lisp_Object accent_key_syms
;
4662 static Lisp_Object func_key_syms
;
4663 static Lisp_Object mouse_syms
;
4664 static Lisp_Object wheel_syms
;
4665 static Lisp_Object drag_n_drop_syms
;
4667 /* This is a list of keysym codes for special "accent" characters.
4668 It parallels lispy_accent_keys. */
4670 static int lispy_accent_codes
[] =
4672 #ifdef XK_dead_circumflex
4677 #ifdef XK_dead_grave
4682 #ifdef XK_dead_tilde
4687 #ifdef XK_dead_diaeresis
4692 #ifdef XK_dead_macron
4697 #ifdef XK_dead_degree
4702 #ifdef XK_dead_acute
4707 #ifdef XK_dead_cedilla
4712 #ifdef XK_dead_breve
4717 #ifdef XK_dead_ogonek
4722 #ifdef XK_dead_caron
4727 #ifdef XK_dead_doubleacute
4728 XK_dead_doubleacute
,
4732 #ifdef XK_dead_abovedot
4737 #ifdef XK_dead_abovering
4747 #ifdef XK_dead_belowdot
4752 #ifdef XK_dead_voiced_sound
4753 XK_dead_voiced_sound
,
4757 #ifdef XK_dead_semivoiced_sound
4758 XK_dead_semivoiced_sound
,
4774 /* This is a list of Lisp names for special "accent" characters.
4775 It parallels lispy_accent_codes. */
4777 static char *lispy_accent_keys
[] =
4795 "dead-voiced-sound",
4796 "dead-semivoiced-sound",
4802 #define FUNCTION_KEY_OFFSET 0x0
4804 char *lispy_function_keys
[] =
4808 0, /* VK_LBUTTON 0x01 */
4809 0, /* VK_RBUTTON 0x02 */
4810 "cancel", /* VK_CANCEL 0x03 */
4811 0, /* VK_MBUTTON 0x04 */
4813 0, 0, 0, /* 0x05 .. 0x07 */
4815 "backspace", /* VK_BACK 0x08 */
4816 "tab", /* VK_TAB 0x09 */
4818 0, 0, /* 0x0A .. 0x0B */
4820 "clear", /* VK_CLEAR 0x0C */
4821 "return", /* VK_RETURN 0x0D */
4823 0, 0, /* 0x0E .. 0x0F */
4825 0, /* VK_SHIFT 0x10 */
4826 0, /* VK_CONTROL 0x11 */
4827 0, /* VK_MENU 0x12 */
4828 "pause", /* VK_PAUSE 0x13 */
4829 "capslock", /* VK_CAPITAL 0x14 */
4830 "kana", /* VK_KANA/VK_HANGUL 0x15 */
4832 "junja", /* VK_JUNJA 0x17 */
4833 "final", /* VK_FINAL 0x18 */
4834 "kanji", /* VK_KANJI/VK_HANJA 0x19 */
4836 "escape", /* VK_ESCAPE 0x1B */
4837 "convert", /* VK_CONVERT 0x1C */
4838 "non-convert", /* VK_NONCONVERT 0x1D */
4839 "accept", /* VK_ACCEPT 0x1E */
4840 "mode-change", /* VK_MODECHANGE 0x1F */
4841 0, /* VK_SPACE 0x20 */
4842 "prior", /* VK_PRIOR 0x21 */
4843 "next", /* VK_NEXT 0x22 */
4844 "end", /* VK_END 0x23 */
4845 "home", /* VK_HOME 0x24 */
4846 "left", /* VK_LEFT 0x25 */
4847 "up", /* VK_UP 0x26 */
4848 "right", /* VK_RIGHT 0x27 */
4849 "down", /* VK_DOWN 0x28 */
4850 "select", /* VK_SELECT 0x29 */
4851 "print", /* VK_PRINT 0x2A */
4852 "execute", /* VK_EXECUTE 0x2B */
4853 "snapshot", /* VK_SNAPSHOT 0x2C */
4854 "insert", /* VK_INSERT 0x2D */
4855 "delete", /* VK_DELETE 0x2E */
4856 "help", /* VK_HELP 0x2F */
4858 /* VK_0 thru VK_9 are the same as ASCII '0' thru '9' (0x30 - 0x39) */
4860 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
4862 0, 0, 0, 0, 0, 0, 0, /* 0x3A .. 0x40 */
4864 /* VK_A thru VK_Z are the same as ASCII 'A' thru 'Z' (0x41 - 0x5A) */
4866 0, 0, 0, 0, 0, 0, 0, 0, 0,
4867 0, 0, 0, 0, 0, 0, 0, 0, 0,
4868 0, 0, 0, 0, 0, 0, 0, 0,
4870 "lwindow", /* VK_LWIN 0x5B */
4871 "rwindow", /* VK_RWIN 0x5C */
4872 "apps", /* VK_APPS 0x5D */
4875 "kp-0", /* VK_NUMPAD0 0x60 */
4876 "kp-1", /* VK_NUMPAD1 0x61 */
4877 "kp-2", /* VK_NUMPAD2 0x62 */
4878 "kp-3", /* VK_NUMPAD3 0x63 */
4879 "kp-4", /* VK_NUMPAD4 0x64 */
4880 "kp-5", /* VK_NUMPAD5 0x65 */
4881 "kp-6", /* VK_NUMPAD6 0x66 */
4882 "kp-7", /* VK_NUMPAD7 0x67 */
4883 "kp-8", /* VK_NUMPAD8 0x68 */
4884 "kp-9", /* VK_NUMPAD9 0x69 */
4885 "kp-multiply", /* VK_MULTIPLY 0x6A */
4886 "kp-add", /* VK_ADD 0x6B */
4887 "kp-separator", /* VK_SEPARATOR 0x6C */
4888 "kp-subtract", /* VK_SUBTRACT 0x6D */
4889 "kp-decimal", /* VK_DECIMAL 0x6E */
4890 "kp-divide", /* VK_DIVIDE 0x6F */
4891 "f1", /* VK_F1 0x70 */
4892 "f2", /* VK_F2 0x71 */
4893 "f3", /* VK_F3 0x72 */
4894 "f4", /* VK_F4 0x73 */
4895 "f5", /* VK_F5 0x74 */
4896 "f6", /* VK_F6 0x75 */
4897 "f7", /* VK_F7 0x76 */
4898 "f8", /* VK_F8 0x77 */
4899 "f9", /* VK_F9 0x78 */
4900 "f10", /* VK_F10 0x79 */
4901 "f11", /* VK_F11 0x7A */
4902 "f12", /* VK_F12 0x7B */
4903 "f13", /* VK_F13 0x7C */
4904 "f14", /* VK_F14 0x7D */
4905 "f15", /* VK_F15 0x7E */
4906 "f16", /* VK_F16 0x7F */
4907 "f17", /* VK_F17 0x80 */
4908 "f18", /* VK_F18 0x81 */
4909 "f19", /* VK_F19 0x82 */
4910 "f20", /* VK_F20 0x83 */
4911 "f21", /* VK_F21 0x84 */
4912 "f22", /* VK_F22 0x85 */
4913 "f23", /* VK_F23 0x86 */
4914 "f24", /* VK_F24 0x87 */
4916 0, 0, 0, 0, /* 0x88 .. 0x8B */
4917 0, 0, 0, 0, /* 0x8C .. 0x8F */
4919 "kp-numlock", /* VK_NUMLOCK 0x90 */
4920 "scroll", /* VK_SCROLL 0x91 */
4921 /* Not sure where the following block comes from.
4922 Windows headers have NEC and Fujitsu specific keys in
4923 this block, but nothing generic. */
4924 "kp-space", /* VK_NUMPAD_CLEAR 0x92 */
4925 "kp-enter", /* VK_NUMPAD_ENTER 0x93 */
4926 "kp-prior", /* VK_NUMPAD_PRIOR 0x94 */
4927 "kp-next", /* VK_NUMPAD_NEXT 0x95 */
4928 "kp-end", /* VK_NUMPAD_END 0x96 */
4929 "kp-home", /* VK_NUMPAD_HOME 0x97 */
4930 "kp-left", /* VK_NUMPAD_LEFT 0x98 */
4931 "kp-up", /* VK_NUMPAD_UP 0x99 */
4932 "kp-right", /* VK_NUMPAD_RIGHT 0x9A */
4933 "kp-down", /* VK_NUMPAD_DOWN 0x9B */
4934 "kp-insert", /* VK_NUMPAD_INSERT 0x9C */
4935 "kp-delete", /* VK_NUMPAD_DELETE 0x9D */
4937 0, 0, /* 0x9E .. 0x9F */
4940 * VK_L* & VK_R* - left and right Alt, Ctrl and Shift virtual keys.
4941 * Used only as parameters to GetAsyncKeyState and GetKeyState.
4942 * No other API or message will distinguish left and right keys this way.
4947 /* Multimedia keys. These are handled as WM_APPCOMMAND, which allows us
4948 to enable them selectively, and gives access to a few more functions.
4949 See lispy_multimedia_keys below. */
4950 0, 0, 0, 0, 0, 0, 0, /* 0xA6 .. 0xAC Browser */
4951 0, 0, 0, /* 0xAD .. 0xAF Volume */
4952 0, 0, 0, 0, /* 0xB0 .. 0xB3 Media */
4953 0, 0, 0, 0, /* 0xB4 .. 0xB7 Apps */
4955 /* 0xB8 .. 0xC0 "OEM" keys - all seem to be punctuation. */
4956 0, 0, 0, 0, 0, 0, 0, 0, 0,
4958 /* 0xC1 - 0xDA unallocated, 0xDB-0xDF more OEM keys */
4959 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
4960 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
4963 "ax", /* VK_OEM_AX 0xE1 */
4964 0, /* VK_OEM_102 0xE2 */
4965 "ico-help", /* VK_ICO_HELP 0xE3 */
4966 "ico-00", /* VK_ICO_00 0xE4 */
4967 0, /* VK_PROCESSKEY 0xE5 */
4968 "ico-clear", /* VK_ICO_CLEAR 0xE6 */
4969 "packet", /* VK_PACKET 0xE7 */
4971 "reset", /* VK_OEM_RESET 0xE9 */
4972 "jump", /* VK_OEM_JUMP 0xEA */
4973 "oem-pa1", /* VK_OEM_PA1 0xEB */
4974 "oem-pa2", /* VK_OEM_PA2 0xEC */
4975 "oem-pa3", /* VK_OEM_PA3 0xED */
4976 "wsctrl", /* VK_OEM_WSCTRL 0xEE */
4977 "cusel", /* VK_OEM_CUSEL 0xEF */
4978 "oem-attn", /* VK_OEM_ATTN 0xF0 */
4979 "finish", /* VK_OEM_FINISH 0xF1 */
4980 "copy", /* VK_OEM_COPY 0xF2 */
4981 "auto", /* VK_OEM_AUTO 0xF3 */
4982 "enlw", /* VK_OEM_ENLW 0xF4 */
4983 "backtab", /* VK_OEM_BACKTAB 0xF5 */
4984 "attn", /* VK_ATTN 0xF6 */
4985 "crsel", /* VK_CRSEL 0xF7 */
4986 "exsel", /* VK_EXSEL 0xF8 */
4987 "ereof", /* VK_EREOF 0xF9 */
4988 "play", /* VK_PLAY 0xFA */
4989 "zoom", /* VK_ZOOM 0xFB */
4990 "noname", /* VK_NONAME 0xFC */
4991 "pa1", /* VK_PA1 0xFD */
4992 "oem_clear", /* VK_OEM_CLEAR 0xFE */
4996 /* Some of these duplicate the "Media keys" on newer keyboards,
4997 but they are delivered to the application in a different way. */
4998 static char *lispy_multimedia_keys
[] =
5006 "browser-favorites",
5043 "toggle-dictate-command",
5049 "media-fast-forward",
5052 "media-channel-down"
5055 #else /* not HAVE_NTGUI */
5057 /* This should be dealt with in XTread_socket now, and that doesn't
5058 depend on the client system having the Kana syms defined. See also
5059 the XK_kana_A case below. */
5062 static char *lispy_kana_keys
[] =
5064 /* X Keysym value */
5065 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, /* 0x400 .. 0x40f */
5066 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, /* 0x410 .. 0x41f */
5067 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, /* 0x420 .. 0x42f */
5068 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, /* 0x430 .. 0x43f */
5069 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, /* 0x440 .. 0x44f */
5070 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, /* 0x450 .. 0x45f */
5071 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, /* 0x460 .. 0x46f */
5072 0,0,0,0,0,0,0,0,0,0,0,0,0,0,"overline",0,
5073 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, /* 0x480 .. 0x48f */
5074 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, /* 0x490 .. 0x49f */
5075 0, "kana-fullstop", "kana-openingbracket", "kana-closingbracket",
5076 "kana-comma", "kana-conjunctive", "kana-WO", "kana-a",
5077 "kana-i", "kana-u", "kana-e", "kana-o",
5078 "kana-ya", "kana-yu", "kana-yo", "kana-tsu",
5079 "prolongedsound", "kana-A", "kana-I", "kana-U",
5080 "kana-E", "kana-O", "kana-KA", "kana-KI",
5081 "kana-KU", "kana-KE", "kana-KO", "kana-SA",
5082 "kana-SHI", "kana-SU", "kana-SE", "kana-SO",
5083 "kana-TA", "kana-CHI", "kana-TSU", "kana-TE",
5084 "kana-TO", "kana-NA", "kana-NI", "kana-NU",
5085 "kana-NE", "kana-NO", "kana-HA", "kana-HI",
5086 "kana-FU", "kana-HE", "kana-HO", "kana-MA",
5087 "kana-MI", "kana-MU", "kana-ME", "kana-MO",
5088 "kana-YA", "kana-YU", "kana-YO", "kana-RA",
5089 "kana-RI", "kana-RU", "kana-RE", "kana-RO",
5090 "kana-WA", "kana-N", "voicedsound", "semivoicedsound",
5091 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, /* 0x4e0 .. 0x4ef */
5092 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, /* 0x4f0 .. 0x4ff */
5094 #endif /* XK_kana_A */
5097 #define FUNCTION_KEY_OFFSET 0xff00
5099 /* You'll notice that this table is arranged to be conveniently
5100 indexed by X Windows keysym values. */
5101 static char *lispy_function_keys
[] =
5103 /* X Keysym value */
5105 0, 0, 0, 0, 0, 0, 0, 0, /* 0xff00...0f */
5106 "backspace", "tab", "linefeed", "clear",
5108 0, 0, 0, "pause", /* 0xff10...1f */
5109 0, 0, 0, 0, 0, 0, 0, "escape",
5111 0, "kanji", "muhenkan", "henkan", /* 0xff20...2f */
5112 "romaji", "hiragana", "katakana", "hiragana-katakana",
5113 "zenkaku", "hankaku", "zenkaku-hankaku", "touroku",
5114 "massyo", "kana-lock", "kana-shift", "eisu-shift",
5115 "eisu-toggle", /* 0xff30...3f */
5116 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
5117 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, /* 0xff40...4f */
5119 "home", "left", "up", "right", /* 0xff50 */ /* IsCursorKey */
5120 "down", "prior", "next", "end",
5121 "begin", 0, 0, 0, 0, 0, 0, 0,
5122 "select", /* 0xff60 */ /* IsMiscFunctionKey */
5133 "break", /* 0xff6b */
5136 0, 0, 0, 0, "backtab", 0, 0, 0, /* 0xff70... */
5137 0, 0, 0, 0, 0, 0, 0, "kp-numlock", /* 0xff78... */
5138 "kp-space", /* 0xff80 */ /* IsKeypadKey */
5139 0, 0, 0, 0, 0, 0, 0, 0,
5140 "kp-tab", /* 0xff89 */
5142 "kp-enter", /* 0xff8d */
5144 "kp-f1", /* 0xff91 */
5148 "kp-home", /* 0xff95 */
5153 "kp-prior", /* kp-page-up */
5154 "kp-next", /* kp-page-down */
5160 0, 0, 0, 0, 0, 0, 0, 0, 0,
5161 "kp-multiply", /* 0xffaa */
5166 "kp-divide", /* 0xffaf */
5167 "kp-0", /* 0xffb0 */
5168 "kp-1", "kp-2", "kp-3", "kp-4", "kp-5", "kp-6", "kp-7", "kp-8", "kp-9",
5171 "kp-equal", /* 0xffbd */
5172 "f1", /* 0xffbe */ /* IsFunctionKey */
5174 "f3", "f4", "f5", "f6", "f7", "f8", "f9", "f10", /* 0xffc0 */
5175 "f11", "f12", "f13", "f14", "f15", "f16", "f17", "f18",
5176 "f19", "f20", "f21", "f22", "f23", "f24", "f25", "f26", /* 0xffd0 */
5177 "f27", "f28", "f29", "f30", "f31", "f32", "f33", "f34",
5178 "f35", 0, 0, 0, 0, 0, 0, 0, /* 0xffe0 */
5179 0, 0, 0, 0, 0, 0, 0, 0,
5180 0, 0, 0, 0, 0, 0, 0, 0, /* 0xfff0 */
5181 0, 0, 0, 0, 0, 0, 0, "delete"
5184 /* ISO 9995 Function and Modifier Keys; the first byte is 0xFE. */
5185 #define ISO_FUNCTION_KEY_OFFSET 0xfe00
5187 static char *iso_lispy_function_keys
[] =
5189 0, 0, 0, 0, 0, 0, 0, 0, /* 0xfe00 */
5190 0, 0, 0, 0, 0, 0, 0, 0, /* 0xfe08 */
5191 0, 0, 0, 0, 0, 0, 0, 0, /* 0xfe10 */
5192 0, 0, 0, 0, 0, 0, 0, 0, /* 0xfe18 */
5193 "iso-lefttab", /* 0xfe20 */
5194 "iso-move-line-up", "iso-move-line-down",
5195 "iso-partial-line-up", "iso-partial-line-down",
5196 "iso-partial-space-left", "iso-partial-space-right",
5197 "iso-set-margin-left", "iso-set-margin-right", /* 0xffe27, 28 */
5198 "iso-release-margin-left", "iso-release-margin-right",
5199 "iso-release-both-margins",
5200 "iso-fast-cursor-left", "iso-fast-cursor-right",
5201 "iso-fast-cursor-up", "iso-fast-cursor-down",
5202 "iso-continuous-underline", "iso-discontinuous-underline", /* 0xfe30, 31 */
5203 "iso-emphasize", "iso-center-object", "iso-enter", /* ... 0xfe34 */
5206 #endif /* not HAVE_NTGUI */
5208 Lisp_Object Vlispy_mouse_stem
;
5210 static char *lispy_wheel_names
[] =
5212 "wheel-up", "wheel-down", "wheel-left", "wheel-right"
5215 /* drag-n-drop events are generated when a set of selected files are
5216 dragged from another application and dropped onto an Emacs window. */
5217 static char *lispy_drag_n_drop_names
[] =
5222 /* Scroll bar parts. */
5223 Lisp_Object Qabove_handle
, Qhandle
, Qbelow_handle
;
5224 Lisp_Object Qup
, Qdown
, Qbottom
, Qend_scroll
;
5225 Lisp_Object Qtop
, Qratio
;
5227 /* An array of scroll bar parts, indexed by an enum scroll_bar_part value. */
5228 Lisp_Object
*scroll_bar_parts
[] = {
5229 &Qabove_handle
, &Qhandle
, &Qbelow_handle
,
5230 &Qup
, &Qdown
, &Qtop
, &Qbottom
, &Qend_scroll
, &Qratio
5233 /* A vector, indexed by button number, giving the down-going location
5234 of currently depressed buttons, both scroll bar and non-scroll bar.
5236 The elements have the form
5237 (BUTTON-NUMBER MODIFIER-MASK . REST)
5238 where REST is the cdr of a position as it would be reported in the event.
5240 The make_lispy_event function stores positions here to tell the
5241 difference between click and drag events, and to store the starting
5242 location to be included in drag events. */
5244 static Lisp_Object button_down_location
;
5246 /* Information about the most recent up-going button event: Which
5247 button, what location, and what time. */
5249 static int last_mouse_button
;
5250 static int last_mouse_x
;
5251 static int last_mouse_y
;
5252 static unsigned long button_down_time
;
5254 /* The maximum time between clicks to make a double-click, or Qnil to
5255 disable double-click detection, or Qt for no time limit. */
5257 Lisp_Object Vdouble_click_time
;
5259 /* Maximum number of pixels the mouse may be moved between clicks
5260 to make a double-click. */
5262 EMACS_INT double_click_fuzz
;
5264 /* The number of clicks in this multiple-click. */
5266 int double_click_count
;
5268 /* Return position of a mouse click or wheel event */
5271 make_lispy_position (f
, x
, y
, time
)
5277 enum window_part part
;
5278 Lisp_Object posn
= Qnil
;
5279 Lisp_Object extra_info
= Qnil
;
5282 /* Set `window' to the window under frame pixel coordinates (x,y) */
5284 window
= window_from_coordinates (f
, XINT (*x
), XINT (*y
),
5285 &part
, &wx
, &wy
, 0);
5289 if (WINDOWP (window
))
5291 /* It's a click in window window at frame coordinates (x,y) */
5292 struct window
*w
= XWINDOW (window
);
5293 Lisp_Object string_info
= Qnil
;
5294 int textpos
= -1, rx
= -1, ry
= -1;
5295 int dx
= -1, dy
= -1;
5296 int width
= -1, height
= -1;
5297 Lisp_Object object
= Qnil
;
5299 /* Set event coordinates to window-relative coordinates
5300 for constructing the Lisp event below. */
5304 if (part
== ON_TEXT
)
5306 wx
+= WINDOW_LEFT_MARGIN_WIDTH (w
);
5308 else if (part
== ON_MODE_LINE
|| part
== ON_HEADER_LINE
)
5310 /* Mode line or header line. Look for a string under
5311 the mouse that may have a `local-map' property. */
5315 posn
= part
== ON_MODE_LINE
? Qmode_line
: Qheader_line
;
5317 string
= mode_line_string (w
, part
, &rx
, &ry
, &charpos
,
5318 &object
, &dx
, &dy
, &width
, &height
);
5319 if (STRINGP (string
))
5320 string_info
= Fcons (string
, make_number (charpos
));
5321 if (w
== XWINDOW (selected_window
)
5322 && current_buffer
== XBUFFER (w
->buffer
))
5325 textpos
= XMARKER (w
->pointm
)->charpos
;
5327 else if (part
== ON_VERTICAL_BORDER
)
5329 posn
= Qvertical_line
;
5334 else if (part
== ON_LEFT_MARGIN
|| part
== ON_RIGHT_MARGIN
)
5339 posn
= (part
== ON_LEFT_MARGIN
) ? Qleft_margin
: Qright_margin
;
5341 string
= marginal_area_string (w
, part
, &rx
, &ry
, &charpos
,
5342 &object
, &dx
, &dy
, &width
, &height
);
5343 if (STRINGP (string
))
5344 string_info
= Fcons (string
, make_number (charpos
));
5345 if (part
== ON_LEFT_MARGIN
)
5348 wx
= window_box_right_offset (w
, TEXT_AREA
) - 1;
5350 else if (part
== ON_LEFT_FRINGE
)
5352 posn
= Qleft_fringe
;
5355 wx
= (WINDOW_HAS_FRINGES_OUTSIDE_MARGINS (w
)
5357 : window_box_width (w
, LEFT_MARGIN_AREA
));
5360 else if (part
== ON_RIGHT_FRINGE
)
5362 posn
= Qright_fringe
;
5365 wx
= (window_box_width (w
, LEFT_MARGIN_AREA
)
5366 + window_box_width (w
, TEXT_AREA
)
5367 + (WINDOW_HAS_FRINGES_OUTSIDE_MARGINS (w
)
5368 ? window_box_width (w
, RIGHT_MARGIN_AREA
)
5374 /* Note: We have no special posn for part == ON_SCROLL_BAR. */
5375 wx
= max (WINDOW_LEFT_MARGIN_WIDTH (w
), wx
);
5380 Lisp_Object string2
, object2
= Qnil
;
5381 struct display_pos p
;
5383 int width2
, height2
;
5384 string2
= buffer_posn_from_coords (w
, &wx
, &wy
, &p
,
5385 &object2
, &dx2
, &dy2
,
5387 textpos
= CHARPOS (p
.pos
);
5388 if (rx
< 0) rx
= wx
;
5389 if (ry
< 0) ry
= wy
;
5390 if (dx
< 0) dx
= dx2
;
5391 if (dy
< 0) dy
= dy2
;
5392 if (width
< 0) width
= width2
;
5393 if (height
< 0) height
= height2
;
5397 posn
= make_number (textpos
);
5398 if (STRINGP (string2
))
5399 string_info
= Fcons (string2
,
5400 make_number (CHARPOS (p
.string_pos
)));
5406 #ifdef HAVE_WINDOW_SYSTEM
5407 if (IMAGEP (object
))
5409 Lisp_Object image_map
, hotspot
;
5410 if ((image_map
= Fplist_get (XCDR (object
), QCmap
),
5412 && (hotspot
= find_hot_spot (image_map
, dx
, dy
),
5414 && (hotspot
= XCDR (hotspot
), CONSP (hotspot
)))
5415 posn
= XCAR (hotspot
);
5420 extra_info
= Fcons (object
,
5421 Fcons (Fcons (make_number (dx
),
5423 Fcons (Fcons (make_number (width
),
5424 make_number (height
)),
5428 extra_info
= Fcons (string_info
,
5429 Fcons (make_number (textpos
),
5430 Fcons (Fcons (make_number (rx
),
5436 XSETFRAME (window
, f
);
5441 XSETFASTINT (*x
, 0);
5442 XSETFASTINT (*y
, 0);
5445 return Fcons (window
,
5447 Fcons (Fcons (*x
, *y
),
5448 Fcons (make_number (time
),
5452 /* Given a struct input_event, build the lisp event which represents
5453 it. If EVENT is 0, build a mouse movement event from the mouse
5454 movement buffer, which should have a movement event in it.
5456 Note that events must be passed to this function in the order they
5457 are received; this function stores the location of button presses
5458 in order to build drag events when the button is released. */
5461 make_lispy_event (event
)
5462 struct input_event
*event
;
5466 switch (SWITCH_ENUM_CAST (event
->kind
))
5468 /* A simple keystroke. */
5469 case ASCII_KEYSTROKE_EVENT
:
5470 case MULTIBYTE_CHAR_KEYSTROKE_EVENT
:
5472 Lisp_Object lispy_c
;
5473 int c
= event
->code
;
5474 if (event
->kind
== ASCII_KEYSTROKE_EVENT
)
5477 eassert (c
== event
->code
);
5478 /* Turn ASCII characters into control characters
5480 if (event
->modifiers
& ctrl_modifier
)
5482 c
= make_ctrl_char (c
);
5483 event
->modifiers
&= ~ctrl_modifier
;
5487 /* Add in the other modifier bits. The shift key was taken care
5488 of by the X code. */
5489 c
|= (event
->modifiers
5490 & (meta_modifier
| alt_modifier
5491 | hyper_modifier
| super_modifier
| ctrl_modifier
));
5492 /* Distinguish Shift-SPC from SPC. */
5493 if ((event
->code
) == 040
5494 && event
->modifiers
& shift_modifier
)
5495 c
|= shift_modifier
;
5496 button_down_time
= 0;
5497 XSETFASTINT (lispy_c
, c
);
5501 /* A function key. The symbol may need to have modifier prefixes
5503 case NON_ASCII_KEYSTROKE_EVENT
:
5504 button_down_time
= 0;
5506 for (i
= 0; i
< sizeof (lispy_accent_codes
) / sizeof (int); i
++)
5507 if (event
->code
== lispy_accent_codes
[i
])
5508 return modify_event_symbol (i
,
5510 Qfunction_key
, Qnil
,
5511 lispy_accent_keys
, &accent_key_syms
,
5512 (sizeof (lispy_accent_keys
)
5513 / sizeof (lispy_accent_keys
[0])));
5517 if (event
->code
>= 0x400 && event
->code
< 0x500)
5518 return modify_event_symbol (event
->code
- 0x400,
5519 event
->modifiers
& ~shift_modifier
,
5520 Qfunction_key
, Qnil
,
5521 lispy_kana_keys
, &func_key_syms
,
5522 (sizeof (lispy_kana_keys
)
5523 / sizeof (lispy_kana_keys
[0])));
5524 #endif /* XK_kana_A */
5527 #ifdef ISO_FUNCTION_KEY_OFFSET
5528 if (event
->code
< FUNCTION_KEY_OFFSET
5529 && event
->code
>= ISO_FUNCTION_KEY_OFFSET
)
5530 return modify_event_symbol (event
->code
- ISO_FUNCTION_KEY_OFFSET
,
5532 Qfunction_key
, Qnil
,
5533 iso_lispy_function_keys
, &func_key_syms
,
5534 (sizeof (iso_lispy_function_keys
)
5535 / sizeof (iso_lispy_function_keys
[0])));
5538 /* Handle system-specific or unknown keysyms. */
5539 if (event
->code
& (1 << 28)
5540 || event
->code
- FUNCTION_KEY_OFFSET
< 0
5541 || (event
->code
- FUNCTION_KEY_OFFSET
5542 >= sizeof lispy_function_keys
/ sizeof *lispy_function_keys
)
5543 || !lispy_function_keys
[event
->code
- FUNCTION_KEY_OFFSET
])
5545 /* We need to use an alist rather than a vector as the cache
5546 since we can't make a vector long enuf. */
5547 if (NILP (current_kboard
->system_key_syms
))
5548 current_kboard
->system_key_syms
= Fcons (Qnil
, Qnil
);
5549 return modify_event_symbol (event
->code
,
5552 current_kboard
->Vsystem_key_alist
,
5553 0, ¤t_kboard
->system_key_syms
,
5557 return modify_event_symbol (event
->code
- FUNCTION_KEY_OFFSET
,
5559 Qfunction_key
, Qnil
,
5560 lispy_function_keys
, &func_key_syms
,
5561 (sizeof (lispy_function_keys
)
5562 / sizeof (lispy_function_keys
[0])));
5565 case MULTIMEDIA_KEY_EVENT
:
5566 if (event
->code
< (sizeof (lispy_multimedia_keys
)
5567 / sizeof (lispy_multimedia_keys
[0]))
5568 && event
->code
> 0 && lispy_multimedia_keys
[event
->code
])
5570 return modify_event_symbol (event
->code
, event
->modifiers
,
5571 Qfunction_key
, Qnil
,
5572 lispy_multimedia_keys
, &func_key_syms
,
5573 (sizeof (lispy_multimedia_keys
)
5574 / sizeof (lispy_multimedia_keys
[0])));
5580 /* A mouse click. Figure out where it is, decide whether it's
5581 a press, click or drag, and build the appropriate structure. */
5582 case MOUSE_CLICK_EVENT
:
5583 #ifndef USE_TOOLKIT_SCROLL_BARS
5584 case SCROLL_BAR_CLICK_EVENT
:
5587 int button
= event
->code
;
5589 Lisp_Object position
;
5590 Lisp_Object
*start_pos_ptr
;
5591 Lisp_Object start_pos
;
5595 /* Build the position as appropriate for this mouse click. */
5596 if (event
->kind
== MOUSE_CLICK_EVENT
)
5598 struct frame
*f
= XFRAME (event
->frame_or_window
);
5599 #if ! defined (USE_X_TOOLKIT) && ! defined (USE_GTK) && ! defined (HAVE_NS)
5603 /* Ignore mouse events that were made on frame that
5604 have been deleted. */
5605 if (! FRAME_LIVE_P (f
))
5608 #if ! defined (USE_X_TOOLKIT) && ! defined (USE_GTK) && ! defined (HAVE_NS)
5609 /* EVENT->x and EVENT->y are frame-relative pixel
5610 coordinates at this place. Under old redisplay, COLUMN
5611 and ROW are set to frame relative glyph coordinates
5612 which are then used to determine whether this click is
5613 in a menu (non-toolkit version). */
5614 pixel_to_glyph_coords (f
, XINT (event
->x
), XINT (event
->y
),
5615 &column
, &row
, NULL
, 1);
5617 /* In the non-toolkit version, clicks on the menu bar
5618 are ordinary button events in the event buffer.
5619 Distinguish them, and invoke the menu.
5621 (In the toolkit version, the toolkit handles the menu bar
5622 and Emacs doesn't know about it until after the user
5623 makes a selection.) */
5624 if (row
>= 0 && row
< FRAME_MENU_BAR_LINES (f
)
5625 && (event
->modifiers
& down_modifier
))
5627 Lisp_Object items
, item
;
5632 /* Activate the menu bar on the down event. If the
5633 up event comes in before the menu code can deal with it,
5635 if (! (event
->modifiers
& down_modifier
))
5639 /* Find the menu bar item under `column'. */
5641 items
= FRAME_MENU_BAR_ITEMS (f
);
5642 for (i
= 0; i
< XVECTOR (items
)->size
; i
+= 4)
5644 Lisp_Object pos
, string
;
5645 string
= AREF (items
, i
+ 1);
5646 pos
= AREF (items
, i
+ 3);
5649 if (column
>= XINT (pos
)
5650 && column
< XINT (pos
) + SCHARS (string
))
5652 item
= AREF (items
, i
);
5657 /* ELisp manual 2.4b says (x y) are window relative but
5658 code says they are frame-relative. */
5660 = Fcons (event
->frame_or_window
,
5662 Fcons (Fcons (event
->x
, event
->y
),
5663 Fcons (make_number (event
->timestamp
),
5666 return Fcons (item
, Fcons (position
, Qnil
));
5668 #endif /* not USE_X_TOOLKIT && not USE_GTK && not HAVE_NS */
5670 position
= make_lispy_position (f
, &event
->x
, &event
->y
,
5673 #ifndef USE_TOOLKIT_SCROLL_BARS
5676 /* It's a scrollbar click. */
5678 Lisp_Object portion_whole
;
5681 window
= event
->frame_or_window
;
5682 portion_whole
= Fcons (event
->x
, event
->y
);
5683 part
= *scroll_bar_parts
[(int) event
->part
];
5687 Fcons (Qvertical_scroll_bar
,
5688 Fcons (portion_whole
,
5689 Fcons (make_number (event
->timestamp
),
5690 Fcons (part
, Qnil
)))));
5692 #endif /* not USE_TOOLKIT_SCROLL_BARS */
5694 if (button
>= ASIZE (button_down_location
))
5696 button_down_location
= larger_vector (button_down_location
,
5698 mouse_syms
= larger_vector (mouse_syms
, button
+ 1, Qnil
);
5701 start_pos_ptr
= &AREF (button_down_location
, button
);
5702 start_pos
= *start_pos_ptr
;
5703 *start_pos_ptr
= Qnil
;
5706 /* On window-system frames, use the value of
5707 double-click-fuzz as is. On other frames, interpret it
5708 as a multiple of 1/8 characters. */
5712 if (WINDOWP (event
->frame_or_window
))
5713 f
= XFRAME (XWINDOW (event
->frame_or_window
)->frame
);
5714 else if (FRAMEP (event
->frame_or_window
))
5715 f
= XFRAME (event
->frame_or_window
);
5719 if (FRAME_WINDOW_P (f
))
5720 fuzz
= double_click_fuzz
;
5722 fuzz
= double_click_fuzz
/ 8;
5724 is_double
= (button
== last_mouse_button
5725 && (eabs (XINT (event
->x
) - last_mouse_x
) <= fuzz
)
5726 && (eabs (XINT (event
->y
) - last_mouse_y
) <= fuzz
)
5727 && button_down_time
!= 0
5728 && (EQ (Vdouble_click_time
, Qt
)
5729 || (INTEGERP (Vdouble_click_time
)
5730 && ((int)(event
->timestamp
- button_down_time
)
5731 < XINT (Vdouble_click_time
)))));
5734 last_mouse_button
= button
;
5735 last_mouse_x
= XINT (event
->x
);
5736 last_mouse_y
= XINT (event
->y
);
5738 /* If this is a button press, squirrel away the location, so
5739 we can decide later whether it was a click or a drag. */
5740 if (event
->modifiers
& down_modifier
)
5744 double_click_count
++;
5745 event
->modifiers
|= ((double_click_count
> 2)
5750 double_click_count
= 1;
5751 button_down_time
= event
->timestamp
;
5752 *start_pos_ptr
= Fcopy_alist (position
);
5753 ignore_mouse_drag_p
= 0;
5756 /* Now we're releasing a button - check the co-ordinates to
5757 see if this was a click or a drag. */
5758 else if (event
->modifiers
& up_modifier
)
5760 /* If we did not see a down before this up, ignore the up.
5761 Probably this happened because the down event chose a
5762 menu item. It would be an annoyance to treat the
5763 release of the button that chose the menu item as a
5766 if (!CONSP (start_pos
))
5769 event
->modifiers
&= ~up_modifier
;
5770 #if 0 /* Formerly we treated an up with no down as a click event. */
5771 if (!CONSP (start_pos
))
5772 event
->modifiers
|= click_modifier
;
5777 EMACS_INT xdiff
= double_click_fuzz
, ydiff
= double_click_fuzz
;
5779 /* The third element of every position
5780 should be the (x,y) pair. */
5781 down
= Fcar (Fcdr (Fcdr (start_pos
)));
5783 && INTEGERP (XCAR (down
)) && INTEGERP (XCDR (down
)))
5785 xdiff
= XINT (event
->x
) - XINT (XCAR (down
));
5786 ydiff
= XINT (event
->y
) - XINT (XCDR (down
));
5789 if (ignore_mouse_drag_p
)
5791 event
->modifiers
|= click_modifier
;
5792 ignore_mouse_drag_p
= 0;
5794 else if (xdiff
< double_click_fuzz
&& xdiff
> - double_click_fuzz
5795 && ydiff
< double_click_fuzz
&& ydiff
> - double_click_fuzz
5796 /* Maybe the mouse has moved a lot, caused scrolling, and
5797 eventually ended up at the same screen position (but
5798 not buffer position) in which case it is a drag, not
5800 /* FIXME: OTOH if the buffer position has changed
5801 because of a timer or process filter rather than
5802 because of mouse movement, it should be considered as
5803 a click. But mouse-drag-region completely ignores
5804 this case and it hasn't caused any real problem, so
5805 it's probably OK to ignore it as well. */
5806 && EQ (Fcar (Fcdr (start_pos
)), Fcar (Fcdr (position
))))
5807 /* Mouse hasn't moved (much). */
5808 event
->modifiers
|= click_modifier
;
5811 button_down_time
= 0;
5812 event
->modifiers
|= drag_modifier
;
5815 /* Don't check is_double; treat this as multiple
5816 if the down-event was multiple. */
5817 if (double_click_count
> 1)
5818 event
->modifiers
|= ((double_click_count
> 2)
5824 /* Every mouse event should either have the down_modifier or
5825 the up_modifier set. */
5829 /* Get the symbol we should use for the mouse click. */
5832 head
= modify_event_symbol (button
,
5834 Qmouse_click
, Vlispy_mouse_stem
,
5837 XVECTOR (mouse_syms
)->size
);
5838 if (event
->modifiers
& drag_modifier
)
5843 else if (event
->modifiers
& (double_modifier
| triple_modifier
))
5846 Fcons (make_number (double_click_count
),
5856 case HORIZ_WHEEL_EVENT
:
5858 Lisp_Object position
;
5861 /* Build the position as appropriate for this mouse click. */
5862 struct frame
*f
= XFRAME (event
->frame_or_window
);
5864 /* Ignore wheel events that were made on frame that have been
5866 if (! FRAME_LIVE_P (f
))
5869 position
= make_lispy_position (f
, &event
->x
, &event
->y
,
5872 /* Set double or triple modifiers to indicate the wheel speed. */
5874 /* On window-system frames, use the value of
5875 double-click-fuzz as is. On other frames, interpret it
5876 as a multiple of 1/8 characters. */
5881 if (WINDOWP (event
->frame_or_window
))
5882 f
= XFRAME (XWINDOW (event
->frame_or_window
)->frame
);
5883 else if (FRAMEP (event
->frame_or_window
))
5884 f
= XFRAME (event
->frame_or_window
);
5888 if (FRAME_WINDOW_P (f
))
5889 fuzz
= double_click_fuzz
;
5891 fuzz
= double_click_fuzz
/ 8;
5893 is_double
= (last_mouse_button
< 0
5894 && (eabs (XINT (event
->x
) - last_mouse_x
) <= fuzz
)
5895 && (eabs (XINT (event
->y
) - last_mouse_y
) <= fuzz
)
5896 && button_down_time
!= 0
5897 && (EQ (Vdouble_click_time
, Qt
)
5898 || (INTEGERP (Vdouble_click_time
)
5899 && ((int)(event
->timestamp
- button_down_time
)
5900 < XINT (Vdouble_click_time
)))));
5903 double_click_count
++;
5904 event
->modifiers
|= ((double_click_count
> 2)
5910 double_click_count
= 1;
5911 event
->modifiers
|= click_modifier
;
5914 button_down_time
= event
->timestamp
;
5915 /* Use a negative value to distinguish wheel from mouse button. */
5916 last_mouse_button
= -1;
5917 last_mouse_x
= XINT (event
->x
);
5918 last_mouse_y
= XINT (event
->y
);
5924 if (event
->modifiers
& up_modifier
)
5926 /* Emit a wheel-up event. */
5927 event
->modifiers
&= ~up_modifier
;
5930 else if (event
->modifiers
& down_modifier
)
5932 /* Emit a wheel-down event. */
5933 event
->modifiers
&= ~down_modifier
;
5937 /* Every wheel event should either have the down_modifier or
5938 the up_modifier set. */
5941 if (event
->kind
== HORIZ_WHEEL_EVENT
)
5944 /* Get the symbol we should use for the wheel event. */
5945 head
= modify_event_symbol (symbol_num
,
5951 ASIZE (wheel_syms
));
5954 if (event
->modifiers
& (double_modifier
| triple_modifier
))
5957 Fcons (make_number (double_click_count
),
5966 #ifdef USE_TOOLKIT_SCROLL_BARS
5968 /* We don't have down and up events if using toolkit scroll bars,
5969 so make this always a click event. Store in the `part' of
5970 the Lisp event a symbol which maps to the following actions:
5972 `above_handle' page up
5973 `below_handle' page down
5977 `bottom' bottom of buffer
5978 `handle' thumb has been dragged.
5979 `end-scroll' end of interaction with scroll bar
5981 The incoming input_event contains in its `part' member an
5982 index of type `enum scroll_bar_part' which we can use as an
5983 index in scroll_bar_parts to get the appropriate symbol. */
5985 case SCROLL_BAR_CLICK_EVENT
:
5987 Lisp_Object position
, head
, window
, portion_whole
, part
;
5989 window
= event
->frame_or_window
;
5990 portion_whole
= Fcons (event
->x
, event
->y
);
5991 part
= *scroll_bar_parts
[(int) event
->part
];
5995 Fcons (Qvertical_scroll_bar
,
5996 Fcons (portion_whole
,
5997 Fcons (make_number (event
->timestamp
),
5998 Fcons (part
, Qnil
)))));
6000 /* Always treat scroll bar events as clicks. */
6001 event
->modifiers
|= click_modifier
;
6002 event
->modifiers
&= ~up_modifier
;
6004 if (event
->code
>= ASIZE (mouse_syms
))
6005 mouse_syms
= larger_vector (mouse_syms
, event
->code
+ 1, Qnil
);
6007 /* Get the symbol we should use for the mouse click. */
6008 head
= modify_event_symbol (event
->code
,
6013 XVECTOR (mouse_syms
)->size
);
6014 return Fcons (head
, Fcons (position
, Qnil
));
6017 #endif /* USE_TOOLKIT_SCROLL_BARS */
6019 case DRAG_N_DROP_EVENT
:
6022 Lisp_Object head
, position
;
6025 f
= XFRAME (event
->frame_or_window
);
6028 /* Ignore mouse events that were made on frames that
6029 have been deleted. */
6030 if (! FRAME_LIVE_P (f
))
6033 position
= make_lispy_position (f
, &event
->x
, &event
->y
,
6036 head
= modify_event_symbol (0, event
->modifiers
,
6038 lispy_drag_n_drop_names
,
6039 &drag_n_drop_syms
, 1);
6045 #endif /* HAVE_MOUSE */
6047 #if defined (USE_X_TOOLKIT) || defined (HAVE_NTGUI) \
6048 || defined(HAVE_NS) || defined (USE_GTK)
6049 case MENU_BAR_EVENT
:
6050 if (EQ (event
->arg
, event
->frame_or_window
))
6051 /* This is the prefix key. We translate this to
6052 `(menu_bar)' because the code in keyboard.c for menu
6053 events, which we use, relies on this. */
6054 return Fcons (Qmenu_bar
, Qnil
);
6058 case SELECT_WINDOW_EVENT
:
6059 /* Make an event (select-window (WINDOW)). */
6060 return Fcons (Qselect_window
,
6061 Fcons (Fcons (event
->frame_or_window
, Qnil
),
6064 case TOOL_BAR_EVENT
:
6065 if (EQ (event
->arg
, event
->frame_or_window
))
6066 /* This is the prefix key. We translate this to
6067 `(tool_bar)' because the code in keyboard.c for tool bar
6068 events, which we use, relies on this. */
6069 return Fcons (Qtool_bar
, Qnil
);
6070 else if (SYMBOLP (event
->arg
))
6071 return apply_modifiers (event
->modifiers
, event
->arg
);
6074 case USER_SIGNAL_EVENT
:
6075 /* A user signal. */
6077 char *name
= find_user_signal_name (event
->code
);
6080 return intern (name
);
6083 case SAVE_SESSION_EVENT
:
6084 return Qsave_session
;
6089 return Fcons (Qdbus_event
, event
->arg
);
6091 #endif /* HAVE_DBUS */
6094 case GPM_CLICK_EVENT
:
6096 FRAME_PTR f
= XFRAME (event
->frame_or_window
);
6097 Lisp_Object head
, position
;
6098 Lisp_Object
*start_pos_ptr
;
6099 Lisp_Object start_pos
;
6100 int button
= event
->code
;
6102 if (button
>= ASIZE (button_down_location
))
6104 button_down_location
= larger_vector (button_down_location
,
6106 mouse_syms
= larger_vector (mouse_syms
, button
+ 1, Qnil
);
6109 start_pos_ptr
= &AREF (button_down_location
, button
);
6110 start_pos
= *start_pos_ptr
;
6112 position
= make_lispy_position (f
, &event
->x
, &event
->y
,
6115 if (event
->modifiers
& down_modifier
)
6116 *start_pos_ptr
= Fcopy_alist (position
);
6117 else if (event
->modifiers
& (up_modifier
| drag_modifier
))
6119 if (!CONSP (start_pos
))
6121 event
->modifiers
&= ~up_modifier
;
6124 head
= modify_event_symbol (button
,
6126 Qmouse_click
, Vlispy_mouse_stem
,
6129 XVECTOR (mouse_syms
)->size
);
6131 if (event
->modifiers
& drag_modifier
)
6136 else if (event
->modifiers
& double_modifier
)
6139 Fcons (make_number (2),
6141 else if (event
->modifiers
& triple_modifier
)
6144 Fcons (make_number (3),
6151 #endif /* HAVE_GPM */
6153 /* The 'kind' field of the event is something we don't recognize. */
6159 #if defined(HAVE_MOUSE) || defined(HAVE_GPM)
6162 make_lispy_movement (frame
, bar_window
, part
, x
, y
, time
)
6164 Lisp_Object bar_window
;
6165 enum scroll_bar_part part
;
6169 /* Is it a scroll bar movement? */
6170 if (frame
&& ! NILP (bar_window
))
6172 Lisp_Object part_sym
;
6174 part_sym
= *scroll_bar_parts
[(int) part
];
6175 return Fcons (Qscroll_bar_movement
,
6176 (Fcons (Fcons (bar_window
,
6177 Fcons (Qvertical_scroll_bar
,
6178 Fcons (Fcons (x
, y
),
6179 Fcons (make_number (time
),
6185 /* Or is it an ordinary mouse movement? */
6188 Lisp_Object position
;
6190 position
= make_lispy_position (frame
, &x
, &y
, time
);
6192 return Fcons (Qmouse_movement
,
6198 #endif /* HAVE_MOUSE || HAVE GPM */
6200 /* Construct a switch frame event. */
6202 make_lispy_switch_frame (frame
)
6205 return Fcons (Qswitch_frame
, Fcons (frame
, Qnil
));
6208 /* Manipulating modifiers. */
6210 /* Parse the name of SYMBOL, and return the set of modifiers it contains.
6212 If MODIFIER_END is non-zero, set *MODIFIER_END to the position in
6213 SYMBOL's name of the end of the modifiers; the string from this
6214 position is the unmodified symbol name.
6216 This doesn't use any caches. */
6219 parse_modifiers_uncached (symbol
, modifier_end
)
6227 CHECK_SYMBOL (symbol
);
6230 name
= SYMBOL_NAME (symbol
);
6232 for (i
= 0; i
+2 <= SBYTES (name
); )
6234 int this_mod_end
= 0;
6237 /* See if the name continues with a modifier word.
6238 Check that the word appears, but don't check what follows it.
6239 Set this_mod and this_mod_end to record what we find. */
6241 switch (SREF (name
, i
))
6243 #define SINGLE_LETTER_MOD(BIT) \
6244 (this_mod_end = i + 1, this_mod = BIT)
6247 SINGLE_LETTER_MOD (alt_modifier
);
6251 SINGLE_LETTER_MOD (ctrl_modifier
);
6255 SINGLE_LETTER_MOD (hyper_modifier
);
6259 SINGLE_LETTER_MOD (meta_modifier
);
6263 SINGLE_LETTER_MOD (shift_modifier
);
6267 SINGLE_LETTER_MOD (super_modifier
);
6270 #undef SINGLE_LETTER_MOD
6272 #define MULTI_LETTER_MOD(BIT, NAME, LEN) \
6273 if (i + LEN + 1 <= SBYTES (name) \
6274 && ! strncmp (SDATA (name) + i, NAME, LEN)) \
6276 this_mod_end = i + LEN; \
6281 MULTI_LETTER_MOD (drag_modifier
, "drag", 4);
6282 MULTI_LETTER_MOD (down_modifier
, "down", 4);
6283 MULTI_LETTER_MOD (double_modifier
, "double", 6);
6287 MULTI_LETTER_MOD (triple_modifier
, "triple", 6);
6289 #undef MULTI_LETTER_MOD
6293 /* If we found no modifier, stop looking for them. */
6294 if (this_mod_end
== 0)
6297 /* Check there is a dash after the modifier, so that it
6298 really is a modifier. */
6299 if (this_mod_end
>= SBYTES (name
)
6300 || SREF (name
, this_mod_end
) != '-')
6303 /* This modifier is real; look for another. */
6304 modifiers
|= this_mod
;
6305 i
= this_mod_end
+ 1;
6308 /* Should we include the `click' modifier? */
6309 if (! (modifiers
& (down_modifier
| drag_modifier
6310 | double_modifier
| triple_modifier
))
6311 && i
+ 7 == SBYTES (name
)
6312 && strncmp (SDATA (name
) + i
, "mouse-", 6) == 0
6313 && ('0' <= SREF (name
, i
+ 6) && SREF (name
, i
+ 6) <= '9'))
6314 modifiers
|= click_modifier
;
6316 if (! (modifiers
& (double_modifier
| triple_modifier
))
6317 && i
+ 6 < SBYTES (name
)
6318 && strncmp (SDATA (name
) + i
, "wheel-", 6) == 0)
6319 modifiers
|= click_modifier
;
6327 /* Return a symbol whose name is the modifier prefixes for MODIFIERS
6328 prepended to the string BASE[0..BASE_LEN-1].
6329 This doesn't use any caches. */
6331 apply_modifiers_uncached (modifiers
, base
, base_len
, base_len_byte
)
6334 int base_len
, base_len_byte
;
6336 /* Since BASE could contain nulls, we can't use intern here; we have
6337 to use Fintern, which expects a genuine Lisp_String, and keeps a
6340 = (char *) alloca (sizeof ("A-C-H-M-S-s-down-drag-double-triple-"));
6346 /* Only the event queue may use the `up' modifier; it should always
6347 be turned into a click or drag event before presented to lisp code. */
6348 if (modifiers
& up_modifier
)
6351 if (modifiers
& alt_modifier
) { *p
++ = 'A'; *p
++ = '-'; }
6352 if (modifiers
& ctrl_modifier
) { *p
++ = 'C'; *p
++ = '-'; }
6353 if (modifiers
& hyper_modifier
) { *p
++ = 'H'; *p
++ = '-'; }
6354 if (modifiers
& meta_modifier
) { *p
++ = 'M'; *p
++ = '-'; }
6355 if (modifiers
& shift_modifier
) { *p
++ = 'S'; *p
++ = '-'; }
6356 if (modifiers
& super_modifier
) { *p
++ = 's'; *p
++ = '-'; }
6357 if (modifiers
& double_modifier
) { strcpy (p
, "double-"); p
+= 7; }
6358 if (modifiers
& triple_modifier
) { strcpy (p
, "triple-"); p
+= 7; }
6359 if (modifiers
& down_modifier
) { strcpy (p
, "down-"); p
+= 5; }
6360 if (modifiers
& drag_modifier
) { strcpy (p
, "drag-"); p
+= 5; }
6361 /* The click modifier is denoted by the absence of other modifiers. */
6365 mod_len
= p
- new_mods
;
6369 Lisp_Object new_name
;
6371 new_name
= make_uninit_multibyte_string (mod_len
+ base_len
,
6372 mod_len
+ base_len_byte
);
6373 bcopy (new_mods
, SDATA (new_name
), mod_len
);
6374 bcopy (base
, SDATA (new_name
) + mod_len
, base_len_byte
);
6376 return Fintern (new_name
, Qnil
);
6381 static char *modifier_names
[] =
6383 "up", "down", "drag", "click", "double", "triple", 0, 0,
6384 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
6385 0, 0, "alt", "super", "hyper", "shift", "control", "meta"
6387 #define NUM_MOD_NAMES (sizeof (modifier_names) / sizeof (modifier_names[0]))
6389 static Lisp_Object modifier_symbols
;
6391 /* Return the list of modifier symbols corresponding to the mask MODIFIERS. */
6393 lispy_modifier_list (modifiers
)
6396 Lisp_Object modifier_list
;
6399 modifier_list
= Qnil
;
6400 for (i
= 0; (1<<i
) <= modifiers
&& i
< NUM_MOD_NAMES
; i
++)
6401 if (modifiers
& (1<<i
))
6402 modifier_list
= Fcons (XVECTOR (modifier_symbols
)->contents
[i
],
6405 return modifier_list
;
6409 /* Parse the modifiers on SYMBOL, and return a list like (UNMODIFIED MASK),
6410 where UNMODIFIED is the unmodified form of SYMBOL,
6411 MASK is the set of modifiers present in SYMBOL's name.
6412 This is similar to parse_modifiers_uncached, but uses the cache in
6413 SYMBOL's Qevent_symbol_element_mask property, and maintains the
6414 Qevent_symbol_elements property. */
6416 #define KEY_TO_CHAR(k) (XINT (k) & ((1 << CHARACTERBITS) - 1))
6419 parse_modifiers (symbol
)
6422 Lisp_Object elements
;
6424 if (INTEGERP (symbol
))
6425 return (Fcons (make_number (KEY_TO_CHAR (symbol
)),
6426 Fcons (make_number (XINT (symbol
) & CHAR_MODIFIER_MASK
),
6428 else if (!SYMBOLP (symbol
))
6431 elements
= Fget (symbol
, Qevent_symbol_element_mask
);
6432 if (CONSP (elements
))
6437 int modifiers
= parse_modifiers_uncached (symbol
, &end
);
6438 Lisp_Object unmodified
;
6441 unmodified
= Fintern (make_string (SDATA (SYMBOL_NAME (symbol
)) + end
,
6442 SBYTES (SYMBOL_NAME (symbol
)) - end
),
6445 if (modifiers
& ~INTMASK
)
6447 XSETFASTINT (mask
, modifiers
);
6448 elements
= Fcons (unmodified
, Fcons (mask
, Qnil
));
6450 /* Cache the parsing results on SYMBOL. */
6451 Fput (symbol
, Qevent_symbol_element_mask
,
6453 Fput (symbol
, Qevent_symbol_elements
,
6454 Fcons (unmodified
, lispy_modifier_list (modifiers
)));
6456 /* Since we know that SYMBOL is modifiers applied to unmodified,
6457 it would be nice to put that in unmodified's cache.
6458 But we can't, since we're not sure that parse_modifiers is
6465 DEFUN ("internal-event-symbol-parse-modifiers", Fevent_symbol_parse_modifiers
,
6466 Sevent_symbol_parse_modifiers
, 1, 1, 0,
6467 doc
: /* Parse the event symbol. For internal use. */)
6471 /* Fill the cache if needed. */
6472 parse_modifiers (symbol
);
6473 /* Ignore the result (which is stored on Qevent_symbol_element_mask)
6474 and use the Lispier representation stored on Qevent_symbol_elements
6476 return Fget (symbol
, Qevent_symbol_elements
);
6479 /* Apply the modifiers MODIFIERS to the symbol BASE.
6480 BASE must be unmodified.
6482 This is like apply_modifiers_uncached, but uses BASE's
6483 Qmodifier_cache property, if present. It also builds
6484 Qevent_symbol_elements properties, since it has that info anyway.
6486 apply_modifiers copies the value of BASE's Qevent_kind property to
6487 the modified symbol. */
6489 apply_modifiers (modifiers
, base
)
6493 Lisp_Object cache
, index
, entry
, new_symbol
;
6495 /* Mask out upper bits. We don't know where this value's been. */
6496 modifiers
&= INTMASK
;
6498 if (INTEGERP (base
))
6499 return make_number (XINT (base
) | modifiers
);
6501 /* The click modifier never figures into cache indices. */
6502 cache
= Fget (base
, Qmodifier_cache
);
6503 XSETFASTINT (index
, (modifiers
& ~click_modifier
));
6504 entry
= assq_no_quit (index
, cache
);
6507 new_symbol
= XCDR (entry
);
6510 /* We have to create the symbol ourselves. */
6511 new_symbol
= apply_modifiers_uncached (modifiers
,
6512 SDATA (SYMBOL_NAME (base
)),
6513 SCHARS (SYMBOL_NAME (base
)),
6514 SBYTES (SYMBOL_NAME (base
)));
6516 /* Add the new symbol to the base's cache. */
6517 entry
= Fcons (index
, new_symbol
);
6518 Fput (base
, Qmodifier_cache
, Fcons (entry
, cache
));
6520 /* We have the parsing info now for free, so we could add it to
6522 XSETFASTINT (index, modifiers);
6523 Fput (new_symbol, Qevent_symbol_element_mask,
6524 Fcons (base, Fcons (index, Qnil)));
6525 Fput (new_symbol, Qevent_symbol_elements,
6526 Fcons (base, lispy_modifier_list (modifiers)));
6527 Sadly, this is only correct if `base' is indeed a base event,
6528 which is not necessarily the case. -stef */
6531 /* Make sure this symbol is of the same kind as BASE.
6533 You'd think we could just set this once and for all when we
6534 intern the symbol above, but reorder_modifiers may call us when
6535 BASE's property isn't set right; we can't assume that just
6536 because it has a Qmodifier_cache property it must have its
6537 Qevent_kind set right as well. */
6538 if (NILP (Fget (new_symbol
, Qevent_kind
)))
6542 kind
= Fget (base
, Qevent_kind
);
6544 Fput (new_symbol
, Qevent_kind
, kind
);
6551 /* Given a symbol whose name begins with modifiers ("C-", "M-", etc),
6552 return a symbol with the modifiers placed in the canonical order.
6553 Canonical order is alphabetical, except for down and drag, which
6554 always come last. The 'click' modifier is never written out.
6556 Fdefine_key calls this to make sure that (for example) C-M-foo
6557 and M-C-foo end up being equivalent in the keymap. */
6560 reorder_modifiers (symbol
)
6563 /* It's hopefully okay to write the code this way, since everything
6564 will soon be in caches, and no consing will be done at all. */
6567 parsed
= parse_modifiers (symbol
);
6568 return apply_modifiers ((int) XINT (XCAR (XCDR (parsed
))),
6573 /* For handling events, we often want to produce a symbol whose name
6574 is a series of modifier key prefixes ("M-", "C-", etcetera) attached
6575 to some base, like the name of a function key or mouse button.
6576 modify_event_symbol produces symbols of this sort.
6578 NAME_TABLE should point to an array of strings, such that NAME_TABLE[i]
6579 is the name of the i'th symbol. TABLE_SIZE is the number of elements
6582 Alternatively, NAME_ALIST_OR_STEM is either an alist mapping codes
6583 into symbol names, or a string specifying a name stem used to
6584 construct a symbol name or the form `STEM-N', where N is the decimal
6585 representation of SYMBOL_NUM. NAME_ALIST_OR_STEM is used if it is
6586 non-nil; otherwise NAME_TABLE is used.
6588 SYMBOL_TABLE should be a pointer to a Lisp_Object whose value will
6589 persist between calls to modify_event_symbol that it can use to
6590 store a cache of the symbols it's generated for this NAME_TABLE
6591 before. The object stored there may be a vector or an alist.
6593 SYMBOL_NUM is the number of the base name we want from NAME_TABLE.
6595 MODIFIERS is a set of modifier bits (as given in struct input_events)
6596 whose prefixes should be applied to the symbol name.
6598 SYMBOL_KIND is the value to be placed in the event_kind property of
6599 the returned symbol.
6601 The symbols we create are supposed to have an
6602 `event-symbol-elements' property, which lists the modifiers present
6603 in the symbol's name. */
6606 modify_event_symbol (symbol_num
, modifiers
, symbol_kind
, name_alist_or_stem
,
6607 name_table
, symbol_table
, table_size
)
6610 Lisp_Object symbol_kind
;
6611 Lisp_Object name_alist_or_stem
;
6613 Lisp_Object
*symbol_table
;
6614 unsigned int table_size
;
6617 Lisp_Object symbol_int
;
6619 /* Get rid of the "vendor-specific" bit here. */
6620 XSETINT (symbol_int
, symbol_num
& 0xffffff);
6622 /* Is this a request for a valid symbol? */
6623 if (symbol_num
< 0 || symbol_num
>= table_size
)
6626 if (CONSP (*symbol_table
))
6627 value
= Fcdr (assq_no_quit (symbol_int
, *symbol_table
));
6629 /* If *symbol_table doesn't seem to be initialized properly, fix that.
6630 *symbol_table should be a lisp vector TABLE_SIZE elements long,
6631 where the Nth element is the symbol for NAME_TABLE[N], or nil if
6632 we've never used that symbol before. */
6635 if (! VECTORP (*symbol_table
)
6636 || XVECTOR (*symbol_table
)->size
!= table_size
)
6640 XSETFASTINT (size
, table_size
);
6641 *symbol_table
= Fmake_vector (size
, Qnil
);
6644 value
= XVECTOR (*symbol_table
)->contents
[symbol_num
];
6647 /* Have we already used this symbol before? */
6650 /* No; let's create it. */
6651 if (CONSP (name_alist_or_stem
))
6652 value
= Fcdr_safe (Fassq (symbol_int
, name_alist_or_stem
));
6653 else if (STRINGP (name_alist_or_stem
))
6655 int len
= SBYTES (name_alist_or_stem
);
6656 char *buf
= (char *) alloca (len
+ 50);
6657 sprintf (buf
, "%s-%ld", SDATA (name_alist_or_stem
),
6658 (long) XINT (symbol_int
) + 1);
6659 value
= intern (buf
);
6661 else if (name_table
!= 0 && name_table
[symbol_num
])
6662 value
= intern (name_table
[symbol_num
]);
6664 #ifdef HAVE_WINDOW_SYSTEM
6667 char *name
= x_get_keysym_name (symbol_num
);
6669 value
= intern (name
);
6676 sprintf (buf
, "key-%d", symbol_num
);
6677 value
= intern (buf
);
6680 if (CONSP (*symbol_table
))
6681 *symbol_table
= Fcons (Fcons (symbol_int
, value
), *symbol_table
);
6683 XVECTOR (*symbol_table
)->contents
[symbol_num
] = value
;
6685 /* Fill in the cache entries for this symbol; this also
6686 builds the Qevent_symbol_elements property, which the user
6688 apply_modifiers (modifiers
& click_modifier
, value
);
6689 Fput (value
, Qevent_kind
, symbol_kind
);
6692 /* Apply modifiers to that symbol. */
6693 return apply_modifiers (modifiers
, value
);
6696 /* Convert a list that represents an event type,
6697 such as (ctrl meta backspace), into the usual representation of that
6698 event type as a number or a symbol. */
6700 DEFUN ("event-convert-list", Fevent_convert_list
, Sevent_convert_list
, 1, 1, 0,
6701 doc
: /* Convert the event description list EVENT-DESC to an event type.
6702 EVENT-DESC should contain one base event type (a character or symbol)
6703 and zero or more modifier names (control, meta, hyper, super, shift, alt,
6704 drag, down, double or triple). The base must be last.
6705 The return value is an event type (a character or symbol) which
6706 has the same base event type and all the specified modifiers. */)
6708 Lisp_Object event_desc
;
6716 while (CONSP (rest
))
6724 /* Given a symbol, see if it is a modifier name. */
6725 if (SYMBOLP (elt
) && CONSP (rest
))
6726 this = parse_solitary_modifier (elt
);
6730 else if (!NILP (base
))
6731 error ("Two bases given in one event");
6737 /* Let the symbol A refer to the character A. */
6738 if (SYMBOLP (base
) && SCHARS (SYMBOL_NAME (base
)) == 1)
6739 XSETINT (base
, SREF (SYMBOL_NAME (base
), 0));
6741 if (INTEGERP (base
))
6743 /* Turn (shift a) into A. */
6744 if ((modifiers
& shift_modifier
) != 0
6745 && (XINT (base
) >= 'a' && XINT (base
) <= 'z'))
6747 XSETINT (base
, XINT (base
) - ('a' - 'A'));
6748 modifiers
&= ~shift_modifier
;
6751 /* Turn (control a) into C-a. */
6752 if (modifiers
& ctrl_modifier
)
6753 return make_number ((modifiers
& ~ctrl_modifier
)
6754 | make_ctrl_char (XINT (base
)));
6756 return make_number (modifiers
| XINT (base
));
6758 else if (SYMBOLP (base
))
6759 return apply_modifiers (modifiers
, base
);
6762 error ("Invalid base event");
6767 /* Try to recognize SYMBOL as a modifier name.
6768 Return the modifier flag bit, or 0 if not recognized. */
6771 parse_solitary_modifier (Lisp_Object symbol
)
6773 Lisp_Object name
= SYMBOL_NAME (symbol
);
6775 switch (SREF (name
, 0))
6777 #define SINGLE_LETTER_MOD(BIT) \
6778 if (SBYTES (name) == 1) \
6781 #define MULTI_LETTER_MOD(BIT, NAME, LEN) \
6782 if (LEN == SBYTES (name) \
6783 && ! strncmp (SDATA (name), NAME, LEN)) \
6787 SINGLE_LETTER_MOD (alt_modifier
);
6791 MULTI_LETTER_MOD (alt_modifier
, "alt", 3);
6795 SINGLE_LETTER_MOD (ctrl_modifier
);
6799 MULTI_LETTER_MOD (ctrl_modifier
, "ctrl", 4);
6800 MULTI_LETTER_MOD (ctrl_modifier
, "control", 7);
6804 SINGLE_LETTER_MOD (hyper_modifier
);
6808 MULTI_LETTER_MOD (hyper_modifier
, "hyper", 5);
6812 SINGLE_LETTER_MOD (meta_modifier
);
6816 MULTI_LETTER_MOD (meta_modifier
, "meta", 4);
6820 SINGLE_LETTER_MOD (shift_modifier
);
6824 MULTI_LETTER_MOD (shift_modifier
, "shift", 5);
6825 MULTI_LETTER_MOD (super_modifier
, "super", 5);
6826 SINGLE_LETTER_MOD (super_modifier
);
6830 MULTI_LETTER_MOD (drag_modifier
, "drag", 4);
6831 MULTI_LETTER_MOD (down_modifier
, "down", 4);
6832 MULTI_LETTER_MOD (double_modifier
, "double", 6);
6836 MULTI_LETTER_MOD (triple_modifier
, "triple", 6);
6839 #undef SINGLE_LETTER_MOD
6840 #undef MULTI_LETTER_MOD
6846 /* Return 1 if EVENT is a list whose elements are all integers or symbols.
6847 Such a list is not valid as an event,
6848 but it can be a Lucid-style event type list. */
6851 lucid_event_type_list_p (object
)
6856 if (! CONSP (object
))
6859 if (EQ (XCAR (object
), Qhelp_echo
)
6860 || EQ (XCAR (object
), Qvertical_line
)
6861 || EQ (XCAR (object
), Qmode_line
)
6862 || EQ (XCAR (object
), Qheader_line
))
6865 for (tail
= object
; CONSP (tail
); tail
= XCDR (tail
))
6869 if (! (INTEGERP (elt
) || SYMBOLP (elt
)))
6876 /* Store into *addr a value nonzero if terminal input chars are available.
6877 Serves the purpose of ioctl (0, FIONREAD, addr)
6878 but works even if FIONREAD does not exist.
6879 (In fact, this may actually read some input.)
6881 If READABLE_EVENTS_DO_TIMERS_NOW is set in FLAGS, actually run
6882 timer events that are ripe.
6883 If READABLE_EVENTS_FILTER_EVENTS is set in FLAGS, ignore internal
6884 events (FOCUS_IN_EVENT).
6885 If READABLE_EVENTS_IGNORE_SQUEEZABLES is set in FLAGS, ignore mouse
6886 movements and toolkit scroll bar thumb drags. */
6889 get_input_pending (addr
, flags
)
6893 /* First of all, have we already counted some input? */
6894 *addr
= (!NILP (Vquit_flag
) || readable_events (flags
));
6896 /* If input is being read as it arrives, and we have none, there is none. */
6897 if (*addr
> 0 || (interrupt_input
&& ! interrupts_deferred
))
6900 /* Try to read some input and see how much we get. */
6902 *addr
= (!NILP (Vquit_flag
) || readable_events (flags
));
6905 /* Interface to read_avail_input, blocking SIGIO or SIGALRM if necessary. */
6908 gobble_input (expected
)
6912 /* Check whether a D-Bus message has arrived. */
6913 xd_read_queued_messages ();
6914 #endif /* HAVE_DBUS */
6917 if (interrupt_input
)
6920 mask
= sigblock (sigmask (SIGIO
));
6921 read_avail_input (expected
);
6925 #ifdef POLL_FOR_INPUT
6926 /* XXX This condition was (read_socket_hook && !interrupt_input),
6927 but read_socket_hook is not global anymore. Let's pretend that
6929 if (!interrupt_input
&& poll_suppress_count
== 0)
6932 mask
= sigblock (sigmask (SIGALRM
));
6933 read_avail_input (expected
);
6939 read_avail_input (expected
);
6942 /* Put a BUFFER_SWITCH_EVENT in the buffer
6943 so that read_key_sequence will notice the new current buffer. */
6946 record_asynch_buffer_change ()
6948 struct input_event event
;
6952 event
.kind
= BUFFER_SWITCH_EVENT
;
6953 event
.frame_or_window
= Qnil
;
6957 /* We don't need a buffer-switch event unless Emacs is waiting for input.
6958 The purpose of the event is to make read_key_sequence look up the
6959 keymaps again. If we aren't in read_key_sequence, we don't need one,
6960 and the event could cause trouble by messing up (input-pending-p). */
6961 tem
= Fwaiting_for_user_input_p ();
6965 /* We never need these events if we have no asynchronous subprocesses. */
6969 /* Make sure no interrupt happens while storing the event. */
6971 if (interrupt_input
)
6974 mask
= sigblock (sigmask (SIGIO
));
6975 kbd_buffer_store_event (&event
);
6982 kbd_buffer_store_event (&event
);
6987 /* Read any terminal input already buffered up by the system
6988 into the kbd_buffer, but do not wait.
6990 EXPECTED should be nonzero if the caller knows there is some input.
6992 Returns the number of keyboard chars read, or -1 meaning
6993 this is a bad time to try to read input. */
6996 read_avail_input (expected
)
7003 /* Store pending user signal events, if any. */
7004 if (store_user_signal_events ())
7007 /* Loop through the available terminals, and call their input hooks. */
7011 struct terminal
*next
= t
->next_terminal
;
7013 if (t
->read_socket_hook
)
7016 struct input_event hold_quit
;
7018 EVENT_INIT (hold_quit
);
7019 hold_quit
.kind
= NO_EVENT
;
7021 /* No need for FIONREAD or fcntl; just say don't wait. */
7022 while (nr
= (*t
->read_socket_hook
) (t
, expected
, &hold_quit
), nr
> 0)
7028 if (nr
== -1) /* Not OK to read input now. */
7032 else if (nr
== -2) /* Non-transient error. */
7034 /* The terminal device terminated; it should be closed. */
7036 /* Kill Emacs if this was our last terminal. */
7037 if (!terminal_list
->next_terminal
)
7038 /* Formerly simply reported no input, but that
7039 sometimes led to a failure of Emacs to terminate.
7040 SIGHUP seems appropriate if we can't reach the
7042 /* ??? Is it really right to send the signal just to
7043 this process rather than to the whole process
7044 group? Perhaps on systems with FIONREAD Emacs is
7045 alone in its group. */
7046 kill (getpid (), SIGHUP
);
7048 /* XXX Is calling delete_terminal safe here? It calls delete_frame. */
7051 XSETTERMINAL (tmp
, t
);
7052 Fdelete_terminal (tmp
, Qnoelisp
);
7056 if (hold_quit
.kind
!= NO_EVENT
)
7057 kbd_buffer_store_event (&hold_quit
);
7069 /* This is the tty way of reading available input.
7071 Note that each terminal device has its own `struct terminal' object,
7072 and so this function is called once for each individual termcap
7073 terminal. The first parameter indicates which terminal to read from. */
7076 tty_read_avail_input (struct terminal
*terminal
,
7078 struct input_event
*hold_quit
)
7080 /* Using KBD_BUFFER_SIZE - 1 here avoids reading more than
7081 the kbd_buffer can really hold. That may prevent loss
7082 of characters on some systems when input is stuffed at us. */
7083 unsigned char cbuf
[KBD_BUFFER_SIZE
- 1];
7085 struct tty_display_info
*tty
= terminal
->display_info
.tty
;
7088 if (!terminal
->name
) /* Don't read from a dead terminal. */
7091 if (terminal
->type
!= output_termcap
7092 && terminal
->type
!= output_msdos_raw
)
7095 /* XXX I think the following code should be moved to separate hook
7096 functions in system-dependent files. */
7099 #else /* not WINDOWSNT */
7100 if (! tty
->term_initted
) /* In case we get called during bootstrap. */
7104 return 0; /* The terminal is suspended. */
7107 n_to_read
= dos_keysns ();
7111 cbuf
[0] = dos_keyread ();
7114 #else /* not MSDOS */
7119 struct input_event hold_quit
;
7122 EVENT_INIT (hold_quit
);
7123 hold_quit
.kind
= NO_EVENT
;
7125 while (gpm
= Gpm_GetEvent (&event
), gpm
== 1) {
7126 nread
+= handle_one_term_event (tty
, &event
, &hold_quit
);
7129 /* Presumably the GPM daemon has closed the connection. */
7131 if (hold_quit
.kind
!= NO_EVENT
)
7132 kbd_buffer_store_event (&hold_quit
);
7136 #endif /* HAVE_GPM */
7138 /* Determine how many characters we should *try* to read. */
7140 /* Find out how much input is available. */
7141 if (ioctl (fileno (tty
->input
), FIONREAD
, &n_to_read
) < 0)
7143 if (! noninteractive
)
7144 return -2; /* Close this terminal. */
7150 if (n_to_read
> sizeof cbuf
)
7151 n_to_read
= sizeof cbuf
;
7152 #else /* no FIONREAD */
7153 #if defined (USG) || defined(CYGWIN)
7154 /* Read some input if available, but don't wait. */
7155 n_to_read
= sizeof cbuf
;
7156 fcntl (fileno (tty
->input
), F_SETFL
, O_NDELAY
);
7162 /* Now read; for one reason or another, this will not block.
7163 NREAD is set to the number of chars read. */
7166 nread
= emacs_read (fileno (tty
->input
), cbuf
, n_to_read
);
7167 /* POSIX infers that processes which are not in the session leader's
7168 process group won't get SIGHUP's at logout time. BSDI adheres to
7169 this part standard and returns -1 from read (0) with errno==EIO
7170 when the control tty is taken away.
7171 Jeffrey Honig <jch@bsdi.com> says this is generally safe. */
7172 if (nread
== -1 && errno
== EIO
)
7173 return -2; /* Close this terminal. */
7174 #if defined (AIX) && defined (_BSD)
7175 /* The kernel sometimes fails to deliver SIGHUP for ptys.
7176 This looks incorrect, but it isn't, because _BSD causes
7177 O_NDELAY to be defined in fcntl.h as O_NONBLOCK,
7178 and that causes a value other than 0 when there is no input. */
7180 return -2; /* Close this terminal. */
7184 /* We used to retry the read if it was interrupted.
7185 But this does the wrong thing when O_NDELAY causes
7186 an EAGAIN error. Does anybody know of a situation
7187 where a retry is actually needed? */
7189 nread
< 0 && (errno
== EAGAIN
7203 #if defined (USG) || defined (CYGWIN)
7204 fcntl (fileno (tty
->input
), F_SETFL
, 0);
7205 #endif /* USG or CYGWIN */
7206 #endif /* no FIONREAD */
7211 #endif /* not MSDOS */
7212 #endif /* not WINDOWSNT */
7214 for (i
= 0; i
< nread
; i
++)
7216 struct input_event buf
;
7218 buf
.kind
= ASCII_KEYSTROKE_EVENT
;
7220 if (tty
->meta_key
== 1 && (cbuf
[i
] & 0x80))
7221 buf
.modifiers
= meta_modifier
;
7222 if (tty
->meta_key
!= 2)
7226 /* Set the frame corresponding to the active tty. Note that the
7227 value of selected_frame is not reliable here, redisplay tends
7228 to temporarily change it. */
7229 buf
.frame_or_window
= tty
->top_frame
;
7232 kbd_buffer_store_event (&buf
);
7233 /* Don't look at input that follows a C-g too closely.
7234 This reduces lossage due to autorepeat on C-g. */
7235 if (buf
.kind
== ASCII_KEYSTROKE_EVENT
7236 && buf
.code
== quit_char
)
7244 handle_async_input ()
7246 interrupt_input_pending
= 0;
7251 nread
= read_avail_input (1);
7252 /* -1 means it's not ok to read the input now.
7253 UNBLOCK_INPUT will read it later; now, avoid infinite loop.
7254 0 means there was no keyboard input available. */
7260 #ifdef SIGIO /* for entire page */
7261 /* Note SIGIO has been undef'd if FIONREAD is missing. */
7264 input_available_signal (signo
)
7267 /* Must preserve main program's value of errno. */
7268 int old_errno
= errno
;
7269 #if defined (USG) && !defined (POSIX_SIGNALS)
7270 /* USG systems forget handlers when they are used;
7271 must reestablish each time */
7272 signal (signo
, input_available_signal
);
7276 interrupt_input_pending
= 1;
7278 SIGNAL_THREAD_CHECK (signo
);
7281 if (input_available_clear_time
)
7282 EMACS_SET_SECS_USECS (*input_available_clear_time
, 0, 0);
7285 handle_async_input ();
7292 /* Send ourselves a SIGIO.
7294 This function exists so that the UNBLOCK_INPUT macro in
7295 blockinput.h can have some way to take care of input we put off
7296 dealing with, without assuming that every file which uses
7297 UNBLOCK_INPUT also has #included the files necessary to get SIGIO. */
7299 reinvoke_input_signal ()
7302 handle_async_input ();
7308 /* User signal events. */
7310 struct user_signal_info
7312 /* Signal number. */
7315 /* Name of the signal. */
7318 /* Number of pending signals. */
7321 struct user_signal_info
*next
;
7324 /* List of user signals. */
7325 static struct user_signal_info
*user_signals
= NULL
;
7328 add_user_signal (sig
, name
)
7332 struct user_signal_info
*p
;
7334 for (p
= user_signals
; p
; p
= p
->next
)
7336 /* Already added. */
7339 p
= xmalloc (sizeof (struct user_signal_info
));
7341 p
->name
= xstrdup (name
);
7343 p
->next
= user_signals
;
7346 signal (sig
, handle_user_signal
);
7350 handle_user_signal (sig
)
7353 int old_errno
= errno
;
7354 struct user_signal_info
*p
;
7356 #if defined (USG) && !defined (POSIX_SIGNALS)
7357 /* USG systems forget handlers when they are used;
7358 must reestablish each time */
7359 signal (sig
, handle_user_signal
);
7362 SIGNAL_THREAD_CHECK (sig
);
7364 for (p
= user_signals
; p
; p
= p
->next
)
7369 if (interrupt_input
)
7370 kill (getpid (), SIGIO
);
7374 /* Tell wait_reading_process_output that it needs to wake
7375 up and look around. */
7376 if (input_available_clear_time
)
7377 EMACS_SET_SECS_USECS (*input_available_clear_time
, 0, 0);
7386 find_user_signal_name (sig
)
7389 struct user_signal_info
*p
;
7391 for (p
= user_signals
; p
; p
= p
->next
)
7399 store_user_signal_events ()
7401 struct user_signal_info
*p
;
7402 struct input_event buf
;
7405 for (p
= user_signals
; p
; p
= p
->next
)
7406 if (p
->npending
> 0)
7412 bzero (&buf
, sizeof buf
);
7413 buf
.kind
= USER_SIGNAL_EVENT
;
7414 buf
.frame_or_window
= selected_frame
;
7416 nstored
+= p
->npending
;
7418 mask
= sigblock (sigmask (p
->sig
));
7422 kbd_buffer_store_event (&buf
);
7425 while (p
->npending
> 0);
7433 static void menu_bar_item
P_ ((Lisp_Object
, Lisp_Object
, Lisp_Object
, void*));
7434 static Lisp_Object menu_bar_one_keymap_changed_items
;
7436 /* These variables hold the vector under construction within
7437 menu_bar_items and its subroutines, and the current index
7438 for storing into that vector. */
7439 static Lisp_Object menu_bar_items_vector
;
7440 static int menu_bar_items_index
;
7442 /* Return a vector of menu items for a menu bar, appropriate
7443 to the current buffer. Each item has three elements in the vector:
7446 OLD is an old vector we can optionally reuse, or nil. */
7449 menu_bar_items (old
)
7452 /* The number of keymaps we're scanning right now, and the number of
7453 keymaps we have allocated space for. */
7456 /* maps[0..nmaps-1] are the prefix definitions of KEYBUF[0..t-1]
7457 in the current keymaps, or nil where it is not a prefix. */
7460 Lisp_Object def
, tail
;
7469 /* In order to build the menus, we need to call the keymap
7470 accessors. They all call QUIT. But this function is called
7471 during redisplay, during which a quit is fatal. So inhibit
7472 quitting while building the menus.
7473 We do this instead of specbind because (1) errors will clear it anyway
7474 and (2) this avoids risk of specpdl overflow. */
7475 oquit
= Vinhibit_quit
;
7479 menu_bar_items_vector
= old
;
7481 menu_bar_items_vector
= Fmake_vector (make_number (24), Qnil
);
7482 menu_bar_items_index
= 0;
7484 /* Build our list of keymaps.
7485 If we recognize a function key and replace its escape sequence in
7486 keybuf with its symbol, or if the sequence starts with a mouse
7487 click and we need to switch buffers, we jump back here to rebuild
7488 the initial keymaps from the current buffer. */
7492 /* Should overriding-terminal-local-map and overriding-local-map apply? */
7493 if (!NILP (Voverriding_local_map_menu_flag
))
7495 /* Yes, use them (if non-nil) as well as the global map. */
7496 maps
= (Lisp_Object
*) alloca (3 * sizeof (maps
[0]));
7498 if (!NILP (current_kboard
->Voverriding_terminal_local_map
))
7499 maps
[nmaps
++] = current_kboard
->Voverriding_terminal_local_map
;
7500 if (!NILP (Voverriding_local_map
))
7501 maps
[nmaps
++] = Voverriding_local_map
;
7505 /* No, so use major and minor mode keymaps and keymap property.
7506 Note that menu-bar bindings in the local-map and keymap
7507 properties may not work reliable, as they are only
7508 recognized when the menu-bar (or mode-line) is updated,
7509 which does not normally happen after every command. */
7512 nminor
= current_minor_maps (NULL
, &tmaps
);
7513 maps
= (Lisp_Object
*) alloca ((nminor
+ 3) * sizeof (maps
[0]));
7515 if (tem
= get_local_map (PT
, current_buffer
, Qkeymap
), !NILP (tem
))
7516 maps
[nmaps
++] = tem
;
7517 bcopy (tmaps
, (void *) (maps
+ nmaps
), nminor
* sizeof (maps
[0]));
7519 maps
[nmaps
++] = get_local_map (PT
, current_buffer
, Qlocal_map
);
7521 maps
[nmaps
++] = current_global_map
;
7524 /* Look up in each map the dummy prefix key `menu-bar'. */
7528 for (mapno
= nmaps
- 1; mapno
>= 0; mapno
--)
7529 if (!NILP (maps
[mapno
]))
7531 def
= get_keymap (access_keymap (maps
[mapno
], Qmenu_bar
, 1, 0, 1),
7535 menu_bar_one_keymap_changed_items
= Qnil
;
7536 map_keymap (def
, menu_bar_item
, Qnil
, NULL
, 1);
7540 /* Move to the end those items that should be at the end. */
7542 for (tail
= Vmenu_bar_final_items
; CONSP (tail
); tail
= XCDR (tail
))
7545 int end
= menu_bar_items_index
;
7547 for (i
= 0; i
< end
; i
+= 4)
7548 if (EQ (XCAR (tail
), XVECTOR (menu_bar_items_vector
)->contents
[i
]))
7550 Lisp_Object tem0
, tem1
, tem2
, tem3
;
7551 /* Move the item at index I to the end,
7552 shifting all the others forward. */
7553 tem0
= XVECTOR (menu_bar_items_vector
)->contents
[i
+ 0];
7554 tem1
= XVECTOR (menu_bar_items_vector
)->contents
[i
+ 1];
7555 tem2
= XVECTOR (menu_bar_items_vector
)->contents
[i
+ 2];
7556 tem3
= XVECTOR (menu_bar_items_vector
)->contents
[i
+ 3];
7558 bcopy (&XVECTOR (menu_bar_items_vector
)->contents
[i
+ 4],
7559 &XVECTOR (menu_bar_items_vector
)->contents
[i
],
7560 (end
- i
- 4) * sizeof (Lisp_Object
));
7561 XVECTOR (menu_bar_items_vector
)->contents
[end
- 4] = tem0
;
7562 XVECTOR (menu_bar_items_vector
)->contents
[end
- 3] = tem1
;
7563 XVECTOR (menu_bar_items_vector
)->contents
[end
- 2] = tem2
;
7564 XVECTOR (menu_bar_items_vector
)->contents
[end
- 1] = tem3
;
7569 /* Add nil, nil, nil, nil at the end. */
7570 i
= menu_bar_items_index
;
7571 if (i
+ 4 > XVECTOR (menu_bar_items_vector
)->size
)
7572 menu_bar_items_vector
= larger_vector (menu_bar_items_vector
, 2 * i
, Qnil
);
7573 /* Add this item. */
7574 XVECTOR (menu_bar_items_vector
)->contents
[i
++] = Qnil
;
7575 XVECTOR (menu_bar_items_vector
)->contents
[i
++] = Qnil
;
7576 XVECTOR (menu_bar_items_vector
)->contents
[i
++] = Qnil
;
7577 XVECTOR (menu_bar_items_vector
)->contents
[i
++] = Qnil
;
7578 menu_bar_items_index
= i
;
7580 Vinhibit_quit
= oquit
;
7581 return menu_bar_items_vector
;
7584 /* Add one item to menu_bar_items_vector, for KEY, ITEM_STRING and DEF.
7585 If there's already an item for KEY, add this DEF to it. */
7587 Lisp_Object item_properties
;
7590 menu_bar_item (key
, item
, dummy1
, dummy2
)
7591 Lisp_Object key
, item
, dummy1
;
7594 struct gcpro gcpro1
;
7598 if (EQ (item
, Qundefined
))
7600 /* If a map has an explicit `undefined' as definition,
7601 discard any previously made menu bar item. */
7603 for (i
= 0; i
< menu_bar_items_index
; i
+= 4)
7604 if (EQ (key
, XVECTOR (menu_bar_items_vector
)->contents
[i
]))
7606 if (menu_bar_items_index
> i
+ 4)
7607 bcopy (&XVECTOR (menu_bar_items_vector
)->contents
[i
+ 4],
7608 &XVECTOR (menu_bar_items_vector
)->contents
[i
],
7609 (menu_bar_items_index
- i
- 4) * sizeof (Lisp_Object
));
7610 menu_bar_items_index
-= 4;
7614 /* If this keymap has already contributed to this KEY,
7615 don't contribute to it a second time. */
7616 tem
= Fmemq (key
, menu_bar_one_keymap_changed_items
);
7617 if (!NILP (tem
) || NILP (item
))
7620 menu_bar_one_keymap_changed_items
7621 = Fcons (key
, menu_bar_one_keymap_changed_items
);
7623 /* We add to menu_bar_one_keymap_changed_items before doing the
7624 parse_menu_item, so that if it turns out it wasn't a menu item,
7625 it still correctly hides any further menu item. */
7627 i
= parse_menu_item (item
, 0, 1);
7632 item
= XVECTOR (item_properties
)->contents
[ITEM_PROPERTY_DEF
];
7634 /* Find any existing item for this KEY. */
7635 for (i
= 0; i
< menu_bar_items_index
; i
+= 4)
7636 if (EQ (key
, XVECTOR (menu_bar_items_vector
)->contents
[i
]))
7639 /* If we did not find this KEY, add it at the end. */
7640 if (i
== menu_bar_items_index
)
7642 /* If vector is too small, get a bigger one. */
7643 if (i
+ 4 > XVECTOR (menu_bar_items_vector
)->size
)
7644 menu_bar_items_vector
= larger_vector (menu_bar_items_vector
, 2 * i
, Qnil
);
7645 /* Add this item. */
7646 XVECTOR (menu_bar_items_vector
)->contents
[i
++] = key
;
7647 XVECTOR (menu_bar_items_vector
)->contents
[i
++]
7648 = XVECTOR (item_properties
)->contents
[ITEM_PROPERTY_NAME
];
7649 XVECTOR (menu_bar_items_vector
)->contents
[i
++] = Fcons (item
, Qnil
);
7650 XVECTOR (menu_bar_items_vector
)->contents
[i
++] = make_number (0);
7651 menu_bar_items_index
= i
;
7653 /* We did find an item for this KEY. Add ITEM to its list of maps. */
7657 old
= XVECTOR (menu_bar_items_vector
)->contents
[i
+ 2];
7658 /* If the new and the old items are not both keymaps,
7659 the lookup will only find `item'. */
7660 item
= Fcons (item
, KEYMAPP (item
) && KEYMAPP (XCAR (old
)) ? old
: Qnil
);
7661 XVECTOR (menu_bar_items_vector
)->contents
[i
+ 2] = item
;
7665 /* This is used as the handler when calling menu_item_eval_property. */
7667 menu_item_eval_property_1 (arg
)
7670 /* If we got a quit from within the menu computation,
7671 quit all the way out of it. This takes care of C-] in the debugger. */
7672 if (CONSP (arg
) && EQ (XCAR (arg
), Qquit
))
7673 Fsignal (Qquit
, Qnil
);
7678 /* Evaluate an expression and return the result (or nil if something
7679 went wrong). Used to evaluate dynamic parts of menu items. */
7681 menu_item_eval_property (sexpr
)
7684 int count
= SPECPDL_INDEX ();
7686 specbind (Qinhibit_redisplay
, Qt
);
7687 val
= internal_condition_case_1 (Feval
, sexpr
, Qerror
,
7688 menu_item_eval_property_1
);
7689 return unbind_to (count
, val
);
7692 /* This function parses a menu item and leaves the result in the
7693 vector item_properties.
7694 ITEM is a key binding, a possible menu item.
7695 If NOTREAL is nonzero, only check for equivalent key bindings, don't
7696 evaluate dynamic expressions in the menu item.
7697 INMENUBAR is > 0 when this is considered for an entry in a menu bar
7699 INMENUBAR is < 0 when this is considered for an entry in a keyboard menu.
7700 parse_menu_item returns true if the item is a menu item and false
7704 parse_menu_item (item
, notreal
, inmenubar
)
7706 int notreal
, inmenubar
;
7708 Lisp_Object def
, tem
, item_string
, start
;
7709 Lisp_Object cachelist
;
7711 Lisp_Object keyhint
;
7722 /* Create item_properties vector if necessary. */
7723 if (NILP (item_properties
))
7725 = Fmake_vector (make_number (ITEM_PROPERTY_ENABLE
+ 1), Qnil
);
7727 /* Initialize optional entries. */
7728 for (i
= ITEM_PROPERTY_DEF
; i
< ITEM_PROPERTY_ENABLE
; i
++)
7729 ASET (item_properties
, i
, Qnil
);
7730 ASET (item_properties
, ITEM_PROPERTY_ENABLE
, Qt
);
7732 /* Save the item here to protect it from GC. */
7733 ASET (item_properties
, ITEM_PROPERTY_ITEM
, item
);
7735 item_string
= XCAR (item
);
7739 if (STRINGP (item_string
))
7741 /* Old format menu item. */
7742 ASET (item_properties
, ITEM_PROPERTY_NAME
, item_string
);
7744 /* Maybe help string. */
7745 if (CONSP (item
) && STRINGP (XCAR (item
)))
7747 ASET (item_properties
, ITEM_PROPERTY_HELP
, XCAR (item
));
7752 /* Maybe key binding cache. */
7753 if (CONSP (item
) && CONSP (XCAR (item
))
7754 && (NILP (XCAR (XCAR (item
)))
7755 || VECTORP (XCAR (XCAR (item
)))))
7757 cachelist
= XCAR (item
);
7761 /* This is the real definition--the function to run. */
7762 ASET (item_properties
, ITEM_PROPERTY_DEF
, item
);
7764 /* Get enable property, if any. */
7767 tem
= Fget (item
, Qmenu_enable
);
7768 if (!NILP (Venable_disabled_menus_and_buttons
))
7769 ASET (item_properties
, ITEM_PROPERTY_ENABLE
, Qt
);
7770 else if (!NILP (tem
))
7771 ASET (item_properties
, ITEM_PROPERTY_ENABLE
, tem
);
7774 else if (EQ (item_string
, Qmenu_item
) && CONSP (item
))
7776 /* New format menu item. */
7777 ASET (item_properties
, ITEM_PROPERTY_NAME
, XCAR (item
));
7778 start
= XCDR (item
);
7781 /* We have a real binding. */
7782 ASET (item_properties
, ITEM_PROPERTY_DEF
, XCAR (start
));
7784 item
= XCDR (start
);
7785 /* Is there a cache list with key equivalences. */
7786 if (CONSP (item
) && CONSP (XCAR (item
)))
7788 cachelist
= XCAR (item
);
7792 /* Parse properties. */
7793 while (CONSP (item
) && CONSP (XCDR (item
)))
7798 if (EQ (tem
, QCenable
))
7800 if (!NILP (Venable_disabled_menus_and_buttons
))
7801 ASET (item_properties
, ITEM_PROPERTY_ENABLE
, Qt
);
7803 ASET (item_properties
, ITEM_PROPERTY_ENABLE
, XCAR (item
));
7805 else if (EQ (tem
, QCvisible
) && !notreal
)
7807 /* If got a visible property and that evaluates to nil
7808 then ignore this item. */
7809 tem
= menu_item_eval_property (XCAR (item
));
7813 else if (EQ (tem
, QChelp
))
7814 ASET (item_properties
, ITEM_PROPERTY_HELP
, XCAR (item
));
7815 else if (EQ (tem
, QCfilter
))
7817 else if (EQ (tem
, QCkey_sequence
))
7820 if (NILP (cachelist
)
7821 && (SYMBOLP (tem
) || STRINGP (tem
) || VECTORP (tem
)))
7822 /* Be GC protected. Set keyhint to item instead of tem. */
7825 else if (EQ (tem
, QCkeys
))
7828 if (CONSP (tem
) || (STRINGP (tem
) && NILP (cachelist
)))
7829 ASET (item_properties
, ITEM_PROPERTY_KEYEQ
, tem
);
7831 else if (EQ (tem
, QCbutton
) && CONSP (XCAR (item
)))
7836 if (EQ (type
, QCtoggle
) || EQ (type
, QCradio
))
7838 ASET (item_properties
, ITEM_PROPERTY_SELECTED
,
7840 ASET (item_properties
, ITEM_PROPERTY_TYPE
, type
);
7846 else if (inmenubar
|| !NILP (start
))
7850 return 0; /* not a menu item */
7852 /* If item string is not a string, evaluate it to get string.
7853 If we don't get a string, skip this item. */
7854 item_string
= AREF (item_properties
, ITEM_PROPERTY_NAME
);
7855 if (!(STRINGP (item_string
) || notreal
))
7857 item_string
= menu_item_eval_property (item_string
);
7858 if (!STRINGP (item_string
))
7860 ASET (item_properties
, ITEM_PROPERTY_NAME
, item_string
);
7863 /* If got a filter apply it on definition. */
7864 def
= AREF (item_properties
, ITEM_PROPERTY_DEF
);
7867 def
= menu_item_eval_property (list2 (XCAR (filter
),
7868 list2 (Qquote
, def
)));
7870 ASET (item_properties
, ITEM_PROPERTY_DEF
, def
);
7873 /* Enable or disable selection of item. */
7874 tem
= AREF (item_properties
, ITEM_PROPERTY_ENABLE
);
7880 tem
= menu_item_eval_property (tem
);
7881 if (inmenubar
&& NILP (tem
))
7882 return 0; /* Ignore disabled items in menu bar. */
7883 ASET (item_properties
, ITEM_PROPERTY_ENABLE
, tem
);
7886 /* If we got no definition, this item is just unselectable text which
7887 is OK in a submenu but not in the menubar. */
7889 return (inmenubar
? 0 : 1);
7891 /* See if this is a separate pane or a submenu. */
7892 def
= AREF (item_properties
, ITEM_PROPERTY_DEF
);
7893 tem
= get_keymap (def
, 0, 1);
7894 /* For a subkeymap, just record its details and exit. */
7897 ASET (item_properties
, ITEM_PROPERTY_MAP
, tem
);
7898 ASET (item_properties
, ITEM_PROPERTY_DEF
, tem
);
7902 /* At the top level in the menu bar, do likewise for commands also.
7903 The menu bar does not display equivalent key bindings anyway.
7904 ITEM_PROPERTY_DEF is already set up properly. */
7908 /* This is a command. See if there is an equivalent key binding. */
7909 if (NILP (cachelist
))
7911 /* We have to create a cachelist. */
7912 /* With the introduction of where_is_cache, the computation
7913 of equivalent key bindings is sufficiently fast that we
7914 do not need to cache it here any more. */
7915 /* CHECK_IMPURE (start);
7916 XSETCDR (start, Fcons (Fcons (Qnil, Qnil), XCDR (start)));
7917 cachelist = XCAR (XCDR (start)); */
7918 cachelist
= Fcons (Qnil
, Qnil
);
7920 tem
= AREF (item_properties
, ITEM_PROPERTY_KEYEQ
);
7921 if (!NILP (keyhint
))
7923 XSETCAR (cachelist
, XCAR (keyhint
));
7926 else if (STRINGP (tem
))
7928 XSETCDR (cachelist
, Fsubstitute_command_keys (tem
));
7929 XSETCAR (cachelist
, Qt
);
7933 tem
= XCAR (cachelist
);
7940 tem
= Fkey_binding (tem
, Qnil
, Qnil
, Qnil
);
7942 prefix
= AREF (item_properties
, ITEM_PROPERTY_KEYEQ
);
7945 def
= XCAR (prefix
);
7946 prefix
= XCDR (prefix
);
7949 def
= AREF (item_properties
, ITEM_PROPERTY_DEF
);
7951 if (NILP (XCAR (cachelist
))) /* Have no saved key. */
7953 if (newcache
/* Always check first time. */
7954 /* Should we check everything when precomputing key
7956 /* If something had no key binding before, don't recheck it
7957 because that is too slow--except if we have a list of
7958 rebound commands in Vdefine_key_rebound_commands, do
7959 recheck any command that appears in that list. */
7960 || (CONSP (Vdefine_key_rebound_commands
)
7961 && !NILP (Fmemq (def
, Vdefine_key_rebound_commands
))))
7964 /* We had a saved key. Is it still bound to the command? */
7967 /* If the command is an alias for another
7968 (such as lmenu.el set it up), check if the
7969 original command matches the cached command. */
7970 && !(SYMBOLP (def
) && EQ (tem
, XSYMBOL (def
)->function
))))
7971 chkcache
= 1; /* Need to recompute key binding. */
7975 /* Recompute equivalent key binding. If the command is an alias
7976 for another (such as lmenu.el set it up), see if the original
7977 command name has equivalent keys. Otherwise look up the
7978 specified command itself. We don't try both, because that
7979 makes lmenu menus slow. */
7981 && SYMBOLP (XSYMBOL (def
)->function
)
7982 && ! NILP (Fget (def
, Qmenu_alias
)))
7983 def
= XSYMBOL (def
)->function
;
7984 tem
= Fwhere_is_internal (def
, Qnil
, Qt
, Qnil
, Qt
);
7985 XSETCAR (cachelist
, tem
);
7988 XSETCDR (cachelist
, Qnil
);
7992 else if (!NILP (keyhint
) && !NILP (XCAR (cachelist
)))
7994 tem
= XCAR (cachelist
);
7998 newcache
= chkcache
;
8001 tem
= Fkey_description (tem
, Qnil
);
8004 if (STRINGP (XCAR (prefix
)))
8005 tem
= concat2 (XCAR (prefix
), tem
);
8006 if (STRINGP (XCDR (prefix
)))
8007 tem
= concat2 (tem
, XCDR (prefix
));
8009 XSETCDR (cachelist
, tem
);
8013 tem
= XCDR (cachelist
);
8014 if (newcache
&& !NILP (tem
))
8016 tem
= concat2 (build_string (" "), tem
);
8017 /* tem = concat3 (build_string (" ("), tem, build_string (")")); */
8018 XSETCDR (cachelist
, tem
);
8021 /* If we only want to precompute equivalent key bindings, stop here. */
8025 /* If we have an equivalent key binding, use that. */
8026 ASET (item_properties
, ITEM_PROPERTY_KEYEQ
, tem
);
8028 /* Include this when menu help is implemented.
8029 tem = XVECTOR (item_properties)->contents[ITEM_PROPERTY_HELP];
8030 if (!(NILP (tem) || STRINGP (tem)))
8032 tem = menu_item_eval_property (tem);
8035 XVECTOR (item_properties)->contents[ITEM_PROPERTY_HELP] = tem;
8039 /* Handle radio buttons or toggle boxes. */
8040 tem
= AREF (item_properties
, ITEM_PROPERTY_SELECTED
);
8042 ASET (item_properties
, ITEM_PROPERTY_SELECTED
,
8043 menu_item_eval_property (tem
));
8050 /***********************************************************************
8052 ***********************************************************************/
8054 /* A vector holding tool bar items while they are parsed in function
8055 tool_bar_items. Each item occupies TOOL_BAR_ITEM_NSCLOTS elements
8058 static Lisp_Object tool_bar_items_vector
;
8060 /* A vector holding the result of parse_tool_bar_item. Layout is like
8061 the one for a single item in tool_bar_items_vector. */
8063 static Lisp_Object tool_bar_item_properties
;
8065 /* Next free index in tool_bar_items_vector. */
8067 static int ntool_bar_items
;
8069 /* The symbols `tool-bar', `:image' and `:rtl'. */
8071 extern Lisp_Object Qtool_bar
;
8072 Lisp_Object QCimage
;
8075 /* Function prototypes. */
8077 static void init_tool_bar_items
P_ ((Lisp_Object
));
8078 static void process_tool_bar_item
P_ ((Lisp_Object
, Lisp_Object
, Lisp_Object
, void*));
8079 static int parse_tool_bar_item
P_ ((Lisp_Object
, Lisp_Object
));
8080 static void append_tool_bar_item
P_ ((void));
8083 /* Return a vector of tool bar items for keymaps currently in effect.
8084 Reuse vector REUSE if non-nil. Return in *NITEMS the number of
8085 tool bar items found. */
8088 tool_bar_items (reuse
, nitems
)
8099 /* In order to build the menus, we need to call the keymap
8100 accessors. They all call QUIT. But this function is called
8101 during redisplay, during which a quit is fatal. So inhibit
8102 quitting while building the menus. We do this instead of
8103 specbind because (1) errors will clear it anyway and (2) this
8104 avoids risk of specpdl overflow. */
8105 oquit
= Vinhibit_quit
;
8108 /* Initialize tool_bar_items_vector and protect it from GC. */
8109 init_tool_bar_items (reuse
);
8111 /* Build list of keymaps in maps. Set nmaps to the number of maps
8114 /* Should overriding-terminal-local-map and overriding-local-map apply? */
8115 if (!NILP (Voverriding_local_map_menu_flag
))
8117 /* Yes, use them (if non-nil) as well as the global map. */
8118 maps
= (Lisp_Object
*) alloca (3 * sizeof (maps
[0]));
8120 if (!NILP (current_kboard
->Voverriding_terminal_local_map
))
8121 maps
[nmaps
++] = current_kboard
->Voverriding_terminal_local_map
;
8122 if (!NILP (Voverriding_local_map
))
8123 maps
[nmaps
++] = Voverriding_local_map
;
8127 /* No, so use major and minor mode keymaps and keymap property.
8128 Note that tool-bar bindings in the local-map and keymap
8129 properties may not work reliable, as they are only
8130 recognized when the tool-bar (or mode-line) is updated,
8131 which does not normally happen after every command. */
8134 nminor
= current_minor_maps (NULL
, &tmaps
);
8135 maps
= (Lisp_Object
*) alloca ((nminor
+ 3) * sizeof (maps
[0]));
8137 if (tem
= get_local_map (PT
, current_buffer
, Qkeymap
), !NILP (tem
))
8138 maps
[nmaps
++] = tem
;
8139 bcopy (tmaps
, (void *) (maps
+ nmaps
), nminor
* sizeof (maps
[0]));
8141 maps
[nmaps
++] = get_local_map (PT
, current_buffer
, Qlocal_map
);
8144 /* Add global keymap at the end. */
8145 maps
[nmaps
++] = current_global_map
;
8147 /* Process maps in reverse order and look up in each map the prefix
8149 for (i
= nmaps
- 1; i
>= 0; --i
)
8150 if (!NILP (maps
[i
]))
8154 keymap
= get_keymap (access_keymap (maps
[i
], Qtool_bar
, 1, 0, 1), 0, 1);
8156 map_keymap (keymap
, process_tool_bar_item
, Qnil
, NULL
, 1);
8159 Vinhibit_quit
= oquit
;
8160 *nitems
= ntool_bar_items
/ TOOL_BAR_ITEM_NSLOTS
;
8161 return tool_bar_items_vector
;
8165 /* Process the definition of KEY which is DEF. */
8168 process_tool_bar_item (key
, def
, data
, args
)
8169 Lisp_Object key
, def
, data
;
8173 extern Lisp_Object Qundefined
;
8174 struct gcpro gcpro1
, gcpro2
;
8176 /* Protect KEY and DEF from GC because parse_tool_bar_item may call
8180 if (EQ (def
, Qundefined
))
8182 /* If a map has an explicit `undefined' as definition,
8183 discard any previously made item. */
8184 for (i
= 0; i
< ntool_bar_items
; i
+= TOOL_BAR_ITEM_NSLOTS
)
8186 Lisp_Object
*v
= XVECTOR (tool_bar_items_vector
)->contents
+ i
;
8188 if (EQ (key
, v
[TOOL_BAR_ITEM_KEY
]))
8190 if (ntool_bar_items
> i
+ TOOL_BAR_ITEM_NSLOTS
)
8191 bcopy (v
+ TOOL_BAR_ITEM_NSLOTS
, v
,
8192 ((ntool_bar_items
- i
- TOOL_BAR_ITEM_NSLOTS
)
8193 * sizeof (Lisp_Object
)));
8194 ntool_bar_items
-= TOOL_BAR_ITEM_NSLOTS
;
8199 else if (parse_tool_bar_item (key
, def
))
8200 /* Append a new tool bar item to tool_bar_items_vector. Accept
8201 more than one definition for the same key. */
8202 append_tool_bar_item ();
8208 /* Parse a tool bar item specification ITEM for key KEY and return the
8209 result in tool_bar_item_properties. Value is zero if ITEM is
8212 ITEM is a list `(menu-item CAPTION BINDING PROPS...)'.
8214 CAPTION is the caption of the item, If it's not a string, it is
8215 evaluated to get a string.
8217 BINDING is the tool bar item's binding. Tool-bar items with keymaps
8218 as binding are currently ignored.
8220 The following properties are recognized:
8224 FORM is evaluated and specifies whether the tool bar item is
8225 enabled or disabled.
8229 FORM is evaluated and specifies whether the tool bar item is visible.
8231 - `:filter FUNCTION'
8233 FUNCTION is invoked with one parameter `(quote BINDING)'. Its
8234 result is stored as the new binding.
8236 - `:button (TYPE SELECTED)'
8238 TYPE must be one of `:radio' or `:toggle'. SELECTED is evaluated
8239 and specifies whether the button is selected (pressed) or not.
8243 IMAGES is either a single image specification or a vector of four
8244 image specifications. See enum tool_bar_item_images.
8246 - `:help HELP-STRING'.
8248 Gives a help string to display for the tool bar item. */
8251 parse_tool_bar_item (key
, item
)
8252 Lisp_Object key
, item
;
8254 /* Access slot with index IDX of vector tool_bar_item_properties. */
8255 #define PROP(IDX) XVECTOR (tool_bar_item_properties)->contents[IDX]
8257 Lisp_Object filter
= Qnil
;
8258 Lisp_Object caption
;
8261 /* Defininition looks like `(menu-item CAPTION BINDING PROPS...)'.
8262 Rule out items that aren't lists, don't start with
8263 `menu-item' or whose rest following `tool-bar-item' is not a
8266 || !EQ (XCAR (item
), Qmenu_item
)
8267 || (item
= XCDR (item
),
8271 /* Create tool_bar_item_properties vector if necessary. Reset it to
8273 if (VECTORP (tool_bar_item_properties
))
8275 for (i
= 0; i
< TOOL_BAR_ITEM_NSLOTS
; ++i
)
8279 tool_bar_item_properties
8280 = Fmake_vector (make_number (TOOL_BAR_ITEM_NSLOTS
), Qnil
);
8283 PROP (TOOL_BAR_ITEM_KEY
) = key
;
8284 PROP (TOOL_BAR_ITEM_ENABLED_P
) = Qt
;
8286 /* Get the caption of the item. If the caption is not a string,
8287 evaluate it to get a string. If we don't get a string, skip this
8289 caption
= XCAR (item
);
8290 if (!STRINGP (caption
))
8292 caption
= menu_item_eval_property (caption
);
8293 if (!STRINGP (caption
))
8296 PROP (TOOL_BAR_ITEM_CAPTION
) = caption
;
8298 /* Give up if rest following the caption is not a list. */
8303 /* Store the binding. */
8304 PROP (TOOL_BAR_ITEM_BINDING
) = XCAR (item
);
8307 /* Ignore cached key binding, if any. */
8308 if (CONSP (item
) && CONSP (XCAR (item
)))
8311 /* Process the rest of the properties. */
8312 for (; CONSP (item
) && CONSP (XCDR (item
)); item
= XCDR (XCDR (item
)))
8314 Lisp_Object key
, value
;
8317 value
= XCAR (XCDR (item
));
8319 if (EQ (key
, QCenable
))
8321 /* `:enable FORM'. */
8322 if (!NILP (Venable_disabled_menus_and_buttons
))
8323 PROP (TOOL_BAR_ITEM_ENABLED_P
) = Qt
;
8325 PROP (TOOL_BAR_ITEM_ENABLED_P
) = value
;
8327 else if (EQ (key
, QCvisible
))
8329 /* `:visible FORM'. If got a visible property and that
8330 evaluates to nil then ignore this item. */
8331 if (NILP (menu_item_eval_property (value
)))
8334 else if (EQ (key
, QChelp
))
8335 /* `:help HELP-STRING'. */
8336 PROP (TOOL_BAR_ITEM_HELP
) = value
;
8337 else if (EQ (key
, QCfilter
))
8338 /* ':filter FORM'. */
8340 else if (EQ (key
, QCbutton
) && CONSP (value
))
8342 /* `:button (TYPE . SELECTED)'. */
8343 Lisp_Object type
, selected
;
8345 type
= XCAR (value
);
8346 selected
= XCDR (value
);
8347 if (EQ (type
, QCtoggle
) || EQ (type
, QCradio
))
8349 PROP (TOOL_BAR_ITEM_SELECTED_P
) = selected
;
8350 PROP (TOOL_BAR_ITEM_TYPE
) = type
;
8353 else if (EQ (key
, QCimage
)
8355 || (VECTORP (value
) && XVECTOR (value
)->size
== 4)))
8356 /* Value is either a single image specification or a vector
8357 of 4 such specifications for the different button states. */
8358 PROP (TOOL_BAR_ITEM_IMAGES
) = value
;
8359 else if (EQ (key
, Qrtl
))
8361 PROP (TOOL_BAR_ITEM_RTL_IMAGE
) = value
;
8364 /* If got a filter apply it on binding. */
8366 PROP (TOOL_BAR_ITEM_BINDING
)
8367 = menu_item_eval_property (list2 (filter
,
8369 PROP (TOOL_BAR_ITEM_BINDING
))));
8371 /* See if the binding is a keymap. Give up if it is. */
8372 if (CONSP (get_keymap (PROP (TOOL_BAR_ITEM_BINDING
), 0, 1)))
8375 /* Enable or disable selection of item. */
8376 if (!EQ (PROP (TOOL_BAR_ITEM_ENABLED_P
), Qt
))
8377 PROP (TOOL_BAR_ITEM_ENABLED_P
)
8378 = menu_item_eval_property (PROP (TOOL_BAR_ITEM_ENABLED_P
));
8380 /* Handle radio buttons or toggle boxes. */
8381 if (!NILP (PROP (TOOL_BAR_ITEM_SELECTED_P
)))
8382 PROP (TOOL_BAR_ITEM_SELECTED_P
)
8383 = menu_item_eval_property (PROP (TOOL_BAR_ITEM_SELECTED_P
));
8391 /* Initialize tool_bar_items_vector. REUSE, if non-nil, is a vector
8392 that can be reused. */
8395 init_tool_bar_items (reuse
)
8398 if (VECTORP (reuse
))
8399 tool_bar_items_vector
= reuse
;
8401 tool_bar_items_vector
= Fmake_vector (make_number (64), Qnil
);
8402 ntool_bar_items
= 0;
8406 /* Append parsed tool bar item properties from
8407 tool_bar_item_properties */
8410 append_tool_bar_item ()
8412 Lisp_Object
*to
, *from
;
8414 /* Enlarge tool_bar_items_vector if necessary. */
8415 if (ntool_bar_items
+ TOOL_BAR_ITEM_NSLOTS
8416 >= XVECTOR (tool_bar_items_vector
)->size
)
8417 tool_bar_items_vector
8418 = larger_vector (tool_bar_items_vector
,
8419 2 * XVECTOR (tool_bar_items_vector
)->size
, Qnil
);
8421 /* Append entries from tool_bar_item_properties to the end of
8422 tool_bar_items_vector. */
8423 to
= XVECTOR (tool_bar_items_vector
)->contents
+ ntool_bar_items
;
8424 from
= XVECTOR (tool_bar_item_properties
)->contents
;
8425 bcopy (from
, to
, TOOL_BAR_ITEM_NSLOTS
* sizeof *to
);
8426 ntool_bar_items
+= TOOL_BAR_ITEM_NSLOTS
;
8433 /* Read a character using menus based on maps in the array MAPS.
8434 NMAPS is the length of MAPS. Return nil if there are no menus in the maps.
8435 Return t if we displayed a menu but the user rejected it.
8437 PREV_EVENT is the previous input event, or nil if we are reading
8438 the first event of a key sequence.
8440 If USED_MOUSE_MENU is non-null, then we set *USED_MOUSE_MENU to 1
8441 if we used a mouse menu to read the input, or zero otherwise. If
8442 USED_MOUSE_MENU is null, we don't dereference it.
8444 The prompting is done based on the prompt-string of the map
8445 and the strings associated with various map elements.
8447 This can be done with X menus or with menus put in the minibuf.
8448 These are done in different ways, depending on how the input will be read.
8449 Menus using X are done after auto-saving in read-char, getting the input
8450 event from Fx_popup_menu; menus using the minibuf use read_char recursively
8451 and do auto-saving in the inner call of read_char. */
8454 read_char_x_menu_prompt (nmaps
, maps
, prev_event
, used_mouse_menu
)
8457 Lisp_Object prev_event
;
8458 int *used_mouse_menu
;
8461 register Lisp_Object name
= Qnil
;
8463 if (used_mouse_menu
)
8464 *used_mouse_menu
= 0;
8466 /* Use local over global Menu maps */
8468 if (! menu_prompting
)
8471 /* Optionally disregard all but the global map. */
8472 if (inhibit_local_menu_bar_menus
)
8474 maps
+= (nmaps
- 1);
8478 /* Get the menu name from the first map that has one (a prompt string). */
8479 for (mapno
= 0; mapno
< nmaps
; mapno
++)
8481 name
= Fkeymap_prompt (maps
[mapno
]);
8486 /* If we don't have any menus, just read a character normally. */
8487 if (!STRINGP (name
))
8491 /* If we got to this point via a mouse click,
8492 use a real menu for mouse selection. */
8493 if (EVENT_HAS_PARAMETERS (prev_event
)
8494 && !EQ (XCAR (prev_event
), Qmenu_bar
)
8495 && !EQ (XCAR (prev_event
), Qtool_bar
))
8497 /* Display the menu and get the selection. */
8498 Lisp_Object
*realmaps
8499 = (Lisp_Object
*) alloca (nmaps
* sizeof (Lisp_Object
));
8503 /* Use the maps that are not nil. */
8504 for (mapno
= 0; mapno
< nmaps
; mapno
++)
8505 if (!NILP (maps
[mapno
]))
8506 realmaps
[nmaps1
++] = maps
[mapno
];
8508 value
= Fx_popup_menu (prev_event
, Flist (nmaps1
, realmaps
));
8513 record_menu_key (XCAR (value
));
8515 /* If we got multiple events, unread all but
8517 There is no way to prevent those unread events
8518 from showing up later in last_nonmenu_event.
8519 So turn symbol and integer events into lists,
8520 to indicate that they came from a mouse menu,
8521 so that when present in last_nonmenu_event
8522 they won't confuse things. */
8523 for (tem
= XCDR (value
); CONSP (tem
); tem
= XCDR (tem
))
8525 record_menu_key (XCAR (tem
));
8526 if (SYMBOLP (XCAR (tem
))
8527 || INTEGERP (XCAR (tem
)))
8528 XSETCAR (tem
, Fcons (XCAR (tem
), Qdisabled
));
8531 /* If we got more than one event, put all but the first
8532 onto this list to be read later.
8533 Return just the first event now. */
8534 Vunread_command_events
8535 = nconc2 (XCDR (value
), Vunread_command_events
);
8536 value
= XCAR (value
);
8538 else if (NILP (value
))
8540 if (used_mouse_menu
)
8541 *used_mouse_menu
= 1;
8544 #endif /* HAVE_MENUS */
8548 /* Buffer in use so far for the minibuf prompts for menu keymaps.
8549 We make this bigger when necessary, and never free it. */
8550 static char *read_char_minibuf_menu_text
;
8551 /* Size of that buffer. */
8552 static int read_char_minibuf_menu_width
;
8555 read_char_minibuf_menu_prompt (commandflag
, nmaps
, maps
)
8561 register Lisp_Object name
;
8563 /* FIXME: Use the minibuffer's frame width. */
8564 int width
= FRAME_COLS (SELECTED_FRAME ()) - 4;
8567 Lisp_Object rest
, vector
;
8573 if (! menu_prompting
)
8576 /* Get the menu name from the first map that has one (a prompt string). */
8577 for (mapno
= 0; mapno
< nmaps
; mapno
++)
8579 name
= Fkeymap_prompt (maps
[mapno
]);
8584 /* If we don't have any menus, just read a character normally. */
8585 if (!STRINGP (name
))
8588 /* Make sure we have a big enough buffer for the menu text. */
8589 width
= max (width
, SBYTES (name
));
8590 if (read_char_minibuf_menu_text
== 0)
8592 read_char_minibuf_menu_width
= width
+ 4;
8593 read_char_minibuf_menu_text
= (char *) xmalloc (width
+ 4);
8595 else if (width
+ 4 > read_char_minibuf_menu_width
)
8597 read_char_minibuf_menu_width
= width
+ 4;
8598 read_char_minibuf_menu_text
8599 = (char *) xrealloc (read_char_minibuf_menu_text
, width
+ 4);
8601 menu
= read_char_minibuf_menu_text
;
8603 /* Prompt string always starts with map's prompt, and a space. */
8604 strcpy (menu
, SDATA (name
));
8605 nlength
= SBYTES (name
);
8606 menu
[nlength
++] = ':';
8607 menu
[nlength
++] = ' ';
8610 /* Start prompting at start of first map. */
8614 /* Present the documented bindings, a line at a time. */
8621 Lisp_Object orig_defn_macro
;
8623 /* Loop over elements of map. */
8628 /* If reached end of map, start at beginning of next map. */
8632 /* At end of last map, wrap around to first map if just starting,
8633 or end this line if already have something on it. */
8637 if (notfirst
|| nobindings
) break;
8642 /* Look at the next element of the map. */
8644 elt
= XVECTOR (vector
)->contents
[idx
];
8646 elt
= Fcar_safe (rest
);
8648 if (idx
< 0 && VECTORP (elt
))
8650 /* If we found a dense table in the keymap,
8651 advanced past it, but start scanning its contents. */
8652 rest
= Fcdr_safe (rest
);
8658 /* An ordinary element. */
8659 Lisp_Object event
, tem
;
8663 event
= Fcar_safe (elt
); /* alist */
8664 elt
= Fcdr_safe (elt
);
8668 XSETINT (event
, idx
); /* vector */
8671 /* Ignore the element if it has no prompt string. */
8672 if (INTEGERP (event
) && parse_menu_item (elt
, 0, -1))
8674 /* 1 if the char to type matches the string. */
8676 Lisp_Object upcased_event
, downcased_event
;
8677 Lisp_Object desc
= Qnil
;
8679 = XVECTOR (item_properties
)->contents
[ITEM_PROPERTY_NAME
];
8681 upcased_event
= Fupcase (event
);
8682 downcased_event
= Fdowncase (event
);
8683 char_matches
= (XINT (upcased_event
) == SREF (s
, 0)
8684 || XINT (downcased_event
) == SREF (s
, 0));
8686 desc
= Fsingle_key_description (event
, Qnil
);
8688 #if 0 /* It is redundant to list the equivalent key bindings because
8689 the prefix is what the user has already typed. */
8691 = XVECTOR (item_properties
)->contents
[ITEM_PROPERTY_KEYEQ
];
8693 /* Insert equivalent keybinding. */
8694 s
= concat2 (s
, tem
);
8697 = XVECTOR (item_properties
)->contents
[ITEM_PROPERTY_TYPE
];
8698 if (EQ (tem
, QCradio
) || EQ (tem
, QCtoggle
))
8700 /* Insert button prefix. */
8701 Lisp_Object selected
8702 = XVECTOR (item_properties
)->contents
[ITEM_PROPERTY_SELECTED
];
8703 if (EQ (tem
, QCradio
))
8704 tem
= build_string (NILP (selected
) ? "(*) " : "( ) ");
8706 tem
= build_string (NILP (selected
) ? "[X] " : "[ ] ");
8707 s
= concat2 (tem
, s
);
8711 /* If we have room for the prompt string, add it to this line.
8712 If this is the first on the line, always add it. */
8713 if ((SCHARS (s
) + i
+ 2
8714 + (char_matches
? 0 : SCHARS (desc
) + 3))
8720 /* Punctuate between strings. */
8723 strcpy (menu
+ i
, ", ");
8729 /* If the char to type doesn't match the string's
8730 first char, explicitly show what char to type. */
8733 /* Add as much of string as fits. */
8734 thiswidth
= SCHARS (desc
);
8735 if (thiswidth
+ i
> width
)
8736 thiswidth
= width
- i
;
8737 bcopy (SDATA (desc
), menu
+ i
, thiswidth
);
8739 strcpy (menu
+ i
, " = ");
8743 /* Add as much of string as fits. */
8744 thiswidth
= SCHARS (s
);
8745 if (thiswidth
+ i
> width
)
8746 thiswidth
= width
- i
;
8747 bcopy (SDATA (s
), menu
+ i
, thiswidth
);
8753 /* If this element does not fit, end the line now,
8754 and save the element for the next line. */
8755 strcpy (menu
+ i
, "...");
8760 /* Move past this element. */
8761 if (idx
>= 0 && idx
+ 1 >= XVECTOR (vector
)->size
)
8762 /* Handle reaching end of dense table. */
8767 rest
= Fcdr_safe (rest
);
8771 /* Prompt with that and read response. */
8772 message2_nolog (menu
, strlen (menu
),
8773 ! NILP (current_buffer
->enable_multibyte_characters
));
8775 /* Make believe its not a keyboard macro in case the help char
8776 is pressed. Help characters are not recorded because menu prompting
8777 is not used on replay.
8779 orig_defn_macro
= current_kboard
->defining_kbd_macro
;
8780 current_kboard
->defining_kbd_macro
= Qnil
;
8782 obj
= read_char (commandflag
, 0, 0, Qt
, 0, NULL
);
8783 while (BUFFERP (obj
));
8784 current_kboard
->defining_kbd_macro
= orig_defn_macro
;
8786 if (!INTEGERP (obj
))
8788 else if (XINT (obj
) == -2)
8793 if (! EQ (obj
, menu_prompt_more_char
)
8794 && (!INTEGERP (menu_prompt_more_char
)
8795 || ! EQ (obj
, make_number (Ctl (XINT (menu_prompt_more_char
))))))
8797 if (!NILP (current_kboard
->defining_kbd_macro
))
8798 store_kbd_macro_char (obj
);
8801 /* Help char - go round again */
8805 /* Reading key sequences. */
8807 /* Follow KEY in the maps in CURRENT[0..NMAPS-1], placing its bindings
8808 in DEFS[0..NMAPS-1]. Set NEXT[i] to DEFS[i] if DEFS[i] is a
8809 keymap, or nil otherwise. Return the index of the first keymap in
8810 which KEY has any binding, or NMAPS if no map has a binding.
8812 If KEY is a meta ASCII character, treat it like meta-prefix-char
8813 followed by the corresponding non-meta character. Keymaps in
8814 CURRENT with non-prefix bindings for meta-prefix-char become nil in
8817 If KEY has no bindings in any of the CURRENT maps, NEXT is left
8820 NEXT may be the same array as CURRENT. */
8823 follow_key (key
, nmaps
, current
, defs
, next
)
8825 Lisp_Object
*current
, *defs
, *next
;
8828 int i
, first_binding
;
8830 first_binding
= nmaps
;
8831 for (i
= nmaps
- 1; i
>= 0; i
--)
8833 if (! NILP (current
[i
]))
8835 defs
[i
] = access_keymap (current
[i
], key
, 1, 0, 1);
8836 if (! NILP (defs
[i
]))
8843 /* Given the set of bindings we've found, produce the next set of maps. */
8844 if (first_binding
< nmaps
)
8845 for (i
= 0; i
< nmaps
; i
++)
8846 next
[i
] = NILP (defs
[i
]) ? Qnil
: get_keymap (defs
[i
], 0, 1);
8848 return first_binding
;
8851 /* Structure used to keep track of partial application of key remapping
8852 such as Vfunction_key_map and Vkey_translation_map. */
8853 typedef struct keyremap
8855 /* This is the map originally specified for this use. */
8857 /* This is a submap reached by looking up, in PARENT,
8858 the events from START to END. */
8860 /* Positions [START, END) in the key sequence buffer
8861 are the key that we have scanned so far.
8862 Those events are the ones that we will replace
8863 if PAREHT maps them into a key sequence. */
8867 /* Lookup KEY in MAP.
8868 MAP is a keymap mapping keys to key vectors or functions.
8869 If the mapping is a function and DO_FUNCTION is non-zero, then
8870 the function is called with PROMPT as parameter and its return
8871 value is used as the return value of this function (after checking
8872 that it is indeed a vector). */
8875 access_keymap_keyremap (map
, key
, prompt
, do_funcall
)
8876 Lisp_Object map
, key
, prompt
;
8881 next
= access_keymap (map
, key
, 1, 0, 1);
8883 /* Handle symbol with autoload definition. */
8884 if (SYMBOLP (next
) && !NILP (Ffboundp (next
))
8885 && CONSP (XSYMBOL (next
)->function
)
8886 && EQ (XCAR (XSYMBOL (next
)->function
), Qautoload
))
8887 do_autoload (XSYMBOL (next
)->function
, next
);
8889 /* Handle a symbol whose function definition is a keymap
8891 if (SYMBOLP (next
) && !NILP (Ffboundp (next
))
8892 && (ARRAYP (XSYMBOL (next
)->function
)
8893 || KEYMAPP (XSYMBOL (next
)->function
)))
8894 next
= XSYMBOL (next
)->function
;
8896 /* If the keymap gives a function, not an
8897 array, then call the function with one arg and use
8898 its value instead. */
8899 if (SYMBOLP (next
) && !NILP (Ffboundp (next
)) && do_funcall
)
8904 next
= call1 (next
, prompt
);
8905 /* If the function returned something invalid,
8906 barf--don't ignore it.
8907 (To ignore it safely, we would need to gcpro a bunch of
8908 other variables.) */
8909 if (! (VECTORP (next
) || STRINGP (next
)))
8910 error ("Function %s returns invalid key sequence", tem
);
8915 /* Do one step of the key remapping used for function-key-map and
8916 key-translation-map:
8917 KEYBUF is the buffer holding the input events.
8918 BUFSIZE is its maximum size.
8919 FKEY is a pointer to the keyremap structure to use.
8920 INPUT is the index of the last element in KEYBUF.
8921 DOIT if non-zero says that the remapping can actually take place.
8922 DIFF is used to return the number of keys added/removed by the remapping.
8923 PARENT is the root of the keymap.
8924 PROMPT is the prompt to use if the remapping happens through a function.
8925 The return value is non-zero if the remapping actually took place. */
8928 keyremap_step (keybuf
, bufsize
, fkey
, input
, doit
, diff
, prompt
)
8929 Lisp_Object
*keybuf
, prompt
;
8931 int input
, doit
, *diff
, bufsize
;
8933 Lisp_Object next
, key
;
8935 key
= keybuf
[fkey
->end
++];
8937 if (KEYMAPP (fkey
->parent
))
8938 next
= access_keymap_keyremap (fkey
->map
, key
, prompt
, doit
);
8942 /* If keybuf[fkey->start..fkey->end] is bound in the
8943 map and we're in a position to do the key remapping, replace it with
8944 the binding and restart with fkey->start at the end. */
8945 if ((VECTORP (next
) || STRINGP (next
)) && doit
)
8947 int len
= XFASTINT (Flength (next
));
8950 *diff
= len
- (fkey
->end
- fkey
->start
);
8952 if (input
+ *diff
>= bufsize
)
8953 error ("Key sequence too long");
8955 /* Shift the keys that follow fkey->end. */
8957 for (i
= fkey
->end
; i
< input
; i
++)
8958 keybuf
[i
+ *diff
] = keybuf
[i
];
8960 for (i
= input
- 1; i
>= fkey
->end
; i
--)
8961 keybuf
[i
+ *diff
] = keybuf
[i
];
8962 /* Overwrite the old keys with the new ones. */
8963 for (i
= 0; i
< len
; i
++)
8964 keybuf
[fkey
->start
+ i
]
8965 = Faref (next
, make_number (i
));
8967 fkey
->start
= fkey
->end
+= *diff
;
8968 fkey
->map
= fkey
->parent
;
8973 fkey
->map
= get_keymap (next
, 0, 1);
8975 /* If we no longer have a bound suffix, try a new position for
8977 if (!CONSP (fkey
->map
))
8979 fkey
->end
= ++fkey
->start
;
8980 fkey
->map
= fkey
->parent
;
8985 /* Read a sequence of keys that ends with a non prefix character,
8986 storing it in KEYBUF, a buffer of size BUFSIZE.
8988 Return the length of the key sequence stored.
8989 Return -1 if the user rejected a command menu.
8991 Echo starting immediately unless `prompt' is 0.
8993 Where a key sequence ends depends on the currently active keymaps.
8994 These include any minor mode keymaps active in the current buffer,
8995 the current buffer's local map, and the global map.
8997 If a key sequence has no other bindings, we check Vfunction_key_map
8998 to see if some trailing subsequence might be the beginning of a
8999 function key's sequence. If so, we try to read the whole function
9000 key, and substitute its symbolic name into the key sequence.
9002 We ignore unbound `down-' mouse clicks. We turn unbound `drag-' and
9003 `double-' events into similar click events, if that would make them
9004 bound. We try to turn `triple-' events first into `double-' events,
9007 If we get a mouse click in a mode line, vertical divider, or other
9008 non-text area, we treat the click as if it were prefixed by the
9009 symbol denoting that area - `mode-line', `vertical-line', or
9012 If the sequence starts with a mouse click, we read the key sequence
9013 with respect to the buffer clicked on, not the current buffer.
9015 If the user switches frames in the midst of a key sequence, we put
9016 off the switch-frame event until later; the next call to
9017 read_char will return it.
9019 If FIX_CURRENT_BUFFER is nonzero, we restore current_buffer
9020 from the selected window's buffer. */
9023 read_key_sequence (keybuf
, bufsize
, prompt
, dont_downcase_last
,
9024 can_return_switch_frame
, fix_current_buffer
)
9025 Lisp_Object
*keybuf
;
9028 int dont_downcase_last
;
9029 int can_return_switch_frame
;
9030 int fix_current_buffer
;
9032 volatile Lisp_Object from_string
;
9033 volatile int count
= SPECPDL_INDEX ();
9035 /* How many keys there are in the current key sequence. */
9038 /* The length of the echo buffer when we started reading, and
9039 the length of this_command_keys when we started reading. */
9040 volatile int echo_start
;
9041 volatile int keys_start
;
9043 /* The number of keymaps we're scanning right now, and the number of
9044 keymaps we have allocated space for. */
9046 volatile int nmaps_allocated
= 0;
9048 /* defs[0..nmaps-1] are the definitions of KEYBUF[0..t-1] in
9049 the current keymaps. */
9050 Lisp_Object
*volatile defs
= NULL
;
9052 /* submaps[0..nmaps-1] are the prefix definitions of KEYBUF[0..t-1]
9053 in the current keymaps, or nil where it is not a prefix. */
9054 Lisp_Object
*volatile submaps
= NULL
;
9056 /* The local map to start out with at start of key sequence. */
9057 volatile Lisp_Object orig_local_map
;
9059 /* The map from the `keymap' property to start out with at start of
9061 volatile Lisp_Object orig_keymap
;
9063 /* 1 if we have already considered switching to the local-map property
9064 of the place where a mouse click occurred. */
9065 volatile int localized_local_map
= 0;
9067 /* The index in submaps[] of the first keymap that has a binding for
9068 this key sequence. In other words, the lowest i such that
9069 submaps[i] is non-nil. */
9070 volatile int first_binding
;
9071 /* Index of the first key that has no binding.
9072 It is useless to try fkey.start larger than that. */
9073 volatile int first_unbound
;
9075 /* If t < mock_input, then KEYBUF[t] should be read as the next
9078 We use this to recover after recognizing a function key. Once we
9079 realize that a suffix of the current key sequence is actually a
9080 function key's escape sequence, we replace the suffix with the
9081 function key's binding from Vfunction_key_map. Now keybuf
9082 contains a new and different key sequence, so the echo area,
9083 this_command_keys, and the submaps and defs arrays are wrong. In
9084 this situation, we set mock_input to t, set t to 0, and jump to
9085 restart_sequence; the loop will read keys from keybuf up until
9086 mock_input, thus rebuilding the state; and then it will resume
9087 reading characters from the keyboard. */
9088 volatile int mock_input
= 0;
9090 /* If the sequence is unbound in submaps[], then
9091 keybuf[fkey.start..fkey.end-1] is a prefix in Vfunction_key_map,
9092 and fkey.map is its binding.
9094 These might be > t, indicating that all function key scanning
9095 should hold off until t reaches them. We do this when we've just
9096 recognized a function key, to avoid searching for the function
9097 key's again in Vfunction_key_map. */
9098 volatile keyremap fkey
;
9100 /* Likewise, for key_translation_map and input-decode-map. */
9101 volatile keyremap keytran
, indec
;
9103 /* Non-zero if we are trying to map a key by changing an upper-case
9104 letter to lower case, or a shifted function key to an unshifted
9106 volatile int shift_translated
= 0;
9108 /* If we receive a `switch-frame' or `select-window' event in the middle of
9109 a key sequence, we put it off for later.
9110 While we're reading, we keep the event here. */
9111 volatile Lisp_Object delayed_switch_frame
;
9113 /* See the comment below... */
9114 #if defined (GOBBLE_FIRST_EVENT)
9115 Lisp_Object first_event
;
9118 volatile Lisp_Object original_uppercase
;
9119 volatile int original_uppercase_position
= -1;
9121 /* Gets around Microsoft compiler limitations. */
9124 struct buffer
*starting_buffer
;
9126 /* List of events for which a fake prefix key has been generated. */
9127 volatile Lisp_Object fake_prefixed_keys
= Qnil
;
9129 #if defined (GOBBLE_FIRST_EVENT)
9133 struct gcpro gcpro1
;
9135 GCPRO1 (fake_prefixed_keys
);
9136 raw_keybuf_count
= 0;
9138 last_nonmenu_event
= Qnil
;
9140 delayed_switch_frame
= Qnil
;
9145 echo_prompt (prompt
);
9146 else if (cursor_in_echo_area
9147 && (FLOATP (Vecho_keystrokes
) || INTEGERP (Vecho_keystrokes
))
9148 && NILP (Fzerop (Vecho_keystrokes
)))
9149 /* This doesn't put in a dash if the echo buffer is empty, so
9150 you don't always see a dash hanging out in the minibuffer. */
9154 /* Record the initial state of the echo area and this_command_keys;
9155 we will need to restore them if we replay a key sequence. */
9157 echo_start
= echo_length ();
9158 keys_start
= this_command_key_count
;
9159 this_single_command_key_start
= keys_start
;
9161 #if defined (GOBBLE_FIRST_EVENT)
9162 /* This doesn't quite work, because some of the things that read_char
9163 does cannot safely be bypassed. It seems too risky to try to make
9166 /* Read the first char of the sequence specially, before setting
9167 up any keymaps, in case a filter runs and switches buffers on us. */
9168 first_event
= read_char (NILP (prompt
), 0, submaps
, last_nonmenu_event
,
9170 #endif /* GOBBLE_FIRST_EVENT */
9172 orig_local_map
= get_local_map (PT
, current_buffer
, Qlocal_map
);
9173 orig_keymap
= get_local_map (PT
, current_buffer
, Qkeymap
);
9176 /* We jump here when we need to reinitialize fkey and keytran; this
9177 happens if we switch keyboards between rescans. */
9178 replay_entire_sequence
:
9180 indec
.map
= indec
.parent
= current_kboard
->Vinput_decode_map
;
9181 fkey
.map
= fkey
.parent
= current_kboard
->Vlocal_function_key_map
;
9182 keytran
.map
= keytran
.parent
= Vkey_translation_map
;
9183 indec
.start
= indec
.end
= 0;
9184 fkey
.start
= fkey
.end
= 0;
9185 keytran
.start
= keytran
.end
= 0;
9187 /* We jump here when the key sequence has been thoroughly changed, and
9188 we need to rescan it starting from the beginning. When we jump here,
9189 keybuf[0..mock_input] holds the sequence we should reread. */
9192 starting_buffer
= current_buffer
;
9193 first_unbound
= bufsize
+ 1;
9195 /* Build our list of keymaps.
9196 If we recognize a function key and replace its escape sequence in
9197 keybuf with its symbol, or if the sequence starts with a mouse
9198 click and we need to switch buffers, we jump back here to rebuild
9199 the initial keymaps from the current buffer. */
9202 if (!NILP (current_kboard
->Voverriding_terminal_local_map
))
9204 if (2 > nmaps_allocated
)
9206 submaps
= (Lisp_Object
*) alloca (2 * sizeof (submaps
[0]));
9207 defs
= (Lisp_Object
*) alloca (2 * sizeof (defs
[0]));
9208 nmaps_allocated
= 2;
9210 submaps
[nmaps
++] = current_kboard
->Voverriding_terminal_local_map
;
9212 else if (!NILP (Voverriding_local_map
))
9214 if (2 > nmaps_allocated
)
9216 submaps
= (Lisp_Object
*) alloca (2 * sizeof (submaps
[0]));
9217 defs
= (Lisp_Object
*) alloca (2 * sizeof (defs
[0]));
9218 nmaps_allocated
= 2;
9220 submaps
[nmaps
++] = Voverriding_local_map
;
9228 nminor
= current_minor_maps (0, &maps
);
9229 total
= nminor
+ (!NILP (orig_keymap
) ? 3 : 2);
9231 if (total
> nmaps_allocated
)
9233 submaps
= (Lisp_Object
*) alloca (total
* sizeof (submaps
[0]));
9234 defs
= (Lisp_Object
*) alloca (total
* sizeof (defs
[0]));
9235 nmaps_allocated
= total
;
9238 if (!NILP (orig_keymap
))
9239 submaps
[nmaps
++] = orig_keymap
;
9241 bcopy (maps
, (void *) (submaps
+ nmaps
),
9242 nminor
* sizeof (submaps
[0]));
9246 submaps
[nmaps
++] = orig_local_map
;
9248 submaps
[nmaps
++] = current_global_map
;
9250 /* Find an accurate initial value for first_binding. */
9251 for (first_binding
= 0; first_binding
< nmaps
; first_binding
++)
9252 if (! NILP (submaps
[first_binding
]))
9255 /* Start from the beginning in keybuf. */
9258 /* These are no-ops the first time through, but if we restart, they
9259 revert the echo area and this_command_keys to their original state. */
9260 this_command_key_count
= keys_start
;
9261 if (INTERACTIVE
&& t
< mock_input
)
9262 echo_truncate (echo_start
);
9264 /* If the best binding for the current key sequence is a keymap, or
9265 we may be looking at a function key's escape sequence, keep on
9267 while (first_binding
< nmaps
9268 /* Keep reading as long as there's a prefix binding. */
9269 ? !NILP (submaps
[first_binding
])
9270 /* Don't return in the middle of a possible function key sequence,
9271 if the only bindings we found were via case conversion.
9272 Thus, if ESC O a has a function-key-map translation
9273 and ESC o has a binding, don't return after ESC O,
9274 so that we can translate ESC O plus the next character. */
9275 : (/* indec.start < t || fkey.start < t || */ keytran
.start
< t
))
9278 int used_mouse_menu
= 0;
9280 /* Where the last real key started. If we need to throw away a
9281 key that has expanded into more than one element of keybuf
9282 (say, a mouse click on the mode line which is being treated
9283 as [mode-line (mouse-...)], then we backtrack to this point
9285 volatile int last_real_key_start
;
9287 /* These variables are analogous to echo_start and keys_start;
9288 while those allow us to restart the entire key sequence,
9289 echo_local_start and keys_local_start allow us to throw away
9291 volatile int echo_local_start
, keys_local_start
, local_first_binding
;
9293 eassert (indec
.end
== t
|| (indec
.end
> t
&& indec
.end
<= mock_input
));
9294 eassert (indec
.start
<= indec
.end
);
9295 eassert (fkey
.start
<= fkey
.end
);
9296 eassert (keytran
.start
<= keytran
.end
);
9297 /* key-translation-map is applied *after* function-key-map
9298 which is itself applied *after* input-decode-map. */
9299 eassert (fkey
.end
<= indec
.start
);
9300 eassert (keytran
.end
<= fkey
.start
);
9302 if (/* first_unbound < indec.start && first_unbound < fkey.start && */
9303 first_unbound
< keytran
.start
)
9304 { /* The prefix upto first_unbound has no binding and has
9305 no translation left to do either, so we know it's unbound.
9306 If we don't stop now, we risk staying here indefinitely
9307 (if the user keeps entering fkey or keytran prefixes
9308 like C-c ESC ESC ESC ESC ...) */
9310 for (i
= first_unbound
+ 1; i
< t
; i
++)
9311 keybuf
[i
- first_unbound
- 1] = keybuf
[i
];
9312 mock_input
= t
- first_unbound
- 1;
9313 indec
.end
= indec
.start
-= first_unbound
+ 1;
9314 indec
.map
= indec
.parent
;
9315 fkey
.end
= fkey
.start
-= first_unbound
+ 1;
9316 fkey
.map
= fkey
.parent
;
9317 keytran
.end
= keytran
.start
-= first_unbound
+ 1;
9318 keytran
.map
= keytran
.parent
;
9319 goto replay_sequence
;
9323 error ("Key sequence too long");
9326 echo_local_start
= echo_length ();
9327 keys_local_start
= this_command_key_count
;
9328 local_first_binding
= first_binding
;
9331 /* These are no-ops, unless we throw away a keystroke below and
9332 jumped back up to replay_key; in that case, these restore the
9333 variables to their original state, allowing us to replay the
9335 if (INTERACTIVE
&& t
< mock_input
)
9336 echo_truncate (echo_local_start
);
9337 this_command_key_count
= keys_local_start
;
9338 first_binding
= local_first_binding
;
9340 /* By default, assume each event is "real". */
9341 last_real_key_start
= t
;
9343 /* Does mock_input indicate that we are re-reading a key sequence? */
9347 add_command_key (key
);
9348 if ((FLOATP (Vecho_keystrokes
) || INTEGERP (Vecho_keystrokes
))
9349 && NILP (Fzerop (Vecho_keystrokes
)))
9353 /* If not, we should actually read a character. */
9357 KBOARD
*interrupted_kboard
= current_kboard
;
9358 struct frame
*interrupted_frame
= SELECTED_FRAME ();
9359 key
= read_char (NILP (prompt
), nmaps
,
9360 (Lisp_Object
*) submaps
, last_nonmenu_event
,
9361 &used_mouse_menu
, NULL
);
9362 if (INTEGERP (key
) && XINT (key
) == -2) /* wrong_kboard_jmpbuf */
9367 for (k
= all_kboards
; k
; k
= k
->next_kboard
)
9368 if (k
== interrupted_kboard
)
9373 /* Don't touch interrupted_kboard when it's been
9375 delayed_switch_frame
= Qnil
;
9376 goto replay_entire_sequence
;
9379 if (!NILP (delayed_switch_frame
))
9381 interrupted_kboard
->kbd_queue
9382 = Fcons (delayed_switch_frame
,
9383 interrupted_kboard
->kbd_queue
);
9384 delayed_switch_frame
= Qnil
;
9388 interrupted_kboard
->kbd_queue
9389 = Fcons (keybuf
[--t
], interrupted_kboard
->kbd_queue
);
9391 /* If the side queue is non-empty, ensure it begins with a
9392 switch-frame, so we'll replay it in the right context. */
9393 if (CONSP (interrupted_kboard
->kbd_queue
)
9394 && (key
= XCAR (interrupted_kboard
->kbd_queue
),
9395 !(EVENT_HAS_PARAMETERS (key
)
9396 && EQ (EVENT_HEAD_KIND (EVENT_HEAD (key
)),
9400 XSETFRAME (frame
, interrupted_frame
);
9401 interrupted_kboard
->kbd_queue
9402 = Fcons (make_lispy_switch_frame (frame
),
9403 interrupted_kboard
->kbd_queue
);
9406 orig_local_map
= get_local_map (PT
, current_buffer
, Qlocal_map
);
9407 orig_keymap
= get_local_map (PT
, current_buffer
, Qkeymap
);
9408 goto replay_entire_sequence
;
9412 /* read_char returns t when it shows a menu and the user rejects it.
9416 unbind_to (count
, Qnil
);
9421 /* read_char returns -1 at the end of a macro.
9422 Emacs 18 handles this by returning immediately with a
9423 zero, so that's what we'll do. */
9424 if (INTEGERP (key
) && XINT (key
) == -1)
9427 /* The Microsoft C compiler can't handle the goto that
9433 /* If the current buffer has been changed from under us, the
9434 keymap may have changed, so replay the sequence. */
9437 timer_resume_idle ();
9440 /* Reset the current buffer from the selected window
9441 in case something changed the former and not the latter.
9442 This is to be more consistent with the behavior
9443 of the command_loop_1. */
9444 if (fix_current_buffer
)
9446 if (! FRAME_LIVE_P (XFRAME (selected_frame
)))
9448 if (XBUFFER (XWINDOW (selected_window
)->buffer
) != current_buffer
)
9449 Fset_buffer (XWINDOW (selected_window
)->buffer
);
9452 orig_local_map
= get_local_map (PT
, current_buffer
, Qlocal_map
);
9453 orig_keymap
= get_local_map (PT
, current_buffer
, Qkeymap
);
9454 goto replay_sequence
;
9457 /* If we have a quit that was typed in another frame, and
9458 quit_throw_to_read_char switched buffers,
9459 replay to get the right keymap. */
9461 && XINT (key
) == quit_char
9462 && current_buffer
!= starting_buffer
)
9465 XVECTOR (raw_keybuf
)->contents
[raw_keybuf_count
++] = key
;
9469 orig_local_map
= get_local_map (PT
, current_buffer
, Qlocal_map
);
9470 orig_keymap
= get_local_map (PT
, current_buffer
, Qkeymap
);
9471 goto replay_sequence
;
9476 if (EVENT_HAS_PARAMETERS (key
)
9477 /* Either a `switch-frame' or a `select-window' event. */
9478 && EQ (EVENT_HEAD_KIND (EVENT_HEAD (key
)), Qswitch_frame
))
9480 /* If we're at the beginning of a key sequence, and the caller
9481 says it's okay, go ahead and return this event. If we're
9482 in the midst of a key sequence, delay it until the end. */
9483 if (t
> 0 || !can_return_switch_frame
)
9485 delayed_switch_frame
= key
;
9491 ASET (raw_keybuf
, raw_keybuf_count
, key
);
9495 /* Clicks in non-text areas get prefixed by the symbol
9496 in their CHAR-ADDRESS field. For example, a click on
9497 the mode line is prefixed by the symbol `mode-line'.
9499 Furthermore, key sequences beginning with mouse clicks
9500 are read using the keymaps of the buffer clicked on, not
9501 the current buffer. So we may have to switch the buffer
9504 When we turn one event into two events, we must make sure
9505 that neither of the two looks like the original--so that,
9506 if we replay the events, they won't be expanded again.
9507 If not for this, such reexpansion could happen either here
9508 or when user programs play with this-command-keys. */
9509 if (EVENT_HAS_PARAMETERS (key
))
9514 kind
= EVENT_HEAD_KIND (EVENT_HEAD (key
));
9515 if (EQ (kind
, Qmouse_click
))
9517 Lisp_Object window
, posn
;
9519 window
= POSN_WINDOW (EVENT_START (key
));
9520 posn
= POSN_POSN (EVENT_START (key
));
9523 || (!NILP (fake_prefixed_keys
)
9524 && !NILP (Fmemq (key
, fake_prefixed_keys
))))
9526 /* We're looking a second time at an event for which
9527 we generated a fake prefix key. Set
9528 last_real_key_start appropriately. */
9530 last_real_key_start
= t
- 1;
9533 /* Key sequences beginning with mouse clicks are
9534 read using the keymaps in the buffer clicked on,
9535 not the current buffer. If we're at the
9536 beginning of a key sequence, switch buffers. */
9537 if (last_real_key_start
== 0
9539 && BUFFERP (XWINDOW (window
)->buffer
)
9540 && XBUFFER (XWINDOW (window
)->buffer
) != current_buffer
)
9542 XVECTOR (raw_keybuf
)->contents
[raw_keybuf_count
++] = key
;
9546 /* Arrange to go back to the original buffer once we're
9547 done reading the key sequence. Note that we can't
9548 use save_excursion_{save,restore} here, because they
9549 save point as well as the current buffer; we don't
9550 want to save point, because redisplay may change it,
9551 to accommodate a Fset_window_start or something. We
9552 don't want to do this at the top of the function,
9553 because we may get input from a subprocess which
9554 wants to change the selected window and stuff (say,
9556 record_unwind_protect (Fset_buffer
, Fcurrent_buffer ());
9558 if (! FRAME_LIVE_P (XFRAME (selected_frame
)))
9560 set_buffer_internal (XBUFFER (XWINDOW (window
)->buffer
));
9561 orig_local_map
= get_local_map (PT
, current_buffer
,
9563 orig_keymap
= get_local_map (PT
, current_buffer
, Qkeymap
);
9564 goto replay_sequence
;
9567 /* For a mouse click, get the local text-property keymap
9568 of the place clicked on, rather than point. */
9569 if (last_real_key_start
== 0
9570 && CONSP (XCDR (key
))
9571 && ! localized_local_map
)
9573 Lisp_Object map_here
, start
, pos
;
9575 localized_local_map
= 1;
9576 start
= EVENT_START (key
);
9578 if (CONSP (start
) && POSN_INBUFFER_P (start
))
9580 pos
= POSN_BUFFER_POSN (start
);
9582 && XINT (pos
) >= BEGV
9583 && XINT (pos
) <= ZV
)
9585 map_here
= get_local_map (XINT (pos
),
9586 current_buffer
, Qlocal_map
);
9587 if (!EQ (map_here
, orig_local_map
))
9589 orig_local_map
= map_here
;
9590 ++localized_local_map
;
9593 map_here
= get_local_map (XINT (pos
),
9594 current_buffer
, Qkeymap
);
9595 if (!EQ (map_here
, orig_keymap
))
9597 orig_keymap
= map_here
;
9598 ++localized_local_map
;
9601 if (localized_local_map
> 1)
9606 goto replay_sequence
;
9612 /* Expand mode-line and scroll-bar events into two events:
9613 use posn as a fake prefix key. */
9615 && (NILP (fake_prefixed_keys
)
9616 || NILP (Fmemq (key
, fake_prefixed_keys
))))
9618 if (t
+ 1 >= bufsize
)
9619 error ("Key sequence too long");
9622 keybuf
[t
+ 1] = key
;
9625 /* Record that a fake prefix key has been generated
9626 for KEY. Don't modify the event; this would
9627 prevent proper action when the event is pushed
9628 back into unread-command-events. */
9629 fake_prefixed_keys
= Fcons (key
, fake_prefixed_keys
);
9631 /* If on a mode line string with a local keymap,
9632 reconsider the key sequence with that keymap. */
9633 if (string
= POSN_STRING (EVENT_START (key
)),
9634 (CONSP (string
) && STRINGP (XCAR (string
))))
9636 Lisp_Object pos
, map
, map2
;
9638 pos
= XCDR (string
);
9639 string
= XCAR (string
);
9641 && XINT (pos
) < SCHARS (string
))
9643 map
= Fget_text_property (pos
, Qlocal_map
, string
);
9645 orig_local_map
= map
;
9646 map2
= Fget_text_property (pos
, Qkeymap
, string
);
9649 if (!NILP (map
) || !NILP (map2
))
9650 goto replay_sequence
;
9656 else if (NILP (from_string
)
9657 && (string
= POSN_STRING (EVENT_START (key
)),
9658 (CONSP (string
) && STRINGP (XCAR (string
)))))
9660 /* For a click on a string, i.e. overlay string or a
9661 string displayed via the `display' property,
9662 consider `local-map' and `keymap' properties of
9664 Lisp_Object pos
, map
, map2
;
9666 pos
= XCDR (string
);
9667 string
= XCAR (string
);
9669 && XINT (pos
) < SCHARS (string
))
9671 map
= Fget_text_property (pos
, Qlocal_map
, string
);
9673 orig_local_map
= map
;
9674 map2
= Fget_text_property (pos
, Qkeymap
, string
);
9678 if (!NILP (map
) || !NILP (map2
))
9680 from_string
= string
;
9683 goto replay_sequence
;
9688 else if (CONSP (XCDR (key
))
9689 && CONSP (EVENT_START (key
))
9690 && CONSP (XCDR (EVENT_START (key
))))
9694 posn
= POSN_POSN (EVENT_START (key
));
9695 /* Handle menu-bar events:
9696 insert the dummy prefix event `menu-bar'. */
9697 if (EQ (posn
, Qmenu_bar
) || EQ (posn
, Qtool_bar
))
9699 if (t
+ 1 >= bufsize
)
9700 error ("Key sequence too long");
9704 /* Zap the position in key, so we know that we've
9705 expanded it, and don't try to do so again. */
9706 POSN_SET_POSN (EVENT_START (key
),
9707 Fcons (posn
, Qnil
));
9710 goto replay_sequence
;
9712 else if (CONSP (posn
))
9714 /* We're looking at the second event of a
9715 sequence which we expanded before. Set
9716 last_real_key_start appropriately. */
9717 if (last_real_key_start
== t
&& t
> 0)
9718 last_real_key_start
= t
- 1;
9723 /* We have finally decided that KEY is something we might want
9725 first_binding
= (follow_key (key
,
9726 nmaps
- first_binding
,
9727 submaps
+ first_binding
,
9728 defs
+ first_binding
,
9729 submaps
+ first_binding
)
9732 /* If KEY wasn't bound, we'll try some fallbacks. */
9733 if (first_binding
< nmaps
)
9734 /* This is needed for the following scenario:
9735 event 0: a down-event that gets dropped by calling replay_key.
9736 event 1: some normal prefix like C-h.
9737 After event 0, first_unbound is 0, after event 1 indec.start,
9738 fkey.start, and keytran.start are all 1, so when we see that
9739 C-h is bound, we need to update first_unbound. */
9740 first_unbound
= max (t
+ 1, first_unbound
);
9745 /* Remember the position to put an upper bound on indec.start. */
9746 first_unbound
= min (t
, first_unbound
);
9748 head
= EVENT_HEAD (key
);
9749 if (help_char_p (head
) && t
> 0)
9751 read_key_sequence_cmd
= Vprefix_help_command
;
9753 last_nonmenu_event
= key
;
9754 /* The Microsoft C compiler can't handle the goto that
9762 Lisp_Object breakdown
;
9765 breakdown
= parse_modifiers (head
);
9766 modifiers
= XINT (XCAR (XCDR (breakdown
)));
9767 /* Attempt to reduce an unbound mouse event to a simpler
9768 event that is bound:
9769 Drags reduce to clicks.
9770 Double-clicks reduce to clicks.
9771 Triple-clicks reduce to double-clicks, then to clicks.
9772 Down-clicks are eliminated.
9773 Double-downs reduce to downs, then are eliminated.
9774 Triple-downs reduce to double-downs, then to downs,
9775 then are eliminated. */
9776 if (modifiers
& (down_modifier
| drag_modifier
9777 | double_modifier
| triple_modifier
))
9779 while (modifiers
& (down_modifier
| drag_modifier
9780 | double_modifier
| triple_modifier
))
9782 Lisp_Object new_head
, new_click
;
9783 if (modifiers
& triple_modifier
)
9784 modifiers
^= (double_modifier
| triple_modifier
);
9785 else if (modifiers
& double_modifier
)
9786 modifiers
&= ~double_modifier
;
9787 else if (modifiers
& drag_modifier
)
9788 modifiers
&= ~drag_modifier
;
9791 /* Dispose of this `down' event by simply jumping
9792 back to replay_key, to get another event.
9794 Note that if this event came from mock input,
9795 then just jumping back to replay_key will just
9796 hand it to us again. So we have to wipe out any
9799 We could delete keybuf[t] and shift everything
9800 after that to the left by one spot, but we'd also
9801 have to fix up any variable that points into
9802 keybuf, and shifting isn't really necessary
9805 Adding prefixes for non-textual mouse clicks
9806 creates two characters of mock input, and both
9807 must be thrown away. If we're only looking at
9808 the prefix now, we can just jump back to
9809 replay_key. On the other hand, if we've already
9810 processed the prefix, and now the actual click
9811 itself is giving us trouble, then we've lost the
9812 state of the keymaps we want to backtrack to, and
9813 we need to replay the whole sequence to rebuild
9816 Beyond that, only function key expansion could
9817 create more than two keys, but that should never
9818 generate mouse events, so it's okay to zero
9819 mock_input in that case too.
9821 FIXME: The above paragraph seems just plain
9822 wrong, if you consider things like
9823 xterm-mouse-mode. -stef
9825 Isn't this just the most wonderful code ever? */
9827 /* If mock_input > t + 1, the above simplification
9828 will actually end up dropping keys on the floor.
9829 This is probably OK for now, but even
9830 if mock_input <= t + 1, we need to adjust indec,
9832 Typical case [header-line down-mouse-N]:
9833 mock_input = 2, t = 1, fkey.end = 1,
9834 last_real_key_start = 0. */
9835 if (indec
.end
> last_real_key_start
)
9837 indec
.end
= indec
.start
9838 = min (last_real_key_start
, indec
.start
);
9839 indec
.map
= indec
.parent
;
9840 if (fkey
.end
> last_real_key_start
)
9842 fkey
.end
= fkey
.start
9843 = min (last_real_key_start
, fkey
.start
);
9844 fkey
.map
= fkey
.parent
;
9845 if (keytran
.end
> last_real_key_start
)
9847 keytran
.end
= keytran
.start
9848 = min (last_real_key_start
, keytran
.start
);
9849 keytran
.map
= keytran
.parent
;
9853 if (t
== last_real_key_start
)
9860 mock_input
= last_real_key_start
;
9861 goto replay_sequence
;
9866 = apply_modifiers (modifiers
, XCAR (breakdown
));
9868 = Fcons (new_head
, Fcons (EVENT_START (key
), Qnil
));
9870 /* Look for a binding for this new key. follow_key
9871 promises that it didn't munge submaps the
9872 last time we called it, since key was unbound. */
9874 = (follow_key (new_click
,
9875 nmaps
- local_first_binding
,
9876 submaps
+ local_first_binding
,
9877 defs
+ local_first_binding
,
9878 submaps
+ local_first_binding
)
9879 + local_first_binding
);
9881 /* If that click is bound, go for it. */
9882 if (first_binding
< nmaps
)
9887 /* Otherwise, we'll leave key set to the drag event. */
9894 /* Normally, last_nonmenu_event gets the previous key we read.
9895 But when a mouse popup menu is being used,
9896 we don't update last_nonmenu_event; it continues to hold the mouse
9897 event that preceded the first level of menu. */
9898 if (!used_mouse_menu
)
9899 last_nonmenu_event
= key
;
9901 /* Record what part of this_command_keys is the current key sequence. */
9902 this_single_command_key_start
= this_command_key_count
- t
;
9904 /* Look for this sequence in input-decode-map.
9905 Scan from indec.end until we find a bound suffix. */
9906 while (indec
.end
< t
)
9908 struct gcpro gcpro1
, gcpro2
, gcpro3
, gcpro4
;
9911 GCPRO4 (indec
.map
, fkey
.map
, keytran
.map
, delayed_switch_frame
);
9912 done
= keyremap_step (keybuf
, bufsize
, &indec
, max (t
, mock_input
),
9917 mock_input
= diff
+ max (t
, mock_input
);
9918 goto replay_sequence
;
9922 if (first_binding
< nmaps
&& NILP (submaps
[first_binding
])
9923 && indec
.start
>= t
)
9924 /* There is a binding and it's not a prefix.
9925 (and it doesn't have any input-decode-map translation pending).
9926 There is thus no function-key in this sequence.
9927 Moving fkey.start is important in this case to allow keytran.start
9928 to go over the sequence before we return (since we keep the
9929 invariant that keytran.end <= fkey.start). */
9932 (fkey
.start
= fkey
.end
= t
, fkey
.map
= fkey
.parent
);
9935 /* If the sequence is unbound, see if we can hang a function key
9936 off the end of it. */
9937 /* Continue scan from fkey.end until we find a bound suffix. */
9938 while (fkey
.end
< indec
.start
)
9940 struct gcpro gcpro1
, gcpro2
, gcpro3
, gcpro4
;
9943 GCPRO4 (indec
.map
, fkey
.map
, keytran
.map
, delayed_switch_frame
);
9944 done
= keyremap_step (keybuf
, bufsize
, &fkey
,
9945 max (t
, mock_input
),
9946 /* If there's a binding (i.e.
9947 first_binding >= nmaps) we don't want
9948 to apply this function-key-mapping. */
9949 fkey
.end
+ 1 == t
&& first_binding
>= nmaps
,
9954 mock_input
= diff
+ max (t
, mock_input
);
9955 /* Adjust the input-decode-map counters. */
9957 indec
.start
+= diff
;
9959 goto replay_sequence
;
9963 /* Look for this sequence in key-translation-map.
9964 Scan from keytran.end until we find a bound suffix. */
9965 while (keytran
.end
< fkey
.start
)
9967 struct gcpro gcpro1
, gcpro2
, gcpro3
, gcpro4
;
9970 GCPRO4 (indec
.map
, fkey
.map
, keytran
.map
, delayed_switch_frame
);
9971 done
= keyremap_step (keybuf
, bufsize
, &keytran
, max (t
, mock_input
),
9976 mock_input
= diff
+ max (t
, mock_input
);
9977 /* Adjust the function-key-map and input-decode-map counters. */
9979 indec
.start
+= diff
;
9983 goto replay_sequence
;
9987 /* If KEY is not defined in any of the keymaps,
9988 and cannot be part of a function key or translation,
9989 and is an upper case letter
9990 use the corresponding lower-case letter instead. */
9991 if (first_binding
>= nmaps
9992 && /* indec.start >= t && fkey.start >= t && */ keytran
.start
>= t
9994 && ((CHARACTERP (make_number (XINT (key
) & ~CHAR_MODIFIER_MASK
))
9995 && UPPERCASEP (XINT (key
) & ~CHAR_MODIFIER_MASK
))
9996 || (XINT (key
) & shift_modifier
)))
9998 Lisp_Object new_key
;
10000 original_uppercase
= key
;
10001 original_uppercase_position
= t
- 1;
10003 if (XINT (key
) & shift_modifier
)
10004 XSETINT (new_key
, XINT (key
) & ~shift_modifier
);
10006 XSETINT (new_key
, (DOWNCASE (XINT (key
) & ~CHAR_MODIFIER_MASK
)
10007 | (XINT (key
) & CHAR_MODIFIER_MASK
)));
10009 /* We have to do this unconditionally, regardless of whether
10010 the lower-case char is defined in the keymaps, because they
10011 might get translated through function-key-map. */
10012 keybuf
[t
- 1] = new_key
;
10013 mock_input
= max (t
, mock_input
);
10014 shift_translated
= 1;
10016 goto replay_sequence
;
10018 /* If KEY is not defined in any of the keymaps,
10019 and cannot be part of a function key or translation,
10020 and is a shifted function key,
10021 use the corresponding unshifted function key instead. */
10022 if (first_binding
>= nmaps
10023 && /* indec.start >= t && fkey.start >= t && */ keytran
.start
>= t
)
10025 Lisp_Object breakdown
= parse_modifiers (key
);
10027 = CONSP (breakdown
) ? (XINT (XCAR (XCDR (breakdown
)))) : 0;
10029 if (modifiers
& shift_modifier
10030 /* Treat uppercase keys as shifted. */
10032 && (KEY_TO_CHAR (key
)
10033 < XCHAR_TABLE (current_buffer
->downcase_table
)->size
)
10034 && UPPERCASEP (KEY_TO_CHAR (key
))))
10036 Lisp_Object new_key
10037 = (modifiers
& shift_modifier
10038 ? apply_modifiers (modifiers
& ~shift_modifier
,
10040 : make_number (DOWNCASE (KEY_TO_CHAR (key
)) | modifiers
));
10042 original_uppercase
= key
;
10043 original_uppercase_position
= t
- 1;
10045 /* We have to do this unconditionally, regardless of whether
10046 the lower-case char is defined in the keymaps, because they
10047 might get translated through function-key-map. */
10048 keybuf
[t
- 1] = new_key
;
10049 mock_input
= max (t
, mock_input
);
10050 /* Reset fkey (and consequently keytran) to apply
10051 function-key-map on the result, so that S-backspace is
10052 correctly mapped to DEL (via backspace). OTOH,
10053 input-decode-map doesn't need to go through it again. */
10054 fkey
.start
= fkey
.end
= 0;
10055 keytran
.start
= keytran
.end
= 0;
10056 shift_translated
= 1;
10058 goto replay_sequence
;
10063 read_key_sequence_cmd
= (first_binding
< nmaps
10064 ? defs
[first_binding
]
10067 unread_switch_frame
= delayed_switch_frame
;
10068 unbind_to (count
, Qnil
);
10070 /* Don't downcase the last character if the caller says don't.
10071 Don't downcase it if the result is undefined, either. */
10072 if ((dont_downcase_last
|| first_binding
>= nmaps
)
10074 && t
- 1 == original_uppercase_position
)
10076 keybuf
[t
- 1] = original_uppercase
;
10077 shift_translated
= 0;
10080 if (shift_translated
)
10081 Vthis_command_keys_shift_translated
= Qt
;
10083 /* Occasionally we fabricate events, perhaps by expanding something
10084 according to function-key-map, or by adding a prefix symbol to a
10085 mouse click in the scroll bar or modeline. In this cases, return
10086 the entire generated key sequence, even if we hit an unbound
10087 prefix or a definition before the end. This means that you will
10088 be able to push back the event properly, and also means that
10089 read-key-sequence will always return a logical unit.
10092 for (; t
< mock_input
; t
++)
10094 if ((FLOATP (Vecho_keystrokes
) || INTEGERP (Vecho_keystrokes
))
10095 && NILP (Fzerop (Vecho_keystrokes
)))
10096 echo_char (keybuf
[t
]);
10097 add_command_key (keybuf
[t
]);
10104 DEFUN ("read-key-sequence", Fread_key_sequence
, Sread_key_sequence
, 1, 5, 0,
10105 doc
: /* Read a sequence of keystrokes and return as a string or vector.
10106 The sequence is sufficient to specify a non-prefix command in the
10107 current local and global maps.
10109 First arg PROMPT is a prompt string. If nil, do not prompt specially.
10110 Second (optional) arg CONTINUE-ECHO, if non-nil, means this key echos
10111 as a continuation of the previous key.
10113 The third (optional) arg DONT-DOWNCASE-LAST, if non-nil, means do not
10114 convert the last event to lower case. (Normally any upper case event
10115 is converted to lower case if the original event is undefined and the lower
10116 case equivalent is defined.) A non-nil value is appropriate for reading
10117 a key sequence to be defined.
10119 A C-g typed while in this function is treated like any other character,
10120 and `quit-flag' is not set.
10122 If the key sequence starts with a mouse click, then the sequence is read
10123 using the keymaps of the buffer of the window clicked in, not the buffer
10124 of the selected window as normal.
10126 `read-key-sequence' drops unbound button-down events, since you normally
10127 only care about the click or drag events which follow them. If a drag
10128 or multi-click event is unbound, but the corresponding click event would
10129 be bound, `read-key-sequence' turns the event into a click event at the
10130 drag's starting position. This means that you don't have to distinguish
10131 between click and drag, double, or triple events unless you want to.
10133 `read-key-sequence' prefixes mouse events on mode lines, the vertical
10134 lines separating windows, and scroll bars with imaginary keys
10135 `mode-line', `vertical-line', and `vertical-scroll-bar'.
10137 Optional fourth argument CAN-RETURN-SWITCH-FRAME non-nil means that this
10138 function will process a switch-frame event if the user switches frames
10139 before typing anything. If the user switches frames in the middle of a
10140 key sequence, or at the start of the sequence but CAN-RETURN-SWITCH-FRAME
10141 is nil, then the event will be put off until after the current key sequence.
10143 `read-key-sequence' checks `function-key-map' for function key
10144 sequences, where they wouldn't conflict with ordinary bindings. See
10145 `function-key-map' for more details.
10147 The optional fifth argument COMMAND-LOOP, if non-nil, means
10148 that this key sequence is being read by something that will
10149 read commands one after another. It should be nil if the caller
10150 will read just one key sequence. */)
10151 (prompt
, continue_echo
, dont_downcase_last
, can_return_switch_frame
,
10153 Lisp_Object prompt
, continue_echo
, dont_downcase_last
;
10154 Lisp_Object can_return_switch_frame
, command_loop
;
10156 Lisp_Object keybuf
[30];
10158 struct gcpro gcpro1
;
10159 int count
= SPECPDL_INDEX ();
10161 if (!NILP (prompt
))
10162 CHECK_STRING (prompt
);
10165 specbind (Qinput_method_exit_on_first_char
,
10166 (NILP (command_loop
) ? Qt
: Qnil
));
10167 specbind (Qinput_method_use_echo_area
,
10168 (NILP (command_loop
) ? Qt
: Qnil
));
10170 bzero (keybuf
, sizeof keybuf
);
10171 GCPRO1 (keybuf
[0]);
10172 gcpro1
.nvars
= (sizeof keybuf
/sizeof (keybuf
[0]));
10174 if (NILP (continue_echo
))
10176 this_command_key_count
= 0;
10177 this_command_key_count_reset
= 0;
10178 this_single_command_key_start
= 0;
10181 #ifdef HAVE_WINDOW_SYSTEM
10182 if (display_hourglass_p
)
10183 cancel_hourglass ();
10186 i
= read_key_sequence (keybuf
, (sizeof keybuf
/sizeof (keybuf
[0])),
10187 prompt
, ! NILP (dont_downcase_last
),
10188 ! NILP (can_return_switch_frame
), 0);
10190 #if 0 /* The following is fine for code reading a key sequence and
10191 then proceeding with a lenghty computation, but it's not good
10192 for code reading keys in a loop, like an input method. */
10193 #ifdef HAVE_WINDOW_SYSTEM
10194 if (display_hourglass_p
)
10195 start_hourglass ();
10205 return unbind_to (count
, make_event_array (i
, keybuf
));
10208 DEFUN ("read-key-sequence-vector", Fread_key_sequence_vector
,
10209 Sread_key_sequence_vector
, 1, 5, 0,
10210 doc
: /* Like `read-key-sequence' but always return a vector. */)
10211 (prompt
, continue_echo
, dont_downcase_last
, can_return_switch_frame
,
10213 Lisp_Object prompt
, continue_echo
, dont_downcase_last
;
10214 Lisp_Object can_return_switch_frame
, command_loop
;
10216 Lisp_Object keybuf
[30];
10218 struct gcpro gcpro1
;
10219 int count
= SPECPDL_INDEX ();
10221 if (!NILP (prompt
))
10222 CHECK_STRING (prompt
);
10225 specbind (Qinput_method_exit_on_first_char
,
10226 (NILP (command_loop
) ? Qt
: Qnil
));
10227 specbind (Qinput_method_use_echo_area
,
10228 (NILP (command_loop
) ? Qt
: Qnil
));
10230 bzero (keybuf
, sizeof keybuf
);
10231 GCPRO1 (keybuf
[0]);
10232 gcpro1
.nvars
= (sizeof keybuf
/sizeof (keybuf
[0]));
10234 if (NILP (continue_echo
))
10236 this_command_key_count
= 0;
10237 this_command_key_count_reset
= 0;
10238 this_single_command_key_start
= 0;
10241 #ifdef HAVE_WINDOW_SYSTEM
10242 if (display_hourglass_p
)
10243 cancel_hourglass ();
10246 i
= read_key_sequence (keybuf
, (sizeof keybuf
/sizeof (keybuf
[0])),
10247 prompt
, ! NILP (dont_downcase_last
),
10248 ! NILP (can_return_switch_frame
), 0);
10250 #ifdef HAVE_WINDOW_SYSTEM
10251 if (display_hourglass_p
)
10252 start_hourglass ();
10261 return unbind_to (count
, Fvector (i
, keybuf
));
10264 DEFUN ("command-execute", Fcommand_execute
, Scommand_execute
, 1, 4, 0,
10265 doc
: /* Execute CMD as an editor command.
10266 CMD must be a symbol that satisfies the `commandp' predicate.
10267 Optional second arg RECORD-FLAG non-nil
10268 means unconditionally put this command in `command-history'.
10269 Otherwise, that is done only if an arg is read using the minibuffer.
10270 The argument KEYS specifies the value to use instead of (this-command-keys)
10271 when reading the arguments; if it is nil, (this-command-keys) is used.
10272 The argument SPECIAL, if non-nil, means that this command is executing
10273 a special event, so ignore the prefix argument and don't clear it. */)
10274 (cmd
, record_flag
, keys
, special
)
10275 Lisp_Object cmd
, record_flag
, keys
, special
;
10277 register Lisp_Object final
;
10278 register Lisp_Object tem
;
10279 Lisp_Object prefixarg
;
10280 extern int debug_on_next_call
;
10282 debug_on_next_call
= 0;
10284 if (NILP (special
))
10286 prefixarg
= current_kboard
->Vprefix_arg
;
10287 Vcurrent_prefix_arg
= prefixarg
;
10288 current_kboard
->Vprefix_arg
= Qnil
;
10295 tem
= Fget (cmd
, Qdisabled
);
10296 if (!NILP (tem
) && !NILP (Vrun_hooks
))
10298 tem
= Fsymbol_value (Qdisabled_command_function
);
10300 return call1 (Vrun_hooks
, Qdisabled_command_function
);
10306 final
= Findirect_function (cmd
, Qnil
);
10308 if (CONSP (final
) && (tem
= Fcar (final
), EQ (tem
, Qautoload
)))
10310 struct gcpro gcpro1
, gcpro2
;
10312 GCPRO2 (cmd
, prefixarg
);
10313 do_autoload (final
, cmd
);
10320 if (STRINGP (final
) || VECTORP (final
))
10322 /* If requested, place the macro in the command history. For
10323 other sorts of commands, call-interactively takes care of
10325 if (!NILP (record_flag
))
10328 = Fcons (Fcons (Qexecute_kbd_macro
,
10329 Fcons (final
, Fcons (prefixarg
, Qnil
))),
10332 /* Don't keep command history around forever. */
10333 if (NUMBERP (Vhistory_length
) && XINT (Vhistory_length
) > 0)
10335 tem
= Fnthcdr (Vhistory_length
, Vcommand_history
);
10337 XSETCDR (tem
, Qnil
);
10341 return Fexecute_kbd_macro (final
, prefixarg
, Qnil
);
10344 if (CONSP (final
) || SUBRP (final
) || COMPILEDP (final
))
10345 /* Don't call Fcall_interactively directly because we want to make
10346 sure the backtrace has an entry for `call-interactively'.
10347 For the same reason, pass `cmd' rather than `final'. */
10348 return call3 (Qcall_interactively
, cmd
, record_flag
, keys
);
10355 DEFUN ("execute-extended-command", Fexecute_extended_command
, Sexecute_extended_command
,
10357 doc
: /* Read function name, then read its arguments and call it.
10359 To pass a numeric argument to the command you are invoking with, specify
10360 the numeric argument to this command.
10362 Noninteractively, the argument PREFIXARG is the prefix argument to
10363 give to the command you invoke, if it asks for an argument. */)
10365 Lisp_Object prefixarg
;
10367 Lisp_Object function
;
10369 int saved_last_point_position
;
10370 Lisp_Object saved_keys
, saved_last_point_position_buffer
;
10371 Lisp_Object bindings
, value
;
10372 struct gcpro gcpro1
, gcpro2
, gcpro3
;
10373 #ifdef HAVE_WINDOW_SYSTEM
10374 /* The call to Fcompleting_read wil start and cancel the hourglass,
10375 but if the hourglass was already scheduled, this means that no
10376 hourglass will be shown for the actual M-x command itself.
10377 So we restart it if it is already scheduled. Note that checking
10378 hourglass_shown_p is not enough, normally the hourglass is not shown,
10379 just scheduled to be shown. */
10380 int hstarted
= hourglass_started ();
10383 saved_keys
= Fvector (this_command_key_count
,
10384 XVECTOR (this_command_keys
)->contents
);
10385 saved_last_point_position_buffer
= last_point_position_buffer
;
10386 saved_last_point_position
= last_point_position
;
10388 GCPRO3 (saved_keys
, prefixarg
, saved_last_point_position_buffer
);
10390 if (EQ (prefixarg
, Qminus
))
10391 strcpy (buf
, "- ");
10392 else if (CONSP (prefixarg
) && XINT (XCAR (prefixarg
)) == 4)
10393 strcpy (buf
, "C-u ");
10394 else if (CONSP (prefixarg
) && INTEGERP (XCAR (prefixarg
)))
10395 sprintf (buf
, "%ld ", (long) XINT (XCAR (prefixarg
)));
10396 else if (INTEGERP (prefixarg
))
10397 sprintf (buf
, "%ld ", (long) XINT (prefixarg
));
10399 /* This isn't strictly correct if execute-extended-command
10400 is bound to anything else. Perhaps it should use
10401 this_command_keys? */
10402 strcat (buf
, "M-x ");
10404 /* Prompt with buf, and then read a string, completing from and
10405 restricting to the set of all defined commands. Don't provide
10406 any initial input. Save the command read on the extended-command
10408 function
= Fcompleting_read (build_string (buf
),
10409 Vobarray
, Qcommandp
,
10410 Qt
, Qnil
, Qextended_command_history
, Qnil
,
10413 #ifdef HAVE_WINDOW_SYSTEM
10414 if (hstarted
) start_hourglass ();
10417 if (STRINGP (function
) && SCHARS (function
) == 0)
10418 error ("No command name given");
10420 /* Set this_command_keys to the concatenation of saved_keys and
10421 function, followed by a RET. */
10426 this_command_key_count
= 0;
10427 this_command_key_count_reset
= 0;
10428 this_single_command_key_start
= 0;
10430 keys
= XVECTOR (saved_keys
)->contents
;
10431 for (i
= 0; i
< XVECTOR (saved_keys
)->size
; i
++)
10432 add_command_key (keys
[i
]);
10434 for (i
= 0; i
< SCHARS (function
); i
++)
10435 add_command_key (Faref (function
, make_number (i
)));
10437 add_command_key (make_number ('\015'));
10440 last_point_position
= saved_last_point_position
;
10441 last_point_position_buffer
= saved_last_point_position_buffer
;
10445 function
= Fintern (function
, Qnil
);
10446 current_kboard
->Vprefix_arg
= prefixarg
;
10447 Vthis_command
= function
;
10448 real_this_command
= function
;
10450 /* If enabled, show which key runs this command. */
10451 if (!NILP (Vsuggest_key_bindings
)
10452 && NILP (Vexecuting_kbd_macro
)
10453 && SYMBOLP (function
))
10454 bindings
= Fwhere_is_internal (function
, Voverriding_local_map
,
10460 GCPRO3 (bindings
, value
, function
);
10461 value
= Fcommand_execute (function
, Qt
, Qnil
, Qnil
);
10463 /* If the command has a key binding, print it now. */
10464 if (!NILP (bindings
)
10465 && ! (VECTORP (bindings
) && EQ (Faref (bindings
, make_number (0)),
10468 /* But first wait, and skip the message if there is input. */
10469 Lisp_Object waited
;
10471 /* If this command displayed something in the echo area;
10472 wait a few seconds, then display our suggestion message. */
10473 if (NILP (echo_area_buffer
[0]))
10474 waited
= sit_for (make_number (0), 0, 2);
10475 else if (NUMBERP (Vsuggest_key_bindings
))
10476 waited
= sit_for (Vsuggest_key_bindings
, 0, 2);
10478 waited
= sit_for (make_number (2), 0, 2);
10480 if (!NILP (waited
) && ! CONSP (Vunread_command_events
))
10482 Lisp_Object binding
;
10484 int message_p
= push_message ();
10485 int count
= SPECPDL_INDEX ();
10487 record_unwind_protect (pop_message_unwind
, Qnil
);
10488 binding
= Fkey_description (bindings
, Qnil
);
10491 = (char *) alloca (SCHARS (SYMBOL_NAME (function
))
10494 sprintf (newmessage
, "You can run the command `%s' with %s",
10495 SDATA (SYMBOL_NAME (function
)),
10497 message2_nolog (newmessage
,
10498 strlen (newmessage
),
10499 STRING_MULTIBYTE (binding
));
10500 if (NUMBERP (Vsuggest_key_bindings
))
10501 waited
= sit_for (Vsuggest_key_bindings
, 0, 2);
10503 waited
= sit_for (make_number (2), 0, 2);
10505 if (!NILP (waited
) && message_p
)
10506 restore_message ();
10508 unbind_to (count
, Qnil
);
10512 RETURN_UNGCPRO (value
);
10516 /* Return nonzero if input events are pending. */
10519 detect_input_pending ()
10521 if (!input_pending
)
10522 get_input_pending (&input_pending
, 0);
10524 return input_pending
;
10527 /* Return nonzero if input events other than mouse movements are
10531 detect_input_pending_ignore_squeezables ()
10533 if (!input_pending
)
10534 get_input_pending (&input_pending
, READABLE_EVENTS_IGNORE_SQUEEZABLES
);
10536 return input_pending
;
10539 /* Return nonzero if input events are pending, and run any pending timers. */
10542 detect_input_pending_run_timers (do_display
)
10545 int old_timers_run
= timers_run
;
10547 if (!input_pending
)
10548 get_input_pending (&input_pending
, READABLE_EVENTS_DO_TIMERS_NOW
);
10550 if (old_timers_run
!= timers_run
&& do_display
)
10552 redisplay_preserve_echo_area (8);
10553 /* The following fixes a bug when using lazy-lock with
10554 lazy-lock-defer-on-the-fly set to t, i.e. when fontifying
10555 from an idle timer function. The symptom of the bug is that
10556 the cursor sometimes doesn't become visible until the next X
10557 event is processed. --gerd. */
10559 Lisp_Object tail
, frame
;
10560 FOR_EACH_FRAME (tail
, frame
)
10561 if (FRAME_RIF (XFRAME (frame
)))
10562 FRAME_RIF (XFRAME (frame
))->flush_display (XFRAME (frame
));
10566 return input_pending
;
10569 /* This is called in some cases before a possible quit.
10570 It cases the next call to detect_input_pending to recompute input_pending.
10571 So calling this function unnecessarily can't do any harm. */
10574 clear_input_pending ()
10579 /* Return nonzero if there are pending requeued events.
10580 This isn't used yet. The hope is to make wait_reading_process_output
10581 call it, and return if it runs Lisp code that unreads something.
10582 The problem is, kbd_buffer_get_event needs to be fixed to know what
10583 to do in that case. It isn't trivial. */
10586 requeued_events_pending_p ()
10588 return (!NILP (Vunread_command_events
) || unread_command_char
!= -1);
10592 DEFUN ("input-pending-p", Finput_pending_p
, Sinput_pending_p
, 0, 0, 0,
10593 doc
: /* Return t if command input is currently available with no wait.
10594 Actually, the value is nil only if we can be sure that no input is available;
10595 if there is a doubt, the value is t. */)
10598 if (!NILP (Vunread_command_events
) || unread_command_char
!= -1
10599 || !NILP (Vunread_post_input_method_events
)
10600 || !NILP (Vunread_input_method_events
))
10603 get_input_pending (&input_pending
,
10604 READABLE_EVENTS_DO_TIMERS_NOW
10605 | READABLE_EVENTS_FILTER_EVENTS
);
10606 return input_pending
> 0 ? Qt
: Qnil
;
10609 DEFUN ("recent-keys", Frecent_keys
, Srecent_keys
, 0, 0, 0,
10610 doc
: /* Return vector of last 300 events, not counting those from keyboard macros. */)
10613 Lisp_Object
*keys
= XVECTOR (recent_keys
)->contents
;
10616 if (total_keys
< NUM_RECENT_KEYS
)
10617 return Fvector (total_keys
, keys
);
10620 val
= Fvector (NUM_RECENT_KEYS
, keys
);
10621 bcopy (keys
+ recent_keys_index
,
10622 XVECTOR (val
)->contents
,
10623 (NUM_RECENT_KEYS
- recent_keys_index
) * sizeof (Lisp_Object
));
10625 XVECTOR (val
)->contents
+ NUM_RECENT_KEYS
- recent_keys_index
,
10626 recent_keys_index
* sizeof (Lisp_Object
));
10631 DEFUN ("this-command-keys", Fthis_command_keys
, Sthis_command_keys
, 0, 0, 0,
10632 doc
: /* Return the key sequence that invoked this command.
10633 However, if the command has called `read-key-sequence', it returns
10634 the last key sequence that has been read.
10635 The value is a string or a vector.
10637 See also `this-command-keys-vector'. */)
10640 return make_event_array (this_command_key_count
,
10641 XVECTOR (this_command_keys
)->contents
);
10644 DEFUN ("this-command-keys-vector", Fthis_command_keys_vector
, Sthis_command_keys_vector
, 0, 0, 0,
10645 doc
: /* Return the key sequence that invoked this command, as a vector.
10646 However, if the command has called `read-key-sequence', it returns
10647 the last key sequence that has been read.
10649 See also `this-command-keys'. */)
10652 return Fvector (this_command_key_count
,
10653 XVECTOR (this_command_keys
)->contents
);
10656 DEFUN ("this-single-command-keys", Fthis_single_command_keys
,
10657 Sthis_single_command_keys
, 0, 0, 0,
10658 doc
: /* Return the key sequence that invoked this command.
10659 More generally, it returns the last key sequence read, either by
10660 the command loop or by `read-key-sequence'.
10661 Unlike `this-command-keys', this function's value
10662 does not include prefix arguments.
10663 The value is always a vector. */)
10666 return Fvector (this_command_key_count
10667 - this_single_command_key_start
,
10668 (XVECTOR (this_command_keys
)->contents
10669 + this_single_command_key_start
));
10672 DEFUN ("this-single-command-raw-keys", Fthis_single_command_raw_keys
,
10673 Sthis_single_command_raw_keys
, 0, 0, 0,
10674 doc
: /* Return the raw events that were read for this command.
10675 More generally, it returns the last key sequence read, either by
10676 the command loop or by `read-key-sequence'.
10677 Unlike `this-single-command-keys', this function's value
10678 shows the events before all translations (except for input methods).
10679 The value is always a vector. */)
10682 return Fvector (raw_keybuf_count
,
10683 (XVECTOR (raw_keybuf
)->contents
));
10686 DEFUN ("reset-this-command-lengths", Freset_this_command_lengths
,
10687 Sreset_this_command_lengths
, 0, 0, 0,
10688 doc
: /* Make the unread events replace the last command and echo.
10689 Used in `universal-argument-other-key'.
10691 `universal-argument-other-key' rereads the event just typed.
10692 It then gets translated through `function-key-map'.
10693 The translated event has to replace the real events,
10694 both in the value of (this-command-keys) and in echoing.
10695 To achieve this, `universal-argument-other-key' calls
10696 `reset-this-command-lengths', which discards the record of reading
10697 these events the first time. */)
10700 this_command_key_count
= before_command_key_count
;
10701 if (this_command_key_count
< this_single_command_key_start
)
10702 this_single_command_key_start
= this_command_key_count
;
10704 echo_truncate (before_command_echo_length
);
10706 /* Cause whatever we put into unread-command-events
10707 to echo as if it were being freshly read from the keyboard. */
10708 this_command_key_count_reset
= 1;
10713 DEFUN ("clear-this-command-keys", Fclear_this_command_keys
,
10714 Sclear_this_command_keys
, 0, 1, 0,
10715 doc
: /* Clear out the vector that `this-command-keys' returns.
10716 Also clear the record of the last 100 events, unless optional arg
10717 KEEP-RECORD is non-nil. */)
10719 Lisp_Object keep_record
;
10723 this_command_key_count
= 0;
10724 this_command_key_count_reset
= 0;
10726 if (NILP (keep_record
))
10728 for (i
= 0; i
< XVECTOR (recent_keys
)->size
; ++i
)
10729 XVECTOR (recent_keys
)->contents
[i
] = Qnil
;
10731 recent_keys_index
= 0;
10736 DEFUN ("recursion-depth", Frecursion_depth
, Srecursion_depth
, 0, 0, 0,
10737 doc
: /* Return the current depth in recursive edits. */)
10741 XSETFASTINT (temp
, command_loop_level
+ minibuf_level
);
10745 DEFUN ("open-dribble-file", Fopen_dribble_file
, Sopen_dribble_file
, 1, 1,
10746 "FOpen dribble file: ",
10747 doc
: /* Start writing all keyboard characters to a dribble file called FILE.
10748 If FILE is nil, close any open dribble file. */)
10761 file
= Fexpand_file_name (file
, Qnil
);
10762 dribble
= fopen (SDATA (file
), "w");
10764 report_file_error ("Opening dribble", Fcons (file
, Qnil
));
10769 DEFUN ("discard-input", Fdiscard_input
, Sdiscard_input
, 0, 0, 0,
10770 doc
: /* Discard the contents of the terminal input buffer.
10771 Also end any kbd macro being defined. */)
10774 if (!NILP (current_kboard
->defining_kbd_macro
))
10776 /* Discard the last command from the macro. */
10777 Fcancel_kbd_macro_events ();
10781 update_mode_lines
++;
10783 Vunread_command_events
= Qnil
;
10784 unread_command_char
= -1;
10786 discard_tty_input ();
10788 kbd_fetch_ptr
= kbd_store_ptr
;
10794 DEFUN ("suspend-emacs", Fsuspend_emacs
, Ssuspend_emacs
, 0, 1, "",
10795 doc
: /* Stop Emacs and return to superior process. You can resume later.
10796 If `cannot-suspend' is non-nil, or if the system doesn't support job
10797 control, run a subshell instead.
10799 If optional arg STUFFSTRING is non-nil, its characters are stuffed
10800 to be read as terminal input by Emacs's parent, after suspension.
10802 Before suspending, run the normal hook `suspend-hook'.
10803 After resumption run the normal hook `suspend-resume-hook'.
10805 Some operating systems cannot stop the Emacs process and resume it later.
10806 On such systems, Emacs starts a subshell instead of suspending. */)
10808 Lisp_Object stuffstring
;
10810 int count
= SPECPDL_INDEX ();
10811 int old_height
, old_width
;
10813 struct gcpro gcpro1
;
10815 if (tty_list
&& tty_list
->next
)
10816 error ("There are other tty frames open; close them before suspending Emacs");
10818 if (!NILP (stuffstring
))
10819 CHECK_STRING (stuffstring
);
10821 /* Run the functions in suspend-hook. */
10822 if (!NILP (Vrun_hooks
))
10823 call1 (Vrun_hooks
, intern ("suspend-hook"));
10825 GCPRO1 (stuffstring
);
10826 get_tty_size (fileno (CURTTY ()->input
), &old_width
, &old_height
);
10827 reset_all_sys_modes ();
10828 /* sys_suspend can get an error if it tries to fork a subshell
10829 and the system resources aren't available for that. */
10830 record_unwind_protect ((Lisp_Object (*) P_ ((Lisp_Object
))) init_all_sys_modes
,
10832 stuff_buffered_input (stuffstring
);
10833 if (cannot_suspend
)
10837 unbind_to (count
, Qnil
);
10839 /* Check if terminal/window size has changed.
10840 Note that this is not useful when we are running directly
10841 with a window system; but suspend should be disabled in that case. */
10842 get_tty_size (fileno (CURTTY ()->input
), &width
, &height
);
10843 if (width
!= old_width
|| height
!= old_height
)
10844 change_frame_size (SELECTED_FRAME (), height
, width
, 0, 0, 0);
10846 /* Run suspend-resume-hook. */
10847 if (!NILP (Vrun_hooks
))
10848 call1 (Vrun_hooks
, intern ("suspend-resume-hook"));
10854 /* If STUFFSTRING is a string, stuff its contents as pending terminal input.
10855 Then in any case stuff anything Emacs has read ahead and not used. */
10858 stuff_buffered_input (stuffstring
)
10859 Lisp_Object stuffstring
;
10861 #ifdef SIGTSTP /* stuff_char is defined if SIGTSTP. */
10862 register unsigned char *p
;
10864 if (STRINGP (stuffstring
))
10866 register int count
;
10868 p
= SDATA (stuffstring
);
10869 count
= SBYTES (stuffstring
);
10870 while (count
-- > 0)
10875 /* Anything we have read ahead, put back for the shell to read. */
10876 /* ?? What should this do when we have multiple keyboards??
10877 Should we ignore anything that was typed in at the "wrong" kboard?
10879 rms: we should stuff everything back into the kboard
10881 for (; kbd_fetch_ptr
!= kbd_store_ptr
; kbd_fetch_ptr
++)
10884 if (kbd_fetch_ptr
== kbd_buffer
+ KBD_BUFFER_SIZE
)
10885 kbd_fetch_ptr
= kbd_buffer
;
10886 if (kbd_fetch_ptr
->kind
== ASCII_KEYSTROKE_EVENT
)
10887 stuff_char (kbd_fetch_ptr
->code
);
10889 clear_event (kbd_fetch_ptr
);
10893 #endif /* SIGTSTP */
10897 set_waiting_for_input (time_to_clear
)
10898 EMACS_TIME
*time_to_clear
;
10900 input_available_clear_time
= time_to_clear
;
10902 /* Tell handle_interrupt to throw back to read_char, */
10903 waiting_for_input
= 1;
10905 /* If handle_interrupt was called before and buffered a C-g,
10906 make it run again now, to avoid timing error. */
10907 if (!NILP (Vquit_flag
))
10908 quit_throw_to_read_char ();
10912 clear_waiting_for_input ()
10914 /* Tell handle_interrupt not to throw back to read_char, */
10915 waiting_for_input
= 0;
10916 input_available_clear_time
= 0;
10919 /* The SIGINT handler.
10921 If we have a frame on the controlling tty, we assume that the
10922 SIGINT was generated by C-g, so we call handle_interrupt.
10923 Otherwise, the handler kills Emacs. */
10926 interrupt_signal (signalnum
) /* If we don't have an argument, */
10927 int signalnum
; /* some compilers complain in signal calls. */
10929 /* Must preserve main program's value of errno. */
10930 int old_errno
= errno
;
10931 struct terminal
*terminal
;
10933 #if defined (USG) && !defined (POSIX_SIGNALS)
10934 /* USG systems forget handlers when they are used;
10935 must reestablish each time */
10936 signal (SIGINT
, interrupt_signal
);
10937 signal (SIGQUIT
, interrupt_signal
);
10940 SIGNAL_THREAD_CHECK (signalnum
);
10942 /* See if we have an active terminal on our controlling tty. */
10943 terminal
= get_named_tty ("/dev/tty");
10946 /* If there are no frames there, let's pretend that we are a
10947 well-behaving UN*X program and quit. */
10948 Fkill_emacs (Qnil
);
10952 /* Otherwise, the SIGINT was probably generated by C-g. */
10954 /* Set internal_last_event_frame to the top frame of the
10955 controlling tty, if we have a frame there. We disable the
10956 interrupt key on secondary ttys, so the SIGINT must have come
10957 from the controlling tty. */
10958 internal_last_event_frame
= terminal
->display_info
.tty
->top_frame
;
10960 handle_interrupt ();
10966 /* This routine is called at interrupt level in response to C-g.
10968 It is called from the SIGINT handler or kbd_buffer_store_event.
10970 If `waiting_for_input' is non zero, then unless `echoing' is
10971 nonzero, immediately throw back to read_char.
10973 Otherwise it sets the Lisp variable quit-flag not-nil. This causes
10974 eval to throw, when it gets a chance. If quit-flag is already
10975 non-nil, it stops the job right away. */
10978 handle_interrupt ()
10984 /* XXX This code needs to be revised for multi-tty support. */
10985 if (!NILP (Vquit_flag
) && get_named_tty ("/dev/tty"))
10987 /* If SIGINT isn't blocked, don't let us be interrupted by
10988 another SIGINT, it might be harmful due to non-reentrancy
10989 in I/O functions. */
10990 sigblock (sigmask (SIGINT
));
10993 reset_all_sys_modes ();
10995 #ifdef SIGTSTP /* Support possible in later USG versions */
10997 * On systems which can suspend the current process and return to the original
10998 * shell, this command causes the user to end up back at the shell.
10999 * The "Auto-save" and "Abort" questions are not asked until
11000 * the user elects to return to emacs, at which point he can save the current
11001 * job and either dump core or continue.
11005 /* Perhaps should really fork an inferior shell?
11006 But that would not provide any way to get back
11007 to the original shell, ever. */
11008 printf ("No support for stopping a process on this operating system;\n");
11009 printf ("you can continue or abort.\n");
11010 #endif /* not SIGTSTP */
11012 /* We must remain inside the screen area when the internal terminal
11013 is used. Note that [Enter] is not echoed by dos. */
11014 cursor_to (SELECTED_FRAME (), 0, 0);
11016 /* It doesn't work to autosave while GC is in progress;
11017 the code used for auto-saving doesn't cope with the mark bit. */
11018 if (!gc_in_progress
)
11020 printf ("Auto-save? (y or n) ");
11022 if (((c
= getchar ()) & ~040) == 'Y')
11024 Fdo_auto_save (Qt
, Qnil
);
11026 printf ("\r\nAuto-save done");
11027 #else /* not MSDOS */
11028 printf ("Auto-save done\n");
11029 #endif /* not MSDOS */
11031 while (c
!= '\n') c
= getchar ();
11035 /* During GC, it must be safe to reenable quitting again. */
11036 Vinhibit_quit
= Qnil
;
11039 #endif /* not MSDOS */
11040 printf ("Garbage collection in progress; cannot auto-save now\r\n");
11041 printf ("but will instead do a real quit after garbage collection ends\r\n");
11046 printf ("\r\nAbort? (y or n) ");
11047 #else /* not MSDOS */
11048 printf ("Abort (and dump core)? (y or n) ");
11049 #endif /* not MSDOS */
11051 if (((c
= getchar ()) & ~040) == 'Y')
11053 while (c
!= '\n') c
= getchar ();
11055 printf ("\r\nContinuing...\r\n");
11056 #else /* not MSDOS */
11057 printf ("Continuing...\n");
11058 #endif /* not MSDOS */
11060 init_all_sys_modes ();
11065 /* If executing a function that wants to be interrupted out of
11066 and the user has not deferred quitting by binding `inhibit-quit'
11067 then quit right away. */
11068 if (immediate_quit
&& NILP (Vinhibit_quit
))
11070 struct gl_state_s saved
;
11071 struct gcpro gcpro1
, gcpro2
, gcpro3
, gcpro4
;
11073 immediate_quit
= 0;
11076 GCPRO4 (saved
.object
, saved
.global_code
,
11077 saved
.current_syntax_table
, saved
.old_prop
);
11078 Fsignal (Qquit
, Qnil
);
11083 /* Else request quit when it's safe */
11087 if (waiting_for_input
&& !echoing
)
11088 quit_throw_to_read_char ();
11091 /* Handle a C-g by making read_char return C-g. */
11094 quit_throw_to_read_char ()
11097 /* Prevent another signal from doing this before we finish. */
11098 clear_waiting_for_input ();
11101 Vunread_command_events
= Qnil
;
11102 unread_command_char
= -1;
11104 #if 0 /* Currently, sit_for is called from read_char without turning
11105 off polling. And that can call set_waiting_for_input.
11106 It seems to be harmless. */
11107 #ifdef POLL_FOR_INPUT
11108 /* May be > 1 if in recursive minibuffer. */
11109 if (poll_suppress_count
== 0)
11113 if (FRAMEP (internal_last_event_frame
)
11114 && !EQ (internal_last_event_frame
, selected_frame
))
11115 do_switch_frame (make_lispy_switch_frame (internal_last_event_frame
),
11118 _longjmp (getcjmp
, 1);
11121 DEFUN ("set-input-interrupt-mode", Fset_input_interrupt_mode
, Sset_input_interrupt_mode
, 1, 1, 0,
11122 doc
: /* Set interrupt mode of reading keyboard input.
11123 If INTERRUPT is non-nil, Emacs will use input interrupts;
11124 otherwise Emacs uses CBREAK mode.
11126 See also `current-input-mode'. */)
11128 Lisp_Object interrupt
;
11130 int new_interrupt_input
;
11132 /* Note SIGIO has been undef'd if FIONREAD is missing. */
11133 #ifdef HAVE_X_WINDOWS
11134 if (x_display_list
!= NULL
)
11136 /* When using X, don't give the user a real choice,
11137 because we haven't implemented the mechanisms to support it. */
11138 #ifdef NO_SOCK_SIGIO
11139 new_interrupt_input
= 0;
11140 #else /* not NO_SOCK_SIGIO */
11141 new_interrupt_input
= 1;
11142 #endif /* NO_SOCK_SIGIO */
11146 new_interrupt_input
= !NILP (interrupt
);
11147 #else /* not SIGIO */
11148 new_interrupt_input
= 0;
11149 #endif /* not SIGIO */
11151 if (new_interrupt_input
!= interrupt_input
)
11153 #ifdef POLL_FOR_INPUT
11157 /* this causes startup screen to be restored and messes with the mouse */
11158 reset_all_sys_modes ();
11160 interrupt_input
= new_interrupt_input
;
11162 init_all_sys_modes ();
11165 #ifdef POLL_FOR_INPUT
11166 poll_suppress_count
= 1;
11173 DEFUN ("set-output-flow-control", Fset_output_flow_control
, Sset_output_flow_control
, 1, 2, 0,
11174 doc
: /* Enable or disable ^S/^Q flow control for output to TERMINAL.
11175 If FLOW is non-nil, flow control is enabled and you cannot use C-s or
11176 C-q in key sequences.
11178 This setting only has an effect on tty terminals and only when
11179 Emacs reads input in CBREAK mode; see `set-input-interrupt-mode'.
11181 See also `current-input-mode'. */)
11183 Lisp_Object flow
, terminal
;
11185 struct terminal
*t
= get_terminal (terminal
, 1);
11186 struct tty_display_info
*tty
;
11187 if (t
== NULL
|| (t
->type
!= output_termcap
&& t
->type
!= output_msdos_raw
))
11189 tty
= t
->display_info
.tty
;
11191 if (tty
->flow_control
!= !NILP (flow
))
11194 /* this causes startup screen to be restored and messes with the mouse */
11195 reset_sys_modes (tty
);
11198 tty
->flow_control
= !NILP (flow
);
11201 init_sys_modes (tty
);
11207 DEFUN ("set-input-meta-mode", Fset_input_meta_mode
, Sset_input_meta_mode
, 1, 2, 0,
11208 doc
: /* Enable or disable 8-bit input on TERMINAL.
11209 If META is t, Emacs will accept 8-bit input, and interpret the 8th
11210 bit as the Meta modifier.
11212 If META is nil, Emacs will ignore the top bit, on the assumption it is
11215 Otherwise, Emacs will accept and pass through 8-bit input without
11216 specially interpreting the top bit.
11218 This setting only has an effect on tty terminal devices.
11220 Optional parameter TERMINAL specifies the tty terminal device to use.
11221 It may be a terminal id, a frame, or nil for the terminal used by the
11222 currently selected frame.
11224 See also `current-input-mode'. */)
11226 Lisp_Object meta
, terminal
;
11228 struct terminal
*t
= get_terminal (terminal
, 1);
11229 struct tty_display_info
*tty
;
11232 if (t
== NULL
|| (t
->type
!= output_termcap
&& t
->type
!= output_msdos_raw
))
11234 tty
= t
->display_info
.tty
;
11238 else if (EQ (meta
, Qt
))
11243 if (tty
->meta_key
!= new_meta
)
11246 /* this causes startup screen to be restored and messes with the mouse */
11247 reset_sys_modes (tty
);
11250 tty
->meta_key
= new_meta
;
11253 init_sys_modes (tty
);
11259 DEFUN ("set-quit-char", Fset_quit_char
, Sset_quit_char
, 1, 1, 0,
11260 doc
: /* Specify character used for quitting.
11261 QUIT must be an ASCII character.
11263 This function only has an effect on the controlling tty of the Emacs
11266 See also `current-input-mode'. */)
11270 struct terminal
*t
= get_named_tty ("/dev/tty");
11271 struct tty_display_info
*tty
;
11272 if (t
== NULL
|| (t
->type
!= output_termcap
&& t
->type
!= output_msdos_raw
))
11274 tty
= t
->display_info
.tty
;
11276 if (NILP (quit
) || !INTEGERP (quit
) || XINT (quit
) < 0 || XINT (quit
) > 0400)
11277 error ("QUIT must be an ASCII character");
11280 /* this causes startup screen to be restored and messes with the mouse */
11281 reset_sys_modes (tty
);
11284 /* Don't let this value be out of range. */
11285 quit_char
= XINT (quit
) & (tty
->meta_key
== 0 ? 0177 : 0377);
11288 init_sys_modes (tty
);
11294 DEFUN ("set-input-mode", Fset_input_mode
, Sset_input_mode
, 3, 4, 0,
11295 doc
: /* Set mode of reading keyboard input.
11296 First arg INTERRUPT non-nil means use input interrupts;
11297 nil means use CBREAK mode.
11298 Second arg FLOW non-nil means use ^S/^Q flow control for output to terminal
11299 (no effect except in CBREAK mode).
11300 Third arg META t means accept 8-bit input (for a Meta key).
11301 META nil means ignore the top bit, on the assumption it is parity.
11302 Otherwise, accept 8-bit input and don't use the top bit for Meta.
11303 Optional fourth arg QUIT if non-nil specifies character to use for quitting.
11304 See also `current-input-mode'. */)
11305 (interrupt
, flow
, meta
, quit
)
11306 Lisp_Object interrupt
, flow
, meta
, quit
;
11308 Fset_input_interrupt_mode (interrupt
);
11309 Fset_output_flow_control (flow
, Qnil
);
11310 Fset_input_meta_mode (meta
, Qnil
);
11312 Fset_quit_char (quit
);
11316 DEFUN ("current-input-mode", Fcurrent_input_mode
, Scurrent_input_mode
, 0, 0, 0,
11317 doc
: /* Return information about the way Emacs currently reads keyboard input.
11318 The value is a list of the form (INTERRUPT FLOW META QUIT), where
11319 INTERRUPT is non-nil if Emacs is using interrupt-driven input; if
11320 nil, Emacs is using CBREAK mode.
11321 FLOW is non-nil if Emacs uses ^S/^Q flow control for output to the
11322 terminal; this does not apply if Emacs uses interrupt-driven input.
11323 META is t if accepting 8-bit input with 8th bit as Meta flag.
11324 META nil means ignoring the top bit, on the assumption it is parity.
11325 META is neither t nor nil if accepting 8-bit input and using
11326 all 8 bits as the character code.
11327 QUIT is the character Emacs currently uses to quit.
11328 The elements of this list correspond to the arguments of
11329 `set-input-mode'. */)
11332 Lisp_Object val
[4];
11333 struct frame
*sf
= XFRAME (selected_frame
);
11335 val
[0] = interrupt_input
? Qt
: Qnil
;
11336 if (FRAME_TERMCAP_P (sf
) || FRAME_MSDOS_P (sf
))
11338 val
[1] = FRAME_TTY (sf
)->flow_control
? Qt
: Qnil
;
11339 val
[2] = (FRAME_TTY (sf
)->meta_key
== 2
11341 : (CURTTY ()->meta_key
== 1 ? Qt
: Qnil
));
11348 XSETFASTINT (val
[3], quit_char
);
11350 return Flist (sizeof (val
) / sizeof (val
[0]), val
);
11353 DEFUN ("posn-at-x-y", Fposn_at_x_y
, Sposn_at_x_y
, 2, 4, 0,
11354 doc
: /* Return position information for pixel coordinates X and Y.
11355 By default, X and Y are relative to text area of the selected window.
11356 Optional third arg FRAME-OR-WINDOW non-nil specifies frame or window.
11357 If optional fourth arg WHOLE is non-nil, X is relative to the left
11358 edge of the window.
11360 The return value is similar to a mouse click position:
11361 (WINDOW AREA-OR-POS (X . Y) TIMESTAMP OBJECT POS (COL . ROW)
11362 IMAGE (DX . DY) (WIDTH . HEIGHT))
11363 The `posn-' functions access elements of such lists. */)
11364 (x
, y
, frame_or_window
, whole
)
11365 Lisp_Object x
, y
, frame_or_window
, whole
;
11370 if (NILP (frame_or_window
))
11371 frame_or_window
= selected_window
;
11373 if (WINDOWP (frame_or_window
))
11377 CHECK_LIVE_WINDOW (frame_or_window
);
11379 w
= XWINDOW (frame_or_window
);
11380 XSETINT (x
, (XINT (x
)
11381 + WINDOW_LEFT_EDGE_X (w
)
11383 ? window_box_left_offset (w
, TEXT_AREA
)
11385 XSETINT (y
, WINDOW_TO_FRAME_PIXEL_Y (w
, XINT (y
)));
11386 frame_or_window
= w
->frame
;
11389 CHECK_LIVE_FRAME (frame_or_window
);
11391 return make_lispy_position (XFRAME (frame_or_window
), &x
, &y
, 0);
11394 DEFUN ("posn-at-point", Fposn_at_point
, Sposn_at_point
, 0, 2, 0,
11395 doc
: /* Return position information for buffer POS in WINDOW.
11396 POS defaults to point in WINDOW; WINDOW defaults to the selected window.
11398 Return nil if position is not visible in window. Otherwise,
11399 the return value is similar to that returned by `event-start' for
11400 a mouse click at the upper left corner of the glyph corresponding
11401 to the given buffer position:
11402 (WINDOW AREA-OR-POS (X . Y) TIMESTAMP OBJECT POS (COL . ROW)
11403 IMAGE (DX . DY) (WIDTH . HEIGHT))
11404 The `posn-' functions access elements of such lists. */)
11406 Lisp_Object pos
, window
;
11411 window
= selected_window
;
11413 tem
= Fpos_visible_in_window_p (pos
, window
, Qt
);
11416 Lisp_Object x
= XCAR (tem
);
11417 Lisp_Object y
= XCAR (XCDR (tem
));
11419 /* Point invisible due to hscrolling? */
11422 tem
= Fposn_at_x_y (x
, y
, window
, Qnil
);
11430 * Set up a new kboard object with reasonable initial values.
11436 kb
->Voverriding_terminal_local_map
= Qnil
;
11437 kb
->Vlast_command
= Qnil
;
11438 kb
->Vreal_last_command
= Qnil
;
11439 kb
->Vkeyboard_translate_table
= Qnil
;
11440 kb
->Vlast_repeatable_command
= Qnil
;
11441 kb
->Vprefix_arg
= Qnil
;
11442 kb
->Vlast_prefix_arg
= Qnil
;
11443 kb
->kbd_queue
= Qnil
;
11444 kb
->kbd_queue_has_data
= 0;
11445 kb
->immediate_echo
= 0;
11446 kb
->echo_string
= Qnil
;
11447 kb
->echo_after_prompt
= -1;
11448 kb
->kbd_macro_buffer
= 0;
11449 kb
->kbd_macro_bufsize
= 0;
11450 kb
->defining_kbd_macro
= Qnil
;
11451 kb
->Vlast_kbd_macro
= Qnil
;
11452 kb
->reference_count
= 0;
11453 kb
->Vsystem_key_alist
= Qnil
;
11454 kb
->system_key_syms
= Qnil
;
11455 kb
->Vwindow_system
= Qt
; /* Unset. */
11456 kb
->Vinput_decode_map
= Fmake_sparse_keymap (Qnil
);
11457 kb
->Vlocal_function_key_map
= Fmake_sparse_keymap (Qnil
);
11458 Fset_keymap_parent (kb
->Vlocal_function_key_map
, Vfunction_key_map
);
11459 kb
->Vdefault_minibuffer_frame
= Qnil
;
11463 * Destroy the contents of a kboard object, but not the object itself.
11464 * We use this just before deleting it, or if we're going to initialize
11465 * it a second time.
11471 xfree (kb
->kbd_macro_buffer
);
11474 /* Free KB and memory referenced from it. */
11482 for (kbp
= &all_kboards
; *kbp
!= kb
; kbp
= &(*kbp
)->next_kboard
)
11485 *kbp
= kb
->next_kboard
;
11487 /* Prevent a dangling reference to KB. */
11488 if (kb
== current_kboard
11489 && FRAMEP (selected_frame
)
11490 && FRAME_LIVE_P (XFRAME (selected_frame
)))
11492 current_kboard
= FRAME_KBOARD (XFRAME (selected_frame
));
11494 if (current_kboard
== kb
)
11505 /* This is correct before outermost invocation of the editor loop */
11506 command_loop_level
= -1;
11507 immediate_quit
= 0;
11508 quit_char
= Ctl ('g');
11509 Vunread_command_events
= Qnil
;
11510 unread_command_char
= -1;
11511 EMACS_SET_SECS_USECS (timer_idleness_start_time
, -1, -1);
11513 recent_keys_index
= 0;
11514 kbd_fetch_ptr
= kbd_buffer
;
11515 kbd_store_ptr
= kbd_buffer
;
11516 #if defined (HAVE_MOUSE) || defined (HAVE_GPM)
11517 do_mouse_tracking
= Qnil
;
11520 interrupt_input_blocked
= 0;
11521 interrupt_input_pending
= 0;
11523 /* This means that command_loop_1 won't try to select anything the first
11525 internal_last_event_frame
= Qnil
;
11526 Vlast_event_frame
= internal_last_event_frame
;
11528 current_kboard
= initial_kboard
;
11529 /* Re-initialize the keyboard again. */
11530 wipe_kboard (current_kboard
);
11531 init_kboard (current_kboard
);
11532 /* A value of nil for Vwindow_system normally means a tty, but we also use
11533 it for the initial terminal since there is no window system there. */
11534 current_kboard
->Vwindow_system
= Qnil
;
11536 if (!noninteractive
)
11538 /* Before multi-tty support, these handlers used to be installed
11539 only if the current session was a tty session. Now an Emacs
11540 session may have multiple display types, so we always handle
11541 SIGINT. There is special code in interrupt_signal to exit
11542 Emacs on SIGINT when there are no termcap frames on the
11543 controlling terminal. */
11544 signal (SIGINT
, interrupt_signal
);
11545 #if defined (HAVE_TERMIO) || defined (HAVE_TERMIOS)
11546 /* For systems with SysV TERMIO, C-g is set up for both SIGINT and
11547 SIGQUIT and we can't tell which one it will give us. */
11548 signal (SIGQUIT
, interrupt_signal
);
11549 #endif /* HAVE_TERMIO */
11551 /* Note SIGIO has been undef'd if FIONREAD is missing. */
11553 if (!noninteractive
)
11554 signal (SIGIO
, input_available_signal
);
11557 /* Use interrupt input by default, if it works and noninterrupt input
11558 has deficiencies. */
11560 #ifdef INTERRUPT_INPUT
11561 interrupt_input
= 1;
11563 interrupt_input
= 0;
11569 if (keyboard_init_hook
)
11570 (*keyboard_init_hook
) ();
11572 #ifdef POLL_FOR_INPUT
11573 poll_suppress_count
= 1;
11578 /* This type's only use is in syms_of_keyboard, to initialize the
11579 event header symbols and put properties on them. */
11580 struct event_head
{
11586 struct event_head head_table
[] = {
11587 {&Qmouse_movement
, "mouse-movement", &Qmouse_movement
},
11588 {&Qscroll_bar_movement
, "scroll-bar-movement", &Qmouse_movement
},
11589 {&Qswitch_frame
, "switch-frame", &Qswitch_frame
},
11590 {&Qdelete_frame
, "delete-frame", &Qdelete_frame
},
11591 {&Qiconify_frame
, "iconify-frame", &Qiconify_frame
},
11592 {&Qmake_frame_visible
, "make-frame-visible", &Qmake_frame_visible
},
11593 /* `select-window' should be handled just like `switch-frame'
11594 in read_key_sequence. */
11595 {&Qselect_window
, "select-window", &Qswitch_frame
}
11599 syms_of_keyboard ()
11601 pending_funcalls
= Qnil
;
11603 Vlispy_mouse_stem
= build_string ("mouse");
11604 staticpro (&Vlispy_mouse_stem
);
11607 QCimage
= intern (":image");
11608 staticpro (&QCimage
);
11610 staticpro (&Qhelp_echo
);
11611 Qhelp_echo
= intern ("help-echo");
11614 Qrtl
= intern (":rtl");
11616 staticpro (&item_properties
);
11617 item_properties
= Qnil
;
11619 staticpro (&tool_bar_item_properties
);
11620 tool_bar_item_properties
= Qnil
;
11621 staticpro (&tool_bar_items_vector
);
11622 tool_bar_items_vector
= Qnil
;
11624 staticpro (&real_this_command
);
11625 real_this_command
= Qnil
;
11627 Qtimer_event_handler
= intern ("timer-event-handler");
11628 staticpro (&Qtimer_event_handler
);
11630 Qdisabled_command_function
= intern ("disabled-command-function");
11631 staticpro (&Qdisabled_command_function
);
11633 Qself_insert_command
= intern ("self-insert-command");
11634 staticpro (&Qself_insert_command
);
11636 Qforward_char
= intern ("forward-char");
11637 staticpro (&Qforward_char
);
11639 Qbackward_char
= intern ("backward-char");
11640 staticpro (&Qbackward_char
);
11642 Qdisabled
= intern ("disabled");
11643 staticpro (&Qdisabled
);
11645 Qundefined
= intern ("undefined");
11646 staticpro (&Qundefined
);
11648 Qpre_command_hook
= intern ("pre-command-hook");
11649 staticpro (&Qpre_command_hook
);
11651 Qpost_command_hook
= intern ("post-command-hook");
11652 staticpro (&Qpost_command_hook
);
11654 Qdeferred_action_function
= intern ("deferred-action-function");
11655 staticpro (&Qdeferred_action_function
);
11657 Qcommand_hook_internal
= intern ("command-hook-internal");
11658 staticpro (&Qcommand_hook_internal
);
11660 Qfunction_key
= intern ("function-key");
11661 staticpro (&Qfunction_key
);
11662 Qmouse_click
= intern ("mouse-click");
11663 staticpro (&Qmouse_click
);
11664 #if defined (WINDOWSNT)
11665 Qlanguage_change
= intern ("language-change");
11666 staticpro (&Qlanguage_change
);
11668 Qdrag_n_drop
= intern ("drag-n-drop");
11669 staticpro (&Qdrag_n_drop
);
11671 Qsave_session
= intern ("save-session");
11672 staticpro (&Qsave_session
);
11675 Qdbus_event
= intern ("dbus-event");
11676 staticpro (&Qdbus_event
);
11679 Qmenu_enable
= intern ("menu-enable");
11680 staticpro (&Qmenu_enable
);
11681 Qmenu_alias
= intern ("menu-alias");
11682 staticpro (&Qmenu_alias
);
11683 QCenable
= intern (":enable");
11684 staticpro (&QCenable
);
11685 QCvisible
= intern (":visible");
11686 staticpro (&QCvisible
);
11687 QChelp
= intern (":help");
11688 staticpro (&QChelp
);
11689 QCfilter
= intern (":filter");
11690 staticpro (&QCfilter
);
11691 QCbutton
= intern (":button");
11692 staticpro (&QCbutton
);
11693 QCkeys
= intern (":keys");
11694 staticpro (&QCkeys
);
11695 QCkey_sequence
= intern (":key-sequence");
11696 staticpro (&QCkey_sequence
);
11697 QCtoggle
= intern (":toggle");
11698 staticpro (&QCtoggle
);
11699 QCradio
= intern (":radio");
11700 staticpro (&QCradio
);
11702 Qmode_line
= intern ("mode-line");
11703 staticpro (&Qmode_line
);
11704 Qvertical_line
= intern ("vertical-line");
11705 staticpro (&Qvertical_line
);
11706 Qvertical_scroll_bar
= intern ("vertical-scroll-bar");
11707 staticpro (&Qvertical_scroll_bar
);
11708 Qmenu_bar
= intern ("menu-bar");
11709 staticpro (&Qmenu_bar
);
11711 #if defined (HAVE_MOUSE) || defined (HAVE_GPM)
11712 Qmouse_fixup_help_message
= intern ("mouse-fixup-help-message");
11713 staticpro (&Qmouse_fixup_help_message
);
11716 Qabove_handle
= intern ("above-handle");
11717 staticpro (&Qabove_handle
);
11718 Qhandle
= intern ("handle");
11719 staticpro (&Qhandle
);
11720 Qbelow_handle
= intern ("below-handle");
11721 staticpro (&Qbelow_handle
);
11722 Qup
= intern ("up");
11724 Qdown
= intern ("down");
11725 staticpro (&Qdown
);
11726 Qtop
= intern ("top");
11728 Qbottom
= intern ("bottom");
11729 staticpro (&Qbottom
);
11730 Qend_scroll
= intern ("end-scroll");
11731 staticpro (&Qend_scroll
);
11732 Qratio
= intern ("ratio");
11733 staticpro (&Qratio
);
11735 Qevent_kind
= intern ("event-kind");
11736 staticpro (&Qevent_kind
);
11737 Qevent_symbol_elements
= intern ("event-symbol-elements");
11738 staticpro (&Qevent_symbol_elements
);
11739 Qevent_symbol_element_mask
= intern ("event-symbol-element-mask");
11740 staticpro (&Qevent_symbol_element_mask
);
11741 Qmodifier_cache
= intern ("modifier-cache");
11742 staticpro (&Qmodifier_cache
);
11744 Qrecompute_lucid_menubar
= intern ("recompute-lucid-menubar");
11745 staticpro (&Qrecompute_lucid_menubar
);
11746 Qactivate_menubar_hook
= intern ("activate-menubar-hook");
11747 staticpro (&Qactivate_menubar_hook
);
11749 Qpolling_period
= intern ("polling-period");
11750 staticpro (&Qpolling_period
);
11752 Qinput_method_function
= intern ("input-method-function");
11753 staticpro (&Qinput_method_function
);
11755 Qinput_method_exit_on_first_char
= intern ("input-method-exit-on-first-char");
11756 staticpro (&Qinput_method_exit_on_first_char
);
11757 Qinput_method_use_echo_area
= intern ("input-method-use-echo-area");
11758 staticpro (&Qinput_method_use_echo_area
);
11760 Fset (Qinput_method_exit_on_first_char
, Qnil
);
11761 Fset (Qinput_method_use_echo_area
, Qnil
);
11763 last_point_position_buffer
= Qnil
;
11764 last_point_position_window
= Qnil
;
11767 struct event_head
*p
;
11769 for (p
= head_table
;
11770 p
< head_table
+ (sizeof (head_table
) / sizeof (head_table
[0]));
11773 *p
->var
= intern (p
->name
);
11774 staticpro (p
->var
);
11775 Fput (*p
->var
, Qevent_kind
, *p
->kind
);
11776 Fput (*p
->var
, Qevent_symbol_elements
, Fcons (*p
->var
, Qnil
));
11780 button_down_location
= Fmake_vector (make_number (1), Qnil
);
11781 staticpro (&button_down_location
);
11782 mouse_syms
= Fmake_vector (make_number (1), Qnil
);
11783 staticpro (&mouse_syms
);
11784 wheel_syms
= Fmake_vector (make_number (4), Qnil
);
11785 staticpro (&wheel_syms
);
11789 int len
= sizeof (modifier_names
) / sizeof (modifier_names
[0]);
11791 modifier_symbols
= Fmake_vector (make_number (len
), Qnil
);
11792 for (i
= 0; i
< len
; i
++)
11793 if (modifier_names
[i
])
11794 XVECTOR (modifier_symbols
)->contents
[i
] = intern (modifier_names
[i
]);
11795 staticpro (&modifier_symbols
);
11798 recent_keys
= Fmake_vector (make_number (NUM_RECENT_KEYS
), Qnil
);
11799 staticpro (&recent_keys
);
11801 this_command_keys
= Fmake_vector (make_number (40), Qnil
);
11802 staticpro (&this_command_keys
);
11804 raw_keybuf
= Fmake_vector (make_number (30), Qnil
);
11805 staticpro (&raw_keybuf
);
11807 Qextended_command_history
= intern ("extended-command-history");
11808 Fset (Qextended_command_history
, Qnil
);
11809 staticpro (&Qextended_command_history
);
11811 accent_key_syms
= Qnil
;
11812 staticpro (&accent_key_syms
);
11814 func_key_syms
= Qnil
;
11815 staticpro (&func_key_syms
);
11817 drag_n_drop_syms
= Qnil
;
11818 staticpro (&drag_n_drop_syms
);
11820 unread_switch_frame
= Qnil
;
11821 staticpro (&unread_switch_frame
);
11823 internal_last_event_frame
= Qnil
;
11824 staticpro (&internal_last_event_frame
);
11826 read_key_sequence_cmd
= Qnil
;
11827 staticpro (&read_key_sequence_cmd
);
11829 menu_bar_one_keymap_changed_items
= Qnil
;
11830 staticpro (&menu_bar_one_keymap_changed_items
);
11832 menu_bar_items_vector
= Qnil
;
11833 staticpro (&menu_bar_items_vector
);
11835 help_form_saved_window_configs
= Qnil
;
11836 staticpro (&help_form_saved_window_configs
);
11838 defsubr (&Scurrent_idle_time
);
11839 defsubr (&Sevent_symbol_parse_modifiers
);
11840 defsubr (&Sevent_convert_list
);
11841 defsubr (&Sread_key_sequence
);
11842 defsubr (&Sread_key_sequence_vector
);
11843 defsubr (&Srecursive_edit
);
11844 #if defined (HAVE_MOUSE) || defined (HAVE_GPM)
11845 defsubr (&Strack_mouse
);
11847 defsubr (&Sinput_pending_p
);
11848 defsubr (&Scommand_execute
);
11849 defsubr (&Srecent_keys
);
11850 defsubr (&Sthis_command_keys
);
11851 defsubr (&Sthis_command_keys_vector
);
11852 defsubr (&Sthis_single_command_keys
);
11853 defsubr (&Sthis_single_command_raw_keys
);
11854 defsubr (&Sreset_this_command_lengths
);
11855 defsubr (&Sclear_this_command_keys
);
11856 defsubr (&Ssuspend_emacs
);
11857 defsubr (&Sabort_recursive_edit
);
11858 defsubr (&Sexit_recursive_edit
);
11859 defsubr (&Srecursion_depth
);
11860 defsubr (&Stop_level
);
11861 defsubr (&Sdiscard_input
);
11862 defsubr (&Sopen_dribble_file
);
11863 defsubr (&Sset_input_interrupt_mode
);
11864 defsubr (&Sset_output_flow_control
);
11865 defsubr (&Sset_input_meta_mode
);
11866 defsubr (&Sset_quit_char
);
11867 defsubr (&Sset_input_mode
);
11868 defsubr (&Scurrent_input_mode
);
11869 defsubr (&Sexecute_extended_command
);
11870 defsubr (&Sposn_at_point
);
11871 defsubr (&Sposn_at_x_y
);
11873 DEFVAR_LISP ("last-command-char", &last_command_char
,
11874 doc
: /* Last input event that was part of a command. */);
11876 DEFVAR_LISP_NOPRO ("last-command-event", &last_command_char
,
11877 doc
: /* Last input event that was part of a command. */);
11879 DEFVAR_LISP ("last-nonmenu-event", &last_nonmenu_event
,
11880 doc
: /* Last input event in a command, except for mouse menu events.
11881 Mouse menus give back keys that don't look like mouse events;
11882 this variable holds the actual mouse event that led to the menu,
11883 so that you can determine whether the command was run by mouse or not. */);
11885 DEFVAR_LISP ("last-input-char", &last_input_char
,
11886 doc
: /* Last input event. */);
11888 DEFVAR_LISP_NOPRO ("last-input-event", &last_input_char
,
11889 doc
: /* Last input event. */);
11891 DEFVAR_LISP ("unread-command-events", &Vunread_command_events
,
11892 doc
: /* List of events to be read as the command input.
11893 These events are processed first, before actual keyboard input.
11894 Events read from this list are not normally added to `this-command-keys',
11895 as they will already have been added once as they were read for the first time.
11896 An element of the form (t . EVENT) forces EVENT to be added to that list. */);
11897 Vunread_command_events
= Qnil
;
11899 DEFVAR_INT ("unread-command-char", &unread_command_char
,
11900 doc
: /* If not -1, an object to be read as next command input event. */);
11902 DEFVAR_LISP ("unread-post-input-method-events", &Vunread_post_input_method_events
,
11903 doc
: /* List of events to be processed as input by input methods.
11904 These events are processed before `unread-command-events'
11905 and actual keyboard input, but are not given to `input-method-function'. */);
11906 Vunread_post_input_method_events
= Qnil
;
11908 DEFVAR_LISP ("unread-input-method-events", &Vunread_input_method_events
,
11909 doc
: /* List of events to be processed as input by input methods.
11910 These events are processed after `unread-command-events', but
11911 before actual keyboard input.
11912 If there's an active input method, the events are given to
11913 `input-method-function'. */);
11914 Vunread_input_method_events
= Qnil
;
11916 DEFVAR_LISP ("meta-prefix-char", &meta_prefix_char
,
11917 doc
: /* Meta-prefix character code.
11918 Meta-foo as command input turns into this character followed by foo. */);
11919 XSETINT (meta_prefix_char
, 033);
11921 DEFVAR_KBOARD ("last-command", Vlast_command
,
11922 doc
: /* The last command executed.
11923 Normally a symbol with a function definition, but can be whatever was found
11924 in the keymap, or whatever the variable `this-command' was set to by that
11927 The value `mode-exit' is special; it means that the previous command
11928 read an event that told it to exit, and it did so and unread that event.
11929 In other words, the present command is the event that made the previous
11932 The value `kill-region' is special; it means that the previous command
11933 was a kill command.
11935 `last-command' has a separate binding for each terminal device.
11936 See Info node `(elisp)Multiple displays'. */);
11938 DEFVAR_KBOARD ("real-last-command", Vreal_last_command
,
11939 doc
: /* Same as `last-command', but never altered by Lisp code. */);
11941 DEFVAR_KBOARD ("last-repeatable-command", Vlast_repeatable_command
,
11942 doc
: /* Last command that may be repeated.
11943 The last command executed that was not bound to an input event.
11944 This is the command `repeat' will try to repeat. */);
11946 DEFVAR_LISP ("this-command", &Vthis_command
,
11947 doc
: /* The command now being executed.
11948 The command can set this variable; whatever is put here
11949 will be in `last-command' during the following command. */);
11950 Vthis_command
= Qnil
;
11952 DEFVAR_LISP ("this-command-keys-shift-translated",
11953 &Vthis_command_keys_shift_translated
,
11954 doc
: /* Non-nil if the key sequence activating this command was shift-translated.
11955 Shift-translation occurs when there is no binding for the key sequence
11956 as entered, but a binding was found by changing an upper-case letter
11957 to lower-case, or a shifted function key to an unshifted one. */);
11958 Vthis_command_keys_shift_translated
= Qnil
;
11960 DEFVAR_LISP ("this-original-command", &Vthis_original_command
,
11961 doc
: /* The command bound to the current key sequence before remapping.
11962 It equals `this-command' if the original command was not remapped through
11963 any of the active keymaps. Otherwise, the value of `this-command' is the
11964 result of looking up the original command in the active keymaps. */);
11965 Vthis_original_command
= Qnil
;
11967 DEFVAR_INT ("auto-save-interval", &auto_save_interval
,
11968 doc
: /* *Number of input events between auto-saves.
11969 Zero means disable autosaving due to number of characters typed. */);
11970 auto_save_interval
= 300;
11972 DEFVAR_LISP ("auto-save-timeout", &Vauto_save_timeout
,
11973 doc
: /* *Number of seconds idle time before auto-save.
11974 Zero or nil means disable auto-saving due to idleness.
11975 After auto-saving due to this many seconds of idle time,
11976 Emacs also does a garbage collection if that seems to be warranted. */);
11977 XSETFASTINT (Vauto_save_timeout
, 30);
11979 DEFVAR_LISP ("echo-keystrokes", &Vecho_keystrokes
,
11980 doc
: /* *Nonzero means echo unfinished commands after this many seconds of pause.
11981 The value may be integer or floating point. */);
11982 Vecho_keystrokes
= make_number (1);
11984 DEFVAR_INT ("polling-period", &polling_period
,
11985 doc
: /* *Interval between polling for input during Lisp execution.
11986 The reason for polling is to make C-g work to stop a running program.
11987 Polling is needed only when using X windows and SIGIO does not work.
11988 Polling is automatically disabled in all other cases. */);
11989 polling_period
= 2;
11991 DEFVAR_LISP ("double-click-time", &Vdouble_click_time
,
11992 doc
: /* *Maximum time between mouse clicks to make a double-click.
11993 Measured in milliseconds. The value nil means disable double-click
11994 recognition; t means double-clicks have no time limit and are detected
11995 by position only. */);
11996 Vdouble_click_time
= make_number (500);
11998 DEFVAR_INT ("double-click-fuzz", &double_click_fuzz
,
11999 doc
: /* *Maximum mouse movement between clicks to make a double-click.
12000 On window-system frames, value is the number of pixels the mouse may have
12001 moved horizontally or vertically between two clicks to make a double-click.
12002 On non window-system frames, value is interpreted in units of 1/8 characters
12005 This variable is also the threshold for motion of the mouse
12006 to count as a drag. */);
12007 double_click_fuzz
= 3;
12009 DEFVAR_BOOL ("inhibit-local-menu-bar-menus", &inhibit_local_menu_bar_menus
,
12010 doc
: /* *Non-nil means inhibit local map menu bar menus. */);
12011 inhibit_local_menu_bar_menus
= 0;
12013 DEFVAR_INT ("num-input-keys", &num_input_keys
,
12014 doc
: /* Number of complete key sequences read as input so far.
12015 This includes key sequences read from keyboard macros.
12016 The number is effectively the number of interactive command invocations. */);
12017 num_input_keys
= 0;
12019 DEFVAR_INT ("num-nonmacro-input-events", &num_nonmacro_input_events
,
12020 doc
: /* Number of input events read from the keyboard so far.
12021 This does not include events generated by keyboard macros. */);
12022 num_nonmacro_input_events
= 0;
12024 DEFVAR_LISP ("last-event-frame", &Vlast_event_frame
,
12025 doc
: /* The frame in which the most recently read event occurred.
12026 If the last event came from a keyboard macro, this is set to `macro'. */);
12027 Vlast_event_frame
= Qnil
;
12029 /* This variable is set up in sysdep.c. */
12030 DEFVAR_LISP ("tty-erase-char", &Vtty_erase_char
,
12031 doc
: /* The ERASE character as set by the user with stty. */);
12033 DEFVAR_LISP ("help-char", &Vhelp_char
,
12034 doc
: /* Character to recognize as meaning Help.
12035 When it is read, do `(eval help-form)', and display result if it's a string.
12036 If the value of `help-form' is nil, this char can be read normally. */);
12037 XSETINT (Vhelp_char
, Ctl ('H'));
12039 DEFVAR_LISP ("help-event-list", &Vhelp_event_list
,
12040 doc
: /* List of input events to recognize as meaning Help.
12041 These work just like the value of `help-char' (see that). */);
12042 Vhelp_event_list
= Qnil
;
12044 DEFVAR_LISP ("help-form", &Vhelp_form
,
12045 doc
: /* Form to execute when character `help-char' is read.
12046 If the form returns a string, that string is displayed.
12047 If `help-form' is nil, the help char is not recognized. */);
12050 DEFVAR_LISP ("prefix-help-command", &Vprefix_help_command
,
12051 doc
: /* Command to run when `help-char' character follows a prefix key.
12052 This command is used only when there is no actual binding
12053 for that character after that prefix key. */);
12054 Vprefix_help_command
= Qnil
;
12056 DEFVAR_LISP ("top-level", &Vtop_level
,
12057 doc
: /* Form to evaluate when Emacs starts up.
12058 Useful to set before you dump a modified Emacs. */);
12061 DEFVAR_KBOARD ("keyboard-translate-table", Vkeyboard_translate_table
,
12062 doc
: /* Translate table for local keyboard input, or nil.
12063 If non-nil, the value should be a char-table. Each character read
12064 from the keyboard is looked up in this char-table. If the value found
12065 there is non-nil, then it is used instead of the actual input character.
12067 The value can also be a string or vector, but this is considered obsolete.
12068 If it is a string or vector of length N, character codes N and up are left
12069 untranslated. In a vector, an element which is nil means "no translation".
12071 This is applied to the characters supplied to input methods, not their
12072 output. See also `translation-table-for-input'.
12074 This variable has a separate binding for each terminal. See Info node
12075 `(elisp)Multiple displays'. */);
12077 DEFVAR_BOOL ("cannot-suspend", &cannot_suspend
,
12078 doc
: /* Non-nil means to always spawn a subshell instead of suspending.
12079 \(Even if the operating system has support for stopping a process.\) */);
12080 cannot_suspend
= 0;
12082 DEFVAR_BOOL ("menu-prompting", &menu_prompting
,
12083 doc
: /* Non-nil means prompt with menus when appropriate.
12084 This is done when reading from a keymap that has a prompt string,
12085 for elements that have prompt strings.
12086 The menu is displayed on the screen
12087 if X menus were enabled at configuration
12088 time and the previous event was a mouse click prefix key.
12089 Otherwise, menu prompting uses the echo area. */);
12090 menu_prompting
= 1;
12092 DEFVAR_LISP ("menu-prompt-more-char", &menu_prompt_more_char
,
12093 doc
: /* Character to see next line of menu prompt.
12094 Type this character while in a menu prompt to rotate around the lines of it. */);
12095 XSETINT (menu_prompt_more_char
, ' ');
12097 DEFVAR_INT ("extra-keyboard-modifiers", &extra_keyboard_modifiers
,
12098 doc
: /* A mask of additional modifier keys to use with every keyboard character.
12099 Emacs applies the modifiers of the character stored here to each keyboard
12100 character it reads. For example, after evaluating the expression
12101 (setq extra-keyboard-modifiers ?\\C-x)
12102 all input characters will have the control modifier applied to them.
12104 Note that the character ?\\C-@, equivalent to the integer zero, does
12105 not count as a control character; rather, it counts as a character
12106 with no modifiers; thus, setting `extra-keyboard-modifiers' to zero
12107 cancels any modification. */);
12108 extra_keyboard_modifiers
= 0;
12110 DEFVAR_LISP ("deactivate-mark", &Vdeactivate_mark
,
12111 doc
: /* If an editing command sets this to t, deactivate the mark afterward.
12112 The command loop sets this to nil before each command,
12113 and tests the value when the command returns.
12114 Buffer modification stores t in this variable. */);
12115 Vdeactivate_mark
= Qnil
;
12116 Qdeactivate_mark
= intern ("deactivate-mark");
12117 staticpro (&Qdeactivate_mark
);
12119 DEFVAR_LISP ("command-hook-internal", &Vcommand_hook_internal
,
12120 doc
: /* Temporary storage of pre-command-hook or post-command-hook. */);
12121 Vcommand_hook_internal
= Qnil
;
12123 DEFVAR_LISP ("pre-command-hook", &Vpre_command_hook
,
12124 doc
: /* Normal hook run before each command is executed.
12125 If an unhandled error happens in running this hook,
12126 the hook value is set to nil, since otherwise the error
12127 might happen repeatedly and make Emacs nonfunctional. */);
12128 Vpre_command_hook
= Qnil
;
12130 DEFVAR_LISP ("post-command-hook", &Vpost_command_hook
,
12131 doc
: /* Normal hook run after each command is executed.
12132 If an unhandled error happens in running this hook,
12133 the hook value is set to nil, since otherwise the error
12134 might happen repeatedly and make Emacs nonfunctional. */);
12135 Vpost_command_hook
= Qnil
;
12138 DEFVAR_LISP ("echo-area-clear-hook", ...,
12139 doc
: /* Normal hook run when clearing the echo area. */);
12141 Qecho_area_clear_hook
= intern ("echo-area-clear-hook");
12142 staticpro (&Qecho_area_clear_hook
);
12143 SET_SYMBOL_VALUE (Qecho_area_clear_hook
, Qnil
);
12145 DEFVAR_LISP ("lucid-menu-bar-dirty-flag", &Vlucid_menu_bar_dirty_flag
,
12146 doc
: /* Non-nil means menu bar, specified Lucid style, needs to be recomputed. */);
12147 Vlucid_menu_bar_dirty_flag
= Qnil
;
12149 DEFVAR_LISP ("menu-bar-final-items", &Vmenu_bar_final_items
,
12150 doc
: /* List of menu bar items to move to the end of the menu bar.
12151 The elements of the list are event types that may have menu bar bindings. */);
12152 Vmenu_bar_final_items
= Qnil
;
12154 DEFVAR_KBOARD ("overriding-terminal-local-map",
12155 Voverriding_terminal_local_map
,
12156 doc
: /* Per-terminal keymap that overrides all other local keymaps.
12157 If this variable is non-nil, it is used as a keymap instead of the
12158 buffer's local map, and the minor mode keymaps and text property keymaps.
12159 It also replaces `overriding-local-map'.
12161 This variable is intended to let commands such as `universal-argument'
12162 set up a different keymap for reading the next command.
12164 `overriding-terminal-local-map' has a separate binding for each
12166 See Info node `(elisp)Multiple displays'. */);
12168 DEFVAR_LISP ("overriding-local-map", &Voverriding_local_map
,
12169 doc
: /* Keymap that overrides all other local keymaps.
12170 If this variable is non-nil, it is used as a keymap--replacing the
12171 buffer's local map, the minor mode keymaps, and char property keymaps. */);
12172 Voverriding_local_map
= Qnil
;
12174 DEFVAR_LISP ("overriding-local-map-menu-flag", &Voverriding_local_map_menu_flag
,
12175 doc
: /* Non-nil means `overriding-local-map' applies to the menu bar.
12176 Otherwise, the menu bar continues to reflect the buffer's local map
12177 and the minor mode maps regardless of `overriding-local-map'. */);
12178 Voverriding_local_map_menu_flag
= Qnil
;
12180 DEFVAR_LISP ("special-event-map", &Vspecial_event_map
,
12181 doc
: /* Keymap defining bindings for special events to execute at low level. */);
12182 Vspecial_event_map
= Fcons (intern ("keymap"), Qnil
);
12184 DEFVAR_LISP ("track-mouse", &do_mouse_tracking
,
12185 doc
: /* *Non-nil means generate motion events for mouse motion. */);
12187 DEFVAR_KBOARD ("system-key-alist", Vsystem_key_alist
,
12188 doc
: /* Alist of system-specific X windows key symbols.
12189 Each element should have the form (N . SYMBOL) where N is the
12190 numeric keysym code (sans the \"system-specific\" bit 1<<28)
12191 and SYMBOL is its name.
12193 `system-key-alist' has a separate binding for each terminal device.
12194 See Info node `(elisp)Multiple displays'. */);
12196 DEFVAR_KBOARD ("local-function-key-map", Vlocal_function_key_map
,
12197 doc
: /* Keymap that translates key sequences to key sequences during input.
12198 This is used mainly for mapping key sequences into some preferred
12199 key events (symbols).
12201 The `read-key-sequence' function replaces any subsequence bound by
12202 `local-function-key-map' with its binding. More precisely, when the
12203 active keymaps have no binding for the current key sequence but
12204 `local-function-key-map' binds a suffix of the sequence to a vector or
12205 string, `read-key-sequence' replaces the matching suffix with its
12206 binding, and continues with the new sequence.
12208 If the binding is a function, it is called with one argument (the prompt)
12209 and its return value (a key sequence) is used.
12211 The events that come from bindings in `local-function-key-map' are not
12212 themselves looked up in `local-function-key-map'.
12214 For example, suppose `local-function-key-map' binds `ESC O P' to [f1].
12215 Typing `ESC O P' to `read-key-sequence' would return [f1]. Typing
12216 `C-x ESC O P' would return [?\\C-x f1]. If [f1] were a prefix key,
12217 typing `ESC O P x' would return [f1 x].
12219 `local-function-key-map' has a separate binding for each terminal
12220 device. See Info node `(elisp)Multiple displays'. If you need to
12221 define a binding on all terminals, change `function-key-map'
12222 instead. Initially, `local-function-key-map' is an empty keymap that
12223 has `function-key-map' as its parent on all terminal devices. */);
12225 DEFVAR_KBOARD ("input-decode-map", Vinput_decode_map
,
12226 doc
: /* Keymap that decodes input escape sequences.
12227 This is used mainly for mapping ASCII function key sequences into
12228 real Emacs function key events (symbols).
12230 The `read-key-sequence' function replaces any subsequence bound by
12231 `input-key-map' with its binding. Contrary to `function-key-map',
12232 this map applies its rebinding regardless of the presence of an ordinary
12233 binding. So it is more like `key-translation-map' except that it applies
12234 before `function-key-map' rather than after.
12236 If the binding is a function, it is called with one argument (the prompt)
12237 and its return value (a key sequence) is used.
12239 The events that come from bindings in `input-decode-map' are not
12240 themselves looked up in `input-decode-map'.
12242 This variable is keyboard-local. */);
12244 DEFVAR_LISP ("function-key-map", &Vfunction_key_map
,
12245 doc
: /* The parent keymap of all `local-function-key-map' instances.
12246 Function key definitions that apply to all terminal devices should go
12247 here. If a mapping is defined in both the current
12248 `local-function-key-map' binding and this variable, then the local
12249 definition will take precendence. */);
12250 Vfunction_key_map
= Fmake_sparse_keymap (Qnil
);
12252 DEFVAR_LISP ("key-translation-map", &Vkey_translation_map
,
12253 doc
: /* Keymap of key translations that can override keymaps.
12254 This keymap works like `function-key-map', but comes after that,
12255 and its non-prefix bindings override ordinary bindings.
12256 Another difference is that it is global rather than keyboard-local. */);
12257 Vkey_translation_map
= Fmake_sparse_keymap (Qnil
);
12259 DEFVAR_LISP ("deferred-action-list", &Vdeferred_action_list
,
12260 doc
: /* List of deferred actions to be performed at a later time.
12261 The precise format isn't relevant here; we just check whether it is nil. */);
12262 Vdeferred_action_list
= Qnil
;
12264 DEFVAR_LISP ("deferred-action-function", &Vdeferred_action_function
,
12265 doc
: /* Function to call to handle deferred actions, after each command.
12266 This function is called with no arguments after each command
12267 whenever `deferred-action-list' is non-nil. */);
12268 Vdeferred_action_function
= Qnil
;
12270 DEFVAR_LISP ("suggest-key-bindings", &Vsuggest_key_bindings
,
12271 doc
: /* *Non-nil means show the equivalent key-binding when M-x command has one.
12272 The value can be a length of time to show the message for.
12273 If the value is non-nil and not a number, we wait 2 seconds. */);
12274 Vsuggest_key_bindings
= Qt
;
12276 DEFVAR_LISP ("timer-list", &Vtimer_list
,
12277 doc
: /* List of active absolute time timers in order of increasing time. */);
12278 Vtimer_list
= Qnil
;
12280 DEFVAR_LISP ("timer-idle-list", &Vtimer_idle_list
,
12281 doc
: /* List of active idle-time timers in order of increasing time. */);
12282 Vtimer_idle_list
= Qnil
;
12284 DEFVAR_LISP ("input-method-function", &Vinput_method_function
,
12285 doc
: /* If non-nil, the function that implements the current input method.
12286 It's called with one argument, a printing character that was just read.
12287 \(That means a character with code 040...0176.)
12288 Typically this function uses `read-event' to read additional events.
12289 When it does so, it should first bind `input-method-function' to nil
12290 so it will not be called recursively.
12292 The function should return a list of zero or more events
12293 to be used as input. If it wants to put back some events
12294 to be reconsidered, separately, by the input method,
12295 it can add them to the beginning of `unread-command-events'.
12297 The input method function can find in `input-method-previous-method'
12298 the previous echo area message.
12300 The input method function should refer to the variables
12301 `input-method-use-echo-area' and `input-method-exit-on-first-char'
12302 for guidance on what to do. */);
12303 Vinput_method_function
= Qnil
;
12305 DEFVAR_LISP ("input-method-previous-message",
12306 &Vinput_method_previous_message
,
12307 doc
: /* When `input-method-function' is called, hold the previous echo area message.
12308 This variable exists because `read-event' clears the echo area
12309 before running the input method. It is nil if there was no message. */);
12310 Vinput_method_previous_message
= Qnil
;
12312 DEFVAR_LISP ("show-help-function", &Vshow_help_function
,
12313 doc
: /* If non-nil, the function that implements the display of help.
12314 It's called with one argument, the help string to display. */);
12315 Vshow_help_function
= Qnil
;
12317 DEFVAR_LISP ("disable-point-adjustment", &Vdisable_point_adjustment
,
12318 doc
: /* If non-nil, suppress point adjustment after executing a command.
12320 After a command is executed, if point is moved into a region that has
12321 special properties (e.g. composition, display), we adjust point to
12322 the boundary of the region. But, when a command sets this variable to
12323 non-nil, we suppress the point adjustment.
12325 This variable is set to nil before reading a command, and is checked
12326 just after executing the command. */);
12327 Vdisable_point_adjustment
= Qnil
;
12329 DEFVAR_LISP ("global-disable-point-adjustment",
12330 &Vglobal_disable_point_adjustment
,
12331 doc
: /* *If non-nil, always suppress point adjustment.
12333 The default value is nil, in which case, point adjustment are
12334 suppressed only after special commands that set
12335 `disable-point-adjustment' (which see) to non-nil. */);
12336 Vglobal_disable_point_adjustment
= Qnil
;
12338 DEFVAR_LISP ("minibuffer-message-timeout", &Vminibuffer_message_timeout
,
12339 doc
: /* *How long to display an echo-area message when the minibuffer is active.
12340 If the value is not a number, such messages don't time out. */);
12341 Vminibuffer_message_timeout
= make_number (2);
12343 DEFVAR_LISP ("throw-on-input", &Vthrow_on_input
,
12344 doc
: /* If non-nil, any keyboard input throws to this symbol.
12345 The value of that variable is passed to `quit-flag' and later causes a
12346 peculiar kind of quitting. */);
12347 Vthrow_on_input
= Qnil
;
12349 DEFVAR_LISP ("command-error-function", &Vcommand_error_function
,
12350 doc
: /* If non-nil, function to output error messages.
12351 The arguments are the error data, a list of the form
12352 (SIGNALED-CONDITIONS . SIGNAL-DATA)
12353 such as just as `condition-case' would bind its variable to,
12354 the context (a string which normally goes at the start of the message),
12355 and the Lisp function within which the error was signaled. */);
12356 Vcommand_error_function
= Qnil
;
12358 DEFVAR_LISP ("enable-disabled-menus-and-buttons",
12359 &Venable_disabled_menus_and_buttons
,
12360 doc
: /* If non-nil, don't ignore events produced by disabled menu items and tool-bar.
12362 Help functions bind this to allow help on disabled menu items
12363 and tool-bar buttons. */);
12364 Venable_disabled_menus_and_buttons
= Qnil
;
12366 /* Create the initial keyboard. */
12367 initial_kboard
= (KBOARD
*) xmalloc (sizeof (KBOARD
));
12368 init_kboard (initial_kboard
);
12369 /* Vwindow_system is left at t for now. */
12370 initial_kboard
->next_kboard
= all_kboards
;
12371 all_kboards
= initial_kboard
;
12375 keys_of_keyboard ()
12377 initial_define_key (global_map
, Ctl ('Z'), "suspend-emacs");
12378 initial_define_key (control_x_map
, Ctl ('Z'), "suspend-emacs");
12379 initial_define_key (meta_map
, Ctl ('C'), "exit-recursive-edit");
12380 initial_define_key (global_map
, Ctl (']'), "abort-recursive-edit");
12381 initial_define_key (meta_map
, 'x', "execute-extended-command");
12383 initial_define_lispy_key (Vspecial_event_map
, "delete-frame",
12384 "handle-delete-frame");
12385 /* Here we used to use `ignore-event' which would simple set prefix-arg to
12386 current-prefix-arg, as is done in `handle-switch-frame'.
12387 But `handle-switch-frame is not run from the special-map.
12388 Commands from that map are run in a special way that automatically
12389 preserves the prefix-arg. Restoring the prefix arg here is not just
12390 redundant but harmful:
12392 - current-prefix-arg is set to non-nil, prefix-arg is set to nil.
12393 - after the first prompt, the exit-minibuffer-hook is run which may
12394 iconify a frame and thus push a `iconify-frame' event.
12395 - after running exit-minibuffer-hook, current-prefix-arg is
12396 restored to the non-nil value it had before the prompt.
12397 - we enter the second prompt.
12398 current-prefix-arg is non-nil, prefix-arg is nil.
12399 - before running the first real event, we run the special iconify-frame
12400 event, but we pass the `special' arg to execute-command so
12401 current-prefix-arg and prefix-arg are left untouched.
12402 - here we foolishly copy the non-nil current-prefix-arg to prefix-arg.
12403 - the next key event will have a spuriously non-nil current-prefix-arg. */
12404 initial_define_lispy_key (Vspecial_event_map
, "iconify-frame",
12406 initial_define_lispy_key (Vspecial_event_map
, "make-frame-visible",
12408 /* Handling it at such a low-level causes read_key_sequence to get
12409 * confused because it doesn't realize that the current_buffer was
12410 * changed by read_char.
12412 * initial_define_lispy_key (Vspecial_event_map, "select-window",
12413 * "handle-select-window"); */
12414 initial_define_lispy_key (Vspecial_event_map
, "save-session",
12415 "handle-save-session");
12418 /* Define a special event which is raised for dbus callback
12420 initial_define_lispy_key (Vspecial_event_map
, "dbus-event",
12421 "dbus-handle-event");
12425 /* Mark the pointers in the kboard objects.
12426 Called by the Fgarbage_collector. */
12432 for (kb
= all_kboards
; kb
; kb
= kb
->next_kboard
)
12434 if (kb
->kbd_macro_buffer
)
12435 for (p
= kb
->kbd_macro_buffer
; p
< kb
->kbd_macro_ptr
; p
++)
12437 mark_object (kb
->Voverriding_terminal_local_map
);
12438 mark_object (kb
->Vlast_command
);
12439 mark_object (kb
->Vreal_last_command
);
12440 mark_object (kb
->Vkeyboard_translate_table
);
12441 mark_object (kb
->Vlast_repeatable_command
);
12442 mark_object (kb
->Vprefix_arg
);
12443 mark_object (kb
->Vlast_prefix_arg
);
12444 mark_object (kb
->kbd_queue
);
12445 mark_object (kb
->defining_kbd_macro
);
12446 mark_object (kb
->Vlast_kbd_macro
);
12447 mark_object (kb
->Vsystem_key_alist
);
12448 mark_object (kb
->system_key_syms
);
12449 mark_object (kb
->Vwindow_system
);
12450 mark_object (kb
->Vinput_decode_map
);
12451 mark_object (kb
->Vlocal_function_key_map
);
12452 mark_object (kb
->Vdefault_minibuffer_frame
);
12453 mark_object (kb
->echo_string
);
12456 struct input_event
*event
;
12457 for (event
= kbd_fetch_ptr
; event
!= kbd_store_ptr
; event
++)
12459 if (event
== kbd_buffer
+ KBD_BUFFER_SIZE
)
12460 event
= kbd_buffer
;
12461 if (event
->kind
!= SELECTION_REQUEST_EVENT
12462 && event
->kind
!= SELECTION_CLEAR_EVENT
)
12464 mark_object (event
->x
);
12465 mark_object (event
->y
);
12467 mark_object (event
->frame_or_window
);
12468 mark_object (event
->arg
);
12473 /* arch-tag: 774e34d7-6d31-42f3-8397-e079a4e4c9ca
12474 (do not change this comment) */