1 /* Keyboard and mouse input; editor command loop.
2 Copyright (C) 1985,86,87,88,89,93,94,95,96,97,99,2000,01,02,03,04
3 Free Software Foundation, Inc.
5 This file is part of GNU Emacs.
7 GNU Emacs is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 2, or (at your option)
12 GNU Emacs is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
17 You should have received a copy of the GNU General Public License
18 along with GNU Emacs; see the file COPYING. If not, write to
19 the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
20 Boston, MA 02111-1307, USA. */
28 #include "termhooks.h"
37 #include "dispextern.h"
39 #include "intervals.h"
41 #include "blockinput.h"
48 #ifdef HAVE_GTK_AND_PTHREAD
56 #include <sys/ioctl.h>
58 #endif /* not MSDOS */
60 #include "syssignal.h"
63 #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 int interrupt_input_blocked
;
90 /* Nonzero means an input interrupt has arrived
91 during the current critical section. */
92 int interrupt_input_pending
;
95 /* File descriptor to use for input. */
98 #ifdef HAVE_WINDOW_SYSTEM
99 /* Make all keyboard buffers much bigger when using X windows. */
101 /* But not too big (local data > 32K error) if on Mac OS Classic. */
102 #define KBD_BUFFER_SIZE 512
104 #define KBD_BUFFER_SIZE 4096
106 #else /* No X-windows, character input */
107 #define KBD_BUFFER_SIZE 4096
108 #endif /* No X-windows */
110 #define abs(x) ((x) >= 0 ? (x) : -(x))
112 /* Following definition copied from eval.c */
116 struct backtrace
*next
;
117 Lisp_Object
*function
;
118 Lisp_Object
*args
; /* Points to vector of args. */
119 int nargs
; /* length of vector. If nargs is UNEVALLED,
120 args points to slot holding list of
123 /* Nonzero means call value of debugger when done with this operation. */
128 KBOARD
*initial_kboard
;
129 KBOARD
*current_kboard
;
133 KBOARD the_only_kboard
;
136 /* Non-nil disable property on a command means
137 do not execute it; call disabled-command-function's value instead. */
138 Lisp_Object Qdisabled
, Qdisabled_command_function
;
140 #define NUM_RECENT_KEYS (100)
141 int recent_keys_index
; /* Index for storing next element into recent_keys */
142 int total_keys
; /* Total number of elements stored into recent_keys */
143 Lisp_Object recent_keys
; /* A vector, holding the last 100 keystrokes */
145 /* Vector holding the key sequence that invoked the current command.
146 It is reused for each command, and it may be longer than the current
147 sequence; this_command_key_count indicates how many elements
148 actually mean something.
149 It's easier to staticpro a single Lisp_Object than an array. */
150 Lisp_Object this_command_keys
;
151 int this_command_key_count
;
153 /* 1 after calling Freset_this_command_lengths.
155 int this_command_key_count_reset
;
157 /* This vector is used as a buffer to record the events that were actually read
158 by read_key_sequence. */
159 Lisp_Object raw_keybuf
;
160 int raw_keybuf_count
;
162 #define GROW_RAW_KEYBUF \
163 if (raw_keybuf_count == XVECTOR (raw_keybuf)->size) \
165 int newsize = 2 * XVECTOR (raw_keybuf)->size; \
167 new = Fmake_vector (make_number (newsize), Qnil); \
168 bcopy (XVECTOR (raw_keybuf)->contents, XVECTOR (new)->contents, \
169 raw_keybuf_count * sizeof (Lisp_Object)); \
173 /* Number of elements of this_command_keys
174 that precede this key sequence. */
175 int this_single_command_key_start
;
177 /* Record values of this_command_key_count and echo_length ()
178 before this command was read. */
179 static int before_command_key_count
;
180 static int before_command_echo_length
;
182 extern int minbuf_level
;
184 extern int message_enable_multibyte
;
186 extern struct backtrace
*backtrace_list
;
188 /* If non-nil, the function that implements the display of help.
189 It's called with one argument, the help string to display. */
191 Lisp_Object Vshow_help_function
;
193 /* If a string, the message displayed before displaying a help-echo
196 Lisp_Object Vpre_help_message
;
198 /* Nonzero means do menu prompting. */
200 static int menu_prompting
;
202 /* Character to see next line of menu prompt. */
204 static Lisp_Object menu_prompt_more_char
;
206 /* For longjmp to where kbd input is being done. */
208 static jmp_buf getcjmp
;
210 /* True while doing kbd input. */
211 int waiting_for_input
;
213 /* True while displaying for echoing. Delays C-g throwing. */
217 /* Non-null means we can start echoing at the next input pause even
218 though there is something in the echo area. */
220 static struct kboard
*ok_to_echo_at_next_pause
;
222 /* The kboard last echoing, or null for none. Reset to 0 in
223 cancel_echoing. If non-null, and a current echo area message
224 exists, and echo_message_buffer is eq to the current message
225 buffer, we know that the message comes from echo_kboard. */
227 struct kboard
*echo_kboard
;
229 /* The buffer used for echoing. Set in echo_now, reset in
232 Lisp_Object echo_message_buffer
;
234 /* Nonzero means disregard local maps for the menu bar. */
235 static int inhibit_local_menu_bar_menus
;
237 /* Nonzero means C-g should cause immediate error-signal. */
240 /* The user's ERASE setting. */
241 Lisp_Object Vtty_erase_char
;
243 /* Character to recognize as the help char. */
244 Lisp_Object Vhelp_char
;
246 /* List of other event types to recognize as meaning "help". */
247 Lisp_Object Vhelp_event_list
;
249 /* Form to execute when help char is typed. */
250 Lisp_Object Vhelp_form
;
252 /* Command to run when the help character follows a prefix key. */
253 Lisp_Object Vprefix_help_command
;
255 /* List of items that should move to the end of the menu bar. */
256 Lisp_Object Vmenu_bar_final_items
;
258 /* Non-nil means show the equivalent key-binding for
259 any M-x command that has one.
260 The value can be a length of time to show the message for.
261 If the value is non-nil and not a number, we wait 2 seconds. */
262 Lisp_Object Vsuggest_key_bindings
;
264 /* How long to display an echo-area message when the minibuffer is active.
265 If the value is not a number, such messages don't time out. */
266 Lisp_Object Vminibuffer_message_timeout
;
268 /* Character that causes a quit. Normally C-g.
270 If we are running on an ordinary terminal, this must be an ordinary
271 ASCII char, since we want to make it our interrupt character.
273 If we are not running on an ordinary terminal, it still needs to be
274 an ordinary ASCII char. This character needs to be recognized in
275 the input interrupt handler. At this point, the keystroke is
276 represented as a struct input_event, while the desired quit
277 character is specified as a lispy event. The mapping from struct
278 input_events to lispy events cannot run in an interrupt handler,
279 and the reverse mapping is difficult for anything but ASCII
282 FOR THESE ELABORATE AND UNSATISFYING REASONS, quit_char must be an
286 extern Lisp_Object current_global_map
;
287 extern int minibuf_level
;
289 /* If non-nil, this is a map that overrides all other local maps. */
290 Lisp_Object Voverriding_local_map
;
292 /* If non-nil, Voverriding_local_map applies to the menu bar. */
293 Lisp_Object Voverriding_local_map_menu_flag
;
295 /* Keymap that defines special misc events that should
296 be processed immediately at a low level. */
297 Lisp_Object Vspecial_event_map
;
299 /* Current depth in recursive edits. */
300 int command_loop_level
;
302 /* Total number of times command_loop has read a key sequence. */
303 EMACS_INT num_input_keys
;
305 /* Last input character read as a command. */
306 Lisp_Object last_command_char
;
308 /* Last input character read as a command, not counting menus
309 reached by the mouse. */
310 Lisp_Object last_nonmenu_event
;
312 /* Last input character read for any purpose. */
313 Lisp_Object last_input_char
;
315 /* If not Qnil, a list of objects to be read as subsequent command input. */
316 Lisp_Object Vunread_command_events
;
318 /* If not Qnil, a list of objects to be read as subsequent command input
319 including input method processing. */
320 Lisp_Object Vunread_input_method_events
;
322 /* If not Qnil, a list of objects to be read as subsequent command input
323 but NOT including input method processing. */
324 Lisp_Object Vunread_post_input_method_events
;
326 /* If not -1, an event to be read as subsequent command input. */
327 EMACS_INT unread_command_char
;
329 /* If not Qnil, this is a switch-frame event which we decided to put
330 off until the end of a key sequence. This should be read as the
331 next command input, after any unread_command_events.
333 read_key_sequence uses this to delay switch-frame events until the
334 end of the key sequence; Fread_char uses it to put off switch-frame
335 events until a non-ASCII event is acceptable as input. */
336 Lisp_Object unread_switch_frame
;
338 /* A mask of extra modifier bits to put into every keyboard char. */
339 EMACS_INT extra_keyboard_modifiers
;
341 /* Char to use as prefix when a meta character is typed in.
342 This is bound on entry to minibuffer in case ESC is changed there. */
344 Lisp_Object meta_prefix_char
;
346 /* Last size recorded for a current buffer which is not a minibuffer. */
347 static int last_non_minibuf_size
;
349 /* Number of idle seconds before an auto-save and garbage collection. */
350 static Lisp_Object Vauto_save_timeout
;
352 /* Total number of times read_char has returned. */
353 int num_input_events
;
355 /* Total number of times read_char has returned, outside of macros. */
356 EMACS_INT num_nonmacro_input_events
;
358 /* Auto-save automatically when this many characters have been typed
359 since the last time. */
361 static EMACS_INT auto_save_interval
;
363 /* Value of num_nonmacro_input_events as of last auto save. */
367 /* The command being executed by the command loop.
368 Commands may set this, and the value set will be copied into
369 current_kboard->Vlast_command instead of the actual command. */
370 Lisp_Object Vthis_command
;
372 /* This is like Vthis_command, except that commands never set it. */
373 Lisp_Object real_this_command
;
375 /* If the lookup of the command returns a binding, the original
376 command is stored in this-original-command. It is nil otherwise. */
377 Lisp_Object Vthis_original_command
;
379 /* The value of point when the last command was executed. */
380 int last_point_position
;
382 /* The buffer that was current when the last command was started. */
383 Lisp_Object last_point_position_buffer
;
385 /* The frame in which the last input event occurred, or Qmacro if the
386 last event came from a macro. We use this to determine when to
387 generate switch-frame events. This may be cleared by functions
388 like Fselect_frame, to make sure that a switch-frame event is
389 generated by the next character. */
390 Lisp_Object internal_last_event_frame
;
392 /* A user-visible version of the above, intended to allow users to
393 figure out where the last event came from, if the event doesn't
394 carry that information itself (i.e. if it was a character). */
395 Lisp_Object Vlast_event_frame
;
397 /* The timestamp of the last input event we received from the X server.
398 X Windows wants this for selection ownership. */
399 unsigned long last_event_timestamp
;
401 Lisp_Object Qself_insert_command
;
402 Lisp_Object Qforward_char
;
403 Lisp_Object Qbackward_char
;
404 Lisp_Object Qundefined
;
405 Lisp_Object Qtimer_event_handler
;
407 /* read_key_sequence stores here the command definition of the
408 key sequence that it reads. */
409 Lisp_Object read_key_sequence_cmd
;
411 /* Echo unfinished commands after this many seconds of pause. */
412 Lisp_Object Vecho_keystrokes
;
414 /* Form to evaluate (if non-nil) when Emacs is started. */
415 Lisp_Object Vtop_level
;
417 /* User-supplied table to translate input characters. */
418 Lisp_Object Vkeyboard_translate_table
;
420 /* Keymap mapping ASCII function key sequences onto their preferred forms. */
421 extern Lisp_Object Vfunction_key_map
;
423 /* Another keymap that maps key sequences into key sequences.
424 This one takes precedence over ordinary definitions. */
425 extern Lisp_Object Vkey_translation_map
;
427 /* If non-nil, this implements the current input method. */
428 Lisp_Object Vinput_method_function
;
429 Lisp_Object Qinput_method_function
;
431 /* When we call Vinput_method_function,
432 this holds the echo area message that was just erased. */
433 Lisp_Object Vinput_method_previous_message
;
435 /* Non-nil means deactivate the mark at end of this command. */
436 Lisp_Object Vdeactivate_mark
;
438 /* Menu bar specified in Lucid Emacs fashion. */
440 Lisp_Object Vlucid_menu_bar_dirty_flag
;
441 Lisp_Object Qrecompute_lucid_menubar
, Qactivate_menubar_hook
;
443 Lisp_Object Qecho_area_clear_hook
;
445 /* Hooks to run before and after each command. */
446 Lisp_Object Qpre_command_hook
, Vpre_command_hook
;
447 Lisp_Object Qpost_command_hook
, Vpost_command_hook
;
448 Lisp_Object Qcommand_hook_internal
, Vcommand_hook_internal
;
449 /* Hook run after a command if there's no more input soon. */
450 Lisp_Object Qpost_command_idle_hook
, Vpost_command_idle_hook
;
452 /* Delay time in microseconds before running post-command-idle-hook. */
453 EMACS_INT post_command_idle_delay
;
455 /* List of deferred actions to be performed at a later time.
456 The precise format isn't relevant here; we just check whether it is nil. */
457 Lisp_Object Vdeferred_action_list
;
459 /* Function to call to handle deferred actions, when there are any. */
460 Lisp_Object Vdeferred_action_function
;
461 Lisp_Object Qdeferred_action_function
;
463 Lisp_Object Qinput_method_exit_on_first_char
;
464 Lisp_Object Qinput_method_use_echo_area
;
466 /* File in which we write all commands we read. */
469 /* Nonzero if input is available. */
472 /* 1 if should obey 0200 bit in input chars as "Meta", 2 if should
473 keep 0200 bit in input chars. 0 to ignore the 0200 bit. */
477 /* Non-zero means force key bindings update in parse_menu_item. */
479 int update_menu_bindings
;
481 extern char *pending_malloc_warning
;
483 /* Circular buffer for pre-read keyboard input. */
485 static struct input_event kbd_buffer
[KBD_BUFFER_SIZE
];
487 /* Pointer to next available character in kbd_buffer.
488 If kbd_fetch_ptr == kbd_store_ptr, the buffer is empty.
489 This may be kbd_buffer + KBD_BUFFER_SIZE, meaning that the
490 next available char is in kbd_buffer[0]. */
491 static struct input_event
*kbd_fetch_ptr
;
493 /* Pointer to next place to store character in kbd_buffer. This
494 may be kbd_buffer + KBD_BUFFER_SIZE, meaning that the next
495 character should go in kbd_buffer[0]. */
496 static struct input_event
* volatile kbd_store_ptr
;
498 /* The above pair of variables forms a "queue empty" flag. When we
499 enqueue a non-hook event, we increment kbd_store_ptr. When we
500 dequeue a non-hook event, we increment kbd_fetch_ptr. We say that
501 there is input available iff the two pointers are not equal.
503 Why not just have a flag set and cleared by the enqueuing and
504 dequeuing functions? Such a flag could be screwed up by interrupts
505 at inopportune times. */
507 /* If this flag is non-nil, we check mouse_moved to see when the
508 mouse moves, and motion events will appear in the input stream.
509 Otherwise, mouse motion is ignored. */
510 Lisp_Object do_mouse_tracking
;
512 /* Symbols to head events. */
513 Lisp_Object Qmouse_movement
;
514 Lisp_Object Qscroll_bar_movement
;
515 Lisp_Object Qswitch_frame
;
516 Lisp_Object Qdelete_frame
;
517 Lisp_Object Qiconify_frame
;
518 Lisp_Object Qmake_frame_visible
;
519 Lisp_Object Qselect_window
;
520 Lisp_Object Qhelp_echo
;
522 /* Symbols to denote kinds of events. */
523 Lisp_Object Qfunction_key
;
524 Lisp_Object Qmouse_click
;
526 Lisp_Object Qlanguage_change
;
528 Lisp_Object Qdrag_n_drop
;
529 Lisp_Object Qsave_session
;
531 /* Lisp_Object Qmouse_movement; - also an event header */
533 /* Properties of event headers. */
534 Lisp_Object Qevent_kind
;
535 Lisp_Object Qevent_symbol_elements
;
537 /* menu item parts */
538 Lisp_Object Qmenu_alias
;
539 Lisp_Object Qmenu_enable
;
540 Lisp_Object QCenable
, QCvisible
, QChelp
, QCfilter
, QCkeys
, QCkey_sequence
;
541 Lisp_Object QCbutton
, QCtoggle
, QCradio
;
542 extern Lisp_Object Vdefine_key_rebound_commands
;
543 extern Lisp_Object Qmenu_item
;
545 /* An event header symbol HEAD may have a property named
546 Qevent_symbol_element_mask, which is of the form (BASE MODIFIERS);
547 BASE is the base, unmodified version of HEAD, and MODIFIERS is the
548 mask of modifiers applied to it. If present, this is used to help
549 speed up parse_modifiers. */
550 Lisp_Object Qevent_symbol_element_mask
;
552 /* An unmodified event header BASE may have a property named
553 Qmodifier_cache, which is an alist mapping modifier masks onto
554 modified versions of BASE. If present, this helps speed up
556 Lisp_Object Qmodifier_cache
;
558 /* Symbols to use for parts of windows. */
559 Lisp_Object Qmode_line
;
560 Lisp_Object Qvertical_line
;
561 Lisp_Object Qvertical_scroll_bar
;
562 Lisp_Object Qmenu_bar
;
563 extern Lisp_Object Qleft_margin
, Qright_margin
;
564 extern Lisp_Object Qleft_fringe
, Qright_fringe
;
565 extern Lisp_Object QCmap
;
567 Lisp_Object
recursive_edit_unwind (), command_loop ();
568 Lisp_Object
Fthis_command_keys ();
569 Lisp_Object Qextended_command_history
;
570 EMACS_TIME
timer_check ();
572 extern Lisp_Object Vhistory_length
, Vtranslation_table_for_input
;
574 extern char *x_get_keysym_name ();
576 static void record_menu_key ();
577 static int echo_length ();
579 Lisp_Object Qpolling_period
;
581 /* List of absolute timers. Appears in order of next scheduled event. */
582 Lisp_Object Vtimer_list
;
584 /* List of idle time timers. Appears in order of next scheduled event. */
585 Lisp_Object Vtimer_idle_list
;
587 /* Incremented whenever a timer is run. */
590 extern Lisp_Object Vprint_level
, Vprint_length
;
592 /* Address (if not 0) of EMACS_TIME to zero out if a SIGIO interrupt
594 EMACS_TIME
*input_available_clear_time
;
596 /* Nonzero means use SIGIO interrupts; zero means use CBREAK mode.
597 Default is 1 if INTERRUPT_INPUT is defined. */
600 /* Nonzero while interrupts are temporarily deferred during redisplay. */
601 int interrupts_deferred
;
603 /* Nonzero means use ^S/^Q for flow control. */
606 /* Allow m- file to inhibit use of FIONREAD. */
607 #ifdef BROKEN_FIONREAD
611 /* We are unable to use interrupts if FIONREAD is not available,
612 so flush SIGIO so we won't try. */
613 #if !defined (FIONREAD)
619 /* If we support a window system, turn on the code to poll periodically
620 to detect C-g. It isn't actually used when doing interrupt input. */
621 #if defined(HAVE_WINDOW_SYSTEM) && !defined(USE_ASYNC_EVENTS)
622 #define POLL_FOR_INPUT
625 /* After a command is executed, if point is moved into a region that
626 has specific properties (e.g. composition, display), we adjust
627 point to the boundary of the region. But, if a command sets this
628 variable to non-nil, we suppress this point adjustment. This
629 variable is set to nil before reading a command. */
631 Lisp_Object Vdisable_point_adjustment
;
633 /* If non-nil, always disable point adjustment. */
635 Lisp_Object Vglobal_disable_point_adjustment
;
637 /* The time when Emacs started being idle. */
639 static EMACS_TIME timer_idleness_start_time
;
641 /* After Emacs stops being idle, this saves the last value
642 of timer_idleness_start_time from when it was idle. */
644 static EMACS_TIME timer_last_idleness_start_time
;
647 /* Global variable declarations. */
649 /* Flags for readable_events. */
650 #define READABLE_EVENTS_DO_TIMERS_NOW (1 << 0)
651 #define READABLE_EVENTS_FILTER_EVENTS (1 << 1)
652 #define READABLE_EVENTS_IGNORE_SQUEEZABLES (1 << 2)
654 /* Function for init_keyboard to call with no args (if nonzero). */
655 void (*keyboard_init_hook
) ();
657 static int read_avail_input
P_ ((int));
658 static void get_input_pending
P_ ((int *, int));
659 static int readable_events
P_ ((int));
660 static Lisp_Object read_char_x_menu_prompt
P_ ((int, Lisp_Object
*,
661 Lisp_Object
, int *));
662 static Lisp_Object
read_char_x_menu_prompt ();
663 static Lisp_Object read_char_minibuf_menu_prompt
P_ ((int, int,
665 static Lisp_Object make_lispy_event
P_ ((struct input_event
*));
667 static Lisp_Object make_lispy_movement
P_ ((struct frame
*, Lisp_Object
,
668 enum scroll_bar_part
,
669 Lisp_Object
, Lisp_Object
,
672 static Lisp_Object modify_event_symbol
P_ ((int, unsigned, Lisp_Object
,
673 Lisp_Object
, char **,
674 Lisp_Object
*, unsigned));
675 static Lisp_Object make_lispy_switch_frame
P_ ((Lisp_Object
));
676 static int parse_solitary_modifier
P_ ((Lisp_Object
));
677 static int parse_solitary_modifier ();
678 static void save_getcjmp
P_ ((jmp_buf));
679 static void save_getcjmp ();
680 static void restore_getcjmp
P_ ((jmp_buf));
681 static Lisp_Object apply_modifiers
P_ ((int, Lisp_Object
));
682 static void clear_event
P_ ((struct input_event
*));
683 static void any_kboard_state
P_ ((void));
684 static SIGTYPE interrupt_signal
P_ ((int signalnum
));
685 static void timer_start_idle
P_ ((void));
686 static void timer_stop_idle
P_ ((void));
687 static void timer_resume_idle
P_ ((void));
689 /* Nonzero means don't try to suspend even if the operating system seems
691 static int cannot_suspend
;
693 extern Lisp_Object Qidentity
, Qonly
;
695 /* Install the string STR as the beginning of the string of echoing,
696 so that it serves as a prompt for the next character.
697 Also start echoing. */
703 current_kboard
->echo_string
= str
;
704 current_kboard
->echo_after_prompt
= SCHARS (str
);
708 /* Add C to the echo string, if echoing is going on.
709 C can be a character, which is printed prettily ("M-C-x" and all that
710 jazz), or a symbol, whose name is printed. */
716 if (current_kboard
->immediate_echo
)
718 int size
= KEY_DESCRIPTION_SIZE
+ 100;
719 char *buffer
= (char *) alloca (size
);
721 Lisp_Object echo_string
;
723 echo_string
= current_kboard
->echo_string
;
725 /* If someone has passed us a composite event, use its head symbol. */
730 ptr
= push_key_description (XINT (c
), ptr
, 1);
732 else if (SYMBOLP (c
))
734 Lisp_Object name
= SYMBOL_NAME (c
);
735 int nbytes
= SBYTES (name
);
737 if (size
- (ptr
- buffer
) < nbytes
)
739 int offset
= ptr
- buffer
;
740 size
= max (2 * size
, size
+ nbytes
);
741 buffer
= (char *) alloca (size
);
742 ptr
= buffer
+ offset
;
745 ptr
+= copy_text (SDATA (name
), ptr
, nbytes
,
746 STRING_MULTIBYTE (name
), 1);
749 if ((NILP (echo_string
) || SCHARS (echo_string
) == 0)
752 const char *text
= " (Type ? for further options)";
753 int len
= strlen (text
);
755 if (size
- (ptr
- buffer
) < len
)
757 int offset
= ptr
- buffer
;
759 buffer
= (char *) alloca (size
);
760 ptr
= buffer
+ offset
;
763 bcopy (text
, ptr
, len
);
767 /* Replace a dash from echo_dash with a space, otherwise
768 add a space at the end as a separator between keys. */
769 if (STRINGP (echo_string
)
770 && SCHARS (echo_string
) > 1)
772 Lisp_Object last_char
, prev_char
, idx
;
774 idx
= make_number (SCHARS (echo_string
) - 2);
775 prev_char
= Faref (echo_string
, idx
);
777 idx
= make_number (SCHARS (echo_string
) - 1);
778 last_char
= Faref (echo_string
, idx
);
780 /* We test PREV_CHAR to make sure this isn't the echoing
782 if (XINT (last_char
) == '-' && XINT (prev_char
) != ' ')
783 Faset (echo_string
, idx
, make_number (' '));
785 echo_string
= concat2 (echo_string
, build_string (" "));
788 current_kboard
->echo_string
789 = concat2 (echo_string
, make_string (buffer
, ptr
- buffer
));
795 /* Temporarily add a dash to the end of the echo string if it's not
796 empty, so that it serves as a mini-prompt for the very next character. */
801 /* Do nothing if not echoing at all. */
802 if (NILP (current_kboard
->echo_string
))
805 if (!current_kboard
->immediate_echo
806 && SCHARS (current_kboard
->echo_string
) == 0)
809 /* Do nothing if we just printed a prompt. */
810 if (current_kboard
->echo_after_prompt
811 == SCHARS (current_kboard
->echo_string
))
814 /* Do nothing if we have already put a dash at the end. */
815 if (SCHARS (current_kboard
->echo_string
) > 1)
817 Lisp_Object last_char
, prev_char
, idx
;
819 idx
= make_number (SCHARS (current_kboard
->echo_string
) - 2);
820 prev_char
= Faref (current_kboard
->echo_string
, idx
);
822 idx
= make_number (SCHARS (current_kboard
->echo_string
) - 1);
823 last_char
= Faref (current_kboard
->echo_string
, idx
);
825 if (XINT (last_char
) == '-' && XINT (prev_char
) != ' ')
829 /* Put a dash at the end of the buffer temporarily,
830 but make it go away when the next character is added. */
831 current_kboard
->echo_string
= concat2 (current_kboard
->echo_string
,
836 /* Display the current echo string, and begin echoing if not already
842 if (!current_kboard
->immediate_echo
)
845 current_kboard
->immediate_echo
= 1;
847 for (i
= 0; i
< this_command_key_count
; i
++)
851 /* Set before_command_echo_length to the value that would
852 have been saved before the start of this subcommand in
853 command_loop_1, if we had already been echoing then. */
854 if (i
== this_single_command_key_start
)
855 before_command_echo_length
= echo_length ();
857 c
= XVECTOR (this_command_keys
)->contents
[i
];
858 if (! (EVENT_HAS_PARAMETERS (c
)
859 && EQ (EVENT_HEAD_KIND (EVENT_HEAD (c
)), Qmouse_movement
)))
863 /* Set before_command_echo_length to the value that would
864 have been saved before the start of this subcommand in
865 command_loop_1, if we had already been echoing then. */
866 if (this_command_key_count
== this_single_command_key_start
)
867 before_command_echo_length
= echo_length ();
869 /* Put a dash at the end to invite the user to type more. */
874 message3_nolog (current_kboard
->echo_string
,
875 SBYTES (current_kboard
->echo_string
),
876 STRING_MULTIBYTE (current_kboard
->echo_string
));
879 /* Record in what buffer we echoed, and from which kboard. */
880 echo_message_buffer
= echo_area_buffer
[0];
881 echo_kboard
= current_kboard
;
883 if (waiting_for_input
&& !NILP (Vquit_flag
))
884 quit_throw_to_read_char ();
887 /* Turn off echoing, for the start of a new command. */
892 current_kboard
->immediate_echo
= 0;
893 current_kboard
->echo_after_prompt
= -1;
894 current_kboard
->echo_string
= Qnil
;
895 ok_to_echo_at_next_pause
= NULL
;
897 echo_message_buffer
= Qnil
;
900 /* Return the length of the current echo string. */
905 return (STRINGP (current_kboard
->echo_string
)
906 ? SCHARS (current_kboard
->echo_string
)
910 /* Truncate the current echo message to its first LEN chars.
911 This and echo_char get used by read_key_sequence when the user
912 switches frames while entering a key sequence. */
915 echo_truncate (nchars
)
918 if (STRINGP (current_kboard
->echo_string
))
919 current_kboard
->echo_string
920 = Fsubstring (current_kboard
->echo_string
,
921 make_number (0), make_number (nchars
));
922 truncate_echo_area (nchars
);
926 /* Functions for manipulating this_command_keys. */
928 add_command_key (key
)
931 #if 0 /* Not needed after we made Freset_this_command_lengths
932 do the job immediately. */
933 /* If reset-this-command-length was called recently, obey it now.
934 See the doc string of that function for an explanation of why. */
935 if (before_command_restore_flag
)
937 this_command_key_count
= before_command_key_count_1
;
938 if (this_command_key_count
< this_single_command_key_start
)
939 this_single_command_key_start
= this_command_key_count
;
940 echo_truncate (before_command_echo_length_1
);
941 before_command_restore_flag
= 0;
945 if (this_command_key_count
>= ASIZE (this_command_keys
))
946 this_command_keys
= larger_vector (this_command_keys
,
947 2 * ASIZE (this_command_keys
),
950 AREF (this_command_keys
, this_command_key_count
) = key
;
951 ++this_command_key_count
;
958 int count
= SPECPDL_INDEX ();
961 if (command_loop_level
> 0)
963 specbind (Qstandard_output
, Qt
);
964 specbind (Qstandard_input
, Qt
);
967 #ifdef HAVE_X_WINDOWS
968 /* The command loop has started an hourglass timer, so we have to
969 cancel it here, otherwise it will fire because the recursive edit
970 can take some time. Do not check for display_hourglass_p here,
971 because it could already be nil. */
975 /* This function may have been called from a debugger called from
976 within redisplay, for instance by Edebugging a function called
977 from fontification-functions. We want to allow redisplay in
978 the debugging session.
980 The recursive edit is left with a `(throw exit ...)'. The `exit'
981 tag is not caught anywhere in redisplay, i.e. when we leave the
982 recursive edit, the original redisplay leading to the recursive
983 edit will be unwound. The outcome should therefore be safe. */
984 specbind (Qinhibit_redisplay
, Qnil
);
987 val
= command_loop ();
989 Fsignal (Qquit
, Qnil
);
990 /* Handle throw from read_minibuf when using minibuffer
991 while it's active but we're in another window. */
993 Fsignal (Qerror
, Fcons (val
, Qnil
));
995 return unbind_to (count
, Qnil
);
998 /* When an auto-save happens, record the "time", and don't do again soon. */
1003 last_auto_save
= num_nonmacro_input_events
;
1006 /* Make an auto save happen as soon as possible at command level. */
1009 force_auto_save_soon ()
1011 last_auto_save
= - auto_save_interval
- 1;
1013 record_asynch_buffer_change ();
1016 DEFUN ("recursive-edit", Frecursive_edit
, Srecursive_edit
, 0, 0, "",
1017 doc
: /* Invoke the editor command loop recursively.
1018 To get out of the recursive edit, a command can do `(throw 'exit nil)';
1019 that tells this function to return.
1020 Alternately, `(throw 'exit t)' makes this function signal an error.
1021 This function is called by the editor initialization to begin editing. */)
1024 int count
= SPECPDL_INDEX ();
1027 /* If we enter while input is blocked, don't lock up here.
1028 This may happen through the debugger during redisplay. */
1029 if (INPUT_BLOCKED_P
)
1032 command_loop_level
++;
1033 update_mode_lines
= 1;
1035 if (command_loop_level
1036 && current_buffer
!= XBUFFER (XWINDOW (selected_window
)->buffer
))
1037 buffer
= Fcurrent_buffer ();
1041 /* If we leave recursive_edit_1 below with a `throw' for instance,
1042 like it is done in the splash screen display, we have to
1043 make sure that we restore single_kboard as command_loop_1
1044 would have done if it were left normally. */
1045 record_unwind_protect (recursive_edit_unwind
,
1046 Fcons (buffer
, single_kboard
? Qt
: Qnil
));
1048 recursive_edit_1 ();
1049 return unbind_to (count
, Qnil
);
1053 recursive_edit_unwind (info
)
1056 if (BUFFERP (XCAR (info
)))
1057 Fset_buffer (XCAR (info
));
1059 if (NILP (XCDR (info
)))
1060 any_kboard_state ();
1062 single_kboard_state ();
1064 command_loop_level
--;
1065 update_mode_lines
= 1;
1074 #if 0 /* Theory: if there's anything in Vunread_command_events,
1075 it will right away be read by read_key_sequence,
1076 and then if we do switch KBOARDS, it will go into the side
1077 queue then. So we don't need to do anything special here -- rms. */
1078 if (CONSP (Vunread_command_events
))
1080 current_kboard
->kbd_queue
1081 = nconc2 (Vunread_command_events
, current_kboard
->kbd_queue
);
1082 current_kboard
->kbd_queue_has_data
= 1;
1084 Vunread_command_events
= Qnil
;
1090 /* Switch to the single-kboard state, making current_kboard
1091 the only KBOARD from which further input is accepted. */
1094 single_kboard_state ()
1101 /* If we're in single_kboard state for kboard KBOARD,
1105 not_single_kboard_state (kboard
)
1109 if (kboard
== current_kboard
)
1114 /* Maintain a stack of kboards, so other parts of Emacs
1115 can switch temporarily to the kboard of a given frame
1116 and then revert to the previous status. */
1121 struct kboard_stack
*next
;
1124 static struct kboard_stack
*kboard_stack
;
1127 push_frame_kboard (f
)
1131 struct kboard_stack
*p
1132 = (struct kboard_stack
*) xmalloc (sizeof (struct kboard_stack
));
1134 p
->next
= kboard_stack
;
1135 p
->kboard
= current_kboard
;
1138 current_kboard
= FRAME_KBOARD (f
);
1146 struct kboard_stack
*p
= kboard_stack
;
1147 current_kboard
= p
->kboard
;
1148 kboard_stack
= p
->next
;
1153 /* Handle errors that are not handled at inner levels
1154 by printing an error message and returning to the editor command loop. */
1160 Lisp_Object old_level
, old_length
;
1161 char macroerror
[50];
1163 #ifdef HAVE_X_WINDOWS
1164 if (display_hourglass_p
)
1165 cancel_hourglass ();
1168 if (!NILP (executing_macro
))
1170 if (executing_macro_iterations
== 1)
1171 sprintf (macroerror
, "After 1 kbd macro iteration: ");
1173 sprintf (macroerror
, "After %d kbd macro iterations: ",
1174 executing_macro_iterations
);
1179 Vstandard_output
= Qt
;
1180 Vstandard_input
= Qt
;
1181 Vexecuting_macro
= Qnil
;
1182 executing_macro
= Qnil
;
1183 current_kboard
->Vprefix_arg
= Qnil
;
1184 current_kboard
->Vlast_prefix_arg
= Qnil
;
1187 /* Avoid unquittable loop if data contains a circular list. */
1188 old_level
= Vprint_level
;
1189 old_length
= Vprint_length
;
1190 XSETFASTINT (Vprint_level
, 10);
1191 XSETFASTINT (Vprint_length
, 10);
1192 cmd_error_internal (data
, macroerror
);
1193 Vprint_level
= old_level
;
1194 Vprint_length
= old_length
;
1198 Vinhibit_quit
= Qnil
;
1200 if (command_loop_level
== 0 && minibuf_level
== 0)
1201 any_kboard_state ();
1204 return make_number (0);
1207 /* Take actions on handling an error. DATA is the data that describes
1210 CONTEXT is a C-string containing ASCII characters only which
1211 describes the context in which the error happened. If we need to
1212 generalize CONTEXT to allow multibyte characters, make it a Lisp
1216 cmd_error_internal (data
, context
)
1221 int kill_emacs_p
= 0;
1222 struct frame
*sf
= SELECTED_FRAME ();
1226 clear_message (1, 0);
1228 /* If the window system or terminal frame hasn't been initialized
1229 yet, or we're not interactive, it's best to dump this message out
1230 to stderr and exit. */
1231 if (!sf
->glyphs_initialized_p
1232 /* This is the case of the frame dumped with Emacs, when we're
1233 running under a window system. */
1234 || (!NILP (Vwindow_system
)
1235 && !inhibit_window_system
1236 && FRAME_TERMCAP_P (sf
))
1239 stream
= Qexternal_debugging_output
;
1245 message_log_maybe_newline ();
1250 /* The immediate context is not interesting for Quits,
1251 since they are asyncronous. */
1252 if (EQ (XCAR (data
), Qquit
))
1253 Vsignaling_function
= Qnil
;
1255 print_error_message (data
, stream
, context
, Vsignaling_function
);
1257 Vsignaling_function
= Qnil
;
1259 /* If the window system or terminal frame hasn't been initialized
1260 yet, or we're in -batch mode, this error should cause Emacs to exit. */
1264 Fkill_emacs (make_number (-1));
1268 Lisp_Object
command_loop_1 ();
1269 Lisp_Object
command_loop_2 ();
1270 Lisp_Object
top_level_1 ();
1272 /* Entry to editor-command-loop.
1273 This level has the catches for exiting/returning to editor command loop.
1274 It returns nil to exit recursive edit, t to abort it. */
1279 if (command_loop_level
> 0 || minibuf_level
> 0)
1282 val
= internal_catch (Qexit
, command_loop_2
, Qnil
);
1283 executing_macro
= Qnil
;
1289 internal_catch (Qtop_level
, top_level_1
, Qnil
);
1290 /* Reset single_kboard in case top-level set it while
1291 evaluating an -f option, or we are stuck there for some
1293 any_kboard_state ();
1294 internal_catch (Qtop_level
, command_loop_2
, Qnil
);
1295 executing_macro
= Qnil
;
1297 /* End of file in -batch run causes exit here. */
1303 /* Here we catch errors in execution of commands within the
1304 editing loop, and reenter the editing loop.
1305 When there is an error, cmd_error runs and returns a non-nil
1306 value to us. A value of nil means that command_loop_1 itself
1307 returned due to end of file (or end of kbd macro). */
1312 register Lisp_Object val
;
1315 val
= internal_condition_case (command_loop_1
, Qerror
, cmd_error
);
1316 while (!NILP (val
));
1324 return Feval (Vtop_level
);
1330 /* On entry to the outer level, run the startup file */
1331 if (!NILP (Vtop_level
))
1332 internal_condition_case (top_level_2
, Qerror
, cmd_error
);
1333 else if (!NILP (Vpurify_flag
))
1334 message ("Bare impure Emacs (standard Lisp code not loaded)");
1336 message ("Bare Emacs (standard Lisp code not loaded)");
1340 DEFUN ("top-level", Ftop_level
, Stop_level
, 0, 0, "",
1341 doc
: /* Exit all recursive editing levels. */)
1344 #ifdef HAVE_X_WINDOWS
1345 if (display_hourglass_p
)
1346 cancel_hourglass ();
1349 /* Unblock input if we enter with input blocked. This may happen if
1350 redisplay traps e.g. during tool-bar update with input blocked. */
1351 while (INPUT_BLOCKED_P
)
1354 return Fthrow (Qtop_level
, Qnil
);
1357 DEFUN ("exit-recursive-edit", Fexit_recursive_edit
, Sexit_recursive_edit
, 0, 0, "",
1358 doc
: /* Exit from the innermost recursive edit or minibuffer. */)
1361 if (command_loop_level
> 0 || minibuf_level
> 0)
1362 Fthrow (Qexit
, Qnil
);
1364 error ("No recursive edit is in progress");
1368 DEFUN ("abort-recursive-edit", Fabort_recursive_edit
, Sabort_recursive_edit
, 0, 0, "",
1369 doc
: /* Abort the command that requested this recursive edit or minibuffer input. */)
1372 if (command_loop_level
> 0 || minibuf_level
> 0)
1375 error ("No recursive edit is in progress");
1379 /* This is the actual command reading loop,
1380 sans error-handling encapsulation. */
1382 static int read_key_sequence
P_ ((Lisp_Object
*, int, Lisp_Object
,
1384 void safe_run_hooks
P_ ((Lisp_Object
));
1385 static void adjust_point_for_property
P_ ((int, int));
1387 /* Cancel hourglass from protect_unwind.
1389 #ifdef HAVE_X_WINDOWS
1391 cancel_hourglass_unwind (arg
)
1394 cancel_hourglass ();
1405 Lisp_Object keybuf
[30];
1409 struct buffer
*prev_buffer
= NULL
;
1411 int was_locked
= single_kboard
;
1413 int already_adjusted
;
1415 current_kboard
->Vprefix_arg
= Qnil
;
1416 current_kboard
->Vlast_prefix_arg
= Qnil
;
1417 Vdeactivate_mark
= Qnil
;
1418 waiting_for_input
= 0;
1422 this_command_key_count
= 0;
1423 this_command_key_count_reset
= 0;
1424 this_single_command_key_start
= 0;
1426 if (NILP (Vmemory_full
))
1428 /* Make sure this hook runs after commands that get errors and
1429 throw to top level. */
1430 /* Note that the value cell will never directly contain nil
1431 if the symbol is a local variable. */
1432 if (!NILP (Vpost_command_hook
) && !NILP (Vrun_hooks
))
1433 safe_run_hooks (Qpost_command_hook
);
1435 /* If displaying a message, resize the echo area window to fit
1436 that message's size exactly. */
1437 if (!NILP (echo_area_buffer
[0]))
1438 resize_echo_area_exactly ();
1440 if (!NILP (Vdeferred_action_list
))
1441 call0 (Vdeferred_action_function
);
1443 if (!NILP (Vpost_command_idle_hook
) && !NILP (Vrun_hooks
))
1445 if (NILP (Vunread_command_events
)
1446 && NILP (Vunread_input_method_events
)
1447 && NILP (Vunread_post_input_method_events
)
1448 && NILP (Vexecuting_macro
)
1449 && !NILP (sit_for (0, post_command_idle_delay
, 0, 1, 1)))
1450 safe_run_hooks (Qpost_command_idle_hook
);
1454 Vmemory_full
= Qnil
;
1456 /* Do this after running Vpost_command_hook, for consistency. */
1457 current_kboard
->Vlast_command
= Vthis_command
;
1458 current_kboard
->Vreal_last_command
= real_this_command
;
1462 if (! FRAME_LIVE_P (XFRAME (selected_frame
)))
1465 /* Make sure the current window's buffer is selected. */
1466 if (XBUFFER (XWINDOW (selected_window
)->buffer
) != current_buffer
)
1467 set_buffer_internal (XBUFFER (XWINDOW (selected_window
)->buffer
));
1469 /* Display any malloc warning that just came out. Use while because
1470 displaying one warning can cause another. */
1472 while (pending_malloc_warning
)
1473 display_malloc_warning ();
1477 Vdeactivate_mark
= Qnil
;
1479 /* If minibuffer on and echo area in use,
1480 wait a short time and redraw minibuffer. */
1483 && !NILP (echo_area_buffer
[0])
1484 && EQ (minibuf_window
, echo_area_window
)
1485 && NUMBERP (Vminibuffer_message_timeout
))
1487 /* Bind inhibit-quit to t so that C-g gets read in
1488 rather than quitting back to the minibuffer. */
1489 int count
= SPECPDL_INDEX ();
1490 specbind (Qinhibit_quit
, Qt
);
1492 Fsit_for (Vminibuffer_message_timeout
, Qnil
, Qnil
);
1493 /* Clear the echo area. */
1495 safe_run_hooks (Qecho_area_clear_hook
);
1497 unbind_to (count
, Qnil
);
1499 /* If a C-g came in before, treat it as input now. */
1500 if (!NILP (Vquit_flag
))
1503 Vunread_command_events
= Fcons (make_number (quit_char
), Qnil
);
1508 alloca (0); /* Cause a garbage collection now */
1509 /* Since we can free the most stuff here. */
1510 #endif /* C_ALLOCA */
1513 /* Select the frame that the last event came from. Usually,
1514 switch-frame events will take care of this, but if some lisp
1515 code swallows a switch-frame event, we'll fix things up here.
1516 Is this a good idea? */
1517 if (FRAMEP (internal_last_event_frame
)
1518 && !EQ (internal_last_event_frame
, selected_frame
))
1519 Fselect_frame (internal_last_event_frame
, Qnil
);
1521 /* If it has changed current-menubar from previous value,
1522 really recompute the menubar from the value. */
1523 if (! NILP (Vlucid_menu_bar_dirty_flag
)
1524 && !NILP (Ffboundp (Qrecompute_lucid_menubar
)))
1525 call0 (Qrecompute_lucid_menubar
);
1527 before_command_key_count
= this_command_key_count
;
1528 before_command_echo_length
= echo_length ();
1530 Vthis_command
= Qnil
;
1531 real_this_command
= Qnil
;
1533 /* Read next key sequence; i gets its length. */
1534 i
= read_key_sequence (keybuf
, sizeof keybuf
/ sizeof keybuf
[0],
1537 /* A filter may have run while we were reading the input. */
1538 if (! FRAME_LIVE_P (XFRAME (selected_frame
)))
1540 if (XBUFFER (XWINDOW (selected_window
)->buffer
) != current_buffer
)
1541 set_buffer_internal (XBUFFER (XWINDOW (selected_window
)->buffer
));
1545 /* Now we have read a key sequence of length I,
1546 or else I is 0 and we found end of file. */
1548 if (i
== 0) /* End of file -- happens only in */
1549 return Qnil
; /* a kbd macro, at the end. */
1550 /* -1 means read_key_sequence got a menu that was rejected.
1551 Just loop around and read another command. */
1555 this_command_key_count
= 0;
1556 this_command_key_count_reset
= 0;
1557 this_single_command_key_start
= 0;
1561 last_command_char
= keybuf
[i
- 1];
1563 /* If the previous command tried to force a specific window-start,
1564 forget about that, in case this command moves point far away
1565 from that position. But also throw away beg_unchanged and
1566 end_unchanged information in that case, so that redisplay will
1567 update the whole window properly. */
1568 if (!NILP (XWINDOW (selected_window
)->force_start
))
1571 XWINDOW (selected_window
)->force_start
= Qnil
;
1572 b
= XBUFFER (XWINDOW (selected_window
)->buffer
);
1573 BUF_BEG_UNCHANGED (b
) = BUF_END_UNCHANGED (b
) = 0;
1576 cmd
= read_key_sequence_cmd
;
1577 if (!NILP (Vexecuting_macro
))
1579 if (!NILP (Vquit_flag
))
1581 Vexecuting_macro
= Qt
;
1582 QUIT
; /* Make some noise. */
1583 /* Will return since macro now empty. */
1587 /* Do redisplay processing after this command except in special
1588 cases identified below. */
1589 prev_buffer
= current_buffer
;
1590 prev_modiff
= MODIFF
;
1591 last_point_position
= PT
;
1592 XSETBUFFER (last_point_position_buffer
, prev_buffer
);
1594 /* By default, we adjust point to a boundary of a region that
1595 has such a property that should be treated intangible
1596 (e.g. composition, display). But, some commands will set
1597 this variable differently. */
1598 Vdisable_point_adjustment
= Qnil
;
1600 /* Process filters and timers may have messed with deactivate-mark.
1601 reset it before we execute the command. */
1602 Vdeactivate_mark
= Qnil
;
1604 /* Remap command through active keymaps */
1605 Vthis_original_command
= cmd
;
1609 if (cmd1
= Fcommand_remapping (cmd
), !NILP (cmd1
))
1613 /* Execute the command. */
1615 Vthis_command
= cmd
;
1616 real_this_command
= cmd
;
1617 /* Note that the value cell will never directly contain nil
1618 if the symbol is a local variable. */
1619 if (!NILP (Vpre_command_hook
) && !NILP (Vrun_hooks
))
1620 safe_run_hooks (Qpre_command_hook
);
1622 already_adjusted
= 0;
1624 if (NILP (Vthis_command
))
1626 /* nil means key is undefined. */
1627 Lisp_Object keys
= Fvector (i
, keybuf
);
1628 keys
= Fkey_description (keys
, Qnil
);
1630 message_with_string ("%s is undefined", keys
, 0);
1631 current_kboard
->defining_kbd_macro
= Qnil
;
1632 update_mode_lines
= 1;
1633 current_kboard
->Vprefix_arg
= Qnil
;
1637 if (NILP (current_kboard
->Vprefix_arg
) && ! no_direct
)
1639 /* In case we jump to directly_done. */
1640 Vcurrent_prefix_arg
= current_kboard
->Vprefix_arg
;
1642 /* Recognize some common commands in common situations and
1643 do them directly. */
1644 if (EQ (Vthis_command
, Qforward_char
) && PT
< ZV
)
1646 struct Lisp_Char_Table
*dp
1647 = window_display_table (XWINDOW (selected_window
));
1648 lose
= FETCH_CHAR (PT_BYTE
);
1650 if (! NILP (Vpost_command_hook
))
1651 /* Put this before calling adjust_point_for_property
1652 so it will only get called once in any case. */
1654 if (current_buffer
== prev_buffer
1655 && last_point_position
!= PT
1656 && NILP (Vdisable_point_adjustment
)
1657 && NILP (Vglobal_disable_point_adjustment
))
1658 adjust_point_for_property (last_point_position
, 0);
1659 already_adjusted
= 1;
1660 if (PT
== last_point_position
+ 1
1662 ? (VECTORP (DISP_CHAR_VECTOR (dp
, lose
))
1663 ? XVECTOR (DISP_CHAR_VECTOR (dp
, lose
))->size
== 1
1664 : (NILP (DISP_CHAR_VECTOR (dp
, lose
))
1665 && (lose
>= 0x20 && lose
< 0x7f)))
1666 : (lose
>= 0x20 && lose
< 0x7f))
1667 /* To extract the case of continuation on
1668 wide-column characters. */
1669 && (WIDTH_BY_CHAR_HEAD (FETCH_BYTE (PT_BYTE
)) == 1)
1670 && (XFASTINT (XWINDOW (selected_window
)->last_modified
)
1672 && (XFASTINT (XWINDOW (selected_window
)->last_overlay_modified
)
1674 && (XFASTINT (XWINDOW (selected_window
)->last_point
)
1676 && !windows_or_buffers_changed
1677 && EQ (current_buffer
->selective_display
, Qnil
)
1678 && !detect_input_pending ()
1679 && NILP (XWINDOW (selected_window
)->column_number_displayed
)
1680 && NILP (Vexecuting_macro
))
1681 direct_output_forward_char (1);
1684 else if (EQ (Vthis_command
, Qbackward_char
) && PT
> BEGV
)
1686 struct Lisp_Char_Table
*dp
1687 = window_display_table (XWINDOW (selected_window
));
1689 lose
= FETCH_CHAR (PT_BYTE
);
1690 if (! NILP (Vpost_command_hook
))
1692 if (current_buffer
== prev_buffer
1693 && last_point_position
!= PT
1694 && NILP (Vdisable_point_adjustment
)
1695 && NILP (Vglobal_disable_point_adjustment
))
1696 adjust_point_for_property (last_point_position
, 0);
1697 already_adjusted
= 1;
1698 if (PT
== last_point_position
- 1
1700 ? (VECTORP (DISP_CHAR_VECTOR (dp
, lose
))
1701 ? XVECTOR (DISP_CHAR_VECTOR (dp
, lose
))->size
== 1
1702 : (NILP (DISP_CHAR_VECTOR (dp
, lose
))
1703 && (lose
>= 0x20 && lose
< 0x7f)))
1704 : (lose
>= 0x20 && lose
< 0x7f))
1705 && (XFASTINT (XWINDOW (selected_window
)->last_modified
)
1707 && (XFASTINT (XWINDOW (selected_window
)->last_overlay_modified
)
1709 && (XFASTINT (XWINDOW (selected_window
)->last_point
)
1711 && !windows_or_buffers_changed
1712 && EQ (current_buffer
->selective_display
, Qnil
)
1713 && !detect_input_pending ()
1714 && NILP (XWINDOW (selected_window
)->column_number_displayed
)
1715 && NILP (Vexecuting_macro
))
1716 direct_output_forward_char (-1);
1719 else if (EQ (Vthis_command
, Qself_insert_command
)
1720 /* Try this optimization only on char keystrokes. */
1721 && NATNUMP (last_command_char
)
1722 && CHAR_VALID_P (XFASTINT (last_command_char
), 0))
1725 = translate_char (Vtranslation_table_for_input
,
1726 XFASTINT (last_command_char
), 0, 0, 0);
1728 if (NILP (Vexecuting_macro
)
1729 && !EQ (minibuf_window
, selected_window
))
1731 if (!nonundocount
|| nonundocount
>= 20)
1739 lose
= ((XFASTINT (XWINDOW (selected_window
)->last_modified
)
1741 || (XFASTINT (XWINDOW (selected_window
)->last_overlay_modified
)
1743 || (XFASTINT (XWINDOW (selected_window
)->last_point
)
1745 || MODIFF
<= SAVE_MODIFF
1746 || windows_or_buffers_changed
1747 || !EQ (current_buffer
->selective_display
, Qnil
)
1748 || detect_input_pending ()
1749 || !NILP (XWINDOW (selected_window
)->column_number_displayed
)
1750 || !NILP (Vexecuting_macro
));
1752 value
= internal_self_insert (c
, 0);
1757 if (! NILP (Vpost_command_hook
))
1758 /* Put this before calling adjust_point_for_property
1759 so it will only get called once in any case. */
1762 /* VALUE == 1 when AFTER-CHANGE functions are
1763 installed which is the case most of the time
1764 because FONT-LOCK installs one. */
1765 if (!lose
&& !value
)
1766 direct_output_for_insert (c
);
1771 /* Here for a command that isn't executed directly */
1774 #ifdef HAVE_X_WINDOWS
1775 int scount
= SPECPDL_INDEX ();
1777 if (display_hourglass_p
1778 && NILP (Vexecuting_macro
))
1780 record_unwind_protect (cancel_hourglass_unwind
, Qnil
);
1786 if (NILP (current_kboard
->Vprefix_arg
))
1788 Fcommand_execute (Vthis_command
, Qnil
, Qnil
, Qnil
);
1790 #ifdef HAVE_X_WINDOWS
1791 /* Do not check display_hourglass_p here, because
1792 Fcommand_execute could change it, but we should cancel
1793 hourglass cursor anyway.
1794 But don't cancel the hourglass within a macro
1795 just because a command in the macro finishes. */
1796 if (NILP (Vexecuting_macro
))
1797 unbind_to (scount
, Qnil
);
1802 current_kboard
->Vlast_prefix_arg
= Vcurrent_prefix_arg
;
1804 /* Note that the value cell will never directly contain nil
1805 if the symbol is a local variable. */
1806 if (!NILP (Vpost_command_hook
) && !NILP (Vrun_hooks
))
1807 safe_run_hooks (Qpost_command_hook
);
1809 /* If displaying a message, resize the echo area window to fit
1810 that message's size exactly. */
1811 if (!NILP (echo_area_buffer
[0]))
1812 resize_echo_area_exactly ();
1814 if (!NILP (Vdeferred_action_list
))
1815 safe_run_hooks (Qdeferred_action_function
);
1817 if (!NILP (Vpost_command_idle_hook
) && !NILP (Vrun_hooks
))
1819 if (NILP (Vunread_command_events
)
1820 && NILP (Vunread_input_method_events
)
1821 && NILP (Vunread_post_input_method_events
)
1822 && NILP (Vexecuting_macro
)
1823 && !NILP (sit_for (0, post_command_idle_delay
, 0, 1, 1)))
1824 safe_run_hooks (Qpost_command_idle_hook
);
1827 /* If there is a prefix argument,
1828 1) We don't want Vlast_command to be ``universal-argument''
1829 (that would be dumb), so don't set Vlast_command,
1830 2) we want to leave echoing on so that the prefix will be
1831 echoed as part of this key sequence, so don't call
1833 3) we want to leave this_command_key_count non-zero, so that
1834 read_char will realize that it is re-reading a character, and
1835 not echo it a second time.
1837 If the command didn't actually create a prefix arg,
1838 but is merely a frame event that is transparent to prefix args,
1839 then the above doesn't apply. */
1840 if (NILP (current_kboard
->Vprefix_arg
) || CONSP (last_command_char
))
1842 current_kboard
->Vlast_command
= Vthis_command
;
1843 current_kboard
->Vreal_last_command
= real_this_command
;
1845 this_command_key_count
= 0;
1846 this_command_key_count_reset
= 0;
1847 this_single_command_key_start
= 0;
1850 if (!NILP (current_buffer
->mark_active
) && !NILP (Vrun_hooks
))
1852 /* Setting transient-mark-mode to `only' is a way of
1853 turning it on for just one command. */
1855 if (EQ (Vtransient_mark_mode
, Qidentity
))
1856 Vtransient_mark_mode
= Qnil
;
1857 if (EQ (Vtransient_mark_mode
, Qonly
))
1858 Vtransient_mark_mode
= Qidentity
;
1860 if (!NILP (Vdeactivate_mark
) && !NILP (Vtransient_mark_mode
))
1862 /* We could also call `deactivate'mark'. */
1863 if (EQ (Vtransient_mark_mode
, Qlambda
))
1864 Vtransient_mark_mode
= Qnil
;
1867 current_buffer
->mark_active
= Qnil
;
1868 call1 (Vrun_hooks
, intern ("deactivate-mark-hook"));
1871 else if (current_buffer
!= prev_buffer
|| MODIFF
!= prev_modiff
)
1872 call1 (Vrun_hooks
, intern ("activate-mark-hook"));
1877 if (current_buffer
== prev_buffer
1878 && last_point_position
!= PT
1879 && NILP (Vdisable_point_adjustment
)
1880 && NILP (Vglobal_disable_point_adjustment
)
1881 && !already_adjusted
)
1882 adjust_point_for_property (last_point_position
, MODIFF
!= prev_modiff
);
1884 /* Install chars successfully executed in kbd macro. */
1886 if (!NILP (current_kboard
->defining_kbd_macro
)
1887 && NILP (current_kboard
->Vprefix_arg
))
1888 finalize_kbd_macro_chars ();
1892 any_kboard_state ();
1897 extern Lisp_Object Qcomposition
, Qdisplay
;
1899 /* Adjust point to a boundary of a region that has such a property
1900 that should be treated intangible. For the moment, we check
1901 `composition', `display' and `invisible' properties.
1902 LAST_PT is the last position of point. */
1904 extern Lisp_Object Qafter_string
, Qbefore_string
;
1905 extern Lisp_Object get_pos_property
P_ ((Lisp_Object
, Lisp_Object
, Lisp_Object
));
1908 adjust_point_for_property (last_pt
, modified
)
1913 Lisp_Object val
, overlay
, tmp
;
1914 int check_composition
= 1, check_display
= 1, check_invisible
= 1;
1917 /* FIXME: cycling is probably not necessary because these properties
1918 can't be usefully combined anyway. */
1919 while (check_composition
|| check_display
|| check_invisible
)
1921 if (check_composition
1922 && PT
> BEGV
&& PT
< ZV
1923 && get_property_and_range (PT
, Qcomposition
, &val
, &beg
, &end
, Qnil
)
1924 && COMPOSITION_VALID_P (beg
, end
, val
)
1925 && beg
< PT
/* && end > PT <- It's always the case. */
1926 && (last_pt
<= beg
|| last_pt
>= end
))
1929 SET_PT (PT
< last_pt
? beg
: end
);
1930 check_display
= check_invisible
= 1;
1932 check_composition
= 0;
1934 && PT
> BEGV
&& PT
< ZV
1935 && !NILP (val
= get_char_property_and_overlay
1936 (make_number (PT
), Qdisplay
, Qnil
, &overlay
))
1937 && display_prop_intangible_p (val
)
1938 && (!OVERLAYP (overlay
)
1939 ? get_property_and_range (PT
, Qdisplay
, &val
, &beg
, &end
, Qnil
)
1940 : (beg
= OVERLAY_POSITION (OVERLAY_START (overlay
)),
1941 end
= OVERLAY_POSITION (OVERLAY_END (overlay
))))
1942 && beg
< PT
) /* && end > PT <- It's always the case. */
1945 SET_PT (PT
< last_pt
? beg
: end
);
1946 check_composition
= check_invisible
= 1;
1949 if (check_invisible
&& PT
> BEGV
&& PT
< ZV
)
1951 int inv
, ellipsis
= 0;
1954 /* Find boundaries `beg' and `end' of the invisible area, if any. */
1956 && !NILP (val
= get_char_property_and_overlay
1957 (make_number (end
), Qinvisible
, Qnil
, &overlay
))
1958 && (inv
= TEXT_PROP_MEANS_INVISIBLE (val
)))
1960 ellipsis
= ellipsis
|| inv
> 1
1961 || (OVERLAYP (overlay
)
1962 && (!NILP (Foverlay_get (overlay
, Qafter_string
))
1963 || !NILP (Foverlay_get (overlay
, Qbefore_string
))));
1964 tmp
= Fnext_single_char_property_change
1965 (make_number (end
), Qinvisible
, Qnil
, Qnil
);
1966 end
= NATNUMP (tmp
) ? XFASTINT (tmp
) : ZV
;
1969 && !NILP (val
= get_char_property_and_overlay
1970 (make_number (beg
- 1), Qinvisible
, Qnil
, &overlay
))
1971 && (inv
= TEXT_PROP_MEANS_INVISIBLE (val
)))
1973 ellipsis
= ellipsis
|| inv
> 1
1974 || (OVERLAYP (overlay
)
1975 && (!NILP (Foverlay_get (overlay
, Qafter_string
))
1976 || !NILP (Foverlay_get (overlay
, Qbefore_string
))));
1977 tmp
= Fprevious_single_char_property_change
1978 (make_number (beg
), Qinvisible
, Qnil
, Qnil
);
1979 beg
= NATNUMP (tmp
) ? XFASTINT (tmp
) : BEGV
;
1982 /* Move away from the inside area. */
1983 if (beg
< PT
&& end
> PT
)
1985 SET_PT ((orig_pt
== PT
&& (last_pt
< beg
|| last_pt
> end
))
1986 /* We haven't moved yet (so we don't need to fear
1987 infinite-looping) and we were outside the range
1988 before (so either end of the range still corresponds
1989 to a move in the right direction): pretend we moved
1990 less than we actually did, so that we still have
1991 more freedom below in choosing which end of the range
1993 ? (orig_pt
= -1, PT
< last_pt
? end
: beg
)
1994 /* We either have moved already or the last point
1995 was already in the range: we don't get to choose
1996 which end of the range we have to go to. */
1997 : (PT
< last_pt
? beg
: end
));
1998 check_composition
= check_display
= 1;
2000 #if 0 /* This assertion isn't correct, because SET_PT may end up setting
2001 the point to something other than its argument, due to
2002 point-motion hooks, intangibility, etc. */
2003 xassert (PT
== beg
|| PT
== end
);
2006 /* Pretend the area doesn't exist if the buffer is not
2008 if (!modified
&& !ellipsis
&& beg
< end
)
2010 if (last_pt
== beg
&& PT
== end
&& end
< ZV
)
2011 (check_composition
= check_display
= 1, SET_PT (end
+ 1));
2012 else if (last_pt
== end
&& PT
== beg
&& beg
> BEGV
)
2013 (check_composition
= check_display
= 1, SET_PT (beg
- 1));
2014 else if (PT
== ((PT
< last_pt
) ? beg
: end
))
2015 /* We've already moved as far as we can. Trying to go
2016 to the other end would mean moving backwards and thus
2017 could lead to an infinite loop. */
2019 else if (val
= get_pos_property (make_number (PT
),
2021 TEXT_PROP_MEANS_INVISIBLE (val
)
2022 && (val
= get_pos_property
2023 (make_number (PT
== beg
? end
: beg
),
2025 !TEXT_PROP_MEANS_INVISIBLE (val
)))
2026 (check_composition
= check_display
= 1,
2027 SET_PT (PT
== beg
? end
: beg
));
2030 check_invisible
= 0;
2034 /* Subroutine for safe_run_hooks: run the hook HOOK. */
2037 safe_run_hooks_1 (hook
)
2040 return call1 (Vrun_hooks
, Vinhibit_quit
);
2043 /* Subroutine for safe_run_hooks: handle an error by clearing out the hook. */
2046 safe_run_hooks_error (data
)
2049 Lisp_Object args
[3];
2050 args
[0] = build_string ("Error in %s: %s");
2051 args
[1] = Vinhibit_quit
;
2054 return Fset (Vinhibit_quit
, Qnil
);
2057 /* If we get an error while running the hook, cause the hook variable
2058 to be nil. Also inhibit quits, so that C-g won't cause the hook
2059 to mysteriously evaporate. */
2062 safe_run_hooks (hook
)
2065 int count
= SPECPDL_INDEX ();
2066 specbind (Qinhibit_quit
, hook
);
2068 internal_condition_case (safe_run_hooks_1
, Qt
, safe_run_hooks_error
);
2070 unbind_to (count
, Qnil
);
2074 /* Number of seconds between polling for input. This is a Lisp
2075 variable that can be bound. */
2077 EMACS_INT polling_period
;
2079 /* Nonzero means polling for input is temporarily suppressed. */
2081 int poll_suppress_count
;
2083 /* Asynchronous timer for polling. */
2085 struct atimer
*poll_timer
;
2088 #ifdef POLL_FOR_INPUT
2090 /* Poll for input, so what we catch a C-g if it comes in. This
2091 function is called from x_make_frame_visible, see comment
2097 if (interrupt_input_blocked
== 0
2098 && !waiting_for_input
)
2099 read_avail_input (0);
2102 /* Timer callback function for poll_timer. TIMER is equal to
2106 poll_for_input (timer
)
2107 struct atimer
*timer
;
2109 if (poll_suppress_count
== 0)
2110 poll_for_input_1 ();
2113 #endif /* POLL_FOR_INPUT */
2115 /* Begin signals to poll for input, if they are appropriate.
2116 This function is called unconditionally from various places. */
2121 #ifdef POLL_FOR_INPUT
2122 if (read_socket_hook
&& !interrupt_input
)
2124 /* Turn alarm handling on unconditionally. It might have
2125 been turned off in process.c. */
2126 turn_on_atimers (1);
2128 /* If poll timer doesn't exist, are we need one with
2129 a different interval, start a new one. */
2130 if (poll_timer
== NULL
2131 || EMACS_SECS (poll_timer
->interval
) != polling_period
)
2133 EMACS_TIME interval
;
2136 cancel_atimer (poll_timer
);
2138 EMACS_SET_SECS_USECS (interval
, polling_period
, 0);
2139 poll_timer
= start_atimer (ATIMER_CONTINUOUS
, interval
,
2140 poll_for_input
, NULL
);
2143 /* Let the timer's callback function poll for input
2144 if this becomes zero. */
2145 --poll_suppress_count
;
2150 /* Nonzero if we are using polling to handle input asynchronously. */
2153 input_polling_used ()
2155 #ifdef POLL_FOR_INPUT
2156 return read_socket_hook
&& !interrupt_input
;
2162 /* Turn off polling. */
2167 #ifdef POLL_FOR_INPUT
2168 if (read_socket_hook
&& !interrupt_input
)
2169 ++poll_suppress_count
;
2173 /* Set the value of poll_suppress_count to COUNT
2174 and start or stop polling accordingly. */
2177 set_poll_suppress_count (count
)
2180 #ifdef POLL_FOR_INPUT
2181 if (count
== 0 && poll_suppress_count
!= 0)
2183 poll_suppress_count
= 1;
2186 else if (count
!= 0 && poll_suppress_count
== 0)
2190 poll_suppress_count
= count
;
2194 /* Bind polling_period to a value at least N.
2195 But don't decrease it. */
2198 bind_polling_period (n
)
2201 #ifdef POLL_FOR_INPUT
2202 int new = polling_period
;
2207 stop_other_atimers (poll_timer
);
2209 specbind (Qpolling_period
, make_number (new));
2210 /* Start a new alarm with the new period. */
2215 /* Apply the control modifier to CHARACTER. */
2221 /* Save the upper bits here. */
2222 int upper
= c
& ~0177;
2226 /* Everything in the columns containing the upper-case letters
2227 denotes a control character. */
2228 if (c
>= 0100 && c
< 0140)
2232 /* Set the shift modifier for a control char
2233 made from a shifted letter. But only for letters! */
2234 if (oc
>= 'A' && oc
<= 'Z')
2235 c
|= shift_modifier
;
2238 /* The lower-case letters denote control characters too. */
2239 else if (c
>= 'a' && c
<= 'z')
2242 /* Include the bits for control and shift
2243 only if the basic ASCII code can't indicate them. */
2247 /* Replace the high bits. */
2248 c
|= (upper
& ~ctrl_modifier
);
2253 /* Display help echo in the echo area.
2255 HELP a string means display that string, HELP nil means clear the
2256 help echo. If HELP is a function, call it with OBJECT and POS as
2257 arguments; the function should return a help string or nil for
2258 none. For all other types of HELP evaluate it to obtain a string.
2260 WINDOW is the window in which the help was generated, if any.
2261 It is nil if not in a window.
2263 If OBJECT is a buffer, POS is the position in the buffer where the
2264 `help-echo' text property was found.
2266 If OBJECT is an overlay, that overlay has a `help-echo' property,
2267 and POS is the position in the overlay's buffer under the mouse.
2269 If OBJECT is a string (an overlay string or a string displayed with
2270 the `display' property). POS is the position in that string under
2273 OK_TO_OVERWRITE_KEYSTROKE_ECHO non-zero means it's okay if the help
2274 echo overwrites a keystroke echo currently displayed in the echo
2277 Note: this function may only be called with HELP nil or a string
2278 from X code running asynchronously. */
2281 show_help_echo (help
, window
, object
, pos
, ok_to_overwrite_keystroke_echo
)
2282 Lisp_Object help
, window
, object
, pos
;
2283 int ok_to_overwrite_keystroke_echo
;
2285 if (!NILP (help
) && !STRINGP (help
))
2287 if (FUNCTIONP (help
))
2289 Lisp_Object args
[4];
2294 help
= safe_call (4, args
);
2297 help
= safe_eval (help
);
2299 if (!STRINGP (help
))
2303 if (STRINGP (help
) || NILP (help
))
2305 if (!NILP (Vshow_help_function
))
2306 call1 (Vshow_help_function
, help
);
2307 else if (/* Don't overwrite minibuffer contents. */
2308 !MINI_WINDOW_P (XWINDOW (selected_window
))
2309 /* Don't overwrite a keystroke echo. */
2310 && (NILP (echo_message_buffer
)
2311 || ok_to_overwrite_keystroke_echo
)
2312 /* Don't overwrite a prompt. */
2313 && !cursor_in_echo_area
)
2317 int count
= SPECPDL_INDEX ();
2319 if (!help_echo_showing_p
)
2320 Vpre_help_message
= current_message ();
2322 specbind (Qmessage_truncate_lines
, Qt
);
2323 message3_nolog (help
, SBYTES (help
),
2324 STRING_MULTIBYTE (help
));
2325 unbind_to (count
, Qnil
);
2327 else if (STRINGP (Vpre_help_message
))
2329 message3_nolog (Vpre_help_message
,
2330 SBYTES (Vpre_help_message
),
2331 STRING_MULTIBYTE (Vpre_help_message
));
2332 Vpre_help_message
= Qnil
;
2338 help_echo_showing_p
= STRINGP (help
);
2344 /* Input of single characters from keyboard */
2346 Lisp_Object
print_help ();
2347 static Lisp_Object
kbd_buffer_get_event ();
2348 static void record_char ();
2351 static jmp_buf wrong_kboard_jmpbuf
;
2354 #define STOP_POLLING \
2355 do { if (! polling_stopped_here) stop_polling (); \
2356 polling_stopped_here = 1; } while (0)
2358 #define RESUME_POLLING \
2359 do { if (polling_stopped_here) start_polling (); \
2360 polling_stopped_here = 0; } while (0)
2362 /* read a character from the keyboard; call the redisplay if needed */
2363 /* commandflag 0 means do not do auto-saving, but do do redisplay.
2364 -1 means do not do redisplay, but do do autosaving.
2367 /* The arguments MAPS and NMAPS are for menu prompting.
2368 MAPS is an array of keymaps; NMAPS is the length of MAPS.
2370 PREV_EVENT is the previous input event, or nil if we are reading
2371 the first event of a key sequence (or not reading a key sequence).
2372 If PREV_EVENT is t, that is a "magic" value that says
2373 not to run input methods, but in other respects to act as if
2374 not reading a key sequence.
2376 If USED_MOUSE_MENU is non-null, then we set *USED_MOUSE_MENU to 1
2377 if we used a mouse menu to read the input, or zero otherwise. If
2378 USED_MOUSE_MENU is null, we don't dereference it.
2380 Value is t if we showed a menu and the user rejected it. */
2383 read_char (commandflag
, nmaps
, maps
, prev_event
, used_mouse_menu
)
2387 Lisp_Object prev_event
;
2388 int *used_mouse_menu
;
2390 volatile Lisp_Object c
;
2392 jmp_buf local_getcjmp
;
2394 volatile int key_already_recorded
= 0;
2395 Lisp_Object tem
, save
;
2396 volatile Lisp_Object previous_echo_area_message
;
2397 volatile Lisp_Object also_record
;
2398 volatile int reread
;
2399 struct gcpro gcpro1
, gcpro2
;
2400 int polling_stopped_here
= 0;
2404 #if 0 /* This was commented out as part of fixing echo for C-u left. */
2405 before_command_key_count
= this_command_key_count
;
2406 before_command_echo_length
= echo_length ();
2409 previous_echo_area_message
= Qnil
;
2411 GCPRO2 (c
, previous_echo_area_message
);
2416 if (CONSP (Vunread_post_input_method_events
))
2418 c
= XCAR (Vunread_post_input_method_events
);
2419 Vunread_post_input_method_events
2420 = XCDR (Vunread_post_input_method_events
);
2422 /* Undo what read_char_x_menu_prompt did when it unread
2423 additional keys returned by Fx_popup_menu. */
2425 && (SYMBOLP (XCAR (c
)) || INTEGERP (XCAR (c
)))
2433 if (unread_command_char
!= -1)
2435 XSETINT (c
, unread_command_char
);
2436 unread_command_char
= -1;
2442 if (CONSP (Vunread_command_events
))
2444 c
= XCAR (Vunread_command_events
);
2445 Vunread_command_events
= XCDR (Vunread_command_events
);
2447 /* Undo what read_char_x_menu_prompt did when it unread
2448 additional keys returned by Fx_popup_menu. */
2450 && EQ (XCDR (c
), Qdisabled
)
2451 && (SYMBOLP (XCAR (c
)) || INTEGERP (XCAR (c
))))
2454 /* If the queued event is something that used the mouse,
2455 set used_mouse_menu accordingly. */
2457 && (EQ (c
, Qtool_bar
) || EQ (c
, Qmenu_bar
)))
2458 *used_mouse_menu
= 1;
2461 goto reread_for_input_method
;
2464 if (CONSP (Vunread_input_method_events
))
2466 c
= XCAR (Vunread_input_method_events
);
2467 Vunread_input_method_events
= XCDR (Vunread_input_method_events
);
2469 /* Undo what read_char_x_menu_prompt did when it unread
2470 additional keys returned by Fx_popup_menu. */
2472 && (SYMBOLP (XCAR (c
)) || INTEGERP (XCAR (c
)))
2476 goto reread_for_input_method
;
2479 this_command_key_count_reset
= 0;
2481 if (!NILP (Vexecuting_macro
))
2483 /* We set this to Qmacro; since that's not a frame, nobody will
2484 try to switch frames on us, and the selected window will
2487 Since this event came from a macro, it would be misleading to
2488 leave internal_last_event_frame set to wherever the last
2489 real event came from. Normally, a switch-frame event selects
2490 internal_last_event_frame after each command is read, but
2491 events read from a macro should never cause a new frame to be
2493 Vlast_event_frame
= internal_last_event_frame
= Qmacro
;
2495 /* Exit the macro if we are at the end.
2496 Also, some things replace the macro with t
2497 to force an early exit. */
2498 if (EQ (Vexecuting_macro
, Qt
)
2499 || executing_macro_index
>= XFASTINT (Flength (Vexecuting_macro
)))
2505 c
= Faref (Vexecuting_macro
, make_number (executing_macro_index
));
2506 if (STRINGP (Vexecuting_macro
)
2507 && (XINT (c
) & 0x80))
2508 XSETFASTINT (c
, CHAR_META
| (XINT (c
) & ~0x80));
2510 executing_macro_index
++;
2515 if (!NILP (unread_switch_frame
))
2517 c
= unread_switch_frame
;
2518 unread_switch_frame
= Qnil
;
2520 /* This event should make it into this_command_keys, and get echoed
2521 again, so we do not set `reread'. */
2525 /* if redisplay was requested */
2526 if (commandflag
>= 0)
2528 /* If there is pending input, process any events which are not
2529 user-visible, such as X selection_request events. */
2531 || detect_input_pending_run_timers (0))
2532 swallow_events (0); /* may clear input_pending */
2534 /* Redisplay if no pending input. */
2535 while (!input_pending
)
2537 if (help_echo_showing_p
&& !EQ (selected_window
, minibuf_window
))
2538 redisplay_preserve_echo_area (5);
2543 /* Normal case: no input arrived during redisplay. */
2546 /* Input arrived and pre-empted redisplay.
2547 Process any events which are not user-visible. */
2549 /* If that cleared input_pending, try again to redisplay. */
2553 /* Message turns off echoing unless more keystrokes turn it on again.
2555 The code in 20.x for the condition was
2557 1. echo_area_glyphs && *echo_area_glyphs
2558 2. && echo_area_glyphs != current_kboard->echobuf
2559 3. && ok_to_echo_at_next_pause != echo_area_glyphs
2561 (1) means there's a current message displayed
2563 (2) means it's not the message from echoing from the current
2566 (3) There's only one place in 20.x where ok_to_echo_at_next_pause
2567 is set to a non-null value. This is done in read_char and it is
2568 set to echo_area_glyphs after a call to echo_char. That means
2569 ok_to_echo_at_next_pause is either null or
2570 current_kboard->echobuf with the appropriate current_kboard at
2573 So, condition (3) means in clear text ok_to_echo_at_next_pause
2574 must be either null, or the current message isn't from echoing at
2575 all, or it's from echoing from a different kboard than the
2578 if (/* There currently is something in the echo area. */
2579 !NILP (echo_area_buffer
[0])
2580 && (/* And it's either not from echoing. */
2581 !EQ (echo_area_buffer
[0], echo_message_buffer
)
2582 /* Or it's an echo from a different kboard. */
2583 || echo_kboard
!= current_kboard
2584 /* Or we explicitly allow overwriting whatever there is. */
2585 || ok_to_echo_at_next_pause
== NULL
))
2590 /* Try reading a character via menu prompting in the minibuf.
2591 Try this before the sit-for, because the sit-for
2592 would do the wrong thing if we are supposed to do
2593 menu prompting. If EVENT_HAS_PARAMETERS then we are reading
2594 after a mouse event so don't try a minibuf menu. */
2596 if (nmaps
> 0 && INTERACTIVE
2597 && !NILP (prev_event
) && ! EVENT_HAS_PARAMETERS (prev_event
)
2598 /* Don't bring up a menu if we already have another event. */
2599 && NILP (Vunread_command_events
)
2600 && unread_command_char
< 0
2601 && !detect_input_pending_run_timers (0))
2603 c
= read_char_minibuf_menu_prompt (commandflag
, nmaps
, maps
);
2606 key_already_recorded
= 1;
2611 /* Make a longjmp point for quits to use, but don't alter getcjmp just yet.
2612 We will do that below, temporarily for short sections of code,
2613 when appropriate. local_getcjmp must be in effect
2614 around any call to sit_for or kbd_buffer_get_event;
2615 it *must not* be in effect when we call redisplay. */
2617 if (_setjmp (local_getcjmp
))
2619 XSETINT (c
, quit_char
);
2620 internal_last_event_frame
= selected_frame
;
2621 Vlast_event_frame
= internal_last_event_frame
;
2622 /* If we report the quit char as an event,
2623 don't do so more than once. */
2624 if (!NILP (Vinhibit_quit
))
2629 KBOARD
*kb
= FRAME_KBOARD (XFRAME (selected_frame
));
2630 if (kb
!= current_kboard
)
2632 Lisp_Object link
= kb
->kbd_queue
;
2633 /* We shouldn't get here if we were in single-kboard mode! */
2638 while (CONSP (XCDR (link
)))
2640 if (!NILP (XCDR (link
)))
2644 kb
->kbd_queue
= Fcons (c
, Qnil
);
2646 XSETCDR (link
, Fcons (c
, Qnil
));
2647 kb
->kbd_queue_has_data
= 1;
2648 current_kboard
= kb
;
2649 /* This is going to exit from read_char
2650 so we had better get rid of this frame's stuff. */
2652 longjmp (wrong_kboard_jmpbuf
, 1);
2659 timer_start_idle ();
2661 /* If in middle of key sequence and minibuffer not active,
2662 start echoing if enough time elapses. */
2664 if (minibuf_level
== 0
2665 && !current_kboard
->immediate_echo
2666 && this_command_key_count
> 0
2668 && (FLOATP (Vecho_keystrokes
) || INTEGERP (Vecho_keystrokes
))
2669 && NILP (Fzerop (Vecho_keystrokes
))
2670 && (/* No message. */
2671 NILP (echo_area_buffer
[0])
2672 /* Or empty message. */
2673 || (BUF_BEG (XBUFFER (echo_area_buffer
[0]))
2674 == BUF_Z (XBUFFER (echo_area_buffer
[0])))
2675 /* Or already echoing from same kboard. */
2676 || (echo_kboard
&& ok_to_echo_at_next_pause
== echo_kboard
)
2677 /* Or not echoing before and echoing allowed. */
2678 || (!echo_kboard
&& ok_to_echo_at_next_pause
)))
2682 /* After a mouse event, start echoing right away.
2683 This is because we are probably about to display a menu,
2684 and we don't want to delay before doing so. */
2685 if (EVENT_HAS_PARAMETERS (prev_event
))
2690 double duration
= extract_float (Vecho_keystrokes
);
2691 sec
= (int) duration
;
2692 usec
= (duration
- sec
) * 1000000;
2693 save_getcjmp (save_jump
);
2694 restore_getcjmp (local_getcjmp
);
2695 tem0
= sit_for (sec
, usec
, 1, 1, 0);
2696 restore_getcjmp (save_jump
);
2698 && ! CONSP (Vunread_command_events
))
2703 /* Maybe auto save due to number of keystrokes. */
2705 if (commandflag
!= 0
2706 && auto_save_interval
> 0
2707 && num_nonmacro_input_events
- last_auto_save
> max (auto_save_interval
, 20)
2708 && !detect_input_pending_run_timers (0))
2710 Fdo_auto_save (Qnil
, Qnil
);
2711 /* Hooks can actually change some buffers in auto save. */
2715 /* Try reading using an X menu.
2716 This is never confused with reading using the minibuf
2717 because the recursive call of read_char in read_char_minibuf_menu_prompt
2718 does not pass on any keymaps. */
2720 if (nmaps
> 0 && INTERACTIVE
2721 && !NILP (prev_event
)
2722 && EVENT_HAS_PARAMETERS (prev_event
)
2723 && !EQ (XCAR (prev_event
), Qmenu_bar
)
2724 && !EQ (XCAR (prev_event
), Qtool_bar
)
2725 /* Don't bring up a menu if we already have another event. */
2726 && NILP (Vunread_command_events
)
2727 && unread_command_char
< 0)
2729 c
= read_char_x_menu_prompt (nmaps
, maps
, prev_event
, used_mouse_menu
);
2731 /* Now that we have read an event, Emacs is not idle. */
2737 /* Maybe autosave and/or garbage collect due to idleness. */
2739 if (INTERACTIVE
&& NILP (c
))
2741 int delay_level
, buffer_size
;
2743 /* Slow down auto saves logarithmically in size of current buffer,
2744 and garbage collect while we're at it. */
2745 if (! MINI_WINDOW_P (XWINDOW (selected_window
)))
2746 last_non_minibuf_size
= Z
- BEG
;
2747 buffer_size
= (last_non_minibuf_size
>> 8) + 1;
2749 while (buffer_size
> 64)
2750 delay_level
++, buffer_size
-= buffer_size
>> 2;
2751 if (delay_level
< 4) delay_level
= 4;
2752 /* delay_level is 4 for files under around 50k, 7 at 100k,
2753 9 at 200k, 11 at 300k, and 12 at 500k. It is 15 at 1 meg. */
2755 /* Auto save if enough time goes by without input. */
2756 if (commandflag
!= 0
2757 && num_nonmacro_input_events
> last_auto_save
2758 && INTEGERP (Vauto_save_timeout
)
2759 && XINT (Vauto_save_timeout
) > 0)
2763 save_getcjmp (save_jump
);
2764 restore_getcjmp (local_getcjmp
);
2765 tem0
= sit_for (delay_level
* XFASTINT (Vauto_save_timeout
) / 4,
2767 restore_getcjmp (save_jump
);
2770 && ! CONSP (Vunread_command_events
))
2772 Fdo_auto_save (Qnil
, Qnil
);
2774 /* If we have auto-saved and there is still no input
2775 available, garbage collect if there has been enough
2776 consing going on to make it worthwhile. */
2777 if (!detect_input_pending_run_timers (0)
2778 && consing_since_gc
> gc_cons_threshold
/ 2)
2779 Fgarbage_collect ();
2786 /* If this has become non-nil here, it has been set by a timer
2787 or sentinel or filter. */
2788 if (CONSP (Vunread_command_events
))
2790 c
= XCAR (Vunread_command_events
);
2791 Vunread_command_events
= XCDR (Vunread_command_events
);
2794 /* Read something from current KBOARD's side queue, if possible. */
2798 if (current_kboard
->kbd_queue_has_data
)
2800 if (!CONSP (current_kboard
->kbd_queue
))
2802 c
= XCAR (current_kboard
->kbd_queue
);
2803 current_kboard
->kbd_queue
2804 = XCDR (current_kboard
->kbd_queue
);
2805 if (NILP (current_kboard
->kbd_queue
))
2806 current_kboard
->kbd_queue_has_data
= 0;
2807 input_pending
= readable_events (0);
2808 if (EVENT_HAS_PARAMETERS (c
)
2809 && EQ (EVENT_HEAD_KIND (EVENT_HEAD (c
)), Qswitch_frame
))
2810 internal_last_event_frame
= XCAR (XCDR (c
));
2811 Vlast_event_frame
= internal_last_event_frame
;
2816 /* If current_kboard's side queue is empty check the other kboards.
2817 If one of them has data that we have not yet seen here,
2818 switch to it and process the data waiting for it.
2820 Note: if the events queued up for another kboard
2821 have already been seen here, and therefore are not a complete command,
2822 the kbd_queue_has_data field is 0, so we skip that kboard here.
2823 That's to avoid an infinite loop switching between kboards here. */
2824 if (NILP (c
) && !single_kboard
)
2827 for (kb
= all_kboards
; kb
; kb
= kb
->next_kboard
)
2828 if (kb
->kbd_queue_has_data
)
2830 current_kboard
= kb
;
2831 /* This is going to exit from read_char
2832 so we had better get rid of this frame's stuff. */
2834 longjmp (wrong_kboard_jmpbuf
, 1);
2843 /* Finally, we read from the main queue,
2844 and if that gives us something we can't use yet, we put it on the
2845 appropriate side queue and try again. */
2851 /* Actually read a character, waiting if necessary. */
2852 save_getcjmp (save_jump
);
2853 restore_getcjmp (local_getcjmp
);
2854 timer_start_idle ();
2855 c
= kbd_buffer_get_event (&kb
, used_mouse_menu
);
2856 restore_getcjmp (save_jump
);
2859 if (! NILP (c
) && (kb
!= current_kboard
))
2861 Lisp_Object link
= kb
->kbd_queue
;
2864 while (CONSP (XCDR (link
)))
2866 if (!NILP (XCDR (link
)))
2870 kb
->kbd_queue
= Fcons (c
, Qnil
);
2872 XSETCDR (link
, Fcons (c
, Qnil
));
2873 kb
->kbd_queue_has_data
= 1;
2877 current_kboard
= kb
;
2878 /* This is going to exit from read_char
2879 so we had better get rid of this frame's stuff. */
2881 longjmp (wrong_kboard_jmpbuf
, 1);
2886 /* Terminate Emacs in batch mode if at eof. */
2887 if (noninteractive
&& INTEGERP (c
) && XINT (c
) < 0)
2888 Fkill_emacs (make_number (1));
2892 /* Add in any extra modifiers, where appropriate. */
2893 if ((extra_keyboard_modifiers
& CHAR_CTL
)
2894 || ((extra_keyboard_modifiers
& 0177) < ' '
2895 && (extra_keyboard_modifiers
& 0177) != 0))
2896 XSETINT (c
, make_ctrl_char (XINT (c
)));
2898 /* Transfer any other modifier bits directly from
2899 extra_keyboard_modifiers to c. Ignore the actual character code
2900 in the low 16 bits of extra_keyboard_modifiers. */
2901 XSETINT (c
, XINT (c
) | (extra_keyboard_modifiers
& ~0xff7f & ~CHAR_CTL
));
2911 if (commandflag
>= 0
2912 && !input_pending
&& !detect_input_pending_run_timers (0))
2920 /* Buffer switch events are only for internal wakeups
2921 so don't show them to the user.
2922 Also, don't record a key if we already did. */
2923 if (BUFFERP (c
) || key_already_recorded
)
2926 /* Process special events within read_char
2927 and loop around to read another event. */
2930 tem
= access_keymap (get_keymap (Vspecial_event_map
, 0, 1), c
, 0, 0, 1);
2935 int was_locked
= single_kboard
;
2937 last_input_char
= c
;
2938 Fcommand_execute (tem
, Qnil
, Fvector (1, &last_input_char
), Qt
);
2940 if (CONSP (c
) && EQ (XCAR (c
), Qselect_window
))
2941 /* We stopped being idle for this event; undo that. This
2942 prevents automatic window selection (under
2943 mouse_autoselect_window from acting as a real input event, for
2944 example banishing the mouse under mouse-avoidance-mode. */
2945 timer_resume_idle ();
2947 /* Resume allowing input from any kboard, if that was true before. */
2949 any_kboard_state ();
2954 /* Handle things that only apply to characters. */
2957 /* If kbd_buffer_get_event gave us an EOF, return that. */
2961 if ((STRINGP (Vkeyboard_translate_table
)
2962 && SCHARS (Vkeyboard_translate_table
) > (unsigned) XFASTINT (c
))
2963 || (VECTORP (Vkeyboard_translate_table
)
2964 && XVECTOR (Vkeyboard_translate_table
)->size
> (unsigned) XFASTINT (c
))
2965 || (CHAR_TABLE_P (Vkeyboard_translate_table
)
2966 && CHAR_VALID_P (XINT (c
), 0)))
2969 d
= Faref (Vkeyboard_translate_table
, c
);
2970 /* nil in keyboard-translate-table means no translation. */
2976 /* If this event is a mouse click in the menu bar,
2977 return just menu-bar for now. Modify the mouse click event
2978 so we won't do this twice, then queue it up. */
2979 if (EVENT_HAS_PARAMETERS (c
)
2981 && CONSP (EVENT_START (c
))
2982 && CONSP (XCDR (EVENT_START (c
))))
2986 posn
= POSN_POSN (EVENT_START (c
));
2987 /* Handle menu-bar events:
2988 insert the dummy prefix event `menu-bar'. */
2989 if (EQ (posn
, Qmenu_bar
) || EQ (posn
, Qtool_bar
))
2991 /* Change menu-bar to (menu-bar) as the event "position". */
2992 POSN_SET_POSN (EVENT_START (c
), Fcons (posn
, Qnil
));
2995 Vunread_command_events
= Fcons (c
, Vunread_command_events
);
3000 /* Store these characters into recent_keys, the dribble file if any,
3001 and the keyboard macro being defined, if any. */
3003 if (! NILP (also_record
))
3004 record_char (also_record
);
3006 /* Wipe the echo area.
3007 But first, if we are about to use an input method,
3008 save the echo area contents for it to refer to. */
3010 && ! NILP (Vinput_method_function
)
3011 && (unsigned) XINT (c
) >= ' '
3012 && (unsigned) XINT (c
) != 127
3013 && (unsigned) XINT (c
) < 256)
3015 previous_echo_area_message
= Fcurrent_message ();
3016 Vinput_method_previous_message
= previous_echo_area_message
;
3019 /* Now wipe the echo area, except for help events which do their
3020 own stuff with the echo area. */
3022 || (!(EQ (Qhelp_echo
, XCAR (c
)))
3023 && !(EQ (Qswitch_frame
, XCAR (c
)))))
3025 if (!NILP (echo_area_buffer
[0]))
3026 safe_run_hooks (Qecho_area_clear_hook
);
3027 clear_message (1, 0);
3030 reread_for_input_method
:
3032 /* Pass this to the input method, if appropriate. */
3034 && ! NILP (Vinput_method_function
)
3035 /* Don't run the input method within a key sequence,
3036 after the first event of the key sequence. */
3037 && NILP (prev_event
)
3038 && (unsigned) XINT (c
) >= ' '
3039 && (unsigned) XINT (c
) != 127
3040 && (unsigned) XINT (c
) < 256)
3043 int key_count
, key_count_reset
;
3044 struct gcpro gcpro1
;
3045 int count
= SPECPDL_INDEX ();
3047 /* Save the echo status. */
3048 int saved_immediate_echo
= current_kboard
->immediate_echo
;
3049 struct kboard
*saved_ok_to_echo
= ok_to_echo_at_next_pause
;
3050 Lisp_Object saved_echo_string
= current_kboard
->echo_string
;
3051 int saved_echo_after_prompt
= current_kboard
->echo_after_prompt
;
3054 if (before_command_restore_flag
)
3056 this_command_key_count
= before_command_key_count_1
;
3057 if (this_command_key_count
< this_single_command_key_start
)
3058 this_single_command_key_start
= this_command_key_count
;
3059 echo_truncate (before_command_echo_length_1
);
3060 before_command_restore_flag
= 0;
3064 /* Save the this_command_keys status. */
3065 key_count
= this_command_key_count
;
3066 key_count_reset
= this_command_key_count_reset
;
3069 keys
= Fcopy_sequence (this_command_keys
);
3074 /* Clear out this_command_keys. */
3075 this_command_key_count
= 0;
3076 this_command_key_count_reset
= 0;
3078 /* Now wipe the echo area. */
3079 if (!NILP (echo_area_buffer
[0]))
3080 safe_run_hooks (Qecho_area_clear_hook
);
3081 clear_message (1, 0);
3084 /* If we are not reading a key sequence,
3085 never use the echo area. */
3088 specbind (Qinput_method_use_echo_area
, Qt
);
3091 /* Call the input method. */
3092 tem
= call1 (Vinput_method_function
, c
);
3094 tem
= unbind_to (count
, tem
);
3096 /* Restore the saved echoing state
3097 and this_command_keys state. */
3098 this_command_key_count
= key_count
;
3099 this_command_key_count_reset
= key_count_reset
;
3101 this_command_keys
= keys
;
3104 ok_to_echo_at_next_pause
= saved_ok_to_echo
;
3105 current_kboard
->echo_string
= saved_echo_string
;
3106 current_kboard
->echo_after_prompt
= saved_echo_after_prompt
;
3107 if (saved_immediate_echo
)
3112 /* The input method can return no events. */
3115 /* Bring back the previous message, if any. */
3116 if (! NILP (previous_echo_area_message
))
3117 message_with_string ("%s", previous_echo_area_message
, 0);
3120 /* It returned one event or more. */
3122 Vunread_post_input_method_events
3123 = nconc2 (XCDR (tem
), Vunread_post_input_method_events
);
3128 /* Display help if not echoing. */
3129 if (CONSP (c
) && EQ (XCAR (c
), Qhelp_echo
))
3131 /* (help-echo FRAME HELP WINDOW OBJECT POS). */
3132 Lisp_Object help
, object
, position
, window
, tem
;
3134 tem
= Fcdr (XCDR (c
));
3137 window
= Fcar (tem
);
3139 object
= Fcar (tem
);
3141 position
= Fcar (tem
);
3143 show_help_echo (help
, window
, object
, position
, 0);
3145 /* We stopped being idle for this event; undo that. */
3146 timer_resume_idle ();
3150 if (! reread
|| this_command_key_count
== 0
3151 || this_command_key_count_reset
)
3154 /* Don't echo mouse motion events. */
3155 if ((FLOATP (Vecho_keystrokes
) || INTEGERP (Vecho_keystrokes
))
3156 && NILP (Fzerop (Vecho_keystrokes
))
3157 && ! (EVENT_HAS_PARAMETERS (c
)
3158 && EQ (EVENT_HEAD_KIND (EVENT_HEAD (c
)), Qmouse_movement
)))
3161 if (! NILP (also_record
))
3162 echo_char (also_record
);
3163 /* Once we reread a character, echoing can happen
3164 the next time we pause to read a new one. */
3165 ok_to_echo_at_next_pause
= current_kboard
;
3168 /* Record this character as part of the current key. */
3169 add_command_key (c
);
3170 if (! NILP (also_record
))
3171 add_command_key (also_record
);
3174 last_input_char
= c
;
3177 /* Process the help character specially if enabled */
3178 if (!NILP (Vhelp_form
) && help_char_p (c
))
3181 count
= SPECPDL_INDEX ();
3183 record_unwind_protect (Fset_window_configuration
,
3184 Fcurrent_window_configuration (Qnil
));
3186 tem0
= Feval (Vhelp_form
);
3188 internal_with_output_to_temp_buffer ("*Help*", print_help
, tem0
);
3192 c
= read_char (0, 0, 0, Qnil
, 0);
3193 while (BUFFERP (c
));
3194 /* Remove the help from the frame */
3195 unbind_to (count
, Qnil
);
3198 if (EQ (c
, make_number (040)))
3202 c
= read_char (0, 0, 0, Qnil
, 0);
3203 while (BUFFERP (c
));
3212 /* Record a key that came from a mouse menu.
3213 Record it for echoing, for this-command-keys, and so on. */
3219 /* Wipe the echo area. */
3220 clear_message (1, 0);
3225 before_command_key_count
= this_command_key_count
;
3226 before_command_echo_length
= echo_length ();
3229 /* Don't echo mouse motion events. */
3230 if ((FLOATP (Vecho_keystrokes
) || INTEGERP (Vecho_keystrokes
))
3231 && NILP (Fzerop (Vecho_keystrokes
)))
3235 /* Once we reread a character, echoing can happen
3236 the next time we pause to read a new one. */
3237 ok_to_echo_at_next_pause
= 0;
3240 /* Record this character as part of the current key. */
3241 add_command_key (c
);
3243 /* Re-reading in the middle of a command */
3244 last_input_char
= c
;
3248 /* Return 1 if should recognize C as "the help character". */
3256 if (EQ (c
, Vhelp_char
))
3258 for (tail
= Vhelp_event_list
; CONSP (tail
); tail
= XCDR (tail
))
3259 if (EQ (c
, XCAR (tail
)))
3264 /* Record the input event C in various ways. */
3272 if (CONSP (c
) && (EQ (XCAR (c
), Qhelp_echo
) || EQ (XCAR (c
), Qmouse_movement
)))
3274 /* To avoid filling recent_keys with help-echo and mouse-movement
3275 events, we filter out repeated help-echo events, only store the
3276 first and last in a series of mouse-movement events, and don't
3277 store repeated help-echo events which are only separated by
3278 mouse-movement events. */
3280 Lisp_Object ev1
, ev2
, ev3
;
3283 if ((ix1
= recent_keys_index
- 1) < 0)
3284 ix1
= NUM_RECENT_KEYS
- 1;
3285 ev1
= AREF (recent_keys
, ix1
);
3287 if ((ix2
= ix1
- 1) < 0)
3288 ix2
= NUM_RECENT_KEYS
- 1;
3289 ev2
= AREF (recent_keys
, ix2
);
3291 if ((ix3
= ix2
- 1) < 0)
3292 ix3
= NUM_RECENT_KEYS
- 1;
3293 ev3
= AREF (recent_keys
, ix3
);
3295 if (EQ (XCAR (c
), Qhelp_echo
))
3297 /* Don't record `help-echo' in recent_keys unless it shows some help
3298 message, and a different help than the previously recorded
3300 Lisp_Object help
, last_help
;
3302 help
= Fcar_safe (Fcdr_safe (XCDR (c
)));
3303 if (!STRINGP (help
))
3305 else if (CONSP (ev1
) && EQ (XCAR (ev1
), Qhelp_echo
)
3306 && (last_help
= Fcar_safe (Fcdr_safe (XCDR (ev1
))), EQ (last_help
, help
)))
3308 else if (CONSP (ev1
) && EQ (XCAR (ev1
), Qmouse_movement
)
3309 && CONSP (ev2
) && EQ (XCAR (ev2
), Qhelp_echo
)
3310 && (last_help
= Fcar_safe (Fcdr_safe (XCDR (ev2
))), EQ (last_help
, help
)))
3312 else if (CONSP (ev1
) && EQ (XCAR (ev1
), Qmouse_movement
)
3313 && CONSP (ev2
) && EQ (XCAR (ev2
), Qmouse_movement
)
3314 && CONSP (ev3
) && EQ (XCAR (ev3
), Qhelp_echo
)
3315 && (last_help
= Fcar_safe (Fcdr_safe (XCDR (ev3
))), EQ (last_help
, help
)))
3318 else if (EQ (XCAR (c
), Qmouse_movement
))
3320 /* Only record one pair of `mouse-movement' on a window in recent_keys.
3321 So additional mouse movement events replace the last element. */
3322 Lisp_Object last_window
, window
;
3324 window
= Fcar_safe (Fcar_safe (XCDR (c
)));
3325 if (CONSP (ev1
) && EQ (XCAR (ev1
), Qmouse_movement
)
3326 && (last_window
= Fcar_safe (Fcar_safe (XCDR (ev1
))), EQ (last_window
, window
))
3327 && CONSP (ev2
) && EQ (XCAR (ev2
), Qmouse_movement
)
3328 && (last_window
= Fcar_safe (Fcar_safe (XCDR (ev2
))), EQ (last_window
, window
)))
3330 ASET (recent_keys
, ix1
, c
);
3336 store_kbd_macro_char (c
);
3341 ASET (recent_keys
, recent_keys_index
, c
);
3342 if (++recent_keys_index
>= NUM_RECENT_KEYS
)
3343 recent_keys_index
= 0;
3345 else if (recorded
< 0)
3347 /* We need to remove one or two events from recent_keys.
3348 To do this, we simply put nil at those events and move the
3349 recent_keys_index backwards over those events. Usually,
3350 users will never see those nil events, as they will be
3351 overwritten by the command keys entered to see recent_keys
3354 while (recorded
++ < 0 && total_keys
> 0)
3356 if (total_keys
< NUM_RECENT_KEYS
)
3358 if (--recent_keys_index
< 0)
3359 recent_keys_index
= NUM_RECENT_KEYS
- 1;
3360 ASET (recent_keys
, recent_keys_index
, Qnil
);
3364 num_nonmacro_input_events
++;
3366 /* Write c to the dribble file. If c is a lispy event, write
3367 the event's symbol to the dribble file, in <brackets>. Bleaugh.
3368 If you, dear reader, have a better idea, you've got the source. :-) */
3373 if (XUINT (c
) < 0x100)
3374 putc (XINT (c
), dribble
);
3376 fprintf (dribble
, " 0x%x", (int) XUINT (c
));
3380 Lisp_Object dribblee
;
3382 /* If it's a structured event, take the event header. */
3383 dribblee
= EVENT_HEAD (c
);
3385 if (SYMBOLP (dribblee
))
3387 putc ('<', dribble
);
3388 fwrite (SDATA (SYMBOL_NAME (dribblee
)), sizeof (char),
3389 SBYTES (SYMBOL_NAME (dribblee
)),
3391 putc ('>', dribble
);
3403 struct buffer
*old
= current_buffer
;
3404 Fprinc (object
, Qnil
);
3405 set_buffer_internal (XBUFFER (Vstandard_output
));
3406 call0 (intern ("help-mode"));
3407 set_buffer_internal (old
);
3411 /* Copy out or in the info on where C-g should throw to.
3412 This is used when running Lisp code from within get_char,
3413 in case get_char is called recursively.
3414 See read_process_output. */
3420 bcopy (getcjmp
, temp
, sizeof getcjmp
);
3424 restore_getcjmp (temp
)
3427 bcopy (temp
, getcjmp
, sizeof getcjmp
);
3432 /* Restore mouse tracking enablement. See Ftrack_mouse for the only use
3433 of this function. */
3436 tracking_off (old_value
)
3437 Lisp_Object old_value
;
3439 do_mouse_tracking
= old_value
;
3440 if (NILP (old_value
))
3442 /* Redisplay may have been preempted because there was input
3443 available, and it assumes it will be called again after the
3444 input has been processed. If the only input available was
3445 the sort that we have just disabled, then we need to call
3447 if (!readable_events (READABLE_EVENTS_DO_TIMERS_NOW
))
3449 redisplay_preserve_echo_area (6);
3450 get_input_pending (&input_pending
,
3451 READABLE_EVENTS_DO_TIMERS_NOW
);
3457 DEFUN ("track-mouse", Ftrack_mouse
, Strack_mouse
, 0, UNEVALLED
, 0,
3458 doc
: /* Evaluate BODY with mouse movement events enabled.
3459 Within a `track-mouse' form, mouse motion generates input events that
3460 you can read with `read-event'.
3461 Normally, mouse motion is ignored.
3462 usage: (track-mouse BODY ...) */)
3466 int count
= SPECPDL_INDEX ();
3469 record_unwind_protect (tracking_off
, do_mouse_tracking
);
3471 do_mouse_tracking
= Qt
;
3473 val
= Fprogn (args
);
3474 return unbind_to (count
, val
);
3477 /* If mouse has moved on some frame, return one of those frames.
3478 Return 0 otherwise. */
3483 Lisp_Object tail
, frame
;
3485 FOR_EACH_FRAME (tail
, frame
)
3487 if (XFRAME (frame
)->mouse_moved
)
3488 return XFRAME (frame
);
3494 #endif /* HAVE_MOUSE */
3496 /* Low level keyboard/mouse input.
3497 kbd_buffer_store_event places events in kbd_buffer, and
3498 kbd_buffer_get_event retrieves them. */
3500 /* Return true iff there are any events in the queue that read-char
3501 would return. If this returns false, a read-char would block. */
3503 readable_events (flags
)
3506 if (flags
& READABLE_EVENTS_DO_TIMERS_NOW
)
3509 /* If the buffer contains only FOCUS_IN_EVENT events, and
3510 READABLE_EVENTS_FILTER_EVENTS is set, report it as empty. */
3511 if (kbd_fetch_ptr
!= kbd_store_ptr
)
3513 int have_live_event
= 1;
3515 if (flags
& READABLE_EVENTS_FILTER_EVENTS
)
3517 struct input_event
*event
;
3519 event
= ((kbd_fetch_ptr
< kbd_buffer
+ KBD_BUFFER_SIZE
)
3523 while (have_live_event
&& event
->kind
== FOCUS_IN_EVENT
)
3526 if (event
== kbd_buffer
+ KBD_BUFFER_SIZE
)
3528 if (event
== kbd_store_ptr
)
3529 have_live_event
= 0;
3532 if (have_live_event
) return 1;
3536 if (!(flags
& READABLE_EVENTS_IGNORE_SQUEEZABLES
)
3537 && !NILP (do_mouse_tracking
) && some_mouse_moved ())
3542 if (current_kboard
->kbd_queue_has_data
)
3548 for (kb
= all_kboards
; kb
; kb
= kb
->next_kboard
)
3549 if (kb
->kbd_queue_has_data
)
3555 /* Set this for debugging, to have a way to get out */
3560 event_to_kboard (event
)
3561 struct input_event
*event
;
3564 frame
= event
->frame_or_window
;
3566 frame
= XCAR (frame
);
3567 else if (WINDOWP (frame
))
3568 frame
= WINDOW_FRAME (XWINDOW (frame
));
3570 /* There are still some events that don't set this field.
3571 For now, just ignore the problem.
3572 Also ignore dead frames here. */
3573 if (!FRAMEP (frame
) || !FRAME_LIVE_P (XFRAME (frame
)))
3576 return FRAME_KBOARD (XFRAME (frame
));
3581 Lisp_Object Vthrow_on_input
;
3583 /* Store an event obtained at interrupt level into kbd_buffer, fifo */
3586 kbd_buffer_store_event (event
)
3587 register struct input_event
*event
;
3589 kbd_buffer_store_event_hold (event
, 0);
3592 /* Store EVENT obtained at interrupt level into kbd_buffer, fifo.
3594 If HOLD_QUIT is 0, just stuff EVENT into the fifo.
3595 Else, if HOLD_QUIT.kind != NO_EVENT, discard EVENT.
3596 Else, if EVENT is a quit event, store the quit event
3597 in HOLD_QUIT, and return (thus ignoring further events).
3599 This is used in read_avail_input to postpone the processing
3600 of the quit event until all subsequent input events have been
3601 parsed (and discarded).
3605 kbd_buffer_store_event_hold (event
, hold_quit
)
3606 register struct input_event
*event
;
3607 struct input_event
*hold_quit
;
3609 if (event
->kind
== NO_EVENT
)
3612 if (hold_quit
&& hold_quit
->kind
!= NO_EVENT
)
3615 if (event
->kind
== ASCII_KEYSTROKE_EVENT
)
3617 register int c
= event
->code
& 0377;
3619 if (event
->modifiers
& ctrl_modifier
)
3620 c
= make_ctrl_char (c
);
3622 c
|= (event
->modifiers
3623 & (meta_modifier
| alt_modifier
3624 | hyper_modifier
| super_modifier
));
3630 struct input_event
*sp
;
3633 && (kb
= FRAME_KBOARD (XFRAME (event
->frame_or_window
)),
3634 kb
!= current_kboard
))
3637 = Fcons (make_lispy_switch_frame (event
->frame_or_window
),
3638 Fcons (make_number (c
), Qnil
));
3639 kb
->kbd_queue_has_data
= 1;
3640 for (sp
= kbd_fetch_ptr
; sp
!= kbd_store_ptr
; sp
++)
3642 if (sp
== kbd_buffer
+ KBD_BUFFER_SIZE
)
3645 if (event_to_kboard (sp
) == kb
)
3647 sp
->kind
= NO_EVENT
;
3648 sp
->frame_or_window
= Qnil
;
3658 bcopy (event
, (char *) hold_quit
, sizeof (*event
));
3662 /* If this results in a quit_char being returned to Emacs as
3663 input, set Vlast_event_frame properly. If this doesn't
3664 get returned to Emacs as an event, the next event read
3665 will set Vlast_event_frame again, so this is safe to do. */
3669 focus
= FRAME_FOCUS_FRAME (XFRAME (event
->frame_or_window
));
3671 focus
= event
->frame_or_window
;
3672 internal_last_event_frame
= focus
;
3673 Vlast_event_frame
= focus
;
3676 last_event_timestamp
= event
->timestamp
;
3677 interrupt_signal (0 /* dummy */);
3681 if (c
&& c
== stop_character
)
3687 /* Don't insert two BUFFER_SWITCH_EVENT's in a row.
3688 Just ignore the second one. */
3689 else if (event
->kind
== BUFFER_SWITCH_EVENT
3690 && kbd_fetch_ptr
!= kbd_store_ptr
3691 && ((kbd_store_ptr
== kbd_buffer
3692 ? kbd_buffer
+ KBD_BUFFER_SIZE
- 1
3693 : kbd_store_ptr
- 1)->kind
) == BUFFER_SWITCH_EVENT
)
3696 if (kbd_store_ptr
- kbd_buffer
== KBD_BUFFER_SIZE
)
3697 kbd_store_ptr
= kbd_buffer
;
3699 /* Don't let the very last slot in the buffer become full,
3700 since that would make the two pointers equal,
3701 and that is indistinguishable from an empty buffer.
3702 Discard the event if it would fill the last slot. */
3703 if (kbd_fetch_ptr
- 1 != kbd_store_ptr
)
3705 *kbd_store_ptr
= *event
;
3709 /* If we're inside while-no-input, and this event qualifies
3710 as input, set quit-flag to cause an interrupt. */
3711 if (!NILP (Vthrow_on_input
)
3712 && event
->kind
!= FOCUS_IN_EVENT
3713 && event
->kind
!= HELP_EVENT
3714 && event
->kind
!= DEICONIFY_EVENT
)
3716 Vquit_flag
= Vthrow_on_input
;
3717 /* If we're inside a function that wants immediate quits,
3719 if (immediate_quit
&& NILP (Vinhibit_quit
))
3729 /* Put an input event back in the head of the event queue. */
3732 kbd_buffer_unget_event (event
)
3733 register struct input_event
*event
;
3735 if (kbd_fetch_ptr
== kbd_buffer
)
3736 kbd_fetch_ptr
= kbd_buffer
+ KBD_BUFFER_SIZE
;
3738 /* Don't let the very last slot in the buffer become full, */
3739 if (kbd_fetch_ptr
- 1 != kbd_store_ptr
)
3742 *kbd_fetch_ptr
= *event
;
3747 /* Generate HELP_EVENT input_events in BUFP which has room for
3748 SIZE events. If there's not enough room in BUFP, ignore this
3751 HELP is the help form.
3753 FRAME is the frame on which the help is generated. OBJECT is the
3754 Lisp object where the help was found (a buffer, a string, an
3755 overlay, or nil if neither from a string nor from a buffer. POS is
3756 the position within OBJECT where the help was found.
3758 Value is the number of input_events generated. */
3761 gen_help_event (help
, frame
, window
, object
, pos
)
3762 Lisp_Object help
, frame
, object
, window
;
3765 struct input_event event
;
3769 event
.kind
= HELP_EVENT
;
3770 event
.frame_or_window
= frame
;
3772 event
.x
= WINDOWP (window
) ? window
: frame
;
3775 kbd_buffer_store_event (&event
);
3779 /* Store HELP_EVENTs for HELP on FRAME in the input queue. */
3782 kbd_buffer_store_help_event (frame
, help
)
3783 Lisp_Object frame
, help
;
3785 struct input_event event
;
3787 event
.kind
= HELP_EVENT
;
3788 event
.frame_or_window
= frame
;
3793 kbd_buffer_store_event (&event
);
3797 /* Discard any mouse events in the event buffer by setting them to
3800 discard_mouse_events ()
3802 struct input_event
*sp
;
3803 for (sp
= kbd_fetch_ptr
; sp
!= kbd_store_ptr
; sp
++)
3805 if (sp
== kbd_buffer
+ KBD_BUFFER_SIZE
)
3808 if (sp
->kind
== MOUSE_CLICK_EVENT
3809 || sp
->kind
== WHEEL_EVENT
3811 || sp
->kind
== W32_SCROLL_BAR_CLICK_EVENT
3813 || sp
->kind
== SCROLL_BAR_CLICK_EVENT
)
3815 sp
->kind
= NO_EVENT
;
3821 /* Return non-zero if there are any real events waiting in the event
3822 buffer, not counting `NO_EVENT's.
3824 If DISCARD is non-zero, discard NO_EVENT events at the front of
3825 the input queue, possibly leaving the input queue empty if there
3826 are no real input events. */
3829 kbd_buffer_events_waiting (discard
)
3832 struct input_event
*sp
;
3834 for (sp
= kbd_fetch_ptr
;
3835 sp
!= kbd_store_ptr
&& sp
->kind
== NO_EVENT
;
3838 if (sp
== kbd_buffer
+ KBD_BUFFER_SIZE
)
3845 return sp
!= kbd_store_ptr
&& sp
->kind
!= NO_EVENT
;
3849 /* Clear input event EVENT. */
3853 struct input_event
*event
;
3855 event
->kind
= NO_EVENT
;
3859 /* Read one event from the event buffer, waiting if necessary.
3860 The value is a Lisp object representing the event.
3861 The value is nil for an event that should be ignored,
3862 or that was handled here.
3863 We always read and discard one event. */
3866 kbd_buffer_get_event (kbp
, used_mouse_menu
)
3868 int *used_mouse_menu
;
3877 *kbp
= current_kboard
;
3881 /* Wait until there is input available. */
3884 if (kbd_fetch_ptr
!= kbd_store_ptr
)
3887 if (!NILP (do_mouse_tracking
) && some_mouse_moved ())
3891 /* If the quit flag is set, then read_char will return
3892 quit_char, so that counts as "available input." */
3893 if (!NILP (Vquit_flag
))
3894 quit_throw_to_read_char ();
3896 /* One way or another, wait until input is available; then, if
3897 interrupt handlers have not read it, read it now. */
3900 wait_for_kbd_input ();
3902 /* Note SIGIO has been undef'd if FIONREAD is missing. */
3906 if (kbd_fetch_ptr
!= kbd_store_ptr
)
3909 if (!NILP (do_mouse_tracking
) && some_mouse_moved ())
3913 wait_reading_process_output (0, 0, -1, 1, Qnil
, NULL
, 0);
3915 if (!interrupt_input
&& kbd_fetch_ptr
== kbd_store_ptr
)
3916 /* Pass 1 for EXPECT since we just waited to have input. */
3917 read_avail_input (1);
3919 #endif /* not VMS */
3922 if (CONSP (Vunread_command_events
))
3925 first
= XCAR (Vunread_command_events
);
3926 Vunread_command_events
= XCDR (Vunread_command_events
);
3927 *kbp
= current_kboard
;
3931 /* At this point, we know that there is a readable event available
3932 somewhere. If the event queue is empty, then there must be a
3933 mouse movement enabled and available. */
3934 if (kbd_fetch_ptr
!= kbd_store_ptr
)
3936 struct input_event
*event
;
3938 event
= ((kbd_fetch_ptr
< kbd_buffer
+ KBD_BUFFER_SIZE
)
3942 last_event_timestamp
= event
->timestamp
;
3945 *kbp
= event_to_kboard (event
);
3947 *kbp
= current_kboard
; /* Better than returning null ptr? */
3949 *kbp
= &the_only_kboard
;
3954 /* These two kinds of events get special handling
3955 and don't actually appear to the command loop.
3956 We return nil for them. */
3957 if (event
->kind
== SELECTION_REQUEST_EVENT
3958 || event
->kind
== SELECTION_CLEAR_EVENT
)
3961 struct input_event copy
;
3963 /* Remove it from the buffer before processing it,
3964 since otherwise swallow_events will see it
3965 and process it again. */
3967 kbd_fetch_ptr
= event
+ 1;
3968 input_pending
= readable_events (0);
3969 x_handle_selection_event (©
);
3971 /* We're getting selection request events, but we don't have
3977 #if defined (HAVE_X11) || defined (HAVE_NTGUI) || defined (MAC_OS)
3978 else if (event
->kind
== DELETE_WINDOW_EVENT
)
3980 /* Make an event (delete-frame (FRAME)). */
3981 obj
= Fcons (event
->frame_or_window
, Qnil
);
3982 obj
= Fcons (Qdelete_frame
, Fcons (obj
, Qnil
));
3983 kbd_fetch_ptr
= event
+ 1;
3986 #if defined (HAVE_X11) || defined (HAVE_NTGUI)
3987 else if (event
->kind
== ICONIFY_EVENT
)
3989 /* Make an event (iconify-frame (FRAME)). */
3990 obj
= Fcons (event
->frame_or_window
, Qnil
);
3991 obj
= Fcons (Qiconify_frame
, Fcons (obj
, Qnil
));
3992 kbd_fetch_ptr
= event
+ 1;
3994 else if (event
->kind
== DEICONIFY_EVENT
)
3996 /* Make an event (make-frame-visible (FRAME)). */
3997 obj
= Fcons (event
->frame_or_window
, Qnil
);
3998 obj
= Fcons (Qmake_frame_visible
, Fcons (obj
, Qnil
));
3999 kbd_fetch_ptr
= event
+ 1;
4002 else if (event
->kind
== BUFFER_SWITCH_EVENT
)
4004 /* The value doesn't matter here; only the type is tested. */
4005 XSETBUFFER (obj
, current_buffer
);
4006 kbd_fetch_ptr
= event
+ 1;
4008 #if defined (USE_X_TOOLKIT) || defined (HAVE_NTGUI) || defined (MAC_OS) \
4009 || defined (USE_GTK)
4010 else if (event
->kind
== MENU_BAR_ACTIVATE_EVENT
)
4012 kbd_fetch_ptr
= event
+ 1;
4013 input_pending
= readable_events (0);
4014 if (FRAME_LIVE_P (XFRAME (event
->frame_or_window
)))
4015 x_activate_menubar (XFRAME (event
->frame_or_window
));
4019 else if (event
->kind
== LANGUAGE_CHANGE_EVENT
)
4021 /* Make an event (language-change (FRAME CHARSET LCID)). */
4022 obj
= Fcons (event
->frame_or_window
, Qnil
);
4023 obj
= Fcons (Qlanguage_change
, Fcons (obj
, Qnil
));
4024 kbd_fetch_ptr
= event
+ 1;
4027 else if (event
->kind
== SAVE_SESSION_EVENT
)
4029 obj
= Fcons (Qsave_session
, Qnil
);
4030 kbd_fetch_ptr
= event
+ 1;
4032 /* Just discard these, by returning nil.
4033 With MULTI_KBOARD, these events are used as placeholders
4034 when we need to randomly delete events from the queue.
4035 (They shouldn't otherwise be found in the buffer,
4036 but on some machines it appears they do show up
4037 even without MULTI_KBOARD.) */
4038 /* On Windows NT/9X, NO_EVENT is used to delete extraneous
4039 mouse events during a popup-menu call. */
4040 else if (event
->kind
== NO_EVENT
)
4041 kbd_fetch_ptr
= event
+ 1;
4042 else if (event
->kind
== HELP_EVENT
)
4044 Lisp_Object object
, position
, help
, frame
, window
;
4046 frame
= event
->frame_or_window
;
4047 object
= event
->arg
;
4048 position
= make_number (event
->code
);
4051 clear_event (event
);
4053 kbd_fetch_ptr
= event
+ 1;
4054 if (!WINDOWP (window
))
4056 obj
= Fcons (Qhelp_echo
,
4057 list5 (frame
, help
, window
, object
, position
));
4059 else if (event
->kind
== FOCUS_IN_EVENT
)
4061 /* Notification of a FocusIn event. The frame receiving the
4062 focus is in event->frame_or_window. Generate a
4063 switch-frame event if necessary. */
4064 Lisp_Object frame
, focus
;
4066 frame
= event
->frame_or_window
;
4067 focus
= FRAME_FOCUS_FRAME (XFRAME (frame
));
4071 if (!EQ (frame
, internal_last_event_frame
)
4072 && !EQ (frame
, selected_frame
))
4073 obj
= make_lispy_switch_frame (frame
);
4074 internal_last_event_frame
= frame
;
4075 kbd_fetch_ptr
= event
+ 1;
4079 /* If this event is on a different frame, return a switch-frame this
4080 time, and leave the event in the queue for next time. */
4084 frame
= event
->frame_or_window
;
4086 frame
= XCAR (frame
);
4087 else if (WINDOWP (frame
))
4088 frame
= WINDOW_FRAME (XWINDOW (frame
));
4090 focus
= FRAME_FOCUS_FRAME (XFRAME (frame
));
4094 if (! EQ (frame
, internal_last_event_frame
)
4095 && !EQ (frame
, selected_frame
))
4096 obj
= make_lispy_switch_frame (frame
);
4097 internal_last_event_frame
= frame
;
4099 /* If we didn't decide to make a switch-frame event, go ahead
4100 and build a real event from the queue entry. */
4104 obj
= make_lispy_event (event
);
4106 #if defined (USE_X_TOOLKIT) || defined (HAVE_NTGUI) || defined(MAC_OS) \
4107 || defined (USE_GTK)
4108 /* If this was a menu selection, then set the flag to inhibit
4109 writing to last_nonmenu_event. Don't do this if the event
4110 we're returning is (menu-bar), though; that indicates the
4111 beginning of the menu sequence, and we might as well leave
4112 that as the `event with parameters' for this selection. */
4114 && !EQ (event
->frame_or_window
, event
->arg
)
4115 && (event
->kind
== MENU_BAR_EVENT
4116 || event
->kind
== TOOL_BAR_EVENT
))
4117 *used_mouse_menu
= 1;
4120 /* Wipe out this event, to catch bugs. */
4121 clear_event (event
);
4122 kbd_fetch_ptr
= event
+ 1;
4127 /* Try generating a mouse motion event. */
4128 else if (!NILP (do_mouse_tracking
) && some_mouse_moved ())
4130 FRAME_PTR f
= some_mouse_moved ();
4131 Lisp_Object bar_window
;
4132 enum scroll_bar_part part
;
4136 *kbp
= current_kboard
;
4137 /* Note that this uses F to determine which display to look at.
4138 If there is no valid info, it does not store anything
4139 so x remains nil. */
4141 (*mouse_position_hook
) (&f
, 0, &bar_window
, &part
, &x
, &y
, &time
);
4145 /* Decide if we should generate a switch-frame event. Don't
4146 generate switch-frame events for motion outside of all Emacs
4152 frame
= FRAME_FOCUS_FRAME (f
);
4154 XSETFRAME (frame
, f
);
4156 if (! EQ (frame
, internal_last_event_frame
)
4157 && !EQ (frame
, selected_frame
))
4158 obj
= make_lispy_switch_frame (frame
);
4159 internal_last_event_frame
= frame
;
4162 /* If we didn't decide to make a switch-frame event, go ahead and
4163 return a mouse-motion event. */
4164 if (!NILP (x
) && NILP (obj
))
4165 obj
= make_lispy_movement (f
, bar_window
, part
, x
, y
, time
);
4167 #endif /* HAVE_MOUSE */
4169 /* We were promised by the above while loop that there was
4170 something for us to read! */
4173 input_pending
= readable_events (0);
4175 Vlast_event_frame
= internal_last_event_frame
;
4180 /* Process any events that are not user-visible,
4181 then return, without reading any user-visible events. */
4184 swallow_events (do_display
)
4189 while (kbd_fetch_ptr
!= kbd_store_ptr
)
4191 struct input_event
*event
;
4193 event
= ((kbd_fetch_ptr
< kbd_buffer
+ KBD_BUFFER_SIZE
)
4197 last_event_timestamp
= event
->timestamp
;
4199 /* These two kinds of events get special handling
4200 and don't actually appear to the command loop. */
4201 if (event
->kind
== SELECTION_REQUEST_EVENT
4202 || event
->kind
== SELECTION_CLEAR_EVENT
)
4205 struct input_event copy
;
4207 /* Remove it from the buffer before processing it,
4208 since otherwise swallow_events called recursively could see it
4209 and process it again. */
4211 kbd_fetch_ptr
= event
+ 1;
4212 input_pending
= readable_events (0);
4213 x_handle_selection_event (©
);
4215 /* We're getting selection request events, but we don't have
4224 old_timers_run
= timers_run
;
4225 get_input_pending (&input_pending
, READABLE_EVENTS_DO_TIMERS_NOW
);
4227 if (timers_run
!= old_timers_run
&& do_display
)
4228 redisplay_preserve_echo_area (7);
4231 /* Record the start of when Emacs is idle,
4232 for the sake of running idle-time timers. */
4239 /* If we are already in the idle state, do nothing. */
4240 if (! EMACS_TIME_NEG_P (timer_idleness_start_time
))
4243 EMACS_GET_TIME (timer_idleness_start_time
);
4245 timer_last_idleness_start_time
= timer_idleness_start_time
;
4247 /* Mark all idle-time timers as once again candidates for running. */
4248 for (timers
= Vtimer_idle_list
; CONSP (timers
); timers
= XCDR (timers
))
4252 timer
= XCAR (timers
);
4254 if (!VECTORP (timer
) || XVECTOR (timer
)->size
!= 8)
4256 XVECTOR (timer
)->contents
[0] = Qnil
;
4260 /* Record that Emacs is no longer idle, so stop running idle-time timers. */
4265 EMACS_SET_SECS_USECS (timer_idleness_start_time
, -1, -1);
4268 /* Resume idle timer from last idle start time. */
4271 timer_resume_idle ()
4273 if (! EMACS_TIME_NEG_P (timer_idleness_start_time
))
4276 timer_idleness_start_time
= timer_last_idleness_start_time
;
4279 /* This is only for debugging. */
4280 struct input_event last_timer_event
;
4282 /* Check whether a timer has fired. To prevent larger problems we simply
4283 disregard elements that are not proper timers. Do not make a circular
4284 timer list for the time being.
4286 Returns the number of seconds to wait until the next timer fires. If a
4287 timer is triggering now, return zero seconds.
4288 If no timer is active, return -1 seconds.
4290 If a timer is ripe, we run it, with quitting turned off.
4292 DO_IT_NOW is now ignored. It used to mean that we should
4293 run the timer directly instead of queueing a timer-event.
4294 Now we always run timers directly. */
4297 timer_check (do_it_now
)
4300 EMACS_TIME nexttime
;
4301 EMACS_TIME now
, idleness_now
;
4302 Lisp_Object timers
, idle_timers
, chosen_timer
;
4303 struct gcpro gcpro1
, gcpro2
, gcpro3
;
4305 EMACS_SET_SECS (nexttime
, -1);
4306 EMACS_SET_USECS (nexttime
, -1);
4308 /* Always consider the ordinary timers. */
4309 timers
= Vtimer_list
;
4310 /* Consider the idle timers only if Emacs is idle. */
4311 if (! EMACS_TIME_NEG_P (timer_idleness_start_time
))
4312 idle_timers
= Vtimer_idle_list
;
4315 chosen_timer
= Qnil
;
4316 GCPRO3 (timers
, idle_timers
, chosen_timer
);
4318 if (CONSP (timers
) || CONSP (idle_timers
))
4320 EMACS_GET_TIME (now
);
4321 if (! EMACS_TIME_NEG_P (timer_idleness_start_time
))
4322 EMACS_SUB_TIME (idleness_now
, now
, timer_idleness_start_time
);
4325 while (CONSP (timers
) || CONSP (idle_timers
))
4327 Lisp_Object
*vector
;
4328 Lisp_Object timer
= Qnil
, idle_timer
= Qnil
;
4329 EMACS_TIME timer_time
, idle_timer_time
;
4330 EMACS_TIME difference
, timer_difference
, idle_timer_difference
;
4332 /* Skip past invalid timers and timers already handled. */
4335 timer
= XCAR (timers
);
4336 if (!VECTORP (timer
) || XVECTOR (timer
)->size
!= 8)
4338 timers
= XCDR (timers
);
4341 vector
= XVECTOR (timer
)->contents
;
4343 if (!INTEGERP (vector
[1]) || !INTEGERP (vector
[2])
4344 || !INTEGERP (vector
[3])
4345 || ! NILP (vector
[0]))
4347 timers
= XCDR (timers
);
4351 if (!NILP (idle_timers
))
4353 timer
= XCAR (idle_timers
);
4354 if (!VECTORP (timer
) || XVECTOR (timer
)->size
!= 8)
4356 idle_timers
= XCDR (idle_timers
);
4359 vector
= XVECTOR (timer
)->contents
;
4361 if (!INTEGERP (vector
[1]) || !INTEGERP (vector
[2])
4362 || !INTEGERP (vector
[3])
4363 || ! NILP (vector
[0]))
4365 idle_timers
= XCDR (idle_timers
);
4370 /* Set TIMER, TIMER_TIME and TIMER_DIFFERENCE
4371 based on the next ordinary timer.
4372 TIMER_DIFFERENCE is the distance in time from NOW to when
4373 this timer becomes ripe (negative if it's already ripe). */
4376 timer
= XCAR (timers
);
4377 vector
= XVECTOR (timer
)->contents
;
4378 EMACS_SET_SECS (timer_time
,
4379 (XINT (vector
[1]) << 16) | (XINT (vector
[2])));
4380 EMACS_SET_USECS (timer_time
, XINT (vector
[3]));
4381 EMACS_SUB_TIME (timer_difference
, timer_time
, now
);
4384 /* Set IDLE_TIMER, IDLE_TIMER_TIME and IDLE_TIMER_DIFFERENCE
4385 based on the next idle timer. */
4386 if (!NILP (idle_timers
))
4388 idle_timer
= XCAR (idle_timers
);
4389 vector
= XVECTOR (idle_timer
)->contents
;
4390 EMACS_SET_SECS (idle_timer_time
,
4391 (XINT (vector
[1]) << 16) | (XINT (vector
[2])));
4392 EMACS_SET_USECS (idle_timer_time
, XINT (vector
[3]));
4393 EMACS_SUB_TIME (idle_timer_difference
, idle_timer_time
, idleness_now
);
4396 /* Decide which timer is the next timer,
4397 and set CHOSEN_TIMER, VECTOR and DIFFERENCE accordingly.
4398 Also step down the list where we found that timer. */
4400 if (! NILP (timers
) && ! NILP (idle_timers
))
4403 EMACS_SUB_TIME (temp
, timer_difference
, idle_timer_difference
);
4404 if (EMACS_TIME_NEG_P (temp
))
4406 chosen_timer
= timer
;
4407 timers
= XCDR (timers
);
4408 difference
= timer_difference
;
4412 chosen_timer
= idle_timer
;
4413 idle_timers
= XCDR (idle_timers
);
4414 difference
= idle_timer_difference
;
4417 else if (! NILP (timers
))
4419 chosen_timer
= timer
;
4420 timers
= XCDR (timers
);
4421 difference
= timer_difference
;
4425 chosen_timer
= idle_timer
;
4426 idle_timers
= XCDR (idle_timers
);
4427 difference
= idle_timer_difference
;
4429 vector
= XVECTOR (chosen_timer
)->contents
;
4431 /* If timer is ripe, run it if it hasn't been run. */
4432 if (EMACS_TIME_NEG_P (difference
)
4433 || (EMACS_SECS (difference
) == 0
4434 && EMACS_USECS (difference
) == 0))
4436 if (NILP (vector
[0]))
4438 int was_locked
= single_kboard
;
4439 int count
= SPECPDL_INDEX ();
4440 Lisp_Object old_deactivate_mark
= Vdeactivate_mark
;
4442 /* Mark the timer as triggered to prevent problems if the lisp
4443 code fails to reschedule it right. */
4446 specbind (Qinhibit_quit
, Qt
);
4448 call1 (Qtimer_event_handler
, chosen_timer
);
4449 Vdeactivate_mark
= old_deactivate_mark
;
4451 unbind_to (count
, Qnil
);
4453 /* Resume allowing input from any kboard, if that was true before. */
4455 any_kboard_state ();
4457 /* Since we have handled the event,
4458 we don't need to tell the caller to wake up and do it. */
4462 /* When we encounter a timer that is still waiting,
4463 return the amount of time to wait before it is ripe. */
4470 /* No timers are pending in the future. */
4471 /* Return 0 if we generated an event, and -1 if not. */
4476 /* Caches for modify_event_symbol. */
4477 static Lisp_Object accent_key_syms
;
4478 static Lisp_Object func_key_syms
;
4479 static Lisp_Object mouse_syms
;
4480 static Lisp_Object wheel_syms
;
4481 static Lisp_Object drag_n_drop_syms
;
4483 /* This is a list of keysym codes for special "accent" characters.
4484 It parallels lispy_accent_keys. */
4486 static int lispy_accent_codes
[] =
4488 #ifdef XK_dead_circumflex
4493 #ifdef XK_dead_grave
4498 #ifdef XK_dead_tilde
4503 #ifdef XK_dead_diaeresis
4508 #ifdef XK_dead_macron
4513 #ifdef XK_dead_degree
4518 #ifdef XK_dead_acute
4523 #ifdef XK_dead_cedilla
4528 #ifdef XK_dead_breve
4533 #ifdef XK_dead_ogonek
4538 #ifdef XK_dead_caron
4543 #ifdef XK_dead_doubleacute
4544 XK_dead_doubleacute
,
4548 #ifdef XK_dead_abovedot
4553 #ifdef XK_dead_abovering
4563 #ifdef XK_dead_belowdot
4568 #ifdef XK_dead_voiced_sound
4569 XK_dead_voiced_sound
,
4573 #ifdef XK_dead_semivoiced_sound
4574 XK_dead_semivoiced_sound
,
4590 /* This is a list of Lisp names for special "accent" characters.
4591 It parallels lispy_accent_codes. */
4593 static char *lispy_accent_keys
[] =
4611 "dead-voiced-sound",
4612 "dead-semivoiced-sound",
4618 #define FUNCTION_KEY_OFFSET 0x0
4620 char *lispy_function_keys
[] =
4624 0, /* VK_LBUTTON 0x01 */
4625 0, /* VK_RBUTTON 0x02 */
4626 "cancel", /* VK_CANCEL 0x03 */
4627 0, /* VK_MBUTTON 0x04 */
4629 0, 0, 0, /* 0x05 .. 0x07 */
4631 "backspace", /* VK_BACK 0x08 */
4632 "tab", /* VK_TAB 0x09 */
4634 0, 0, /* 0x0A .. 0x0B */
4636 "clear", /* VK_CLEAR 0x0C */
4637 "return", /* VK_RETURN 0x0D */
4639 0, 0, /* 0x0E .. 0x0F */
4641 0, /* VK_SHIFT 0x10 */
4642 0, /* VK_CONTROL 0x11 */
4643 0, /* VK_MENU 0x12 */
4644 "pause", /* VK_PAUSE 0x13 */
4645 "capslock", /* VK_CAPITAL 0x14 */
4647 0, 0, 0, 0, 0, 0, /* 0x15 .. 0x1A */
4649 "escape", /* VK_ESCAPE 0x1B */
4651 0, 0, 0, 0, /* 0x1C .. 0x1F */
4653 0, /* VK_SPACE 0x20 */
4654 "prior", /* VK_PRIOR 0x21 */
4655 "next", /* VK_NEXT 0x22 */
4656 "end", /* VK_END 0x23 */
4657 "home", /* VK_HOME 0x24 */
4658 "left", /* VK_LEFT 0x25 */
4659 "up", /* VK_UP 0x26 */
4660 "right", /* VK_RIGHT 0x27 */
4661 "down", /* VK_DOWN 0x28 */
4662 "select", /* VK_SELECT 0x29 */
4663 "print", /* VK_PRINT 0x2A */
4664 "execute", /* VK_EXECUTE 0x2B */
4665 "snapshot", /* VK_SNAPSHOT 0x2C */
4666 "insert", /* VK_INSERT 0x2D */
4667 "delete", /* VK_DELETE 0x2E */
4668 "help", /* VK_HELP 0x2F */
4670 /* VK_0 thru VK_9 are the same as ASCII '0' thru '9' (0x30 - 0x39) */
4672 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
4674 0, 0, 0, 0, 0, 0, 0, /* 0x3A .. 0x40 */
4676 /* VK_A thru VK_Z are the same as ASCII 'A' thru 'Z' (0x41 - 0x5A) */
4678 0, 0, 0, 0, 0, 0, 0, 0, 0,
4679 0, 0, 0, 0, 0, 0, 0, 0, 0,
4680 0, 0, 0, 0, 0, 0, 0, 0,
4682 "lwindow", /* VK_LWIN 0x5B */
4683 "rwindow", /* VK_RWIN 0x5C */
4684 "apps", /* VK_APPS 0x5D */
4686 0, 0, /* 0x5E .. 0x5F */
4688 "kp-0", /* VK_NUMPAD0 0x60 */
4689 "kp-1", /* VK_NUMPAD1 0x61 */
4690 "kp-2", /* VK_NUMPAD2 0x62 */
4691 "kp-3", /* VK_NUMPAD3 0x63 */
4692 "kp-4", /* VK_NUMPAD4 0x64 */
4693 "kp-5", /* VK_NUMPAD5 0x65 */
4694 "kp-6", /* VK_NUMPAD6 0x66 */
4695 "kp-7", /* VK_NUMPAD7 0x67 */
4696 "kp-8", /* VK_NUMPAD8 0x68 */
4697 "kp-9", /* VK_NUMPAD9 0x69 */
4698 "kp-multiply", /* VK_MULTIPLY 0x6A */
4699 "kp-add", /* VK_ADD 0x6B */
4700 "kp-separator", /* VK_SEPARATOR 0x6C */
4701 "kp-subtract", /* VK_SUBTRACT 0x6D */
4702 "kp-decimal", /* VK_DECIMAL 0x6E */
4703 "kp-divide", /* VK_DIVIDE 0x6F */
4704 "f1", /* VK_F1 0x70 */
4705 "f2", /* VK_F2 0x71 */
4706 "f3", /* VK_F3 0x72 */
4707 "f4", /* VK_F4 0x73 */
4708 "f5", /* VK_F5 0x74 */
4709 "f6", /* VK_F6 0x75 */
4710 "f7", /* VK_F7 0x76 */
4711 "f8", /* VK_F8 0x77 */
4712 "f9", /* VK_F9 0x78 */
4713 "f10", /* VK_F10 0x79 */
4714 "f11", /* VK_F11 0x7A */
4715 "f12", /* VK_F12 0x7B */
4716 "f13", /* VK_F13 0x7C */
4717 "f14", /* VK_F14 0x7D */
4718 "f15", /* VK_F15 0x7E */
4719 "f16", /* VK_F16 0x7F */
4720 "f17", /* VK_F17 0x80 */
4721 "f18", /* VK_F18 0x81 */
4722 "f19", /* VK_F19 0x82 */
4723 "f20", /* VK_F20 0x83 */
4724 "f21", /* VK_F21 0x84 */
4725 "f22", /* VK_F22 0x85 */
4726 "f23", /* VK_F23 0x86 */
4727 "f24", /* VK_F24 0x87 */
4729 0, 0, 0, 0, /* 0x88 .. 0x8B */
4730 0, 0, 0, 0, /* 0x8C .. 0x8F */
4732 "kp-numlock", /* VK_NUMLOCK 0x90 */
4733 "scroll", /* VK_SCROLL 0x91 */
4735 "kp-space", /* VK_NUMPAD_CLEAR 0x92 */
4736 "kp-enter", /* VK_NUMPAD_ENTER 0x93 */
4737 "kp-prior", /* VK_NUMPAD_PRIOR 0x94 */
4738 "kp-next", /* VK_NUMPAD_NEXT 0x95 */
4739 "kp-end", /* VK_NUMPAD_END 0x96 */
4740 "kp-home", /* VK_NUMPAD_HOME 0x97 */
4741 "kp-left", /* VK_NUMPAD_LEFT 0x98 */
4742 "kp-up", /* VK_NUMPAD_UP 0x99 */
4743 "kp-right", /* VK_NUMPAD_RIGHT 0x9A */
4744 "kp-down", /* VK_NUMPAD_DOWN 0x9B */
4745 "kp-insert", /* VK_NUMPAD_INSERT 0x9C */
4746 "kp-delete", /* VK_NUMPAD_DELETE 0x9D */
4748 0, 0, /* 0x9E .. 0x9F */
4751 * VK_L* & VK_R* - left and right Alt, Ctrl and Shift virtual keys.
4752 * Used only as parameters to GetAsyncKeyState and GetKeyState.
4753 * No other API or message will distinguish left and right keys this way.
4757 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
4758 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
4759 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
4760 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
4761 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
4767 "attn", /* VK_ATTN 0xF6 */
4768 "crsel", /* VK_CRSEL 0xF7 */
4769 "exsel", /* VK_EXSEL 0xF8 */
4770 "ereof", /* VK_EREOF 0xF9 */
4771 "play", /* VK_PLAY 0xFA */
4772 "zoom", /* VK_ZOOM 0xFB */
4773 "noname", /* VK_NONAME 0xFC */
4774 "pa1", /* VK_PA1 0xFD */
4775 "oem_clear", /* VK_OEM_CLEAR 0xFE */
4779 #else /* not HAVE_NTGUI */
4781 /* This should be dealt with in XTread_socket now, and that doesn't
4782 depend on the client system having the Kana syms defined. See also
4783 the XK_kana_A case below. */
4786 static char *lispy_kana_keys
[] =
4788 /* X Keysym value */
4789 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, /* 0x400 .. 0x40f */
4790 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, /* 0x410 .. 0x41f */
4791 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, /* 0x420 .. 0x42f */
4792 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, /* 0x430 .. 0x43f */
4793 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, /* 0x440 .. 0x44f */
4794 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, /* 0x450 .. 0x45f */
4795 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, /* 0x460 .. 0x46f */
4796 0,0,0,0,0,0,0,0,0,0,0,0,0,0,"overline",0,
4797 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, /* 0x480 .. 0x48f */
4798 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, /* 0x490 .. 0x49f */
4799 0, "kana-fullstop", "kana-openingbracket", "kana-closingbracket",
4800 "kana-comma", "kana-conjunctive", "kana-WO", "kana-a",
4801 "kana-i", "kana-u", "kana-e", "kana-o",
4802 "kana-ya", "kana-yu", "kana-yo", "kana-tsu",
4803 "prolongedsound", "kana-A", "kana-I", "kana-U",
4804 "kana-E", "kana-O", "kana-KA", "kana-KI",
4805 "kana-KU", "kana-KE", "kana-KO", "kana-SA",
4806 "kana-SHI", "kana-SU", "kana-SE", "kana-SO",
4807 "kana-TA", "kana-CHI", "kana-TSU", "kana-TE",
4808 "kana-TO", "kana-NA", "kana-NI", "kana-NU",
4809 "kana-NE", "kana-NO", "kana-HA", "kana-HI",
4810 "kana-FU", "kana-HE", "kana-HO", "kana-MA",
4811 "kana-MI", "kana-MU", "kana-ME", "kana-MO",
4812 "kana-YA", "kana-YU", "kana-YO", "kana-RA",
4813 "kana-RI", "kana-RU", "kana-RE", "kana-RO",
4814 "kana-WA", "kana-N", "voicedsound", "semivoicedsound",
4815 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, /* 0x4e0 .. 0x4ef */
4816 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, /* 0x4f0 .. 0x4ff */
4818 #endif /* XK_kana_A */
4821 #define FUNCTION_KEY_OFFSET 0xff00
4823 /* You'll notice that this table is arranged to be conveniently
4824 indexed by X Windows keysym values. */
4825 static char *lispy_function_keys
[] =
4827 /* X Keysym value */
4829 0, 0, 0, 0, 0, 0, 0, 0, /* 0xff00...0f */
4830 "backspace", "tab", "linefeed", "clear",
4832 0, 0, 0, "pause", /* 0xff10...1f */
4833 0, 0, 0, 0, 0, 0, 0, "escape",
4835 0, "kanji", "muhenkan", "henkan", /* 0xff20...2f */
4836 "romaji", "hiragana", "katakana", "hiragana-katakana",
4837 "zenkaku", "hankaku", "zenkaku-hankaku", "touroku",
4838 "massyo", "kana-lock", "kana-shift", "eisu-shift",
4839 "eisu-toggle", /* 0xff30...3f */
4840 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
4841 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, /* 0xff40...4f */
4843 "home", "left", "up", "right", /* 0xff50 */ /* IsCursorKey */
4844 "down", "prior", "next", "end",
4845 "begin", 0, 0, 0, 0, 0, 0, 0,
4846 "select", /* 0xff60 */ /* IsMiscFunctionKey */
4857 "break", /* 0xff6b */
4860 0, 0, 0, 0, "backtab", 0, 0, 0, /* 0xff70... */
4861 0, 0, 0, 0, 0, 0, 0, "kp-numlock", /* 0xff78... */
4862 "kp-space", /* 0xff80 */ /* IsKeypadKey */
4863 0, 0, 0, 0, 0, 0, 0, 0,
4864 "kp-tab", /* 0xff89 */
4866 "kp-enter", /* 0xff8d */
4868 "kp-f1", /* 0xff91 */
4872 "kp-home", /* 0xff95 */
4877 "kp-prior", /* kp-page-up */
4878 "kp-next", /* kp-page-down */
4884 0, 0, 0, 0, 0, 0, 0, 0, 0,
4885 "kp-multiply", /* 0xffaa */
4890 "kp-divide", /* 0xffaf */
4891 "kp-0", /* 0xffb0 */
4892 "kp-1", "kp-2", "kp-3", "kp-4", "kp-5", "kp-6", "kp-7", "kp-8", "kp-9",
4895 "kp-equal", /* 0xffbd */
4896 "f1", /* 0xffbe */ /* IsFunctionKey */
4898 "f3", "f4", "f5", "f6", "f7", "f8", "f9", "f10", /* 0xffc0 */
4899 "f11", "f12", "f13", "f14", "f15", "f16", "f17", "f18",
4900 "f19", "f20", "f21", "f22", "f23", "f24", "f25", "f26", /* 0xffd0 */
4901 "f27", "f28", "f29", "f30", "f31", "f32", "f33", "f34",
4902 "f35", 0, 0, 0, 0, 0, 0, 0, /* 0xffe0 */
4903 0, 0, 0, 0, 0, 0, 0, 0,
4904 0, 0, 0, 0, 0, 0, 0, 0, /* 0xfff0 */
4905 0, 0, 0, 0, 0, 0, 0, "delete"
4908 /* ISO 9995 Function and Modifier Keys; the first byte is 0xFE. */
4909 #define ISO_FUNCTION_KEY_OFFSET 0xfe00
4911 static char *iso_lispy_function_keys
[] =
4913 0, 0, 0, 0, 0, 0, 0, 0, /* 0xfe00 */
4914 0, 0, 0, 0, 0, 0, 0, 0, /* 0xfe08 */
4915 0, 0, 0, 0, 0, 0, 0, 0, /* 0xfe10 */
4916 0, 0, 0, 0, 0, 0, 0, 0, /* 0xfe18 */
4917 "iso-lefttab", /* 0xfe20 */
4918 "iso-move-line-up", "iso-move-line-down",
4919 "iso-partial-line-up", "iso-partial-line-down",
4920 "iso-partial-space-left", "iso-partial-space-right",
4921 "iso-set-margin-left", "iso-set-margin-right", /* 0xffe27, 28 */
4922 "iso-release-margin-left", "iso-release-margin-right",
4923 "iso-release-both-margins",
4924 "iso-fast-cursor-left", "iso-fast-cursor-right",
4925 "iso-fast-cursor-up", "iso-fast-cursor-down",
4926 "iso-continuous-underline", "iso-discontinuous-underline", /* 0xfe30, 31 */
4927 "iso-emphasize", "iso-center-object", "iso-enter", /* ... 0xfe34 */
4930 #endif /* not HAVE_NTGUI */
4932 Lisp_Object Vlispy_mouse_stem
;
4934 static char *lispy_wheel_names
[] =
4936 "wheel-up", "wheel-down"
4939 /* drag-n-drop events are generated when a set of selected files are
4940 dragged from another application and dropped onto an Emacs window. */
4941 static char *lispy_drag_n_drop_names
[] =
4946 /* Scroll bar parts. */
4947 Lisp_Object Qabove_handle
, Qhandle
, Qbelow_handle
;
4948 Lisp_Object Qup
, Qdown
, Qbottom
, Qend_scroll
;
4949 Lisp_Object Qtop
, Qratio
;
4951 /* An array of scroll bar parts, indexed by an enum scroll_bar_part value. */
4952 Lisp_Object
*scroll_bar_parts
[] = {
4953 &Qabove_handle
, &Qhandle
, &Qbelow_handle
,
4954 &Qup
, &Qdown
, &Qtop
, &Qbottom
, &Qend_scroll
, &Qratio
4957 /* User signal events. */
4958 Lisp_Object Qusr1_signal
, Qusr2_signal
;
4960 Lisp_Object
*lispy_user_signals
[] =
4962 &Qusr1_signal
, &Qusr2_signal
4966 /* A vector, indexed by button number, giving the down-going location
4967 of currently depressed buttons, both scroll bar and non-scroll bar.
4969 The elements have the form
4970 (BUTTON-NUMBER MODIFIER-MASK . REST)
4971 where REST is the cdr of a position as it would be reported in the event.
4973 The make_lispy_event function stores positions here to tell the
4974 difference between click and drag events, and to store the starting
4975 location to be included in drag events. */
4977 static Lisp_Object button_down_location
;
4979 /* Information about the most recent up-going button event: Which
4980 button, what location, and what time. */
4982 static int last_mouse_button
;
4983 static int last_mouse_x
;
4984 static int last_mouse_y
;
4985 static unsigned long button_down_time
;
4987 /* The maximum time between clicks to make a double-click, or Qnil to
4988 disable double-click detection, or Qt for no time limit. */
4990 Lisp_Object Vdouble_click_time
;
4992 /* Maximum number of pixels the mouse may be moved between clicks
4993 to make a double-click. */
4995 EMACS_INT double_click_fuzz
;
4997 /* The number of clicks in this multiple-click. */
4999 int double_click_count
;
5001 /* Return position of a mouse click or wheel event */
5004 make_lispy_position (f
, x
, y
, time
)
5010 enum window_part part
;
5011 Lisp_Object posn
= Qnil
;
5012 Lisp_Object extra_info
= Qnil
;
5015 /* Set `window' to the window under frame pixel coordinates (x,y) */
5017 window
= window_from_coordinates (f
, XINT (*x
), XINT (*y
),
5018 &part
, &wx
, &wy
, 0);
5022 if (WINDOWP (window
))
5024 /* It's a click in window window at frame coordinates (x,y) */
5025 struct window
*w
= XWINDOW (window
);
5026 Lisp_Object string_info
= Qnil
;
5027 int textpos
= -1, rx
= -1, ry
= -1;
5028 int dx
= -1, dy
= -1;
5029 int width
= -1, height
= -1;
5030 Lisp_Object object
= Qnil
;
5032 /* Set event coordinates to window-relative coordinates
5033 for constructing the Lisp event below. */
5037 if (part
== ON_MODE_LINE
|| part
== ON_HEADER_LINE
)
5039 /* Mode line or header line. Look for a string under
5040 the mouse that may have a `local-map' property. */
5044 posn
= part
== ON_MODE_LINE
? Qmode_line
: Qheader_line
;
5046 string
= mode_line_string (w
, part
, &rx
, &ry
, &charpos
,
5047 &object
, &dx
, &dy
, &width
, &height
);
5048 if (STRINGP (string
))
5049 string_info
= Fcons (string
, make_number (charpos
));
5050 if (w
== XWINDOW (selected_window
))
5053 textpos
= XMARKER (w
->pointm
)->charpos
;
5055 else if (part
== ON_VERTICAL_BORDER
)
5057 posn
= Qvertical_line
;
5062 else if (part
== ON_LEFT_MARGIN
|| part
== ON_RIGHT_MARGIN
)
5067 posn
= (part
== ON_LEFT_MARGIN
) ? Qleft_margin
: Qright_margin
;
5069 string
= marginal_area_string (w
, part
, &rx
, &ry
, &charpos
,
5070 &object
, &dx
, &dy
, &width
, &height
);
5071 if (STRINGP (string
))
5072 string_info
= Fcons (string
, make_number (charpos
));
5074 else if (part
== ON_LEFT_FRINGE
|| part
== ON_RIGHT_FRINGE
)
5076 posn
= (part
== ON_LEFT_FRINGE
) ? Qleft_fringe
: Qright_fringe
;
5079 if (part
== ON_RIGHT_FRINGE
)
5080 dx
-= (window_box_width (w
, LEFT_MARGIN_AREA
)
5081 + window_box_width (w
, TEXT_AREA
)
5082 + (WINDOW_HAS_FRINGES_OUTSIDE_MARGINS (w
)
5083 ? window_box_width (w
, RIGHT_MARGIN_AREA
)
5085 else if (!WINDOW_HAS_FRINGES_OUTSIDE_MARGINS (w
))
5086 dx
-= window_box_width (w
, LEFT_MARGIN_AREA
);
5091 Lisp_Object string2
, object2
= Qnil
;
5092 struct display_pos p
;
5094 int width2
, height2
;
5095 wx
= max (WINDOW_LEFT_MARGIN_WIDTH (w
), wx
);
5096 string2
= buffer_posn_from_coords (w
, &wx
, &wy
, &p
,
5097 &object2
, &dx2
, &dy2
,
5099 textpos
= CHARPOS (p
.pos
);
5100 if (rx
< 0) rx
= wx
;
5101 if (ry
< 0) ry
= wy
;
5102 if (dx
< 0) dx
= dx2
;
5103 if (dy
< 0) dy
= dy2
;
5104 if (width
< 0) width
= width2
;
5105 if (height
< 0) height
= height2
;
5109 posn
= make_number (textpos
);
5110 if (STRINGP (string2
))
5111 string_info
= Fcons (string2
,
5112 make_number (CHARPOS (p
.string_pos
)));
5118 #ifdef HAVE_WINDOW_SYSTEM
5119 if (IMAGEP (object
))
5121 Lisp_Object image_map
, hotspot
;
5122 if ((image_map
= Fplist_get (XCDR (object
), QCmap
),
5124 && (hotspot
= find_hot_spot (image_map
, dx
, dy
),
5126 && (hotspot
= XCDR (hotspot
), CONSP (hotspot
)))
5127 posn
= XCAR (hotspot
);
5132 extra_info
= Fcons (object
,
5133 Fcons (Fcons (make_number (dx
),
5135 Fcons (Fcons (make_number (width
),
5136 make_number (height
)),
5140 extra_info
= Fcons (string_info
,
5141 Fcons (make_number (textpos
),
5142 Fcons (Fcons (make_number (rx
),
5148 XSETFRAME (window
, f
);
5153 XSETFASTINT (*x
, 0);
5154 XSETFASTINT (*y
, 0);
5157 return Fcons (window
,
5159 Fcons (Fcons (*x
, *y
),
5160 Fcons (make_number (time
),
5164 /* Given a struct input_event, build the lisp event which represents
5165 it. If EVENT is 0, build a mouse movement event from the mouse
5166 movement buffer, which should have a movement event in it.
5168 Note that events must be passed to this function in the order they
5169 are received; this function stores the location of button presses
5170 in order to build drag events when the button is released. */
5173 make_lispy_event (event
)
5174 struct input_event
*event
;
5178 switch (SWITCH_ENUM_CAST (event
->kind
))
5180 /* A simple keystroke. */
5181 case ASCII_KEYSTROKE_EVENT
:
5183 Lisp_Object lispy_c
;
5184 int c
= event
->code
& 0377;
5185 /* Turn ASCII characters into control characters
5187 if (event
->modifiers
& ctrl_modifier
)
5188 c
= make_ctrl_char (c
);
5190 /* Add in the other modifier bits. We took care of ctrl_modifier
5191 just above, and the shift key was taken care of by the X code,
5192 and applied to control characters by make_ctrl_char. */
5193 c
|= (event
->modifiers
5194 & (meta_modifier
| alt_modifier
5195 | hyper_modifier
| super_modifier
));
5196 /* Distinguish Shift-SPC from SPC. */
5197 if ((event
->code
& 0377) == 040
5198 && event
->modifiers
& shift_modifier
)
5199 c
|= shift_modifier
;
5200 button_down_time
= 0;
5201 XSETFASTINT (lispy_c
, c
);
5205 case MULTIBYTE_CHAR_KEYSTROKE_EVENT
:
5207 Lisp_Object lispy_c
;
5208 int c
= event
->code
;
5210 /* Add in the other modifier bits. We took care of ctrl_modifier
5211 just above, and the shift key was taken care of by the X code,
5212 and applied to control characters by make_ctrl_char. */
5213 c
|= (event
->modifiers
5214 & (meta_modifier
| alt_modifier
5215 | hyper_modifier
| super_modifier
| ctrl_modifier
));
5216 /* What about the `shift' modifier ? */
5217 button_down_time
= 0;
5218 XSETFASTINT (lispy_c
, c
);
5222 /* A function key. The symbol may need to have modifier prefixes
5224 case NON_ASCII_KEYSTROKE_EVENT
:
5225 button_down_time
= 0;
5227 for (i
= 0; i
< sizeof (lispy_accent_codes
) / sizeof (int); i
++)
5228 if (event
->code
== lispy_accent_codes
[i
])
5229 return modify_event_symbol (i
,
5231 Qfunction_key
, Qnil
,
5232 lispy_accent_keys
, &accent_key_syms
,
5233 (sizeof (lispy_accent_keys
)
5234 / sizeof (lispy_accent_keys
[0])));
5238 if (event
->code
>= 0x400 && event
->code
< 0x500)
5239 return modify_event_symbol (event
->code
- 0x400,
5240 event
->modifiers
& ~shift_modifier
,
5241 Qfunction_key
, Qnil
,
5242 lispy_kana_keys
, &func_key_syms
,
5243 (sizeof (lispy_kana_keys
)
5244 / sizeof (lispy_kana_keys
[0])));
5245 #endif /* XK_kana_A */
5248 #ifdef ISO_FUNCTION_KEY_OFFSET
5249 if (event
->code
< FUNCTION_KEY_OFFSET
5250 && event
->code
>= ISO_FUNCTION_KEY_OFFSET
)
5251 return modify_event_symbol (event
->code
- ISO_FUNCTION_KEY_OFFSET
,
5253 Qfunction_key
, Qnil
,
5254 iso_lispy_function_keys
, &func_key_syms
,
5255 (sizeof (iso_lispy_function_keys
)
5256 / sizeof (iso_lispy_function_keys
[0])));
5259 /* Handle system-specific or unknown keysyms. */
5260 if (event
->code
& (1 << 28)
5261 || event
->code
- FUNCTION_KEY_OFFSET
< 0
5262 || (event
->code
- FUNCTION_KEY_OFFSET
5263 >= sizeof lispy_function_keys
/ sizeof *lispy_function_keys
)
5264 || !lispy_function_keys
[event
->code
- FUNCTION_KEY_OFFSET
])
5266 /* We need to use an alist rather than a vector as the cache
5267 since we can't make a vector long enuf. */
5268 if (NILP (current_kboard
->system_key_syms
))
5269 current_kboard
->system_key_syms
= Fcons (Qnil
, Qnil
);
5270 return modify_event_symbol (event
->code
,
5273 current_kboard
->Vsystem_key_alist
,
5274 0, ¤t_kboard
->system_key_syms
,
5278 return modify_event_symbol (event
->code
- FUNCTION_KEY_OFFSET
,
5280 Qfunction_key
, Qnil
,
5281 lispy_function_keys
, &func_key_syms
,
5282 (sizeof (lispy_function_keys
)
5283 / sizeof (lispy_function_keys
[0])));
5286 /* A mouse click. Figure out where it is, decide whether it's
5287 a press, click or drag, and build the appropriate structure. */
5288 case MOUSE_CLICK_EVENT
:
5289 #ifndef USE_TOOLKIT_SCROLL_BARS
5290 case SCROLL_BAR_CLICK_EVENT
:
5293 int button
= event
->code
;
5295 Lisp_Object position
;
5296 Lisp_Object
*start_pos_ptr
;
5297 Lisp_Object start_pos
;
5301 /* Build the position as appropriate for this mouse click. */
5302 if (event
->kind
== MOUSE_CLICK_EVENT
)
5304 struct frame
*f
= XFRAME (event
->frame_or_window
);
5305 #if ! defined (USE_X_TOOLKIT) && ! defined (USE_GTK)
5309 /* Ignore mouse events that were made on frame that
5310 have been deleted. */
5311 if (! FRAME_LIVE_P (f
))
5314 #if ! defined (USE_X_TOOLKIT) && ! defined (USE_GTK)
5315 /* EVENT->x and EVENT->y are frame-relative pixel
5316 coordinates at this place. Under old redisplay, COLUMN
5317 and ROW are set to frame relative glyph coordinates
5318 which are then used to determine whether this click is
5319 in a menu (non-toolkit version). */
5320 pixel_to_glyph_coords (f
, XINT (event
->x
), XINT (event
->y
),
5321 &column
, &row
, NULL
, 1);
5323 /* In the non-toolkit version, clicks on the menu bar
5324 are ordinary button events in the event buffer.
5325 Distinguish them, and invoke the menu.
5327 (In the toolkit version, the toolkit handles the menu bar
5328 and Emacs doesn't know about it until after the user
5329 makes a selection.) */
5330 if (row
>= 0 && row
< FRAME_MENU_BAR_LINES (f
)
5331 && (event
->modifiers
& down_modifier
))
5333 Lisp_Object items
, item
;
5338 /* Activate the menu bar on the down event. If the
5339 up event comes in before the menu code can deal with it,
5341 if (! (event
->modifiers
& down_modifier
))
5345 /* Find the menu bar item under `column'. */
5347 items
= FRAME_MENU_BAR_ITEMS (f
);
5348 for (i
= 0; i
< XVECTOR (items
)->size
; i
+= 4)
5350 Lisp_Object pos
, string
;
5351 string
= AREF (items
, i
+ 1);
5352 pos
= AREF (items
, i
+ 3);
5355 if (column
>= XINT (pos
)
5356 && column
< XINT (pos
) + SCHARS (string
))
5358 item
= AREF (items
, i
);
5363 /* ELisp manual 2.4b says (x y) are window relative but
5364 code says they are frame-relative. */
5366 = Fcons (event
->frame_or_window
,
5368 Fcons (Fcons (event
->x
, event
->y
),
5369 Fcons (make_number (event
->timestamp
),
5372 return Fcons (item
, Fcons (position
, Qnil
));
5374 #endif /* not USE_X_TOOLKIT && not USE_GTK */
5376 position
= make_lispy_position (f
, &event
->x
, &event
->y
,
5379 #ifndef USE_TOOLKIT_SCROLL_BARS
5382 /* It's a scrollbar click. */
5384 Lisp_Object portion_whole
;
5387 window
= event
->frame_or_window
;
5388 portion_whole
= Fcons (event
->x
, event
->y
);
5389 part
= *scroll_bar_parts
[(int) event
->part
];
5393 Fcons (Qvertical_scroll_bar
,
5394 Fcons (portion_whole
,
5395 Fcons (make_number (event
->timestamp
),
5396 Fcons (part
, Qnil
)))));
5398 #endif /* not USE_TOOLKIT_SCROLL_BARS */
5400 if (button
>= ASIZE (button_down_location
))
5402 button_down_location
= larger_vector (button_down_location
,
5404 mouse_syms
= larger_vector (mouse_syms
, button
+ 1, Qnil
);
5407 start_pos_ptr
= &AREF (button_down_location
, button
);
5408 start_pos
= *start_pos_ptr
;
5409 *start_pos_ptr
= Qnil
;
5412 /* On window-system frames, use the value of
5413 double-click-fuzz as is. On other frames, interpret it
5414 as a multiple of 1/8 characters. */
5418 if (WINDOWP (event
->frame_or_window
))
5419 f
= XFRAME (XWINDOW (event
->frame_or_window
)->frame
);
5420 else if (FRAMEP (event
->frame_or_window
))
5421 f
= XFRAME (event
->frame_or_window
);
5425 if (FRAME_WINDOW_P (f
))
5426 fuzz
= double_click_fuzz
;
5428 fuzz
= double_click_fuzz
/ 8;
5430 is_double
= (button
== last_mouse_button
5431 && (abs (XINT (event
->x
) - last_mouse_x
) <= fuzz
)
5432 && (abs (XINT (event
->y
) - last_mouse_y
) <= fuzz
)
5433 && button_down_time
!= 0
5434 && (EQ (Vdouble_click_time
, Qt
)
5435 || (INTEGERP (Vdouble_click_time
)
5436 && ((int)(event
->timestamp
- button_down_time
)
5437 < XINT (Vdouble_click_time
)))));
5440 last_mouse_button
= button
;
5441 last_mouse_x
= XINT (event
->x
);
5442 last_mouse_y
= XINT (event
->y
);
5444 /* If this is a button press, squirrel away the location, so
5445 we can decide later whether it was a click or a drag. */
5446 if (event
->modifiers
& down_modifier
)
5450 double_click_count
++;
5451 event
->modifiers
|= ((double_click_count
> 2)
5456 double_click_count
= 1;
5457 button_down_time
= event
->timestamp
;
5458 *start_pos_ptr
= Fcopy_alist (position
);
5461 /* Now we're releasing a button - check the co-ordinates to
5462 see if this was a click or a drag. */
5463 else if (event
->modifiers
& up_modifier
)
5465 /* If we did not see a down before this up, ignore the up.
5466 Probably this happened because the down event chose a
5467 menu item. It would be an annoyance to treat the
5468 release of the button that chose the menu item as a
5471 if (!CONSP (start_pos
))
5474 event
->modifiers
&= ~up_modifier
;
5475 #if 0 /* Formerly we treated an up with no down as a click event. */
5476 if (!CONSP (start_pos
))
5477 event
->modifiers
|= click_modifier
;
5482 EMACS_INT xdiff
= double_click_fuzz
, ydiff
= double_click_fuzz
;
5484 /* The third element of every position
5485 should be the (x,y) pair. */
5486 down
= Fcar (Fcdr (Fcdr (start_pos
)));
5488 && INTEGERP (XCAR (down
)) && INTEGERP (XCDR (down
)))
5490 xdiff
= XFASTINT (event
->x
) - XFASTINT (XCAR (down
));
5491 ydiff
= XFASTINT (event
->y
) - XFASTINT (XCDR (down
));
5494 if (xdiff
< double_click_fuzz
&& xdiff
> - double_click_fuzz
5495 && ydiff
< double_click_fuzz
5496 && ydiff
> - double_click_fuzz
)
5497 /* Mouse hasn't moved (much). */
5498 event
->modifiers
|= click_modifier
;
5501 button_down_time
= 0;
5502 event
->modifiers
|= drag_modifier
;
5505 /* Don't check is_double; treat this as multiple
5506 if the down-event was multiple. */
5507 if (double_click_count
> 1)
5508 event
->modifiers
|= ((double_click_count
> 2)
5514 /* Every mouse event should either have the down_modifier or
5515 the up_modifier set. */
5519 /* Get the symbol we should use for the mouse click. */
5522 head
= modify_event_symbol (button
,
5524 Qmouse_click
, Vlispy_mouse_stem
,
5527 XVECTOR (mouse_syms
)->size
);
5528 if (event
->modifiers
& drag_modifier
)
5533 else if (event
->modifiers
& (double_modifier
| triple_modifier
))
5536 Fcons (make_number (double_click_count
),
5547 Lisp_Object position
;
5550 /* Build the position as appropriate for this mouse click. */
5551 struct frame
*f
= XFRAME (event
->frame_or_window
);
5553 /* Ignore wheel events that were made on frame that have been
5555 if (! FRAME_LIVE_P (f
))
5558 position
= make_lispy_position (f
, &event
->x
, &event
->y
,
5561 /* Set double or triple modifiers to indicate the wheel speed. */
5563 /* On window-system frames, use the value of
5564 double-click-fuzz as is. On other frames, interpret it
5565 as a multiple of 1/8 characters. */
5570 if (WINDOWP (event
->frame_or_window
))
5571 f
= XFRAME (XWINDOW (event
->frame_or_window
)->frame
);
5572 else if (FRAMEP (event
->frame_or_window
))
5573 f
= XFRAME (event
->frame_or_window
);
5577 if (FRAME_WINDOW_P (f
))
5578 fuzz
= double_click_fuzz
;
5580 fuzz
= double_click_fuzz
/ 8;
5582 is_double
= (last_mouse_button
< 0
5583 && (abs (XINT (event
->x
) - last_mouse_x
) <= fuzz
)
5584 && (abs (XINT (event
->y
) - last_mouse_y
) <= fuzz
)
5585 && button_down_time
!= 0
5586 && (EQ (Vdouble_click_time
, Qt
)
5587 || (INTEGERP (Vdouble_click_time
)
5588 && ((int)(event
->timestamp
- button_down_time
)
5589 < XINT (Vdouble_click_time
)))));
5592 double_click_count
++;
5593 event
->modifiers
|= ((double_click_count
> 2)
5599 double_click_count
= 1;
5600 event
->modifiers
|= click_modifier
;
5603 button_down_time
= event
->timestamp
;
5604 /* Use a negative value to distinguish wheel from mouse button. */
5605 last_mouse_button
= -1;
5606 last_mouse_x
= XINT (event
->x
);
5607 last_mouse_y
= XINT (event
->y
);
5613 if (event
->modifiers
& up_modifier
)
5615 /* Emit a wheel-up event. */
5616 event
->modifiers
&= ~up_modifier
;
5619 else if (event
->modifiers
& down_modifier
)
5621 /* Emit a wheel-down event. */
5622 event
->modifiers
&= ~down_modifier
;
5626 /* Every wheel event should either have the down_modifier or
5627 the up_modifier set. */
5630 /* Get the symbol we should use for the wheel event. */
5631 head
= modify_event_symbol (symbol_num
,
5637 ASIZE (wheel_syms
));
5640 if (event
->modifiers
& (double_modifier
| triple_modifier
))
5643 Fcons (make_number (double_click_count
),
5652 #ifdef USE_TOOLKIT_SCROLL_BARS
5654 /* We don't have down and up events if using toolkit scroll bars,
5655 so make this always a click event. Store in the `part' of
5656 the Lisp event a symbol which maps to the following actions:
5658 `above_handle' page up
5659 `below_handle' page down
5663 `bottom' bottom of buffer
5664 `handle' thumb has been dragged.
5665 `end-scroll' end of interaction with scroll bar
5667 The incoming input_event contains in its `part' member an
5668 index of type `enum scroll_bar_part' which we can use as an
5669 index in scroll_bar_parts to get the appropriate symbol. */
5671 case SCROLL_BAR_CLICK_EVENT
:
5673 Lisp_Object position
, head
, window
, portion_whole
, part
;
5675 window
= event
->frame_or_window
;
5676 portion_whole
= Fcons (event
->x
, event
->y
);
5677 part
= *scroll_bar_parts
[(int) event
->part
];
5681 Fcons (Qvertical_scroll_bar
,
5682 Fcons (portion_whole
,
5683 Fcons (make_number (event
->timestamp
),
5684 Fcons (part
, Qnil
)))));
5686 /* Always treat scroll bar events as clicks. */
5687 event
->modifiers
|= click_modifier
;
5688 event
->modifiers
&= ~up_modifier
;
5690 if (event
->code
>= ASIZE (mouse_syms
))
5691 mouse_syms
= larger_vector (mouse_syms
, event
->code
+ 1, Qnil
);
5693 /* Get the symbol we should use for the mouse click. */
5694 head
= modify_event_symbol (event
->code
,
5699 XVECTOR (mouse_syms
)->size
);
5700 return Fcons (head
, Fcons (position
, Qnil
));
5703 #endif /* USE_TOOLKIT_SCROLL_BARS */
5706 case W32_SCROLL_BAR_CLICK_EVENT
:
5708 int button
= event
->code
;
5710 Lisp_Object position
;
5711 Lisp_Object
*start_pos_ptr
;
5712 Lisp_Object start_pos
;
5716 Lisp_Object portion_whole
;
5719 window
= event
->frame_or_window
;
5720 portion_whole
= Fcons (event
->x
, event
->y
);
5721 part
= *scroll_bar_parts
[(int) event
->part
];
5725 Fcons (Qvertical_scroll_bar
,
5726 Fcons (portion_whole
,
5727 Fcons (make_number (event
->timestamp
),
5728 Fcons (part
, Qnil
)))));
5731 /* Always treat W32 scroll bar events as clicks. */
5732 event
->modifiers
|= click_modifier
;
5735 /* Get the symbol we should use for the mouse click. */
5738 head
= modify_event_symbol (button
,
5743 XVECTOR (mouse_syms
)->size
);
5749 #endif /* WINDOWSNT */
5751 case DRAG_N_DROP_EVENT
:
5754 Lisp_Object head
, position
;
5757 /* The frame_or_window field should be a cons of the frame in
5758 which the event occurred and a list of the filenames
5760 if (! CONSP (event
->frame_or_window
))
5763 f
= XFRAME (XCAR (event
->frame_or_window
));
5764 files
= XCDR (event
->frame_or_window
);
5766 /* Ignore mouse events that were made on frames that
5767 have been deleted. */
5768 if (! FRAME_LIVE_P (f
))
5771 position
= make_lispy_position (f
, &event
->x
, &event
->y
,
5774 head
= modify_event_symbol (0, event
->modifiers
,
5776 lispy_drag_n_drop_names
,
5777 &drag_n_drop_syms
, 1);
5783 #endif /* HAVE_MOUSE */
5785 #if defined (USE_X_TOOLKIT) || defined (HAVE_NTGUI) || defined (MAC_OS) \
5786 || defined (USE_GTK)
5787 case MENU_BAR_EVENT
:
5788 if (EQ (event
->arg
, event
->frame_or_window
))
5789 /* This is the prefix key. We translate this to
5790 `(menu_bar)' because the code in keyboard.c for menu
5791 events, which we use, relies on this. */
5792 return Fcons (Qmenu_bar
, Qnil
);
5796 case SELECT_WINDOW_EVENT
:
5797 /* Make an event (select-window (WINDOW)). */
5798 return Fcons (Qselect_window
,
5799 Fcons (Fcons (event
->frame_or_window
, Qnil
),
5802 case TOOL_BAR_EVENT
:
5803 if (EQ (event
->arg
, event
->frame_or_window
))
5804 /* This is the prefix key. We translate this to
5805 `(tool_bar)' because the code in keyboard.c for tool bar
5806 events, which we use, relies on this. */
5807 return Fcons (Qtool_bar
, Qnil
);
5808 else if (SYMBOLP (event
->arg
))
5809 return apply_modifiers (event
->modifiers
, event
->arg
);
5812 case USER_SIGNAL_EVENT
:
5813 /* A user signal. */
5814 return *lispy_user_signals
[event
->code
];
5816 case SAVE_SESSION_EVENT
:
5817 return Qsave_session
;
5819 /* The 'kind' field of the event is something we don't recognize. */
5828 make_lispy_movement (frame
, bar_window
, part
, x
, y
, time
)
5830 Lisp_Object bar_window
;
5831 enum scroll_bar_part part
;
5835 /* Is it a scroll bar movement? */
5836 if (frame
&& ! NILP (bar_window
))
5838 Lisp_Object part_sym
;
5840 part_sym
= *scroll_bar_parts
[(int) part
];
5841 return Fcons (Qscroll_bar_movement
,
5842 (Fcons (Fcons (bar_window
,
5843 Fcons (Qvertical_scroll_bar
,
5844 Fcons (Fcons (x
, y
),
5845 Fcons (make_number (time
),
5851 /* Or is it an ordinary mouse movement? */
5854 Lisp_Object position
;
5856 position
= make_lispy_position (frame
, &x
, &y
, time
);
5858 return Fcons (Qmouse_movement
,
5864 #endif /* HAVE_MOUSE */
5866 /* Construct a switch frame event. */
5868 make_lispy_switch_frame (frame
)
5871 return Fcons (Qswitch_frame
, Fcons (frame
, Qnil
));
5874 /* Manipulating modifiers. */
5876 /* Parse the name of SYMBOL, and return the set of modifiers it contains.
5878 If MODIFIER_END is non-zero, set *MODIFIER_END to the position in
5879 SYMBOL's name of the end of the modifiers; the string from this
5880 position is the unmodified symbol name.
5882 This doesn't use any caches. */
5885 parse_modifiers_uncached (symbol
, modifier_end
)
5893 CHECK_SYMBOL (symbol
);
5896 name
= SYMBOL_NAME (symbol
);
5898 for (i
= 0; i
+2 <= SBYTES (name
); )
5900 int this_mod_end
= 0;
5903 /* See if the name continues with a modifier word.
5904 Check that the word appears, but don't check what follows it.
5905 Set this_mod and this_mod_end to record what we find. */
5907 switch (SREF (name
, i
))
5909 #define SINGLE_LETTER_MOD(BIT) \
5910 (this_mod_end = i + 1, this_mod = BIT)
5913 SINGLE_LETTER_MOD (alt_modifier
);
5917 SINGLE_LETTER_MOD (ctrl_modifier
);
5921 SINGLE_LETTER_MOD (hyper_modifier
);
5925 SINGLE_LETTER_MOD (meta_modifier
);
5929 SINGLE_LETTER_MOD (shift_modifier
);
5933 SINGLE_LETTER_MOD (super_modifier
);
5936 #undef SINGLE_LETTER_MOD
5938 #define MULTI_LETTER_MOD(BIT, NAME, LEN) \
5939 if (i + LEN + 1 <= SBYTES (name) \
5940 && ! strncmp (SDATA (name) + i, NAME, LEN)) \
5942 this_mod_end = i + LEN; \
5947 MULTI_LETTER_MOD (drag_modifier
, "drag", 4);
5948 MULTI_LETTER_MOD (down_modifier
, "down", 4);
5949 MULTI_LETTER_MOD (double_modifier
, "double", 6);
5953 MULTI_LETTER_MOD (triple_modifier
, "triple", 6);
5955 #undef MULTI_LETTER_MOD
5959 /* If we found no modifier, stop looking for them. */
5960 if (this_mod_end
== 0)
5963 /* Check there is a dash after the modifier, so that it
5964 really is a modifier. */
5965 if (this_mod_end
>= SBYTES (name
)
5966 || SREF (name
, this_mod_end
) != '-')
5969 /* This modifier is real; look for another. */
5970 modifiers
|= this_mod
;
5971 i
= this_mod_end
+ 1;
5974 /* Should we include the `click' modifier? */
5975 if (! (modifiers
& (down_modifier
| drag_modifier
5976 | double_modifier
| triple_modifier
))
5977 && i
+ 7 == SBYTES (name
)
5978 && strncmp (SDATA (name
) + i
, "mouse-", 6) == 0
5979 && ('0' <= SREF (name
, i
+ 6) && SREF (name
, i
+ 6) <= '9'))
5980 modifiers
|= click_modifier
;
5988 /* Return a symbol whose name is the modifier prefixes for MODIFIERS
5989 prepended to the string BASE[0..BASE_LEN-1].
5990 This doesn't use any caches. */
5992 apply_modifiers_uncached (modifiers
, base
, base_len
, base_len_byte
)
5995 int base_len
, base_len_byte
;
5997 /* Since BASE could contain nulls, we can't use intern here; we have
5998 to use Fintern, which expects a genuine Lisp_String, and keeps a
6001 = (char *) alloca (sizeof ("A-C-H-M-S-s-down-drag-double-triple-"));
6007 /* Only the event queue may use the `up' modifier; it should always
6008 be turned into a click or drag event before presented to lisp code. */
6009 if (modifiers
& up_modifier
)
6012 if (modifiers
& alt_modifier
) { *p
++ = 'A'; *p
++ = '-'; }
6013 if (modifiers
& ctrl_modifier
) { *p
++ = 'C'; *p
++ = '-'; }
6014 if (modifiers
& hyper_modifier
) { *p
++ = 'H'; *p
++ = '-'; }
6015 if (modifiers
& meta_modifier
) { *p
++ = 'M'; *p
++ = '-'; }
6016 if (modifiers
& shift_modifier
) { *p
++ = 'S'; *p
++ = '-'; }
6017 if (modifiers
& super_modifier
) { *p
++ = 's'; *p
++ = '-'; }
6018 if (modifiers
& double_modifier
) { strcpy (p
, "double-"); p
+= 7; }
6019 if (modifiers
& triple_modifier
) { strcpy (p
, "triple-"); p
+= 7; }
6020 if (modifiers
& down_modifier
) { strcpy (p
, "down-"); p
+= 5; }
6021 if (modifiers
& drag_modifier
) { strcpy (p
, "drag-"); p
+= 5; }
6022 /* The click modifier is denoted by the absence of other modifiers. */
6026 mod_len
= p
- new_mods
;
6030 Lisp_Object new_name
;
6032 new_name
= make_uninit_multibyte_string (mod_len
+ base_len
,
6033 mod_len
+ base_len_byte
);
6034 bcopy (new_mods
, SDATA (new_name
), mod_len
);
6035 bcopy (base
, SDATA (new_name
) + mod_len
, base_len_byte
);
6037 return Fintern (new_name
, Qnil
);
6042 static char *modifier_names
[] =
6044 "up", "down", "drag", "click", "double", "triple", 0, 0,
6045 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
6046 0, 0, "alt", "super", "hyper", "shift", "control", "meta"
6048 #define NUM_MOD_NAMES (sizeof (modifier_names) / sizeof (modifier_names[0]))
6050 static Lisp_Object modifier_symbols
;
6052 /* Return the list of modifier symbols corresponding to the mask MODIFIERS. */
6054 lispy_modifier_list (modifiers
)
6057 Lisp_Object modifier_list
;
6060 modifier_list
= Qnil
;
6061 for (i
= 0; (1<<i
) <= modifiers
&& i
< NUM_MOD_NAMES
; i
++)
6062 if (modifiers
& (1<<i
))
6063 modifier_list
= Fcons (XVECTOR (modifier_symbols
)->contents
[i
],
6066 return modifier_list
;
6070 /* Parse the modifiers on SYMBOL, and return a list like (UNMODIFIED MASK),
6071 where UNMODIFIED is the unmodified form of SYMBOL,
6072 MASK is the set of modifiers present in SYMBOL's name.
6073 This is similar to parse_modifiers_uncached, but uses the cache in
6074 SYMBOL's Qevent_symbol_element_mask property, and maintains the
6075 Qevent_symbol_elements property. */
6078 parse_modifiers (symbol
)
6081 Lisp_Object elements
;
6083 elements
= Fget (symbol
, Qevent_symbol_element_mask
);
6084 if (CONSP (elements
))
6089 int modifiers
= parse_modifiers_uncached (symbol
, &end
);
6090 Lisp_Object unmodified
;
6093 unmodified
= Fintern (make_string (SDATA (SYMBOL_NAME (symbol
)) + end
,
6094 SBYTES (SYMBOL_NAME (symbol
)) - end
),
6097 if (modifiers
& ~INTMASK
)
6099 XSETFASTINT (mask
, modifiers
);
6100 elements
= Fcons (unmodified
, Fcons (mask
, Qnil
));
6102 /* Cache the parsing results on SYMBOL. */
6103 Fput (symbol
, Qevent_symbol_element_mask
,
6105 Fput (symbol
, Qevent_symbol_elements
,
6106 Fcons (unmodified
, lispy_modifier_list (modifiers
)));
6108 /* Since we know that SYMBOL is modifiers applied to unmodified,
6109 it would be nice to put that in unmodified's cache.
6110 But we can't, since we're not sure that parse_modifiers is
6117 /* Apply the modifiers MODIFIERS to the symbol BASE.
6118 BASE must be unmodified.
6120 This is like apply_modifiers_uncached, but uses BASE's
6121 Qmodifier_cache property, if present. It also builds
6122 Qevent_symbol_elements properties, since it has that info anyway.
6124 apply_modifiers copies the value of BASE's Qevent_kind property to
6125 the modified symbol. */
6127 apply_modifiers (modifiers
, base
)
6131 Lisp_Object cache
, index
, entry
, new_symbol
;
6133 /* Mask out upper bits. We don't know where this value's been. */
6134 modifiers
&= INTMASK
;
6136 /* The click modifier never figures into cache indices. */
6137 cache
= Fget (base
, Qmodifier_cache
);
6138 XSETFASTINT (index
, (modifiers
& ~click_modifier
));
6139 entry
= assq_no_quit (index
, cache
);
6142 new_symbol
= XCDR (entry
);
6145 /* We have to create the symbol ourselves. */
6146 new_symbol
= apply_modifiers_uncached (modifiers
,
6147 SDATA (SYMBOL_NAME (base
)),
6148 SCHARS (SYMBOL_NAME (base
)),
6149 SBYTES (SYMBOL_NAME (base
)));
6151 /* Add the new symbol to the base's cache. */
6152 entry
= Fcons (index
, new_symbol
);
6153 Fput (base
, Qmodifier_cache
, Fcons (entry
, cache
));
6155 /* We have the parsing info now for free, so we could add it to
6157 XSETFASTINT (index, modifiers);
6158 Fput (new_symbol, Qevent_symbol_element_mask,
6159 Fcons (base, Fcons (index, Qnil)));
6160 Fput (new_symbol, Qevent_symbol_elements,
6161 Fcons (base, lispy_modifier_list (modifiers)));
6162 Sadly, this is only correct if `base' is indeed a base event,
6163 which is not necessarily the case. -stef */
6166 /* Make sure this symbol is of the same kind as BASE.
6168 You'd think we could just set this once and for all when we
6169 intern the symbol above, but reorder_modifiers may call us when
6170 BASE's property isn't set right; we can't assume that just
6171 because it has a Qmodifier_cache property it must have its
6172 Qevent_kind set right as well. */
6173 if (NILP (Fget (new_symbol
, Qevent_kind
)))
6177 kind
= Fget (base
, Qevent_kind
);
6179 Fput (new_symbol
, Qevent_kind
, kind
);
6186 /* Given a symbol whose name begins with modifiers ("C-", "M-", etc),
6187 return a symbol with the modifiers placed in the canonical order.
6188 Canonical order is alphabetical, except for down and drag, which
6189 always come last. The 'click' modifier is never written out.
6191 Fdefine_key calls this to make sure that (for example) C-M-foo
6192 and M-C-foo end up being equivalent in the keymap. */
6195 reorder_modifiers (symbol
)
6198 /* It's hopefully okay to write the code this way, since everything
6199 will soon be in caches, and no consing will be done at all. */
6202 parsed
= parse_modifiers (symbol
);
6203 return apply_modifiers ((int) XINT (XCAR (XCDR (parsed
))),
6208 /* For handling events, we often want to produce a symbol whose name
6209 is a series of modifier key prefixes ("M-", "C-", etcetera) attached
6210 to some base, like the name of a function key or mouse button.
6211 modify_event_symbol produces symbols of this sort.
6213 NAME_TABLE should point to an array of strings, such that NAME_TABLE[i]
6214 is the name of the i'th symbol. TABLE_SIZE is the number of elements
6217 Alternatively, NAME_ALIST_OR_STEM is either an alist mapping codes
6218 into symbol names, or a string specifying a name stem used to
6219 construct a symbol name or the form `STEM-N', where N is the decimal
6220 representation of SYMBOL_NUM. NAME_ALIST_OR_STEM is used if it is
6221 non-nil; otherwise NAME_TABLE is used.
6223 SYMBOL_TABLE should be a pointer to a Lisp_Object whose value will
6224 persist between calls to modify_event_symbol that it can use to
6225 store a cache of the symbols it's generated for this NAME_TABLE
6226 before. The object stored there may be a vector or an alist.
6228 SYMBOL_NUM is the number of the base name we want from NAME_TABLE.
6230 MODIFIERS is a set of modifier bits (as given in struct input_events)
6231 whose prefixes should be applied to the symbol name.
6233 SYMBOL_KIND is the value to be placed in the event_kind property of
6234 the returned symbol.
6236 The symbols we create are supposed to have an
6237 `event-symbol-elements' property, which lists the modifiers present
6238 in the symbol's name. */
6241 modify_event_symbol (symbol_num
, modifiers
, symbol_kind
, name_alist_or_stem
,
6242 name_table
, symbol_table
, table_size
)
6245 Lisp_Object symbol_kind
;
6246 Lisp_Object name_alist_or_stem
;
6248 Lisp_Object
*symbol_table
;
6249 unsigned int table_size
;
6252 Lisp_Object symbol_int
;
6254 /* Get rid of the "vendor-specific" bit here. */
6255 XSETINT (symbol_int
, symbol_num
& 0xffffff);
6257 /* Is this a request for a valid symbol? */
6258 if (symbol_num
< 0 || symbol_num
>= table_size
)
6261 if (CONSP (*symbol_table
))
6262 value
= Fcdr (assq_no_quit (symbol_int
, *symbol_table
));
6264 /* If *symbol_table doesn't seem to be initialized properly, fix that.
6265 *symbol_table should be a lisp vector TABLE_SIZE elements long,
6266 where the Nth element is the symbol for NAME_TABLE[N], or nil if
6267 we've never used that symbol before. */
6270 if (! VECTORP (*symbol_table
)
6271 || XVECTOR (*symbol_table
)->size
!= table_size
)
6275 XSETFASTINT (size
, table_size
);
6276 *symbol_table
= Fmake_vector (size
, Qnil
);
6279 value
= XVECTOR (*symbol_table
)->contents
[symbol_num
];
6282 /* Have we already used this symbol before? */
6285 /* No; let's create it. */
6286 if (CONSP (name_alist_or_stem
))
6287 value
= Fcdr_safe (Fassq (symbol_int
, name_alist_or_stem
));
6288 else if (STRINGP (name_alist_or_stem
))
6290 int len
= SBYTES (name_alist_or_stem
);
6291 char *buf
= (char *) alloca (len
+ 50);
6292 sprintf (buf
, "%s-%ld", SDATA (name_alist_or_stem
),
6293 (long) XINT (symbol_int
) + 1);
6294 value
= intern (buf
);
6296 else if (name_table
!= 0 && name_table
[symbol_num
])
6297 value
= intern (name_table
[symbol_num
]);
6299 #ifdef HAVE_WINDOW_SYSTEM
6302 char *name
= x_get_keysym_name (symbol_num
);
6304 value
= intern (name
);
6311 sprintf (buf
, "key-%d", symbol_num
);
6312 value
= intern (buf
);
6315 if (CONSP (*symbol_table
))
6316 *symbol_table
= Fcons (Fcons (symbol_int
, value
), *symbol_table
);
6318 XVECTOR (*symbol_table
)->contents
[symbol_num
] = value
;
6320 /* Fill in the cache entries for this symbol; this also
6321 builds the Qevent_symbol_elements property, which the user
6323 apply_modifiers (modifiers
& click_modifier
, value
);
6324 Fput (value
, Qevent_kind
, symbol_kind
);
6327 /* Apply modifiers to that symbol. */
6328 return apply_modifiers (modifiers
, value
);
6331 /* Convert a list that represents an event type,
6332 such as (ctrl meta backspace), into the usual representation of that
6333 event type as a number or a symbol. */
6335 DEFUN ("event-convert-list", Fevent_convert_list
, Sevent_convert_list
, 1, 1, 0,
6336 doc
: /* Convert the event description list EVENT-DESC to an event type.
6337 EVENT-DESC should contain one base event type (a character or symbol)
6338 and zero or more modifier names (control, meta, hyper, super, shift, alt,
6339 drag, down, double or triple). The base must be last.
6340 The return value is an event type (a character or symbol) which
6341 has the same base event type and all the specified modifiers. */)
6343 Lisp_Object event_desc
;
6351 while (CONSP (rest
))
6359 /* Given a symbol, see if it is a modifier name. */
6360 if (SYMBOLP (elt
) && CONSP (rest
))
6361 this = parse_solitary_modifier (elt
);
6365 else if (!NILP (base
))
6366 error ("Two bases given in one event");
6372 /* Let the symbol A refer to the character A. */
6373 if (SYMBOLP (base
) && SCHARS (SYMBOL_NAME (base
)) == 1)
6374 XSETINT (base
, SREF (SYMBOL_NAME (base
), 0));
6376 if (INTEGERP (base
))
6378 /* Turn (shift a) into A. */
6379 if ((modifiers
& shift_modifier
) != 0
6380 && (XINT (base
) >= 'a' && XINT (base
) <= 'z'))
6382 XSETINT (base
, XINT (base
) - ('a' - 'A'));
6383 modifiers
&= ~shift_modifier
;
6386 /* Turn (control a) into C-a. */
6387 if (modifiers
& ctrl_modifier
)
6388 return make_number ((modifiers
& ~ctrl_modifier
)
6389 | make_ctrl_char (XINT (base
)));
6391 return make_number (modifiers
| XINT (base
));
6393 else if (SYMBOLP (base
))
6394 return apply_modifiers (modifiers
, base
);
6397 error ("Invalid base event");
6402 /* Try to recognize SYMBOL as a modifier name.
6403 Return the modifier flag bit, or 0 if not recognized. */
6406 parse_solitary_modifier (symbol
)
6409 Lisp_Object name
= SYMBOL_NAME (symbol
);
6411 switch (SREF (name
, 0))
6413 #define SINGLE_LETTER_MOD(BIT) \
6414 if (SBYTES (name) == 1) \
6417 #define MULTI_LETTER_MOD(BIT, NAME, LEN) \
6418 if (LEN == SBYTES (name) \
6419 && ! strncmp (SDATA (name), NAME, LEN)) \
6423 SINGLE_LETTER_MOD (alt_modifier
);
6427 MULTI_LETTER_MOD (alt_modifier
, "alt", 3);
6431 SINGLE_LETTER_MOD (ctrl_modifier
);
6435 MULTI_LETTER_MOD (ctrl_modifier
, "ctrl", 4);
6436 MULTI_LETTER_MOD (ctrl_modifier
, "control", 7);
6440 SINGLE_LETTER_MOD (hyper_modifier
);
6444 MULTI_LETTER_MOD (hyper_modifier
, "hyper", 5);
6448 SINGLE_LETTER_MOD (meta_modifier
);
6452 MULTI_LETTER_MOD (meta_modifier
, "meta", 4);
6456 SINGLE_LETTER_MOD (shift_modifier
);
6460 MULTI_LETTER_MOD (shift_modifier
, "shift", 5);
6461 MULTI_LETTER_MOD (super_modifier
, "super", 5);
6462 SINGLE_LETTER_MOD (super_modifier
);
6466 MULTI_LETTER_MOD (drag_modifier
, "drag", 4);
6467 MULTI_LETTER_MOD (down_modifier
, "down", 4);
6468 MULTI_LETTER_MOD (double_modifier
, "double", 6);
6472 MULTI_LETTER_MOD (triple_modifier
, "triple", 6);
6475 #undef SINGLE_LETTER_MOD
6476 #undef MULTI_LETTER_MOD
6482 /* Return 1 if EVENT is a list whose elements are all integers or symbols.
6483 Such a list is not valid as an event,
6484 but it can be a Lucid-style event type list. */
6487 lucid_event_type_list_p (object
)
6492 if (! CONSP (object
))
6495 if (EQ (XCAR (object
), Qhelp_echo
)
6496 || EQ (XCAR (object
), Qvertical_line
)
6497 || EQ (XCAR (object
), Qmode_line
)
6498 || EQ (XCAR (object
), Qheader_line
))
6501 for (tail
= object
; CONSP (tail
); tail
= XCDR (tail
))
6505 if (! (INTEGERP (elt
) || SYMBOLP (elt
)))
6512 /* Store into *addr a value nonzero if terminal input chars are available.
6513 Serves the purpose of ioctl (0, FIONREAD, addr)
6514 but works even if FIONREAD does not exist.
6515 (In fact, this may actually read some input.)
6517 If READABLE_EVENTS_DO_TIMERS_NOW is set in FLAGS, actually run
6518 timer events that are ripe.
6519 If READABLE_EVENTS_FILTER_EVENTS is set in FLAGS, ignore internal
6520 events (FOCUS_IN_EVENT).
6521 If READABLE_EVENTS_IGNORE_SQUEEZABLES is set in FLAGS, ignore mouse
6525 get_input_pending (addr
, flags
)
6529 /* First of all, have we already counted some input? */
6530 *addr
= (!NILP (Vquit_flag
) || readable_events (flags
));
6532 /* If input is being read as it arrives, and we have none, there is none. */
6533 if (*addr
> 0 || (interrupt_input
&& ! interrupts_deferred
))
6536 /* Try to read some input and see how much we get. */
6538 *addr
= (!NILP (Vquit_flag
) || readable_events (flags
));
6541 /* Interface to read_avail_input, blocking SIGIO or SIGALRM if necessary. */
6544 gobble_input (expected
)
6549 if (interrupt_input
)
6552 mask
= sigblock (sigmask (SIGIO
));
6553 read_avail_input (expected
);
6557 #ifdef POLL_FOR_INPUT
6558 if (read_socket_hook
&& !interrupt_input
&& poll_suppress_count
== 0)
6561 mask
= sigblock (sigmask (SIGALRM
));
6562 read_avail_input (expected
);
6568 read_avail_input (expected
);
6572 /* Put a BUFFER_SWITCH_EVENT in the buffer
6573 so that read_key_sequence will notice the new current buffer. */
6576 record_asynch_buffer_change ()
6578 struct input_event event
;
6582 event
.kind
= BUFFER_SWITCH_EVENT
;
6583 event
.frame_or_window
= Qnil
;
6587 /* We don't need a buffer-switch event unless Emacs is waiting for input.
6588 The purpose of the event is to make read_key_sequence look up the
6589 keymaps again. If we aren't in read_key_sequence, we don't need one,
6590 and the event could cause trouble by messing up (input-pending-p). */
6591 tem
= Fwaiting_for_user_input_p ();
6595 /* We never need these events if we have no asynchronous subprocesses. */
6599 /* Make sure no interrupt happens while storing the event. */
6601 if (interrupt_input
)
6604 mask
= sigblock (sigmask (SIGIO
));
6605 kbd_buffer_store_event (&event
);
6612 kbd_buffer_store_event (&event
);
6619 /* Read any terminal input already buffered up by the system
6620 into the kbd_buffer, but do not wait.
6622 EXPECTED should be nonzero if the caller knows there is some input.
6624 Except on VMS, all input is read by this function.
6625 If interrupt_input is nonzero, this function MUST be called
6626 only when SIGIO is blocked.
6628 Returns the number of keyboard chars read, or -1 meaning
6629 this is a bad time to try to read input. */
6632 read_avail_input (expected
)
6638 if (read_socket_hook
)
6641 struct input_event hold_quit
;
6643 EVENT_INIT (hold_quit
);
6644 hold_quit
.kind
= NO_EVENT
;
6646 /* No need for FIONREAD or fcntl; just say don't wait. */
6647 while (nr
= (*read_socket_hook
) (input_fd
, expected
, &hold_quit
), nr
> 0)
6652 if (hold_quit
.kind
!= NO_EVENT
)
6653 kbd_buffer_store_event (&hold_quit
);
6657 /* Using KBD_BUFFER_SIZE - 1 here avoids reading more than
6658 the kbd_buffer can really hold. That may prevent loss
6659 of characters on some systems when input is stuffed at us. */
6660 unsigned char cbuf
[KBD_BUFFER_SIZE
- 1];
6663 /* Determine how many characters we should *try* to read. */
6666 #else /* not WINDOWSNT */
6668 n_to_read
= dos_keysns ();
6671 #else /* not MSDOS */
6673 /* Find out how much input is available. */
6674 if (ioctl (input_fd
, FIONREAD
, &n_to_read
) < 0)
6675 /* Formerly simply reported no input, but that sometimes led to
6676 a failure of Emacs to terminate.
6677 SIGHUP seems appropriate if we can't reach the terminal. */
6678 /* ??? Is it really right to send the signal just to this process
6679 rather than to the whole process group?
6680 Perhaps on systems with FIONREAD Emacs is alone in its group. */
6682 if (! noninteractive
)
6683 kill (getpid (), SIGHUP
);
6689 if (n_to_read
> sizeof cbuf
)
6690 n_to_read
= sizeof cbuf
;
6691 #else /* no FIONREAD */
6692 #if defined (USG) || defined (DGUX) || defined(CYGWIN)
6693 /* Read some input if available, but don't wait. */
6694 n_to_read
= sizeof cbuf
;
6695 fcntl (input_fd
, F_SETFL
, O_NDELAY
);
6700 #endif /* not MSDOS */
6701 #endif /* not WINDOWSNT */
6703 /* Now read; for one reason or another, this will not block.
6704 NREAD is set to the number of chars read. */
6708 cbuf
[0] = dos_keyread ();
6711 nread
= emacs_read (input_fd
, cbuf
, n_to_read
);
6713 /* POSIX infers that processes which are not in the session leader's
6714 process group won't get SIGHUP's at logout time. BSDI adheres to
6715 this part standard and returns -1 from read (0) with errno==EIO
6716 when the control tty is taken away.
6717 Jeffrey Honig <jch@bsdi.com> says this is generally safe. */
6718 if (nread
== -1 && errno
== EIO
)
6720 #if defined (AIX) && (! defined (aix386) && defined (_BSD))
6721 /* The kernel sometimes fails to deliver SIGHUP for ptys.
6722 This looks incorrect, but it isn't, because _BSD causes
6723 O_NDELAY to be defined in fcntl.h as O_NONBLOCK,
6724 and that causes a value other than 0 when there is no input. */
6730 /* We used to retry the read if it was interrupted.
6731 But this does the wrong thing when O_NDELAY causes
6732 an EAGAIN error. Does anybody know of a situation
6733 where a retry is actually needed? */
6735 nread
< 0 && (errno
== EAGAIN
6749 #if defined (USG) || defined (DGUX) || defined (CYGWIN)
6750 fcntl (input_fd
, F_SETFL
, 0);
6751 #endif /* USG or DGUX or CYGWIN */
6752 #endif /* no FIONREAD */
6753 for (i
= 0; i
< nread
; i
++)
6755 struct input_event buf
;
6757 buf
.kind
= ASCII_KEYSTROKE_EVENT
;
6759 if (meta_key
== 1 && (cbuf
[i
] & 0x80))
6760 buf
.modifiers
= meta_modifier
;
6765 buf
.frame_or_window
= selected_frame
;
6768 kbd_buffer_store_event (&buf
);
6769 /* Don't look at input that follows a C-g too closely.
6770 This reduces lossage due to autorepeat on C-g. */
6771 if (buf
.kind
== ASCII_KEYSTROKE_EVENT
6772 && buf
.code
== quit_char
)
6779 #endif /* not VMS */
6782 handle_async_input ()
6785 extern int select_alarmed
;
6788 interrupt_input_pending
= 0;
6793 nread
= read_avail_input (1);
6794 /* -1 means it's not ok to read the input now.
6795 UNBLOCK_INPUT will read it later; now, avoid infinite loop.
6796 0 means there was no keyboard input available. */
6801 select_alarmed
= 1; /* Force the select emulator back to life */
6806 #ifdef SIGIO /* for entire page */
6807 /* Note SIGIO has been undef'd if FIONREAD is missing. */
6810 input_available_signal (signo
)
6813 /* Must preserve main program's value of errno. */
6814 int old_errno
= errno
;
6815 #if defined (USG) && !defined (POSIX_SIGNALS)
6816 /* USG systems forget handlers when they are used;
6817 must reestablish each time */
6818 signal (signo
, input_available_signal
);
6826 interrupt_input_pending
= 1;
6828 SIGNAL_THREAD_CHECK (signo
);
6831 if (input_available_clear_time
)
6832 EMACS_SET_SECS_USECS (*input_available_clear_time
, 0, 0);
6835 handle_async_input ();
6845 /* Send ourselves a SIGIO.
6847 This function exists so that the UNBLOCK_INPUT macro in
6848 blockinput.h can have some way to take care of input we put off
6849 dealing with, without assuming that every file which uses
6850 UNBLOCK_INPUT also has #included the files necessary to get SIGIO. */
6852 reinvoke_input_signal ()
6855 handle_async_input ();
6861 static void menu_bar_item
P_ ((Lisp_Object
, Lisp_Object
, Lisp_Object
, void*));
6862 static Lisp_Object menu_bar_one_keymap_changed_items
;
6864 /* These variables hold the vector under construction within
6865 menu_bar_items and its subroutines, and the current index
6866 for storing into that vector. */
6867 static Lisp_Object menu_bar_items_vector
;
6868 static int menu_bar_items_index
;
6870 /* Return a vector of menu items for a menu bar, appropriate
6871 to the current buffer. Each item has three elements in the vector:
6874 OLD is an old vector we can optionally reuse, or nil. */
6877 menu_bar_items (old
)
6880 /* The number of keymaps we're scanning right now, and the number of
6881 keymaps we have allocated space for. */
6884 /* maps[0..nmaps-1] are the prefix definitions of KEYBUF[0..t-1]
6885 in the current keymaps, or nil where it is not a prefix. */
6888 Lisp_Object def
, tail
;
6897 struct gcpro gcpro1
;
6899 /* In order to build the menus, we need to call the keymap
6900 accessors. They all call QUIT. But this function is called
6901 during redisplay, during which a quit is fatal. So inhibit
6902 quitting while building the menus.
6903 We do this instead of specbind because (1) errors will clear it anyway
6904 and (2) this avoids risk of specpdl overflow. */
6905 oquit
= Vinhibit_quit
;
6909 menu_bar_items_vector
= old
;
6911 menu_bar_items_vector
= Fmake_vector (make_number (24), Qnil
);
6912 menu_bar_items_index
= 0;
6914 GCPRO1 (menu_bar_items_vector
);
6916 /* Build our list of keymaps.
6917 If we recognize a function key and replace its escape sequence in
6918 keybuf with its symbol, or if the sequence starts with a mouse
6919 click and we need to switch buffers, we jump back here to rebuild
6920 the initial keymaps from the current buffer. */
6924 /* Should overriding-terminal-local-map and overriding-local-map apply? */
6925 if (!NILP (Voverriding_local_map_menu_flag
))
6927 /* Yes, use them (if non-nil) as well as the global map. */
6928 maps
= (Lisp_Object
*) alloca (3 * sizeof (maps
[0]));
6930 if (!NILP (current_kboard
->Voverriding_terminal_local_map
))
6931 maps
[nmaps
++] = current_kboard
->Voverriding_terminal_local_map
;
6932 if (!NILP (Voverriding_local_map
))
6933 maps
[nmaps
++] = Voverriding_local_map
;
6937 /* No, so use major and minor mode keymaps and keymap property.
6938 Note that menu-bar bindings in the local-map and keymap
6939 properties may not work reliable, as they are only
6940 recognized when the menu-bar (or mode-line) is updated,
6941 which does not normally happen after every command. */
6944 nminor
= current_minor_maps (NULL
, &tmaps
);
6945 maps
= (Lisp_Object
*) alloca ((nminor
+ 3) * sizeof (maps
[0]));
6947 if (tem
= get_local_map (PT
, current_buffer
, Qkeymap
), !NILP (tem
))
6948 maps
[nmaps
++] = tem
;
6949 bcopy (tmaps
, (void *) (maps
+ nmaps
), nminor
* sizeof (maps
[0]));
6951 maps
[nmaps
++] = get_local_map (PT
, current_buffer
, Qlocal_map
);
6953 maps
[nmaps
++] = current_global_map
;
6956 /* Look up in each map the dummy prefix key `menu-bar'. */
6960 for (mapno
= nmaps
- 1; mapno
>= 0; mapno
--)
6961 if (!NILP (maps
[mapno
]))
6963 def
= get_keymap (access_keymap (maps
[mapno
], Qmenu_bar
, 1, 0, 1),
6967 menu_bar_one_keymap_changed_items
= Qnil
;
6968 map_keymap (def
, menu_bar_item
, Qnil
, NULL
, 1);
6972 /* Move to the end those items that should be at the end. */
6974 for (tail
= Vmenu_bar_final_items
; CONSP (tail
); tail
= XCDR (tail
))
6977 int end
= menu_bar_items_index
;
6979 for (i
= 0; i
< end
; i
+= 4)
6980 if (EQ (XCAR (tail
), XVECTOR (menu_bar_items_vector
)->contents
[i
]))
6982 Lisp_Object tem0
, tem1
, tem2
, tem3
;
6983 /* Move the item at index I to the end,
6984 shifting all the others forward. */
6985 tem0
= XVECTOR (menu_bar_items_vector
)->contents
[i
+ 0];
6986 tem1
= XVECTOR (menu_bar_items_vector
)->contents
[i
+ 1];
6987 tem2
= XVECTOR (menu_bar_items_vector
)->contents
[i
+ 2];
6988 tem3
= XVECTOR (menu_bar_items_vector
)->contents
[i
+ 3];
6990 bcopy (&XVECTOR (menu_bar_items_vector
)->contents
[i
+ 4],
6991 &XVECTOR (menu_bar_items_vector
)->contents
[i
],
6992 (end
- i
- 4) * sizeof (Lisp_Object
));
6993 XVECTOR (menu_bar_items_vector
)->contents
[end
- 4] = tem0
;
6994 XVECTOR (menu_bar_items_vector
)->contents
[end
- 3] = tem1
;
6995 XVECTOR (menu_bar_items_vector
)->contents
[end
- 2] = tem2
;
6996 XVECTOR (menu_bar_items_vector
)->contents
[end
- 1] = tem3
;
7001 /* Add nil, nil, nil, nil at the end. */
7002 i
= menu_bar_items_index
;
7003 if (i
+ 4 > XVECTOR (menu_bar_items_vector
)->size
)
7006 tem
= Fmake_vector (make_number (2 * i
), Qnil
);
7007 bcopy (XVECTOR (menu_bar_items_vector
)->contents
,
7008 XVECTOR (tem
)->contents
, i
* sizeof (Lisp_Object
));
7009 menu_bar_items_vector
= tem
;
7011 /* Add this item. */
7012 XVECTOR (menu_bar_items_vector
)->contents
[i
++] = Qnil
;
7013 XVECTOR (menu_bar_items_vector
)->contents
[i
++] = Qnil
;
7014 XVECTOR (menu_bar_items_vector
)->contents
[i
++] = Qnil
;
7015 XVECTOR (menu_bar_items_vector
)->contents
[i
++] = Qnil
;
7016 menu_bar_items_index
= i
;
7018 Vinhibit_quit
= oquit
;
7020 return menu_bar_items_vector
;
7023 /* Add one item to menu_bar_items_vector, for KEY, ITEM_STRING and DEF.
7024 If there's already an item for KEY, add this DEF to it. */
7026 Lisp_Object item_properties
;
7029 menu_bar_item (key
, item
, dummy1
, dummy2
)
7030 Lisp_Object key
, item
, dummy1
;
7033 struct gcpro gcpro1
;
7037 if (EQ (item
, Qundefined
))
7039 /* If a map has an explicit `undefined' as definition,
7040 discard any previously made menu bar item. */
7042 for (i
= 0; i
< menu_bar_items_index
; i
+= 4)
7043 if (EQ (key
, XVECTOR (menu_bar_items_vector
)->contents
[i
]))
7045 if (menu_bar_items_index
> i
+ 4)
7046 bcopy (&XVECTOR (menu_bar_items_vector
)->contents
[i
+ 4],
7047 &XVECTOR (menu_bar_items_vector
)->contents
[i
],
7048 (menu_bar_items_index
- i
- 4) * sizeof (Lisp_Object
));
7049 menu_bar_items_index
-= 4;
7053 /* If this keymap has already contributed to this KEY,
7054 don't contribute to it a second time. */
7055 tem
= Fmemq (key
, menu_bar_one_keymap_changed_items
);
7056 if (!NILP (tem
) || NILP (item
))
7059 menu_bar_one_keymap_changed_items
7060 = Fcons (key
, menu_bar_one_keymap_changed_items
);
7062 /* We add to menu_bar_one_keymap_changed_items before doing the
7063 parse_menu_item, so that if it turns out it wasn't a menu item,
7064 it still correctly hides any further menu item. */
7066 i
= parse_menu_item (item
, 0, 1);
7071 item
= XVECTOR (item_properties
)->contents
[ITEM_PROPERTY_DEF
];
7073 /* Find any existing item for this KEY. */
7074 for (i
= 0; i
< menu_bar_items_index
; i
+= 4)
7075 if (EQ (key
, XVECTOR (menu_bar_items_vector
)->contents
[i
]))
7078 /* If we did not find this KEY, add it at the end. */
7079 if (i
== menu_bar_items_index
)
7081 /* If vector is too small, get a bigger one. */
7082 if (i
+ 4 > XVECTOR (menu_bar_items_vector
)->size
)
7085 tem
= Fmake_vector (make_number (2 * i
), Qnil
);
7086 bcopy (XVECTOR (menu_bar_items_vector
)->contents
,
7087 XVECTOR (tem
)->contents
, i
* sizeof (Lisp_Object
));
7088 menu_bar_items_vector
= tem
;
7091 /* Add this item. */
7092 XVECTOR (menu_bar_items_vector
)->contents
[i
++] = key
;
7093 XVECTOR (menu_bar_items_vector
)->contents
[i
++]
7094 = XVECTOR (item_properties
)->contents
[ITEM_PROPERTY_NAME
];
7095 XVECTOR (menu_bar_items_vector
)->contents
[i
++] = Fcons (item
, Qnil
);
7096 XVECTOR (menu_bar_items_vector
)->contents
[i
++] = make_number (0);
7097 menu_bar_items_index
= i
;
7099 /* We did find an item for this KEY. Add ITEM to its list of maps. */
7103 old
= XVECTOR (menu_bar_items_vector
)->contents
[i
+ 2];
7104 /* If the new and the old items are not both keymaps,
7105 the lookup will only find `item'. */
7106 item
= Fcons (item
, KEYMAPP (item
) && KEYMAPP (XCAR (old
)) ? old
: Qnil
);
7107 XVECTOR (menu_bar_items_vector
)->contents
[i
+ 2] = item
;
7111 /* This is used as the handler when calling menu_item_eval_property. */
7113 menu_item_eval_property_1 (arg
)
7116 /* If we got a quit from within the menu computation,
7117 quit all the way out of it. This takes care of C-] in the debugger. */
7118 if (CONSP (arg
) && EQ (XCAR (arg
), Qquit
))
7119 Fsignal (Qquit
, Qnil
);
7124 /* Evaluate an expression and return the result (or nil if something
7125 went wrong). Used to evaluate dynamic parts of menu items. */
7127 menu_item_eval_property (sexpr
)
7130 int count
= SPECPDL_INDEX ();
7132 specbind (Qinhibit_redisplay
, Qt
);
7133 val
= internal_condition_case_1 (Feval
, sexpr
, Qerror
,
7134 menu_item_eval_property_1
);
7135 return unbind_to (count
, val
);
7138 /* This function parses a menu item and leaves the result in the
7139 vector item_properties.
7140 ITEM is a key binding, a possible menu item.
7141 If NOTREAL is nonzero, only check for equivalent key bindings, don't
7142 evaluate dynamic expressions in the menu item.
7143 INMENUBAR is > 0 when this is considered for an entry in a menu bar
7145 INMENUBAR is < 0 when this is considered for an entry in a keyboard menu.
7146 parse_menu_item returns true if the item is a menu item and false
7150 parse_menu_item (item
, notreal
, inmenubar
)
7152 int notreal
, inmenubar
;
7154 Lisp_Object def
, tem
, item_string
, start
;
7155 Lisp_Object cachelist
;
7157 Lisp_Object keyhint
;
7168 /* Create item_properties vector if necessary. */
7169 if (NILP (item_properties
))
7171 = Fmake_vector (make_number (ITEM_PROPERTY_ENABLE
+ 1), Qnil
);
7173 /* Initialize optional entries. */
7174 for (i
= ITEM_PROPERTY_DEF
; i
< ITEM_PROPERTY_ENABLE
; i
++)
7175 AREF (item_properties
, i
) = Qnil
;
7176 AREF (item_properties
, ITEM_PROPERTY_ENABLE
) = Qt
;
7178 /* Save the item here to protect it from GC. */
7179 AREF (item_properties
, ITEM_PROPERTY_ITEM
) = item
;
7181 item_string
= XCAR (item
);
7185 if (STRINGP (item_string
))
7187 /* Old format menu item. */
7188 AREF (item_properties
, ITEM_PROPERTY_NAME
) = item_string
;
7190 /* Maybe help string. */
7191 if (CONSP (item
) && STRINGP (XCAR (item
)))
7193 AREF (item_properties
, ITEM_PROPERTY_HELP
) = XCAR (item
);
7198 /* Maybe key binding cache. */
7199 if (CONSP (item
) && CONSP (XCAR (item
))
7200 && (NILP (XCAR (XCAR (item
)))
7201 || VECTORP (XCAR (XCAR (item
)))))
7203 cachelist
= XCAR (item
);
7207 /* This is the real definition--the function to run. */
7208 AREF (item_properties
, ITEM_PROPERTY_DEF
) = item
;
7210 /* Get enable property, if any. */
7213 tem
= Fget (item
, Qmenu_enable
);
7215 AREF (item_properties
, ITEM_PROPERTY_ENABLE
) = tem
;
7218 else if (EQ (item_string
, Qmenu_item
) && CONSP (item
))
7220 /* New format menu item. */
7221 AREF (item_properties
, ITEM_PROPERTY_NAME
) = XCAR (item
);
7222 start
= XCDR (item
);
7225 /* We have a real binding. */
7226 AREF (item_properties
, ITEM_PROPERTY_DEF
) = XCAR (start
);
7228 item
= XCDR (start
);
7229 /* Is there a cache list with key equivalences. */
7230 if (CONSP (item
) && CONSP (XCAR (item
)))
7232 cachelist
= XCAR (item
);
7236 /* Parse properties. */
7237 while (CONSP (item
) && CONSP (XCDR (item
)))
7242 if (EQ (tem
, QCenable
))
7243 AREF (item_properties
, ITEM_PROPERTY_ENABLE
) = XCAR (item
);
7244 else if (EQ (tem
, QCvisible
) && !notreal
)
7246 /* If got a visible property and that evaluates to nil
7247 then ignore this item. */
7248 tem
= menu_item_eval_property (XCAR (item
));
7252 else if (EQ (tem
, QChelp
))
7253 AREF (item_properties
, ITEM_PROPERTY_HELP
) = XCAR (item
);
7254 else if (EQ (tem
, QCfilter
))
7256 else if (EQ (tem
, QCkey_sequence
))
7259 if (NILP (cachelist
)
7260 && (SYMBOLP (tem
) || STRINGP (tem
) || VECTORP (tem
)))
7261 /* Be GC protected. Set keyhint to item instead of tem. */
7264 else if (EQ (tem
, QCkeys
))
7267 if (CONSP (tem
) || (STRINGP (tem
) && NILP (cachelist
)))
7268 AREF (item_properties
, ITEM_PROPERTY_KEYEQ
) = tem
;
7270 else if (EQ (tem
, QCbutton
) && CONSP (XCAR (item
)))
7275 if (EQ (type
, QCtoggle
) || EQ (type
, QCradio
))
7277 AREF (item_properties
, ITEM_PROPERTY_SELECTED
)
7279 AREF (item_properties
, ITEM_PROPERTY_TYPE
)
7286 else if (inmenubar
|| !NILP (start
))
7290 return 0; /* not a menu item */
7292 /* If item string is not a string, evaluate it to get string.
7293 If we don't get a string, skip this item. */
7294 item_string
= AREF (item_properties
, ITEM_PROPERTY_NAME
);
7295 if (!(STRINGP (item_string
) || notreal
))
7297 item_string
= menu_item_eval_property (item_string
);
7298 if (!STRINGP (item_string
))
7300 AREF (item_properties
, ITEM_PROPERTY_NAME
) = item_string
;
7303 /* If got a filter apply it on definition. */
7304 def
= AREF (item_properties
, ITEM_PROPERTY_DEF
);
7307 def
= menu_item_eval_property (list2 (XCAR (filter
),
7308 list2 (Qquote
, def
)));
7310 AREF (item_properties
, ITEM_PROPERTY_DEF
) = def
;
7313 /* Enable or disable selection of item. */
7314 tem
= AREF (item_properties
, ITEM_PROPERTY_ENABLE
);
7320 tem
= menu_item_eval_property (tem
);
7321 if (inmenubar
&& NILP (tem
))
7322 return 0; /* Ignore disabled items in menu bar. */
7323 AREF (item_properties
, ITEM_PROPERTY_ENABLE
) = tem
;
7326 /* If we got no definition, this item is just unselectable text which
7327 is OK in a submenu but not in the menubar. */
7329 return (inmenubar
? 0 : 1);
7331 /* See if this is a separate pane or a submenu. */
7332 def
= AREF (item_properties
, ITEM_PROPERTY_DEF
);
7333 tem
= get_keymap (def
, 0, 1);
7334 /* For a subkeymap, just record its details and exit. */
7337 AREF (item_properties
, ITEM_PROPERTY_MAP
) = tem
;
7338 AREF (item_properties
, ITEM_PROPERTY_DEF
) = tem
;
7342 /* At the top level in the menu bar, do likewise for commands also.
7343 The menu bar does not display equivalent key bindings anyway.
7344 ITEM_PROPERTY_DEF is already set up properly. */
7348 /* This is a command. See if there is an equivalent key binding. */
7349 if (NILP (cachelist
))
7351 /* We have to create a cachelist. */
7352 CHECK_IMPURE (start
);
7353 XSETCDR (start
, Fcons (Fcons (Qnil
, Qnil
), XCDR (start
)));
7354 cachelist
= XCAR (XCDR (start
));
7356 tem
= AREF (item_properties
, ITEM_PROPERTY_KEYEQ
);
7357 if (!NILP (keyhint
))
7359 XSETCAR (cachelist
, XCAR (keyhint
));
7362 else if (STRINGP (tem
))
7364 XSETCDR (cachelist
, Fsubstitute_command_keys (tem
));
7365 XSETCAR (cachelist
, Qt
);
7369 tem
= XCAR (cachelist
);
7376 tem
= Fkey_binding (tem
, Qnil
, Qnil
);
7378 prefix
= AREF (item_properties
, ITEM_PROPERTY_KEYEQ
);
7381 def
= XCAR (prefix
);
7382 prefix
= XCDR (prefix
);
7385 def
= AREF (item_properties
, ITEM_PROPERTY_DEF
);
7387 if (!update_menu_bindings
)
7389 else if (NILP (XCAR (cachelist
))) /* Have no saved key. */
7391 if (newcache
/* Always check first time. */
7392 /* Should we check everything when precomputing key
7394 /* If something had no key binding before, don't recheck it
7395 because that is too slow--except if we have a list of
7396 rebound commands in Vdefine_key_rebound_commands, do
7397 recheck any command that appears in that list. */
7398 || (CONSP (Vdefine_key_rebound_commands
)
7399 && !NILP (Fmemq (def
, Vdefine_key_rebound_commands
))))
7402 /* We had a saved key. Is it still bound to the command? */
7405 /* If the command is an alias for another
7406 (such as lmenu.el set it up), check if the
7407 original command matches the cached command. */
7408 && !(SYMBOLP (def
) && EQ (tem
, XSYMBOL (def
)->function
))))
7409 chkcache
= 1; /* Need to recompute key binding. */
7413 /* Recompute equivalent key binding. If the command is an alias
7414 for another (such as lmenu.el set it up), see if the original
7415 command name has equivalent keys. Otherwise look up the
7416 specified command itself. We don't try both, because that
7417 makes lmenu menus slow. */
7419 && SYMBOLP (XSYMBOL (def
)->function
)
7420 && ! NILP (Fget (def
, Qmenu_alias
)))
7421 def
= XSYMBOL (def
)->function
;
7422 tem
= Fwhere_is_internal (def
, Qnil
, Qt
, Qnil
, Qt
);
7423 XSETCAR (cachelist
, tem
);
7426 XSETCDR (cachelist
, Qnil
);
7430 else if (!NILP (keyhint
) && !NILP (XCAR (cachelist
)))
7432 tem
= XCAR (cachelist
);
7436 newcache
= chkcache
;
7439 tem
= Fkey_description (tem
, Qnil
);
7442 if (STRINGP (XCAR (prefix
)))
7443 tem
= concat2 (XCAR (prefix
), tem
);
7444 if (STRINGP (XCDR (prefix
)))
7445 tem
= concat2 (tem
, XCDR (prefix
));
7447 XSETCDR (cachelist
, tem
);
7451 tem
= XCDR (cachelist
);
7452 if (newcache
&& !NILP (tem
))
7454 tem
= concat3 (build_string (" ("), tem
, build_string (")"));
7455 XSETCDR (cachelist
, tem
);
7458 /* If we only want to precompute equivalent key bindings, stop here. */
7462 /* If we have an equivalent key binding, use that. */
7463 AREF (item_properties
, ITEM_PROPERTY_KEYEQ
) = tem
;
7465 /* Include this when menu help is implemented.
7466 tem = XVECTOR (item_properties)->contents[ITEM_PROPERTY_HELP];
7467 if (!(NILP (tem) || STRINGP (tem)))
7469 tem = menu_item_eval_property (tem);
7472 XVECTOR (item_properties)->contents[ITEM_PROPERTY_HELP] = tem;
7476 /* Handle radio buttons or toggle boxes. */
7477 tem
= AREF (item_properties
, ITEM_PROPERTY_SELECTED
);
7479 AREF (item_properties
, ITEM_PROPERTY_SELECTED
)
7480 = menu_item_eval_property (tem
);
7487 /***********************************************************************
7489 ***********************************************************************/
7491 /* A vector holding tool bar items while they are parsed in function
7492 tool_bar_items. Each item occupies TOOL_BAR_ITEM_NSCLOTS elements
7495 static Lisp_Object tool_bar_items_vector
;
7497 /* A vector holding the result of parse_tool_bar_item. Layout is like
7498 the one for a single item in tool_bar_items_vector. */
7500 static Lisp_Object tool_bar_item_properties
;
7502 /* Next free index in tool_bar_items_vector. */
7504 static int ntool_bar_items
;
7506 /* The symbols `tool-bar', and `:image'. */
7508 extern Lisp_Object Qtool_bar
;
7509 Lisp_Object QCimage
;
7511 /* Function prototypes. */
7513 static void init_tool_bar_items
P_ ((Lisp_Object
));
7514 static void process_tool_bar_item
P_ ((Lisp_Object
, Lisp_Object
));
7515 static int parse_tool_bar_item
P_ ((Lisp_Object
, Lisp_Object
));
7516 static void append_tool_bar_item
P_ ((void));
7519 /* Return a vector of tool bar items for keymaps currently in effect.
7520 Reuse vector REUSE if non-nil. Return in *NITEMS the number of
7521 tool bar items found. */
7524 tool_bar_items (reuse
, nitems
)
7535 /* In order to build the menus, we need to call the keymap
7536 accessors. They all call QUIT. But this function is called
7537 during redisplay, during which a quit is fatal. So inhibit
7538 quitting while building the menus. We do this instead of
7539 specbind because (1) errors will clear it anyway and (2) this
7540 avoids risk of specpdl overflow. */
7541 oquit
= Vinhibit_quit
;
7544 /* Initialize tool_bar_items_vector and protect it from GC. */
7545 init_tool_bar_items (reuse
);
7547 /* Build list of keymaps in maps. Set nmaps to the number of maps
7550 /* Should overriding-terminal-local-map and overriding-local-map apply? */
7551 if (!NILP (Voverriding_local_map_menu_flag
))
7553 /* Yes, use them (if non-nil) as well as the global map. */
7554 maps
= (Lisp_Object
*) alloca (3 * sizeof (maps
[0]));
7556 if (!NILP (current_kboard
->Voverriding_terminal_local_map
))
7557 maps
[nmaps
++] = current_kboard
->Voverriding_terminal_local_map
;
7558 if (!NILP (Voverriding_local_map
))
7559 maps
[nmaps
++] = Voverriding_local_map
;
7563 /* No, so use major and minor mode keymaps and keymap property.
7564 Note that tool-bar bindings in the local-map and keymap
7565 properties may not work reliable, as they are only
7566 recognized when the tool-bar (or mode-line) is updated,
7567 which does not normally happen after every command. */
7570 nminor
= current_minor_maps (NULL
, &tmaps
);
7571 maps
= (Lisp_Object
*) alloca ((nminor
+ 3) * sizeof (maps
[0]));
7573 if (tem
= get_local_map (PT
, current_buffer
, Qkeymap
), !NILP (tem
))
7574 maps
[nmaps
++] = tem
;
7575 bcopy (tmaps
, (void *) (maps
+ nmaps
), nminor
* sizeof (maps
[0]));
7577 maps
[nmaps
++] = get_local_map (PT
, current_buffer
, Qlocal_map
);
7580 /* Add global keymap at the end. */
7581 maps
[nmaps
++] = current_global_map
;
7583 /* Process maps in reverse order and look up in each map the prefix
7585 for (i
= nmaps
- 1; i
>= 0; --i
)
7586 if (!NILP (maps
[i
]))
7590 keymap
= get_keymap (access_keymap (maps
[i
], Qtool_bar
, 1, 0, 1), 0, 1);
7595 /* KEYMAP is a list `(keymap (KEY . BINDING) ...)'. */
7596 for (tail
= keymap
; CONSP (tail
); tail
= XCDR (tail
))
7598 Lisp_Object keydef
= XCAR (tail
);
7600 process_tool_bar_item (XCAR (keydef
), XCDR (keydef
));
7605 Vinhibit_quit
= oquit
;
7606 *nitems
= ntool_bar_items
/ TOOL_BAR_ITEM_NSLOTS
;
7607 return tool_bar_items_vector
;
7611 /* Process the definition of KEY which is DEF. */
7614 process_tool_bar_item (key
, def
)
7615 Lisp_Object key
, def
;
7618 extern Lisp_Object Qundefined
;
7619 struct gcpro gcpro1
, gcpro2
;
7621 /* Protect KEY and DEF from GC because parse_tool_bar_item may call
7625 if (EQ (def
, Qundefined
))
7627 /* If a map has an explicit `undefined' as definition,
7628 discard any previously made item. */
7629 for (i
= 0; i
< ntool_bar_items
; i
+= TOOL_BAR_ITEM_NSLOTS
)
7631 Lisp_Object
*v
= XVECTOR (tool_bar_items_vector
)->contents
+ i
;
7633 if (EQ (key
, v
[TOOL_BAR_ITEM_KEY
]))
7635 if (ntool_bar_items
> i
+ TOOL_BAR_ITEM_NSLOTS
)
7636 bcopy (v
+ TOOL_BAR_ITEM_NSLOTS
, v
,
7637 ((ntool_bar_items
- i
- TOOL_BAR_ITEM_NSLOTS
)
7638 * sizeof (Lisp_Object
)));
7639 ntool_bar_items
-= TOOL_BAR_ITEM_NSLOTS
;
7644 else if (parse_tool_bar_item (key
, def
))
7645 /* Append a new tool bar item to tool_bar_items_vector. Accept
7646 more than one definition for the same key. */
7647 append_tool_bar_item ();
7653 /* Parse a tool bar item specification ITEM for key KEY and return the
7654 result in tool_bar_item_properties. Value is zero if ITEM is
7657 ITEM is a list `(menu-item CAPTION BINDING PROPS...)'.
7659 CAPTION is the caption of the item, If it's not a string, it is
7660 evaluated to get a string.
7662 BINDING is the tool bar item's binding. Tool-bar items with keymaps
7663 as binding are currently ignored.
7665 The following properties are recognized:
7669 FORM is evaluated and specifies whether the tool bar item is
7670 enabled or disabled.
7674 FORM is evaluated and specifies whether the tool bar item is visible.
7676 - `:filter FUNCTION'
7678 FUNCTION is invoked with one parameter `(quote BINDING)'. Its
7679 result is stored as the new binding.
7681 - `:button (TYPE SELECTED)'
7683 TYPE must be one of `:radio' or `:toggle'. SELECTED is evaluated
7684 and specifies whether the button is selected (pressed) or not.
7688 IMAGES is either a single image specification or a vector of four
7689 image specifications. See enum tool_bar_item_images.
7691 - `:help HELP-STRING'.
7693 Gives a help string to display for the tool bar item. */
7696 parse_tool_bar_item (key
, item
)
7697 Lisp_Object key
, item
;
7699 /* Access slot with index IDX of vector tool_bar_item_properties. */
7700 #define PROP(IDX) XVECTOR (tool_bar_item_properties)->contents[IDX]
7702 Lisp_Object filter
= Qnil
;
7703 Lisp_Object caption
;
7706 /* Defininition looks like `(menu-item CAPTION BINDING PROPS...)'.
7707 Rule out items that aren't lists, don't start with
7708 `menu-item' or whose rest following `tool-bar-item' is not a
7711 || !EQ (XCAR (item
), Qmenu_item
)
7712 || (item
= XCDR (item
),
7716 /* Create tool_bar_item_properties vector if necessary. Reset it to
7718 if (VECTORP (tool_bar_item_properties
))
7720 for (i
= 0; i
< TOOL_BAR_ITEM_NSLOTS
; ++i
)
7724 tool_bar_item_properties
7725 = Fmake_vector (make_number (TOOL_BAR_ITEM_NSLOTS
), Qnil
);
7728 PROP (TOOL_BAR_ITEM_KEY
) = key
;
7729 PROP (TOOL_BAR_ITEM_ENABLED_P
) = Qt
;
7731 /* Get the caption of the item. If the caption is not a string,
7732 evaluate it to get a string. If we don't get a string, skip this
7734 caption
= XCAR (item
);
7735 if (!STRINGP (caption
))
7737 caption
= menu_item_eval_property (caption
);
7738 if (!STRINGP (caption
))
7741 PROP (TOOL_BAR_ITEM_CAPTION
) = caption
;
7743 /* Give up if rest following the caption is not a list. */
7748 /* Store the binding. */
7749 PROP (TOOL_BAR_ITEM_BINDING
) = XCAR (item
);
7752 /* Ignore cached key binding, if any. */
7753 if (CONSP (item
) && CONSP (XCAR (item
)))
7756 /* Process the rest of the properties. */
7757 for (; CONSP (item
) && CONSP (XCDR (item
)); item
= XCDR (XCDR (item
)))
7759 Lisp_Object key
, value
;
7762 value
= XCAR (XCDR (item
));
7764 if (EQ (key
, QCenable
))
7765 /* `:enable FORM'. */
7766 PROP (TOOL_BAR_ITEM_ENABLED_P
) = value
;
7767 else if (EQ (key
, QCvisible
))
7769 /* `:visible FORM'. If got a visible property and that
7770 evaluates to nil then ignore this item. */
7771 if (NILP (menu_item_eval_property (value
)))
7774 else if (EQ (key
, QChelp
))
7775 /* `:help HELP-STRING'. */
7776 PROP (TOOL_BAR_ITEM_HELP
) = value
;
7777 else if (EQ (key
, QCfilter
))
7778 /* ':filter FORM'. */
7780 else if (EQ (key
, QCbutton
) && CONSP (value
))
7782 /* `:button (TYPE . SELECTED)'. */
7783 Lisp_Object type
, selected
;
7785 type
= XCAR (value
);
7786 selected
= XCDR (value
);
7787 if (EQ (type
, QCtoggle
) || EQ (type
, QCradio
))
7789 PROP (TOOL_BAR_ITEM_SELECTED_P
) = selected
;
7790 PROP (TOOL_BAR_ITEM_TYPE
) = type
;
7793 else if (EQ (key
, QCimage
)
7795 || (VECTORP (value
) && XVECTOR (value
)->size
== 4)))
7796 /* Value is either a single image specification or a vector
7797 of 4 such specifications for the different button states. */
7798 PROP (TOOL_BAR_ITEM_IMAGES
) = value
;
7801 /* If got a filter apply it on binding. */
7803 PROP (TOOL_BAR_ITEM_BINDING
)
7804 = menu_item_eval_property (list2 (filter
,
7806 PROP (TOOL_BAR_ITEM_BINDING
))));
7808 /* See if the binding is a keymap. Give up if it is. */
7809 if (CONSP (get_keymap (PROP (TOOL_BAR_ITEM_BINDING
), 0, 1)))
7812 /* Enable or disable selection of item. */
7813 if (!EQ (PROP (TOOL_BAR_ITEM_ENABLED_P
), Qt
))
7814 PROP (TOOL_BAR_ITEM_ENABLED_P
)
7815 = menu_item_eval_property (PROP (TOOL_BAR_ITEM_ENABLED_P
));
7817 /* Handle radio buttons or toggle boxes. */
7818 if (!NILP (PROP (TOOL_BAR_ITEM_SELECTED_P
)))
7819 PROP (TOOL_BAR_ITEM_SELECTED_P
)
7820 = menu_item_eval_property (PROP (TOOL_BAR_ITEM_SELECTED_P
));
7828 /* Initialize tool_bar_items_vector. REUSE, if non-nil, is a vector
7829 that can be reused. */
7832 init_tool_bar_items (reuse
)
7835 if (VECTORP (reuse
))
7836 tool_bar_items_vector
= reuse
;
7838 tool_bar_items_vector
= Fmake_vector (make_number (64), Qnil
);
7839 ntool_bar_items
= 0;
7843 /* Append parsed tool bar item properties from
7844 tool_bar_item_properties */
7847 append_tool_bar_item ()
7849 Lisp_Object
*to
, *from
;
7851 /* Enlarge tool_bar_items_vector if necessary. */
7852 if (ntool_bar_items
+ TOOL_BAR_ITEM_NSLOTS
7853 >= XVECTOR (tool_bar_items_vector
)->size
)
7855 Lisp_Object new_vector
;
7856 int old_size
= XVECTOR (tool_bar_items_vector
)->size
;
7858 new_vector
= Fmake_vector (make_number (2 * old_size
), Qnil
);
7859 bcopy (XVECTOR (tool_bar_items_vector
)->contents
,
7860 XVECTOR (new_vector
)->contents
,
7861 old_size
* sizeof (Lisp_Object
));
7862 tool_bar_items_vector
= new_vector
;
7865 /* Append entries from tool_bar_item_properties to the end of
7866 tool_bar_items_vector. */
7867 to
= XVECTOR (tool_bar_items_vector
)->contents
+ ntool_bar_items
;
7868 from
= XVECTOR (tool_bar_item_properties
)->contents
;
7869 bcopy (from
, to
, TOOL_BAR_ITEM_NSLOTS
* sizeof *to
);
7870 ntool_bar_items
+= TOOL_BAR_ITEM_NSLOTS
;
7877 /* Read a character using menus based on maps in the array MAPS.
7878 NMAPS is the length of MAPS. Return nil if there are no menus in the maps.
7879 Return t if we displayed a menu but the user rejected it.
7881 PREV_EVENT is the previous input event, or nil if we are reading
7882 the first event of a key sequence.
7884 If USED_MOUSE_MENU is non-null, then we set *USED_MOUSE_MENU to 1
7885 if we used a mouse menu to read the input, or zero otherwise. If
7886 USED_MOUSE_MENU is null, we don't dereference it.
7888 The prompting is done based on the prompt-string of the map
7889 and the strings associated with various map elements.
7891 This can be done with X menus or with menus put in the minibuf.
7892 These are done in different ways, depending on how the input will be read.
7893 Menus using X are done after auto-saving in read-char, getting the input
7894 event from Fx_popup_menu; menus using the minibuf use read_char recursively
7895 and do auto-saving in the inner call of read_char. */
7898 read_char_x_menu_prompt (nmaps
, maps
, prev_event
, used_mouse_menu
)
7901 Lisp_Object prev_event
;
7902 int *used_mouse_menu
;
7905 register Lisp_Object name
= Qnil
;
7907 if (used_mouse_menu
)
7908 *used_mouse_menu
= 0;
7910 /* Use local over global Menu maps */
7912 if (! menu_prompting
)
7915 /* Optionally disregard all but the global map. */
7916 if (inhibit_local_menu_bar_menus
)
7918 maps
+= (nmaps
- 1);
7922 /* Get the menu name from the first map that has one (a prompt string). */
7923 for (mapno
= 0; mapno
< nmaps
; mapno
++)
7925 name
= Fkeymap_prompt (maps
[mapno
]);
7930 /* If we don't have any menus, just read a character normally. */
7931 if (!STRINGP (name
))
7935 /* If we got to this point via a mouse click,
7936 use a real menu for mouse selection. */
7937 if (EVENT_HAS_PARAMETERS (prev_event
)
7938 && !EQ (XCAR (prev_event
), Qmenu_bar
)
7939 && !EQ (XCAR (prev_event
), Qtool_bar
))
7941 /* Display the menu and get the selection. */
7942 Lisp_Object
*realmaps
7943 = (Lisp_Object
*) alloca (nmaps
* sizeof (Lisp_Object
));
7947 /* Use the maps that are not nil. */
7948 for (mapno
= 0; mapno
< nmaps
; mapno
++)
7949 if (!NILP (maps
[mapno
]))
7950 realmaps
[nmaps1
++] = maps
[mapno
];
7952 value
= Fx_popup_menu (prev_event
, Flist (nmaps1
, realmaps
));
7957 record_menu_key (XCAR (value
));
7959 /* If we got multiple events, unread all but
7961 There is no way to prevent those unread events
7962 from showing up later in last_nonmenu_event.
7963 So turn symbol and integer events into lists,
7964 to indicate that they came from a mouse menu,
7965 so that when present in last_nonmenu_event
7966 they won't confuse things. */
7967 for (tem
= XCDR (value
); !NILP (tem
); tem
= XCDR (tem
))
7969 record_menu_key (XCAR (tem
));
7970 if (SYMBOLP (XCAR (tem
))
7971 || INTEGERP (XCAR (tem
)))
7972 XSETCAR (tem
, Fcons (XCAR (tem
), Qdisabled
));
7975 /* If we got more than one event, put all but the first
7976 onto this list to be read later.
7977 Return just the first event now. */
7978 Vunread_command_events
7979 = nconc2 (XCDR (value
), Vunread_command_events
);
7980 value
= XCAR (value
);
7982 else if (NILP (value
))
7984 if (used_mouse_menu
)
7985 *used_mouse_menu
= 1;
7988 #endif /* HAVE_MENUS */
7992 /* Buffer in use so far for the minibuf prompts for menu keymaps.
7993 We make this bigger when necessary, and never free it. */
7994 static char *read_char_minibuf_menu_text
;
7995 /* Size of that buffer. */
7996 static int read_char_minibuf_menu_width
;
7999 read_char_minibuf_menu_prompt (commandflag
, nmaps
, maps
)
8005 register Lisp_Object name
;
8007 /* FIXME: Use the minibuffer's frame width. */
8008 int width
= FRAME_COLS (SELECTED_FRAME ()) - 4;
8011 Lisp_Object rest
, vector
;
8017 if (! menu_prompting
)
8020 /* Make sure we have a big enough buffer for the menu text. */
8021 if (read_char_minibuf_menu_text
== 0)
8023 read_char_minibuf_menu_width
= width
+ 4;
8024 read_char_minibuf_menu_text
= (char *) xmalloc (width
+ 4);
8026 else if (width
+ 4 > read_char_minibuf_menu_width
)
8028 read_char_minibuf_menu_width
= width
+ 4;
8029 read_char_minibuf_menu_text
8030 = (char *) xrealloc (read_char_minibuf_menu_text
, width
+ 4);
8032 menu
= read_char_minibuf_menu_text
;
8034 /* Get the menu name from the first map that has one (a prompt string). */
8035 for (mapno
= 0; mapno
< nmaps
; mapno
++)
8037 name
= Fkeymap_prompt (maps
[mapno
]);
8042 /* If we don't have any menus, just read a character normally. */
8043 if (!STRINGP (name
))
8046 /* Prompt string always starts with map's prompt, and a space. */
8047 strcpy (menu
, SDATA (name
));
8048 nlength
= SBYTES (name
);
8049 menu
[nlength
++] = ':';
8050 menu
[nlength
++] = ' ';
8053 /* Start prompting at start of first map. */
8057 /* Present the documented bindings, a line at a time. */
8064 Lisp_Object orig_defn_macro
;
8066 /* Loop over elements of map. */
8071 /* If reached end of map, start at beginning of next map. */
8075 /* At end of last map, wrap around to first map if just starting,
8076 or end this line if already have something on it. */
8080 if (notfirst
|| nobindings
) break;
8085 /* Look at the next element of the map. */
8087 elt
= XVECTOR (vector
)->contents
[idx
];
8089 elt
= Fcar_safe (rest
);
8091 if (idx
< 0 && VECTORP (elt
))
8093 /* If we found a dense table in the keymap,
8094 advanced past it, but start scanning its contents. */
8095 rest
= Fcdr_safe (rest
);
8101 /* An ordinary element. */
8102 Lisp_Object event
, tem
;
8106 event
= Fcar_safe (elt
); /* alist */
8107 elt
= Fcdr_safe (elt
);
8111 XSETINT (event
, idx
); /* vector */
8114 /* Ignore the element if it has no prompt string. */
8115 if (INTEGERP (event
) && parse_menu_item (elt
, 0, -1))
8117 /* 1 if the char to type matches the string. */
8119 Lisp_Object upcased_event
, downcased_event
;
8120 Lisp_Object desc
= Qnil
;
8122 = XVECTOR (item_properties
)->contents
[ITEM_PROPERTY_NAME
];
8124 upcased_event
= Fupcase (event
);
8125 downcased_event
= Fdowncase (event
);
8126 char_matches
= (XINT (upcased_event
) == SREF (s
, 0)
8127 || XINT (downcased_event
) == SREF (s
, 0));
8129 desc
= Fsingle_key_description (event
, Qnil
);
8131 #if 0 /* It is redundant to list the equivalent key bindings because
8132 the prefix is what the user has already typed. */
8134 = XVECTOR (item_properties
)->contents
[ITEM_PROPERTY_KEYEQ
];
8136 /* Insert equivalent keybinding. */
8137 s
= concat2 (s
, tem
);
8140 = XVECTOR (item_properties
)->contents
[ITEM_PROPERTY_TYPE
];
8141 if (EQ (tem
, QCradio
) || EQ (tem
, QCtoggle
))
8143 /* Insert button prefix. */
8144 Lisp_Object selected
8145 = XVECTOR (item_properties
)->contents
[ITEM_PROPERTY_SELECTED
];
8146 if (EQ (tem
, QCradio
))
8147 tem
= build_string (NILP (selected
) ? "(*) " : "( ) ");
8149 tem
= build_string (NILP (selected
) ? "[X] " : "[ ] ");
8150 s
= concat2 (tem
, s
);
8154 /* If we have room for the prompt string, add it to this line.
8155 If this is the first on the line, always add it. */
8156 if ((SCHARS (s
) + i
+ 2
8157 + (char_matches
? 0 : SCHARS (desc
) + 3))
8163 /* Punctuate between strings. */
8166 strcpy (menu
+ i
, ", ");
8172 /* If the char to type doesn't match the string's
8173 first char, explicitly show what char to type. */
8176 /* Add as much of string as fits. */
8177 thiswidth
= SCHARS (desc
);
8178 if (thiswidth
+ i
> width
)
8179 thiswidth
= width
- i
;
8180 bcopy (SDATA (desc
), menu
+ i
, thiswidth
);
8182 strcpy (menu
+ i
, " = ");
8186 /* Add as much of string as fits. */
8187 thiswidth
= SCHARS (s
);
8188 if (thiswidth
+ i
> width
)
8189 thiswidth
= width
- i
;
8190 bcopy (SDATA (s
), menu
+ i
, thiswidth
);
8196 /* If this element does not fit, end the line now,
8197 and save the element for the next line. */
8198 strcpy (menu
+ i
, "...");
8203 /* Move past this element. */
8204 if (idx
>= 0 && idx
+ 1 >= XVECTOR (vector
)->size
)
8205 /* Handle reaching end of dense table. */
8210 rest
= Fcdr_safe (rest
);
8214 /* Prompt with that and read response. */
8215 message2_nolog (menu
, strlen (menu
),
8216 ! NILP (current_buffer
->enable_multibyte_characters
));
8218 /* Make believe its not a keyboard macro in case the help char
8219 is pressed. Help characters are not recorded because menu prompting
8220 is not used on replay.
8222 orig_defn_macro
= current_kboard
->defining_kbd_macro
;
8223 current_kboard
->defining_kbd_macro
= Qnil
;
8225 obj
= read_char (commandflag
, 0, 0, Qt
, 0);
8226 while (BUFFERP (obj
));
8227 current_kboard
->defining_kbd_macro
= orig_defn_macro
;
8229 if (!INTEGERP (obj
))
8234 if (! EQ (obj
, menu_prompt_more_char
)
8235 && (!INTEGERP (menu_prompt_more_char
)
8236 || ! EQ (obj
, make_number (Ctl (XINT (menu_prompt_more_char
))))))
8238 if (!NILP (current_kboard
->defining_kbd_macro
))
8239 store_kbd_macro_char (obj
);
8242 /* Help char - go round again */
8246 /* Reading key sequences. */
8248 /* Follow KEY in the maps in CURRENT[0..NMAPS-1], placing its bindings
8249 in DEFS[0..NMAPS-1]. Set NEXT[i] to DEFS[i] if DEFS[i] is a
8250 keymap, or nil otherwise. Return the index of the first keymap in
8251 which KEY has any binding, or NMAPS if no map has a binding.
8253 If KEY is a meta ASCII character, treat it like meta-prefix-char
8254 followed by the corresponding non-meta character. Keymaps in
8255 CURRENT with non-prefix bindings for meta-prefix-char become nil in
8258 If KEY has no bindings in any of the CURRENT maps, NEXT is left
8261 NEXT may be the same array as CURRENT. */
8264 follow_key (key
, nmaps
, current
, defs
, next
)
8266 Lisp_Object
*current
, *defs
, *next
;
8269 int i
, first_binding
;
8271 first_binding
= nmaps
;
8272 for (i
= nmaps
- 1; i
>= 0; i
--)
8274 if (! NILP (current
[i
]))
8276 defs
[i
] = access_keymap (current
[i
], key
, 1, 0, 1);
8277 if (! NILP (defs
[i
]))
8284 /* Given the set of bindings we've found, produce the next set of maps. */
8285 if (first_binding
< nmaps
)
8286 for (i
= 0; i
< nmaps
; i
++)
8287 next
[i
] = NILP (defs
[i
]) ? Qnil
: get_keymap (defs
[i
], 0, 1);
8289 return first_binding
;
8292 /* Structure used to keep track of partial application of key remapping
8293 such as Vfunction_key_map and Vkey_translation_map. */
8294 typedef struct keyremap
8296 Lisp_Object map
, parent
;
8300 /* Lookup KEY in MAP.
8301 MAP is a keymap mapping keys to key vectors or functions.
8302 If the mapping is a function and DO_FUNCTION is non-zero, then
8303 the function is called with PROMPT as parameter and its return
8304 value is used as the return value of this function (after checking
8305 that it is indeed a vector). */
8308 access_keymap_keyremap (map
, key
, prompt
, do_funcall
)
8309 Lisp_Object map
, key
, prompt
;
8314 next
= access_keymap (map
, key
, 1, 0, 1);
8316 /* Handle symbol with autoload definition. */
8317 if (SYMBOLP (next
) && !NILP (Ffboundp (next
))
8318 && CONSP (XSYMBOL (next
)->function
)
8319 && EQ (XCAR (XSYMBOL (next
)->function
), Qautoload
))
8320 do_autoload (XSYMBOL (next
)->function
, next
);
8322 /* Handle a symbol whose function definition is a keymap
8324 if (SYMBOLP (next
) && !NILP (Ffboundp (next
))
8325 && (!NILP (Farrayp (XSYMBOL (next
)->function
))
8326 || KEYMAPP (XSYMBOL (next
)->function
)))
8327 next
= XSYMBOL (next
)->function
;
8329 /* If the keymap gives a function, not an
8330 array, then call the function with one arg and use
8331 its value instead. */
8332 if (SYMBOLP (next
) && !NILP (Ffboundp (next
)) && do_funcall
)
8337 next
= call1 (next
, prompt
);
8338 /* If the function returned something invalid,
8339 barf--don't ignore it.
8340 (To ignore it safely, we would need to gcpro a bunch of
8341 other variables.) */
8342 if (! (VECTORP (next
) || STRINGP (next
)))
8343 error ("Function %s returns invalid key sequence", tem
);
8348 /* Do one step of the key remapping used for function-key-map and
8349 key-translation-map:
8350 KEYBUF is the buffer holding the input events.
8351 BUFSIZE is its maximum size.
8352 FKEY is a pointer to the keyremap structure to use.
8353 INPUT is the index of the last element in KEYBUF.
8354 DOIT if non-zero says that the remapping can actually take place.
8355 DIFF is used to return the number of keys added/removed by the remapping.
8356 PARENT is the root of the keymap.
8357 PROMPT is the prompt to use if the remapping happens through a function.
8358 The return value is non-zero if the remapping actually took place. */
8361 keyremap_step (keybuf
, bufsize
, fkey
, input
, doit
, diff
, prompt
)
8362 Lisp_Object
*keybuf
, prompt
;
8364 int input
, doit
, *diff
, bufsize
;
8366 Lisp_Object next
, key
;
8368 key
= keybuf
[fkey
->end
++];
8369 next
= access_keymap_keyremap (fkey
->map
, key
, prompt
, doit
);
8371 /* If keybuf[fkey->start..fkey->end] is bound in the
8372 map and we're in a position to do the key remapping, replace it with
8373 the binding and restart with fkey->start at the end. */
8374 if ((VECTORP (next
) || STRINGP (next
)) && doit
)
8376 int len
= XFASTINT (Flength (next
));
8379 *diff
= len
- (fkey
->end
- fkey
->start
);
8381 if (input
+ *diff
>= bufsize
)
8382 error ("Key sequence too long");
8384 /* Shift the keys that follow fkey->end. */
8386 for (i
= fkey
->end
; i
< input
; i
++)
8387 keybuf
[i
+ *diff
] = keybuf
[i
];
8389 for (i
= input
- 1; i
>= fkey
->end
; i
--)
8390 keybuf
[i
+ *diff
] = keybuf
[i
];
8391 /* Overwrite the old keys with the new ones. */
8392 for (i
= 0; i
< len
; i
++)
8393 keybuf
[fkey
->start
+ i
]
8394 = Faref (next
, make_number (i
));
8396 fkey
->start
= fkey
->end
+= *diff
;
8397 fkey
->map
= fkey
->parent
;
8402 fkey
->map
= get_keymap (next
, 0, 1);
8404 /* If we no longer have a bound suffix, try a new position for
8406 if (!CONSP (fkey
->map
))
8408 fkey
->end
= ++fkey
->start
;
8409 fkey
->map
= fkey
->parent
;
8414 /* Read a sequence of keys that ends with a non prefix character,
8415 storing it in KEYBUF, a buffer of size BUFSIZE.
8417 Return the length of the key sequence stored.
8418 Return -1 if the user rejected a command menu.
8420 Echo starting immediately unless `prompt' is 0.
8422 Where a key sequence ends depends on the currently active keymaps.
8423 These include any minor mode keymaps active in the current buffer,
8424 the current buffer's local map, and the global map.
8426 If a key sequence has no other bindings, we check Vfunction_key_map
8427 to see if some trailing subsequence might be the beginning of a
8428 function key's sequence. If so, we try to read the whole function
8429 key, and substitute its symbolic name into the key sequence.
8431 We ignore unbound `down-' mouse clicks. We turn unbound `drag-' and
8432 `double-' events into similar click events, if that would make them
8433 bound. We try to turn `triple-' events first into `double-' events,
8436 If we get a mouse click in a mode line, vertical divider, or other
8437 non-text area, we treat the click as if it were prefixed by the
8438 symbol denoting that area - `mode-line', `vertical-line', or
8441 If the sequence starts with a mouse click, we read the key sequence
8442 with respect to the buffer clicked on, not the current buffer.
8444 If the user switches frames in the midst of a key sequence, we put
8445 off the switch-frame event until later; the next call to
8446 read_char will return it.
8448 If FIX_CURRENT_BUFFER is nonzero, we restore current_buffer
8449 from the selected window's buffer. */
8452 read_key_sequence (keybuf
, bufsize
, prompt
, dont_downcase_last
,
8453 can_return_switch_frame
, fix_current_buffer
)
8454 Lisp_Object
*keybuf
;
8457 int dont_downcase_last
;
8458 int can_return_switch_frame
;
8459 int fix_current_buffer
;
8461 volatile Lisp_Object from_string
;
8462 volatile int count
= SPECPDL_INDEX ();
8464 /* How many keys there are in the current key sequence. */
8467 /* The length of the echo buffer when we started reading, and
8468 the length of this_command_keys when we started reading. */
8469 volatile int echo_start
;
8470 volatile int keys_start
;
8472 /* The number of keymaps we're scanning right now, and the number of
8473 keymaps we have allocated space for. */
8475 volatile int nmaps_allocated
= 0;
8477 /* defs[0..nmaps-1] are the definitions of KEYBUF[0..t-1] in
8478 the current keymaps. */
8479 Lisp_Object
*volatile defs
= NULL
;
8481 /* submaps[0..nmaps-1] are the prefix definitions of KEYBUF[0..t-1]
8482 in the current keymaps, or nil where it is not a prefix. */
8483 Lisp_Object
*volatile submaps
= NULL
;
8485 /* The local map to start out with at start of key sequence. */
8486 volatile Lisp_Object orig_local_map
;
8488 /* The map from the `keymap' property to start out with at start of
8490 volatile Lisp_Object orig_keymap
;
8492 /* 1 if we have already considered switching to the local-map property
8493 of the place where a mouse click occurred. */
8494 volatile int localized_local_map
= 0;
8496 /* The index in defs[] of the first keymap that has a binding for
8497 this key sequence. In other words, the lowest i such that
8498 defs[i] is non-nil. */
8499 volatile int first_binding
;
8500 /* Index of the first key that has no binding.
8501 It is useless to try fkey.start larger than that. */
8502 volatile int first_unbound
;
8504 /* If t < mock_input, then KEYBUF[t] should be read as the next
8507 We use this to recover after recognizing a function key. Once we
8508 realize that a suffix of the current key sequence is actually a
8509 function key's escape sequence, we replace the suffix with the
8510 function key's binding from Vfunction_key_map. Now keybuf
8511 contains a new and different key sequence, so the echo area,
8512 this_command_keys, and the submaps and defs arrays are wrong. In
8513 this situation, we set mock_input to t, set t to 0, and jump to
8514 restart_sequence; the loop will read keys from keybuf up until
8515 mock_input, thus rebuilding the state; and then it will resume
8516 reading characters from the keyboard. */
8517 volatile int mock_input
= 0;
8519 /* If the sequence is unbound in submaps[], then
8520 keybuf[fkey.start..fkey.end-1] is a prefix in Vfunction_key_map,
8521 and fkey.map is its binding.
8523 These might be > t, indicating that all function key scanning
8524 should hold off until t reaches them. We do this when we've just
8525 recognized a function key, to avoid searching for the function
8526 key's again in Vfunction_key_map. */
8527 volatile keyremap fkey
;
8529 /* Likewise, for key_translation_map. */
8530 volatile keyremap keytran
;
8532 /* If we receive a `switch-frame' or `select-window' event in the middle of
8533 a key sequence, we put it off for later.
8534 While we're reading, we keep the event here. */
8535 volatile Lisp_Object delayed_switch_frame
;
8537 /* See the comment below... */
8538 #if defined (GOBBLE_FIRST_EVENT)
8539 Lisp_Object first_event
;
8542 volatile Lisp_Object original_uppercase
;
8543 volatile int original_uppercase_position
= -1;
8545 /* Gets around Microsoft compiler limitations. */
8548 struct buffer
*starting_buffer
;
8550 /* List of events for which a fake prefix key has been generated. */
8551 volatile Lisp_Object fake_prefixed_keys
= Qnil
;
8553 #if defined (GOBBLE_FIRST_EVENT)
8557 struct gcpro gcpro1
;
8559 GCPRO1 (fake_prefixed_keys
);
8560 raw_keybuf_count
= 0;
8562 last_nonmenu_event
= Qnil
;
8564 delayed_switch_frame
= Qnil
;
8565 fkey
.map
= fkey
.parent
= Vfunction_key_map
;
8566 keytran
.map
= keytran
.parent
= Vkey_translation_map
;
8567 /* If there is no translation-map, turn off scanning. */
8568 fkey
.start
= fkey
.end
= KEYMAPP (fkey
.map
) ? 0 : bufsize
+ 1;
8569 keytran
.start
= keytran
.end
= KEYMAPP (keytran
.map
) ? 0 : bufsize
+ 1;
8574 echo_prompt (prompt
);
8575 else if (cursor_in_echo_area
8576 && (FLOATP (Vecho_keystrokes
) || INTEGERP (Vecho_keystrokes
))
8577 && NILP (Fzerop (Vecho_keystrokes
)))
8578 /* This doesn't put in a dash if the echo buffer is empty, so
8579 you don't always see a dash hanging out in the minibuffer. */
8583 /* Record the initial state of the echo area and this_command_keys;
8584 we will need to restore them if we replay a key sequence. */
8586 echo_start
= echo_length ();
8587 keys_start
= this_command_key_count
;
8588 this_single_command_key_start
= keys_start
;
8590 #if defined (GOBBLE_FIRST_EVENT)
8591 /* This doesn't quite work, because some of the things that read_char
8592 does cannot safely be bypassed. It seems too risky to try to make
8595 /* Read the first char of the sequence specially, before setting
8596 up any keymaps, in case a filter runs and switches buffers on us. */
8597 first_event
= read_char (NILP (prompt
), 0, submaps
, last_nonmenu_event
,
8599 #endif /* GOBBLE_FIRST_EVENT */
8601 orig_local_map
= get_local_map (PT
, current_buffer
, Qlocal_map
);
8602 orig_keymap
= get_local_map (PT
, current_buffer
, Qkeymap
);
8605 /* We jump here when the key sequence has been thoroughly changed, and
8606 we need to rescan it starting from the beginning. When we jump here,
8607 keybuf[0..mock_input] holds the sequence we should reread. */
8610 starting_buffer
= current_buffer
;
8611 first_unbound
= bufsize
+ 1;
8613 /* Build our list of keymaps.
8614 If we recognize a function key and replace its escape sequence in
8615 keybuf with its symbol, or if the sequence starts with a mouse
8616 click and we need to switch buffers, we jump back here to rebuild
8617 the initial keymaps from the current buffer. */
8620 if (!NILP (current_kboard
->Voverriding_terminal_local_map
)
8621 || !NILP (Voverriding_local_map
))
8623 if (3 > nmaps_allocated
)
8625 submaps
= (Lisp_Object
*) alloca (3 * sizeof (submaps
[0]));
8626 defs
= (Lisp_Object
*) alloca (3 * sizeof (defs
[0]));
8627 nmaps_allocated
= 3;
8629 if (!NILP (current_kboard
->Voverriding_terminal_local_map
))
8630 submaps
[nmaps
++] = current_kboard
->Voverriding_terminal_local_map
;
8631 if (!NILP (Voverriding_local_map
))
8632 submaps
[nmaps
++] = Voverriding_local_map
;
8640 nminor
= current_minor_maps (0, &maps
);
8641 total
= nminor
+ (!NILP (orig_keymap
) ? 3 : 2);
8643 if (total
> nmaps_allocated
)
8645 submaps
= (Lisp_Object
*) alloca (total
* sizeof (submaps
[0]));
8646 defs
= (Lisp_Object
*) alloca (total
* sizeof (defs
[0]));
8647 nmaps_allocated
= total
;
8650 if (!NILP (orig_keymap
))
8651 submaps
[nmaps
++] = orig_keymap
;
8653 bcopy (maps
, (void *) (submaps
+ nmaps
),
8654 nminor
* sizeof (submaps
[0]));
8658 submaps
[nmaps
++] = orig_local_map
;
8660 submaps
[nmaps
++] = current_global_map
;
8662 /* Find an accurate initial value for first_binding. */
8663 for (first_binding
= 0; first_binding
< nmaps
; first_binding
++)
8664 if (! NILP (submaps
[first_binding
]))
8667 /* Start from the beginning in keybuf. */
8670 /* These are no-ops the first time through, but if we restart, they
8671 revert the echo area and this_command_keys to their original state. */
8672 this_command_key_count
= keys_start
;
8673 if (INTERACTIVE
&& t
< mock_input
)
8674 echo_truncate (echo_start
);
8676 /* If the best binding for the current key sequence is a keymap, or
8677 we may be looking at a function key's escape sequence, keep on
8679 while (first_binding
< nmaps
8680 /* Keep reading as long as there's a prefix binding. */
8681 ? !NILP (submaps
[first_binding
])
8682 /* Don't return in the middle of a possible function key sequence,
8683 if the only bindings we found were via case conversion.
8684 Thus, if ESC O a has a function-key-map translation
8685 and ESC o has a binding, don't return after ESC O,
8686 so that we can translate ESC O plus the next character. */
8687 : (fkey
.start
< t
|| keytran
.start
< t
))
8690 int used_mouse_menu
= 0;
8692 /* Where the last real key started. If we need to throw away a
8693 key that has expanded into more than one element of keybuf
8694 (say, a mouse click on the mode line which is being treated
8695 as [mode-line (mouse-...)], then we backtrack to this point
8697 volatile int last_real_key_start
;
8699 /* These variables are analogous to echo_start and keys_start;
8700 while those allow us to restart the entire key sequence,
8701 echo_local_start and keys_local_start allow us to throw away
8703 volatile int echo_local_start
, keys_local_start
, local_first_binding
;
8705 eassert (fkey
.end
== t
|| (fkey
.end
> t
&& fkey
.end
<= mock_input
));
8706 eassert (fkey
.start
<= fkey
.end
);
8707 eassert (keytran
.start
<= keytran
.end
);
8708 /* key-translation-map is applied *after* function-key-map. */
8709 eassert (keytran
.end
<= fkey
.start
);
8711 if (first_unbound
< fkey
.start
&& first_unbound
< keytran
.start
)
8712 { /* The prefix upto first_unbound has no binding and has
8713 no translation left to do either, so we know it's unbound.
8714 If we don't stop now, we risk staying here indefinitely
8715 (if the user keeps entering fkey or keytran prefixes
8716 like C-c ESC ESC ESC ESC ...) */
8718 for (i
= first_unbound
+ 1; i
< t
; i
++)
8719 keybuf
[i
- first_unbound
- 1] = keybuf
[i
];
8720 mock_input
= t
- first_unbound
- 1;
8721 fkey
.end
= fkey
.start
-= first_unbound
+ 1;
8722 fkey
.map
= fkey
.parent
;
8723 keytran
.end
= keytran
.start
-= first_unbound
+ 1;
8724 keytran
.map
= keytran
.parent
;
8725 goto replay_sequence
;
8729 error ("Key sequence too long");
8732 echo_local_start
= echo_length ();
8733 keys_local_start
= this_command_key_count
;
8734 local_first_binding
= first_binding
;
8737 /* These are no-ops, unless we throw away a keystroke below and
8738 jumped back up to replay_key; in that case, these restore the
8739 variables to their original state, allowing us to replay the
8741 if (INTERACTIVE
&& t
< mock_input
)
8742 echo_truncate (echo_local_start
);
8743 this_command_key_count
= keys_local_start
;
8744 first_binding
= local_first_binding
;
8746 /* By default, assume each event is "real". */
8747 last_real_key_start
= t
;
8749 /* Does mock_input indicate that we are re-reading a key sequence? */
8753 add_command_key (key
);
8754 if ((FLOATP (Vecho_keystrokes
) || INTEGERP (Vecho_keystrokes
))
8755 && NILP (Fzerop (Vecho_keystrokes
)))
8759 /* If not, we should actually read a character. */
8764 KBOARD
*interrupted_kboard
= current_kboard
;
8765 struct frame
*interrupted_frame
= SELECTED_FRAME ();
8766 if (setjmp (wrong_kboard_jmpbuf
))
8768 if (!NILP (delayed_switch_frame
))
8770 interrupted_kboard
->kbd_queue
8771 = Fcons (delayed_switch_frame
,
8772 interrupted_kboard
->kbd_queue
);
8773 delayed_switch_frame
= Qnil
;
8776 interrupted_kboard
->kbd_queue
8777 = Fcons (keybuf
[--t
], interrupted_kboard
->kbd_queue
);
8779 /* If the side queue is non-empty, ensure it begins with a
8780 switch-frame, so we'll replay it in the right context. */
8781 if (CONSP (interrupted_kboard
->kbd_queue
)
8782 && (key
= XCAR (interrupted_kboard
->kbd_queue
),
8783 !(EVENT_HAS_PARAMETERS (key
)
8784 && EQ (EVENT_HEAD_KIND (EVENT_HEAD (key
)),
8788 XSETFRAME (frame
, interrupted_frame
);
8789 interrupted_kboard
->kbd_queue
8790 = Fcons (make_lispy_switch_frame (frame
),
8791 interrupted_kboard
->kbd_queue
);
8794 orig_local_map
= get_local_map (PT
, current_buffer
, Qlocal_map
);
8795 orig_keymap
= get_local_map (PT
, current_buffer
, Qkeymap
);
8796 goto replay_sequence
;
8799 key
= read_char (NILP (prompt
), nmaps
,
8800 (Lisp_Object
*) submaps
, last_nonmenu_event
,
8804 /* read_char returns t when it shows a menu and the user rejects it.
8808 unbind_to (count
, Qnil
);
8813 /* read_char returns -1 at the end of a macro.
8814 Emacs 18 handles this by returning immediately with a
8815 zero, so that's what we'll do. */
8816 if (INTEGERP (key
) && XINT (key
) == -1)
8819 /* The Microsoft C compiler can't handle the goto that
8825 /* If the current buffer has been changed from under us, the
8826 keymap may have changed, so replay the sequence. */
8829 timer_resume_idle ();
8832 /* Reset the current buffer from the selected window
8833 in case something changed the former and not the latter.
8834 This is to be more consistent with the behavior
8835 of the command_loop_1. */
8836 if (fix_current_buffer
)
8838 if (! FRAME_LIVE_P (XFRAME (selected_frame
)))
8840 if (XBUFFER (XWINDOW (selected_window
)->buffer
) != current_buffer
)
8841 Fset_buffer (XWINDOW (selected_window
)->buffer
);
8844 orig_local_map
= get_local_map (PT
, current_buffer
, Qlocal_map
);
8845 orig_keymap
= get_local_map (PT
, current_buffer
, Qkeymap
);
8846 goto replay_sequence
;
8849 /* If we have a quit that was typed in another frame, and
8850 quit_throw_to_read_char switched buffers,
8851 replay to get the right keymap. */
8853 && XINT (key
) == quit_char
8854 && current_buffer
!= starting_buffer
)
8857 XVECTOR (raw_keybuf
)->contents
[raw_keybuf_count
++] = key
;
8861 orig_local_map
= get_local_map (PT
, current_buffer
, Qlocal_map
);
8862 orig_keymap
= get_local_map (PT
, current_buffer
, Qkeymap
);
8863 goto replay_sequence
;
8868 if (EVENT_HAS_PARAMETERS (key
)
8869 /* Either a `switch-frame' or a `select-window' event. */
8870 && EQ (EVENT_HEAD_KIND (EVENT_HEAD (key
)), Qswitch_frame
))
8872 /* If we're at the beginning of a key sequence, and the caller
8873 says it's okay, go ahead and return this event. If we're
8874 in the midst of a key sequence, delay it until the end. */
8875 if (t
> 0 || !can_return_switch_frame
)
8877 delayed_switch_frame
= key
;
8883 XVECTOR (raw_keybuf
)->contents
[raw_keybuf_count
++] = key
;
8886 /* Clicks in non-text areas get prefixed by the symbol
8887 in their CHAR-ADDRESS field. For example, a click on
8888 the mode line is prefixed by the symbol `mode-line'.
8890 Furthermore, key sequences beginning with mouse clicks
8891 are read using the keymaps of the buffer clicked on, not
8892 the current buffer. So we may have to switch the buffer
8895 When we turn one event into two events, we must make sure
8896 that neither of the two looks like the original--so that,
8897 if we replay the events, they won't be expanded again.
8898 If not for this, such reexpansion could happen either here
8899 or when user programs play with this-command-keys. */
8900 if (EVENT_HAS_PARAMETERS (key
))
8905 kind
= EVENT_HEAD_KIND (EVENT_HEAD (key
));
8906 if (EQ (kind
, Qmouse_click
))
8908 Lisp_Object window
, posn
;
8910 window
= POSN_WINDOW (EVENT_START (key
));
8911 posn
= POSN_POSN (EVENT_START (key
));
8914 || (!NILP (fake_prefixed_keys
)
8915 && !NILP (Fmemq (key
, fake_prefixed_keys
))))
8917 /* We're looking a second time at an event for which
8918 we generated a fake prefix key. Set
8919 last_real_key_start appropriately. */
8921 last_real_key_start
= t
- 1;
8924 /* Key sequences beginning with mouse clicks are
8925 read using the keymaps in the buffer clicked on,
8926 not the current buffer. If we're at the
8927 beginning of a key sequence, switch buffers. */
8928 if (last_real_key_start
== 0
8930 && BUFFERP (XWINDOW (window
)->buffer
)
8931 && XBUFFER (XWINDOW (window
)->buffer
) != current_buffer
)
8933 XVECTOR (raw_keybuf
)->contents
[raw_keybuf_count
++] = key
;
8937 /* Arrange to go back to the original buffer once we're
8938 done reading the key sequence. Note that we can't
8939 use save_excursion_{save,restore} here, because they
8940 save point as well as the current buffer; we don't
8941 want to save point, because redisplay may change it,
8942 to accommodate a Fset_window_start or something. We
8943 don't want to do this at the top of the function,
8944 because we may get input from a subprocess which
8945 wants to change the selected window and stuff (say,
8947 record_unwind_protect (Fset_buffer
, Fcurrent_buffer ());
8949 if (! FRAME_LIVE_P (XFRAME (selected_frame
)))
8951 set_buffer_internal (XBUFFER (XWINDOW (window
)->buffer
));
8952 orig_local_map
= get_local_map (PT
, current_buffer
,
8954 orig_keymap
= get_local_map (PT
, current_buffer
, Qkeymap
);
8955 goto replay_sequence
;
8958 /* For a mouse click, get the local text-property keymap
8959 of the place clicked on, rather than point. */
8960 if (last_real_key_start
== 0
8961 && CONSP (XCDR (key
))
8962 && ! localized_local_map
)
8964 Lisp_Object map_here
, start
, pos
;
8966 localized_local_map
= 1;
8967 start
= EVENT_START (key
);
8969 if (CONSP (start
) && POSN_INBUFFER_P (start
))
8971 pos
= POSN_BUFFER_POSN (start
);
8973 && XINT (pos
) >= BEG
&& XINT (pos
) <= Z
)
8975 map_here
= get_local_map (XINT (pos
),
8976 current_buffer
, Qlocal_map
);
8977 if (!EQ (map_here
, orig_local_map
))
8979 orig_local_map
= map_here
;
8983 goto replay_sequence
;
8985 map_here
= get_local_map (XINT (pos
),
8986 current_buffer
, Qkeymap
);
8987 if (!EQ (map_here
, orig_keymap
))
8989 orig_keymap
= map_here
;
8993 goto replay_sequence
;
8999 /* Expand mode-line and scroll-bar events into two events:
9000 use posn as a fake prefix key. */
9002 && (NILP (fake_prefixed_keys
)
9003 || NILP (Fmemq (key
, fake_prefixed_keys
))))
9005 if (t
+ 1 >= bufsize
)
9006 error ("Key sequence too long");
9009 keybuf
[t
+ 1] = key
;
9012 /* Record that a fake prefix key has been generated
9013 for KEY. Don't modify the event; this would
9014 prevent proper action when the event is pushed
9015 back into unread-command-events. */
9016 fake_prefixed_keys
= Fcons (key
, fake_prefixed_keys
);
9018 /* If on a mode line string with a local keymap,
9019 reconsider the key sequence with that keymap. */
9020 if (string
= POSN_STRING (EVENT_START (key
)),
9021 (CONSP (string
) && STRINGP (XCAR (string
))))
9023 Lisp_Object pos
, map
, map2
;
9025 pos
= XCDR (string
);
9026 string
= XCAR (string
);
9028 && XINT (pos
) < SCHARS (string
))
9030 map
= Fget_text_property (pos
, Qlocal_map
, string
);
9032 orig_local_map
= map
;
9033 map2
= Fget_text_property (pos
, Qkeymap
, string
);
9036 if (!NILP (map
) || !NILP (map2
))
9037 goto replay_sequence
;
9043 else if (NILP (from_string
)
9044 && (string
= POSN_STRING (EVENT_START (key
)),
9045 (CONSP (string
) && STRINGP (XCAR (string
)))))
9047 /* For a click on a string, i.e. overlay string or a
9048 string displayed via the `display' property,
9049 consider `local-map' and `keymap' properties of
9051 Lisp_Object pos
, map
, map2
;
9053 pos
= XCDR (string
);
9054 string
= XCAR (string
);
9056 && XINT (pos
) < SCHARS (string
))
9058 map
= Fget_text_property (pos
, Qlocal_map
, string
);
9060 orig_local_map
= map
;
9061 map2
= Fget_text_property (pos
, Qkeymap
, string
);
9065 if (!NILP (map
) || !NILP (map2
))
9067 from_string
= string
;
9068 goto replay_sequence
;
9073 else if (CONSP (XCDR (key
))
9074 && CONSP (EVENT_START (key
))
9075 && CONSP (XCDR (EVENT_START (key
))))
9079 posn
= POSN_POSN (EVENT_START (key
));
9080 /* Handle menu-bar events:
9081 insert the dummy prefix event `menu-bar'. */
9082 if (EQ (posn
, Qmenu_bar
) || EQ (posn
, Qtool_bar
))
9084 if (t
+ 1 >= bufsize
)
9085 error ("Key sequence too long");
9089 /* Zap the position in key, so we know that we've
9090 expanded it, and don't try to do so again. */
9091 POSN_SET_POSN (EVENT_START (key
),
9092 Fcons (posn
, Qnil
));
9095 goto replay_sequence
;
9097 else if (CONSP (posn
))
9099 /* We're looking at the second event of a
9100 sequence which we expanded before. Set
9101 last_real_key_start appropriately. */
9102 if (last_real_key_start
== t
&& t
> 0)
9103 last_real_key_start
= t
- 1;
9108 /* We have finally decided that KEY is something we might want
9110 first_binding
= (follow_key (key
,
9111 nmaps
- first_binding
,
9112 submaps
+ first_binding
,
9113 defs
+ first_binding
,
9114 submaps
+ first_binding
)
9117 /* If KEY wasn't bound, we'll try some fallbacks. */
9118 if (first_binding
< nmaps
)
9119 /* This is needed for the following scenario:
9120 event 0: a down-event that gets dropped by calling replay_key.
9121 event 1: some normal prefix like C-h.
9122 After event 0, first_unbound is 0, after event 1 fkey.start
9123 and keytran.start are both 1, so when we see that C-h is bound,
9124 we need to update first_unbound. */
9125 first_unbound
= max (t
+ 1, first_unbound
);
9130 /* Remember the position to put an upper bound on fkey.start. */
9131 first_unbound
= min (t
, first_unbound
);
9133 head
= EVENT_HEAD (key
);
9134 if (help_char_p (head
) && t
> 0)
9136 read_key_sequence_cmd
= Vprefix_help_command
;
9138 last_nonmenu_event
= key
;
9139 /* The Microsoft C compiler can't handle the goto that
9147 Lisp_Object breakdown
;
9150 breakdown
= parse_modifiers (head
);
9151 modifiers
= XINT (XCAR (XCDR (breakdown
)));
9152 /* Attempt to reduce an unbound mouse event to a simpler
9153 event that is bound:
9154 Drags reduce to clicks.
9155 Double-clicks reduce to clicks.
9156 Triple-clicks reduce to double-clicks, then to clicks.
9157 Down-clicks are eliminated.
9158 Double-downs reduce to downs, then are eliminated.
9159 Triple-downs reduce to double-downs, then to downs,
9160 then are eliminated. */
9161 if (modifiers
& (down_modifier
| drag_modifier
9162 | double_modifier
| triple_modifier
))
9164 while (modifiers
& (down_modifier
| drag_modifier
9165 | double_modifier
| triple_modifier
))
9167 Lisp_Object new_head
, new_click
;
9168 if (modifiers
& triple_modifier
)
9169 modifiers
^= (double_modifier
| triple_modifier
);
9170 else if (modifiers
& double_modifier
)
9171 modifiers
&= ~double_modifier
;
9172 else if (modifiers
& drag_modifier
)
9173 modifiers
&= ~drag_modifier
;
9176 /* Dispose of this `down' event by simply jumping
9177 back to replay_key, to get another event.
9179 Note that if this event came from mock input,
9180 then just jumping back to replay_key will just
9181 hand it to us again. So we have to wipe out any
9184 We could delete keybuf[t] and shift everything
9185 after that to the left by one spot, but we'd also
9186 have to fix up any variable that points into
9187 keybuf, and shifting isn't really necessary
9190 Adding prefixes for non-textual mouse clicks
9191 creates two characters of mock input, and both
9192 must be thrown away. If we're only looking at
9193 the prefix now, we can just jump back to
9194 replay_key. On the other hand, if we've already
9195 processed the prefix, and now the actual click
9196 itself is giving us trouble, then we've lost the
9197 state of the keymaps we want to backtrack to, and
9198 we need to replay the whole sequence to rebuild
9201 Beyond that, only function key expansion could
9202 create more than two keys, but that should never
9203 generate mouse events, so it's okay to zero
9204 mock_input in that case too.
9206 FIXME: The above paragraph seems just plain
9207 wrong, if you consider things like
9208 xterm-mouse-mode. -stef
9210 Isn't this just the most wonderful code ever? */
9212 /* If mock_input > t + 1, the above simplification
9213 will actually end up dropping keys on the floor.
9214 This is probably OK for now, but even
9215 if mock_input <= t + 1, we need to adjust fkey
9217 Typical case [header-line down-mouse-N]:
9218 mock_input = 2, t = 1, fkey.end = 1,
9219 last_real_key_start = 0. */
9220 if (fkey
.end
> last_real_key_start
)
9222 fkey
.end
= fkey
.start
9223 = min (last_real_key_start
, fkey
.start
);
9224 fkey
.map
= fkey
.parent
;
9225 if (keytran
.end
> last_real_key_start
)
9227 keytran
.end
= keytran
.start
9228 = min (last_real_key_start
, keytran
.start
);
9229 keytran
.map
= keytran
.parent
;
9232 if (t
== last_real_key_start
)
9239 mock_input
= last_real_key_start
;
9240 goto replay_sequence
;
9245 = apply_modifiers (modifiers
, XCAR (breakdown
));
9247 = Fcons (new_head
, Fcons (EVENT_START (key
), Qnil
));
9249 /* Look for a binding for this new key. follow_key
9250 promises that it didn't munge submaps the
9251 last time we called it, since key was unbound. */
9253 = (follow_key (new_click
,
9254 nmaps
- local_first_binding
,
9255 submaps
+ local_first_binding
,
9256 defs
+ local_first_binding
,
9257 submaps
+ local_first_binding
)
9258 + local_first_binding
);
9260 /* If that click is bound, go for it. */
9261 if (first_binding
< nmaps
)
9266 /* Otherwise, we'll leave key set to the drag event. */
9273 /* Normally, last_nonmenu_event gets the previous key we read.
9274 But when a mouse popup menu is being used,
9275 we don't update last_nonmenu_event; it continues to hold the mouse
9276 event that preceded the first level of menu. */
9277 if (!used_mouse_menu
)
9278 last_nonmenu_event
= key
;
9280 /* Record what part of this_command_keys is the current key sequence. */
9281 this_single_command_key_start
= this_command_key_count
- t
;
9283 if (first_binding
< nmaps
&& NILP (submaps
[first_binding
]))
9284 /* There is a binding and it's not a prefix.
9285 There is thus no function-key in this sequence.
9286 Moving fkey.start is important in this case to allow keytran.start
9287 to go over the sequence before we return (since we keep the
9288 invariant that keytran.end <= fkey.start). */
9291 (fkey
.start
= fkey
.end
= t
, fkey
.map
= fkey
.parent
);
9294 /* If the sequence is unbound, see if we can hang a function key
9295 off the end of it. */
9296 /* Continue scan from fkey.end until we find a bound suffix. */
9297 while (fkey
.end
< t
)
9299 struct gcpro gcpro1
, gcpro2
, gcpro3
;
9302 GCPRO3 (fkey
.map
, keytran
.map
, delayed_switch_frame
);
9303 done
= keyremap_step (keybuf
, bufsize
, &fkey
,
9304 max (t
, mock_input
),
9305 /* If there's a binding (i.e.
9306 first_binding >= nmaps) we don't want
9307 to apply this function-key-mapping. */
9308 fkey
.end
+ 1 == t
&& first_binding
>= nmaps
,
9313 mock_input
= diff
+ max (t
, mock_input
);
9314 goto replay_sequence
;
9318 /* Look for this sequence in key-translation-map.
9319 Scan from keytran.end until we find a bound suffix. */
9320 while (keytran
.end
< fkey
.start
)
9322 struct gcpro gcpro1
, gcpro2
, gcpro3
;
9325 GCPRO3 (fkey
.map
, keytran
.map
, delayed_switch_frame
);
9326 done
= keyremap_step (keybuf
, bufsize
, &keytran
, max (t
, mock_input
),
9331 mock_input
= diff
+ max (t
, mock_input
);
9332 /* Adjust the function-key-map counters. */
9336 goto replay_sequence
;
9340 /* If KEY is not defined in any of the keymaps,
9341 and cannot be part of a function key or translation,
9342 and is an upper case letter
9343 use the corresponding lower-case letter instead. */
9344 if (first_binding
>= nmaps
9345 && fkey
.start
>= t
&& keytran
.start
>= t
9347 && ((((XINT (key
) & 0x3ffff)
9348 < XCHAR_TABLE (current_buffer
->downcase_table
)->size
)
9349 && UPPERCASEP (XINT (key
) & 0x3ffff))
9350 || (XINT (key
) & shift_modifier
)))
9352 Lisp_Object new_key
;
9354 original_uppercase
= key
;
9355 original_uppercase_position
= t
- 1;
9357 if (XINT (key
) & shift_modifier
)
9358 XSETINT (new_key
, XINT (key
) & ~shift_modifier
);
9360 XSETINT (new_key
, (DOWNCASE (XINT (key
) & 0x3ffff)
9361 | (XINT (key
) & ~0x3ffff)));
9363 /* We have to do this unconditionally, regardless of whether
9364 the lower-case char is defined in the keymaps, because they
9365 might get translated through function-key-map. */
9366 keybuf
[t
- 1] = new_key
;
9367 mock_input
= max (t
, mock_input
);
9369 goto replay_sequence
;
9371 /* If KEY is not defined in any of the keymaps,
9372 and cannot be part of a function key or translation,
9373 and is a shifted function key,
9374 use the corresponding unshifted function key instead. */
9375 if (first_binding
>= nmaps
9376 && fkey
.start
>= t
&& keytran
.start
>= t
9379 Lisp_Object breakdown
;
9382 breakdown
= parse_modifiers (key
);
9383 modifiers
= XINT (XCAR (XCDR (breakdown
)));
9384 if (modifiers
& shift_modifier
)
9386 Lisp_Object new_key
;
9388 original_uppercase
= key
;
9389 original_uppercase_position
= t
- 1;
9391 modifiers
&= ~shift_modifier
;
9392 new_key
= apply_modifiers (modifiers
,
9395 keybuf
[t
- 1] = new_key
;
9396 mock_input
= max (t
, mock_input
);
9397 fkey
.start
= fkey
.end
= KEYMAPP (fkey
.map
) ? 0 : bufsize
+ 1;
9398 keytran
.start
= keytran
.end
= KEYMAPP (keytran
.map
) ? 0 : bufsize
+ 1;
9400 goto replay_sequence
;
9406 read_key_sequence_cmd
= (first_binding
< nmaps
9407 ? defs
[first_binding
]
9410 unread_switch_frame
= delayed_switch_frame
;
9411 unbind_to (count
, Qnil
);
9413 /* Don't downcase the last character if the caller says don't.
9414 Don't downcase it if the result is undefined, either. */
9415 if ((dont_downcase_last
|| first_binding
>= nmaps
)
9416 && t
- 1 == original_uppercase_position
)
9417 keybuf
[t
- 1] = original_uppercase
;
9419 /* Occasionally we fabricate events, perhaps by expanding something
9420 according to function-key-map, or by adding a prefix symbol to a
9421 mouse click in the scroll bar or modeline. In this cases, return
9422 the entire generated key sequence, even if we hit an unbound
9423 prefix or a definition before the end. This means that you will
9424 be able to push back the event properly, and also means that
9425 read-key-sequence will always return a logical unit.
9428 for (; t
< mock_input
; t
++)
9430 if ((FLOATP (Vecho_keystrokes
) || INTEGERP (Vecho_keystrokes
))
9431 && NILP (Fzerop (Vecho_keystrokes
)))
9432 echo_char (keybuf
[t
]);
9433 add_command_key (keybuf
[t
]);
9442 DEFUN ("read-key-sequence", Fread_key_sequence
, Sread_key_sequence
, 1, 5, 0,
9443 doc
: /* Read a sequence of keystrokes and return as a string or vector.
9444 The sequence is sufficient to specify a non-prefix command in the
9445 current local and global maps.
9447 First arg PROMPT is a prompt string. If nil, do not prompt specially.
9448 Second (optional) arg CONTINUE-ECHO, if non-nil, means this key echos
9449 as a continuation of the previous key.
9451 The third (optional) arg DONT-DOWNCASE-LAST, if non-nil, means do not
9452 convert the last event to lower case. (Normally any upper case event
9453 is converted to lower case if the original event is undefined and the lower
9454 case equivalent is defined.) A non-nil value is appropriate for reading
9455 a key sequence to be defined.
9457 A C-g typed while in this function is treated like any other character,
9458 and `quit-flag' is not set.
9460 If the key sequence starts with a mouse click, then the sequence is read
9461 using the keymaps of the buffer of the window clicked in, not the buffer
9462 of the selected window as normal.
9464 `read-key-sequence' drops unbound button-down events, since you normally
9465 only care about the click or drag events which follow them. If a drag
9466 or multi-click event is unbound, but the corresponding click event would
9467 be bound, `read-key-sequence' turns the event into a click event at the
9468 drag's starting position. This means that you don't have to distinguish
9469 between click and drag, double, or triple events unless you want to.
9471 `read-key-sequence' prefixes mouse events on mode lines, the vertical
9472 lines separating windows, and scroll bars with imaginary keys
9473 `mode-line', `vertical-line', and `vertical-scroll-bar'.
9475 Optional fourth argument CAN-RETURN-SWITCH-FRAME non-nil means that this
9476 function will process a switch-frame event if the user switches frames
9477 before typing anything. If the user switches frames in the middle of a
9478 key sequence, or at the start of the sequence but CAN-RETURN-SWITCH-FRAME
9479 is nil, then the event will be put off until after the current key sequence.
9481 `read-key-sequence' checks `function-key-map' for function key
9482 sequences, where they wouldn't conflict with ordinary bindings. See
9483 `function-key-map' for more details.
9485 The optional fifth argument COMMAND-LOOP, if non-nil, means
9486 that this key sequence is being read by something that will
9487 read commands one after another. It should be nil if the caller
9488 will read just one key sequence. */)
9489 (prompt
, continue_echo
, dont_downcase_last
, can_return_switch_frame
,
9491 Lisp_Object prompt
, continue_echo
, dont_downcase_last
;
9492 Lisp_Object can_return_switch_frame
, command_loop
;
9494 Lisp_Object keybuf
[30];
9496 struct gcpro gcpro1
;
9497 int count
= SPECPDL_INDEX ();
9500 CHECK_STRING (prompt
);
9503 specbind (Qinput_method_exit_on_first_char
,
9504 (NILP (command_loop
) ? Qt
: Qnil
));
9505 specbind (Qinput_method_use_echo_area
,
9506 (NILP (command_loop
) ? Qt
: Qnil
));
9508 bzero (keybuf
, sizeof keybuf
);
9510 gcpro1
.nvars
= (sizeof keybuf
/sizeof (keybuf
[0]));
9512 if (NILP (continue_echo
))
9514 this_command_key_count
= 0;
9515 this_command_key_count_reset
= 0;
9516 this_single_command_key_start
= 0;
9519 #ifdef HAVE_X_WINDOWS
9520 if (display_hourglass_p
)
9521 cancel_hourglass ();
9524 i
= read_key_sequence (keybuf
, (sizeof keybuf
/sizeof (keybuf
[0])),
9525 prompt
, ! NILP (dont_downcase_last
),
9526 ! NILP (can_return_switch_frame
), 0);
9528 #if 0 /* The following is fine for code reading a key sequence and
9529 then proceeding with a lenghty computation, but it's not good
9530 for code reading keys in a loop, like an input method. */
9531 #ifdef HAVE_X_WINDOWS
9532 if (display_hourglass_p
)
9543 return unbind_to (count
, make_event_array (i
, keybuf
));
9546 DEFUN ("read-key-sequence-vector", Fread_key_sequence_vector
,
9547 Sread_key_sequence_vector
, 1, 5, 0,
9548 doc
: /* Like `read-key-sequence' but always return a vector. */)
9549 (prompt
, continue_echo
, dont_downcase_last
, can_return_switch_frame
,
9551 Lisp_Object prompt
, continue_echo
, dont_downcase_last
;
9552 Lisp_Object can_return_switch_frame
, command_loop
;
9554 Lisp_Object keybuf
[30];
9556 struct gcpro gcpro1
;
9557 int count
= SPECPDL_INDEX ();
9560 CHECK_STRING (prompt
);
9563 specbind (Qinput_method_exit_on_first_char
,
9564 (NILP (command_loop
) ? Qt
: Qnil
));
9565 specbind (Qinput_method_use_echo_area
,
9566 (NILP (command_loop
) ? Qt
: Qnil
));
9568 bzero (keybuf
, sizeof keybuf
);
9570 gcpro1
.nvars
= (sizeof keybuf
/sizeof (keybuf
[0]));
9572 if (NILP (continue_echo
))
9574 this_command_key_count
= 0;
9575 this_command_key_count_reset
= 0;
9576 this_single_command_key_start
= 0;
9579 #ifdef HAVE_X_WINDOWS
9580 if (display_hourglass_p
)
9581 cancel_hourglass ();
9584 i
= read_key_sequence (keybuf
, (sizeof keybuf
/sizeof (keybuf
[0])),
9585 prompt
, ! NILP (dont_downcase_last
),
9586 ! NILP (can_return_switch_frame
), 0);
9588 #ifdef HAVE_X_WINDOWS
9589 if (display_hourglass_p
)
9599 return unbind_to (count
, Fvector (i
, keybuf
));
9602 DEFUN ("command-execute", Fcommand_execute
, Scommand_execute
, 1, 4, 0,
9603 doc
: /* Execute CMD as an editor command.
9604 CMD must be a symbol that satisfies the `commandp' predicate.
9605 Optional second arg RECORD-FLAG non-nil
9606 means unconditionally put this command in `command-history'.
9607 Otherwise, that is done only if an arg is read using the minibuffer.
9608 The argument KEYS specifies the value to use instead of (this-command-keys)
9609 when reading the arguments; if it is nil, (this-command-keys) is used.
9610 The argument SPECIAL, if non-nil, means that this command is executing
9611 a special event, so ignore the prefix argument and don't clear it. */)
9612 (cmd
, record_flag
, keys
, special
)
9613 Lisp_Object cmd
, record_flag
, keys
, special
;
9615 register Lisp_Object final
;
9616 register Lisp_Object tem
;
9617 Lisp_Object prefixarg
;
9618 struct backtrace backtrace
;
9619 extern int debug_on_next_call
;
9621 debug_on_next_call
= 0;
9625 prefixarg
= current_kboard
->Vprefix_arg
;
9626 Vcurrent_prefix_arg
= prefixarg
;
9627 current_kboard
->Vprefix_arg
= Qnil
;
9634 tem
= Fget (cmd
, Qdisabled
);
9635 if (!NILP (tem
) && !NILP (Vrun_hooks
))
9637 tem
= Fsymbol_value (Qdisabled_command_function
);
9639 return call1 (Vrun_hooks
, Qdisabled_command_function
);
9645 final
= Findirect_function (cmd
);
9647 if (CONSP (final
) && (tem
= Fcar (final
), EQ (tem
, Qautoload
)))
9649 struct gcpro gcpro1
, gcpro2
;
9651 GCPRO2 (cmd
, prefixarg
);
9652 do_autoload (final
, cmd
);
9659 if (STRINGP (final
) || VECTORP (final
))
9661 /* If requested, place the macro in the command history. For
9662 other sorts of commands, call-interactively takes care of
9664 if (!NILP (record_flag
))
9667 = Fcons (Fcons (Qexecute_kbd_macro
,
9668 Fcons (final
, Fcons (prefixarg
, Qnil
))),
9671 /* Don't keep command history around forever. */
9672 if (NUMBERP (Vhistory_length
) && XINT (Vhistory_length
) > 0)
9674 tem
= Fnthcdr (Vhistory_length
, Vcommand_history
);
9676 XSETCDR (tem
, Qnil
);
9680 return Fexecute_kbd_macro (final
, prefixarg
, Qnil
);
9683 if (CONSP (final
) || SUBRP (final
) || COMPILEDP (final
))
9685 backtrace
.next
= backtrace_list
;
9686 backtrace_list
= &backtrace
;
9687 backtrace
.function
= &Qcall_interactively
;
9688 backtrace
.args
= &cmd
;
9689 backtrace
.nargs
= 1;
9690 backtrace
.evalargs
= 0;
9691 backtrace
.debug_on_exit
= 0;
9693 tem
= Fcall_interactively (cmd
, record_flag
, keys
);
9695 backtrace_list
= backtrace
.next
;
9703 DEFUN ("execute-extended-command", Fexecute_extended_command
, Sexecute_extended_command
,
9705 doc
: /* Read function name, then read its arguments and call it. */)
9707 Lisp_Object prefixarg
;
9709 Lisp_Object function
;
9711 int saved_last_point_position
;
9712 Lisp_Object saved_keys
, saved_last_point_position_buffer
;
9713 Lisp_Object bindings
, value
;
9714 struct gcpro gcpro1
, gcpro2
, gcpro3
;
9716 saved_keys
= Fvector (this_command_key_count
,
9717 XVECTOR (this_command_keys
)->contents
);
9718 saved_last_point_position_buffer
= last_point_position_buffer
;
9719 saved_last_point_position
= last_point_position
;
9721 GCPRO3 (saved_keys
, prefixarg
, saved_last_point_position_buffer
);
9723 if (EQ (prefixarg
, Qminus
))
9725 else if (CONSP (prefixarg
) && XINT (XCAR (prefixarg
)) == 4)
9726 strcpy (buf
, "C-u ");
9727 else if (CONSP (prefixarg
) && INTEGERP (XCAR (prefixarg
)))
9728 sprintf (buf
, "%ld ", (long) XINT (XCAR (prefixarg
)));
9729 else if (INTEGERP (prefixarg
))
9730 sprintf (buf
, "%ld ", (long) XINT (prefixarg
));
9732 /* This isn't strictly correct if execute-extended-command
9733 is bound to anything else. Perhaps it should use
9734 this_command_keys? */
9735 strcat (buf
, "M-x ");
9737 /* Prompt with buf, and then read a string, completing from and
9738 restricting to the set of all defined commands. Don't provide
9739 any initial input. Save the command read on the extended-command
9741 function
= Fcompleting_read (build_string (buf
),
9742 Vobarray
, Qcommandp
,
9743 Qt
, Qnil
, Qextended_command_history
, Qnil
,
9746 if (STRINGP (function
) && SCHARS (function
) == 0)
9747 error ("No command name given");
9749 /* Set this_command_keys to the concatenation of saved_keys and
9750 function, followed by a RET. */
9755 this_command_key_count
= 0;
9756 this_command_key_count_reset
= 0;
9757 this_single_command_key_start
= 0;
9759 keys
= XVECTOR (saved_keys
)->contents
;
9760 for (i
= 0; i
< XVECTOR (saved_keys
)->size
; i
++)
9761 add_command_key (keys
[i
]);
9763 for (i
= 0; i
< SCHARS (function
); i
++)
9764 add_command_key (Faref (function
, make_number (i
)));
9766 add_command_key (make_number ('\015'));
9769 last_point_position
= saved_last_point_position
;
9770 last_point_position_buffer
= saved_last_point_position_buffer
;
9774 function
= Fintern (function
, Qnil
);
9775 current_kboard
->Vprefix_arg
= prefixarg
;
9776 Vthis_command
= function
;
9777 real_this_command
= function
;
9779 /* If enabled, show which key runs this command. */
9780 if (!NILP (Vsuggest_key_bindings
)
9781 && NILP (Vexecuting_macro
)
9782 && SYMBOLP (function
))
9783 bindings
= Fwhere_is_internal (function
, Voverriding_local_map
,
9789 GCPRO2 (bindings
, value
);
9790 value
= Fcommand_execute (function
, Qt
, Qnil
, Qnil
);
9792 /* If the command has a key binding, print it now. */
9793 if (!NILP (bindings
)
9794 && ! (VECTORP (bindings
) && EQ (Faref (bindings
, make_number (0)),
9797 /* But first wait, and skip the message if there is input. */
9799 if (!NILP (echo_area_buffer
[0]))
9800 /* This command displayed something in the echo area;
9801 so wait a few seconds, then display our suggestion message. */
9802 delay_time
= (NUMBERP (Vsuggest_key_bindings
)
9803 ? XINT (Vsuggest_key_bindings
) : 2);
9805 /* This command left the echo area empty,
9806 so display our message immediately. */
9809 if (!NILP (Fsit_for (make_number (delay_time
), Qnil
, Qnil
))
9810 && ! CONSP (Vunread_command_events
))
9812 Lisp_Object binding
;
9814 int message_p
= push_message ();
9815 int count
= SPECPDL_INDEX ();
9817 record_unwind_protect (pop_message_unwind
, Qnil
);
9818 binding
= Fkey_description (bindings
, Qnil
);
9821 = (char *) alloca (SCHARS (SYMBOL_NAME (function
))
9824 sprintf (newmessage
, "You can run the command `%s' with %s",
9825 SDATA (SYMBOL_NAME (function
)),
9827 message2_nolog (newmessage
,
9828 strlen (newmessage
),
9829 STRING_MULTIBYTE (binding
));
9830 if (!NILP (Fsit_for ((NUMBERP (Vsuggest_key_bindings
)
9831 ? Vsuggest_key_bindings
: make_number (2)),
9836 unbind_to (count
, Qnil
);
9840 RETURN_UNGCPRO (value
);
9844 /* Return nonzero if input events are pending. */
9847 detect_input_pending ()
9850 get_input_pending (&input_pending
, 0);
9852 return input_pending
;
9855 /* Return nonzero if input events other than mouse movements are
9859 detect_input_pending_ignore_squeezables ()
9862 get_input_pending (&input_pending
, READABLE_EVENTS_IGNORE_SQUEEZABLES
);
9864 return input_pending
;
9867 /* Return nonzero if input events are pending, and run any pending timers. */
9870 detect_input_pending_run_timers (do_display
)
9873 int old_timers_run
= timers_run
;
9876 get_input_pending (&input_pending
, READABLE_EVENTS_DO_TIMERS_NOW
);
9878 if (old_timers_run
!= timers_run
&& do_display
)
9880 redisplay_preserve_echo_area (8);
9881 /* The following fixes a bug when using lazy-lock with
9882 lazy-lock-defer-on-the-fly set to t, i.e. when fontifying
9883 from an idle timer function. The symptom of the bug is that
9884 the cursor sometimes doesn't become visible until the next X
9885 event is processed. --gerd. */
9887 rif
->flush_display (NULL
);
9890 return input_pending
;
9893 /* This is called in some cases before a possible quit.
9894 It cases the next call to detect_input_pending to recompute input_pending.
9895 So calling this function unnecessarily can't do any harm. */
9898 clear_input_pending ()
9903 /* Return nonzero if there are pending requeued events.
9904 This isn't used yet. The hope is to make wait_reading_process_output
9905 call it, and return if it runs Lisp code that unreads something.
9906 The problem is, kbd_buffer_get_event needs to be fixed to know what
9907 to do in that case. It isn't trivial. */
9910 requeued_events_pending_p ()
9912 return (!NILP (Vunread_command_events
) || unread_command_char
!= -1);
9916 DEFUN ("input-pending-p", Finput_pending_p
, Sinput_pending_p
, 0, 0, 0,
9917 doc
: /* Return t if command input is currently available with no wait.
9918 Actually, the value is nil only if we can be sure that no input is available;
9919 if there is a doubt, the value is t. */)
9922 if (!NILP (Vunread_command_events
) || unread_command_char
!= -1)
9925 get_input_pending (&input_pending
,
9926 READABLE_EVENTS_DO_TIMERS_NOW
9927 | READABLE_EVENTS_FILTER_EVENTS
);
9928 return input_pending
> 0 ? Qt
: Qnil
;
9931 DEFUN ("recent-keys", Frecent_keys
, Srecent_keys
, 0, 0, 0,
9932 doc
: /* Return vector of last 100 events, not counting those from keyboard macros. */)
9935 Lisp_Object
*keys
= XVECTOR (recent_keys
)->contents
;
9938 if (total_keys
< NUM_RECENT_KEYS
)
9939 return Fvector (total_keys
, keys
);
9942 val
= Fvector (NUM_RECENT_KEYS
, keys
);
9943 bcopy (keys
+ recent_keys_index
,
9944 XVECTOR (val
)->contents
,
9945 (NUM_RECENT_KEYS
- recent_keys_index
) * sizeof (Lisp_Object
));
9947 XVECTOR (val
)->contents
+ NUM_RECENT_KEYS
- recent_keys_index
,
9948 recent_keys_index
* sizeof (Lisp_Object
));
9953 DEFUN ("this-command-keys", Fthis_command_keys
, Sthis_command_keys
, 0, 0, 0,
9954 doc
: /* Return the key sequence that invoked this command.
9955 However, if the command has called `read-key-sequence', it returns
9956 the last key sequence that has been read.
9957 The value is a string or a vector. */)
9960 return make_event_array (this_command_key_count
,
9961 XVECTOR (this_command_keys
)->contents
);
9964 DEFUN ("this-command-keys-vector", Fthis_command_keys_vector
, Sthis_command_keys_vector
, 0, 0, 0,
9965 doc
: /* Return the key sequence that invoked this command, as a vector.
9966 However, if the command has called `read-key-sequence', it returns
9967 the last key sequence that has been read. */)
9970 return Fvector (this_command_key_count
,
9971 XVECTOR (this_command_keys
)->contents
);
9974 DEFUN ("this-single-command-keys", Fthis_single_command_keys
,
9975 Sthis_single_command_keys
, 0, 0, 0,
9976 doc
: /* Return the key sequence that invoked this command.
9977 More generally, it returns the last key sequence read, either by
9978 the command loop or by `read-key-sequence'.
9979 Unlike `this-command-keys', this function's value
9980 does not include prefix arguments.
9981 The value is always a vector. */)
9984 return Fvector (this_command_key_count
9985 - this_single_command_key_start
,
9986 (XVECTOR (this_command_keys
)->contents
9987 + this_single_command_key_start
));
9990 DEFUN ("this-single-command-raw-keys", Fthis_single_command_raw_keys
,
9991 Sthis_single_command_raw_keys
, 0, 0, 0,
9992 doc
: /* Return the raw events that were read for this command.
9993 More generally, it returns the last key sequence read, either by
9994 the command loop or by `read-key-sequence'.
9995 Unlike `this-single-command-keys', this function's value
9996 shows the events before all translations (except for input methods).
9997 The value is always a vector. */)
10000 return Fvector (raw_keybuf_count
,
10001 (XVECTOR (raw_keybuf
)->contents
));
10004 DEFUN ("reset-this-command-lengths", Freset_this_command_lengths
,
10005 Sreset_this_command_lengths
, 0, 0, 0,
10006 doc
: /* Make the unread events replace the last command and echo.
10007 Used in `universal-argument-other-key'.
10009 `universal-argument-other-key' rereads the event just typed.
10010 It then gets translated through `function-key-map'.
10011 The translated event has to replace the real events,
10012 both in the value of (this-command-keys) and in echoing.
10013 To achieve this, `universal-argument-other-key' calls
10014 `reset-this-command-lengths', which discards the record of reading
10015 these events the first time. */)
10018 this_command_key_count
= before_command_key_count
;
10019 if (this_command_key_count
< this_single_command_key_start
)
10020 this_single_command_key_start
= this_command_key_count
;
10022 echo_truncate (before_command_echo_length
);
10024 /* Cause whatever we put into unread-command-events
10025 to echo as if it were being freshly read from the keyboard. */
10026 this_command_key_count_reset
= 1;
10031 DEFUN ("clear-this-command-keys", Fclear_this_command_keys
,
10032 Sclear_this_command_keys
, 0, 1, 0,
10033 doc
: /* Clear out the vector that `this-command-keys' returns.
10034 Also clear the record of the last 100 events, unless optional arg
10035 KEEP-RECORD is non-nil. */)
10037 Lisp_Object keep_record
;
10041 this_command_key_count
= 0;
10042 this_command_key_count_reset
= 0;
10044 if (NILP (keep_record
))
10046 for (i
= 0; i
< XVECTOR (recent_keys
)->size
; ++i
)
10047 XVECTOR (recent_keys
)->contents
[i
] = Qnil
;
10049 recent_keys_index
= 0;
10054 DEFUN ("recursion-depth", Frecursion_depth
, Srecursion_depth
, 0, 0, 0,
10055 doc
: /* Return the current depth in recursive edits. */)
10059 XSETFASTINT (temp
, command_loop_level
+ minibuf_level
);
10063 DEFUN ("open-dribble-file", Fopen_dribble_file
, Sopen_dribble_file
, 1, 1,
10064 "FOpen dribble file: ",
10065 doc
: /* Start writing all keyboard characters to a dribble file called FILE.
10066 If FILE is nil, close any open dribble file. */)
10077 file
= Fexpand_file_name (file
, Qnil
);
10078 dribble
= fopen (SDATA (file
), "w");
10080 report_file_error ("Opening dribble", Fcons (file
, Qnil
));
10085 DEFUN ("discard-input", Fdiscard_input
, Sdiscard_input
, 0, 0, 0,
10086 doc
: /* Discard the contents of the terminal input buffer.
10087 Also end any kbd macro being defined. */)
10090 if (!NILP (current_kboard
->defining_kbd_macro
))
10092 /* Discard the last command from the macro. */
10093 Fcancel_kbd_macro_events ();
10097 update_mode_lines
++;
10099 Vunread_command_events
= Qnil
;
10100 unread_command_char
= -1;
10102 discard_tty_input ();
10104 kbd_fetch_ptr
= kbd_store_ptr
;
10110 DEFUN ("suspend-emacs", Fsuspend_emacs
, Ssuspend_emacs
, 0, 1, "",
10111 doc
: /* Stop Emacs and return to superior process. You can resume later.
10112 If `cannot-suspend' is non-nil, or if the system doesn't support job
10113 control, run a subshell instead.
10115 If optional arg STUFFSTRING is non-nil, its characters are stuffed
10116 to be read as terminal input by Emacs's parent, after suspension.
10118 Before suspending, run the normal hook `suspend-hook'.
10119 After resumption run the normal hook `suspend-resume-hook'.
10121 Some operating systems cannot stop the Emacs process and resume it later.
10122 On such systems, Emacs starts a subshell instead of suspending. */)
10124 Lisp_Object stuffstring
;
10126 int count
= SPECPDL_INDEX ();
10127 int old_height
, old_width
;
10129 struct gcpro gcpro1
;
10131 if (!NILP (stuffstring
))
10132 CHECK_STRING (stuffstring
);
10134 /* Run the functions in suspend-hook. */
10135 if (!NILP (Vrun_hooks
))
10136 call1 (Vrun_hooks
, intern ("suspend-hook"));
10138 GCPRO1 (stuffstring
);
10139 get_frame_size (&old_width
, &old_height
);
10140 reset_sys_modes ();
10141 /* sys_suspend can get an error if it tries to fork a subshell
10142 and the system resources aren't available for that. */
10143 record_unwind_protect ((Lisp_Object (*) P_ ((Lisp_Object
))) init_sys_modes
,
10145 stuff_buffered_input (stuffstring
);
10146 if (cannot_suspend
)
10150 unbind_to (count
, Qnil
);
10152 /* Check if terminal/window size has changed.
10153 Note that this is not useful when we are running directly
10154 with a window system; but suspend should be disabled in that case. */
10155 get_frame_size (&width
, &height
);
10156 if (width
!= old_width
|| height
!= old_height
)
10157 change_frame_size (SELECTED_FRAME (), height
, width
, 0, 0, 0);
10159 /* Run suspend-resume-hook. */
10160 if (!NILP (Vrun_hooks
))
10161 call1 (Vrun_hooks
, intern ("suspend-resume-hook"));
10167 /* If STUFFSTRING is a string, stuff its contents as pending terminal input.
10168 Then in any case stuff anything Emacs has read ahead and not used. */
10171 stuff_buffered_input (stuffstring
)
10172 Lisp_Object stuffstring
;
10174 #ifdef SIGTSTP /* stuff_char is defined if SIGTSTP. */
10175 register unsigned char *p
;
10177 if (STRINGP (stuffstring
))
10179 register int count
;
10181 p
= SDATA (stuffstring
);
10182 count
= SBYTES (stuffstring
);
10183 while (count
-- > 0)
10188 /* Anything we have read ahead, put back for the shell to read. */
10189 /* ?? What should this do when we have multiple keyboards??
10190 Should we ignore anything that was typed in at the "wrong" kboard?
10192 rms: we should stuff everything back into the kboard
10194 for (; kbd_fetch_ptr
!= kbd_store_ptr
; kbd_fetch_ptr
++)
10197 if (kbd_fetch_ptr
== kbd_buffer
+ KBD_BUFFER_SIZE
)
10198 kbd_fetch_ptr
= kbd_buffer
;
10199 if (kbd_fetch_ptr
->kind
== ASCII_KEYSTROKE_EVENT
)
10200 stuff_char (kbd_fetch_ptr
->code
);
10202 clear_event (kbd_fetch_ptr
);
10206 #endif /* SIGTSTP */
10210 set_waiting_for_input (time_to_clear
)
10211 EMACS_TIME
*time_to_clear
;
10213 input_available_clear_time
= time_to_clear
;
10215 /* Tell interrupt_signal to throw back to read_char, */
10216 waiting_for_input
= 1;
10218 /* If interrupt_signal was called before and buffered a C-g,
10219 make it run again now, to avoid timing error. */
10220 if (!NILP (Vquit_flag
))
10221 quit_throw_to_read_char ();
10225 clear_waiting_for_input ()
10227 /* Tell interrupt_signal not to throw back to read_char, */
10228 waiting_for_input
= 0;
10229 input_available_clear_time
= 0;
10232 /* This routine is called at interrupt level in response to C-g.
10234 If interrupt_input, this is the handler for SIGINT. Otherwise, it
10235 is called from kbd_buffer_store_event, in handling SIGIO or
10238 If `waiting_for_input' is non zero, then unless `echoing' is
10239 nonzero, immediately throw back to read_char.
10241 Otherwise it sets the Lisp variable quit-flag not-nil. This causes
10242 eval to throw, when it gets a chance. If quit-flag is already
10243 non-nil, it stops the job right away. */
10246 interrupt_signal (signalnum
) /* If we don't have an argument, */
10247 int signalnum
; /* some compilers complain in signal calls. */
10250 /* Must preserve main program's value of errno. */
10251 int old_errno
= errno
;
10252 struct frame
*sf
= SELECTED_FRAME ();
10254 #if defined (USG) && !defined (POSIX_SIGNALS)
10255 if (!read_socket_hook
&& NILP (Vwindow_system
))
10257 /* USG systems forget handlers when they are used;
10258 must reestablish each time */
10259 signal (SIGINT
, interrupt_signal
);
10260 signal (SIGQUIT
, interrupt_signal
);
10264 SIGNAL_THREAD_CHECK (signalnum
);
10267 if (!NILP (Vquit_flag
)
10268 && (FRAME_TERMCAP_P (sf
) || FRAME_MSDOS_P (sf
)))
10270 /* If SIGINT isn't blocked, don't let us be interrupted by
10271 another SIGINT, it might be harmful due to non-reentrancy
10272 in I/O functions. */
10273 sigblock (sigmask (SIGINT
));
10276 reset_sys_modes ();
10278 #ifdef SIGTSTP /* Support possible in later USG versions */
10280 * On systems which can suspend the current process and return to the original
10281 * shell, this command causes the user to end up back at the shell.
10282 * The "Auto-save" and "Abort" questions are not asked until
10283 * the user elects to return to emacs, at which point he can save the current
10284 * job and either dump core or continue.
10289 if (sys_suspend () == -1)
10291 printf ("Not running as a subprocess;\n");
10292 printf ("you can continue or abort.\n");
10294 #else /* not VMS */
10295 /* Perhaps should really fork an inferior shell?
10296 But that would not provide any way to get back
10297 to the original shell, ever. */
10298 printf ("No support for stopping a process on this operating system;\n");
10299 printf ("you can continue or abort.\n");
10300 #endif /* not VMS */
10301 #endif /* not SIGTSTP */
10303 /* We must remain inside the screen area when the internal terminal
10304 is used. Note that [Enter] is not echoed by dos. */
10307 /* It doesn't work to autosave while GC is in progress;
10308 the code used for auto-saving doesn't cope with the mark bit. */
10309 if (!gc_in_progress
)
10311 printf ("Auto-save? (y or n) ");
10313 if (((c
= getchar ()) & ~040) == 'Y')
10315 Fdo_auto_save (Qt
, Qnil
);
10317 printf ("\r\nAuto-save done");
10318 #else /* not MSDOS */
10319 printf ("Auto-save done\n");
10320 #endif /* not MSDOS */
10322 while (c
!= '\n') c
= getchar ();
10326 /* During GC, it must be safe to reenable quitting again. */
10327 Vinhibit_quit
= Qnil
;
10330 #endif /* not MSDOS */
10331 printf ("Garbage collection in progress; cannot auto-save now\r\n");
10332 printf ("but will instead do a real quit after garbage collection ends\r\n");
10337 printf ("\r\nAbort? (y or n) ");
10338 #else /* not MSDOS */
10340 printf ("Abort (and enter debugger)? (y or n) ");
10341 #else /* not VMS */
10342 printf ("Abort (and dump core)? (y or n) ");
10343 #endif /* not VMS */
10344 #endif /* not MSDOS */
10346 if (((c
= getchar ()) & ~040) == 'Y')
10348 while (c
!= '\n') c
= getchar ();
10350 printf ("\r\nContinuing...\r\n");
10351 #else /* not MSDOS */
10352 printf ("Continuing...\n");
10353 #endif /* not MSDOS */
10360 /* If executing a function that wants to be interrupted out of
10361 and the user has not deferred quitting by binding `inhibit-quit'
10362 then quit right away. */
10363 if (immediate_quit
&& NILP (Vinhibit_quit
))
10365 struct gl_state_s saved
;
10366 struct gcpro gcpro1
, gcpro2
, gcpro3
, gcpro4
;
10368 immediate_quit
= 0;
10371 GCPRO4 (saved
.object
, saved
.global_code
,
10372 saved
.current_syntax_table
, saved
.old_prop
);
10373 Fsignal (Qquit
, Qnil
);
10378 /* Else request quit when it's safe */
10382 if (waiting_for_input
&& !echoing
)
10383 quit_throw_to_read_char ();
10388 /* Handle a C-g by making read_char return C-g. */
10391 quit_throw_to_read_char ()
10394 /* Prevent another signal from doing this before we finish. */
10395 clear_waiting_for_input ();
10398 Vunread_command_events
= Qnil
;
10399 unread_command_char
= -1;
10401 #if 0 /* Currently, sit_for is called from read_char without turning
10402 off polling. And that can call set_waiting_for_input.
10403 It seems to be harmless. */
10404 #ifdef POLL_FOR_INPUT
10405 /* May be > 1 if in recursive minibuffer. */
10406 if (poll_suppress_count
== 0)
10410 if (FRAMEP (internal_last_event_frame
)
10411 && !EQ (internal_last_event_frame
, selected_frame
))
10412 do_switch_frame (make_lispy_switch_frame (internal_last_event_frame
),
10415 _longjmp (getcjmp
, 1);
10418 DEFUN ("set-input-mode", Fset_input_mode
, Sset_input_mode
, 3, 4, 0,
10419 doc
: /* Set mode of reading keyboard input.
10420 First arg INTERRUPT non-nil means use input interrupts;
10421 nil means use CBREAK mode.
10422 Second arg FLOW non-nil means use ^S/^Q flow control for output to terminal
10423 (no effect except in CBREAK mode).
10424 Third arg META t means accept 8-bit input (for a Meta key).
10425 META nil means ignore the top bit, on the assumption it is parity.
10426 Otherwise, accept 8-bit input and don't use the top bit for Meta.
10427 Optional fourth arg QUIT if non-nil specifies character to use for quitting.
10428 See also `current-input-mode'. */)
10429 (interrupt
, flow
, meta
, quit
)
10430 Lisp_Object interrupt
, flow
, meta
, quit
;
10433 && (!INTEGERP (quit
) || XINT (quit
) < 0 || XINT (quit
) > 0400))
10434 error ("set-input-mode: QUIT must be an ASCII character");
10436 #ifdef POLL_FOR_INPUT
10441 /* this causes startup screen to be restored and messes with the mouse */
10442 reset_sys_modes ();
10446 /* Note SIGIO has been undef'd if FIONREAD is missing. */
10447 if (read_socket_hook
)
10449 /* When using X, don't give the user a real choice,
10450 because we haven't implemented the mechanisms to support it. */
10451 #ifdef NO_SOCK_SIGIO
10452 interrupt_input
= 0;
10453 #else /* not NO_SOCK_SIGIO */
10454 interrupt_input
= 1;
10455 #endif /* NO_SOCK_SIGIO */
10458 interrupt_input
= !NILP (interrupt
);
10459 #else /* not SIGIO */
10460 interrupt_input
= 0;
10461 #endif /* not SIGIO */
10463 /* Our VMS input only works by interrupts, as of now. */
10465 interrupt_input
= 1;
10468 flow_control
= !NILP (flow
);
10471 else if (EQ (meta
, Qt
))
10476 /* Don't let this value be out of range. */
10477 quit_char
= XINT (quit
) & (meta_key
? 0377 : 0177);
10483 #ifdef POLL_FOR_INPUT
10484 poll_suppress_count
= 1;
10490 DEFUN ("current-input-mode", Fcurrent_input_mode
, Scurrent_input_mode
, 0, 0, 0,
10491 doc
: /* Return information about the way Emacs currently reads keyboard input.
10492 The value is a list of the form (INTERRUPT FLOW META QUIT), where
10493 INTERRUPT is non-nil if Emacs is using interrupt-driven input; if
10494 nil, Emacs is using CBREAK mode.
10495 FLOW is non-nil if Emacs uses ^S/^Q flow control for output to the
10496 terminal; this does not apply if Emacs uses interrupt-driven input.
10497 META is t if accepting 8-bit input with 8th bit as Meta flag.
10498 META nil means ignoring the top bit, on the assumption it is parity.
10499 META is neither t nor nil if accepting 8-bit input and using
10500 all 8 bits as the character code.
10501 QUIT is the character Emacs currently uses to quit.
10502 The elements of this list correspond to the arguments of
10503 `set-input-mode'. */)
10506 Lisp_Object val
[4];
10508 val
[0] = interrupt_input
? Qt
: Qnil
;
10509 val
[1] = flow_control
? Qt
: Qnil
;
10510 val
[2] = meta_key
== 2 ? make_number (0) : meta_key
== 1 ? Qt
: Qnil
;
10511 XSETFASTINT (val
[3], quit_char
);
10513 return Flist (sizeof (val
) / sizeof (val
[0]), val
);
10516 DEFUN ("posn-at-x-y", Fposn_at_x_y
, Sposn_at_x_y
, 2, 4, 0,
10517 doc
: /* Return position information for pixel coordinates X and Y.
10518 By default, X and Y are relative to text area of the selected window.
10519 Optional third arg FRAME_OR_WINDOW non-nil specifies frame or window.
10520 If optional fourth arg WHOLE is non-nil, X is relative to the left
10521 edge of the window.
10523 The return value is similar to a mouse click position:
10524 (WINDOW AREA-OR-POS (X . Y) TIMESTAMP OBJECT POS (COL . ROW)
10525 IMAGE (DX . DY) (WIDTH . HEIGHT))
10526 The `posn-' functions access elements of such lists. */)
10527 (x
, y
, frame_or_window
, whole
)
10528 Lisp_Object x
, y
, frame_or_window
, whole
;
10530 if (NILP (frame_or_window
))
10531 frame_or_window
= selected_window
;
10533 if (WINDOWP (frame_or_window
))
10537 CHECK_LIVE_WINDOW (frame_or_window
);
10539 w
= XWINDOW (frame_or_window
);
10540 XSETINT (x
, (WINDOW_TO_FRAME_PIXEL_X (w
, XINT (x
))
10542 ? window_box_left_offset (w
, TEXT_AREA
)
10543 : - (WINDOW_LEFT_SCROLL_BAR_COLS (w
)
10544 * WINDOW_FRAME_COLUMN_WIDTH (w
)))));
10545 XSETINT (y
, WINDOW_TO_FRAME_PIXEL_Y (w
, XINT (y
)));
10546 frame_or_window
= w
->frame
;
10549 CHECK_LIVE_FRAME (frame_or_window
);
10551 return make_lispy_position (XFRAME (frame_or_window
), &x
, &y
, 0);
10554 DEFUN ("posn-at-point", Fposn_at_point
, Sposn_at_point
, 0, 2, 0,
10555 doc
: /* Return position information for buffer POS in WINDOW.
10556 POS defaults to point in WINDOW; WINDOW defaults to the selected window.
10558 Return nil if position is not visible in window. Otherwise,
10559 the return value is similar to that returned by `event-start' for
10560 a mouse click at the upper left corner of the glyph corresponding
10561 to the given buffer position:
10562 (WINDOW AREA-OR-POS (X . Y) TIMESTAMP OBJECT POS (COL . ROW)
10563 IMAGE (DX . DY) (WIDTH . HEIGHT))
10564 The `posn-' functions access elements of such lists. */)
10566 Lisp_Object pos
, window
;
10570 tem
= Fpos_visible_in_window_p (pos
, window
, Qt
);
10572 tem
= Fposn_at_x_y (XCAR (tem
), XCAR (XCDR (tem
)), window
, Qnil
);
10578 * Set up a new kboard object with reasonable initial values.
10584 kb
->Voverriding_terminal_local_map
= Qnil
;
10585 kb
->Vlast_command
= Qnil
;
10586 kb
->Vreal_last_command
= Qnil
;
10587 kb
->Vprefix_arg
= Qnil
;
10588 kb
->Vlast_prefix_arg
= Qnil
;
10589 kb
->kbd_queue
= Qnil
;
10590 kb
->kbd_queue_has_data
= 0;
10591 kb
->immediate_echo
= 0;
10592 kb
->echo_string
= Qnil
;
10593 kb
->echo_after_prompt
= -1;
10594 kb
->kbd_macro_buffer
= 0;
10595 kb
->kbd_macro_bufsize
= 0;
10596 kb
->defining_kbd_macro
= Qnil
;
10597 kb
->Vlast_kbd_macro
= Qnil
;
10598 kb
->reference_count
= 0;
10599 kb
->Vsystem_key_alist
= Qnil
;
10600 kb
->system_key_syms
= Qnil
;
10601 kb
->Vdefault_minibuffer_frame
= Qnil
;
10605 * Destroy the contents of a kboard object, but not the object itself.
10606 * We use this just before deleting it, or if we're going to initialize
10607 * it a second time.
10613 if (kb
->kbd_macro_buffer
)
10614 xfree (kb
->kbd_macro_buffer
);
10617 #ifdef MULTI_KBOARD
10619 /* Free KB and memory referenced from it. */
10627 for (kbp
= &all_kboards
; *kbp
!= kb
; kbp
= &(*kbp
)->next_kboard
)
10630 *kbp
= kb
->next_kboard
;
10632 /* Prevent a dangling reference to KB. */
10633 if (kb
== current_kboard
10634 && FRAMEP (selected_frame
)
10635 && FRAME_LIVE_P (XFRAME (selected_frame
)))
10637 current_kboard
= XFRAME (selected_frame
)->kboard
;
10638 if (current_kboard
== kb
)
10646 #endif /* MULTI_KBOARD */
10651 /* This is correct before outermost invocation of the editor loop */
10652 command_loop_level
= -1;
10653 immediate_quit
= 0;
10654 quit_char
= Ctl ('g');
10655 Vunread_command_events
= Qnil
;
10656 unread_command_char
= -1;
10657 EMACS_SET_SECS_USECS (timer_idleness_start_time
, -1, -1);
10659 recent_keys_index
= 0;
10660 kbd_fetch_ptr
= kbd_buffer
;
10661 kbd_store_ptr
= kbd_buffer
;
10663 do_mouse_tracking
= Qnil
;
10667 /* This means that command_loop_1 won't try to select anything the first
10669 internal_last_event_frame
= Qnil
;
10670 Vlast_event_frame
= internal_last_event_frame
;
10672 #ifdef MULTI_KBOARD
10673 current_kboard
= initial_kboard
;
10675 wipe_kboard (current_kboard
);
10676 init_kboard (current_kboard
);
10678 if (!noninteractive
&& !read_socket_hook
&& NILP (Vwindow_system
))
10680 signal (SIGINT
, interrupt_signal
);
10681 #if defined (HAVE_TERMIO) || defined (HAVE_TERMIOS)
10682 /* For systems with SysV TERMIO, C-g is set up for both SIGINT and
10683 SIGQUIT and we can't tell which one it will give us. */
10684 signal (SIGQUIT
, interrupt_signal
);
10685 #endif /* HAVE_TERMIO */
10687 /* Note SIGIO has been undef'd if FIONREAD is missing. */
10689 if (!noninteractive
)
10690 signal (SIGIO
, input_available_signal
);
10693 /* Use interrupt input by default, if it works and noninterrupt input
10694 has deficiencies. */
10696 #ifdef INTERRUPT_INPUT
10697 interrupt_input
= 1;
10699 interrupt_input
= 0;
10702 /* Our VMS input only works by interrupts, as of now. */
10704 interrupt_input
= 1;
10710 if (keyboard_init_hook
)
10711 (*keyboard_init_hook
) ();
10713 #ifdef POLL_FOR_INPUT
10714 poll_suppress_count
= 1;
10719 /* At least provide an escape route since C-g doesn't work. */
10720 signal (SIGINT
, interrupt_signal
);
10724 /* This type's only use is in syms_of_keyboard, to initialize the
10725 event header symbols and put properties on them. */
10726 struct event_head
{
10732 struct event_head head_table
[] = {
10733 {&Qmouse_movement
, "mouse-movement", &Qmouse_movement
},
10734 {&Qscroll_bar_movement
, "scroll-bar-movement", &Qmouse_movement
},
10735 {&Qswitch_frame
, "switch-frame", &Qswitch_frame
},
10736 {&Qdelete_frame
, "delete-frame", &Qdelete_frame
},
10737 {&Qiconify_frame
, "iconify-frame", &Qiconify_frame
},
10738 {&Qmake_frame_visible
, "make-frame-visible", &Qmake_frame_visible
},
10739 /* `select-window' should be handled just like `switch-frame'
10740 in read_key_sequence. */
10741 {&Qselect_window
, "select-window", &Qswitch_frame
}
10745 syms_of_keyboard ()
10747 Vpre_help_message
= Qnil
;
10748 staticpro (&Vpre_help_message
);
10750 Vlispy_mouse_stem
= build_string ("mouse");
10751 staticpro (&Vlispy_mouse_stem
);
10754 QCimage
= intern (":image");
10755 staticpro (&QCimage
);
10757 staticpro (&Qhelp_echo
);
10758 Qhelp_echo
= intern ("help-echo");
10760 staticpro (&item_properties
);
10761 item_properties
= Qnil
;
10763 staticpro (&tool_bar_item_properties
);
10764 tool_bar_item_properties
= Qnil
;
10765 staticpro (&tool_bar_items_vector
);
10766 tool_bar_items_vector
= Qnil
;
10768 staticpro (&real_this_command
);
10769 real_this_command
= Qnil
;
10771 Qtimer_event_handler
= intern ("timer-event-handler");
10772 staticpro (&Qtimer_event_handler
);
10774 Qdisabled_command_function
= intern ("disabled-command-function");
10775 staticpro (&Qdisabled_command_function
);
10777 Qself_insert_command
= intern ("self-insert-command");
10778 staticpro (&Qself_insert_command
);
10780 Qforward_char
= intern ("forward-char");
10781 staticpro (&Qforward_char
);
10783 Qbackward_char
= intern ("backward-char");
10784 staticpro (&Qbackward_char
);
10786 Qdisabled
= intern ("disabled");
10787 staticpro (&Qdisabled
);
10789 Qundefined
= intern ("undefined");
10790 staticpro (&Qundefined
);
10792 Qpre_command_hook
= intern ("pre-command-hook");
10793 staticpro (&Qpre_command_hook
);
10795 Qpost_command_hook
= intern ("post-command-hook");
10796 staticpro (&Qpost_command_hook
);
10798 Qpost_command_idle_hook
= intern ("post-command-idle-hook");
10799 staticpro (&Qpost_command_idle_hook
);
10801 Qdeferred_action_function
= intern ("deferred-action-function");
10802 staticpro (&Qdeferred_action_function
);
10804 Qcommand_hook_internal
= intern ("command-hook-internal");
10805 staticpro (&Qcommand_hook_internal
);
10807 Qfunction_key
= intern ("function-key");
10808 staticpro (&Qfunction_key
);
10809 Qmouse_click
= intern ("mouse-click");
10810 staticpro (&Qmouse_click
);
10812 Qlanguage_change
= intern ("language-change");
10813 staticpro (&Qlanguage_change
);
10815 Qdrag_n_drop
= intern ("drag-n-drop");
10816 staticpro (&Qdrag_n_drop
);
10818 Qsave_session
= intern ("save-session");
10819 staticpro(&Qsave_session
);
10821 Qusr1_signal
= intern ("usr1-signal");
10822 staticpro (&Qusr1_signal
);
10823 Qusr2_signal
= intern ("usr2-signal");
10824 staticpro (&Qusr2_signal
);
10826 Qmenu_enable
= intern ("menu-enable");
10827 staticpro (&Qmenu_enable
);
10828 Qmenu_alias
= intern ("menu-alias");
10829 staticpro (&Qmenu_alias
);
10830 QCenable
= intern (":enable");
10831 staticpro (&QCenable
);
10832 QCvisible
= intern (":visible");
10833 staticpro (&QCvisible
);
10834 QChelp
= intern (":help");
10835 staticpro (&QChelp
);
10836 QCfilter
= intern (":filter");
10837 staticpro (&QCfilter
);
10838 QCbutton
= intern (":button");
10839 staticpro (&QCbutton
);
10840 QCkeys
= intern (":keys");
10841 staticpro (&QCkeys
);
10842 QCkey_sequence
= intern (":key-sequence");
10843 staticpro (&QCkey_sequence
);
10844 QCtoggle
= intern (":toggle");
10845 staticpro (&QCtoggle
);
10846 QCradio
= intern (":radio");
10847 staticpro (&QCradio
);
10849 Qmode_line
= intern ("mode-line");
10850 staticpro (&Qmode_line
);
10851 Qvertical_line
= intern ("vertical-line");
10852 staticpro (&Qvertical_line
);
10853 Qvertical_scroll_bar
= intern ("vertical-scroll-bar");
10854 staticpro (&Qvertical_scroll_bar
);
10855 Qmenu_bar
= intern ("menu-bar");
10856 staticpro (&Qmenu_bar
);
10858 Qabove_handle
= intern ("above-handle");
10859 staticpro (&Qabove_handle
);
10860 Qhandle
= intern ("handle");
10861 staticpro (&Qhandle
);
10862 Qbelow_handle
= intern ("below-handle");
10863 staticpro (&Qbelow_handle
);
10864 Qup
= intern ("up");
10866 Qdown
= intern ("down");
10867 staticpro (&Qdown
);
10868 Qtop
= intern ("top");
10870 Qbottom
= intern ("bottom");
10871 staticpro (&Qbottom
);
10872 Qend_scroll
= intern ("end-scroll");
10873 staticpro (&Qend_scroll
);
10874 Qratio
= intern ("ratio");
10875 staticpro (&Qratio
);
10877 Qevent_kind
= intern ("event-kind");
10878 staticpro (&Qevent_kind
);
10879 Qevent_symbol_elements
= intern ("event-symbol-elements");
10880 staticpro (&Qevent_symbol_elements
);
10881 Qevent_symbol_element_mask
= intern ("event-symbol-element-mask");
10882 staticpro (&Qevent_symbol_element_mask
);
10883 Qmodifier_cache
= intern ("modifier-cache");
10884 staticpro (&Qmodifier_cache
);
10886 Qrecompute_lucid_menubar
= intern ("recompute-lucid-menubar");
10887 staticpro (&Qrecompute_lucid_menubar
);
10888 Qactivate_menubar_hook
= intern ("activate-menubar-hook");
10889 staticpro (&Qactivate_menubar_hook
);
10891 Qpolling_period
= intern ("polling-period");
10892 staticpro (&Qpolling_period
);
10894 Qinput_method_function
= intern ("input-method-function");
10895 staticpro (&Qinput_method_function
);
10897 Qinput_method_exit_on_first_char
= intern ("input-method-exit-on-first-char");
10898 staticpro (&Qinput_method_exit_on_first_char
);
10899 Qinput_method_use_echo_area
= intern ("input-method-use-echo-area");
10900 staticpro (&Qinput_method_use_echo_area
);
10902 Fset (Qinput_method_exit_on_first_char
, Qnil
);
10903 Fset (Qinput_method_use_echo_area
, Qnil
);
10905 last_point_position_buffer
= Qnil
;
10908 struct event_head
*p
;
10910 for (p
= head_table
;
10911 p
< head_table
+ (sizeof (head_table
) / sizeof (head_table
[0]));
10914 *p
->var
= intern (p
->name
);
10915 staticpro (p
->var
);
10916 Fput (*p
->var
, Qevent_kind
, *p
->kind
);
10917 Fput (*p
->var
, Qevent_symbol_elements
, Fcons (*p
->var
, Qnil
));
10921 button_down_location
= Fmake_vector (make_number (1), Qnil
);
10922 staticpro (&button_down_location
);
10923 mouse_syms
= Fmake_vector (make_number (1), Qnil
);
10924 staticpro (&mouse_syms
);
10925 wheel_syms
= Fmake_vector (make_number (2), Qnil
);
10926 staticpro (&wheel_syms
);
10930 int len
= sizeof (modifier_names
) / sizeof (modifier_names
[0]);
10932 modifier_symbols
= Fmake_vector (make_number (len
), Qnil
);
10933 for (i
= 0; i
< len
; i
++)
10934 if (modifier_names
[i
])
10935 XVECTOR (modifier_symbols
)->contents
[i
] = intern (modifier_names
[i
]);
10936 staticpro (&modifier_symbols
);
10939 recent_keys
= Fmake_vector (make_number (NUM_RECENT_KEYS
), Qnil
);
10940 staticpro (&recent_keys
);
10942 this_command_keys
= Fmake_vector (make_number (40), Qnil
);
10943 staticpro (&this_command_keys
);
10945 raw_keybuf
= Fmake_vector (make_number (30), Qnil
);
10946 staticpro (&raw_keybuf
);
10948 Qextended_command_history
= intern ("extended-command-history");
10949 Fset (Qextended_command_history
, Qnil
);
10950 staticpro (&Qextended_command_history
);
10952 accent_key_syms
= Qnil
;
10953 staticpro (&accent_key_syms
);
10955 func_key_syms
= Qnil
;
10956 staticpro (&func_key_syms
);
10958 drag_n_drop_syms
= Qnil
;
10959 staticpro (&drag_n_drop_syms
);
10961 unread_switch_frame
= Qnil
;
10962 staticpro (&unread_switch_frame
);
10964 internal_last_event_frame
= Qnil
;
10965 staticpro (&internal_last_event_frame
);
10967 read_key_sequence_cmd
= Qnil
;
10968 staticpro (&read_key_sequence_cmd
);
10970 menu_bar_one_keymap_changed_items
= Qnil
;
10971 staticpro (&menu_bar_one_keymap_changed_items
);
10973 defsubr (&Sevent_convert_list
);
10974 defsubr (&Sread_key_sequence
);
10975 defsubr (&Sread_key_sequence_vector
);
10976 defsubr (&Srecursive_edit
);
10978 defsubr (&Strack_mouse
);
10980 defsubr (&Sinput_pending_p
);
10981 defsubr (&Scommand_execute
);
10982 defsubr (&Srecent_keys
);
10983 defsubr (&Sthis_command_keys
);
10984 defsubr (&Sthis_command_keys_vector
);
10985 defsubr (&Sthis_single_command_keys
);
10986 defsubr (&Sthis_single_command_raw_keys
);
10987 defsubr (&Sreset_this_command_lengths
);
10988 defsubr (&Sclear_this_command_keys
);
10989 defsubr (&Ssuspend_emacs
);
10990 defsubr (&Sabort_recursive_edit
);
10991 defsubr (&Sexit_recursive_edit
);
10992 defsubr (&Srecursion_depth
);
10993 defsubr (&Stop_level
);
10994 defsubr (&Sdiscard_input
);
10995 defsubr (&Sopen_dribble_file
);
10996 defsubr (&Sset_input_mode
);
10997 defsubr (&Scurrent_input_mode
);
10998 defsubr (&Sexecute_extended_command
);
10999 defsubr (&Sposn_at_point
);
11000 defsubr (&Sposn_at_x_y
);
11002 DEFVAR_LISP ("last-command-char", &last_command_char
,
11003 doc
: /* Last input event that was part of a command. */);
11005 DEFVAR_LISP_NOPRO ("last-command-event", &last_command_char
,
11006 doc
: /* Last input event that was part of a command. */);
11008 DEFVAR_LISP ("last-nonmenu-event", &last_nonmenu_event
,
11009 doc
: /* Last input event in a command, except for mouse menu events.
11010 Mouse menus give back keys that don't look like mouse events;
11011 this variable holds the actual mouse event that led to the menu,
11012 so that you can determine whether the command was run by mouse or not. */);
11014 DEFVAR_LISP ("last-input-char", &last_input_char
,
11015 doc
: /* Last input event. */);
11017 DEFVAR_LISP_NOPRO ("last-input-event", &last_input_char
,
11018 doc
: /* Last input event. */);
11020 DEFVAR_LISP ("unread-command-events", &Vunread_command_events
,
11021 doc
: /* List of events to be read as the command input.
11022 These events are processed first, before actual keyboard input. */);
11023 Vunread_command_events
= Qnil
;
11025 DEFVAR_INT ("unread-command-char", &unread_command_char
,
11026 doc
: /* If not -1, an object to be read as next command input event. */);
11028 DEFVAR_LISP ("unread-post-input-method-events", &Vunread_post_input_method_events
,
11029 doc
: /* List of events to be processed as input by input methods.
11030 These events are processed after `unread-command-events', but
11031 before actual keyboard input. */);
11032 Vunread_post_input_method_events
= Qnil
;
11034 DEFVAR_LISP ("unread-input-method-events", &Vunread_input_method_events
,
11035 doc
: /* List of events to be processed as input by input methods.
11036 These events are processed after `unread-command-events', but
11037 before actual keyboard input. */);
11038 Vunread_input_method_events
= Qnil
;
11040 DEFVAR_LISP ("meta-prefix-char", &meta_prefix_char
,
11041 doc
: /* Meta-prefix character code.
11042 Meta-foo as command input turns into this character followed by foo. */);
11043 XSETINT (meta_prefix_char
, 033);
11045 DEFVAR_KBOARD ("last-command", Vlast_command
,
11046 doc
: /* The last command executed.
11047 Normally a symbol with a function definition, but can be whatever was found
11048 in the keymap, or whatever the variable `this-command' was set to by that
11051 The value `mode-exit' is special; it means that the previous command
11052 read an event that told it to exit, and it did so and unread that event.
11053 In other words, the present command is the event that made the previous
11056 The value `kill-region' is special; it means that the previous command
11057 was a kill command. */);
11059 DEFVAR_KBOARD ("real-last-command", Vreal_last_command
,
11060 doc
: /* Same as `last-command', but never altered by Lisp code. */);
11062 DEFVAR_LISP ("this-command", &Vthis_command
,
11063 doc
: /* The command now being executed.
11064 The command can set this variable; whatever is put here
11065 will be in `last-command' during the following command. */);
11066 Vthis_command
= Qnil
;
11068 DEFVAR_LISP ("this-original-command", &Vthis_original_command
,
11069 doc
: /* The command bound to the current key sequence before remapping.
11070 It equals `this-command' if the original command was not remapped through
11071 any of the active keymaps. Otherwise, the value of `this-command' is the
11072 result of looking up the original command in the active keymaps. */);
11073 Vthis_original_command
= Qnil
;
11075 DEFVAR_INT ("auto-save-interval", &auto_save_interval
,
11076 doc
: /* *Number of input events between auto-saves.
11077 Zero means disable autosaving due to number of characters typed. */);
11078 auto_save_interval
= 300;
11080 DEFVAR_LISP ("auto-save-timeout", &Vauto_save_timeout
,
11081 doc
: /* *Number of seconds idle time before auto-save.
11082 Zero or nil means disable auto-saving due to idleness.
11083 After auto-saving due to this many seconds of idle time,
11084 Emacs also does a garbage collection if that seems to be warranted. */);
11085 XSETFASTINT (Vauto_save_timeout
, 30);
11087 DEFVAR_LISP ("echo-keystrokes", &Vecho_keystrokes
,
11088 doc
: /* *Nonzero means echo unfinished commands after this many seconds of pause.
11089 The value may be integer or floating point. */);
11090 Vecho_keystrokes
= make_number (1);
11092 DEFVAR_INT ("polling-period", &polling_period
,
11093 doc
: /* *Interval between polling for input during Lisp execution.
11094 The reason for polling is to make C-g work to stop a running program.
11095 Polling is needed only when using X windows and SIGIO does not work.
11096 Polling is automatically disabled in all other cases. */);
11097 polling_period
= 2;
11099 DEFVAR_LISP ("double-click-time", &Vdouble_click_time
,
11100 doc
: /* *Maximum time between mouse clicks to make a double-click.
11101 Measured in milliseconds. nil means disable double-click recognition;
11102 t means double-clicks have no time limit and are detected
11103 by position only. */);
11104 Vdouble_click_time
= make_number (500);
11106 DEFVAR_INT ("double-click-fuzz", &double_click_fuzz
,
11107 doc
: /* *Maximum mouse movement between clicks to make a double-click.
11108 On window-system frames, value is the number of pixels the mouse may have
11109 moved horizontally or vertically between two clicks to make a double-click.
11110 On non window-system frames, value is interpreted in units of 1/8 characters
11113 This variable is also the threshold for motion of the mouse
11114 to count as a drag. */);
11115 double_click_fuzz
= 3;
11117 DEFVAR_BOOL ("inhibit-local-menu-bar-menus", &inhibit_local_menu_bar_menus
,
11118 doc
: /* *Non-nil means inhibit local map menu bar menus. */);
11119 inhibit_local_menu_bar_menus
= 0;
11121 DEFVAR_INT ("num-input-keys", &num_input_keys
,
11122 doc
: /* Number of complete key sequences read as input so far.
11123 This includes key sequences read from keyboard macros.
11124 The number is effectively the number of interactive command invocations. */);
11125 num_input_keys
= 0;
11127 DEFVAR_INT ("num-nonmacro-input-events", &num_nonmacro_input_events
,
11128 doc
: /* Number of input events read from the keyboard so far.
11129 This does not include events generated by keyboard macros. */);
11130 num_nonmacro_input_events
= 0;
11132 DEFVAR_LISP ("last-event-frame", &Vlast_event_frame
,
11133 doc
: /* The frame in which the most recently read event occurred.
11134 If the last event came from a keyboard macro, this is set to `macro'. */);
11135 Vlast_event_frame
= Qnil
;
11137 /* This variable is set up in sysdep.c. */
11138 DEFVAR_LISP ("tty-erase-char", &Vtty_erase_char
,
11139 doc
: /* The ERASE character as set by the user with stty. */);
11141 DEFVAR_LISP ("help-char", &Vhelp_char
,
11142 doc
: /* Character to recognize as meaning Help.
11143 When it is read, do `(eval help-form)', and display result if it's a string.
11144 If the value of `help-form' is nil, this char can be read normally. */);
11145 XSETINT (Vhelp_char
, Ctl ('H'));
11147 DEFVAR_LISP ("help-event-list", &Vhelp_event_list
,
11148 doc
: /* List of input events to recognize as meaning Help.
11149 These work just like the value of `help-char' (see that). */);
11150 Vhelp_event_list
= Qnil
;
11152 DEFVAR_LISP ("help-form", &Vhelp_form
,
11153 doc
: /* Form to execute when character `help-char' is read.
11154 If the form returns a string, that string is displayed.
11155 If `help-form' is nil, the help char is not recognized. */);
11158 DEFVAR_LISP ("prefix-help-command", &Vprefix_help_command
,
11159 doc
: /* Command to run when `help-char' character follows a prefix key.
11160 This command is used only when there is no actual binding
11161 for that character after that prefix key. */);
11162 Vprefix_help_command
= Qnil
;
11164 DEFVAR_LISP ("top-level", &Vtop_level
,
11165 doc
: /* Form to evaluate when Emacs starts up.
11166 Useful to set before you dump a modified Emacs. */);
11169 DEFVAR_LISP ("keyboard-translate-table", &Vkeyboard_translate_table
,
11170 doc
: /* Translate table for keyboard input, or nil.
11171 If non-nil, the value should be a char-table. Each character read
11172 from the keyboard is looked up in this char-table. If the value found
11173 there is non-nil, then it is used instead of the actual input character.
11175 The value can also be a string or vector, but this is considered obsolete.
11176 If it is a string or vector of length N, character codes N and up are left
11177 untranslated. In a vector, an element which is nil means "no translation".
11179 This is applied to the characters supplied to input methods, not their
11180 output. See also `translation-table-for-input'. */);
11181 Vkeyboard_translate_table
= Qnil
;
11183 DEFVAR_BOOL ("cannot-suspend", &cannot_suspend
,
11184 doc
: /* Non-nil means to always spawn a subshell instead of suspending.
11185 \(Even if the operating system has support for stopping a process.\) */);
11186 cannot_suspend
= 0;
11188 DEFVAR_BOOL ("menu-prompting", &menu_prompting
,
11189 doc
: /* Non-nil means prompt with menus when appropriate.
11190 This is done when reading from a keymap that has a prompt string,
11191 for elements that have prompt strings.
11192 The menu is displayed on the screen
11193 if X menus were enabled at configuration
11194 time and the previous event was a mouse click prefix key.
11195 Otherwise, menu prompting uses the echo area. */);
11196 menu_prompting
= 1;
11198 DEFVAR_LISP ("menu-prompt-more-char", &menu_prompt_more_char
,
11199 doc
: /* Character to see next line of menu prompt.
11200 Type this character while in a menu prompt to rotate around the lines of it. */);
11201 XSETINT (menu_prompt_more_char
, ' ');
11203 DEFVAR_INT ("extra-keyboard-modifiers", &extra_keyboard_modifiers
,
11204 doc
: /* A mask of additional modifier keys to use with every keyboard character.
11205 Emacs applies the modifiers of the character stored here to each keyboard
11206 character it reads. For example, after evaluating the expression
11207 (setq extra-keyboard-modifiers ?\\C-x)
11208 all input characters will have the control modifier applied to them.
11210 Note that the character ?\\C-@, equivalent to the integer zero, does
11211 not count as a control character; rather, it counts as a character
11212 with no modifiers; thus, setting `extra-keyboard-modifiers' to zero
11213 cancels any modification. */);
11214 extra_keyboard_modifiers
= 0;
11216 DEFVAR_LISP ("deactivate-mark", &Vdeactivate_mark
,
11217 doc
: /* If an editing command sets this to t, deactivate the mark afterward.
11218 The command loop sets this to nil before each command,
11219 and tests the value when the command returns.
11220 Buffer modification stores t in this variable. */);
11221 Vdeactivate_mark
= Qnil
;
11223 DEFVAR_LISP ("command-hook-internal", &Vcommand_hook_internal
,
11224 doc
: /* Temporary storage of pre-command-hook or post-command-hook. */);
11225 Vcommand_hook_internal
= Qnil
;
11227 DEFVAR_LISP ("pre-command-hook", &Vpre_command_hook
,
11228 doc
: /* Normal hook run before each command is executed.
11229 If an unhandled error happens in running this hook,
11230 the hook value is set to nil, since otherwise the error
11231 might happen repeatedly and make Emacs nonfunctional. */);
11232 Vpre_command_hook
= Qnil
;
11234 DEFVAR_LISP ("post-command-hook", &Vpost_command_hook
,
11235 doc
: /* Normal hook run after each command is executed.
11236 If an unhandled error happens in running this hook,
11237 the hook value is set to nil, since otherwise the error
11238 might happen repeatedly and make Emacs nonfunctional. */);
11239 Vpost_command_hook
= Qnil
;
11241 DEFVAR_LISP ("post-command-idle-hook", &Vpost_command_idle_hook
,
11242 doc
: /* Normal hook run after each command is executed, if idle.
11243 Errors running the hook are caught and ignored. */);
11244 Vpost_command_idle_hook
= Qnil
;
11246 DEFVAR_INT ("post-command-idle-delay", &post_command_idle_delay
,
11247 doc
: /* Delay time before running `post-command-idle-hook'.
11248 This is measured in microseconds. */);
11249 post_command_idle_delay
= 100000;
11252 DEFVAR_LISP ("echo-area-clear-hook", ...,
11253 doc
: /* Normal hook run when clearing the echo area. */);
11255 Qecho_area_clear_hook
= intern ("echo-area-clear-hook");
11256 SET_SYMBOL_VALUE (Qecho_area_clear_hook
, Qnil
);
11258 DEFVAR_LISP ("lucid-menu-bar-dirty-flag", &Vlucid_menu_bar_dirty_flag
,
11259 doc
: /* Non-nil means menu bar, specified Lucid style, needs to be recomputed. */);
11260 Vlucid_menu_bar_dirty_flag
= Qnil
;
11262 DEFVAR_LISP ("menu-bar-final-items", &Vmenu_bar_final_items
,
11263 doc
: /* List of menu bar items to move to the end of the menu bar.
11264 The elements of the list are event types that may have menu bar bindings. */);
11265 Vmenu_bar_final_items
= Qnil
;
11267 DEFVAR_KBOARD ("overriding-terminal-local-map",
11268 Voverriding_terminal_local_map
,
11269 doc
: /* Per-terminal keymap that overrides all other local keymaps.
11270 If this variable is non-nil, it is used as a keymap instead of the
11271 buffer's local map, and the minor mode keymaps and text property keymaps.
11272 It also replaces `overriding-local-map'.
11274 This variable is intended to let commands such as `universal-argument'
11275 set up a different keymap for reading the next command. */);
11277 DEFVAR_LISP ("overriding-local-map", &Voverriding_local_map
,
11278 doc
: /* Keymap that overrides all other local keymaps.
11279 If this variable is non-nil, it is used as a keymap--replacing the
11280 buffer's local map, the minor mode keymaps, and char property keymaps. */);
11281 Voverriding_local_map
= Qnil
;
11283 DEFVAR_LISP ("overriding-local-map-menu-flag", &Voverriding_local_map_menu_flag
,
11284 doc
: /* Non-nil means `overriding-local-map' applies to the menu bar.
11285 Otherwise, the menu bar continues to reflect the buffer's local map
11286 and the minor mode maps regardless of `overriding-local-map'. */);
11287 Voverriding_local_map_menu_flag
= Qnil
;
11289 DEFVAR_LISP ("special-event-map", &Vspecial_event_map
,
11290 doc
: /* Keymap defining bindings for special events to execute at low level. */);
11291 Vspecial_event_map
= Fcons (intern ("keymap"), Qnil
);
11293 DEFVAR_LISP ("track-mouse", &do_mouse_tracking
,
11294 doc
: /* *Non-nil means generate motion events for mouse motion. */);
11296 DEFVAR_KBOARD ("system-key-alist", Vsystem_key_alist
,
11297 doc
: /* Alist of system-specific X windows key symbols.
11298 Each element should have the form (N . SYMBOL) where N is the
11299 numeric keysym code (sans the \"system-specific\" bit 1<<28)
11300 and SYMBOL is its name. */);
11302 DEFVAR_LISP ("deferred-action-list", &Vdeferred_action_list
,
11303 doc
: /* List of deferred actions to be performed at a later time.
11304 The precise format isn't relevant here; we just check whether it is nil. */);
11305 Vdeferred_action_list
= Qnil
;
11307 DEFVAR_LISP ("deferred-action-function", &Vdeferred_action_function
,
11308 doc
: /* Function to call to handle deferred actions, after each command.
11309 This function is called with no arguments after each command
11310 whenever `deferred-action-list' is non-nil. */);
11311 Vdeferred_action_function
= Qnil
;
11313 DEFVAR_LISP ("suggest-key-bindings", &Vsuggest_key_bindings
,
11314 doc
: /* *Non-nil means show the equivalent key-binding when M-x command has one.
11315 The value can be a length of time to show the message for.
11316 If the value is non-nil and not a number, we wait 2 seconds. */);
11317 Vsuggest_key_bindings
= Qt
;
11319 DEFVAR_LISP ("timer-list", &Vtimer_list
,
11320 doc
: /* List of active absolute time timers in order of increasing time. */);
11321 Vtimer_list
= Qnil
;
11323 DEFVAR_LISP ("timer-idle-list", &Vtimer_idle_list
,
11324 doc
: /* List of active idle-time timers in order of increasing time. */);
11325 Vtimer_idle_list
= Qnil
;
11327 DEFVAR_LISP ("input-method-function", &Vinput_method_function
,
11328 doc
: /* If non-nil, the function that implements the current input method.
11329 It's called with one argument, a printing character that was just read.
11330 \(That means a character with code 040...0176.)
11331 Typically this function uses `read-event' to read additional events.
11332 When it does so, it should first bind `input-method-function' to nil
11333 so it will not be called recursively.
11335 The function should return a list of zero or more events
11336 to be used as input. If it wants to put back some events
11337 to be reconsidered, separately, by the input method,
11338 it can add them to the beginning of `unread-command-events'.
11340 The input method function can find in `input-method-previous-method'
11341 the previous echo area message.
11343 The input method function should refer to the variables
11344 `input-method-use-echo-area' and `input-method-exit-on-first-char'
11345 for guidance on what to do. */);
11346 Vinput_method_function
= Qnil
;
11348 DEFVAR_LISP ("input-method-previous-message",
11349 &Vinput_method_previous_message
,
11350 doc
: /* When `input-method-function' is called, hold the previous echo area message.
11351 This variable exists because `read-event' clears the echo area
11352 before running the input method. It is nil if there was no message. */);
11353 Vinput_method_previous_message
= Qnil
;
11355 DEFVAR_LISP ("show-help-function", &Vshow_help_function
,
11356 doc
: /* If non-nil, the function that implements the display of help.
11357 It's called with one argument, the help string to display. */);
11358 Vshow_help_function
= Qnil
;
11360 DEFVAR_LISP ("disable-point-adjustment", &Vdisable_point_adjustment
,
11361 doc
: /* If non-nil, suppress point adjustment after executing a command.
11363 After a command is executed, if point is moved into a region that has
11364 special properties (e.g. composition, display), we adjust point to
11365 the boundary of the region. But, when a command sets this variable to
11366 non-nil, we suppress the point adjustment.
11368 This variable is set to nil before reading a command, and is checked
11369 just after executing the command. */);
11370 Vdisable_point_adjustment
= Qnil
;
11372 DEFVAR_LISP ("global-disable-point-adjustment",
11373 &Vglobal_disable_point_adjustment
,
11374 doc
: /* *If non-nil, always suppress point adjustment.
11376 The default value is nil, in which case, point adjustment are
11377 suppressed only after special commands that set
11378 `disable-point-adjustment' (which see) to non-nil. */);
11379 Vglobal_disable_point_adjustment
= Qnil
;
11381 DEFVAR_BOOL ("update-menu-bindings", &update_menu_bindings
,
11382 doc
: /* Non-nil means updating menu bindings is allowed.
11383 A value of nil means menu bindings should not be updated.
11384 Used during Emacs' startup. */);
11385 update_menu_bindings
= 1;
11387 DEFVAR_LISP ("minibuffer-message-timeout", &Vminibuffer_message_timeout
,
11388 doc
: /* *How long to display an echo-area message when the minibuffer is active.
11389 If the value is not a number, such messages don't time out. */);
11390 Vminibuffer_message_timeout
= make_number (2);
11392 DEFVAR_LISP ("throw-on-input", &Vthrow_on_input
,
11393 doc
: /* If non-nil, any keyboard input throws to this symbol.
11394 The value of that variable is passed to `quit-flag' and later causes a
11395 peculiar kind of quitting. */);
11396 Vthrow_on_input
= Qnil
;
11400 keys_of_keyboard ()
11402 initial_define_key (global_map
, Ctl ('Z'), "suspend-emacs");
11403 initial_define_key (control_x_map
, Ctl ('Z'), "suspend-emacs");
11404 initial_define_key (meta_map
, Ctl ('C'), "exit-recursive-edit");
11405 initial_define_key (global_map
, Ctl (']'), "abort-recursive-edit");
11406 initial_define_key (meta_map
, 'x', "execute-extended-command");
11408 initial_define_lispy_key (Vspecial_event_map
, "delete-frame",
11409 "handle-delete-frame");
11410 initial_define_lispy_key (Vspecial_event_map
, "iconify-frame",
11412 initial_define_lispy_key (Vspecial_event_map
, "make-frame-visible",
11414 /* Handling it at such a low-level causes read_key_sequence to get
11415 * confused because it doesn't realize that the current_buffer was
11416 * changed by read_char.
11418 * initial_define_lispy_key (Vspecial_event_map, "select-window",
11419 * "handle-select-window"); */
11420 initial_define_lispy_key (Vspecial_event_map
, "save-session",
11421 "handle-save-session");
11424 /* Mark the pointers in the kboard objects.
11425 Called by the Fgarbage_collector. */
11431 for (kb
= all_kboards
; kb
; kb
= kb
->next_kboard
)
11433 if (kb
->kbd_macro_buffer
)
11434 for (p
= kb
->kbd_macro_buffer
; p
< kb
->kbd_macro_ptr
; p
++)
11436 mark_object (kb
->Voverriding_terminal_local_map
);
11437 mark_object (kb
->Vlast_command
);
11438 mark_object (kb
->Vreal_last_command
);
11439 mark_object (kb
->Vprefix_arg
);
11440 mark_object (kb
->Vlast_prefix_arg
);
11441 mark_object (kb
->kbd_queue
);
11442 mark_object (kb
->defining_kbd_macro
);
11443 mark_object (kb
->Vlast_kbd_macro
);
11444 mark_object (kb
->Vsystem_key_alist
);
11445 mark_object (kb
->system_key_syms
);
11446 mark_object (kb
->Vdefault_minibuffer_frame
);
11447 mark_object (kb
->echo_string
);
11450 struct input_event
*event
;
11451 for (event
= kbd_fetch_ptr
; event
!= kbd_store_ptr
; event
++)
11453 if (event
== kbd_buffer
+ KBD_BUFFER_SIZE
)
11454 event
= kbd_buffer
;
11455 if (event
->kind
!= SELECTION_REQUEST_EVENT
11456 && event
->kind
!= SELECTION_CLEAR_EVENT
)
11458 mark_object (event
->x
);
11459 mark_object (event
->y
);
11461 mark_object (event
->frame_or_window
);
11462 mark_object (event
->arg
);
11467 /* arch-tag: 774e34d7-6d31-42f3-8397-e079a4e4c9ca
11468 (do not change this comment) */