1 /* Keyboard and mouse input; editor command loop.
2 Copyright (C) 1985,86,87,88,89,93,94,95,96 Free Software Foundation, Inc.
4 This file is part of GNU Emacs.
6 GNU Emacs is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 2, or (at your option)
11 GNU Emacs is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
16 You should have received a copy of the GNU General Public License
17 along with GNU Emacs; see the file COPYING. If not, write to
18 the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
19 Boston, MA 02111-1307, USA. */
21 /* Allow config.h to undefine symbols found here. */
29 #include "termhooks.h"
36 #include "dispextern.h"
38 #include "intervals.h"
39 #include "blockinput.h"
48 #include <sys/ioctl.h>
50 #endif /* not MSDOS */
52 #include "syssignal.h"
55 /* This is to get the definitions of the XK_ symbols. */
62 #endif /* HAVE_NTGUI */
64 /* Include systime.h after xterm.h to avoid double inclusion of time.h. */
69 /* Variables for blockinput.h: */
71 /* Non-zero if interrupt input is blocked right now. */
72 int interrupt_input_blocked
;
74 /* Nonzero means an input interrupt has arrived
75 during the current critical section. */
76 int interrupt_input_pending
;
79 /* File descriptor to use for input. */
82 #ifdef HAVE_WINDOW_SYSTEM
83 /* Make all keyboard buffers much bigger when using X windows. */
84 #define KBD_BUFFER_SIZE 4096
85 #else /* No X-windows, character input */
86 #define KBD_BUFFER_SIZE 256
87 #endif /* No X-windows */
89 /* Following definition copied from eval.c */
93 struct backtrace
*next
;
94 Lisp_Object
*function
;
95 Lisp_Object
*args
; /* Points to vector of args. */
96 int nargs
; /* length of vector. If nargs is UNEVALLED,
97 args points to slot holding list of
103 KBOARD
*initial_kboard
;
104 KBOARD
*current_kboard
;
108 KBOARD the_only_kboard
;
111 /* Non-nil disable property on a command means
112 do not execute it; call disabled-command-hook's value instead. */
113 Lisp_Object Qdisabled
, Qdisabled_command_hook
;
115 #define NUM_RECENT_KEYS (100)
116 int recent_keys_index
; /* Index for storing next element into recent_keys */
117 int total_keys
; /* Total number of elements stored into recent_keys */
118 Lisp_Object recent_keys
; /* A vector, holding the last 100 keystrokes */
120 /* Vector holding the key sequence that invoked the current command.
121 It is reused for each command, and it may be longer than the current
122 sequence; this_command_key_count indicates how many elements
123 actually mean something.
124 It's easier to staticpro a single Lisp_Object than an array. */
125 Lisp_Object this_command_keys
;
126 int this_command_key_count
;
128 /* Record values of this_command_key_count and echo_length ()
129 before this command was read. */
130 static int before_command_key_count
;
131 static int before_command_echo_length
;
132 /* Values of before_command_key_count and before_command_echo_length
133 saved by reset-this-command-lengths. */
134 static int before_command_key_count_1
;
135 static int before_command_echo_length_1
;
136 /* Flag set by reset-this-command-lengths,
137 saying to reset the lengths when add_command_key is called. */
138 static int before_command_restore_flag
;
140 extern int minbuf_level
;
142 extern struct backtrace
*backtrace_list
;
144 /* Nonzero means do menu prompting. */
145 static int menu_prompting
;
147 /* Character to see next line of menu prompt. */
148 static Lisp_Object menu_prompt_more_char
;
150 /* For longjmp to where kbd input is being done. */
151 static jmp_buf getcjmp
;
153 /* True while doing kbd input. */
154 int waiting_for_input
;
156 /* True while displaying for echoing. Delays C-g throwing. */
159 /* True means we can start echoing at the next input pause
160 even though there is something in the echo area. */
161 static char *ok_to_echo_at_next_pause
;
163 /* Nonzero means disregard local maps for the menu bar. */
164 static int inhibit_local_menu_bar_menus
;
166 /* Nonzero means C-g should cause immediate error-signal. */
169 /* Character to recognize as the help char. */
170 Lisp_Object Vhelp_char
;
172 /* List of other event types to recognize as meaning "help". */
173 Lisp_Object Vhelp_event_list
;
175 /* Form to execute when help char is typed. */
176 Lisp_Object Vhelp_form
;
178 /* Command to run when the help character follows a prefix key. */
179 Lisp_Object Vprefix_help_command
;
181 /* List of items that should move to the end of the menu bar. */
182 Lisp_Object Vmenu_bar_final_items
;
184 /* Non-nil means show the equivalent key-binding for
185 any M-x command that has one.
186 The value can be a length of time to show the message for.
187 If the value is non-nil and not a number, we wait 2 seconds. */
188 Lisp_Object Vsuggest_key_bindings
;
190 /* Character that causes a quit. Normally C-g.
192 If we are running on an ordinary terminal, this must be an ordinary
193 ASCII char, since we want to make it our interrupt character.
195 If we are not running on an ordinary terminal, it still needs to be
196 an ordinary ASCII char. This character needs to be recognized in
197 the input interrupt handler. At this point, the keystroke is
198 represented as a struct input_event, while the desired quit
199 character is specified as a lispy event. The mapping from struct
200 input_events to lispy events cannot run in an interrupt handler,
201 and the reverse mapping is difficult for anything but ASCII
204 FOR THESE ELABORATE AND UNSATISFYING REASONS, quit_char must be an
208 extern Lisp_Object current_global_map
;
209 extern int minibuf_level
;
211 /* If non-nil, this is a map that overrides all other local maps. */
212 Lisp_Object Voverriding_local_map
;
214 /* If non-nil, Voverriding_local_map applies to the menu bar. */
215 Lisp_Object Voverriding_local_map_menu_flag
;
217 /* Keymap that defines special misc events that should
218 be processed immediately at a low level. */
219 Lisp_Object Vspecial_event_map
;
221 /* Current depth in recursive edits. */
222 int command_loop_level
;
224 /* Total number of times command_loop has read a key sequence. */
227 /* Last input character read as a command. */
228 Lisp_Object last_command_char
;
230 /* Last input character read as a command, not counting menus
231 reached by the mouse. */
232 Lisp_Object last_nonmenu_event
;
234 /* Last input character read for any purpose. */
235 Lisp_Object last_input_char
;
237 /* If not Qnil, a list of objects to be read as subsequent command input. */
238 Lisp_Object Vunread_command_events
;
240 /* If not -1, an event to be read as subsequent command input. */
241 int unread_command_char
;
243 /* If not Qnil, this is a switch-frame event which we decided to put
244 off until the end of a key sequence. This should be read as the
245 next command input, after any unread_command_events.
247 read_key_sequence uses this to delay switch-frame events until the
248 end of the key sequence; Fread_char uses it to put off switch-frame
249 events until a non-ASCII event is acceptable as input. */
250 Lisp_Object unread_switch_frame
;
252 /* A mask of extra modifier bits to put into every keyboard char. */
253 int extra_keyboard_modifiers
;
255 /* Char to use as prefix when a meta character is typed in.
256 This is bound on entry to minibuffer in case ESC is changed there. */
258 Lisp_Object meta_prefix_char
;
260 /* Last size recorded for a current buffer which is not a minibuffer. */
261 static int last_non_minibuf_size
;
263 /* Number of idle seconds before an auto-save and garbage collection. */
264 static Lisp_Object Vauto_save_timeout
;
266 /* Total number of times read_char has returned. */
269 /* Total number of times read_char has returned, outside of macros. */
270 int num_nonmacro_input_chars
;
272 /* Auto-save automatically when this many characters have been typed
273 since the last time. */
275 static int auto_save_interval
;
277 /* Value of num_nonmacro_input_chars as of last auto save. */
281 /* The command being executed by the command loop.
282 Commands may set this, and the value set will be copied into
283 current_kboard->Vlast_command instead of the actual command. */
284 Lisp_Object this_command
;
286 /* The value of point when the last command was executed. */
287 int last_point_position
;
289 /* The buffer that was current when the last command was started. */
290 Lisp_Object last_point_position_buffer
;
293 /* The frame in which the last input event occurred, or Qmacro if the
294 last event came from a macro. We use this to determine when to
295 generate switch-frame events. This may be cleared by functions
296 like Fselect_frame, to make sure that a switch-frame event is
297 generated by the next character. */
298 Lisp_Object internal_last_event_frame
;
301 /* A user-visible version of the above, intended to allow users to
302 figure out where the last event came from, if the event doesn't
303 carry that information itself (i.e. if it was a character). */
304 Lisp_Object Vlast_event_frame
;
306 /* The timestamp of the last input event we received from the X server.
307 X Windows wants this for selection ownership. */
308 unsigned long last_event_timestamp
;
310 Lisp_Object Qself_insert_command
;
311 Lisp_Object Qforward_char
;
312 Lisp_Object Qbackward_char
;
313 Lisp_Object Qundefined
;
315 /* read_key_sequence stores here the command definition of the
316 key sequence that it reads. */
317 Lisp_Object read_key_sequence_cmd
;
319 /* Form to evaluate (if non-nil) when Emacs is started. */
320 Lisp_Object Vtop_level
;
322 /* User-supplied string to translate input characters through. */
323 Lisp_Object Vkeyboard_translate_table
;
325 /* Keymap mapping ASCII function key sequences onto their preferred forms. */
326 extern Lisp_Object Vfunction_key_map
;
328 /* Another keymap that maps key sequences into key sequences.
329 This one takes precedence over ordinary definitions. */
330 extern Lisp_Object Vkey_translation_map
;
332 /* Non-nil means deactivate the mark at end of this command. */
333 Lisp_Object Vdeactivate_mark
;
335 /* Menu bar specified in Lucid Emacs fashion. */
337 Lisp_Object Vlucid_menu_bar_dirty_flag
;
338 Lisp_Object Qrecompute_lucid_menubar
, Qactivate_menubar_hook
;
340 /* Hooks to run before and after each command. */
341 Lisp_Object Qpre_command_hook
, Vpre_command_hook
;
342 Lisp_Object Qpost_command_hook
, Vpost_command_hook
;
343 Lisp_Object Qcommand_hook_internal
, Vcommand_hook_internal
;
344 /* Hook run after a command if there's no more input soon. */
345 Lisp_Object Qpost_command_idle_hook
, Vpost_command_idle_hook
;
347 /* Delay time in microseconds before running post-command-idle-hook. */
348 int post_command_idle_delay
;
350 /* List of deferred actions to be performed at a later time.
351 The precise format isn't relevant here; we just check whether it is nil. */
352 Lisp_Object Vdeferred_action_list
;
354 /* Function to call to handle deferred actions, when there are any. */
355 Lisp_Object Vdeferred_action_function
;
356 Lisp_Object Qdeferred_action_function
;
358 /* File in which we write all commands we read. */
361 /* Nonzero if input is available. */
364 /* 1 if should obey 0200 bit in input chars as "Meta", 2 if should
365 keep 0200 bit in input chars. 0 to ignore the 0200 bit. */
369 extern char *pending_malloc_warning
;
371 /* Circular buffer for pre-read keyboard input. */
372 static struct input_event kbd_buffer
[KBD_BUFFER_SIZE
];
374 /* Vector to GCPRO the frames and windows mentioned in kbd_buffer.
376 The interrupt-level event handlers will never enqueue an event on a
377 frame which is not in Vframe_list, and once an event is dequeued,
378 internal_last_event_frame or the event itself points to the frame.
381 But while the event is sitting in the queue, it's completely
382 unprotected. Suppose the user types one command which will run for
383 a while and then delete a frame, and then types another event at
384 the frame that will be deleted, before the command gets around to
385 it. Suppose there are no references to this frame elsewhere in
386 Emacs, and a GC occurs before the second event is dequeued. Now we
387 have an event referring to a freed frame, which will crash Emacs
390 Similar things happen when an event on a scroll bar is enqueued; the
391 window may be deleted while the event is in the queue.
393 So, we use this vector to protect the frame_or_window field in the
394 event queue. That way, they'll be dequeued as dead frames or
395 windows, but still valid lisp objects.
397 If kbd_buffer[i].kind != no_event, then
398 (XVECTOR (kbd_buffer_frame_or_window)->contents[i]
399 == kbd_buffer[i].frame_or_window. */
400 static Lisp_Object kbd_buffer_frame_or_window
;
402 /* Pointer to next available character in kbd_buffer.
403 If kbd_fetch_ptr == kbd_store_ptr, the buffer is empty.
404 This may be kbd_buffer + KBD_BUFFER_SIZE, meaning that the the
405 next available char is in kbd_buffer[0]. */
406 static struct input_event
*kbd_fetch_ptr
;
408 /* Pointer to next place to store character in kbd_buffer. This
409 may be kbd_buffer + KBD_BUFFER_SIZE, meaning that the next
410 character should go in kbd_buffer[0]. */
411 static volatile struct input_event
*kbd_store_ptr
;
413 /* The above pair of variables forms a "queue empty" flag. When we
414 enqueue a non-hook event, we increment kbd_store_ptr. When we
415 dequeue a non-hook event, we increment kbd_fetch_ptr. We say that
416 there is input available iff the two pointers are not equal.
418 Why not just have a flag set and cleared by the enqueuing and
419 dequeuing functions? Such a flag could be screwed up by interrupts
420 at inopportune times. */
422 /* If this flag is non-nil, we check mouse_moved to see when the
423 mouse moves, and motion events will appear in the input stream.
424 Otherwise, mouse motion is ignored. */
425 static Lisp_Object do_mouse_tracking
;
427 /* Symbols to head events. */
428 Lisp_Object Qmouse_movement
;
429 Lisp_Object Qscroll_bar_movement
;
430 Lisp_Object Qswitch_frame
;
431 Lisp_Object Qdelete_frame
;
432 Lisp_Object Qiconify_frame
;
433 Lisp_Object Qmake_frame_visible
;
435 /* Symbols to denote kinds of events. */
436 Lisp_Object Qfunction_key
;
437 Lisp_Object Qmouse_click
;
438 Lisp_Object Qtimer_event
;
439 /* Lisp_Object Qmouse_movement; - also an event header */
441 /* Properties of event headers. */
442 Lisp_Object Qevent_kind
;
443 Lisp_Object Qevent_symbol_elements
;
445 Lisp_Object Qmenu_enable
;
447 /* An event header symbol HEAD may have a property named
448 Qevent_symbol_element_mask, which is of the form (BASE MODIFIERS);
449 BASE is the base, unmodified version of HEAD, and MODIFIERS is the
450 mask of modifiers applied to it. If present, this is used to help
451 speed up parse_modifiers. */
452 Lisp_Object Qevent_symbol_element_mask
;
454 /* An unmodified event header BASE may have a property named
455 Qmodifier_cache, which is an alist mapping modifier masks onto
456 modified versions of BASE. If present, this helps speed up
458 Lisp_Object Qmodifier_cache
;
460 /* Symbols to use for parts of windows. */
461 Lisp_Object Qmode_line
;
462 Lisp_Object Qvertical_line
;
463 Lisp_Object Qvertical_scroll_bar
;
464 Lisp_Object Qmenu_bar
;
466 extern Lisp_Object Qmenu_enable
;
468 Lisp_Object
recursive_edit_unwind (), command_loop ();
469 Lisp_Object
Fthis_command_keys ();
470 Lisp_Object Qextended_command_history
;
471 EMACS_TIME
timer_check ();
473 extern char *x_get_keysym_name ();
475 Lisp_Object Qpolling_period
;
477 /* List of absolute timers. Appears in order of next scheduled event. */
478 Lisp_Object Vtimer_list
;
480 /* List of idle time timers. Appears in order of next scheduled event. */
481 Lisp_Object Vtimer_idle_list
;
483 extern Lisp_Object Vprint_level
, Vprint_length
;
485 /* Address (if not 0) of EMACS_TIME to zero out if a SIGIO interrupt
487 EMACS_TIME
*input_available_clear_time
;
489 /* Nonzero means use SIGIO interrupts; zero means use CBREAK mode.
490 Default is 1 if INTERRUPT_INPUT is defined. */
493 /* Nonzero while interrupts are temporarily deferred during redisplay. */
494 int interrupts_deferred
;
496 /* nonzero means use ^S/^Q for flow control. */
499 /* Allow m- file to inhibit use of FIONREAD. */
500 #ifdef BROKEN_FIONREAD
504 /* We are unable to use interrupts if FIONREAD is not available,
505 so flush SIGIO so we won't try. */
512 /* If we support a window system, turn on the code to poll periodically
513 to detect C-g. It isn't actually used when doing interrupt input. */
514 #ifdef HAVE_WINDOW_SYSTEM
515 #define POLL_FOR_INPUT
518 /* Non-nil enables Column Number mode. */
519 Lisp_Object Vcolumn_number_mode
;
521 /* Global variable declarations. */
523 /* Function for init_keyboard to call with no args (if nonzero). */
524 void (*keyboard_init_hook
) ();
526 static int read_avail_input ();
527 static void get_input_pending ();
528 static int readable_events ();
529 static Lisp_Object
read_char_x_menu_prompt ();
530 static Lisp_Object
read_char_minibuf_menu_prompt ();
531 static Lisp_Object
make_lispy_event ();
533 static Lisp_Object
make_lispy_movement ();
535 static Lisp_Object
modify_event_symbol ();
536 static Lisp_Object
make_lispy_switch_frame ();
537 static int parse_solitary_modifier ();
539 /* > 0 if we are to echo keystrokes. */
540 static int echo_keystrokes
;
542 /* Nonzero means don't try to suspend even if the operating system seems
544 static int cannot_suspend
;
546 #define min(a,b) ((a)<(b)?(a):(b))
547 #define max(a,b) ((a)>(b)?(a):(b))
549 /* Install the string STR as the beginning of the string of echoing,
550 so that it serves as a prompt for the next character.
551 Also start echoing. */
556 int len
= strlen (str
);
558 if (len
> ECHOBUFSIZE
- 4)
559 len
= ECHOBUFSIZE
- 4;
560 bcopy (str
, current_kboard
->echobuf
, len
);
561 current_kboard
->echoptr
= current_kboard
->echobuf
+ len
;
562 *current_kboard
->echoptr
= '\0';
564 current_kboard
->echo_after_prompt
= len
;
569 /* Add C to the echo string, if echoing is going on.
570 C can be a character, which is printed prettily ("M-C-x" and all that
571 jazz), or a symbol, whose name is printed. */
576 extern char *push_key_description ();
578 if (current_kboard
->immediate_echo
)
580 char *ptr
= current_kboard
->echoptr
;
582 if (ptr
!= current_kboard
->echobuf
)
585 /* If someone has passed us a composite event, use its head symbol. */
590 if (ptr
- current_kboard
->echobuf
> ECHOBUFSIZE
- 6)
593 ptr
= push_key_description (XINT (c
), ptr
);
595 else if (SYMBOLP (c
))
597 struct Lisp_String
*name
= XSYMBOL (c
)->name
;
598 if ((ptr
- current_kboard
->echobuf
) + name
->size
+ 4 > ECHOBUFSIZE
)
600 bcopy (name
->data
, ptr
, name
->size
);
604 if (current_kboard
->echoptr
== current_kboard
->echobuf
607 strcpy (ptr
, " (Type ? for further options)");
612 current_kboard
->echoptr
= ptr
;
618 /* Temporarily add a dash to the end of the echo string if it's not
619 empty, so that it serves as a mini-prompt for the very next character. */
623 if (!current_kboard
->immediate_echo
624 && current_kboard
->echoptr
== current_kboard
->echobuf
)
626 /* Do nothing if we just printed a prompt. */
627 if (current_kboard
->echo_after_prompt
628 == current_kboard
->echoptr
- current_kboard
->echobuf
)
630 /* Do nothing if not echoing at all. */
631 if (current_kboard
->echoptr
== 0)
634 /* Put a dash at the end of the buffer temporarily,
635 but make it go away when the next character is added. */
636 current_kboard
->echoptr
[0] = '-';
637 current_kboard
->echoptr
[1] = 0;
642 /* Display the current echo string, and begin echoing if not already
647 if (!current_kboard
->immediate_echo
)
650 current_kboard
->immediate_echo
= 1;
652 for (i
= 0; i
< this_command_key_count
; i
++)
655 c
= XVECTOR (this_command_keys
)->contents
[i
];
656 if (! (EVENT_HAS_PARAMETERS (c
)
657 && EQ (EVENT_HEAD_KIND (EVENT_HEAD (c
)), Qmouse_movement
)))
664 message1_nolog (current_kboard
->echobuf
);
667 if (waiting_for_input
&& !NILP (Vquit_flag
))
668 quit_throw_to_read_char ();
671 /* Turn off echoing, for the start of a new command. */
675 current_kboard
->immediate_echo
= 0;
676 current_kboard
->echoptr
= current_kboard
->echobuf
;
677 current_kboard
->echo_after_prompt
= -1;
678 ok_to_echo_at_next_pause
= 0;
681 /* Return the length of the current echo string. */
686 return current_kboard
->echoptr
- current_kboard
->echobuf
;
689 /* Truncate the current echo message to its first LEN chars.
690 This and echo_char get used by read_key_sequence when the user
691 switches frames while entering a key sequence. */
697 current_kboard
->echobuf
[len
] = '\0';
698 current_kboard
->echoptr
= current_kboard
->echobuf
+ len
;
699 truncate_echo_area (len
);
703 /* Functions for manipulating this_command_keys. */
705 add_command_key (key
)
708 int size
= XVECTOR (this_command_keys
)->size
;
710 /* If reset-this-command-length was called recently, obey it now.
711 See the doc string of that function for an explanation of why. */
712 if (before_command_restore_flag
)
714 this_command_key_count
= before_command_key_count_1
;
715 echo_truncate (before_command_echo_length_1
);
716 before_command_restore_flag
= 0;
719 if (this_command_key_count
>= size
)
721 Lisp_Object new_keys
;
723 new_keys
= Fmake_vector (make_number (size
* 2), Qnil
);
724 bcopy (XVECTOR (this_command_keys
)->contents
,
725 XVECTOR (new_keys
)->contents
,
726 size
* sizeof (Lisp_Object
));
728 this_command_keys
= new_keys
;
731 XVECTOR (this_command_keys
)->contents
[this_command_key_count
++] = key
;
737 int count
= specpdl_ptr
- specpdl
;
740 if (command_loop_level
> 0)
742 specbind (Qstandard_output
, Qt
);
743 specbind (Qstandard_input
, Qt
);
746 val
= command_loop ();
748 Fsignal (Qquit
, Qnil
);
750 return unbind_to (count
, Qnil
);
753 /* When an auto-save happens, record the "time", and don't do again soon. */
757 last_auto_save
= num_nonmacro_input_chars
;
760 /* Make an auto save happen as soon as possible at command level. */
762 force_auto_save_soon ()
764 last_auto_save
= - auto_save_interval
- 1;
766 record_asynch_buffer_change ();
769 DEFUN ("recursive-edit", Frecursive_edit
, Srecursive_edit
, 0, 0, "",
770 "Invoke the editor command loop recursively.\n\
771 To get out of the recursive edit, a command can do `(throw 'exit nil)';\n\
772 that tells this function to return.\n\
773 Alternately, `(throw 'exit t)' makes this function signal an error.\n\
774 This function is called by the editor initialization to begin editing.")
777 int count
= specpdl_ptr
- specpdl
;
780 command_loop_level
++;
781 update_mode_lines
= 1;
783 record_unwind_protect (recursive_edit_unwind
,
785 && current_buffer
!= XBUFFER (XWINDOW (selected_window
)->buffer
))
789 return unbind_to (count
, Qnil
);
793 recursive_edit_unwind (buffer
)
797 Fset_buffer (buffer
);
799 command_loop_level
--;
800 update_mode_lines
= 1;
808 #if 0 /* Theory: if there's anything in Vunread_command_events,
809 it will right away be read by read_key_sequence,
810 and then if we do switch KBOARDS, it will go into the side
811 queue then. So we don't need to do anything special here -- rms. */
812 if (CONSP (Vunread_command_events
))
814 current_kboard
->kbd_queue
815 = nconc2 (Vunread_command_events
, current_kboard
->kbd_queue
);
816 current_kboard
->kbd_queue_has_data
= 1;
818 Vunread_command_events
= Qnil
;
824 /* Switch to the single-kboard state, making current_kboard
825 the only KBOARD from which further input is accepted. */
828 single_kboard_state ()
835 /* Maintain a stack of kboards, so other parts of Emacs
836 can switch temporarily to the kboard of a given frame
837 and then revert to the previous status. */
842 struct kboard_stack
*next
;
845 static struct kboard_stack
*kboard_stack
;
848 push_frame_kboard (f
)
852 struct kboard_stack
*p
853 = (struct kboard_stack
*) xmalloc (sizeof (struct kboard_stack
));
855 p
->next
= kboard_stack
;
856 p
->kboard
= current_kboard
;
859 current_kboard
= FRAME_KBOARD (f
);
867 struct kboard_stack
*p
= kboard_stack
;
868 current_kboard
= p
->kboard
;
869 kboard_stack
= p
->next
;
874 /* Handle errors that are not handled at inner levels
875 by printing an error message and returning to the editor command loop. */
881 Lisp_Object old_level
, old_length
;
883 Vstandard_output
= Qt
;
884 Vstandard_input
= Qt
;
885 Vexecuting_macro
= Qnil
;
886 current_kboard
->Vprefix_arg
= Qnil
;
889 /* Avoid unquittable loop if data contains a circular list. */
890 old_level
= Vprint_level
;
891 old_length
= Vprint_length
;
892 XSETFASTINT (Vprint_level
, 10);
893 XSETFASTINT (Vprint_length
, 10);
894 cmd_error_internal (data
, NULL
);
895 Vprint_level
= old_level
;
896 Vprint_length
= old_length
;
900 Vinhibit_quit
= Qnil
;
905 return make_number (0);
908 cmd_error_internal (data
, context
)
916 echo_area_glyphs
= 0;
918 /* If the window system or terminal frame hasn't been initialized
919 yet, or we're not interactive, it's best to dump this message out
920 to stderr and exit. */
921 if (! FRAME_MESSAGE_BUF (selected_frame
)
923 stream
= Qexternal_debugging_output
;
932 write_string_1 (context
, -1, stream
);
934 print_error_message (data
, stream
);
936 /* If the window system or terminal frame hasn't been initialized
937 yet, or we're in -batch mode, this error should cause Emacs to exit. */
938 if (! FRAME_MESSAGE_BUF (selected_frame
)
942 Fkill_emacs (make_number (-1));
946 Lisp_Object
command_loop_1 ();
947 Lisp_Object
command_loop_2 ();
948 Lisp_Object
top_level_1 ();
950 /* Entry to editor-command-loop.
951 This level has the catches for exiting/returning to editor command loop.
952 It returns nil to exit recursive edit, t to abort it. */
957 if (command_loop_level
> 0 || minibuf_level
> 0)
959 return internal_catch (Qexit
, command_loop_2
, Qnil
);
964 internal_catch (Qtop_level
, top_level_1
, Qnil
);
965 internal_catch (Qtop_level
, command_loop_2
, Qnil
);
967 /* End of file in -batch run causes exit here. */
973 /* Here we catch errors in execution of commands within the
974 editing loop, and reenter the editing loop.
975 When there is an error, cmd_error runs and returns a non-nil
976 value to us. A value of nil means that cmd_loop_1 itself
977 returned due to end of file (or end of kbd macro). */
982 register Lisp_Object val
;
985 val
= internal_condition_case (command_loop_1
, Qerror
, cmd_error
);
994 return Feval (Vtop_level
);
1000 /* On entry to the outer level, run the startup file */
1001 if (!NILP (Vtop_level
))
1002 internal_condition_case (top_level_2
, Qerror
, cmd_error
);
1003 else if (!NILP (Vpurify_flag
))
1004 message ("Bare impure Emacs (standard Lisp code not loaded)");
1006 message ("Bare Emacs (standard Lisp code not loaded)");
1010 DEFUN ("top-level", Ftop_level
, Stop_level
, 0, 0, "",
1011 "Exit all recursive editing levels.")
1014 Fthrow (Qtop_level
, Qnil
);
1017 DEFUN ("exit-recursive-edit", Fexit_recursive_edit
, Sexit_recursive_edit
, 0, 0, "",
1018 "Exit from the innermost recursive edit or minibuffer.")
1021 if (command_loop_level
> 0 || minibuf_level
> 0)
1022 Fthrow (Qexit
, Qnil
);
1024 error ("No recursive edit is in progress");
1027 DEFUN ("abort-recursive-edit", Fabort_recursive_edit
, Sabort_recursive_edit
, 0, 0, "",
1028 "Abort the command that requested this recursive edit or minibuffer input.")
1031 if (command_loop_level
> 0 || minibuf_level
> 0)
1034 error ("No recursive edit is in progress");
1037 /* This is the actual command reading loop,
1038 sans error-handling encapsulation. */
1040 Lisp_Object
Fcommand_execute ();
1041 static int read_key_sequence ();
1042 void safe_run_hooks ();
1047 Lisp_Object cmd
, tem
;
1050 Lisp_Object keybuf
[30];
1055 struct buffer
*prev_buffer
;
1057 int was_locked
= single_kboard
;
1060 current_kboard
->Vprefix_arg
= Qnil
;
1061 Vdeactivate_mark
= Qnil
;
1062 waiting_for_input
= 0;
1067 this_command_key_count
= 0;
1069 /* Make sure this hook runs after commands that get errors and
1070 throw to top level. */
1071 /* Note that the value cell will never directly contain nil
1072 if the symbol is a local variable. */
1073 if (!NILP (Vpost_command_hook
) && !NILP (Vrun_hooks
))
1074 safe_run_hooks (Qpost_command_hook
);
1076 if (!NILP (Vdeferred_action_list
))
1077 call0 (Vdeferred_action_function
);
1079 if (!NILP (Vpost_command_idle_hook
) && !NILP (Vrun_hooks
))
1081 if (NILP (Vunread_command_events
)
1082 && NILP (Vexecuting_macro
)
1083 && !NILP (sit_for (0, post_command_idle_delay
, 0, 1)))
1084 safe_run_hooks (Qpost_command_idle_hook
);
1087 /* Do this after running Vpost_command_hook, for consistency. */
1088 current_kboard
->Vlast_command
= this_command
;
1092 /* Make sure the current window's buffer is selected. */
1093 if (XBUFFER (XWINDOW (selected_window
)->buffer
) != current_buffer
)
1094 set_buffer_internal (XBUFFER (XWINDOW (selected_window
)->buffer
));
1096 /* Display any malloc warning that just came out. Use while because
1097 displaying one warning can cause another. */
1099 while (pending_malloc_warning
)
1100 display_malloc_warning ();
1104 Vdeactivate_mark
= Qnil
;
1106 /* If minibuffer on and echo area in use,
1107 wait 2 sec and redraw minibuffer. */
1109 if (minibuf_level
&& echo_area_glyphs
1110 && EQ (minibuf_window
, echo_area_window
))
1112 /* Bind inhibit-quit to t so that C-g gets read in
1113 rather than quitting back to the minibuffer. */
1114 int count
= specpdl_ptr
- specpdl
;
1115 specbind (Qinhibit_quit
, Qt
);
1116 Fsit_for (make_number (2), Qnil
, Qnil
);
1117 unbind_to (count
, Qnil
);
1119 echo_area_glyphs
= 0;
1121 if (!NILP (Vquit_flag
))
1124 Vunread_command_events
= Fcons (make_number (quit_char
), Qnil
);
1129 alloca (0); /* Cause a garbage collection now */
1130 /* Since we can free the most stuff here. */
1131 #endif /* C_ALLOCA */
1135 /* Select the frame that the last event came from. Usually,
1136 switch-frame events will take care of this, but if some lisp
1137 code swallows a switch-frame event, we'll fix things up here.
1138 Is this a good idea? */
1139 if (FRAMEP (internal_last_event_frame
)
1140 && XFRAME (internal_last_event_frame
) != selected_frame
)
1141 Fselect_frame (internal_last_event_frame
, Qnil
);
1144 /* If it has changed current-menubar from previous value,
1145 really recompute the menubar from the value. */
1146 if (! NILP (Vlucid_menu_bar_dirty_flag
)
1147 && !NILP (Ffboundp (Qrecompute_lucid_menubar
)))
1148 call0 (Qrecompute_lucid_menubar
);
1150 before_command_key_count
= this_command_key_count
;
1151 before_command_echo_length
= echo_length ();
1153 this_command
= Qnil
;
1155 /* Read next key sequence; i gets its length. */
1156 i
= read_key_sequence (keybuf
, sizeof keybuf
/ sizeof keybuf
[0],
1161 /* Now we have read a key sequence of length I,
1162 or else I is 0 and we found end of file. */
1164 if (i
== 0) /* End of file -- happens only in */
1165 return Qnil
; /* a kbd macro, at the end. */
1166 /* -1 means read_key_sequence got a menu that was rejected.
1167 Just loop around and read another command. */
1171 this_command_key_count
= 0;
1175 last_command_char
= keybuf
[i
- 1];
1177 /* If the previous command tried to force a specific window-start,
1178 forget about that, in case this command moves point far away
1179 from that position. But also throw away beg_unchanged and
1180 end_unchanged information in that case, so that redisplay will
1181 update the whole window properly. */
1182 if (!NILP (XWINDOW (selected_window
)->force_start
))
1184 XWINDOW (selected_window
)->force_start
= Qnil
;
1185 beg_unchanged
= end_unchanged
= 0;
1188 cmd
= read_key_sequence_cmd
;
1189 if (!NILP (Vexecuting_macro
))
1191 if (!NILP (Vquit_flag
))
1193 Vexecuting_macro
= Qt
;
1194 QUIT
; /* Make some noise. */
1195 /* Will return since macro now empty. */
1199 /* Do redisplay processing after this command except in special
1200 cases identified below that set no_redisplay to 1.
1201 (actually, there's currently no way to prevent the redisplay,
1202 and no_redisplay is ignored.
1203 Perhaps someday we will really implement it.) */
1206 prev_buffer
= current_buffer
;
1207 prev_modiff
= MODIFF
;
1208 last_point_position
= PT
;
1209 XSETBUFFER (last_point_position_buffer
, prev_buffer
);
1211 /* Execute the command. */
1214 /* Note that the value cell will never directly contain nil
1215 if the symbol is a local variable. */
1216 if (!NILP (Vpre_command_hook
) && !NILP (Vrun_hooks
))
1217 safe_run_hooks (Qpre_command_hook
);
1219 if (NILP (this_command
))
1221 /* nil means key is undefined. */
1223 current_kboard
->defining_kbd_macro
= Qnil
;
1224 update_mode_lines
= 1;
1225 current_kboard
->Vprefix_arg
= Qnil
;
1229 if (NILP (current_kboard
->Vprefix_arg
) && ! no_direct
)
1231 /* Recognize some common commands in common situations and
1232 do them directly. */
1233 if (EQ (this_command
, Qforward_char
) && PT
< ZV
)
1235 struct Lisp_Char_Table
*dp
1236 = window_display_table (XWINDOW (selected_window
));
1237 lose
= FETCH_CHAR (PT
);
1240 ? (VECTORP (DISP_CHAR_VECTOR (dp
, lose
))
1241 ? XVECTOR (DISP_CHAR_VECTOR (dp
, lose
))->size
== 1
1242 : (NILP (DISP_CHAR_VECTOR (dp
, lose
))
1243 && (lose
>= 0x20 && lose
< 0x7f)))
1244 : (lose
>= 0x20 && lose
< 0x7f))
1245 && (XFASTINT (XWINDOW (selected_window
)->last_modified
)
1247 && (XFASTINT (XWINDOW (selected_window
)->last_point
)
1249 && !windows_or_buffers_changed
1250 && EQ (current_buffer
->selective_display
, Qnil
)
1251 && !detect_input_pending ()
1252 && NILP (Vcolumn_number_mode
)
1253 && NILP (Vexecuting_macro
))
1254 no_redisplay
= direct_output_forward_char (1);
1257 else if (EQ (this_command
, Qbackward_char
) && PT
> BEGV
)
1259 struct Lisp_Char_Table
*dp
1260 = window_display_table (XWINDOW (selected_window
));
1262 lose
= FETCH_CHAR (PT
);
1264 ? (VECTORP (DISP_CHAR_VECTOR (dp
, lose
))
1265 ? XVECTOR (DISP_CHAR_VECTOR (dp
, lose
))->size
== 1
1266 : (NILP (DISP_CHAR_VECTOR (dp
, lose
))
1267 && (lose
>= 0x20 && lose
< 0x7f)))
1268 : (lose
>= 0x20 && lose
< 0x7f))
1269 && (XFASTINT (XWINDOW (selected_window
)->last_modified
)
1271 && (XFASTINT (XWINDOW (selected_window
)->last_point
)
1273 && !windows_or_buffers_changed
1274 && EQ (current_buffer
->selective_display
, Qnil
)
1275 && !detect_input_pending ()
1276 && NILP (Vcolumn_number_mode
)
1277 && NILP (Vexecuting_macro
))
1278 no_redisplay
= direct_output_forward_char (-1);
1281 else if (EQ (this_command
, Qself_insert_command
)
1282 /* Try this optimization only on ascii keystrokes. */
1283 && INTEGERP (last_command_char
))
1285 unsigned char c
= XINT (last_command_char
);
1288 if (NILP (Vexecuting_macro
)
1289 && !EQ (minibuf_window
, selected_window
))
1291 if (!nonundocount
|| nonundocount
>= 20)
1298 lose
= ((XFASTINT (XWINDOW (selected_window
)->last_modified
)
1300 || (XFASTINT (XWINDOW (selected_window
)->last_point
)
1302 || MODIFF
<= SAVE_MODIFF
1303 || windows_or_buffers_changed
1304 || !EQ (current_buffer
->selective_display
, Qnil
)
1305 || detect_input_pending ()
1306 || !NILP (Vcolumn_number_mode
)
1307 || !NILP (Vexecuting_macro
));
1308 value
= internal_self_insert (c
, 0);
1315 && (PT
== ZV
|| FETCH_CHAR (PT
) == '\n'))
1317 struct Lisp_Char_Table
*dp
1318 = window_display_table (XWINDOW (selected_window
));
1325 obj
= DISP_CHAR_VECTOR (dp
, lose
);
1328 /* Do it only for char codes
1329 that by default display as themselves. */
1330 if (lose
>= 0x20 && lose
<= 0x7e)
1331 no_redisplay
= direct_output_for_insert (lose
);
1333 else if (VECTORP (obj
)
1334 && XVECTOR (obj
)->size
== 1
1335 && (obj
= XVECTOR (obj
)->contents
[0],
1337 /* Insist face not specified in glyph. */
1338 && (XINT (obj
) & ((-1) << 8)) == 0)
1340 = direct_output_for_insert (XINT (obj
));
1344 if (lose
>= 0x20 && lose
<= 0x7e)
1345 no_redisplay
= direct_output_for_insert (lose
);
1352 /* Here for a command that isn't executed directly */
1355 if (NILP (current_kboard
->Vprefix_arg
))
1357 Fcommand_execute (this_command
, Qnil
, Qnil
);
1362 /* Note that the value cell will never directly contain nil
1363 if the symbol is a local variable. */
1364 if (!NILP (Vpost_command_hook
) && !NILP (Vrun_hooks
))
1365 safe_run_hooks (Qpost_command_hook
);
1367 if (!NILP (Vdeferred_action_list
))
1368 safe_run_hooks (Qdeferred_action_function
);
1370 if (!NILP (Vpost_command_idle_hook
) && !NILP (Vrun_hooks
))
1372 if (NILP (Vunread_command_events
)
1373 && NILP (Vexecuting_macro
)
1374 && !NILP (sit_for (0, post_command_idle_delay
, 0, 1)))
1375 safe_run_hooks (Qpost_command_idle_hook
);
1378 /* If there is a prefix argument,
1379 1) We don't want Vlast_command to be ``universal-argument''
1380 (that would be dumb), so don't set Vlast_command,
1381 2) we want to leave echoing on so that the prefix will be
1382 echoed as part of this key sequence, so don't call
1384 3) we want to leave this_command_key_count non-zero, so that
1385 read_char will realize that it is re-reading a character, and
1386 not echo it a second time.
1388 If the command didn't actually create a prefix arg,
1389 but is merely a frame event that is transparent to prefix args,
1390 then the above doesn't apply. */
1391 if (NILP (current_kboard
->Vprefix_arg
) || CONSP (last_command_char
))
1393 current_kboard
->Vlast_command
= this_command
;
1395 this_command_key_count
= 0;
1398 if (!NILP (current_buffer
->mark_active
) && !NILP (Vrun_hooks
))
1400 if (!NILP (Vdeactivate_mark
) && !NILP (Vtransient_mark_mode
))
1402 current_buffer
->mark_active
= Qnil
;
1403 call1 (Vrun_hooks
, intern ("deactivate-mark-hook"));
1405 else if (current_buffer
!= prev_buffer
|| MODIFF
!= prev_modiff
)
1406 call1 (Vrun_hooks
, intern ("activate-mark-hook"));
1410 /* Install chars successfully executed in kbd macro. */
1412 if (!NILP (current_kboard
->defining_kbd_macro
)
1413 && NILP (current_kboard
->Vprefix_arg
))
1414 finalize_kbd_macro_chars ();
1418 any_kboard_state ();
1423 /* Subroutine for safe_run_hooks: run the hook HOOK. */
1426 safe_run_hooks_1 (hook
)
1429 return call1 (Vrun_hooks
, Vinhibit_quit
);
1432 /* Subroutine for safe_run_hooks: handle an error by clearing out the hook. */
1435 safe_run_hooks_error (data
)
1438 Fset (Vinhibit_quit
, Qnil
);
1441 /* If we get an error while running the hook, cause the hook variable
1442 to be nil. Also inhibit quits, so that C-g won't cause the hook
1443 to mysteriously evaporate. */
1446 safe_run_hooks (hook
)
1450 int count
= specpdl_ptr
- specpdl
;
1451 specbind (Qinhibit_quit
, hook
);
1453 internal_condition_case (safe_run_hooks_1
, Qt
, safe_run_hooks_error
);
1455 unbind_to (count
, Qnil
);
1458 /* Number of seconds between polling for input. */
1461 /* Nonzero means polling for input is temporarily suppressed. */
1462 int poll_suppress_count
;
1464 /* Nonzero if polling_for_input is actually being used. */
1465 int polling_for_input
;
1467 #ifdef POLL_FOR_INPUT
1469 /* Handle an alarm once each second and read pending input
1470 so as to handle a C-g if it comces in. */
1473 input_poll_signal (signalnum
) /* If we don't have an argument, */
1474 int signalnum
; /* some compilers complain in signal calls. */
1476 if (interrupt_input_blocked
== 0
1477 && !waiting_for_input
)
1478 read_avail_input (0);
1479 signal (SIGALRM
, input_poll_signal
);
1480 alarm (polling_period
);
1485 /* Begin signals to poll for input, if they are appropriate.
1486 This function is called unconditionally from various places. */
1490 #ifdef POLL_FOR_INPUT
1491 if (read_socket_hook
&& !interrupt_input
)
1493 poll_suppress_count
--;
1494 if (poll_suppress_count
== 0)
1496 signal (SIGALRM
, input_poll_signal
);
1497 polling_for_input
= 1;
1498 alarm (polling_period
);
1504 /* Nonzero if we are using polling to handle input asynchronously. */
1507 input_polling_used ()
1509 #ifdef POLL_FOR_INPUT
1510 return read_socket_hook
&& !interrupt_input
;
1516 /* Turn off polling. */
1520 #ifdef POLL_FOR_INPUT
1521 if (read_socket_hook
&& !interrupt_input
)
1523 if (poll_suppress_count
== 0)
1525 polling_for_input
= 0;
1528 poll_suppress_count
++;
1533 /* Set the value of poll_suppress_count to COUNT
1534 and start or stop polling accordingly. */
1537 set_poll_suppress_count (count
)
1540 #ifdef POLL_FOR_INPUT
1541 if (count
== 0 && poll_suppress_count
!= 0)
1543 poll_suppress_count
= 1;
1546 else if (count
!= 0 && poll_suppress_count
== 0)
1550 poll_suppress_count
= count
;
1554 /* Bind polling_period to a value at least N.
1555 But don't decrease it. */
1557 bind_polling_period (n
)
1560 #ifdef POLL_FOR_INPUT
1561 int new = polling_period
;
1567 specbind (Qpolling_period
, make_number (new));
1568 /* Start a new alarm with the new period. */
1573 /* Apply the control modifier to CHARACTER. */
1579 /* Save the upper bits here. */
1580 int upper
= c
& ~0177;
1584 /* Everything in the columns containing the upper-case letters
1585 denotes a control character. */
1586 if (c
>= 0100 && c
< 0140)
1590 /* Set the shift modifier for a control char
1591 made from a shifted letter. But only for letters! */
1592 if (oc
>= 'A' && oc
<= 'Z')
1593 c
|= shift_modifier
;
1596 /* The lower-case letters denote control characters too. */
1597 else if (c
>= 'a' && c
<= 'z')
1600 /* Include the bits for control and shift
1601 only if the basic ASCII code can't indicate them. */
1605 /* Replace the high bits. */
1606 c
|= (upper
& ~ctrl_modifier
);
1613 /* Input of single characters from keyboard */
1615 Lisp_Object
print_help ();
1616 static Lisp_Object
kbd_buffer_get_event ();
1617 static void record_char ();
1620 static jmp_buf wrong_kboard_jmpbuf
;
1623 /* read a character from the keyboard; call the redisplay if needed */
1624 /* commandflag 0 means do not do auto-saving, but do do redisplay.
1625 -1 means do not do redisplay, but do do autosaving.
1628 /* The arguments MAPS and NMAPS are for menu prompting.
1629 MAPS is an array of keymaps; NMAPS is the length of MAPS.
1631 PREV_EVENT is the previous input event, or nil if we are reading
1632 the first event of a key sequence.
1634 If USED_MOUSE_MENU is non-null, then we set *USED_MOUSE_MENU to 1
1635 if we used a mouse menu to read the input, or zero otherwise. If
1636 USED_MOUSE_MENU is null, we don't dereference it.
1638 Value is t if we showed a menu and the user rejected it. */
1641 read_char (commandflag
, nmaps
, maps
, prev_event
, used_mouse_menu
)
1645 Lisp_Object prev_event
;
1646 int *used_mouse_menu
;
1648 register Lisp_Object c
;
1650 jmp_buf local_getcjmp
;
1652 int key_already_recorded
= 0;
1653 Lisp_Object tem
, save
;
1654 Lisp_Object also_record
;
1657 before_command_key_count
= this_command_key_count
;
1658 before_command_echo_length
= echo_length ();
1662 if (CONSP (Vunread_command_events
))
1664 c
= XCONS (Vunread_command_events
)->car
;
1665 Vunread_command_events
= XCONS (Vunread_command_events
)->cdr
;
1667 /* Undo what read_char_x_menu_prompt did when it unread
1668 additional keys returned by Fx_popup_menu. */
1670 && (SYMBOLP (XCONS (c
)->car
) || INTEGERP (XCONS (c
)->car
))
1671 && NILP (XCONS (c
)->cdr
))
1674 if (this_command_key_count
== 0)
1680 if (unread_command_char
!= -1)
1682 XSETINT (c
, unread_command_char
);
1683 unread_command_char
= -1;
1685 if (this_command_key_count
== 0)
1691 /* If there is no function key translated before
1692 reset-this-command-lengths takes effect, forget about it. */
1693 before_command_restore_flag
= 0;
1695 if (!NILP (Vexecuting_macro
))
1698 /* We set this to Qmacro; since that's not a frame, nobody will
1699 try to switch frames on us, and the selected window will
1702 Since this event came from a macro, it would be misleading to
1703 leave internal_last_event_frame set to wherever the last
1704 real event came from. Normally, a switch-frame event selects
1705 internal_last_event_frame after each command is read, but
1706 events read from a macro should never cause a new frame to be
1708 Vlast_event_frame
= internal_last_event_frame
= Qmacro
;
1711 /* Exit the macro if we are at the end.
1712 Also, some things replace the macro with t
1713 to force an early exit. */
1714 if (EQ (Vexecuting_macro
, Qt
)
1715 || executing_macro_index
>= XFASTINT (Flength (Vexecuting_macro
)))
1721 c
= Faref (Vexecuting_macro
, make_number (executing_macro_index
));
1722 if (STRINGP (Vexecuting_macro
)
1723 && (XINT (c
) & 0x80))
1724 XSETFASTINT (c
, CHAR_META
| (XINT (c
) & ~0x80));
1726 executing_macro_index
++;
1731 if (!NILP (unread_switch_frame
))
1733 c
= unread_switch_frame
;
1734 unread_switch_frame
= Qnil
;
1736 /* This event should make it into this_command_keys, and get echoed
1737 again, so we go to reread_first, rather than reread. */
1741 if (commandflag
>= 0 && !input_pending
&& !detect_input_pending ())
1744 /* Message turns off echoing unless more keystrokes turn it on again. */
1745 if (echo_area_glyphs
&& *echo_area_glyphs
1746 && echo_area_glyphs
!= current_kboard
->echobuf
1747 && ok_to_echo_at_next_pause
!= echo_area_glyphs
)
1750 /* If already echoing, continue. */
1753 /* Try reading a character via menu prompting in the minibuf.
1754 Try this before the sit-for, because the sit-for
1755 would do the wrong thing if we are supposed to do
1756 menu prompting. If EVENT_HAS_PARAMETERS then we are reading
1757 after a mouse event so don't try a minibuf menu. */
1759 if (nmaps
> 0 && INTERACTIVE
1760 && !NILP (prev_event
) && ! EVENT_HAS_PARAMETERS (prev_event
)
1761 /* Don't bring up a menu if we already have another event. */
1762 && NILP (Vunread_command_events
)
1763 && unread_command_char
< 0
1764 && !detect_input_pending ())
1766 c
= read_char_minibuf_menu_prompt (commandflag
, nmaps
, maps
);
1769 key_already_recorded
= 1;
1774 /* Make a longjmp point for quits to use, but don't alter getcjmp just yet.
1775 We will do that below, temporarily for short sections of code,
1776 when appropriate. local_getcjmp must be in effect
1777 around any call to sit_for or kbd_buffer_get_event;
1778 it *must not* be in effect when we call redisplay. */
1780 if (_setjmp (local_getcjmp
))
1782 XSETINT (c
, quit_char
);
1784 XSETFRAME (internal_last_event_frame
, selected_frame
);
1785 Vlast_event_frame
= internal_last_event_frame
;
1787 /* If we report the quit char as an event,
1788 don't do so more than once. */
1789 if (!NILP (Vinhibit_quit
))
1794 KBOARD
*kb
= FRAME_KBOARD (selected_frame
);
1795 if (kb
!= current_kboard
)
1797 Lisp_Object
*tailp
= &kb
->kbd_queue
;
1798 /* We shouldn't get here if we were in single-kboard mode! */
1801 while (CONSP (*tailp
))
1802 tailp
= &XCONS (*tailp
)->cdr
;
1805 *tailp
= Fcons (c
, Qnil
);
1806 kb
->kbd_queue_has_data
= 1;
1807 current_kboard
= kb
;
1808 longjmp (wrong_kboard_jmpbuf
, 1);
1815 timer_start_idle ();
1817 /* If in middle of key sequence and minibuffer not active,
1818 start echoing if enough time elapses. */
1820 if (minibuf_level
== 0 && !current_kboard
->immediate_echo
1821 && this_command_key_count
> 0
1823 && echo_keystrokes
> 0
1824 && (echo_area_glyphs
== 0 || *echo_area_glyphs
== 0
1825 || ok_to_echo_at_next_pause
== echo_area_glyphs
))
1829 /* After a mouse event, start echoing right away.
1830 This is because we are probably about to display a menu,
1831 and we don't want to delay before doing so. */
1832 if (EVENT_HAS_PARAMETERS (prev_event
))
1836 save_getcjmp (save_jump
);
1837 restore_getcjmp (local_getcjmp
);
1838 tem0
= sit_for (echo_keystrokes
, 0, 1, 1);
1839 restore_getcjmp (save_jump
);
1845 /* Maybe auto save due to number of keystrokes. */
1847 if (commandflag
!= 0
1848 && auto_save_interval
> 0
1849 && num_nonmacro_input_chars
- last_auto_save
> max (auto_save_interval
, 20)
1850 && !detect_input_pending ())
1852 Fdo_auto_save (Qnil
, Qnil
);
1853 /* Hooks can actually change some buffers in auto save. */
1857 /* Try reading using an X menu.
1858 This is never confused with reading using the minibuf
1859 because the recursive call of read_char in read_char_minibuf_menu_prompt
1860 does not pass on any keymaps. */
1862 if (nmaps
> 0 && INTERACTIVE
1863 && !NILP (prev_event
)
1864 && EVENT_HAS_PARAMETERS (prev_event
)
1865 && !EQ (XCONS (prev_event
)->car
, Qmenu_bar
)
1866 /* Don't bring up a menu if we already have another event. */
1867 && NILP (Vunread_command_events
)
1868 && unread_command_char
< 0)
1869 c
= read_char_x_menu_prompt (nmaps
, maps
, prev_event
, used_mouse_menu
);
1871 /* Maybe autosave and/or garbage collect due to idleness. */
1873 if (INTERACTIVE
&& NILP (c
))
1875 int delay_level
, buffer_size
;
1877 /* Slow down auto saves logarithmically in size of current buffer,
1878 and garbage collect while we're at it. */
1879 if (! MINI_WINDOW_P (XWINDOW (selected_window
)))
1880 last_non_minibuf_size
= Z
- BEG
;
1881 buffer_size
= (last_non_minibuf_size
>> 8) + 1;
1883 while (buffer_size
> 64)
1884 delay_level
++, buffer_size
-= buffer_size
>> 2;
1885 if (delay_level
< 4) delay_level
= 4;
1886 /* delay_level is 4 for files under around 50k, 7 at 100k,
1887 9 at 200k, 11 at 300k, and 12 at 500k. It is 15 at 1 meg. */
1889 /* Auto save if enough time goes by without input. */
1890 if (commandflag
!= 0
1891 && num_nonmacro_input_chars
> last_auto_save
1892 && INTEGERP (Vauto_save_timeout
)
1893 && XINT (Vauto_save_timeout
) > 0)
1897 save_getcjmp (save_jump
);
1898 restore_getcjmp (local_getcjmp
);
1899 tem0
= sit_for (delay_level
* XFASTINT (Vauto_save_timeout
) / 4,
1901 restore_getcjmp (save_jump
);
1905 Fdo_auto_save (Qnil
, Qnil
);
1907 /* If we have auto-saved and there is still no input
1908 available, garbage collect if there has been enough
1909 consing going on to make it worthwhile. */
1910 if (!detect_input_pending ()
1911 && consing_since_gc
> gc_cons_threshold
/ 2)
1912 Fgarbage_collect ();
1919 /* Read something from current KBOARD's side queue, if possible. */
1923 if (current_kboard
->kbd_queue_has_data
)
1925 if (!CONSP (current_kboard
->kbd_queue
))
1927 c
= XCONS (current_kboard
->kbd_queue
)->car
;
1928 current_kboard
->kbd_queue
1929 = XCONS (current_kboard
->kbd_queue
)->cdr
;
1930 if (NILP (current_kboard
->kbd_queue
))
1931 current_kboard
->kbd_queue_has_data
= 0;
1932 input_pending
= readable_events (0);
1934 if (EVENT_HAS_PARAMETERS (c
)
1935 && EQ (EVENT_HEAD_KIND (EVENT_HEAD (c
)), Qswitch_frame
))
1936 internal_last_event_frame
= XCONS (XCONS (c
)->cdr
)->car
;
1937 Vlast_event_frame
= internal_last_event_frame
;
1943 /* If current_kboard's side queue is empty check the other kboards.
1944 If one of them has data that we have not yet seen here,
1945 switch to it and process the data waiting for it.
1947 Note: if the events queued up for another kboard
1948 have already been seen here, and therefore are not a complete command,
1949 the kbd_queue_has_data field is 0, so we skip that kboard here.
1950 That's to avoid an infinite loop switching between kboards here. */
1951 if (NILP (c
) && !single_kboard
)
1954 for (kb
= all_kboards
; kb
; kb
= kb
->next_kboard
)
1955 if (kb
->kbd_queue_has_data
)
1957 current_kboard
= kb
;
1958 longjmp (wrong_kboard_jmpbuf
, 1);
1967 /* Finally, we read from the main queue,
1968 and if that gives us something we can't use yet, we put it on the
1969 appropriate side queue and try again. */
1975 /* Actually read a character, waiting if necessary. */
1976 save_getcjmp (save_jump
);
1977 restore_getcjmp (local_getcjmp
);
1978 c
= kbd_buffer_get_event (&kb
, used_mouse_menu
);
1979 restore_getcjmp (save_jump
);
1982 if (! NILP (c
) && (kb
!= current_kboard
))
1984 Lisp_Object
*tailp
= &kb
->kbd_queue
;
1985 while (CONSP (*tailp
))
1986 tailp
= &XCONS (*tailp
)->cdr
;
1989 *tailp
= Fcons (c
, Qnil
);
1990 kb
->kbd_queue_has_data
= 1;
1994 current_kboard
= kb
;
1995 longjmp (wrong_kboard_jmpbuf
, 1);
2000 /* Terminate Emacs in batch mode if at eof. */
2001 if (noninteractive
&& INTEGERP (c
) && XINT (c
) < 0)
2002 Fkill_emacs (make_number (1));
2006 /* Add in any extra modifiers, where appropriate. */
2007 if ((extra_keyboard_modifiers
& CHAR_CTL
)
2008 || ((extra_keyboard_modifiers
& 0177) < ' '
2009 && (extra_keyboard_modifiers
& 0177) != 0))
2010 XSETINT (c
, make_ctrl_char (XINT (c
)));
2012 /* Transfer any other modifier bits directly from
2013 extra_keyboard_modifiers to c. Ignore the actual character code
2014 in the low 16 bits of extra_keyboard_modifiers. */
2015 XSETINT (c
, XINT (c
) | (extra_keyboard_modifiers
& ~0xff7f & ~CHAR_CTL
));
2020 /* Now that we have read an event, Emacs is not idle--
2021 unless the event was a timer event. */
2022 if (! (CONSP (c
) && EQ (XCONS (c
)->car
, Qtimer_event
)))
2029 if (commandflag
>= 0
2030 && !input_pending
&& !detect_input_pending ())
2038 /* Buffer switch events are only for internal wakeups
2039 so don't show them to the user. */
2043 if (key_already_recorded
)
2046 /* Process special events within read_char
2047 and loop around to read another event. */
2050 tem
= get_keyelt (access_keymap (get_keymap_1 (Vspecial_event_map
, 0, 0),
2056 int was_locked
= single_kboard
;
2058 last_input_char
= c
;
2059 Fcommand_execute (tem
, Qnil
, Fvector (1, &last_input_char
));
2061 /* Resume allowing input from any kboard, if that was true before. */
2063 any_kboard_state ();
2068 /* Wipe the echo area. */
2069 echo_area_glyphs
= 0;
2071 /* Handle things that only apply to characters. */
2074 /* If kbd_buffer_get_event gave us an EOF, return that. */
2078 if (STRINGP (Vkeyboard_translate_table
)
2079 && XSTRING (Vkeyboard_translate_table
)->size
> XFASTINT (c
))
2080 XSETINT (c
, XSTRING (Vkeyboard_translate_table
)->data
[XFASTINT (c
)]);
2081 else if ((VECTORP (Vkeyboard_translate_table
)
2082 && XVECTOR (Vkeyboard_translate_table
)->size
> XFASTINT (c
))
2083 || CHAR_TABLE_P (Vkeyboard_translate_table
))
2086 d
= Faref (Vkeyboard_translate_table
, c
);
2087 /* nil in keyboard-translate-table means no translation. */
2093 /* If this event is a mouse click in the menu bar,
2094 return just menu-bar for now. Modify the mouse click event
2095 so we won't do this twice, then queue it up. */
2096 if (EVENT_HAS_PARAMETERS (c
)
2097 && CONSP (XCONS (c
)->cdr
)
2098 && CONSP (EVENT_START (c
))
2099 && CONSP (XCONS (EVENT_START (c
))->cdr
))
2103 posn
= POSN_BUFFER_POSN (EVENT_START (c
));
2104 /* Handle menu-bar events:
2105 insert the dummy prefix event `menu-bar'. */
2106 if (EQ (posn
, Qmenu_bar
))
2108 /* Change menu-bar to (menu-bar) as the event "position". */
2109 POSN_BUFFER_POSN (EVENT_START (c
)) = Fcons (posn
, Qnil
);
2112 Vunread_command_events
= Fcons (c
, Vunread_command_events
);
2118 if (! NILP (also_record
))
2119 record_char (also_record
);
2123 before_command_key_count
= this_command_key_count
;
2124 before_command_echo_length
= echo_length ();
2126 /* Don't echo mouse motion events. */
2128 && ! (EVENT_HAS_PARAMETERS (c
)
2129 && EQ (EVENT_HEAD_KIND (EVENT_HEAD (c
)), Qmouse_movement
)))
2132 if (! NILP (also_record
))
2133 echo_char (also_record
);
2134 /* Once we reread a character, echoing can happen
2135 the next time we pause to read a new one. */
2136 ok_to_echo_at_next_pause
= echo_area_glyphs
;
2139 /* Record this character as part of the current key. */
2140 add_command_key (c
);
2141 if (! NILP (also_record
))
2142 add_command_key (also_record
);
2144 /* Re-reading in the middle of a command */
2146 last_input_char
= c
;
2149 /* Process the help character specially if enabled */
2150 if (!NILP (Vhelp_form
) && help_char_p (c
))
2153 count
= specpdl_ptr
- specpdl
;
2155 record_unwind_protect (Fset_window_configuration
,
2156 Fcurrent_window_configuration (Qnil
));
2158 tem0
= Feval (Vhelp_form
);
2160 internal_with_output_to_temp_buffer ("*Help*", print_help
, tem0
);
2164 c
= read_char (0, 0, 0, Qnil
, 0);
2165 while (BUFFERP (c
));
2166 /* Remove the help from the frame */
2167 unbind_to (count
, Qnil
);
2170 if (EQ (c
, make_number (040)))
2174 c
= read_char (0, 0, 0, Qnil
, 0);
2175 while (BUFFERP (c
));
2182 /* Return 1 if should recognize C as "the help character". */
2190 if (EQ (c
, Vhelp_char
))
2192 for (tail
= Vhelp_event_list
; CONSP (tail
); tail
= XCONS (tail
)->cdr
)
2193 if (EQ (c
, XCONS (tail
)->car
))
2198 /* Record the input event C in various ways. */
2205 XVECTOR (recent_keys
)->contents
[recent_keys_index
] = c
;
2206 if (++recent_keys_index
>= NUM_RECENT_KEYS
)
2207 recent_keys_index
= 0;
2209 /* Write c to the dribble file. If c is a lispy event, write
2210 the event's symbol to the dribble file, in <brackets>. Bleaugh.
2211 If you, dear reader, have a better idea, you've got the source. :-) */
2216 if (XUINT (c
) < 0x100)
2217 putc (XINT (c
), dribble
);
2219 fprintf (dribble
, " 0x%x", (int) XUINT (c
));
2223 Lisp_Object dribblee
;
2225 /* If it's a structured event, take the event header. */
2226 dribblee
= EVENT_HEAD (c
);
2228 if (SYMBOLP (dribblee
))
2230 putc ('<', dribble
);
2231 fwrite (XSYMBOL (dribblee
)->name
->data
, sizeof (char),
2232 XSYMBOL (dribblee
)->name
->size
,
2234 putc ('>', dribble
);
2241 store_kbd_macro_char (c
);
2243 num_nonmacro_input_chars
++;
2250 struct buffer
*old
= current_buffer
;
2251 Fprinc (object
, Qnil
);
2252 set_buffer_internal (XBUFFER (Vstandard_output
));
2253 call0 (intern ("help-mode"));
2254 set_buffer_internal (old
);
2258 /* Copy out or in the info on where C-g should throw to.
2259 This is used when running Lisp code from within get_char,
2260 in case get_char is called recursively.
2261 See read_process_output. */
2266 bcopy (getcjmp
, temp
, sizeof getcjmp
);
2269 restore_getcjmp (temp
)
2272 bcopy (temp
, getcjmp
, sizeof getcjmp
);
2277 /* Restore mouse tracking enablement. See Ftrack_mouse for the only use
2278 of this function. */
2281 tracking_off (old_value
)
2282 Lisp_Object old_value
;
2284 do_mouse_tracking
= old_value
;
2285 if (NILP (old_value
))
2287 /* Redisplay may have been preempted because there was input
2288 available, and it assumes it will be called again after the
2289 input has been processed. If the only input available was
2290 the sort that we have just disabled, then we need to call
2292 if (!readable_events (1))
2294 redisplay_preserve_echo_area ();
2295 get_input_pending (&input_pending
, 1);
2300 DEFUN ("track-mouse", Ftrack_mouse
, Strack_mouse
, 0, UNEVALLED
, 0,
2301 "Evaluate BODY with mouse movement events enabled.\n\
2302 Within a `track-mouse' form, mouse motion generates input events that\n\
2303 you can read with `read-event'.\n\
2304 Normally, mouse motion is ignored.")
2308 int count
= specpdl_ptr
- specpdl
;
2311 record_unwind_protect (tracking_off
, do_mouse_tracking
);
2313 do_mouse_tracking
= Qt
;
2315 val
= Fprogn (args
);
2316 return unbind_to (count
, val
);
2319 /* If mouse has moved on some frame, return one of those frames.
2320 Return 0 otherwise. */
2325 Lisp_Object tail
, frame
;
2327 FOR_EACH_FRAME (tail
, frame
)
2329 if (XFRAME (frame
)->mouse_moved
)
2330 return XFRAME (frame
);
2336 #endif /* HAVE_MOUSE */
2338 /* Low level keyboard/mouse input.
2339 kbd_buffer_store_event places events in kbd_buffer, and
2340 kbd_buffer_get_event retrieves them. */
2342 /* Return true iff there are any events in the queue that read-char
2343 would return. If this returns false, a read-char would block. */
2345 readable_events (do_timers_now
)
2348 timer_check (do_timers_now
);
2349 if (kbd_fetch_ptr
!= kbd_store_ptr
)
2352 if (!NILP (do_mouse_tracking
) && some_mouse_moved ())
2357 if (current_kboard
->kbd_queue_has_data
)
2363 for (kb
= all_kboards
; kb
; kb
= kb
->next_kboard
)
2364 if (kb
->kbd_queue_has_data
)
2370 /* Set this for debugging, to have a way to get out */
2375 event_to_kboard (event
)
2376 struct input_event
*event
;
2379 frame
= event
->frame_or_window
;
2381 frame
= XCONS (frame
)->car
;
2382 else if (WINDOWP (frame
))
2383 frame
= WINDOW_FRAME (XWINDOW (frame
));
2385 /* There are still some events that don't set this field.
2386 For now, just ignore the problem.
2387 Also ignore dead frames here. */
2388 if (!FRAMEP (frame
) || !FRAME_LIVE_P (XFRAME (frame
)))
2391 return FRAME_KBOARD (XFRAME (frame
));
2395 /* Store an event obtained at interrupt level into kbd_buffer, fifo */
2398 kbd_buffer_store_event (event
)
2399 register struct input_event
*event
;
2401 if (event
->kind
== no_event
)
2404 if (event
->kind
== ascii_keystroke
)
2406 register int c
= event
->code
& 0377;
2408 if (event
->modifiers
& ctrl_modifier
)
2409 c
= make_ctrl_char (c
);
2411 c
|= (event
->modifiers
2412 & (meta_modifier
| alt_modifier
2413 | hyper_modifier
| super_modifier
));
2417 extern SIGTYPE
interrupt_signal ();
2420 struct input_event
*sp
;
2423 && (kb
= FRAME_KBOARD (XFRAME (event
->frame_or_window
)),
2424 kb
!= current_kboard
))
2427 = Fcons (make_lispy_switch_frame (event
->frame_or_window
),
2428 Fcons (make_number (c
), Qnil
));
2429 kb
->kbd_queue_has_data
= 1;
2430 for (sp
= kbd_fetch_ptr
; sp
!= kbd_store_ptr
; sp
++)
2432 if (sp
== kbd_buffer
+ KBD_BUFFER_SIZE
)
2435 if (event_to_kboard (sp
) == kb
)
2437 sp
->kind
= no_event
;
2438 sp
->frame_or_window
= Qnil
;
2446 /* If this results in a quit_char being returned to Emacs as
2447 input, set Vlast_event_frame properly. If this doesn't
2448 get returned to Emacs as an event, the next event read
2449 will set Vlast_event_frame again, so this is safe to do. */
2453 focus
= FRAME_FOCUS_FRAME (XFRAME (event
->frame_or_window
));
2455 focus
= event
->frame_or_window
;
2456 internal_last_event_frame
= focus
;
2457 Vlast_event_frame
= focus
;
2461 last_event_timestamp
= event
->timestamp
;
2462 interrupt_signal ();
2466 if (c
&& c
== stop_character
)
2472 /* Don't insert two buffer_switch_event's in a row.
2473 Just ignore the second one. */
2474 else if (event
->kind
== buffer_switch_event
2475 && kbd_fetch_ptr
!= kbd_store_ptr
2476 && kbd_store_ptr
->kind
== buffer_switch_event
)
2479 if (kbd_store_ptr
- kbd_buffer
== KBD_BUFFER_SIZE
)
2480 kbd_store_ptr
= kbd_buffer
;
2482 /* Don't let the very last slot in the buffer become full,
2483 since that would make the two pointers equal,
2484 and that is indistinguishable from an empty buffer.
2485 Discard the event if it would fill the last slot. */
2486 if (kbd_fetch_ptr
- 1 != kbd_store_ptr
)
2488 volatile struct input_event
*sp
= kbd_store_ptr
;
2489 sp
->kind
= event
->kind
;
2490 if (event
->kind
== selection_request_event
)
2492 /* We must not use the ordinary copying code for this case,
2493 since `part' is an enum and copying it might not copy enough
2495 bcopy (event
, (char *) sp
, sizeof (*event
));
2499 sp
->code
= event
->code
;
2500 sp
->part
= event
->part
;
2501 sp
->frame_or_window
= event
->frame_or_window
;
2502 sp
->modifiers
= event
->modifiers
;
2505 sp
->timestamp
= event
->timestamp
;
2507 (XVECTOR (kbd_buffer_frame_or_window
)->contents
[kbd_store_ptr
2509 = event
->frame_or_window
);
2515 /* Read one event from the event buffer, waiting if necessary.
2516 The value is a Lisp object representing the event.
2517 The value is nil for an event that should be ignored,
2518 or that was handled here.
2519 We always read and discard one event. */
2522 kbd_buffer_get_event (kbp
, used_mouse_menu
)
2524 int *used_mouse_menu
;
2528 EMACS_TIME next_timer_delay
;
2534 *kbp
= current_kboard
;
2538 /* Wait until there is input available. */
2541 if (kbd_fetch_ptr
!= kbd_store_ptr
)
2544 if (!NILP (do_mouse_tracking
) && some_mouse_moved ())
2548 /* If the quit flag is set, then read_char will return
2549 quit_char, so that counts as "available input." */
2550 if (!NILP (Vquit_flag
))
2551 quit_throw_to_read_char ();
2553 /* One way or another, wait until input is available; then, if
2554 interrupt handlers have not read it, read it now. */
2557 wait_for_kbd_input ();
2559 /* Note SIGIO has been undef'd if FIONREAD is missing. */
2563 if (kbd_fetch_ptr
!= kbd_store_ptr
)
2566 if (!NILP (do_mouse_tracking
) && some_mouse_moved ())
2570 Lisp_Object minus_one
;
2572 XSETINT (minus_one
, -1);
2573 wait_reading_process_input (0, 0, minus_one
, 1);
2575 if (!interrupt_input
&& kbd_fetch_ptr
== kbd_store_ptr
)
2576 /* Pass 1 for EXPECT since we just waited to have input. */
2577 read_avail_input (1);
2579 #endif /* not VMS */
2582 /* At this point, we know that there is a readable event available
2583 somewhere. If the event queue is empty, then there must be a
2584 mouse movement enabled and available. */
2585 if (kbd_fetch_ptr
!= kbd_store_ptr
)
2587 struct input_event
*event
;
2589 event
= ((kbd_fetch_ptr
< kbd_buffer
+ KBD_BUFFER_SIZE
)
2593 last_event_timestamp
= event
->timestamp
;
2596 *kbp
= event_to_kboard (event
);
2598 *kbp
= current_kboard
; /* Better than returning null ptr? */
2600 *kbp
= &the_only_kboard
;
2605 /* These two kinds of events get special handling
2606 and don't actually appear to the command loop.
2607 We return nil for them. */
2608 if (event
->kind
== selection_request_event
)
2611 struct input_event copy
;
2613 /* Remove it from the buffer before processing it,
2614 since otherwise swallow_events will see it
2615 and process it again. */
2617 kbd_fetch_ptr
= event
+ 1;
2618 input_pending
= readable_events (0);
2619 x_handle_selection_request (©
);
2621 /* We're getting selection request events, but we don't have
2627 else if (event
->kind
== selection_clear_event
)
2630 struct input_event copy
;
2632 /* Remove it from the buffer before processing it. */
2634 kbd_fetch_ptr
= event
+ 1;
2635 input_pending
= readable_events (0);
2636 x_handle_selection_clear (©
);
2638 /* We're getting selection request events, but we don't have
2643 #if defined (HAVE_X11) || defined (HAVE_NTGUI)
2644 else if (event
->kind
== delete_window_event
)
2646 /* Make an event (delete-frame (FRAME)). */
2647 obj
= Fcons (event
->frame_or_window
, Qnil
);
2648 obj
= Fcons (Qdelete_frame
, Fcons (obj
, Qnil
));
2649 kbd_fetch_ptr
= event
+ 1;
2651 else if (event
->kind
== iconify_event
)
2653 /* Make an event (iconify-frame (FRAME)). */
2654 obj
= Fcons (event
->frame_or_window
, Qnil
);
2655 obj
= Fcons (Qiconify_frame
, Fcons (obj
, Qnil
));
2656 kbd_fetch_ptr
= event
+ 1;
2658 else if (event
->kind
== deiconify_event
)
2660 /* Make an event (make-frame-visible (FRAME)). */
2661 obj
= Fcons (event
->frame_or_window
, Qnil
);
2662 obj
= Fcons (Qmake_frame_visible
, Fcons (obj
, Qnil
));
2663 kbd_fetch_ptr
= event
+ 1;
2666 else if (event
->kind
== buffer_switch_event
)
2668 /* The value doesn't matter here; only the type is tested. */
2669 XSETBUFFER (obj
, current_buffer
);
2670 kbd_fetch_ptr
= event
+ 1;
2672 #ifdef USE_X_TOOLKIT
2673 else if (event
->kind
== menu_bar_activate_event
)
2675 kbd_fetch_ptr
= event
+ 1;
2676 input_pending
= readable_events (0);
2677 x_activate_menubar (XFRAME (event
->frame_or_window
));
2680 /* Just discard these, by returning nil.
2681 With MULTI_KBOARD, these events are used as placeholders
2682 when we need to randomly delete events from the queue.
2683 (They shouldn't otherwise be found in the buffer,
2684 but on some machines it appears they do show up
2685 even without MULTI_KBOARD.) */
2686 else if (event
->kind
== no_event
)
2687 kbd_fetch_ptr
= event
+ 1;
2689 /* If this event is on a different frame, return a switch-frame this
2690 time, and leave the event in the queue for next time. */
2697 frame
= event
->frame_or_window
;
2699 frame
= XCONS (frame
)->car
;
2700 else if (WINDOWP (frame
))
2701 frame
= WINDOW_FRAME (XWINDOW (frame
));
2703 focus
= FRAME_FOCUS_FRAME (XFRAME (frame
));
2707 if (! EQ (frame
, internal_last_event_frame
)
2708 && XFRAME (frame
) != selected_frame
)
2709 obj
= make_lispy_switch_frame (frame
);
2710 internal_last_event_frame
= frame
;
2711 #endif /* MULTI_FRAME */
2713 /* If we didn't decide to make a switch-frame event, go ahead
2714 and build a real event from the queue entry. */
2718 obj
= make_lispy_event (event
);
2719 #if defined (USE_X_TOOLKIT) || defined (HAVE_NTGUI)
2720 /* If this was a menu selection, then set the flag to inhibit
2721 writing to last_nonmenu_event. Don't do this if the event
2722 we're returning is (menu-bar), though; that indicates the
2723 beginning of the menu sequence, and we might as well leave
2724 that as the `event with parameters' for this selection. */
2725 if (event
->kind
== menu_bar_event
2726 && !(CONSP (obj
) && EQ (XCONS (obj
)->car
, Qmenu_bar
))
2728 *used_mouse_menu
= 1;
2731 /* Wipe out this event, to catch bugs. */
2732 event
->kind
= no_event
;
2733 XVECTOR (kbd_buffer_frame_or_window
)->contents
[event
- kbd_buffer
] = Qnil
;
2735 kbd_fetch_ptr
= event
+ 1;
2740 /* Try generating a mouse motion event. */
2741 else if (!NILP (do_mouse_tracking
) && some_mouse_moved ())
2743 FRAME_PTR f
= some_mouse_moved ();
2744 Lisp_Object bar_window
;
2745 enum scroll_bar_part part
;
2749 *kbp
= current_kboard
;
2750 /* Note that this uses F to determine which display to look at.
2751 If there is no valid info, it does not store anything
2752 so x remains nil. */
2754 (*mouse_position_hook
) (&f
, 0, &bar_window
, &part
, &x
, &y
, &time
);
2759 /* Decide if we should generate a switch-frame event. Don't
2760 generate switch-frame events for motion outside of all Emacs
2766 frame
= FRAME_FOCUS_FRAME (f
);
2768 XSETFRAME (frame
, f
);
2770 if (! EQ (frame
, internal_last_event_frame
)
2771 && XFRAME (frame
) != selected_frame
)
2772 obj
= make_lispy_switch_frame (frame
);
2773 internal_last_event_frame
= frame
;
2777 /* If we didn't decide to make a switch-frame event, go ahead and
2778 return a mouse-motion event. */
2779 if (!NILP (x
) && NILP (obj
))
2780 obj
= make_lispy_movement (f
, bar_window
, part
, x
, y
, time
);
2782 #endif /* HAVE_MOUSE */
2784 /* We were promised by the above while loop that there was
2785 something for us to read! */
2788 input_pending
= readable_events (0);
2791 Vlast_event_frame
= internal_last_event_frame
;
2797 /* Process any events that are not user-visible,
2798 then return, without reading any user-visible events. */
2801 swallow_events (do_display
)
2804 while (kbd_fetch_ptr
!= kbd_store_ptr
)
2806 struct input_event
*event
;
2808 event
= ((kbd_fetch_ptr
< kbd_buffer
+ KBD_BUFFER_SIZE
)
2812 last_event_timestamp
= event
->timestamp
;
2814 /* These two kinds of events get special handling
2815 and don't actually appear to the command loop. */
2816 if (event
->kind
== selection_request_event
)
2819 struct input_event copy
;
2821 /* Remove it from the buffer before processing it,
2822 since otherwise swallow_events called recursively could see it
2823 and process it again. */
2825 kbd_fetch_ptr
= event
+ 1;
2826 input_pending
= readable_events (0);
2827 x_handle_selection_request (©
);
2829 /* We're getting selection request events, but we don't have
2835 else if (event
->kind
== selection_clear_event
)
2838 struct input_event copy
;
2840 /* Remove it from the buffer before processing it, */
2843 kbd_fetch_ptr
= event
+ 1;
2844 input_pending
= readable_events (0);
2845 x_handle_selection_clear (©
);
2847 /* We're getting selection request events, but we don't have
2852 else if (event
->kind
== timer_event
)
2854 Lisp_Object tem
, lisp_event
;
2855 int was_locked
= single_kboard
;
2857 tem
= get_keymap_1 (Vspecial_event_map
, 0, 0);
2858 tem
= get_keyelt (access_keymap (tem
, Qtimer_event
, 0, 0),
2860 lisp_event
= Fcons (Qtimer_event
,
2861 Fcons (Fcdr (event
->frame_or_window
), Qnil
));
2862 kbd_fetch_ptr
= event
+ 1;
2863 if (kbd_fetch_ptr
== kbd_store_ptr
)
2865 Fcommand_execute (tem
, Qnil
, Fvector (1, &lisp_event
));
2867 redisplay_preserve_echo_area ();
2869 /* Resume allowing input from any kboard, if that was true before. */
2871 any_kboard_state ();
2877 get_input_pending (&input_pending
, 1);
2880 static EMACS_TIME timer_idleness_start_time
;
2882 /* Record the start of when Emacs is idle,
2883 for the sake of running idle-time timers. */
2889 /* If we are already in the idle state, do nothing. */
2890 if (! EMACS_TIME_NEG_P (timer_idleness_start_time
))
2893 EMACS_GET_TIME (timer_idleness_start_time
);
2895 /* Mark all idle-time timers as once again candidates for running. */
2896 for (timers
= Vtimer_idle_list
; CONSP (timers
); timers
= XCONS (timers
)->cdr
)
2900 timer
= XCONS (timers
)->car
;
2902 if (!VECTORP (timer
) || XVECTOR (timer
)->size
!= 8)
2904 XVECTOR (timer
)->contents
[0] = Qnil
;
2908 /* Record that Emacs is no longer idle, so stop running idle-time timers. */
2912 EMACS_SET_SECS_USECS (timer_idleness_start_time
, -1, -1);
2915 /* Check whether a timer has fired. To prevent larger problems we simply
2916 disregard elements that are not proper timers. Do not make a circular
2917 timer list for the time being.
2919 Returns the number of seconds to wait until the next timer fires. If a
2920 timer is triggering now, return zero seconds.
2921 If no timer is active, return -1 seconds.
2923 If a timer is triggering now, either queue a timer-event
2924 or run the timer's handler function if DO_IT_NOW is nonzero. */
2927 timer_check (do_it_now
)
2930 EMACS_TIME nexttime
;
2932 Lisp_Object timers
, timer
;
2933 /* Nonzero if we generate some events. */
2934 int events_generated
= 0;
2935 struct gcpro gcpro1
, gcpro2
;
2938 EMACS_SET_SECS (nexttime
, -1);
2939 EMACS_SET_USECS (nexttime
, -1);
2941 timers
= Vtimer_list
;
2943 GCPRO2 (timers
, timer
);
2945 if (CONSP (Vtimer_list
) || CONSP (Vtimer_idle_list
))
2946 EMACS_GET_TIME (now
);
2948 for (listnum
= 0; listnum
< 2; listnum
++)
2950 EMACS_TIME compare_time
;
2952 /* Always first scan the absolute timer list. */
2955 timers
= Vtimer_list
;
2958 /* If Emacs is idle, scan the idle timer list
2959 using the length of idleness as the time value. */
2960 else if (! EMACS_TIME_NEG_P (timer_idleness_start_time
))
2962 timers
= Vtimer_idle_list
;
2963 EMACS_SUB_TIME (compare_time
, now
, timer_idleness_start_time
);
2968 while (CONSP (timers
))
2970 int triggertime
= EMACS_SECS (now
);
2971 Lisp_Object
*vector
;
2972 EMACS_TIME timer_time
;
2973 EMACS_TIME difference
;
2975 timer
= XCONS (timers
)->car
;
2976 timers
= XCONS (timers
)->cdr
;
2978 if (!VECTORP (timer
) || XVECTOR (timer
)->size
!= 8)
2980 vector
= XVECTOR (timer
)->contents
;
2982 if (!INTEGERP (vector
[1]) || !INTEGERP (vector
[2])
2983 || !INTEGERP (vector
[3]))
2986 EMACS_SET_SECS (timer_time
,
2987 (XINT (vector
[1]) << 16) | (XINT (vector
[2])));
2988 EMACS_SET_USECS (timer_time
, XINT (vector
[3]));
2989 EMACS_SUB_TIME (difference
, timer_time
, compare_time
);
2990 /* If event is past, run it if it hasn't been run. */
2991 if (EMACS_TIME_NEG_P (difference
)
2992 || (EMACS_SECS (difference
) == 0
2993 && EMACS_USECS (difference
) == 0))
2995 if (NILP (vector
[0]))
2997 /* Mark the timer as triggered to prevent problems if the lisp
2998 code fails to reschedule it right. */
3001 /* Run the timer or queue a timer event. */
3004 Lisp_Object tem
, event
;
3005 int was_locked
= single_kboard
;
3007 tem
= get_keymap_1 (Vspecial_event_map
, 0, 0);
3008 tem
= get_keyelt (access_keymap (tem
, Qtimer_event
, 0, 0),
3010 event
= Fcons (Qtimer_event
, Fcons (timer
, Qnil
));
3011 Fcommand_execute (tem
, Qnil
, Fvector (1, &event
));
3013 /* Resume allowing input from any kboard, if that was true before. */
3015 any_kboard_state ();
3017 /* Since we have handled the event,
3018 we don't need to tell the caller to wake up and do it. */
3022 /* Generate a timer event so the caller will handle it. */
3023 struct input_event event
;
3025 event
.kind
= timer_event
;
3026 event
.modifiers
= 0;
3027 event
.x
= event
.y
= Qnil
;
3028 event
.timestamp
= triggertime
;
3029 /* Store the timer in the frame slot. */
3030 event
.frame_or_window
= Fcons (Fselected_frame (), timer
);
3031 kbd_buffer_store_event (&event
);
3033 /* Tell caller to handle this event right away. */
3034 events_generated
= 1;
3035 EMACS_SET_SECS (nexttime
, 0);
3036 EMACS_SET_USECS (nexttime
, 0);
3041 /* When we encounter a timer that is still waiting,
3042 return the amount of time to wait before it is ripe. */
3045 /* But if we generated an event,
3046 tell the caller to handle it now. */
3047 if (events_generated
)
3053 /* No timers are pending in the future. */
3054 /* Return 0 if we generated an event, and -1 if not. */
3059 /* Caches for modify_event_symbol. */
3060 static Lisp_Object accent_key_syms
;
3061 static Lisp_Object func_key_syms
;
3062 static Lisp_Object mouse_syms
;
3064 /* This is a list of keysym codes for special "accent" characters.
3065 It parallels lispy_accent_keys. */
3067 static int lispy_accent_codes
[] =
3069 #ifdef XK_dead_circumflex
3074 #ifdef XK_dead_grave
3079 #ifdef XK_dead_tilde
3084 #ifdef XK_dead_diaeresis
3089 #ifdef XK_dead_macron
3094 #ifdef XK_dead_degree
3099 #ifdef XK_dead_acute
3104 #ifdef XK_dead_cedilla
3109 #ifdef XK_dead_breve
3114 #ifdef XK_dead_ogonek
3119 #ifdef XK_dead_caron
3124 #ifdef XK_dead_doubleacute
3125 XK_dead_doubleacute
,
3129 #ifdef XK_dead_abovedot
3136 /* This is a list of Lisp names for special "accent" characters.
3137 It parallels lispy_accent_codes. */
3139 static char *lispy_accent_keys
[] =
3157 #define FUNCTION_KEY_OFFSET 0x0
3159 char *lispy_function_keys
[] =
3163 0, /* VK_LBUTTON 0x01 */
3164 0, /* VK_RBUTTON 0x02 */
3165 "cancel", /* VK_CANCEL 0x03 */
3166 0, /* VK_MBUTTON 0x04 */
3168 0, 0, 0, /* 0x05 .. 0x07 */
3170 "backspace", /* VK_BACK 0x08 */
3171 "tab", /* VK_TAB 0x09 */
3173 0, 0, /* 0x0A .. 0x0B */
3175 "clear", /* VK_CLEAR 0x0C */
3176 "return", /* VK_RETURN 0x0D */
3178 0, 0, /* 0x0E .. 0x0F */
3180 "shift", /* VK_SHIFT 0x10 */
3181 "control", /* VK_CONTROL 0x11 */
3182 "menu", /* VK_MENU 0x12 */
3183 "pause", /* VK_PAUSE 0x13 */
3184 "capital", /* VK_CAPITAL 0x14 */
3186 0, 0, 0, 0, 0, 0, /* 0x15 .. 0x1A */
3188 0, /* VK_ESCAPE 0x1B */
3190 0, 0, 0, 0, /* 0x1C .. 0x1F */
3192 0, /* VK_SPACE 0x20 */
3193 "prior", /* VK_PRIOR 0x21 */
3194 "next", /* VK_NEXT 0x22 */
3195 "end", /* VK_END 0x23 */
3196 "home", /* VK_HOME 0x24 */
3197 "left", /* VK_LEFT 0x25 */
3198 "up", /* VK_UP 0x26 */
3199 "right", /* VK_RIGHT 0x27 */
3200 "down", /* VK_DOWN 0x28 */
3201 "select", /* VK_SELECT 0x29 */
3202 "print", /* VK_PRINT 0x2A */
3203 "execute", /* VK_EXECUTE 0x2B */
3204 "snapshot", /* VK_SNAPSHOT 0x2C */
3205 "insert", /* VK_INSERT 0x2D */
3206 "delete", /* VK_DELETE 0x2E */
3207 "help", /* VK_HELP 0x2F */
3209 /* VK_0 thru VK_9 are the same as ASCII '0' thru '9' (0x30 - 0x39) */
3211 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
3213 0, 0, 0, 0, 0, 0, 0, /* 0x3A .. 0x40 */
3215 /* VK_A thru VK_Z are the same as ASCII 'A' thru 'Z' (0x41 - 0x5A) */
3217 0, 0, 0, 0, 0, 0, 0, 0, 0,
3218 0, 0, 0, 0, 0, 0, 0, 0, 0,
3219 0, 0, 0, 0, 0, 0, 0, 0,
3221 "lwindow", /* VK_LWIN 0x5B */
3222 "rwindow", /* VK_RWIN 0x5C */
3223 "apps", /* VK_APPS 0x5D */
3225 0, 0, /* 0x5E .. 0x5F */
3227 "kp-0", /* VK_NUMPAD0 0x60 */
3228 "kp-1", /* VK_NUMPAD1 0x61 */
3229 "kp-2", /* VK_NUMPAD2 0x62 */
3230 "kp-3", /* VK_NUMPAD3 0x63 */
3231 "kp-4", /* VK_NUMPAD4 0x64 */
3232 "kp-5", /* VK_NUMPAD5 0x65 */
3233 "kp-6", /* VK_NUMPAD6 0x66 */
3234 "kp-7", /* VK_NUMPAD7 0x67 */
3235 "kp-8", /* VK_NUMPAD8 0x68 */
3236 "kp-9", /* VK_NUMPAD9 0x69 */
3237 "kp-multiply", /* VK_MULTIPLY 0x6A */
3238 "kp-add", /* VK_ADD 0x6B */
3239 "kp-separator", /* VK_SEPARATOR 0x6C */
3240 "kp-subtract", /* VK_SUBTRACT 0x6D */
3241 "kp-decimal", /* VK_DECIMAL 0x6E */
3242 "kp-divide", /* VK_DIVIDE 0x6F */
3243 "f1", /* VK_F1 0x70 */
3244 "f2", /* VK_F2 0x71 */
3245 "f3", /* VK_F3 0x72 */
3246 "f4", /* VK_F4 0x73 */
3247 "f5", /* VK_F5 0x74 */
3248 "f6", /* VK_F6 0x75 */
3249 "f7", /* VK_F7 0x76 */
3250 "f8", /* VK_F8 0x77 */
3251 "f9", /* VK_F9 0x78 */
3252 "f10", /* VK_F10 0x79 */
3253 "f11", /* VK_F11 0x7A */
3254 "f12", /* VK_F12 0x7B */
3255 "f13", /* VK_F13 0x7C */
3256 "f14", /* VK_F14 0x7D */
3257 "f15", /* VK_F15 0x7E */
3258 "f16", /* VK_F16 0x7F */
3259 "f17", /* VK_F17 0x80 */
3260 "f18", /* VK_F18 0x81 */
3261 "f19", /* VK_F19 0x82 */
3262 "f20", /* VK_F20 0x83 */
3263 "f21", /* VK_F21 0x84 */
3264 "f22", /* VK_F22 0x85 */
3265 "f23", /* VK_F23 0x86 */
3266 "f24", /* VK_F24 0x87 */
3268 0, 0, 0, 0, /* 0x88 .. 0x8B */
3269 0, 0, 0, 0, /* 0x8C .. 0x8F */
3271 "kp-numlock", /* VK_NUMLOCK 0x90 */
3272 "scroll", /* VK_SCROLL 0x91 */
3274 "kp-space", /* VK_NUMPAD_CLEAR 0x92 */
3275 "kp-enter", /* VK_NUMPAD_ENTER 0x93 */
3276 "kp-prior", /* VK_NUMPAD_PRIOR 0x94 */
3277 "kp-next", /* VK_NUMPAD_NEXT 0x95 */
3278 "kp-end", /* VK_NUMPAD_END 0x96 */
3279 "kp-home", /* VK_NUMPAD_HOME 0x97 */
3280 "kp-left", /* VK_NUMPAD_LEFT 0x98 */
3281 "kp-up", /* VK_NUMPAD_UP 0x99 */
3282 "kp-right", /* VK_NUMPAD_RIGHT 0x9A */
3283 "kp-down", /* VK_NUMPAD_DOWN 0x9B */
3284 "kp-insert", /* VK_NUMPAD_INSERT 0x9C */
3285 "kp-delete", /* VK_NUMPAD_DELETE 0x9D */
3287 0, 0, /* 0x9E .. 0x9F */
3290 * VK_L* & VK_R* - left and right Alt, Ctrl and Shift virtual keys.
3291 * Used only as parameters to GetAsyncKeyState() and GetKeyState().
3292 * No other API or message will distinguish left and right keys this way.
3296 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
3297 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
3298 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
3299 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
3300 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
3306 "attn", /* VK_ATTN 0xF6 */
3307 "crsel", /* VK_CRSEL 0xF7 */
3308 "exsel", /* VK_EXSEL 0xF8 */
3309 "ereof", /* VK_EREOF 0xF9 */
3310 "play", /* VK_PLAY 0xFA */
3311 "zoom", /* VK_ZOOM 0xFB */
3312 "noname", /* VK_NONAME 0xFC */
3313 "pa1", /* VK_PA1 0xFD */
3314 "oem_clear", /* VK_OEM_CLEAR 0xFE */
3319 #define FUNCTION_KEY_OFFSET 0xff00
3321 /* You'll notice that this table is arranged to be conveniently
3322 indexed by X Windows keysym values. */
3323 static char *lispy_function_keys
[] =
3325 /* X Keysym value */
3327 0, 0, 0, 0, 0, 0, 0, 0, /* 0xff00 */
3335 0, 0, 0, /* 0xff10 */
3337 0, 0, 0, 0, 0, 0, 0,
3340 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, /* 0xff20...2f */
3341 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, /* 0xff30...3f */
3342 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, /* 0xff40...4f */
3344 "home", /* 0xff50 */ /* IsCursorKey */
3355 "select", /* 0xff60 */ /* IsMiscFunctionKey */
3366 "break", /* 0xff6b */
3368 0, 0, 0, 0, 0, 0, 0, 0, "backtab", 0,
3370 0, 0, 0, 0, 0, 0, 0, 0, "kp-numlock", /* 0xff7f */
3371 "kp-space", /* 0xff80 */ /* IsKeypadKey */
3372 0, 0, 0, 0, 0, 0, 0, 0,
3373 "kp-tab", /* 0xff89 */
3375 "kp-enter", /* 0xff8d */
3377 "kp-f1", /* 0xff91 */
3381 "kp-home", /* 0xff95 */
3386 "kp-prior", /* kp-page-up */
3387 "kp-next", /* kp-page-down */
3393 0, 0, 0, 0, 0, 0, 0, 0, 0,
3394 "kp-multiply", /* 0xffaa */
3399 "kp-divide", /* 0xffaf */
3400 "kp-0", /* 0xffb0 */
3401 "kp-1", "kp-2", "kp-3", "kp-4", "kp-5", "kp-6", "kp-7", "kp-8", "kp-9",
3404 "kp-equal", /* 0xffbd */
3405 "f1", /* 0xffbe */ /* IsFunctionKey */
3407 "f3", "f4", "f5", "f6", "f7", "f8", "f9", "f10", /* 0xffc0 */
3408 "f11", "f12", "f13", "f14", "f15", "f16", "f17", "f18",
3409 "f19", "f20", "f21", "f22", "f23", "f24", "f25", "f26", /* 0xffd0 */
3410 "f27", "f28", "f29", "f30", "f31", "f32", "f33", "f34",
3411 "f35", 0, 0, 0, 0, 0, 0, 0, /* 0xffe0 */
3412 0, 0, 0, 0, 0, 0, 0, 0,
3413 0, 0, 0, 0, 0, 0, 0, 0, /* 0xfff0 */
3414 0, 0, 0, 0, 0, 0, 0, "delete"
3417 #endif /* HAVE_NTGUI */
3419 static char *lispy_mouse_names
[] =
3421 "mouse-1", "mouse-2", "mouse-3", "mouse-4", "mouse-5"
3424 /* Scroll bar parts. */
3425 Lisp_Object Qabove_handle
, Qhandle
, Qbelow_handle
;
3427 /* An array of scroll bar parts, indexed by an enum scroll_bar_part value. */
3428 Lisp_Object
*scroll_bar_parts
[] = {
3429 &Qabove_handle
, &Qhandle
, &Qbelow_handle
3433 /* A vector, indexed by button number, giving the down-going location
3434 of currently depressed buttons, both scroll bar and non-scroll bar.
3436 The elements have the form
3437 (BUTTON-NUMBER MODIFIER-MASK . REST)
3438 where REST is the cdr of a position as it would be reported in the event.
3440 The make_lispy_event function stores positions here to tell the
3441 difference between click and drag events, and to store the starting
3442 location to be included in drag events. */
3444 static Lisp_Object button_down_location
;
3446 /* Information about the most recent up-going button event: Which
3447 button, what location, and what time. */
3449 static int last_mouse_button
;
3450 static int last_mouse_x
;
3451 static int last_mouse_y
;
3452 static unsigned long button_down_time
;
3454 /* The maximum time between clicks to make a double-click,
3455 or Qnil to disable double-click detection,
3456 or Qt for no time limit. */
3457 Lisp_Object Vdouble_click_time
;
3459 /* The number of clicks in this multiple-click. */
3461 int double_click_count
;
3463 /* Given a struct input_event, build the lisp event which represents
3464 it. If EVENT is 0, build a mouse movement event from the mouse
3465 movement buffer, which should have a movement event in it.
3467 Note that events must be passed to this function in the order they
3468 are received; this function stores the location of button presses
3469 in order to build drag events when the button is released. */
3472 make_lispy_event (event
)
3473 struct input_event
*event
;
3477 switch (SWITCH_ENUM_CAST (event
->kind
))
3479 /* A simple keystroke. */
3480 case ascii_keystroke
:
3482 Lisp_Object lispy_c
;
3483 int c
= event
->code
& 0377;
3484 /* Turn ASCII characters into control characters
3486 if (event
->modifiers
& ctrl_modifier
)
3487 c
= make_ctrl_char (c
);
3489 /* Add in the other modifier bits. We took care of ctrl_modifier
3490 just above, and the shift key was taken care of by the X code,
3491 and applied to control characters by make_ctrl_char. */
3492 c
|= (event
->modifiers
3493 & (meta_modifier
| alt_modifier
3494 | hyper_modifier
| super_modifier
));
3495 button_down_time
= 0;
3496 XSETFASTINT (lispy_c
, c
);
3500 /* A function key. The symbol may need to have modifier prefixes
3502 case non_ascii_keystroke
:
3503 button_down_time
= 0;
3505 for (i
= 0; i
< sizeof (lispy_accent_codes
) / sizeof (int); i
++)
3506 if (event
->code
== lispy_accent_codes
[i
])
3507 return modify_event_symbol (i
,
3509 Qfunction_key
, Qnil
,
3510 lispy_accent_keys
, &accent_key_syms
,
3511 (sizeof (lispy_accent_keys
)
3512 / sizeof (lispy_accent_keys
[0])));
3514 /* Handle system-specific keysyms. */
3515 if (event
->code
& (1 << 28))
3517 /* We need to use an alist rather than a vector as the cache
3518 since we can't make a vector long enuf. */
3519 if (NILP (current_kboard
->system_key_syms
))
3520 current_kboard
->system_key_syms
= Fcons (Qnil
, Qnil
);
3521 return modify_event_symbol (event
->code
,
3524 current_kboard
->Vsystem_key_alist
,
3525 0, ¤t_kboard
->system_key_syms
,
3529 return modify_event_symbol (event
->code
- FUNCTION_KEY_OFFSET
,
3531 Qfunction_key
, Qnil
,
3532 lispy_function_keys
, &func_key_syms
,
3533 (sizeof (lispy_function_keys
)
3534 / sizeof (lispy_function_keys
[0])));
3538 return Fcons (Qtimer_event
, Fcons (Fcdr (event
->frame_or_window
), Qnil
));
3541 /* A mouse click. Figure out where it is, decide whether it's
3542 a press, click or drag, and build the appropriate structure. */
3544 case scroll_bar_click
:
3546 int button
= event
->code
;
3548 Lisp_Object position
;
3549 Lisp_Object
*start_pos_ptr
;
3550 Lisp_Object start_pos
;
3552 if (button
< 0 || button
>= NUM_MOUSE_BUTTONS
)
3555 /* Build the position as appropriate for this mouse click. */
3556 if (event
->kind
== mouse_click
)
3559 FRAME_PTR f
= XFRAME (event
->frame_or_window
);
3564 /* Ignore mouse events that were made on frame that
3565 have been deleted. */
3566 if (! FRAME_LIVE_P (f
))
3569 pixel_to_glyph_coords (f
, XINT (event
->x
), XINT (event
->y
),
3570 &column
, &row
, NULL
, 1);
3572 #ifndef USE_X_TOOLKIT
3573 /* In the non-toolkit version, clicks on the menu bar
3574 are ordinary button events in the event buffer.
3575 Distinguish them, and invoke the menu.
3577 (In the toolkit version, the toolkit handles the menu bar
3578 and Emacs doesn't know about it until after the user
3579 makes a selection.) */
3580 if (row
>= 0 && row
< FRAME_MENU_BAR_LINES (f
)
3581 && (event
->modifiers
& down_modifier
))
3583 Lisp_Object items
, item
;
3588 /* Activate the menu bar on the down event. If the
3589 up event comes in before the menu code can deal with it,
3591 if (! (event
->modifiers
& down_modifier
))
3596 items
= FRAME_MENU_BAR_ITEMS (f
);
3597 for (i
= 0; i
< XVECTOR (items
)->size
; i
+= 3)
3599 Lisp_Object pos
, string
;
3600 string
= XVECTOR (items
)->contents
[i
+ 1];
3601 pos
= XVECTOR (items
)->contents
[i
+ 2];
3604 if (column
>= XINT (pos
)
3605 && column
< XINT (pos
) + XSTRING (string
)->size
)
3607 item
= XVECTOR (items
)->contents
[i
];
3613 = Fcons (event
->frame_or_window
,
3615 Fcons (Fcons (event
->x
, event
->y
),
3616 Fcons (make_number (event
->timestamp
),
3619 return Fcons (item
, Fcons (position
, Qnil
));
3621 #endif /* not USE_X_TOOLKIT */
3623 window
= window_from_coordinates (f
, column
, row
, &part
);
3625 if (!WINDOWP (window
))
3627 window
= event
->frame_or_window
;
3632 int pixcolumn
, pixrow
;
3633 column
-= XINT (XWINDOW (window
)->left
);
3634 row
-= XINT (XWINDOW (window
)->top
);
3635 glyph_to_pixel_coords (f
, column
, row
, &pixcolumn
, &pixrow
);
3636 XSETINT (event
->x
, pixcolumn
);
3637 XSETINT (event
->y
, pixrow
);
3642 posn
= Qvertical_line
;
3645 buffer_posn_from_coords (XWINDOW (window
),
3652 Fcons (Fcons (event
->x
, event
->y
),
3653 Fcons (make_number (event
->timestamp
),
3659 Lisp_Object portion_whole
;
3662 window
= event
->frame_or_window
;
3663 portion_whole
= Fcons (event
->x
, event
->y
);
3664 part
= *scroll_bar_parts
[(int) event
->part
];
3668 Fcons (Qvertical_scroll_bar
,
3669 Fcons (portion_whole
,
3670 Fcons (make_number (event
->timestamp
),
3671 Fcons (part
, Qnil
)))));
3674 start_pos_ptr
= &XVECTOR (button_down_location
)->contents
[button
];
3676 start_pos
= *start_pos_ptr
;
3677 *start_pos_ptr
= Qnil
;
3679 is_double
= (button
== last_mouse_button
3680 && XINT (event
->x
) == last_mouse_x
3681 && XINT (event
->y
) == last_mouse_y
3682 && button_down_time
!= 0
3683 && (EQ (Vdouble_click_time
, Qt
)
3684 || (INTEGERP (Vdouble_click_time
)
3685 && ((int)(event
->timestamp
- button_down_time
)
3686 < XINT (Vdouble_click_time
)))));
3687 last_mouse_button
= button
;
3688 last_mouse_x
= XINT (event
->x
);
3689 last_mouse_y
= XINT (event
->y
);
3691 /* If this is a button press, squirrel away the location, so
3692 we can decide later whether it was a click or a drag. */
3693 if (event
->modifiers
& down_modifier
)
3697 double_click_count
++;
3698 event
->modifiers
|= ((double_click_count
> 2)
3703 double_click_count
= 1;
3704 button_down_time
= event
->timestamp
;
3705 *start_pos_ptr
= Fcopy_alist (position
);
3708 /* Now we're releasing a button - check the co-ordinates to
3709 see if this was a click or a drag. */
3710 else if (event
->modifiers
& up_modifier
)
3712 /* If we did not see a down before this up,
3713 ignore the up. Probably this happened because
3714 the down event chose a menu item.
3715 It would be an annoyance to treat the release
3716 of the button that chose the menu item
3717 as a separate event. */
3719 if (!CONSP (start_pos
))
3722 event
->modifiers
&= ~up_modifier
;
3723 #if 0 /* Formerly we treated an up with no down as a click event. */
3724 if (!CONSP (start_pos
))
3725 event
->modifiers
|= click_modifier
;
3729 /* The third element of every position should be the (x,y)
3733 down
= Fnth (make_number (2), start_pos
);
3734 if (EQ (event
->x
, XCONS (down
)->car
)
3735 && EQ (event
->y
, XCONS (down
)->cdr
))
3737 event
->modifiers
|= click_modifier
;
3741 button_down_time
= 0;
3742 event
->modifiers
|= drag_modifier
;
3744 /* Don't check is_double; treat this as multiple
3745 if the down-event was multiple. */
3746 if (double_click_count
> 1)
3747 event
->modifiers
|= ((double_click_count
> 2)
3753 /* Every mouse event should either have the down_modifier or
3754 the up_modifier set. */
3758 /* Get the symbol we should use for the mouse click. */
3761 head
= modify_event_symbol (button
,
3764 lispy_mouse_names
, &mouse_syms
,
3765 (sizeof (lispy_mouse_names
)
3766 / sizeof (lispy_mouse_names
[0])));
3767 if (event
->modifiers
& drag_modifier
)
3772 else if (event
->modifiers
& (double_modifier
| triple_modifier
))
3775 Fcons (make_number (double_click_count
),
3783 #endif /* HAVE_MOUSE */
3785 #if defined (USE_X_TOOLKIT) || defined (HAVE_NTGUI)
3786 case menu_bar_event
:
3787 /* The event value is in the cdr of the frame_or_window slot. */
3788 if (!CONSP (event
->frame_or_window
))
3790 return XCONS (event
->frame_or_window
)->cdr
;
3793 /* The 'kind' field of the event is something we don't recognize. */
3802 make_lispy_movement (frame
, bar_window
, part
, x
, y
, time
)
3804 Lisp_Object bar_window
;
3805 enum scroll_bar_part part
;
3810 /* Is it a scroll bar movement? */
3811 if (frame
&& ! NILP (bar_window
))
3813 Lisp_Object part_sym
;
3815 part_sym
= *scroll_bar_parts
[(int) part
];
3816 return Fcons (Qscroll_bar_movement
,
3817 (Fcons (Fcons (bar_window
,
3818 Fcons (Qvertical_scroll_bar
,
3819 Fcons (Fcons (x
, y
),
3820 Fcons (make_number (time
),
3826 /* Or is it an ordinary mouse movement? */
3828 #endif /* MULTI_FRAME */
3841 /* It's in a frame; which window on that frame? */
3842 pixel_to_glyph_coords (frame
, XINT (x
), XINT (y
), &column
, &row
,
3844 window
= window_from_coordinates (frame
, column
, row
, &area
);
3849 if (WINDOWP (window
))
3851 int pixcolumn
, pixrow
;
3852 column
-= XINT (XWINDOW (window
)->left
);
3853 row
-= XINT (XWINDOW (window
)->top
);
3854 glyph_to_pixel_coords (frame
, column
, row
, &pixcolumn
, &pixrow
);
3855 XSETINT (x
, pixcolumn
);
3856 XSETINT (y
, pixrow
);
3861 posn
= Qvertical_line
;
3864 buffer_posn_from_coords (XWINDOW (window
), column
, row
));
3867 else if (frame
!= 0)
3869 XSETFRAME (window
, frame
);
3881 return Fcons (Qmouse_movement
,
3882 Fcons (Fcons (window
,
3884 Fcons (Fcons (x
, y
),
3885 Fcons (make_number (time
),
3891 #endif /* HAVE_MOUSE */
3893 /* Construct a switch frame event. */
3895 make_lispy_switch_frame (frame
)
3898 return Fcons (Qswitch_frame
, Fcons (frame
, Qnil
));
3901 /* Manipulating modifiers. */
3903 /* Parse the name of SYMBOL, and return the set of modifiers it contains.
3905 If MODIFIER_END is non-zero, set *MODIFIER_END to the position in
3906 SYMBOL's name of the end of the modifiers; the string from this
3907 position is the unmodified symbol name.
3909 This doesn't use any caches. */
3912 parse_modifiers_uncached (symbol
, modifier_end
)
3916 struct Lisp_String
*name
;
3920 CHECK_SYMBOL (symbol
, 1);
3923 name
= XSYMBOL (symbol
)->name
;
3925 for (i
= 0; i
+2 <= name
->size
; )
3927 int this_mod_end
= 0;
3930 /* See if the name continues with a modifier word.
3931 Check that the word appears, but don't check what follows it.
3932 Set this_mod and this_mod_end to record what we find. */
3934 switch (name
->data
[i
])
3936 #define SINGLE_LETTER_MOD(BIT) \
3937 (this_mod_end = i + 1, this_mod = BIT)
3940 SINGLE_LETTER_MOD (alt_modifier
);
3944 SINGLE_LETTER_MOD (ctrl_modifier
);
3948 SINGLE_LETTER_MOD (hyper_modifier
);
3952 SINGLE_LETTER_MOD (meta_modifier
);
3956 SINGLE_LETTER_MOD (shift_modifier
);
3960 SINGLE_LETTER_MOD (super_modifier
);
3963 #undef SINGLE_LETTER_MOD
3966 /* If we found no modifier, stop looking for them. */
3967 if (this_mod_end
== 0)
3970 /* Check there is a dash after the modifier, so that it
3971 really is a modifier. */
3972 if (this_mod_end
>= name
->size
|| name
->data
[this_mod_end
] != '-')
3975 /* This modifier is real; look for another. */
3976 modifiers
|= this_mod
;
3977 i
= this_mod_end
+ 1;
3980 /* Should we include the `click' modifier? */
3981 if (! (modifiers
& (down_modifier
| drag_modifier
3982 | double_modifier
| triple_modifier
))
3983 && i
+ 7 == name
->size
3984 && strncmp (name
->data
+ i
, "mouse-", 6) == 0
3985 && ('0' <= name
->data
[i
+ 6] && name
->data
[i
+ 6] <= '9'))
3986 modifiers
|= click_modifier
;
3994 /* Return a symbol whose name is the modifier prefixes for MODIFIERS
3995 prepended to the string BASE[0..BASE_LEN-1].
3996 This doesn't use any caches. */
3998 apply_modifiers_uncached (modifiers
, base
, base_len
)
4003 /* Since BASE could contain nulls, we can't use intern here; we have
4004 to use Fintern, which expects a genuine Lisp_String, and keeps a
4007 (char *) alloca (sizeof ("A-C-H-M-S-s-down-drag-double-triple-"));
4013 /* Only the event queue may use the `up' modifier; it should always
4014 be turned into a click or drag event before presented to lisp code. */
4015 if (modifiers
& up_modifier
)
4018 if (modifiers
& alt_modifier
) { *p
++ = 'A'; *p
++ = '-'; }
4019 if (modifiers
& ctrl_modifier
) { *p
++ = 'C'; *p
++ = '-'; }
4020 if (modifiers
& hyper_modifier
) { *p
++ = 'H'; *p
++ = '-'; }
4021 if (modifiers
& meta_modifier
) { *p
++ = 'M'; *p
++ = '-'; }
4022 if (modifiers
& shift_modifier
) { *p
++ = 'S'; *p
++ = '-'; }
4023 if (modifiers
& super_modifier
) { *p
++ = 's'; *p
++ = '-'; }
4024 if (modifiers
& double_modifier
) { strcpy (p
, "double-"); p
+= 7; }
4025 if (modifiers
& triple_modifier
) { strcpy (p
, "triple-"); p
+= 7; }
4026 if (modifiers
& down_modifier
) { strcpy (p
, "down-"); p
+= 5; }
4027 if (modifiers
& drag_modifier
) { strcpy (p
, "drag-"); p
+= 5; }
4028 /* The click modifier is denoted by the absence of other modifiers. */
4032 mod_len
= p
- new_mods
;
4036 Lisp_Object new_name
;
4038 new_name
= make_uninit_string (mod_len
+ base_len
);
4039 bcopy (new_mods
, XSTRING (new_name
)->data
, mod_len
);
4040 bcopy (base
, XSTRING (new_name
)->data
+ mod_len
, base_len
);
4042 return Fintern (new_name
, Qnil
);
4047 static char *modifier_names
[] =
4049 "up", "down", "drag", "click", "double", "triple", 0, 0,
4050 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
4051 0, 0, "alt", "super", "hyper", "shift", "control", "meta"
4053 #define NUM_MOD_NAMES (sizeof (modifier_names) / sizeof (modifier_names[0]))
4055 static Lisp_Object modifier_symbols
;
4057 /* Return the list of modifier symbols corresponding to the mask MODIFIERS. */
4059 lispy_modifier_list (modifiers
)
4062 Lisp_Object modifier_list
;
4065 modifier_list
= Qnil
;
4066 for (i
= 0; (1<<i
) <= modifiers
&& i
< NUM_MOD_NAMES
; i
++)
4067 if (modifiers
& (1<<i
))
4068 modifier_list
= Fcons (XVECTOR (modifier_symbols
)->contents
[i
],
4071 return modifier_list
;
4075 /* Parse the modifiers on SYMBOL, and return a list like (UNMODIFIED MASK),
4076 where UNMODIFIED is the unmodified form of SYMBOL,
4077 MASK is the set of modifiers present in SYMBOL's name.
4078 This is similar to parse_modifiers_uncached, but uses the cache in
4079 SYMBOL's Qevent_symbol_element_mask property, and maintains the
4080 Qevent_symbol_elements property. */
4083 parse_modifiers (symbol
)
4086 Lisp_Object elements
;
4088 elements
= Fget (symbol
, Qevent_symbol_element_mask
);
4089 if (CONSP (elements
))
4094 int modifiers
= parse_modifiers_uncached (symbol
, &end
);
4095 Lisp_Object unmodified
;
4098 unmodified
= Fintern (make_string (XSYMBOL (symbol
)->name
->data
+ end
,
4099 XSYMBOL (symbol
)->name
->size
- end
),
4102 if (modifiers
& ~(((EMACS_INT
)1 << VALBITS
) - 1))
4104 XSETFASTINT (mask
, modifiers
);
4105 elements
= Fcons (unmodified
, Fcons (mask
, Qnil
));
4107 /* Cache the parsing results on SYMBOL. */
4108 Fput (symbol
, Qevent_symbol_element_mask
,
4110 Fput (symbol
, Qevent_symbol_elements
,
4111 Fcons (unmodified
, lispy_modifier_list (modifiers
)));
4113 /* Since we know that SYMBOL is modifiers applied to unmodified,
4114 it would be nice to put that in unmodified's cache.
4115 But we can't, since we're not sure that parse_modifiers is
4122 /* Apply the modifiers MODIFIERS to the symbol BASE.
4123 BASE must be unmodified.
4125 This is like apply_modifiers_uncached, but uses BASE's
4126 Qmodifier_cache property, if present. It also builds
4127 Qevent_symbol_elements properties, since it has that info anyway.
4129 apply_modifiers copies the value of BASE's Qevent_kind property to
4130 the modified symbol. */
4132 apply_modifiers (modifiers
, base
)
4136 Lisp_Object cache
, index
, entry
, new_symbol
;
4138 /* Mask out upper bits. We don't know where this value's been. */
4139 modifiers
&= ((EMACS_INT
)1 << VALBITS
) - 1;
4141 /* The click modifier never figures into cache indices. */
4142 cache
= Fget (base
, Qmodifier_cache
);
4143 XSETFASTINT (index
, (modifiers
& ~click_modifier
));
4144 entry
= assq_no_quit (index
, cache
);
4147 new_symbol
= XCONS (entry
)->cdr
;
4150 /* We have to create the symbol ourselves. */
4151 new_symbol
= apply_modifiers_uncached (modifiers
,
4152 XSYMBOL (base
)->name
->data
,
4153 XSYMBOL (base
)->name
->size
);
4155 /* Add the new symbol to the base's cache. */
4156 entry
= Fcons (index
, new_symbol
);
4157 Fput (base
, Qmodifier_cache
, Fcons (entry
, cache
));
4159 /* We have the parsing info now for free, so add it to the caches. */
4160 XSETFASTINT (index
, modifiers
);
4161 Fput (new_symbol
, Qevent_symbol_element_mask
,
4162 Fcons (base
, Fcons (index
, Qnil
)));
4163 Fput (new_symbol
, Qevent_symbol_elements
,
4164 Fcons (base
, lispy_modifier_list (modifiers
)));
4167 /* Make sure this symbol is of the same kind as BASE.
4169 You'd think we could just set this once and for all when we
4170 intern the symbol above, but reorder_modifiers may call us when
4171 BASE's property isn't set right; we can't assume that just
4172 because it has a Qmodifier_cache property it must have its
4173 Qevent_kind set right as well. */
4174 if (NILP (Fget (new_symbol
, Qevent_kind
)))
4178 kind
= Fget (base
, Qevent_kind
);
4180 Fput (new_symbol
, Qevent_kind
, kind
);
4187 /* Given a symbol whose name begins with modifiers ("C-", "M-", etc),
4188 return a symbol with the modifiers placed in the canonical order.
4189 Canonical order is alphabetical, except for down and drag, which
4190 always come last. The 'click' modifier is never written out.
4192 Fdefine_key calls this to make sure that (for example) C-M-foo
4193 and M-C-foo end up being equivalent in the keymap. */
4196 reorder_modifiers (symbol
)
4199 /* It's hopefully okay to write the code this way, since everything
4200 will soon be in caches, and no consing will be done at all. */
4203 parsed
= parse_modifiers (symbol
);
4204 return apply_modifiers ((int) XINT (XCONS (XCONS (parsed
)->cdr
)->car
),
4205 XCONS (parsed
)->car
);
4209 /* For handling events, we often want to produce a symbol whose name
4210 is a series of modifier key prefixes ("M-", "C-", etcetera) attached
4211 to some base, like the name of a function key or mouse button.
4212 modify_event_symbol produces symbols of this sort.
4214 NAME_TABLE should point to an array of strings, such that NAME_TABLE[i]
4215 is the name of the i'th symbol. TABLE_SIZE is the number of elements
4218 Alternatively, NAME_ALIST is an alist mapping codes into symbol names.
4219 NAME_ALIST is used if it is non-nil; otherwise NAME_TABLE is used.
4221 SYMBOL_TABLE should be a pointer to a Lisp_Object whose value will
4222 persist between calls to modify_event_symbol that it can use to
4223 store a cache of the symbols it's generated for this NAME_TABLE
4224 before. The object stored there may be a vector or an alist.
4226 SYMBOL_NUM is the number of the base name we want from NAME_TABLE.
4228 MODIFIERS is a set of modifier bits (as given in struct input_events)
4229 whose prefixes should be applied to the symbol name.
4231 SYMBOL_KIND is the value to be placed in the event_kind property of
4232 the returned symbol.
4234 The symbols we create are supposed to have an
4235 `event-symbol-elements' property, which lists the modifiers present
4236 in the symbol's name. */
4239 modify_event_symbol (symbol_num
, modifiers
, symbol_kind
, name_alist
,
4240 name_table
, symbol_table
, table_size
)
4243 Lisp_Object symbol_kind
;
4244 Lisp_Object name_alist
;
4246 Lisp_Object
*symbol_table
;
4247 unsigned int table_size
;
4250 Lisp_Object symbol_int
;
4252 /* Get rid of the "vendor-specific" bit here. */
4253 XSETINT (symbol_int
, symbol_num
& 0xffffff);
4255 /* Is this a request for a valid symbol? */
4256 if (symbol_num
< 0 || symbol_num
>= table_size
)
4259 if (CONSP (*symbol_table
))
4260 value
= Fcdr (assq_no_quit (symbol_int
, *symbol_table
));
4262 /* If *symbol_table doesn't seem to be initialized properly, fix that.
4263 *symbol_table should be a lisp vector TABLE_SIZE elements long,
4264 where the Nth element is the symbol for NAME_TABLE[N], or nil if
4265 we've never used that symbol before. */
4268 if (! VECTORP (*symbol_table
)
4269 || XVECTOR (*symbol_table
)->size
!= table_size
)
4273 XSETFASTINT (size
, table_size
);
4274 *symbol_table
= Fmake_vector (size
, Qnil
);
4277 value
= XVECTOR (*symbol_table
)->contents
[symbol_num
];
4280 /* Have we already used this symbol before? */
4283 /* No; let's create it. */
4284 if (!NILP (name_alist
))
4285 value
= Fcdr_safe (Fassq (symbol_int
, name_alist
));
4286 else if (name_table
[symbol_num
])
4287 value
= intern (name_table
[symbol_num
]);
4289 #ifdef HAVE_WINDOW_SYSTEM
4292 char *name
= x_get_keysym_name (symbol_num
);
4294 value
= intern (name
);
4301 sprintf (buf
, "key-%d", symbol_num
);
4302 value
= intern (buf
);
4305 if (CONSP (*symbol_table
))
4306 *symbol_table
= Fcons (value
, *symbol_table
);
4308 XVECTOR (*symbol_table
)->contents
[symbol_num
] = value
;
4310 /* Fill in the cache entries for this symbol; this also
4311 builds the Qevent_symbol_elements property, which the user
4313 apply_modifiers (modifiers
& click_modifier
, value
);
4314 Fput (value
, Qevent_kind
, symbol_kind
);
4317 /* Apply modifiers to that symbol. */
4318 return apply_modifiers (modifiers
, value
);
4321 /* Convert a list that represents an event type,
4322 such as (ctrl meta backspace), into the usual representation of that
4323 event type as a number or a symbol. */
4325 DEFUN ("event-convert-list", Fevent_convert_list
, Sevent_convert_list
, 1, 1, 0,
4326 "Convert the event description list EVENT-DESC to an event type.\n\
4327 EVENT-DESC should contain one base event type (a character or symbol)\n\
4328 and zero or more modifier names (control, meta, hyper, super, shift, alt,\n\
4329 drag, down, double or triple).\n\
4330 The return value is an event type (a character or symbol) which\n\
4331 has the same base event type and all the specified modifiers.")
4333 Lisp_Object event_desc
;
4341 while (CONSP (rest
))
4346 elt
= XCONS (rest
)->car
;
4348 /* Given a symbol, see if it is a modifier name. */
4350 this = parse_solitary_modifier (elt
);
4354 else if (!NILP (base
))
4355 error ("Two bases given in one event");
4359 rest
= XCONS (rest
)->cdr
;
4362 /* Let the symbol A refer to the character A. */
4363 if (SYMBOLP (base
) && XSYMBOL (base
)->name
->size
== 1)
4364 XSETINT (base
, XSYMBOL (base
)->name
->data
[0]);
4366 if (INTEGERP (base
))
4368 /* Turn (shift a) into A. */
4369 if ((modifiers
& shift_modifier
) != 0
4370 && (XINT (base
) >= 'a' && XINT (base
) <= 'z'))
4372 XSETINT (base
, XINT (base
) - ('a' - 'A'));
4373 modifiers
&= ~shift_modifier
;
4376 /* Turn (control a) into C-a. */
4377 if (modifiers
& ctrl_modifier
)
4378 return make_number ((modifiers
& ~ctrl_modifier
)
4379 | make_ctrl_char (XINT (base
)));
4381 return make_number (modifiers
| XINT (base
));
4383 else if (SYMBOLP (base
))
4384 return apply_modifiers (modifiers
, base
);
4386 error ("Invalid base event");
4389 /* Try to recognize SYMBOL as a modifier name.
4390 Return the modifier flag bit, or 0 if not recognized. */
4393 parse_solitary_modifier (symbol
)
4396 struct Lisp_String
*name
= XSYMBOL (symbol
)->name
;
4398 switch (name
->data
[0])
4400 #define SINGLE_LETTER_MOD(BIT) \
4401 if (name->size == 1) \
4404 #define MULTI_LETTER_MOD(BIT, NAME, LEN) \
4405 if (LEN == name->size \
4406 && ! strncmp (name->data, NAME, LEN)) \
4410 SINGLE_LETTER_MOD (alt_modifier
);
4414 MULTI_LETTER_MOD (alt_modifier
, "alt", 3);
4418 SINGLE_LETTER_MOD (ctrl_modifier
);
4422 MULTI_LETTER_MOD (ctrl_modifier
, "ctrl", 4);
4423 MULTI_LETTER_MOD (ctrl_modifier
, "control", 7);
4427 SINGLE_LETTER_MOD (hyper_modifier
);
4431 MULTI_LETTER_MOD (hyper_modifier
, "hyper", 5);
4435 SINGLE_LETTER_MOD (meta_modifier
);
4439 MULTI_LETTER_MOD (meta_modifier
, "meta", 4);
4443 SINGLE_LETTER_MOD (shift_modifier
);
4447 MULTI_LETTER_MOD (shift_modifier
, "shift", 5);
4448 MULTI_LETTER_MOD (super_modifier
, "super", 5);
4449 SINGLE_LETTER_MOD (super_modifier
);
4453 MULTI_LETTER_MOD (drag_modifier
, "drag", 4);
4454 MULTI_LETTER_MOD (down_modifier
, "down", 4);
4455 MULTI_LETTER_MOD (double_modifier
, "double", 6);
4459 MULTI_LETTER_MOD (triple_modifier
, "triple", 6);
4462 #undef SINGLE_LETTER_MOD
4463 #undef MULTI_LETTER_MOD
4469 /* Return 1 if EVENT is a list whose elements are all integers or symbols.
4470 Such a list is not valid as an event,
4471 but it can be a Lucid-style event type list. */
4474 lucid_event_type_list_p (object
)
4479 if (! CONSP (object
))
4482 for (tail
= object
; CONSP (tail
); tail
= XCONS (tail
)->cdr
)
4485 elt
= XCONS (tail
)->car
;
4486 if (! (INTEGERP (elt
) || SYMBOLP (elt
)))
4493 /* Store into *addr a value nonzero if terminal input chars are available.
4494 Serves the purpose of ioctl (0, FIONREAD, addr)
4495 but works even if FIONREAD does not exist.
4496 (In fact, this may actually read some input.)
4498 If DO_TIMERS_NOW is nonzero, actually run timer events that are ripe. */
4501 get_input_pending (addr
, do_timers_now
)
4505 /* First of all, have we already counted some input? */
4506 *addr
= !NILP (Vquit_flag
) || readable_events (do_timers_now
);
4508 /* If input is being read as it arrives, and we have none, there is none. */
4509 if (*addr
> 0 || (interrupt_input
&& ! interrupts_deferred
))
4512 /* Try to read some input and see how much we get. */
4514 *addr
= !NILP (Vquit_flag
) || readable_events (do_timers_now
);
4517 /* Interface to read_avail_input, blocking SIGIO or SIGALRM if necessary. */
4520 gobble_input (expected
)
4525 if (interrupt_input
)
4528 mask
= sigblockx (SIGIO
);
4529 read_avail_input (expected
);
4533 #ifdef POLL_FOR_INPUT
4534 if (read_socket_hook
&& !interrupt_input
&& poll_suppress_count
== 0)
4537 mask
= sigblockx (SIGALRM
);
4538 read_avail_input (expected
);
4544 read_avail_input (expected
);
4548 /* Put a buffer_switch_event in the buffer
4549 so that read_key_sequence will notice the new current buffer. */
4551 record_asynch_buffer_change ()
4553 struct input_event event
;
4556 event
.kind
= buffer_switch_event
;
4557 event
.frame_or_window
= Qnil
;
4560 /* We don't need a buffer-switch event unless Emacs is waiting for input.
4561 The purpose of the event is to make read_key_sequence look up the
4562 keymaps again. If we aren't in read_key_sequence, we don't need one,
4563 and the event could cause trouble by messing up (input-pending-p). */
4564 tem
= Fwaiting_for_user_input_p ();
4568 /* We never need these events if we have no asynchronous subprocesses. */
4572 /* Make sure no interrupt happens while storing the event. */
4574 if (interrupt_input
)
4577 mask
= sigblockx (SIGIO
);
4578 kbd_buffer_store_event (&event
);
4585 kbd_buffer_store_event (&event
);
4592 /* Read any terminal input already buffered up by the system
4593 into the kbd_buffer, but do not wait.
4595 EXPECTED should be nonzero if the caller knows there is some input.
4597 Except on VMS, all input is read by this function.
4598 If interrupt_input is nonzero, this function MUST be called
4599 only when SIGIO is blocked.
4601 Returns the number of keyboard chars read, or -1 meaning
4602 this is a bad time to try to read input. */
4605 read_avail_input (expected
)
4608 struct input_event buf
[KBD_BUFFER_SIZE
];
4612 if (read_socket_hook
)
4613 /* No need for FIONREAD or fcntl; just say don't wait. */
4614 nread
= (*read_socket_hook
) (input_fd
, buf
, KBD_BUFFER_SIZE
,
4615 expected
, expected
);
4618 /* Using KBD_BUFFER_SIZE - 1 here avoids reading more than
4619 the kbd_buffer can really hold. That may prevent loss
4620 of characters on some systems when input is stuffed at us. */
4621 unsigned char cbuf
[KBD_BUFFER_SIZE
- 1];
4624 /* Determine how many characters we should *try* to read. */
4627 #else /* not WINDOWSNT */
4629 n_to_read
= dos_keysns ();
4632 #else /* not MSDOS */
4634 /* Find out how much input is available. */
4635 if (ioctl (input_fd
, FIONREAD
, &n_to_read
) < 0)
4636 /* Formerly simply reported no input, but that sometimes led to
4637 a failure of Emacs to terminate.
4638 SIGHUP seems appropriate if we can't reach the terminal. */
4639 /* ??? Is it really right to send the signal just to this process
4640 rather than to the whole process group?
4641 Perhaps on systems with FIONREAD Emacs is alone in its group. */
4642 kill (getpid (), SIGHUP
);
4645 if (n_to_read
> sizeof cbuf
)
4646 n_to_read
= sizeof cbuf
;
4647 #else /* no FIONREAD */
4648 #if defined (USG) || defined (DGUX)
4649 /* Read some input if available, but don't wait. */
4650 n_to_read
= sizeof cbuf
;
4651 fcntl (input_fd
, F_SETFL
, O_NDELAY
);
4656 #endif /* not MSDOS */
4657 #endif /* not WINDOWSNT */
4659 /* Now read; for one reason or another, this will not block.
4660 NREAD is set to the number of chars read. */
4664 cbuf
[0] = dos_keyread ();
4667 nread
= read (input_fd
, cbuf
, n_to_read
);
4669 #if defined (AIX) && (! defined (aix386) && defined (_BSD))
4670 /* The kernel sometimes fails to deliver SIGHUP for ptys.
4671 This looks incorrect, but it isn't, because _BSD causes
4672 O_NDELAY to be defined in fcntl.h as O_NONBLOCK,
4673 and that causes a value other than 0 when there is no input. */
4679 /* We used to retry the read if it was interrupted.
4680 But this does the wrong thing when O_NDELAY causes
4681 an EAGAIN error. Does anybody know of a situation
4682 where a retry is actually needed? */
4684 nread
< 0 && (errno
== EAGAIN
4698 #if defined (USG) || defined (DGUX)
4699 fcntl (input_fd
, F_SETFL
, 0);
4700 #endif /* USG or DGUX */
4701 #endif /* no FIONREAD */
4702 for (i
= 0; i
< nread
; i
++)
4704 buf
[i
].kind
= ascii_keystroke
;
4705 buf
[i
].modifiers
= 0;
4706 if (meta_key
== 1 && (cbuf
[i
] & 0x80))
4707 buf
[i
].modifiers
= meta_modifier
;
4711 buf
[i
].code
= cbuf
[i
];
4713 XSETFRAME (buf
[i
].frame_or_window
, selected_frame
);
4715 buf
[i
].frame_or_window
= Qnil
;
4720 /* Scan the chars for C-g and store them in kbd_buffer. */
4721 for (i
= 0; i
< nread
; i
++)
4723 kbd_buffer_store_event (&buf
[i
]);
4724 /* Don't look at input that follows a C-g too closely.
4725 This reduces lossage due to autorepeat on C-g. */
4726 if (buf
[i
].kind
== ascii_keystroke
4727 && buf
[i
].code
== quit_char
)
4733 #endif /* not VMS */
4735 #ifdef SIGIO /* for entire page */
4736 /* Note SIGIO has been undef'd if FIONREAD is missing. */
4739 input_available_signal (signo
)
4742 /* Must preserve main program's value of errno. */
4743 int old_errno
= errno
;
4745 extern int select_alarmed
;
4749 /* USG systems forget handlers when they are used;
4750 must reestablish each time */
4751 signal (signo
, input_available_signal
);
4758 if (input_available_clear_time
)
4759 EMACS_SET_SECS_USECS (*input_available_clear_time
, 0, 0);
4764 nread
= read_avail_input (1);
4765 /* -1 means it's not ok to read the input now.
4766 UNBLOCK_INPUT will read it later; now, avoid infinite loop.
4767 0 means there was no keyboard input available. */
4772 select_alarmed
= 1; /* Force the select emulator back to life */
4783 /* Send ourselves a SIGIO.
4785 This function exists so that the UNBLOCK_INPUT macro in
4786 blockinput.h can have some way to take care of input we put off
4787 dealing with, without assuming that every file which uses
4788 UNBLOCK_INPUT also has #included the files necessary to get SIGIO. */
4790 reinvoke_input_signal ()
4799 /* Return the prompt-string of a sparse keymap.
4800 This is the first element which is a string.
4801 Return nil if there is none. */
4809 register Lisp_Object tem
;
4818 static void menu_bar_item ();
4819 static void menu_bar_one_keymap ();
4821 /* These variables hold the vector under construction within
4822 menu_bar_items and its subroutines, and the current index
4823 for storing into that vector. */
4824 static Lisp_Object menu_bar_items_vector
;
4825 static int menu_bar_items_index
;
4827 /* Return a vector of menu items for a menu bar, appropriate
4828 to the current buffer. Each item has three elements in the vector:
4831 OLD is an old vector we can optionally reuse, or nil. */
4834 menu_bar_items (old
)
4837 /* The number of keymaps we're scanning right now, and the number of
4838 keymaps we have allocated space for. */
4841 /* maps[0..nmaps-1] are the prefix definitions of KEYBUF[0..t-1]
4842 in the current keymaps, or nil where it is not a prefix. */
4845 Lisp_Object def
, tem
, tail
;
4854 struct gcpro gcpro1
;
4856 /* In order to build the menus, we need to call the keymap
4857 accessors. They all call QUIT. But this function is called
4858 during redisplay, during which a quit is fatal. So inhibit
4859 quitting while building the menus.
4860 We do this instead of specbind because (1) errors will clear it anyway
4861 and (2) this avoids risk of specpdl overflow. */
4862 oquit
= Vinhibit_quit
;
4866 menu_bar_items_vector
= old
;
4868 menu_bar_items_vector
= Fmake_vector (make_number (24), Qnil
);
4869 menu_bar_items_index
= 0;
4871 GCPRO1 (menu_bar_items_vector
);
4873 /* Build our list of keymaps.
4874 If we recognize a function key and replace its escape sequence in
4875 keybuf with its symbol, or if the sequence starts with a mouse
4876 click and we need to switch buffers, we jump back here to rebuild
4877 the initial keymaps from the current buffer. */
4881 /* Should overriding-terminal-local-map and overriding-local-map apply? */
4882 if (!NILP (Voverriding_local_map_menu_flag
))
4884 /* Yes, use them (if non-nil) as well as the global map. */
4885 maps
= (Lisp_Object
*) alloca (3 * sizeof (maps
[0]));
4887 if (!NILP (current_kboard
->Voverriding_terminal_local_map
))
4888 maps
[nmaps
++] = current_kboard
->Voverriding_terminal_local_map
;
4889 if (!NILP (Voverriding_local_map
))
4890 maps
[nmaps
++] = Voverriding_local_map
;
4894 /* No, so use major and minor mode keymaps. */
4895 nmaps
= current_minor_maps (NULL
, &tmaps
);
4896 maps
= (Lisp_Object
*) alloca ((nmaps
+ 2) * sizeof (maps
[0]));
4897 bcopy (tmaps
, maps
, nmaps
* sizeof (maps
[0]));
4898 #ifdef USE_TEXT_PROPERTIES
4899 maps
[nmaps
++] = get_local_map (PT
, current_buffer
);
4901 maps
[nmaps
++] = current_buffer
->keymap
;
4904 maps
[nmaps
++] = current_global_map
;
4907 /* Look up in each map the dummy prefix key `menu-bar'. */
4911 for (mapno
= nmaps
- 1; mapno
>= 0; mapno
--)
4913 if (! NILP (maps
[mapno
]))
4914 def
= get_keyelt (access_keymap (maps
[mapno
], Qmenu_bar
, 1, 0));
4918 tem
= Fkeymapp (def
);
4920 menu_bar_one_keymap (def
);
4923 /* Move to the end those items that should be at the end. */
4925 for (tail
= Vmenu_bar_final_items
; CONSP (tail
); tail
= XCONS (tail
)->cdr
)
4928 int end
= menu_bar_items_index
;
4930 for (i
= 0; i
< end
; i
+= 3)
4931 if (EQ (XCONS (tail
)->car
, XVECTOR (menu_bar_items_vector
)->contents
[i
]))
4933 Lisp_Object tem0
, tem1
, tem2
;
4934 /* Move the item at index I to the end,
4935 shifting all the others forward. */
4936 tem0
= XVECTOR (menu_bar_items_vector
)->contents
[i
+ 0];
4937 tem1
= XVECTOR (menu_bar_items_vector
)->contents
[i
+ 1];
4938 tem2
= XVECTOR (menu_bar_items_vector
)->contents
[i
+ 2];
4940 bcopy (&XVECTOR (menu_bar_items_vector
)->contents
[i
+ 3],
4941 &XVECTOR (menu_bar_items_vector
)->contents
[i
],
4942 (end
- i
- 3) * sizeof (Lisp_Object
));
4943 XVECTOR (menu_bar_items_vector
)->contents
[end
- 3] = tem0
;
4944 XVECTOR (menu_bar_items_vector
)->contents
[end
- 2] = tem1
;
4945 XVECTOR (menu_bar_items_vector
)->contents
[end
- 1] = tem2
;
4950 /* Add nil, nil, nil at the end. */
4951 i
= menu_bar_items_index
;
4952 if (i
+ 3 > XVECTOR (menu_bar_items_vector
)->size
)
4955 int newsize
= 2 * i
;
4956 tem
= Fmake_vector (make_number (2 * i
), Qnil
);
4957 bcopy (XVECTOR (menu_bar_items_vector
)->contents
,
4958 XVECTOR (tem
)->contents
, i
* sizeof (Lisp_Object
));
4959 menu_bar_items_vector
= tem
;
4961 /* Add this item. */
4962 XVECTOR (menu_bar_items_vector
)->contents
[i
++] = Qnil
;
4963 XVECTOR (menu_bar_items_vector
)->contents
[i
++] = Qnil
;
4964 XVECTOR (menu_bar_items_vector
)->contents
[i
++] = Qnil
;
4965 menu_bar_items_index
= i
;
4967 Vinhibit_quit
= oquit
;
4969 return menu_bar_items_vector
;
4972 /* Scan one map KEYMAP, accumulating any menu items it defines
4973 in menu_bar_items_vector. */
4976 menu_bar_one_keymap (keymap
)
4979 Lisp_Object tail
, item
, key
, binding
, item_string
, table
;
4981 /* Loop over all keymap entries that have menu strings. */
4982 for (tail
= keymap
; CONSP (tail
); tail
= XCONS (tail
)->cdr
)
4984 item
= XCONS (tail
)->car
;
4987 key
= XCONS (item
)->car
;
4988 binding
= XCONS (item
)->cdr
;
4989 if (CONSP (binding
))
4991 item_string
= XCONS (binding
)->car
;
4992 if (STRINGP (item_string
))
4993 menu_bar_item (key
, item_string
, Fcdr (binding
));
4995 else if (EQ (binding
, Qundefined
))
4996 menu_bar_item (key
, Qnil
, binding
);
4998 else if (VECTORP (item
))
5000 /* Loop over the char values represented in the vector. */
5001 int len
= XVECTOR (item
)->size
;
5003 for (c
= 0; c
< len
; c
++)
5005 Lisp_Object character
;
5006 XSETFASTINT (character
, c
);
5007 binding
= XVECTOR (item
)->contents
[c
];
5008 if (CONSP (binding
))
5010 item_string
= XCONS (binding
)->car
;
5011 if (STRINGP (item_string
))
5012 menu_bar_item (key
, item_string
, Fcdr (binding
));
5014 else if (EQ (binding
, Qundefined
))
5015 menu_bar_item (key
, Qnil
, binding
);
5021 /* This is used as the handler when calling internal_condition_case_1. */
5024 menu_bar_item_1 (arg
)
5030 /* Add one item to menu_bar_items_vector, for KEY, ITEM_STRING and DEF.
5031 If there's already an item for KEY, add this DEF to it. */
5034 menu_bar_item (key
, item_string
, def
)
5035 Lisp_Object key
, item_string
, def
;
5038 Lisp_Object enabled
;
5041 if (EQ (def
, Qundefined
))
5043 /* If a map has an explicit `undefined' as definition,
5044 discard any previously made menu bar item. */
5046 for (i
= 0; i
< menu_bar_items_index
; i
+= 3)
5047 if (EQ (key
, XVECTOR (menu_bar_items_vector
)->contents
[i
]))
5049 if (menu_bar_items_index
> i
+ 3)
5050 bcopy (&XVECTOR (menu_bar_items_vector
)->contents
[i
+ 3],
5051 &XVECTOR (menu_bar_items_vector
)->contents
[i
],
5052 (menu_bar_items_index
- i
- 3) * sizeof (Lisp_Object
));
5053 menu_bar_items_index
-= 3;
5057 /* If there's no definition for this key yet,
5058 just ignore `undefined'. */
5062 /* See if this entry is enabled. */
5067 /* No property, or nil, means enable.
5068 Otherwise, enable if value is not nil. */
5069 tem
= Fget (def
, Qmenu_enable
);
5071 /* (condition-case nil (eval tem)
5073 enabled
= internal_condition_case_1 (Feval
, tem
, Qerror
,
5077 /* Ignore this item if it's not enabled. */
5081 /* Find any existing item for this KEY. */
5082 for (i
= 0; i
< menu_bar_items_index
; i
+= 3)
5083 if (EQ (key
, XVECTOR (menu_bar_items_vector
)->contents
[i
]))
5086 /* If we did not find this KEY, add it at the end. */
5087 if (i
== menu_bar_items_index
)
5089 /* If vector is too small, get a bigger one. */
5090 if (i
+ 3 > XVECTOR (menu_bar_items_vector
)->size
)
5093 int newsize
= 2 * i
;
5094 tem
= Fmake_vector (make_number (2 * i
), Qnil
);
5095 bcopy (XVECTOR (menu_bar_items_vector
)->contents
,
5096 XVECTOR (tem
)->contents
, i
* sizeof (Lisp_Object
));
5097 menu_bar_items_vector
= tem
;
5099 /* Add this item. */
5100 XVECTOR (menu_bar_items_vector
)->contents
[i
++] = key
;
5101 XVECTOR (menu_bar_items_vector
)->contents
[i
++] = item_string
;
5102 XVECTOR (menu_bar_items_vector
)->contents
[i
++] = Fcons (def
, Qnil
);
5103 menu_bar_items_index
= i
;
5105 /* We did find an item for this KEY. Add DEF to its list of maps. */
5109 old
= XVECTOR (menu_bar_items_vector
)->contents
[i
+ 2];
5110 XVECTOR (menu_bar_items_vector
)->contents
[i
+ 2] = Fcons (def
, old
);
5114 /* Read a character using menus based on maps in the array MAPS.
5115 NMAPS is the length of MAPS. Return nil if there are no menus in the maps.
5116 Return t if we displayed a menu but the user rejected it.
5118 PREV_EVENT is the previous input event, or nil if we are reading
5119 the first event of a key sequence.
5121 If USED_MOUSE_MENU is non-null, then we set *USED_MOUSE_MENU to 1
5122 if we used a mouse menu to read the input, or zero otherwise. If
5123 USED_MOUSE_MENU is null, we don't dereference it.
5125 The prompting is done based on the prompt-string of the map
5126 and the strings associated with various map elements.
5128 This can be done with X menus or with menus put in the minibuf.
5129 These are done in different ways, depending on how the input will be read.
5130 Menus using X are done after auto-saving in read-char, getting the input
5131 event from Fx_popup_menu; menus using the minibuf use read_char recursively
5132 and do auto-saving in the inner call of read_char. */
5135 read_char_x_menu_prompt (nmaps
, maps
, prev_event
, used_mouse_menu
)
5138 Lisp_Object prev_event
;
5139 int *used_mouse_menu
;
5142 register Lisp_Object name
;
5143 Lisp_Object rest
, vector
;
5145 if (used_mouse_menu
)
5146 *used_mouse_menu
= 0;
5148 /* Use local over global Menu maps */
5150 if (! menu_prompting
)
5153 /* Optionally disregard all but the global map. */
5154 if (inhibit_local_menu_bar_menus
)
5156 maps
+= (nmaps
- 1);
5160 /* Get the menu name from the first map that has one (a prompt string). */
5161 for (mapno
= 0; mapno
< nmaps
; mapno
++)
5163 name
= map_prompt (maps
[mapno
]);
5168 /* If we don't have any menus, just read a character normally. */
5173 /* If we got to this point via a mouse click,
5174 use a real menu for mouse selection. */
5175 if (EVENT_HAS_PARAMETERS (prev_event
)
5176 && !EQ (XCONS (prev_event
)->car
, Qmenu_bar
))
5178 /* Display the menu and get the selection. */
5179 Lisp_Object
*realmaps
5180 = (Lisp_Object
*) alloca (nmaps
* sizeof (Lisp_Object
));
5184 /* Use the maps that are not nil. */
5185 for (mapno
= 0; mapno
< nmaps
; mapno
++)
5186 if (!NILP (maps
[mapno
]))
5187 realmaps
[nmaps1
++] = maps
[mapno
];
5189 value
= Fx_popup_menu (prev_event
, Flist (nmaps1
, realmaps
));
5194 /* If we got multiple events, unread all but
5196 There is no way to prevent those unread events
5197 from showing up later in last_nonmenu_event.
5198 So turn symbol and integer events into lists,
5199 to indicate that they came from a mouse menu,
5200 so that when present in last_nonmenu_event
5201 they won't confuse things. */
5202 for (tem
= XCONS (value
)->cdr
; !NILP (tem
);
5203 tem
= XCONS (tem
)->cdr
)
5204 if (SYMBOLP (XCONS (tem
)->car
)
5205 || INTEGERP (XCONS (tem
)->car
))
5207 = Fcons (XCONS (tem
)->car
, Qnil
);
5209 /* If we got more than one event, put all but the first
5210 onto this list to be read later.
5211 Return just the first event now. */
5212 Vunread_command_events
5213 = nconc2 (XCONS (value
)->cdr
, Vunread_command_events
);
5214 value
= XCONS (value
)->car
;
5216 else if (NILP (value
))
5218 if (used_mouse_menu
)
5219 *used_mouse_menu
= 1;
5222 #endif /* HAVE_MENUS */
5226 /* Buffer in use so far for the minibuf prompts for menu keymaps.
5227 We make this bigger when necessary, and never free it. */
5228 static char *read_char_minibuf_menu_text
;
5229 /* Size of that buffer. */
5230 static int read_char_minibuf_menu_width
;
5233 read_char_minibuf_menu_prompt (commandflag
, nmaps
, maps
)
5239 register Lisp_Object name
;
5241 int width
= FRAME_WIDTH (selected_frame
) - 4;
5244 Lisp_Object rest
, vector
;
5247 if (! menu_prompting
)
5250 /* Make sure we have a big enough buffer for the menu text. */
5251 if (read_char_minibuf_menu_text
== 0)
5253 read_char_minibuf_menu_width
= width
+ 4;
5254 read_char_minibuf_menu_text
= (char *) xmalloc (width
+ 4);
5256 else if (width
+ 4 > read_char_minibuf_menu_width
)
5258 read_char_minibuf_menu_width
= width
+ 4;
5259 read_char_minibuf_menu_text
5260 = (char *) xrealloc (read_char_minibuf_menu_text
, width
+ 4);
5262 menu
= read_char_minibuf_menu_text
;
5264 /* Get the menu name from the first map that has one (a prompt string). */
5265 for (mapno
= 0; mapno
< nmaps
; mapno
++)
5267 name
= map_prompt (maps
[mapno
]);
5272 /* If we don't have any menus, just read a character normally. */
5276 /* Prompt string always starts with map's prompt, and a space. */
5277 strcpy (menu
, XSTRING (name
)->data
);
5278 nlength
= XSTRING (name
)->size
;
5279 menu
[nlength
++] = ':';
5280 menu
[nlength
++] = ' ';
5283 /* Start prompting at start of first map. */
5287 /* Present the documented bindings, a line at a time. */
5294 Lisp_Object orig_defn_macro
;
5296 /* Loop over elements of map. */
5301 /* If reached end of map, start at beginning of next map. */
5305 /* At end of last map, wrap around to first map if just starting,
5306 or end this line if already have something on it. */
5310 if (notfirst
|| nobindings
) break;
5315 /* Look at the next element of the map. */
5317 elt
= XVECTOR (vector
)->contents
[idx
];
5319 elt
= Fcar_safe (rest
);
5321 if (idx
< 0 && VECTORP (elt
))
5323 /* If we found a dense table in the keymap,
5324 advanced past it, but start scanning its contents. */
5325 rest
= Fcdr_safe (rest
);
5331 /* An ordinary element. */
5336 s
= Fcar_safe (Fcdr_safe (elt
)); /* alist */
5337 event
= Fcar_safe (elt
);
5341 s
= Fcar_safe (elt
); /* vector */
5342 XSETINT (event
, idx
);
5345 /* Ignore the element if it has no prompt string. */
5346 if (STRINGP (s
) && INTEGERP (event
))
5348 /* 1 if the char to type matches the string. */
5350 Lisp_Object upcased_event
, downcased_event
;
5353 upcased_event
= Fupcase (event
);
5354 downcased_event
= Fdowncase (event
);
5355 char_matches
= (XINT (upcased_event
) == XSTRING (s
)->data
[0]
5356 || XINT (downcased_event
) == XSTRING (s
)->data
[0]);
5358 desc
= Fsingle_key_description (event
);
5360 /* If we have room for the prompt string, add it to this line.
5361 If this is the first on the line, always add it. */
5362 if ((XSTRING (s
)->size
+ i
+ 2
5363 + (char_matches
? 0 : XSTRING (desc
)->size
+ 3))
5369 /* Punctuate between strings. */
5372 strcpy (menu
+ i
, ", ");
5378 /* If the char to type doesn't match the string's
5379 first char, explicitly show what char to type. */
5382 /* Add as much of string as fits. */
5383 thiswidth
= XSTRING (desc
)->size
;
5384 if (thiswidth
+ i
> width
)
5385 thiswidth
= width
- i
;
5386 bcopy (XSTRING (desc
)->data
, menu
+ i
, thiswidth
);
5388 strcpy (menu
+ i
, " = ");
5392 /* Add as much of string as fits. */
5393 thiswidth
= XSTRING (s
)->size
;
5394 if (thiswidth
+ i
> width
)
5395 thiswidth
= width
- i
;
5396 bcopy (XSTRING (s
)->data
, menu
+ i
, thiswidth
);
5402 /* If this element does not fit, end the line now,
5403 and save the element for the next line. */
5404 strcpy (menu
+ i
, "...");
5409 /* Move past this element. */
5410 if (idx
>= 0 && idx
+ 1 >= XVECTOR (vector
)->size
)
5411 /* Handle reaching end of dense table. */
5416 rest
= Fcdr_safe (rest
);
5420 /* Prompt with that and read response. */
5423 /* Make believe its not a keyboard macro in case the help char
5424 is pressed. Help characters are not recorded because menu prompting
5425 is not used on replay.
5427 orig_defn_macro
= current_kboard
->defining_kbd_macro
;
5428 current_kboard
->defining_kbd_macro
= Qnil
;
5430 obj
= read_char (commandflag
, 0, 0, Qnil
, 0);
5431 while (BUFFERP (obj
));
5432 current_kboard
->defining_kbd_macro
= orig_defn_macro
;
5434 if (!INTEGERP (obj
))
5439 if (! EQ (obj
, menu_prompt_more_char
)
5440 && (!INTEGERP (menu_prompt_more_char
)
5441 || ! EQ (obj
, make_number (Ctl (XINT (menu_prompt_more_char
))))))
5443 if (!NILP (current_kboard
->defining_kbd_macro
))
5444 store_kbd_macro_char (obj
);
5447 /* Help char - go round again */
5451 /* Reading key sequences. */
5453 /* Follow KEY in the maps in CURRENT[0..NMAPS-1], placing its bindings
5454 in DEFS[0..NMAPS-1]. Set NEXT[i] to DEFS[i] if DEFS[i] is a
5455 keymap, or nil otherwise. Return the index of the first keymap in
5456 which KEY has any binding, or NMAPS if no map has a binding.
5458 If KEY is a meta ASCII character, treat it like meta-prefix-char
5459 followed by the corresponding non-meta character. Keymaps in
5460 CURRENT with non-prefix bindings for meta-prefix-char become nil in
5463 If KEY has no bindings in any of the CURRENT maps, NEXT is left
5466 NEXT may be the same array as CURRENT. */
5469 follow_key (key
, nmaps
, current
, defs
, next
)
5471 Lisp_Object
*current
, *defs
, *next
;
5474 int i
, first_binding
;
5477 /* If KEY is a meta ASCII character, treat it like meta-prefix-char
5478 followed by the corresponding non-meta character.
5479 Put the results into DEFS, since we are going to alter that anyway.
5480 Do not alter CURRENT or NEXT. */
5481 if (INTEGERP (key
) && (XINT (key
) & CHAR_META
))
5483 for (i
= 0; i
< nmaps
; i
++)
5484 if (! NILP (current
[i
]))
5487 def
= get_keyelt (access_keymap (current
[i
],
5488 meta_prefix_char
, 1, 0));
5490 /* Note that since we pass the resulting bindings through
5491 get_keymap_1, non-prefix bindings for meta-prefix-char
5493 defs
[i
] = get_keymap_1 (def
, 0, 1);
5499 XSETINT (key
, XFASTINT (key
) & ~CHAR_META
);
5502 first_binding
= nmaps
;
5503 for (i
= nmaps
- 1; i
>= 0; i
--)
5505 if (! NILP (current
[i
]))
5513 defs
[i
] = get_keyelt (access_keymap (map
, key
, 1, 0));
5514 if (! NILP (defs
[i
]))
5521 /* Given the set of bindings we've found, produce the next set of maps. */
5522 if (first_binding
< nmaps
)
5523 for (i
= 0; i
< nmaps
; i
++)
5524 next
[i
] = NILP (defs
[i
]) ? Qnil
: get_keymap_1 (defs
[i
], 0, 1);
5526 return first_binding
;
5529 /* Read a sequence of keys that ends with a non prefix character,
5530 storing it in KEYBUF, a buffer of size BUFSIZE.
5532 Return the length of the key sequence stored.
5533 Return -1 if the user rejected a command menu.
5535 Echo starting immediately unless `prompt' is 0.
5537 Where a key sequence ends depends on the currently active keymaps.
5538 These include any minor mode keymaps active in the current buffer,
5539 the current buffer's local map, and the global map.
5541 If a key sequence has no other bindings, we check Vfunction_key_map
5542 to see if some trailing subsequence might be the beginning of a
5543 function key's sequence. If so, we try to read the whole function
5544 key, and substitute its symbolic name into the key sequence.
5546 We ignore unbound `down-' mouse clicks. We turn unbound `drag-' and
5547 `double-' events into similar click events, if that would make them
5548 bound. We try to turn `triple-' events first into `double-' events,
5551 If we get a mouse click in a mode line, vertical divider, or other
5552 non-text area, we treat the click as if it were prefixed by the
5553 symbol denoting that area - `mode-line', `vertical-line', or
5556 If the sequence starts with a mouse click, we read the key sequence
5557 with respect to the buffer clicked on, not the current buffer.
5559 If the user switches frames in the midst of a key sequence, we put
5560 off the switch-frame event until later; the next call to
5561 read_char will return it. */
5564 read_key_sequence (keybuf
, bufsize
, prompt
, dont_downcase_last
,
5565 can_return_switch_frame
)
5566 Lisp_Object
*keybuf
;
5569 int dont_downcase_last
;
5570 int can_return_switch_frame
;
5572 int count
= specpdl_ptr
- specpdl
;
5574 /* How many keys there are in the current key sequence. */
5577 /* The length of the echo buffer when we started reading, and
5578 the length of this_command_keys when we started reading. */
5582 /* The number of keymaps we're scanning right now, and the number of
5583 keymaps we have allocated space for. */
5585 int nmaps_allocated
= 0;
5587 /* defs[0..nmaps-1] are the definitions of KEYBUF[0..t-1] in
5588 the current keymaps. */
5591 /* submaps[0..nmaps-1] are the prefix definitions of KEYBUF[0..t-1]
5592 in the current keymaps, or nil where it is not a prefix. */
5593 Lisp_Object
*submaps
;
5595 /* The local map to start out with at start of key sequence. */
5596 Lisp_Object orig_local_map
;
5598 /* 1 if we have already considered switching to the local-map property
5599 of the place where a mouse click occurred. */
5600 int localized_local_map
= 0;
5602 /* The index in defs[] of the first keymap that has a binding for
5603 this key sequence. In other words, the lowest i such that
5604 defs[i] is non-nil. */
5607 /* If t < mock_input, then KEYBUF[t] should be read as the next
5610 We use this to recover after recognizing a function key. Once we
5611 realize that a suffix of the current key sequence is actually a
5612 function key's escape sequence, we replace the suffix with the
5613 function key's binding from Vfunction_key_map. Now keybuf
5614 contains a new and different key sequence, so the echo area,
5615 this_command_keys, and the submaps and defs arrays are wrong. In
5616 this situation, we set mock_input to t, set t to 0, and jump to
5617 restart_sequence; the loop will read keys from keybuf up until
5618 mock_input, thus rebuilding the state; and then it will resume
5619 reading characters from the keyboard. */
5622 /* If the sequence is unbound in submaps[], then
5623 keybuf[fkey_start..fkey_end-1] is a prefix in Vfunction_key_map,
5624 and fkey_map is its binding.
5626 These might be > t, indicating that all function key scanning
5627 should hold off until t reaches them. We do this when we've just
5628 recognized a function key, to avoid searching for the function
5629 key's again in Vfunction_key_map. */
5630 int fkey_start
= 0, fkey_end
= 0;
5631 Lisp_Object fkey_map
;
5633 /* Likewise, for key_translation_map. */
5634 int keytran_start
= 0, keytran_end
= 0;
5635 Lisp_Object keytran_map
;
5637 /* If we receive a ``switch-frame'' event in the middle of a key sequence,
5638 we put it off for later. While we're reading, we keep the event here. */
5639 Lisp_Object delayed_switch_frame
;
5641 /* See the comment below... */
5642 #if defined (GOBBLE_FIRST_EVENT)
5643 Lisp_Object first_event
;
5646 Lisp_Object original_uppercase
;
5647 int original_uppercase_position
= -1;
5649 /* Gets around Microsoft compiler limitations. */
5652 struct buffer
*starting_buffer
;
5654 /* Nonzero if we seem to have got the beginning of a binding
5655 in function_key_map. */
5656 int function_key_possible
= 0;
5657 int key_translation_possible
= 0;
5659 /* Save the status of key translation before each step,
5660 so that we can restore this after downcasing. */
5661 Lisp_Object prev_fkey_map
;
5662 Lisp_Object prev_fkey_start
;
5663 Lisp_Object prev_fkey_end
;
5665 Lisp_Object prev_keytran_map
;
5666 Lisp_Object prev_keytran_start
;
5667 Lisp_Object prev_keytran_end
;
5671 last_nonmenu_event
= Qnil
;
5673 delayed_switch_frame
= Qnil
;
5674 fkey_map
= Vfunction_key_map
;
5675 keytran_map
= Vkey_translation_map
;
5677 /* If there is no function-key-map, turn off function key scanning. */
5678 if (NILP (Fkeymapp (Vfunction_key_map
)))
5679 fkey_start
= fkey_end
= bufsize
+ 1;
5681 /* If there is no key-translation-map, turn off scanning. */
5682 if (NILP (Fkeymapp (Vkey_translation_map
)))
5683 keytran_start
= keytran_end
= bufsize
+ 1;
5688 echo_prompt (XSTRING (prompt
)->data
);
5689 else if (cursor_in_echo_area
&& echo_keystrokes
)
5690 /* This doesn't put in a dash if the echo buffer is empty, so
5691 you don't always see a dash hanging out in the minibuffer. */
5695 /* Record the initial state of the echo area and this_command_keys;
5696 we will need to restore them if we replay a key sequence. */
5698 echo_start
= echo_length ();
5699 keys_start
= this_command_key_count
;
5701 #if defined (GOBBLE_FIRST_EVENT)
5702 /* This doesn't quite work, because some of the things that read_char
5703 does cannot safely be bypassed. It seems too risky to try to make
5706 /* Read the first char of the sequence specially, before setting
5707 up any keymaps, in case a filter runs and switches buffers on us. */
5708 first_event
= read_char (NILP (prompt
), 0, submaps
, last_nonmenu_event
,
5710 #endif /* GOBBLE_FIRST_EVENT */
5712 orig_local_map
= get_local_map (PT
, current_buffer
);
5714 /* We jump here when the key sequence has been thoroughly changed, and
5715 we need to rescan it starting from the beginning. When we jump here,
5716 keybuf[0..mock_input] holds the sequence we should reread. */
5719 starting_buffer
= current_buffer
;
5720 function_key_possible
= 0;
5721 key_translation_possible
= 0;
5723 /* Build our list of keymaps.
5724 If we recognize a function key and replace its escape sequence in
5725 keybuf with its symbol, or if the sequence starts with a mouse
5726 click and we need to switch buffers, we jump back here to rebuild
5727 the initial keymaps from the current buffer. */
5731 if (!NILP (current_kboard
->Voverriding_terminal_local_map
)
5732 || !NILP (Voverriding_local_map
))
5734 if (3 > nmaps_allocated
)
5736 submaps
= (Lisp_Object
*) alloca (3 * sizeof (submaps
[0]));
5737 defs
= (Lisp_Object
*) alloca (3 * sizeof (defs
[0]));
5738 nmaps_allocated
= 3;
5741 if (!NILP (current_kboard
->Voverriding_terminal_local_map
))
5742 submaps
[nmaps
++] = current_kboard
->Voverriding_terminal_local_map
;
5743 if (!NILP (Voverriding_local_map
))
5744 submaps
[nmaps
++] = Voverriding_local_map
;
5748 nmaps
= current_minor_maps (0, &maps
);
5749 if (nmaps
+ 2 > nmaps_allocated
)
5751 submaps
= (Lisp_Object
*) alloca ((nmaps
+2) * sizeof (submaps
[0]));
5752 defs
= (Lisp_Object
*) alloca ((nmaps
+2) * sizeof (defs
[0]));
5753 nmaps_allocated
= nmaps
+ 2;
5755 bcopy (maps
, submaps
, nmaps
* sizeof (submaps
[0]));
5756 #ifdef USE_TEXT_PROPERTIES
5757 submaps
[nmaps
++] = orig_local_map
;
5759 submaps
[nmaps
++] = current_buffer
->keymap
;
5762 submaps
[nmaps
++] = current_global_map
;
5765 /* Find an accurate initial value for first_binding. */
5766 for (first_binding
= 0; first_binding
< nmaps
; first_binding
++)
5767 if (! NILP (submaps
[first_binding
]))
5770 /* Start from the beginning in keybuf. */
5773 /* These are no-ops the first time through, but if we restart, they
5774 revert the echo area and this_command_keys to their original state. */
5775 this_command_key_count
= keys_start
;
5776 if (INTERACTIVE
&& t
< mock_input
)
5777 echo_truncate (echo_start
);
5779 /* If the best binding for the current key sequence is a keymap, or
5780 we may be looking at a function key's escape sequence, keep on
5782 while ((first_binding
< nmaps
&& ! NILP (submaps
[first_binding
]))
5783 || (first_binding
>= nmaps
5785 /* mock input is never part of a function key's sequence. */
5786 && mock_input
<= fkey_start
)
5787 || (first_binding
>= nmaps
5788 && keytran_start
< t
&& key_translation_possible
)
5789 /* Don't return in the middle of a possible function key sequence,
5790 if the only bindings we found were via case conversion.
5791 Thus, if ESC O a has a function-key-map translation
5792 and ESC o has a binding, don't return after ESC O,
5793 so that we can translate ESC O plus the next character. */
5797 int used_mouse_menu
= 0;
5799 /* Where the last real key started. If we need to throw away a
5800 key that has expanded into more than one element of keybuf
5801 (say, a mouse click on the mode line which is being treated
5802 as [mode-line (mouse-...)], then we backtrack to this point
5804 int last_real_key_start
;
5806 /* These variables are analogous to echo_start and keys_start;
5807 while those allow us to restart the entire key sequence,
5808 echo_local_start and keys_local_start allow us to throw away
5810 int echo_local_start
, keys_local_start
, local_first_binding
;
5813 error ("Key sequence too long");
5816 echo_local_start
= echo_length ();
5817 keys_local_start
= this_command_key_count
;
5818 local_first_binding
= first_binding
;
5821 /* These are no-ops, unless we throw away a keystroke below and
5822 jumped back up to replay_key; in that case, these restore the
5823 variables to their original state, allowing us to replay the
5825 if (INTERACTIVE
&& t
< mock_input
)
5826 echo_truncate (echo_local_start
);
5827 this_command_key_count
= keys_local_start
;
5828 first_binding
= local_first_binding
;
5830 /* By default, assume each event is "real". */
5831 last_real_key_start
= t
;
5833 /* Does mock_input indicate that we are re-reading a key sequence? */
5837 add_command_key (key
);
5838 if (echo_keystrokes
)
5842 /* If not, we should actually read a character. */
5845 struct buffer
*buf
= current_buffer
;
5849 KBOARD
*interrupted_kboard
= current_kboard
;
5850 struct frame
*interrupted_frame
= selected_frame
;
5851 if (setjmp (wrong_kboard_jmpbuf
))
5853 if (!NILP (delayed_switch_frame
))
5855 interrupted_kboard
->kbd_queue
5856 = Fcons (delayed_switch_frame
,
5857 interrupted_kboard
->kbd_queue
);
5858 delayed_switch_frame
= Qnil
;
5861 interrupted_kboard
->kbd_queue
5862 = Fcons (keybuf
[--t
], interrupted_kboard
->kbd_queue
);
5864 /* If the side queue is non-empty, ensure it begins with a
5865 switch-frame, so we'll replay it in the right context. */
5866 if (CONSP (interrupted_kboard
->kbd_queue
)
5867 && (key
= XCONS (interrupted_kboard
->kbd_queue
)->car
,
5868 !(EVENT_HAS_PARAMETERS (key
)
5869 && EQ (EVENT_HEAD_KIND (EVENT_HEAD (key
)),
5873 XSETFRAME (frame
, interrupted_frame
);
5874 interrupted_kboard
->kbd_queue
5875 = Fcons (make_lispy_switch_frame (frame
),
5876 interrupted_kboard
->kbd_queue
);
5879 orig_local_map
= get_local_map (PT
, current_buffer
);
5880 goto replay_sequence
;
5883 key
= read_char (NILP (prompt
), nmaps
, submaps
, last_nonmenu_event
,
5887 /* read_char returns t when it shows a menu and the user rejects it.
5892 /* read_char returns -1 at the end of a macro.
5893 Emacs 18 handles this by returning immediately with a
5894 zero, so that's what we'll do. */
5895 if (INTEGERP (key
) && XINT (key
) == -1)
5898 /* The Microsoft C compiler can't handle the goto that
5904 /* If the current buffer has been changed from under us, the
5905 keymap may have changed, so replay the sequence. */
5909 orig_local_map
= get_local_map (PT
, current_buffer
);
5910 goto replay_sequence
;
5913 /* If we have a quit that was typed in another frame, and
5914 quit_throw_to_read_char switched buffers,
5915 replay to get the right keymap. */
5916 if (XINT (key
) == quit_char
&& current_buffer
!= starting_buffer
)
5921 orig_local_map
= get_local_map (PT
, current_buffer
);
5922 goto replay_sequence
;
5928 /* Clicks in non-text areas get prefixed by the symbol
5929 in their CHAR-ADDRESS field. For example, a click on
5930 the mode line is prefixed by the symbol `mode-line'.
5932 Furthermore, key sequences beginning with mouse clicks
5933 are read using the keymaps of the buffer clicked on, not
5934 the current buffer. So we may have to switch the buffer
5937 When we turn one event into two events, we must make sure
5938 that neither of the two looks like the original--so that,
5939 if we replay the events, they won't be expanded again.
5940 If not for this, such reexpansion could happen either here
5941 or when user programs play with this-command-keys. */
5942 if (EVENT_HAS_PARAMETERS (key
))
5946 kind
= EVENT_HEAD_KIND (EVENT_HEAD (key
));
5947 if (EQ (kind
, Qmouse_click
))
5949 Lisp_Object window
, posn
;
5951 window
= POSN_WINDOW (EVENT_START (key
));
5952 posn
= POSN_BUFFER_POSN (EVENT_START (key
));
5955 /* We're looking at the second event of a
5956 sequence which we expanded before. Set
5957 last_real_key_start appropriately. */
5959 last_real_key_start
= t
- 1;
5962 /* Key sequences beginning with mouse clicks are
5963 read using the keymaps in the buffer clicked on,
5964 not the current buffer. If we're at the
5965 beginning of a key sequence, switch buffers. */
5966 if (last_real_key_start
== 0
5968 && BUFFERP (XWINDOW (window
)->buffer
)
5969 && XBUFFER (XWINDOW (window
)->buffer
) != current_buffer
)
5974 /* Arrange to go back to the original buffer once we're
5975 done reading the key sequence. Note that we can't
5976 use save_excursion_{save,restore} here, because they
5977 save point as well as the current buffer; we don't
5978 want to save point, because redisplay may change it,
5979 to accommodate a Fset_window_start or something. We
5980 don't want to do this at the top of the function,
5981 because we may get input from a subprocess which
5982 wants to change the selected window and stuff (say,
5984 record_unwind_protect (Fset_buffer
, Fcurrent_buffer ());
5986 set_buffer_internal (XBUFFER (XWINDOW (window
)->buffer
));
5987 orig_local_map
= get_local_map (PT
, current_buffer
);
5988 goto replay_sequence
;
5990 /* For a mouse click, get the local text-property keymap
5991 of the place clicked on, rather than point. */
5992 if (last_real_key_start
== 0 && CONSP (XCONS (key
)->cdr
)
5993 && ! localized_local_map
)
5995 Lisp_Object map_here
, start
, pos
;
5997 localized_local_map
= 1;
5998 start
= EVENT_START (key
);
5999 if (CONSP (start
) && CONSP (XCONS (start
)->cdr
))
6001 pos
= POSN_BUFFER_POSN (start
);
6003 && XINT (pos
) >= BEG
&& XINT (pos
) <= Z
)
6005 map_here
= get_local_map (XINT (pos
), current_buffer
);
6006 if (!EQ (map_here
, orig_local_map
))
6008 orig_local_map
= map_here
;
6012 goto replay_sequence
;
6018 /* Expand mode-line and scroll-bar events into two events:
6019 use posn as a fake prefix key. */
6022 if (t
+ 1 >= bufsize
)
6023 error ("Key sequence too long");
6028 /* Zap the position in key, so we know that we've
6029 expanded it, and don't try to do so again. */
6030 POSN_BUFFER_POSN (EVENT_START (key
))
6031 = Fcons (posn
, Qnil
);
6035 else if (EQ (kind
, Qswitch_frame
))
6037 /* If we're at the beginning of a key sequence, and the caller
6038 says it's okay, go ahead and return this event. If we're
6039 in the midst of a key sequence, delay it until the end. */
6040 if (t
> 0 || !can_return_switch_frame
)
6042 delayed_switch_frame
= key
;
6046 else if (CONSP (XCONS (key
)->cdr
)
6047 && CONSP (EVENT_START (key
))
6048 && CONSP (XCONS (EVENT_START (key
))->cdr
))
6052 posn
= POSN_BUFFER_POSN (EVENT_START (key
));
6053 /* Handle menu-bar events:
6054 insert the dummy prefix event `menu-bar'. */
6055 if (EQ (posn
, Qmenu_bar
))
6057 if (t
+ 1 >= bufsize
)
6058 error ("Key sequence too long");
6062 /* Zap the position in key, so we know that we've
6063 expanded it, and don't try to do so again. */
6064 POSN_BUFFER_POSN (EVENT_START (key
))
6065 = Fcons (posn
, Qnil
);
6068 goto replay_sequence
;
6070 else if (CONSP (posn
))
6072 /* We're looking at the second event of a
6073 sequence which we expanded before. Set
6074 last_real_key_start appropriately. */
6075 if (last_real_key_start
== t
&& t
> 0)
6076 last_real_key_start
= t
- 1;
6081 /* We have finally decided that KEY is something we might want
6083 first_binding
= (follow_key (key
,
6084 nmaps
- first_binding
,
6085 submaps
+ first_binding
,
6086 defs
+ first_binding
,
6087 submaps
+ first_binding
)
6090 /* If KEY wasn't bound, we'll try some fallbacks. */
6091 if (first_binding
>= nmaps
)
6095 head
= EVENT_HEAD (key
);
6096 if (help_char_p (head
) && t
> 0)
6098 read_key_sequence_cmd
= Vprefix_help_command
;
6100 last_nonmenu_event
= key
;
6101 /* The Microsoft C compiler can't handle the goto that
6109 Lisp_Object breakdown
;
6112 breakdown
= parse_modifiers (head
);
6113 modifiers
= XINT (XCONS (XCONS (breakdown
)->cdr
)->car
);
6114 /* Attempt to reduce an unbound mouse event to a simpler
6115 event that is bound:
6116 Drags reduce to clicks.
6117 Double-clicks reduce to clicks.
6118 Triple-clicks reduce to double-clicks, then to clicks.
6119 Down-clicks are eliminated.
6120 Double-downs reduce to downs, then are eliminated.
6121 Triple-downs reduce to double-downs, then to downs,
6122 then are eliminated. */
6123 if (modifiers
& (down_modifier
| drag_modifier
6124 | double_modifier
| triple_modifier
))
6126 while (modifiers
& (down_modifier
| drag_modifier
6127 | double_modifier
| triple_modifier
))
6129 Lisp_Object new_head
, new_click
;
6130 if (modifiers
& triple_modifier
)
6131 modifiers
^= (double_modifier
| triple_modifier
);
6132 else if (modifiers
& double_modifier
)
6133 modifiers
&= ~double_modifier
;
6134 else if (modifiers
& drag_modifier
)
6135 modifiers
&= ~drag_modifier
;
6138 /* Dispose of this `down' event by simply jumping
6139 back to replay_key, to get another event.
6141 Note that if this event came from mock input,
6142 then just jumping back to replay_key will just
6143 hand it to us again. So we have to wipe out any
6146 We could delete keybuf[t] and shift everything
6147 after that to the left by one spot, but we'd also
6148 have to fix up any variable that points into
6149 keybuf, and shifting isn't really necessary
6152 Adding prefixes for non-textual mouse clicks
6153 creates two characters of mock input, and both
6154 must be thrown away. If we're only looking at
6155 the prefix now, we can just jump back to
6156 replay_key. On the other hand, if we've already
6157 processed the prefix, and now the actual click
6158 itself is giving us trouble, then we've lost the
6159 state of the keymaps we want to backtrack to, and
6160 we need to replay the whole sequence to rebuild
6163 Beyond that, only function key expansion could
6164 create more than two keys, but that should never
6165 generate mouse events, so it's okay to zero
6166 mock_input in that case too.
6168 Isn't this just the most wonderful code ever? */
6169 if (t
== last_real_key_start
)
6176 mock_input
= last_real_key_start
;
6177 goto replay_sequence
;
6182 = apply_modifiers (modifiers
, XCONS (breakdown
)->car
);
6184 = Fcons (new_head
, Fcons (EVENT_START (key
), Qnil
));
6186 /* Look for a binding for this new key. follow_key
6187 promises that it didn't munge submaps the
6188 last time we called it, since key was unbound. */
6190 = (follow_key (new_click
,
6191 nmaps
- local_first_binding
,
6192 submaps
+ local_first_binding
,
6193 defs
+ local_first_binding
,
6194 submaps
+ local_first_binding
)
6195 + local_first_binding
);
6197 /* If that click is bound, go for it. */
6198 if (first_binding
< nmaps
)
6203 /* Otherwise, we'll leave key set to the drag event. */
6210 /* Normally, last_nonmenu_event gets the previous key we read.
6211 But when a mouse popup menu is being used,
6212 we don't update last_nonmenu_event; it continues to hold the mouse
6213 event that preceded the first level of menu. */
6214 if (!used_mouse_menu
)
6215 last_nonmenu_event
= key
;
6217 prev_fkey_map
= fkey_map
;
6218 prev_fkey_start
= fkey_start
;
6219 prev_fkey_end
= fkey_end
;
6221 prev_keytran_map
= keytran_map
;
6222 prev_keytran_start
= keytran_start
;
6223 prev_keytran_end
= keytran_end
;
6225 /* If the sequence is unbound, see if we can hang a function key
6226 off the end of it. We only want to scan real keyboard input
6227 for function key sequences, so if mock_input says that we're
6228 re-reading old events, don't examine it. */
6229 if (first_binding
>= nmaps
6232 Lisp_Object fkey_next
;
6234 /* Continue scan from fkey_end until we find a bound suffix.
6235 If we fail, increment fkey_start
6236 and start fkey_end from there. */
6237 while (fkey_end
< t
)
6241 key
= keybuf
[fkey_end
++];
6242 /* Look up meta-characters by prefixing them
6243 with meta_prefix_char. I hate this. */
6244 if (INTEGERP (key
) && XINT (key
) & meta_modifier
)
6249 (access_keymap (fkey_map
, meta_prefix_char
, 1, 0)),
6251 XSETFASTINT (key
, XFASTINT (key
) & ~meta_modifier
);
6254 fkey_next
= fkey_map
;
6257 = get_keyelt (access_keymap (fkey_next
, key
, 1, 0));
6259 #if 0 /* I didn't turn this on, because it might cause trouble
6260 for the mapping of return into C-m and tab into C-i. */
6261 /* Optionally don't map function keys into other things.
6262 This enables the user to redefine kp- keys easily. */
6263 if (SYMBOLP (key
) && !NILP (Vinhibit_function_key_mapping
))
6267 /* If the function key map gives a function, not an
6268 array, then call the function with no args and use
6269 its value instead. */
6270 if (SYMBOLP (fkey_next
) && ! NILP (Ffboundp (fkey_next
))
6273 struct gcpro gcpro1
, gcpro2
, gcpro3
;
6277 GCPRO3 (fkey_map
, keytran_map
, delayed_switch_frame
);
6278 fkey_next
= call1 (fkey_next
, prompt
);
6280 /* If the function returned something invalid,
6281 barf--don't ignore it.
6282 (To ignore it safely, we would need to gcpro a bunch of
6283 other variables.) */
6284 if (! (VECTORP (fkey_next
) || STRINGP (fkey_next
)))
6285 error ("Function in function-key-map returns invalid key sequence");
6288 function_key_possible
= ! NILP (fkey_next
);
6290 /* If keybuf[fkey_start..fkey_end] is bound in the
6291 function key map and it's a suffix of the current
6292 sequence (i.e. fkey_end == t), replace it with
6293 the binding and restart with fkey_start at the end. */
6294 if ((VECTORP (fkey_next
) || STRINGP (fkey_next
))
6297 int len
= XFASTINT (Flength (fkey_next
));
6299 t
= fkey_start
+ len
;
6301 error ("Key sequence too long");
6303 if (VECTORP (fkey_next
))
6304 bcopy (XVECTOR (fkey_next
)->contents
,
6305 keybuf
+ fkey_start
,
6306 (t
- fkey_start
) * sizeof (keybuf
[0]));
6307 else if (STRINGP (fkey_next
))
6311 for (i
= 0; i
< len
; i
++)
6312 XSETFASTINT (keybuf
[fkey_start
+ i
],
6313 XSTRING (fkey_next
)->data
[i
]);
6317 fkey_start
= fkey_end
= t
;
6318 fkey_map
= Vfunction_key_map
;
6320 /* Do pass the results through key-translation-map. */
6321 keytran_start
= keytran_end
= 0;
6322 keytran_map
= Vkey_translation_map
;
6324 goto replay_sequence
;
6327 fkey_map
= get_keymap_1 (fkey_next
, 0, 1);
6329 /* If we no longer have a bound suffix, try a new positions for
6331 if (NILP (fkey_map
))
6333 fkey_end
= ++fkey_start
;
6334 fkey_map
= Vfunction_key_map
;
6335 function_key_possible
= 0;
6340 /* Look for this sequence in key-translation-map. */
6342 Lisp_Object keytran_next
;
6344 /* Scan from keytran_end until we find a bound suffix. */
6345 while (keytran_end
< t
)
6349 key
= keybuf
[keytran_end
++];
6350 /* Look up meta-characters by prefixing them
6351 with meta_prefix_char. I hate this. */
6352 if (INTEGERP (key
) && XINT (key
) & meta_modifier
)
6357 (access_keymap (keytran_map
, meta_prefix_char
, 1, 0)),
6359 XSETFASTINT (key
, XFASTINT (key
) & ~meta_modifier
);
6362 keytran_next
= keytran_map
;
6365 = get_keyelt (access_keymap (keytran_next
, key
, 1, 0));
6367 /* If the key translation map gives a function, not an
6368 array, then call the function with no args and use
6369 its value instead. */
6370 if (SYMBOLP (keytran_next
) && ! NILP (Ffboundp (keytran_next
))
6371 && keytran_end
== t
)
6373 struct gcpro gcpro1
, gcpro2
, gcpro3
;
6377 GCPRO3 (fkey_map
, keytran_map
, delayed_switch_frame
);
6378 keytran_next
= call1 (keytran_next
, prompt
);
6380 /* If the function returned something invalid,
6381 barf--don't ignore it.
6382 (To ignore it safely, we would need to gcpro a bunch of
6383 other variables.) */
6384 if (! (VECTORP (keytran_next
) || STRINGP (keytran_next
)))
6385 error ("Function in key-translation-map returns invalid key sequence");
6388 key_translation_possible
= ! NILP (keytran_next
);
6390 /* If keybuf[keytran_start..keytran_end] is bound in the
6391 key translation map and it's a suffix of the current
6392 sequence (i.e. keytran_end == t), replace it with
6393 the binding and restart with keytran_start at the end. */
6394 if ((VECTORP (keytran_next
) || STRINGP (keytran_next
))
6395 && keytran_end
== t
)
6397 int len
= XFASTINT (Flength (keytran_next
));
6399 t
= keytran_start
+ len
;
6401 error ("Key sequence too long");
6403 if (VECTORP (keytran_next
))
6404 bcopy (XVECTOR (keytran_next
)->contents
,
6405 keybuf
+ keytran_start
,
6406 (t
- keytran_start
) * sizeof (keybuf
[0]));
6407 else if (STRINGP (keytran_next
))
6411 for (i
= 0; i
< len
; i
++)
6412 XSETFASTINT (keybuf
[keytran_start
+ i
],
6413 XSTRING (keytran_next
)->data
[i
]);
6417 keytran_start
= keytran_end
= t
;
6418 keytran_map
= Vkey_translation_map
;
6420 /* Don't pass the results of key-translation-map
6421 through function-key-map. */
6422 fkey_start
= fkey_end
= t
;
6423 fkey_map
= Vkey_translation_map
;
6425 goto replay_sequence
;
6428 keytran_map
= get_keymap_1 (keytran_next
, 0, 1);
6430 /* If we no longer have a bound suffix, try a new positions for
6432 if (NILP (keytran_map
))
6434 keytran_end
= ++keytran_start
;
6435 keytran_map
= Vkey_translation_map
;
6436 key_translation_possible
= 0;
6441 /* If KEY is not defined in any of the keymaps,
6442 and cannot be part of a function key or translation,
6443 and is an upper case letter
6444 use the corresponding lower-case letter instead. */
6445 if (first_binding
== nmaps
&& ! function_key_possible
6446 && ! key_translation_possible
6448 && ((((XINT (key
) & 0x3ffff)
6449 < XSTRING (current_buffer
->downcase_table
)->size
)
6450 && UPPERCASEP (XINT (key
) & 0x3ffff))
6451 || (XINT (key
) & shift_modifier
)))
6453 Lisp_Object new_key
;
6455 original_uppercase
= key
;
6456 original_uppercase_position
= t
- 1;
6458 if (XINT (new_key
) & shift_modifier
)
6459 XSETINT (new_key
, XINT (key
) & ~shift_modifier
);
6461 XSETINT (new_key
, (DOWNCASE (XINT (key
) & 0x3ffff)
6462 | (XINT (key
) & ~0x3ffff)));
6464 /* We have to do this unconditionally, regardless of whether
6465 the lower-case char is defined in the keymaps, because they
6466 might get translated through function-key-map. */
6467 keybuf
[t
- 1] = new_key
;
6470 fkey_map
= prev_fkey_map
;
6471 fkey_start
= prev_fkey_start
;
6472 fkey_end
= prev_fkey_end
;
6474 keytran_map
= prev_keytran_map
;
6475 keytran_start
= prev_keytran_start
;
6476 keytran_end
= prev_keytran_end
;
6478 goto replay_sequence
;
6480 /* If KEY is not defined in any of the keymaps,
6481 and cannot be part of a function key or translation,
6482 and is a shifted function key,
6483 use the corresponding unshifted function key instead. */
6484 if (first_binding
== nmaps
&& ! function_key_possible
6485 && ! key_translation_possible
6488 Lisp_Object breakdown
;
6491 breakdown
= parse_modifiers (key
);
6492 modifiers
= XINT (XCONS (XCONS (breakdown
)->cdr
)->car
);
6493 if (modifiers
& shift_modifier
)
6495 Lisp_Object new_key
;
6497 original_uppercase
= key
;
6498 original_uppercase_position
= t
- 1;
6500 modifiers
&= ~shift_modifier
;
6501 new_key
= apply_modifiers (modifiers
,
6502 XCONS (breakdown
)->car
);
6504 keybuf
[t
- 1] = new_key
;
6507 fkey_map
= prev_fkey_map
;
6508 fkey_start
= prev_fkey_start
;
6509 fkey_end
= prev_fkey_end
;
6511 keytran_map
= prev_keytran_map
;
6512 keytran_start
= prev_keytran_start
;
6513 keytran_end
= prev_keytran_end
;
6515 goto replay_sequence
;
6521 read_key_sequence_cmd
= (first_binding
< nmaps
6522 ? defs
[first_binding
]
6525 unread_switch_frame
= delayed_switch_frame
;
6526 unbind_to (count
, Qnil
);
6528 /* Don't downcase the last character if the caller says don't.
6529 Don't downcase it if the result is undefined, either. */
6530 if ((dont_downcase_last
|| first_binding
>= nmaps
)
6531 && t
- 1 == original_uppercase_position
)
6532 keybuf
[t
- 1] = original_uppercase
;
6534 /* Occasionally we fabricate events, perhaps by expanding something
6535 according to function-key-map, or by adding a prefix symbol to a
6536 mouse click in the scroll bar or modeline. In this cases, return
6537 the entire generated key sequence, even if we hit an unbound
6538 prefix or a definition before the end. This means that you will
6539 be able to push back the event properly, and also means that
6540 read-key-sequence will always return a logical unit.
6543 for (; t
< mock_input
; t
++)
6545 if (echo_keystrokes
)
6546 echo_char (keybuf
[t
]);
6547 add_command_key (keybuf
[t
]);
6553 #if 0 /* This doc string is too long for some compilers.
6554 This commented-out definition serves for DOC. */
6555 DEFUN ("read-key-sequence", Fread_key_sequence
, Sread_key_sequence
, 1, 4, 0,
6556 "Read a sequence of keystrokes and return as a string or vector.\n\
6557 The sequence is sufficient to specify a non-prefix command in the\n\
6558 current local and global maps.\n\
6560 First arg PROMPT is a prompt string. If nil, do not prompt specially.\n\
6561 Second (optional) arg CONTINUE-ECHO, if non-nil, means this key echos\n\
6562 as a continuation of the previous key.\n\
6564 The third (optional) arg DONT-DOWNCASE-LAST, if non-nil, means do not\n\
6565 convert the last event to lower case. (Normally any upper case event\n\
6566 is converted to lower case if the original event is undefined and the lower\n\
6567 case equivalent is defined.) A non-nil value is appropriate for reading\n\
6568 a key sequence to be defined.\n\
6570 A C-g typed while in this function is treated like any other character,\n\
6571 and `quit-flag' is not set.\n\
6573 If the key sequence starts with a mouse click, then the sequence is read\n\
6574 using the keymaps of the buffer of the window clicked in, not the buffer\n\
6575 of the selected window as normal.\n\
6577 `read-key-sequence' drops unbound button-down events, since you normally\n\
6578 only care about the click or drag events which follow them. If a drag\n\
6579 or multi-click event is unbound, but the corresponding click event would\n\
6580 be bound, `read-key-sequence' turns the event into a click event at the\n\
6581 drag's starting position. This means that you don't have to distinguish\n\
6582 between click and drag, double, or triple events unless you want to.\n\
6584 `read-key-sequence' prefixes mouse events on mode lines, the vertical\n\
6585 lines separating windows, and scroll bars with imaginary keys\n\
6586 `mode-line', `vertical-line', and `vertical-scroll-bar'.\n\
6588 Optional fourth argument CAN-RETURN-SWITCH-FRAME non-nil means that this\n\
6589 function will process a switch-frame event if the user switches frames\n\
6590 before typing anything. If the user switches frames in the middle of a\n\
6591 key sequence, or at the start of the sequence but CAN-RETURN-SWITCH-FRAME\n\
6592 is nil, then the event will be put off until after the current key sequence.\n\
6594 `read-key-sequence' checks `function-key-map' for function key\n\
6595 sequences, where they wouldn't conflict with ordinary bindings. See\n\
6596 `function-key-map' for more details.")
6597 (prompt
, continue_echo
, dont_downcase_last
, can_return_switch_frame
)
6600 DEFUN ("read-key-sequence", Fread_key_sequence
, Sread_key_sequence
, 1, 4, 0,
6602 (prompt
, continue_echo
, dont_downcase_last
, can_return_switch_frame
)
6603 Lisp_Object prompt
, continue_echo
, dont_downcase_last
;
6604 Lisp_Object can_return_switch_frame
;
6606 Lisp_Object keybuf
[30];
6608 struct gcpro gcpro1
, gcpro2
;
6611 CHECK_STRING (prompt
, 0);
6614 bzero (keybuf
, sizeof keybuf
);
6616 gcpro1
.nvars
= (sizeof keybuf
/sizeof (keybuf
[0]));
6618 if (NILP (continue_echo
))
6619 this_command_key_count
= 0;
6621 i
= read_key_sequence (keybuf
, (sizeof keybuf
/sizeof (keybuf
[0])),
6622 prompt
, ! NILP (dont_downcase_last
),
6623 ! NILP (can_return_switch_frame
));
6631 return make_event_array (i
, keybuf
);
6634 DEFUN ("command-execute", Fcommand_execute
, Scommand_execute
, 1, 3, 0,
6635 "Execute CMD as an editor command.\n\
6636 CMD must be a symbol that satisfies the `commandp' predicate.\n\
6637 Optional second arg RECORD-FLAG non-nil\n\
6638 means unconditionally put this command in `command-history'.\n\
6639 Otherwise, that is done only if an arg is read using the minibuffer.\n\
6640 The argument KEYS specifies the value to use instead of (this-command-keys)\n\
6641 when reading the arguments; if it is nil, (this_command_key_count) is used.")
6642 (cmd
, record_flag
, keys
)
6643 Lisp_Object cmd
, record_flag
, keys
;
6645 register Lisp_Object final
;
6646 register Lisp_Object tem
;
6647 Lisp_Object prefixarg
;
6648 struct backtrace backtrace
;
6649 extern int debug_on_next_call
;
6651 prefixarg
= current_kboard
->Vprefix_arg
;
6652 current_kboard
->Vprefix_arg
= Qnil
;
6653 Vcurrent_prefix_arg
= prefixarg
;
6654 debug_on_next_call
= 0;
6658 tem
= Fget (cmd
, Qdisabled
);
6659 if (!NILP (tem
) && !NILP (Vrun_hooks
))
6661 tem
= Fsymbol_value (Qdisabled_command_hook
);
6663 return call1 (Vrun_hooks
, Qdisabled_command_hook
);
6669 final
= Findirect_function (cmd
);
6671 if (CONSP (final
) && (tem
= Fcar (final
), EQ (tem
, Qautoload
)))
6672 do_autoload (final
, cmd
);
6677 if (STRINGP (final
) || VECTORP (final
))
6679 /* If requested, place the macro in the command history. For
6680 other sorts of commands, call-interactively takes care of
6682 if (!NILP (record_flag
))
6684 = Fcons (Fcons (Qexecute_kbd_macro
,
6685 Fcons (final
, Fcons (prefixarg
, Qnil
))),
6688 return Fexecute_kbd_macro (final
, prefixarg
);
6690 if (CONSP (final
) || SUBRP (final
) || COMPILEDP (final
))
6692 backtrace
.next
= backtrace_list
;
6693 backtrace_list
= &backtrace
;
6694 backtrace
.function
= &Qcall_interactively
;
6695 backtrace
.args
= &cmd
;
6696 backtrace
.nargs
= 1;
6697 backtrace
.evalargs
= 0;
6699 tem
= Fcall_interactively (cmd
, record_flag
, keys
);
6701 backtrace_list
= backtrace
.next
;
6707 DEFUN ("execute-extended-command", Fexecute_extended_command
, Sexecute_extended_command
,
6709 "Read function name, then read its arguments and call it.")
6711 Lisp_Object prefixarg
;
6713 Lisp_Object function
;
6715 Lisp_Object saved_keys
;
6716 struct gcpro gcpro1
;
6718 saved_keys
= Fvector (this_command_key_count
,
6719 XVECTOR (this_command_keys
)->contents
);
6721 GCPRO1 (saved_keys
);
6723 if (EQ (prefixarg
, Qminus
))
6725 else if (CONSP (prefixarg
) && XINT (XCONS (prefixarg
)->car
) == 4)
6726 strcpy (buf
, "C-u ");
6727 else if (CONSP (prefixarg
) && INTEGERP (XCONS (prefixarg
)->car
))
6729 if (sizeof (int) == sizeof (EMACS_INT
))
6730 sprintf (buf
, "%d ", XINT (XCONS (prefixarg
)->car
));
6731 else if (sizeof (long) == sizeof (EMACS_INT
))
6732 sprintf (buf
, "%ld ", XINT (XCONS (prefixarg
)->car
));
6736 else if (INTEGERP (prefixarg
))
6738 if (sizeof (int) == sizeof (EMACS_INT
))
6739 sprintf (buf
, "%d ", XINT (prefixarg
));
6740 else if (sizeof (long) == sizeof (EMACS_INT
))
6741 sprintf (buf
, "%ld ", XINT (prefixarg
));
6746 /* This isn't strictly correct if execute-extended-command
6747 is bound to anything else. Perhaps it should use
6748 this_command_keys? */
6749 strcat (buf
, "M-x ");
6751 /* Prompt with buf, and then read a string, completing from and
6752 restricting to the set of all defined commands. Don't provide
6753 any initial input. Save the command read on the extended-command
6755 function
= Fcompleting_read (build_string (buf
),
6756 Vobarray
, Qcommandp
,
6757 Qt
, Qnil
, Qextended_command_history
);
6759 if (STRINGP (function
) && XSTRING (function
)->size
== 0)
6760 error ("No command name given");
6762 /* Set this_command_keys to the concatenation of saved_keys and
6763 function, followed by a RET. */
6765 struct Lisp_String
*str
;
6770 this_command_key_count
= 0;
6772 keys
= XVECTOR (saved_keys
)->contents
;
6773 for (i
= 0; i
< XVECTOR (saved_keys
)->size
; i
++)
6774 add_command_key (keys
[i
]);
6776 str
= XSTRING (function
);
6777 for (i
= 0; i
< str
->size
; i
++)
6779 XSETFASTINT (tem
, str
->data
[i
]);
6780 add_command_key (tem
);
6783 XSETFASTINT (tem
, '\015');
6784 add_command_key (tem
);
6789 function
= Fintern (function
, Qnil
);
6790 current_kboard
->Vprefix_arg
= prefixarg
;
6791 this_command
= function
;
6793 /* If enabled, show which key runs this command. */
6794 if (!NILP (Vsuggest_key_bindings
)
6795 && SYMBOLP (function
))
6797 Lisp_Object bindings
;
6799 bindings
= Fwhere_is_internal (function
, Voverriding_local_map
,
6802 if (!NILP (bindings
))
6804 message ("You can run the command `%s' by typing %s",
6805 XSYMBOL (function
)->name
->data
,
6806 XSTRING (Fkey_description (bindings
))->data
);
6807 Fsit_for ((NUMBERP (Vsuggest_key_bindings
)
6808 ? Vsuggest_key_bindings
: make_number (2)),
6813 return Fcommand_execute (function
, Qt
, Qnil
);
6816 /* Find the set of keymaps now active.
6817 Store into *MAPS_P a vector holding the various maps
6818 and return the number of them. The vector was malloc'd
6819 and the caller should free it. */
6822 current_active_maps (maps_p
)
6823 Lisp_Object
**maps_p
;
6825 Lisp_Object
*tmaps
, *maps
;
6828 /* Should overriding-terminal-local-map and overriding-local-map apply? */
6829 if (!NILP (Voverriding_local_map_menu_flag
))
6831 /* Yes, use them (if non-nil) as well as the global map. */
6832 maps
= (Lisp_Object
*) xmalloc (3 * sizeof (maps
[0]));
6834 if (!NILP (current_kboard
->Voverriding_terminal_local_map
))
6835 maps
[nmaps
++] = current_kboard
->Voverriding_terminal_local_map
;
6836 if (!NILP (Voverriding_local_map
))
6837 maps
[nmaps
++] = Voverriding_local_map
;
6841 /* No, so use major and minor mode keymaps. */
6842 nmaps
= current_minor_maps (NULL
, &tmaps
);
6843 maps
= (Lisp_Object
*) xmalloc ((nmaps
+ 2) * sizeof (maps
[0]));
6844 bcopy (tmaps
, maps
, nmaps
* sizeof (maps
[0]));
6845 #ifdef USE_TEXT_PROPERTIES
6846 maps
[nmaps
++] = get_local_map (PT
, current_buffer
);
6848 maps
[nmaps
++] = current_buffer
->keymap
;
6851 maps
[nmaps
++] = current_global_map
;
6857 /* Return nonzero if input events are pending. */
6859 detect_input_pending ()
6862 get_input_pending (&input_pending
, 0);
6864 return input_pending
;
6867 /* Return nonzero if input events are pending.
6868 Execute timers immediately; don't make events for them. */
6870 detect_input_pending_run_timers ()
6873 get_input_pending (&input_pending
, 1);
6875 return input_pending
;
6878 /* This is called in some cases before a possible quit.
6879 It cases the next call to detect_input_pending to recompute input_pending.
6880 So calling this function unnecessarily can't do any harm. */
6881 clear_input_pending ()
6886 DEFUN ("input-pending-p", Finput_pending_p
, Sinput_pending_p
, 0, 0, 0,
6887 "T if command input is currently available with no waiting.\n\
6888 Actually, the value is nil only if we can be sure that no input is available.")
6891 if (!NILP (Vunread_command_events
) || unread_command_char
!= -1)
6894 get_input_pending (&input_pending
, 1);
6895 return input_pending
> 0 ? Qt
: Qnil
;
6898 DEFUN ("recent-keys", Frecent_keys
, Srecent_keys
, 0, 0, 0,
6899 "Return vector of last 100 events, not counting those from keyboard macros.")
6902 Lisp_Object
*keys
= XVECTOR (recent_keys
)->contents
;
6905 if (total_keys
< NUM_RECENT_KEYS
)
6906 return Fvector (total_keys
, keys
);
6909 val
= Fvector (NUM_RECENT_KEYS
, keys
);
6910 bcopy (keys
+ recent_keys_index
,
6911 XVECTOR (val
)->contents
,
6912 (NUM_RECENT_KEYS
- recent_keys_index
) * sizeof (Lisp_Object
));
6914 XVECTOR (val
)->contents
+ NUM_RECENT_KEYS
- recent_keys_index
,
6915 recent_keys_index
* sizeof (Lisp_Object
));
6920 DEFUN ("this-command-keys", Fthis_command_keys
, Sthis_command_keys
, 0, 0, 0,
6921 "Return the key sequence that invoked this command.\n\
6922 The value is a string or a vector.")
6925 return make_event_array (this_command_key_count
,
6926 XVECTOR (this_command_keys
)->contents
);
6929 DEFUN ("reset-this-command-lengths", Freset_this_command_lengths
,
6930 Sreset_this_command_lengths
, 0, 0, 0,
6931 "Used for complicated reasons in `universal-argument-other-key'.\n\
6933 `universal-argument-other-key' rereads the event just typed.\n\
6934 It then gets translated through `function-key-map'.\n\
6935 The translated event gets included in the echo area and in\n\
6936 the value of `this-command-keys' in addition to the raw original event.\n\
6937 That is not right.\n\
6939 Calling this function directs the translated event to replace\n\
6940 the original event, so that only one version of the event actually\n\
6941 appears in the echo area and in the value of `this-command-keys.'.")
6944 before_command_restore_flag
= 1;
6945 before_command_key_count_1
= before_command_key_count
;
6946 before_command_echo_length_1
= before_command_echo_length
;
6949 DEFUN ("recursion-depth", Frecursion_depth
, Srecursion_depth
, 0, 0, 0,
6950 "Return the current depth in recursive edits.")
6954 XSETFASTINT (temp
, command_loop_level
+ minibuf_level
);
6958 DEFUN ("open-dribble-file", Fopen_dribble_file
, Sopen_dribble_file
, 1, 1,
6959 "FOpen dribble file: ",
6960 "Start writing all keyboard characters to a dribble file called FILE.\n\
6961 If FILE is nil, close any open dribble file.")
6972 file
= Fexpand_file_name (file
, Qnil
);
6973 dribble
= fopen (XSTRING (file
)->data
, "w");
6975 report_file_error ("Opening dribble", Fcons (file
, Qnil
));
6980 DEFUN ("discard-input", Fdiscard_input
, Sdiscard_input
, 0, 0, 0,
6981 "Discard the contents of the terminal input buffer.\n\
6982 Also cancel any kbd macro being defined.")
6985 current_kboard
->defining_kbd_macro
= Qnil
;
6986 update_mode_lines
++;
6988 Vunread_command_events
= Qnil
;
6989 unread_command_char
= -1;
6991 discard_tty_input ();
6993 /* Without the cast, GCC complains that this assignment loses the
6994 volatile qualifier of kbd_store_ptr. Is there anything wrong
6996 kbd_fetch_ptr
= (struct input_event
*) kbd_store_ptr
;
6997 Ffillarray (kbd_buffer_frame_or_window
, Qnil
);
7003 DEFUN ("suspend-emacs", Fsuspend_emacs
, Ssuspend_emacs
, 0, 1, "",
7004 "Stop Emacs and return to superior process. You can resume later.\n\
7005 If `cannot-suspend' is non-nil, or if the system doesn't support job\n\
7006 control, run a subshell instead.\n\n\
7007 If optional arg STUFFSTRING is non-nil, its characters are stuffed\n\
7008 to be read as terminal input by Emacs's parent, after suspension.\n\
7010 Before suspending, run the normal hook `suspend-hook'.\n\
7011 After resumption run the normal hook `suspend-resume-hook'.\n\
7013 Some operating systems cannot stop the Emacs process and resume it later.\n\
7014 On such systems, Emacs starts a subshell instead of suspending.")
7016 Lisp_Object stuffstring
;
7019 int count
= specpdl_ptr
- specpdl
;
7020 int old_height
, old_width
;
7022 struct gcpro gcpro1
, gcpro2
;
7023 extern init_sys_modes ();
7025 if (!NILP (stuffstring
))
7026 CHECK_STRING (stuffstring
, 0);
7028 /* Run the functions in suspend-hook. */
7029 if (!NILP (Vrun_hooks
))
7030 call1 (Vrun_hooks
, intern ("suspend-hook"));
7032 GCPRO1 (stuffstring
);
7033 get_frame_size (&old_width
, &old_height
);
7035 /* sys_suspend can get an error if it tries to fork a subshell
7036 and the system resources aren't available for that. */
7037 record_unwind_protect (init_sys_modes
, 0);
7038 stuff_buffered_input (stuffstring
);
7043 unbind_to (count
, Qnil
);
7045 /* Check if terminal/window size has changed.
7046 Note that this is not useful when we are running directly
7047 with a window system; but suspend should be disabled in that case. */
7048 get_frame_size (&width
, &height
);
7049 if (width
!= old_width
|| height
!= old_height
)
7050 change_frame_size (selected_frame
, height
, width
, 0, 0);
7052 /* Run suspend-resume-hook. */
7053 if (!NILP (Vrun_hooks
))
7054 call1 (Vrun_hooks
, intern ("suspend-resume-hook"));
7060 /* If STUFFSTRING is a string, stuff its contents as pending terminal input.
7061 Then in any case stuff anything Emacs has read ahead and not used. */
7063 stuff_buffered_input (stuffstring
)
7064 Lisp_Object stuffstring
;
7066 /* stuff_char works only in BSD, versions 4.2 and up. */
7069 register unsigned char *p
;
7071 if (STRINGP (stuffstring
))
7075 p
= XSTRING (stuffstring
)->data
;
7076 count
= XSTRING (stuffstring
)->size
;
7081 /* Anything we have read ahead, put back for the shell to read. */
7082 /* ?? What should this do when we have multiple keyboards??
7083 Should we ignore anything that was typed in at the "wrong" kboard? */
7084 for (; kbd_fetch_ptr
!= kbd_store_ptr
; kbd_fetch_ptr
++)
7086 if (kbd_fetch_ptr
== kbd_buffer
+ KBD_BUFFER_SIZE
)
7087 kbd_fetch_ptr
= kbd_buffer
;
7088 if (kbd_fetch_ptr
->kind
== ascii_keystroke
)
7089 stuff_char (kbd_fetch_ptr
->code
);
7090 kbd_fetch_ptr
->kind
= no_event
;
7091 (XVECTOR (kbd_buffer_frame_or_window
)->contents
[kbd_fetch_ptr
7097 #endif /* BSD and not BSD4_1 */
7100 set_waiting_for_input (time_to_clear
)
7101 EMACS_TIME
*time_to_clear
;
7103 input_available_clear_time
= time_to_clear
;
7105 /* Tell interrupt_signal to throw back to read_char, */
7106 waiting_for_input
= 1;
7108 /* If interrupt_signal was called before and buffered a C-g,
7109 make it run again now, to avoid timing error. */
7110 if (!NILP (Vquit_flag
))
7111 quit_throw_to_read_char ();
7114 clear_waiting_for_input ()
7116 /* Tell interrupt_signal not to throw back to read_char, */
7117 waiting_for_input
= 0;
7118 input_available_clear_time
= 0;
7121 /* This routine is called at interrupt level in response to C-G.
7122 If interrupt_input, this is the handler for SIGINT.
7123 Otherwise, it is called from kbd_buffer_store_event,
7124 in handling SIGIO or SIGTINT.
7126 If `waiting_for_input' is non zero, then unless `echoing' is nonzero,
7127 immediately throw back to read_char.
7129 Otherwise it sets the Lisp variable quit-flag not-nil.
7130 This causes eval to throw, when it gets a chance.
7131 If quit-flag is already non-nil, it stops the job right away. */
7134 interrupt_signal (signalnum
) /* If we don't have an argument, */
7135 int signalnum
; /* some compilers complain in signal calls. */
7138 /* Must preserve main program's value of errno. */
7139 int old_errno
= errno
;
7142 if (!read_socket_hook
&& NILP (Vwindow_system
))
7144 /* USG systems forget handlers when they are used;
7145 must reestablish each time */
7146 signal (SIGINT
, interrupt_signal
);
7147 signal (SIGQUIT
, interrupt_signal
);
7153 if (!NILP (Vquit_flag
) && FRAME_TERMCAP_P (selected_frame
))
7158 #ifdef SIGTSTP /* Support possible in later USG versions */
7160 * On systems which can suspend the current process and return to the original
7161 * shell, this command causes the user to end up back at the shell.
7162 * The "Auto-save" and "Abort" questions are not asked until
7163 * the user elects to return to emacs, at which point he can save the current
7164 * job and either dump core or continue.
7169 if (sys_suspend () == -1)
7171 printf ("Not running as a subprocess;\n");
7172 printf ("you can continue or abort.\n");
7175 /* Perhaps should really fork an inferior shell?
7176 But that would not provide any way to get back
7177 to the original shell, ever. */
7178 printf ("No support for stopping a process on this operating system;\n");
7179 printf ("you can continue or abort.\n");
7180 #endif /* not VMS */
7181 #endif /* not SIGTSTP */
7183 /* We must remain inside the screen area when the internal terminal
7184 is used. Note that [Enter] is not echoed by dos. */
7187 /* It doesn't work to autosave while GC is in progress;
7188 the code used for auto-saving doesn't cope with the mark bit. */
7189 if (!gc_in_progress
)
7191 printf ("Auto-save? (y or n) ");
7193 if (((c
= getchar ()) & ~040) == 'Y')
7195 Fdo_auto_save (Qt
, Qnil
);
7197 printf ("\r\nAuto-save done");
7198 #else /* not MSDOS */
7199 printf ("Auto-save done\n");
7200 #endif /* not MSDOS */
7202 while (c
!= '\n') c
= getchar ();
7206 /* During GC, it must be safe to reenable quitting again. */
7207 Vinhibit_quit
= Qnil
;
7210 #endif /* not MSDOS */
7211 printf ("Garbage collection in progress; cannot auto-save now\r\n");
7212 printf ("but will instead do a real quit after garbage collection ends\r\n");
7217 printf ("\r\nAbort? (y or n) ");
7218 #else /* not MSDOS */
7220 printf ("Abort (and enter debugger)? (y or n) ");
7222 printf ("Abort (and dump core)? (y or n) ");
7223 #endif /* not VMS */
7224 #endif /* not MSDOS */
7226 if (((c
= getchar ()) & ~040) == 'Y')
7228 while (c
!= '\n') c
= getchar ();
7230 printf ("\r\nContinuing...\r\n");
7231 #else /* not MSDOS */
7232 printf ("Continuing...\n");
7233 #endif /* not MSDOS */
7239 /* If executing a function that wants to be interrupted out of
7240 and the user has not deferred quitting by binding `inhibit-quit'
7241 then quit right away. */
7242 if (immediate_quit
&& NILP (Vinhibit_quit
))
7246 Fsignal (Qquit
, Qnil
);
7249 /* Else request quit when it's safe */
7253 if (waiting_for_input
&& !echoing
)
7254 quit_throw_to_read_char ();
7259 /* Handle a C-g by making read_char return C-g. */
7261 quit_throw_to_read_char ()
7263 quit_error_check ();
7265 /* Prevent another signal from doing this before we finish. */
7266 clear_waiting_for_input ();
7269 Vunread_command_events
= Qnil
;
7270 unread_command_char
= -1;
7272 #if 0 /* Currently, sit_for is called from read_char without turning
7273 off polling. And that can call set_waiting_for_input.
7274 It seems to be harmless. */
7275 #ifdef POLL_FOR_INPUT
7276 /* May be > 1 if in recursive minibuffer. */
7277 if (poll_suppress_count
== 0)
7282 if (FRAMEP (internal_last_event_frame
)
7283 && XFRAME (internal_last_event_frame
) != selected_frame
)
7284 do_switch_frame (make_lispy_switch_frame (internal_last_event_frame
),
7288 _longjmp (getcjmp
, 1);
7291 DEFUN ("set-input-mode", Fset_input_mode
, Sset_input_mode
, 3, 4, 0,
7292 "Set mode of reading keyboard input.\n\
7293 First arg INTERRUPT non-nil means use input interrupts;\n\
7294 nil means use CBREAK mode.\n\
7295 Second arg FLOW non-nil means use ^S/^Q flow control for output to terminal\n\
7296 (no effect except in CBREAK mode).\n\
7297 Third arg META t means accept 8-bit input (for a Meta key).\n\
7298 META nil means ignore the top bit, on the assumption it is parity.\n\
7299 Otherwise, accept 8-bit input and don't use the top bit for Meta.\n\
7300 Optional fourth arg QUIT if non-nil specifies character to use for quitting.\n\
7301 See also `current-input-mode'.")
7302 (interrupt
, flow
, meta
, quit
)
7303 Lisp_Object interrupt
, flow
, meta
, quit
;
7306 && (!INTEGERP (quit
) || XINT (quit
) < 0 || XINT (quit
) > 0400))
7307 error ("set-input-mode: QUIT must be an ASCII character");
7309 #ifdef POLL_FOR_INPUT
7314 /* this causes startup screen to be restored and messes with the mouse */
7319 /* Note SIGIO has been undef'd if FIONREAD is missing. */
7320 if (read_socket_hook
)
7322 /* When using X, don't give the user a real choice,
7323 because we haven't implemented the mechanisms to support it. */
7324 #ifdef NO_SOCK_SIGIO
7325 interrupt_input
= 0;
7326 #else /* not NO_SOCK_SIGIO */
7327 interrupt_input
= 1;
7328 #endif /* NO_SOCK_SIGIO */
7331 interrupt_input
= !NILP (interrupt
);
7332 #else /* not SIGIO */
7333 interrupt_input
= 0;
7334 #endif /* not SIGIO */
7336 /* Our VMS input only works by interrupts, as of now. */
7338 interrupt_input
= 1;
7341 flow_control
= !NILP (flow
);
7344 else if (EQ (meta
, Qt
))
7349 /* Don't let this value be out of range. */
7350 quit_char
= XINT (quit
) & (meta_key
? 0377 : 0177);
7356 #ifdef POLL_FOR_INPUT
7357 poll_suppress_count
= 1;
7363 DEFUN ("current-input-mode", Fcurrent_input_mode
, Scurrent_input_mode
, 0, 0, 0,
7364 "Return information about the way Emacs currently reads keyboard input.\n\
7365 The value is a list of the form (INTERRUPT FLOW META QUIT), where\n\
7366 INTERRUPT is non-nil if Emacs is using interrupt-driven input; if\n\
7367 nil, Emacs is using CBREAK mode.\n\
7368 FLOW is non-nil if Emacs uses ^S/^Q flow control for output to the\n\
7369 terminal; this does not apply if Emacs uses interrupt-driven input.\n\
7370 META is t if accepting 8-bit input with 8th bit as Meta flag.\n\
7371 META nil means ignoring the top bit, on the assumption it is parity.\n\
7372 META is neither t nor nil if accepting 8-bit input and using\n\
7373 all 8 bits as the character code.\n\
7374 QUIT is the character Emacs currently uses to quit.\n\
7375 The elements of this list correspond to the arguments of\n\
7381 val
[0] = interrupt_input
? Qt
: Qnil
;
7382 val
[1] = flow_control
? Qt
: Qnil
;
7383 val
[2] = meta_key
== 2 ? make_number (0) : meta_key
== 1 ? Qt
: Qnil
;
7384 XSETFASTINT (val
[3], quit_char
);
7386 return Flist (sizeof (val
) / sizeof (val
[0]), val
);
7391 * Set up a new kboard object with reasonable initial values.
7397 kb
->Voverriding_terminal_local_map
= Qnil
;
7398 kb
->Vlast_command
= Qnil
;
7399 kb
->Vprefix_arg
= Qnil
;
7400 kb
->kbd_queue
= Qnil
;
7401 kb
->kbd_queue_has_data
= 0;
7402 kb
->immediate_echo
= 0;
7403 kb
->echoptr
= kb
->echobuf
;
7404 kb
->echo_after_prompt
= -1;
7405 kb
->kbd_macro_buffer
= 0;
7406 kb
->kbd_macro_bufsize
= 0;
7407 kb
->defining_kbd_macro
= Qnil
;
7408 kb
->Vlast_kbd_macro
= Qnil
;
7409 kb
->reference_count
= 0;
7410 kb
->Vsystem_key_alist
= Qnil
;
7411 kb
->system_key_syms
= Qnil
;
7412 kb
->Vdefault_minibuffer_frame
= Qnil
;
7416 * Destroy the contents of a kboard object, but not the object itself.
7417 * We use this just before deleting it, or if we're going to initialize
7424 if (kb
->kbd_macro_buffer
)
7425 xfree (kb
->kbd_macro_buffer
);
7434 for (kbp
= &all_kboards
; *kbp
!= kb
; kbp
= &(*kbp
)->next_kboard
)
7437 *kbp
= kb
->next_kboard
;
7445 /* This is correct before outermost invocation of the editor loop */
7446 command_loop_level
= -1;
7448 quit_char
= Ctl ('g');
7449 Vunread_command_events
= Qnil
;
7450 unread_command_char
= -1;
7452 recent_keys_index
= 0;
7453 kbd_fetch_ptr
= kbd_buffer
;
7454 kbd_store_ptr
= kbd_buffer
;
7455 kbd_buffer_frame_or_window
7456 = Fmake_vector (make_number (KBD_BUFFER_SIZE
), Qnil
);
7458 do_mouse_tracking
= Qnil
;
7463 /* This means that command_loop_1 won't try to select anything the first
7465 internal_last_event_frame
= Qnil
;
7466 Vlast_event_frame
= internal_last_event_frame
;
7470 current_kboard
= initial_kboard
;
7472 wipe_kboard (current_kboard
);
7473 init_kboard (current_kboard
);
7476 Ffillarray (kbd_buffer_frame_or_window
, Qnil
);
7478 kbd_buffer_frame_or_window
7479 = Fmake_vector (make_number (KBD_BUFFER_SIZE
), Qnil
);
7480 if (!noninteractive
&& !read_socket_hook
&& NILP (Vwindow_system
))
7482 signal (SIGINT
, interrupt_signal
);
7483 #if defined (HAVE_TERMIO) || defined (HAVE_TERMIOS)
7484 /* For systems with SysV TERMIO, C-g is set up for both SIGINT and
7485 SIGQUIT and we can't tell which one it will give us. */
7486 signal (SIGQUIT
, interrupt_signal
);
7487 #endif /* HAVE_TERMIO */
7489 /* Note SIGIO has been undef'd if FIONREAD is missing. */
7491 if (!noninteractive
)
7492 signal (SIGIO
, input_available_signal
);
7495 /* Use interrupt input by default, if it works and noninterrupt input
7496 has deficiencies. */
7498 #ifdef INTERRUPT_INPUT
7499 interrupt_input
= 1;
7501 interrupt_input
= 0;
7504 /* Our VMS input only works by interrupts, as of now. */
7506 interrupt_input
= 1;
7512 if (keyboard_init_hook
)
7513 (*keyboard_init_hook
) ();
7515 #ifdef POLL_FOR_INPUT
7516 poll_suppress_count
= 1;
7521 /* This type's only use is in syms_of_keyboard, to initialize the
7522 event header symbols and put properties on them. */
7529 struct event_head head_table
[] = {
7530 &Qmouse_movement
, "mouse-movement", &Qmouse_movement
,
7531 &Qscroll_bar_movement
, "scroll-bar-movement", &Qmouse_movement
,
7532 &Qswitch_frame
, "switch-frame", &Qswitch_frame
,
7533 &Qdelete_frame
, "delete-frame", &Qdelete_frame
,
7534 &Qiconify_frame
, "iconify-frame", &Qiconify_frame
,
7535 &Qmake_frame_visible
, "make-frame-visible", &Qmake_frame_visible
,
7540 Qdisabled_command_hook
= intern ("disabled-command-hook");
7541 staticpro (&Qdisabled_command_hook
);
7543 Qself_insert_command
= intern ("self-insert-command");
7544 staticpro (&Qself_insert_command
);
7546 Qforward_char
= intern ("forward-char");
7547 staticpro (&Qforward_char
);
7549 Qbackward_char
= intern ("backward-char");
7550 staticpro (&Qbackward_char
);
7552 Qdisabled
= intern ("disabled");
7553 staticpro (&Qdisabled
);
7555 Qundefined
= intern ("undefined");
7556 staticpro (&Qundefined
);
7558 Qpre_command_hook
= intern ("pre-command-hook");
7559 staticpro (&Qpre_command_hook
);
7561 Qpost_command_hook
= intern ("post-command-hook");
7562 staticpro (&Qpost_command_hook
);
7564 Qpost_command_idle_hook
= intern ("post-command-idle-hook");
7565 staticpro (&Qpost_command_idle_hook
);
7567 Qdeferred_action_function
= intern ("deferred-action-function");
7568 staticpro (&Qdeferred_action_function
);
7570 Qcommand_hook_internal
= intern ("command-hook-internal");
7571 staticpro (&Qcommand_hook_internal
);
7573 Qfunction_key
= intern ("function-key");
7574 staticpro (&Qfunction_key
);
7575 Qmouse_click
= intern ("mouse-click");
7576 staticpro (&Qmouse_click
);
7577 Qtimer_event
= intern ("timer-event");
7578 staticpro (&Qtimer_event
);
7580 Qmenu_enable
= intern ("menu-enable");
7581 staticpro (&Qmenu_enable
);
7583 Qmode_line
= intern ("mode-line");
7584 staticpro (&Qmode_line
);
7585 Qvertical_line
= intern ("vertical-line");
7586 staticpro (&Qvertical_line
);
7587 Qvertical_scroll_bar
= intern ("vertical-scroll-bar");
7588 staticpro (&Qvertical_scroll_bar
);
7589 Qmenu_bar
= intern ("menu-bar");
7590 staticpro (&Qmenu_bar
);
7592 Qabove_handle
= intern ("above-handle");
7593 staticpro (&Qabove_handle
);
7594 Qhandle
= intern ("handle");
7595 staticpro (&Qhandle
);
7596 Qbelow_handle
= intern ("below-handle");
7597 staticpro (&Qbelow_handle
);
7599 Qevent_kind
= intern ("event-kind");
7600 staticpro (&Qevent_kind
);
7601 Qevent_symbol_elements
= intern ("event-symbol-elements");
7602 staticpro (&Qevent_symbol_elements
);
7603 Qevent_symbol_element_mask
= intern ("event-symbol-element-mask");
7604 staticpro (&Qevent_symbol_element_mask
);
7605 Qmodifier_cache
= intern ("modifier-cache");
7606 staticpro (&Qmodifier_cache
);
7608 Qrecompute_lucid_menubar
= intern ("recompute-lucid-menubar");
7609 staticpro (&Qrecompute_lucid_menubar
);
7610 Qactivate_menubar_hook
= intern ("activate-menubar-hook");
7611 staticpro (&Qactivate_menubar_hook
);
7613 Qpolling_period
= intern ("polling-period");
7614 staticpro (&Qpolling_period
);
7617 struct event_head
*p
;
7619 for (p
= head_table
;
7620 p
< head_table
+ (sizeof (head_table
) / sizeof (head_table
[0]));
7623 *p
->var
= intern (p
->name
);
7625 Fput (*p
->var
, Qevent_kind
, *p
->kind
);
7626 Fput (*p
->var
, Qevent_symbol_elements
, Fcons (*p
->var
, Qnil
));
7630 button_down_location
= Fmake_vector (make_number (NUM_MOUSE_BUTTONS
), Qnil
);
7631 staticpro (&button_down_location
);
7635 int len
= sizeof (modifier_names
) / sizeof (modifier_names
[0]);
7637 modifier_symbols
= Fmake_vector (make_number (len
), Qnil
);
7638 for (i
= 0; i
< len
; i
++)
7639 if (modifier_names
[i
])
7640 XVECTOR (modifier_symbols
)->contents
[i
] = intern (modifier_names
[i
]);
7641 staticpro (&modifier_symbols
);
7644 recent_keys
= Fmake_vector (make_number (NUM_RECENT_KEYS
), Qnil
);
7645 staticpro (&recent_keys
);
7647 this_command_keys
= Fmake_vector (make_number (40), Qnil
);
7648 staticpro (&this_command_keys
);
7650 Qextended_command_history
= intern ("extended-command-history");
7651 Fset (Qextended_command_history
, Qnil
);
7652 staticpro (&Qextended_command_history
);
7654 kbd_buffer_frame_or_window
7655 = Fmake_vector (make_number (KBD_BUFFER_SIZE
), Qnil
);
7656 staticpro (&kbd_buffer_frame_or_window
);
7658 accent_key_syms
= Qnil
;
7659 staticpro (&accent_key_syms
);
7661 func_key_syms
= Qnil
;
7662 staticpro (&func_key_syms
);
7665 staticpro (&mouse_syms
);
7667 unread_switch_frame
= Qnil
;
7668 staticpro (&unread_switch_frame
);
7670 defsubr (&Sevent_convert_list
);
7671 defsubr (&Sread_key_sequence
);
7672 defsubr (&Srecursive_edit
);
7674 defsubr (&Strack_mouse
);
7676 defsubr (&Sinput_pending_p
);
7677 defsubr (&Scommand_execute
);
7678 defsubr (&Srecent_keys
);
7679 defsubr (&Sthis_command_keys
);
7680 defsubr (&Sreset_this_command_lengths
);
7681 defsubr (&Ssuspend_emacs
);
7682 defsubr (&Sabort_recursive_edit
);
7683 defsubr (&Sexit_recursive_edit
);
7684 defsubr (&Srecursion_depth
);
7685 defsubr (&Stop_level
);
7686 defsubr (&Sdiscard_input
);
7687 defsubr (&Sopen_dribble_file
);
7688 defsubr (&Sset_input_mode
);
7689 defsubr (&Scurrent_input_mode
);
7690 defsubr (&Sexecute_extended_command
);
7692 DEFVAR_LISP ("last-command-char", &last_command_char
,
7693 "Last input event that was part of a command.");
7695 DEFVAR_LISP_NOPRO ("last-command-event", &last_command_char
,
7696 "Last input event that was part of a command.");
7698 DEFVAR_LISP ("last-nonmenu-event", &last_nonmenu_event
,
7699 "Last input event in a command, except for mouse menu events.\n\
7700 Mouse menus give back keys that don't look like mouse events;\n\
7701 this variable holds the actual mouse event that led to the menu,\n\
7702 so that you can determine whether the command was run by mouse or not.");
7704 DEFVAR_LISP ("last-input-char", &last_input_char
,
7705 "Last input event.");
7707 DEFVAR_LISP_NOPRO ("last-input-event", &last_input_char
,
7708 "Last input event.");
7710 DEFVAR_LISP ("unread-command-events", &Vunread_command_events
,
7711 "List of objects to be read as next command input events.");
7713 DEFVAR_INT ("unread-command-char", &unread_command_char
,
7714 "If not -1, an object to be read as next command input event.");
7716 DEFVAR_LISP ("meta-prefix-char", &meta_prefix_char
,
7717 "Meta-prefix character code. Meta-foo as command input\n\
7718 turns into this character followed by foo.");
7719 XSETINT (meta_prefix_char
, 033);
7721 DEFVAR_KBOARD ("last-command", Vlast_command
,
7722 "The last command executed. Normally a symbol with a function definition,\n\
7723 but can be whatever was found in the keymap, or whatever the variable\n\
7724 `this-command' was set to by that command.\n\
7726 The value `mode-exit' is special; it means that the previous command\n\
7727 read an event that told it to exit, and it did so and unread that event.\n\
7728 In other words, the present command is the event that made the previous\n\
7731 The value `kill-region' is special; it means that the previous command\n\
7732 was a kill command.");
7734 DEFVAR_LISP ("this-command", &this_command
,
7735 "The command now being executed.\n\
7736 The command can set this variable; whatever is put here\n\
7737 will be in `last-command' during the following command.");
7738 this_command
= Qnil
;
7740 DEFVAR_INT ("auto-save-interval", &auto_save_interval
,
7741 "*Number of keyboard input characters between auto-saves.\n\
7742 Zero means disable autosaving due to number of characters typed.");
7743 auto_save_interval
= 300;
7745 DEFVAR_LISP ("auto-save-timeout", &Vauto_save_timeout
,
7746 "*Number of seconds idle time before auto-save.\n\
7747 Zero or nil means disable auto-saving due to idleness.\n\
7748 After auto-saving due to this many seconds of idle time,\n\
7749 Emacs also does a garbage collection if that seems to be warranted.");
7750 XSETFASTINT (Vauto_save_timeout
, 30);
7752 DEFVAR_INT ("echo-keystrokes", &echo_keystrokes
,
7753 "*Nonzero means echo unfinished commands after this many seconds of pause.");
7754 echo_keystrokes
= 1;
7756 DEFVAR_INT ("polling-period", &polling_period
,
7757 "*Interval between polling for input during Lisp execution.\n\
7758 The reason for polling is to make C-g work to stop a running program.\n\
7759 Polling is needed only when using X windows and SIGIO does not work.\n\
7760 Polling is automatically disabled in all other cases.");
7763 DEFVAR_LISP ("double-click-time", &Vdouble_click_time
,
7764 "*Maximum time between mouse clicks to make a double-click.\n\
7765 Measured in milliseconds. nil means disable double-click recognition;\n\
7766 t means double-clicks have no time limit and are detected\n\
7767 by position only.");
7768 Vdouble_click_time
= make_number (500);
7770 DEFVAR_BOOL ("inhibit-local-menu-bar-menus", &inhibit_local_menu_bar_menus
,
7771 "*Non-nil means inhibit local map menu bar menus.");
7772 inhibit_local_menu_bar_menus
= 0;
7774 DEFVAR_INT ("num-input-keys", &num_input_keys
,
7775 "Number of complete keys read from the keyboard so far.");
7778 DEFVAR_LISP ("last-event-frame", &Vlast_event_frame
,
7779 "The frame in which the most recently read event occurred.\n\
7780 If the last event came from a keyboard macro, this is set to `macro'.");
7781 Vlast_event_frame
= Qnil
;
7783 DEFVAR_LISP ("help-char", &Vhelp_char
,
7784 "Character to recognize as meaning Help.\n\
7785 When it is read, do `(eval help-form)', and display result if it's a string.\n\
7786 If the value of `help-form' is nil, this char can be read normally.");
7787 XSETINT (Vhelp_char
, Ctl ('H'));
7789 DEFVAR_LISP ("help-event-list", &Vhelp_event_list
,
7790 "List of input events to recognize as meaning Help.\n\
7791 These work just like the value of `help-char' (see that).");
7792 Vhelp_event_list
= Qnil
;
7794 DEFVAR_LISP ("help-form", &Vhelp_form
,
7795 "Form to execute when character `help-char' is read.\n\
7796 If the form returns a string, that string is displayed.\n\
7797 If `help-form' is nil, the help char is not recognized.");
7800 DEFVAR_LISP ("prefix-help-command", &Vprefix_help_command
,
7801 "Command to run when `help-char' character follows a prefix key.\n\
7802 This command is used only when there is no actual binding\n\
7803 for that character after that prefix key.");
7804 Vprefix_help_command
= Qnil
;
7806 DEFVAR_LISP ("top-level", &Vtop_level
,
7807 "Form to evaluate when Emacs starts up.\n\
7808 Useful to set before you dump a modified Emacs.");
7811 DEFVAR_LISP ("keyboard-translate-table", &Vkeyboard_translate_table
,
7812 "Translate table for keyboard input, or nil.\n\
7813 Each character is looked up in this string and the contents used instead.\n\
7814 The value may be a string, a vector, or a char-table.\n\
7815 If it is a string or vector of length N,\n\
7816 character codes N and up are untranslated.\n\
7817 In a vector or a char-table, an element which is nil means \"no translation\".");
7818 Vkeyboard_translate_table
= Qnil
;
7820 DEFVAR_BOOL ("cannot-suspend", &cannot_suspend
,
7821 "Non-nil means to always spawn a subshell instead of suspending,\n\
7822 even if the operating system has support for stopping a process.");
7825 DEFVAR_BOOL ("menu-prompting", &menu_prompting
,
7826 "Non-nil means prompt with menus when appropriate.\n\
7827 This is done when reading from a keymap that has a prompt string,\n\
7828 for elements that have prompt strings.\n\
7829 The menu is displayed on the screen\n\
7830 if X menus were enabled at configuration\n\
7831 time and the previous event was a mouse click prefix key.\n\
7832 Otherwise, menu prompting uses the echo area.");
7835 DEFVAR_LISP ("menu-prompt-more-char", &menu_prompt_more_char
,
7836 "Character to see next line of menu prompt.\n\
7837 Type this character while in a menu prompt to rotate around the lines of it.");
7838 XSETINT (menu_prompt_more_char
, ' ');
7840 DEFVAR_INT ("extra-keyboard-modifiers", &extra_keyboard_modifiers
,
7841 "A mask of additional modifier keys to use with every keyboard character.\n\
7842 Emacs applies the modifiers of the character stored here to each keyboard\n\
7843 character it reads. For example, after evaluating the expression\n\
7844 (setq extra-keyboard-modifiers ?\\C-x)\n\
7845 all input characters will have the control modifier applied to them.\n\
7847 Note that the character ?\\C-@, equivalent to the integer zero, does\n\
7848 not count as a control character; rather, it counts as a character\n\
7849 with no modifiers; thus, setting `extra-keyboard-modifiers' to zero\n\
7850 cancels any modification.");
7851 extra_keyboard_modifiers
= 0;
7853 DEFVAR_LISP ("deactivate-mark", &Vdeactivate_mark
,
7854 "If an editing command sets this to t, deactivate the mark afterward.\n\
7855 The command loop sets this to nil before each command,\n\
7856 and tests the value when the command returns.\n\
7857 Buffer modification stores t in this variable.");
7858 Vdeactivate_mark
= Qnil
;
7860 DEFVAR_LISP ("command-hook-internal", &Vcommand_hook_internal
,
7861 "Temporary storage of pre-command-hook or post-command-hook.");
7862 Vcommand_hook_internal
= Qnil
;
7864 DEFVAR_LISP ("pre-command-hook", &Vpre_command_hook
,
7865 "Normal hook run before each command is executed.\n\
7866 Errors running the hook are caught and ignored.");
7867 Vpre_command_hook
= Qnil
;
7869 DEFVAR_LISP ("post-command-hook", &Vpost_command_hook
,
7870 "Normal hook run after each command is executed.\n\
7871 Errors running the hook are caught and ignored.");
7872 Vpost_command_hook
= Qnil
;
7874 DEFVAR_LISP ("post-command-idle-hook", &Vpost_command_idle_hook
,
7875 "Normal hook run after each command is executed, if idle.\n\
7876 Errors running the hook are caught and ignored.");
7877 Vpost_command_idle_hook
= Qnil
;
7879 DEFVAR_INT ("post-command-idle-delay", &post_command_idle_delay
,
7880 "Delay time before running `post-command-idle-hook'.\n\
7881 This is measured in microseconds.");
7882 post_command_idle_delay
= 100000;
7884 DEFVAR_LISP ("lucid-menu-bar-dirty-flag", &Vlucid_menu_bar_dirty_flag
,
7885 "t means menu bar, specified Lucid style, needs to be recomputed.");
7886 Vlucid_menu_bar_dirty_flag
= Qnil
;
7888 DEFVAR_LISP ("menu-bar-final-items", &Vmenu_bar_final_items
,
7889 "List of menu bar items to move to the end of the menu bar.\n\
7890 The elements of the list are event types that may have menu bar bindings.");
7891 Vmenu_bar_final_items
= Qnil
;
7893 DEFVAR_KBOARD ("overriding-terminal-local-map",
7894 Voverriding_terminal_local_map
,
7895 "Keymap that overrides all other local keymaps.\n\
7896 If this variable is non-nil, it is used as a keymap instead of the\n\
7897 buffer's local map, and the minor mode keymaps and text property keymaps.");
7899 DEFVAR_LISP ("overriding-local-map", &Voverriding_local_map
,
7900 "Keymap that overrides all other local keymaps.\n\
7901 If this variable is non-nil, it is used as a keymap instead of the\n\
7902 buffer's local map, and the minor mode keymaps and text property keymaps.");
7903 Voverriding_local_map
= Qnil
;
7905 DEFVAR_LISP ("overriding-local-map-menu-flag", &Voverriding_local_map_menu_flag
,
7906 "Non-nil means `overriding-local-map' applies to the menu bar.\n\
7907 Otherwise, the menu bar continues to reflect the buffer's local map\n\
7908 and the minor mode maps regardless of `overriding-local-map'.");
7909 Voverriding_local_map_menu_flag
= Qnil
;
7911 DEFVAR_LISP ("special-event-map", &Vspecial_event_map
,
7912 "Keymap defining bindings for special events to execute at low level.");
7913 Vspecial_event_map
= Fcons (intern ("keymap"), Qnil
);
7915 DEFVAR_LISP ("track-mouse", &do_mouse_tracking
,
7916 "*Non-nil means generate motion events for mouse motion.");
7918 DEFVAR_KBOARD ("system-key-alist", Vsystem_key_alist
,
7919 "Alist of system-specific X windows key symbols.\n\
7920 Each element should have the form (N . SYMBOL) where N is the\n\
7921 numeric keysym code (sans the \"system-specific\" bit 1<<28)\n\
7922 and SYMBOL is its name.");
7924 DEFVAR_LISP ("deferred-action-list", &Vdeferred_action_list
,
7925 "List of deferred actions to be performed at a later time.\n\
7926 The precise format isn't relevant here; we just check whether it is nil.");
7927 Vdeferred_action_list
= Qnil
;
7929 DEFVAR_LISP ("deferred-action-function", &Vdeferred_action_function
,
7930 "Function to call to handle deferred actions, after each command.\n\
7931 This function is called with no arguments after each command\n\
7932 whenever `deferred-action-list' is non-nil.");
7933 Vdeferred_action_function
= Qnil
;
7935 DEFVAR_LISP ("suggest-key-bindings", &Vsuggest_key_bindings
,
7936 "Non-nil means show the equivalent key-binding when M-x command has one.\n\
7937 The value can be a length of time to show the message for.\n\
7938 If the value is non-nil and not a number, we wait 2 seconds.");
7939 Vsuggest_key_bindings
= Qt
;
7941 DEFVAR_LISP ("column-number-mode", &Vcolumn_number_mode
,
7942 "Non-nil enables display of the current column number in the mode line.");
7943 Vcolumn_number_mode
= Qnil
;
7945 DEFVAR_LISP ("timer-list", &Vtimer_list
,
7946 "List of active absolute time timers in order of increasing time");
7949 DEFVAR_LISP ("timer-idle-list", &Vtimer_idle_list
,
7950 "List of active idle-time timers in order of increasing time");
7951 Vtimer_idle_list
= Qnil
;
7956 initial_define_key (global_map
, Ctl ('Z'), "suspend-emacs");
7957 initial_define_key (control_x_map
, Ctl ('Z'), "suspend-emacs");
7958 initial_define_key (meta_map
, Ctl ('C'), "exit-recursive-edit");
7959 initial_define_key (global_map
, Ctl (']'), "abort-recursive-edit");
7960 initial_define_key (meta_map
, 'x', "execute-extended-command");
7962 initial_define_lispy_key (Vspecial_event_map
, "delete-frame",
7963 "handle-delete-frame");
7964 initial_define_lispy_key (Vspecial_event_map
, "iconify-frame",
7966 initial_define_lispy_key (Vspecial_event_map
, "make-frame-visible",