1 /* Keyboard and mouse input; editor command loop.
2 Copyright (C) 1985,86,87,88,89,93,94,95 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, 675 Mass Ave, Cambridge, MA 02139, USA. */
20 /* 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. */
60 /* Include systime.h after xterm.h to avoid double inclusion of time.h. */
65 /* Variables for blockinput.h: */
67 /* Non-zero if interrupt input is blocked right now. */
68 int interrupt_input_blocked
;
70 /* Nonzero means an input interrupt has arrived
71 during the current critical section. */
72 int interrupt_input_pending
;
75 /* File descriptor to use for input. */
79 /* Make all keyboard buffers much bigger when using X windows. */
80 #define KBD_BUFFER_SIZE 4096
81 #else /* No X-windows, character input */
82 #define KBD_BUFFER_SIZE 256
83 #endif /* No X-windows */
85 /* Following definition copied from eval.c */
89 struct backtrace
*next
;
90 Lisp_Object
*function
;
91 Lisp_Object
*args
; /* Points to vector of args. */
92 int nargs
; /* length of vector. If nargs is UNEVALLED,
93 args points to slot holding list of
98 PERDISPLAY the_only_perdisplay
;
100 /* Non-nil disable property on a command means
101 do not execute it; call disabled-command-hook's value instead. */
102 Lisp_Object Qdisabled
, Qdisabled_command_hook
;
104 #define NUM_RECENT_KEYS (100)
105 int recent_keys_index
; /* Index for storing next element into recent_keys */
106 int total_keys
; /* Total number of elements stored into recent_keys */
107 Lisp_Object recent_keys
; /* A vector, holding the last 100 keystrokes */
109 /* Vector holding the key sequence that invoked the current command.
110 It is reused for each command, and it may be longer than the current
111 sequence; this_command_key_count indicates how many elements
112 actually mean something.
113 It's easier to staticpro a single Lisp_Object than an array. */
114 Lisp_Object this_command_keys
;
115 int this_command_key_count
;
117 extern int minbuf_level
;
119 extern struct backtrace
*backtrace_list
;
121 /* Nonzero means do menu prompting. */
122 static int menu_prompting
;
124 /* Character to see next line of menu prompt. */
125 static Lisp_Object menu_prompt_more_char
;
127 /* For longjmp to where kbd input is being done. */
128 static jmp_buf getcjmp
;
130 /* True while doing kbd input. */
131 int waiting_for_input
;
133 /* True while displaying for echoing. Delays C-g throwing. */
136 /* Nonzero means disregard local maps for the menu bar. */
137 static int inhibit_local_menu_bar_menus
;
139 /* Nonzero means C-g should cause immediate error-signal. */
142 /* Character to recognize as the help char. */
143 Lisp_Object Vhelp_char
;
145 /* Form to execute when help char is typed. */
146 Lisp_Object Vhelp_form
;
148 /* Command to run when the help character follows a prefix key. */
149 Lisp_Object Vprefix_help_command
;
151 /* List of items that should move to the end of the menu bar. */
152 Lisp_Object Vmenu_bar_final_items
;
154 /* Character that causes a quit. Normally C-g.
156 If we are running on an ordinary terminal, this must be an ordinary
157 ASCII char, since we want to make it our interrupt character.
159 If we are not running on an ordinary terminal, it still needs to be
160 an ordinary ASCII char. This character needs to be recognized in
161 the input interrupt handler. At this point, the keystroke is
162 represented as a struct input_event, while the desired quit
163 character is specified as a lispy event. The mapping from struct
164 input_events to lispy events cannot run in an interrupt handler,
165 and the reverse mapping is difficult for anything but ASCII
168 FOR THESE ELABORATE AND UNSATISFYING REASONS, quit_char must be an
172 extern Lisp_Object current_global_map
;
173 extern int minibuf_level
;
175 /* If non-nil, this is a map that overrides all other local maps. */
176 Lisp_Object Voverriding_local_map
;
178 /* If non-nil, Voverriding_local_map applies to the menu bar. */
179 Lisp_Object Voverriding_local_map_menu_flag
;
181 /* Current depth in recursive edits. */
182 int command_loop_level
;
184 /* Total number of times command_loop has read a key sequence. */
187 /* Last input character read as a command. */
188 Lisp_Object last_command_char
;
190 /* Last input character read as a command, not counting menus
191 reached by the mouse. */
192 Lisp_Object last_nonmenu_event
;
194 /* Last input character read for any purpose. */
195 Lisp_Object last_input_char
;
197 /* If not Qnil, a list of objects to be read as subsequent command input. */
198 Lisp_Object Vunread_command_events
;
200 /* If not -1, an event to be read as subsequent command input. */
201 int unread_command_char
;
203 /* If not Qnil, this is a switch-frame event which we decided to put
204 off until the end of a key sequence. This should be read as the
205 next command input, after any unread_command_events.
207 read_key_sequence uses this to delay switch-frame events until the
208 end of the key sequence; Fread_char uses it to put off switch-frame
209 events until a non-ASCII event is acceptable as input. */
210 Lisp_Object unread_switch_frame
;
212 /* A mask of extra modifier bits to put into every keyboard char. */
213 int extra_keyboard_modifiers
;
215 /* Char to use as prefix when a meta character is typed in.
216 This is bound on entry to minibuffer in case ESC is changed there. */
218 Lisp_Object meta_prefix_char
;
220 /* Last size recorded for a current buffer which is not a minibuffer. */
221 static int last_non_minibuf_size
;
223 /* Number of idle seconds before an auto-save and garbage collection. */
224 static Lisp_Object Vauto_save_timeout
;
226 /* Total number of times read_char has returned. */
229 /* Total number of times read_char has returned, outside of macros. */
230 int num_nonmacro_input_chars
;
232 /* Auto-save automatically when this many characters have been typed
233 since the last time. */
235 static int auto_save_interval
;
237 /* Value of num_nonmacro_input_chars as of last auto save. */
241 /* Last command executed by the editor command loop, not counting
242 commands that set the prefix argument. */
244 Lisp_Object last_command
;
246 /* The command being executed by the command loop.
247 Commands may set this, and the value set will be copied into last_command
248 instead of the actual command. */
249 Lisp_Object this_command
;
251 /* The value of point when the last command was executed. */
252 int last_point_position
;
254 /* The buffer that was current when the last command was started. */
255 Lisp_Object last_point_position_buffer
;
258 /* The frame in which the last input event occurred, or Qmacro if the
259 last event came from a macro. We use this to determine when to
260 generate switch-frame events. This may be cleared by functions
261 like Fselect_frame, to make sure that a switch-frame event is
262 generated by the next character. */
263 Lisp_Object internal_last_event_frame
;
266 /* A user-visible version of the above, intended to allow users to
267 figure out where the last event came from, if the event doesn't
268 carry that information itself (i.e. if it was a character). */
269 Lisp_Object Vlast_event_frame
;
271 /* The timestamp of the last input event we received from the X server.
272 X Windows wants this for selection ownership. */
273 unsigned long last_event_timestamp
;
275 Lisp_Object Qself_insert_command
;
276 Lisp_Object Qforward_char
;
277 Lisp_Object Qbackward_char
;
278 Lisp_Object Qundefined
;
280 /* read_key_sequence stores here the command definition of the
281 key sequence that it reads. */
282 Lisp_Object read_key_sequence_cmd
;
284 /* Form to evaluate (if non-nil) when Emacs is started. */
285 Lisp_Object Vtop_level
;
287 /* User-supplied string to translate input characters through. */
288 Lisp_Object Vkeyboard_translate_table
;
290 /* Keymap mapping ASCII function key sequences onto their preferred forms. */
291 extern Lisp_Object Vfunction_key_map
;
293 /* Keymap mapping ASCII function key sequences onto their preferred forms. */
294 Lisp_Object Vkey_translation_map
;
296 /* Non-nil means deactivate the mark at end of this command. */
297 Lisp_Object Vdeactivate_mark
;
299 /* Menu bar specified in Lucid Emacs fashion. */
301 Lisp_Object Vlucid_menu_bar_dirty_flag
;
302 Lisp_Object Qrecompute_lucid_menubar
, Qactivate_menubar_hook
;
304 /* Hooks to run before and after each command. */
305 Lisp_Object Qpre_command_hook
, Qpost_command_hook
;
306 Lisp_Object Vpre_command_hook
, Vpost_command_hook
;
307 Lisp_Object Qcommand_hook_internal
, Vcommand_hook_internal
;
309 /* List of deferred actions to be performed at a later time.
310 The precise format isn't relevant here; we just check whether it is nil. */
311 Lisp_Object Vdeferred_action_list
;
313 /* Function to call to handle deferred actions, when there are any. */
314 Lisp_Object Vdeferred_action_function
;
315 Lisp_Object Qdeferred_action_function
;
317 /* File in which we write all commands we read. */
320 /* Nonzero if input is available. */
323 /* 1 if should obey 0200 bit in input chars as "Meta", 2 if should
324 keep 0200 bit in input chars. 0 to ignore the 0200 bit. */
328 extern char *pending_malloc_warning
;
331 /* If this flag is a frame, we check mouse_moved to see when the
332 mouse moves, and motion events will appear in the input stream.
333 Otherwise, mouse motion is ignored. */
334 static Lisp_Object do_mouse_tracking
;
336 /* The window system handling code should set this if the mouse has
337 moved since the last call to the mouse_position_hook. Calling that
338 hook should clear this. Code assumes that if this is set, it can
339 call mouse_position_hook to get the promised position, so don't set
340 it unless you're prepared to substantiate the claim! */
343 #define MOUSE_ACTIVITY_AVAILABLE (FRAMEP (do_mouse_tracking) && mouse_moved)
344 #else /* Not HAVE_MOUSE. */
345 #define MOUSE_ACTIVITY_AVAILABLE 0
346 #endif /* HAVE_MOUSE. */
348 /* Symbols to head events. */
349 Lisp_Object Qmouse_movement
;
350 Lisp_Object Qscroll_bar_movement
;
351 Lisp_Object Qswitch_frame
;
352 Lisp_Object Qdelete_frame
;
353 Lisp_Object Qiconify_frame
;
354 Lisp_Object Qmake_frame_visible
;
356 /* Symbols to denote kinds of events. */
357 Lisp_Object Qfunction_key
;
358 Lisp_Object Qmouse_click
;
359 /* Lisp_Object Qmouse_movement; - also an event header */
361 /* Properties of event headers. */
362 Lisp_Object Qevent_kind
;
363 Lisp_Object Qevent_symbol_elements
;
365 Lisp_Object Qmenu_enable
;
367 /* An event header symbol HEAD may have a property named
368 Qevent_symbol_element_mask, which is of the form (BASE MODIFIERS);
369 BASE is the base, unmodified version of HEAD, and MODIFIERS is the
370 mask of modifiers applied to it. If present, this is used to help
371 speed up parse_modifiers. */
372 Lisp_Object Qevent_symbol_element_mask
;
374 /* An unmodified event header BASE may have a property named
375 Qmodifier_cache, which is an alist mapping modifier masks onto
376 modified versions of BASE. If present, this helps speed up
378 Lisp_Object Qmodifier_cache
;
380 /* Symbols to use for parts of windows. */
381 Lisp_Object Qmode_line
;
382 Lisp_Object Qvertical_line
;
383 Lisp_Object Qvertical_scroll_bar
;
384 Lisp_Object Qmenu_bar
;
386 extern Lisp_Object Qmenu_enable
;
388 Lisp_Object
recursive_edit_unwind (), command_loop ();
389 Lisp_Object
Fthis_command_keys ();
390 Lisp_Object Qextended_command_history
;
392 Lisp_Object Qpolling_period
;
394 /* Address (if not 0) of EMACS_TIME to zero out if a SIGIO interrupt
396 EMACS_TIME
*input_available_clear_time
;
398 /* Nonzero means use SIGIO interrupts; zero means use CBREAK mode.
399 Default is 1 if INTERRUPT_INPUT is defined. */
402 /* Nonzero while interrupts are temporarily deferred during redisplay. */
403 int interrupts_deferred
;
405 /* nonzero means use ^S/^Q for flow control. */
408 /* Allow m- file to inhibit use of FIONREAD. */
409 #ifdef BROKEN_FIONREAD
413 /* We are unable to use interrupts if FIONREAD is not available,
414 so flush SIGIO so we won't try. */
421 /* If we support X Windows, turn on the code to poll periodically
422 to detect C-g. It isn't actually used when doing interrupt input. */
423 #ifdef HAVE_X_WINDOWS
424 #define POLL_FOR_INPUT
427 /* Global variable declarations. */
429 /* Function for init_keyboard to call with no args (if nonzero). */
430 void (*keyboard_init_hook
) ();
432 static int read_avail_input ();
433 static void get_input_pending ();
434 static int readable_events ();
435 static Lisp_Object
read_char_x_menu_prompt ();
436 static Lisp_Object
read_char_minibuf_menu_prompt ();
437 static Lisp_Object
make_lispy_event ();
438 static Lisp_Object
make_lispy_movement ();
439 static Lisp_Object
modify_event_symbol ();
440 static Lisp_Object
make_lispy_switch_frame ();
442 /* > 0 if we are to echo keystrokes. */
443 static int echo_keystrokes
;
445 /* Nonzero means don't try to suspend even if the operating system seems
447 static int cannot_suspend
;
449 #define min(a,b) ((a)<(b)?(a):(b))
450 #define max(a,b) ((a)>(b)?(a):(b))
452 /* Install the string STR as the beginning of the string of echoing,
453 so that it serves as a prompt for the next character.
454 Also start echoing. */
459 PERDISPLAY
*perd
= get_perdisplay (selected_frame
);
460 int len
= strlen (str
);
462 if (len
> ECHOBUFSIZE
- 4)
463 len
= ECHOBUFSIZE
- 4;
464 bcopy (str
, perd
->echobuf
, len
);
465 perd
->echoptr
= perd
->echobuf
+ len
;
466 *perd
->echoptr
= '\0';
468 perd
->echo_after_prompt
= len
;
473 /* Add C to the echo string, if echoing is going on.
474 C can be a character, which is printed prettily ("M-C-x" and all that
475 jazz), or a symbol, whose name is printed. */
480 extern char *push_key_description ();
481 PERDISPLAY
*perd
= get_perdisplay (selected_frame
);
483 if (perd
->immediate_echo
)
485 char *ptr
= perd
->echoptr
;
487 if (ptr
!= perd
->echobuf
)
490 /* If someone has passed us a composite event, use its head symbol. */
495 if (ptr
- perd
->echobuf
> ECHOBUFSIZE
- 6)
498 ptr
= push_key_description (XINT (c
), ptr
);
500 else if (SYMBOLP (c
))
502 struct Lisp_String
*name
= XSYMBOL (c
)->name
;
503 if (((ptr
- perd
->echobuf
) + name
->size
+ 4) > ECHOBUFSIZE
)
505 bcopy (name
->data
, ptr
, name
->size
);
509 if (perd
->echoptr
== perd
->echobuf
&& EQ (c
, Vhelp_char
))
511 strcpy (ptr
, " (Type ? for further options)");
522 /* Temporarily add a dash to the end of the echo string if it's not
523 empty, so that it serves as a mini-prompt for the very next character. */
527 PERDISPLAY
*perd
= get_perdisplay (selected_frame
);
528 if (!perd
->immediate_echo
&& perd
->echoptr
== perd
->echobuf
)
530 /* Do nothing if we just printed a prompt. */
531 if (perd
->echo_after_prompt
== perd
->echoptr
- perd
->echobuf
)
533 /* Do nothing if not echoing at all. */
534 if (perd
->echoptr
== 0)
537 /* Put a dash at the end of the buffer temporarily,
538 but make it go away when the next character is added. */
539 perd
->echoptr
[0] = '-';
540 perd
->echoptr
[1] = 0;
545 /* Display the current echo string, and begin echoing if not already
550 PERDISPLAY
*perd
= get_perdisplay (selected_frame
);
551 if (!perd
->immediate_echo
)
554 perd
->immediate_echo
= 1;
556 for (i
= 0; i
< this_command_key_count
; i
++)
559 c
= XVECTOR (this_command_keys
)->contents
[i
];
560 if (! (EVENT_HAS_PARAMETERS (c
)
561 && EQ (EVENT_HEAD_KIND (EVENT_HEAD (c
)), Qmouse_movement
)))
568 message2_nolog (perd
->echobuf
, strlen (perd
->echobuf
));
571 if (waiting_for_input
&& !NILP (Vquit_flag
))
572 quit_throw_to_read_char ();
575 /* Turn off echoing, for the start of a new command. */
579 PERDISPLAY
*perd
= get_perdisplay (selected_frame
);
580 perd
->immediate_echo
= 0;
581 perd
->echoptr
= perd
->echobuf
;
582 perd
->echo_after_prompt
= -1;
585 /* Return the length of the current echo string. */
590 PERDISPLAY
*perd
= get_perdisplay (selected_frame
);
591 return perd
->echoptr
- perd
->echobuf
;
594 /* Truncate the current echo message to its first LEN chars.
595 This and echo_char get used by read_key_sequence when the user
596 switches frames while entering a key sequence. */
602 PERDISPLAY
*perd
= get_perdisplay (selected_frame
);
603 perd
->echobuf
[len
] = '\0';
604 perd
->echoptr
= perd
->echobuf
+ len
;
605 truncate_echo_area (len
);
609 /* Functions for manipulating this_command_keys. */
611 add_command_key (key
)
614 int size
= XVECTOR (this_command_keys
)->size
;
616 if (this_command_key_count
>= size
)
618 Lisp_Object new_keys
;
620 new_keys
= Fmake_vector (make_number (size
* 2), Qnil
);
621 bcopy (XVECTOR (this_command_keys
)->contents
,
622 XVECTOR (new_keys
)->contents
,
623 size
* sizeof (Lisp_Object
));
625 this_command_keys
= new_keys
;
628 XVECTOR (this_command_keys
)->contents
[this_command_key_count
++] = key
;
634 int count
= specpdl_ptr
- specpdl
;
637 if (command_loop_level
> 0)
639 specbind (Qstandard_output
, Qt
);
640 specbind (Qstandard_input
, Qt
);
643 val
= command_loop ();
645 Fsignal (Qquit
, Qnil
);
647 return unbind_to (count
, Qnil
);
650 /* When an auto-save happens, record the "time", and don't do again soon. */
654 last_auto_save
= num_nonmacro_input_chars
;
657 /* Make an auto save happen as soon as possible at command level. */
659 force_auto_save_soon ()
661 last_auto_save
= - auto_save_interval
- 1;
663 record_asynch_buffer_change ();
666 DEFUN ("recursive-edit", Frecursive_edit
, Srecursive_edit
, 0, 0, "",
667 "Invoke the editor command loop recursively.\n\
668 To get out of the recursive edit, a command can do `(throw 'exit nil)';\n\
669 that tells this function to return.\n\
670 Alternately, `(throw 'exit t)' makes this function signal an error.\n\
671 This function is called by the editor initialization to begin editing.")
674 int count
= specpdl_ptr
- specpdl
;
677 command_loop_level
++;
678 update_mode_lines
= 1;
680 record_unwind_protect (recursive_edit_unwind
,
682 && current_buffer
!= XBUFFER (XWINDOW (selected_window
)->buffer
))
686 return unbind_to (count
, Qnil
);
690 recursive_edit_unwind (buffer
)
694 Fset_buffer (buffer
);
696 command_loop_level
--;
697 update_mode_lines
= 1;
705 Vstandard_output
= Qt
;
706 Vstandard_input
= Qt
;
707 Vexecuting_macro
= Qnil
;
708 if (!current_perdisplay
)
710 current_perdisplay
->Vprefix_arg
= Qnil
;
711 cmd_error_internal (data
, 0);
715 Vinhibit_quit
= Qnil
;
716 #ifdef MULTI_PERDISPLAY
717 current_perdisplay
= 0;
720 return make_number (0);
723 cmd_error_internal (data
, context
)
727 Lisp_Object errmsg
, tail
, errname
, file_error
;
734 echo_area_glyphs
= 0;
736 /* If the window system or terminal frame hasn't been initialized
737 yet, or we're not interactive, it's best to dump this message out
738 to stderr and exit. */
739 if (! FRAME_MESSAGE_BUF (selected_frame
)
741 stream
= Qexternal_debugging_output
;
750 write_string_1 (context
, -1, stream
);
752 errname
= Fcar (data
);
754 if (EQ (errname
, Qerror
))
757 if (!CONSP (data
)) data
= Qnil
;
758 errmsg
= Fcar (data
);
763 errmsg
= Fget (errname
, Qerror_message
);
764 file_error
= Fmemq (Qfile_error
,
765 Fget (errname
, Qerror_conditions
));
768 /* Print an error message including the data items.
769 This is done by printing it into a scratch buffer
770 and then making a copy of the text in the buffer. */
772 if (!CONSP (data
)) data
= Qnil
;
776 /* For file-error, make error message by concatenating
777 all the data items. They are all strings. */
778 if (!NILP (file_error
) && !NILP (tail
))
779 errmsg
= XCONS (tail
)->car
, tail
= XCONS (tail
)->cdr
;
781 if (STRINGP (errmsg
))
782 Fprinc (errmsg
, stream
);
784 write_string_1 ("peculiar error", -1, stream
);
786 for (i
= 0; CONSP (tail
); tail
= Fcdr (tail
), i
++)
788 write_string_1 (i
? ", " : ": ", 2, stream
);
789 if (!NILP (file_error
))
790 Fprinc (Fcar (tail
), stream
);
792 Fprin1 (Fcar (tail
), stream
);
796 /* If the window system or terminal frame hasn't been initialized
797 yet, or we're in -batch mode, this error should cause Emacs to exit. */
798 if (! FRAME_MESSAGE_BUF (selected_frame
)
802 Fkill_emacs (make_number (-1));
806 Lisp_Object
command_loop_1 ();
807 Lisp_Object
command_loop_2 ();
808 Lisp_Object
top_level_1 ();
810 /* Entry to editor-command-loop.
811 This level has the catches for exiting/returning to editor command loop.
812 It returns nil to exit recursive edit, t to abort it. */
817 if (command_loop_level
> 0 || minibuf_level
> 0)
819 return internal_catch (Qexit
, command_loop_2
, Qnil
);
824 internal_catch (Qtop_level
, top_level_1
, Qnil
);
825 internal_catch (Qtop_level
, command_loop_2
, Qnil
);
827 /* End of file in -batch run causes exit here. */
833 /* Here we catch errors in execution of commands within the
834 editing loop, and reenter the editing loop.
835 When there is an error, cmd_error runs and returns a non-nil
836 value to us. A value of nil means that cmd_loop_1 itself
837 returned due to end of file (or end of kbd macro). */
842 register Lisp_Object val
;
845 val
= internal_condition_case (command_loop_1
, Qerror
, cmd_error
);
854 return Feval (Vtop_level
);
860 /* On entry to the outer level, run the startup file */
861 if (!NILP (Vtop_level
))
862 internal_condition_case (top_level_2
, Qerror
, cmd_error
);
863 else if (!NILP (Vpurify_flag
))
864 message ("Bare impure Emacs (standard Lisp code not loaded)");
866 message ("Bare Emacs (standard Lisp code not loaded)");
870 DEFUN ("top-level", Ftop_level
, Stop_level
, 0, 0, "",
871 "Exit all recursive editing levels.")
874 Fthrow (Qtop_level
, Qnil
);
877 DEFUN ("exit-recursive-edit", Fexit_recursive_edit
, Sexit_recursive_edit
, 0, 0, "",
878 "Exit from the innermost recursive edit or minibuffer.")
881 if (command_loop_level
> 0 || minibuf_level
> 0)
882 Fthrow (Qexit
, Qnil
);
884 error ("No recursive edit is in progress");
887 DEFUN ("abort-recursive-edit", Fabort_recursive_edit
, Sabort_recursive_edit
, 0, 0, "",
888 "Abort the command that requested this recursive edit or minibuffer input.")
891 if (command_loop_level
> 0 || minibuf_level
> 0)
894 error ("No recursive edit is in progress");
897 /* This is the actual command reading loop,
898 sans error-handling encapsulation. */
900 Lisp_Object
Fcommand_execute ();
901 static int read_key_sequence ();
902 static void safe_run_hooks ();
907 Lisp_Object cmd
, tem
;
910 Lisp_Object keybuf
[30];
915 struct buffer
*prev_buffer
;
916 PERDISPLAY
*global_perdisplay
= current_perdisplay
;
918 Vdeactivate_mark
= Qnil
;
919 waiting_for_input
= 0;
924 this_command_key_count
= 0;
926 /* Make sure this hook runs after commands that get errors and
927 throw to top level. */
928 /* Note that the value cell will never directly contain nil
929 if the symbol is a local variable. */
930 if (!NILP (XSYMBOL (Qpost_command_hook
)->value
) && !NILP (Vrun_hooks
))
931 safe_run_hooks (Qpost_command_hook
);
933 if (!NILP (Vdeferred_action_list
))
934 call0 (Vdeferred_action_function
);
936 /* Do this after running Vpost_command_hook, for consistency. */
937 last_command
= this_command
;
941 /* Make sure the current window's buffer is selected. */
942 if (XBUFFER (XWINDOW (selected_window
)->buffer
) != current_buffer
)
943 set_buffer_internal (XBUFFER (XWINDOW (selected_window
)->buffer
));
945 /* Display any malloc warning that just came out. Use while because
946 displaying one warning can cause another. */
948 while (pending_malloc_warning
)
949 display_malloc_warning ();
953 Vdeactivate_mark
= Qnil
;
955 /* If minibuffer on and echo area in use,
956 wait 2 sec and redraw minibuffer. */
958 if (minibuf_level
&& echo_area_glyphs
)
960 /* Bind inhibit-quit to t so that C-g gets read in
961 rather than quitting back to the minibuffer. */
962 int count
= specpdl_ptr
- specpdl
;
963 specbind (Qinhibit_quit
, Qt
);
964 Fsit_for (make_number (2), Qnil
, Qnil
);
965 unbind_to (count
, Qnil
);
967 echo_area_glyphs
= 0;
969 if (!NILP (Vquit_flag
))
972 Vunread_command_events
= Fcons (make_number (quit_char
), Qnil
);
977 alloca (0); /* Cause a garbage collection now */
978 /* Since we can free the most stuff here. */
979 #endif /* C_ALLOCA */
983 /* Select the frame that the last event came from. Usually,
984 switch-frame events will take care of this, but if some lisp
985 code swallows a switch-frame event, we'll fix things up here.
986 Is this a good idea? */
987 if (FRAMEP (internal_last_event_frame
)
988 && XFRAME (internal_last_event_frame
) != selected_frame
)
989 Fselect_frame (internal_last_event_frame
, Qnil
);
992 /* If it has changed current-menubar from previous value,
993 really recompute the menubar from the value. */
994 if (! NILP (Vlucid_menu_bar_dirty_flag
)
995 && !NILP (Ffboundp (Qrecompute_lucid_menubar
)))
996 call0 (Qrecompute_lucid_menubar
);
998 /* Read next key sequence; i gets its length. */
999 i
= read_key_sequence (keybuf
, sizeof keybuf
/ sizeof keybuf
[0], Qnil
, 0);
1003 /* Now we have read a key sequence of length I,
1004 or else I is 0 and we found end of file. */
1006 if (i
== 0) /* End of file -- happens only in */
1007 return Qnil
; /* a kbd macro, at the end. */
1008 /* -1 means read_key_sequence got a menu that was rejected.
1009 Just loop around and read another command. */
1013 this_command_key_count
= 0;
1017 last_command_char
= keybuf
[i
- 1];
1019 /* If the previous command tried to force a specific window-start,
1020 forget about that, in case this command moves point far away
1021 from that position. */
1022 XWINDOW (selected_window
)->force_start
= Qnil
;
1024 cmd
= read_key_sequence_cmd
;
1025 if (!NILP (Vexecuting_macro
))
1027 if (!NILP (Vquit_flag
))
1029 Vexecuting_macro
= Qt
;
1030 QUIT
; /* Make some noise. */
1031 /* Will return since macro now empty. */
1035 /* Do redisplay processing after this command except in special
1036 cases identified below that set no_redisplay to 1.
1037 (actually, there's currently no way to prevent the redisplay,
1038 and no_redisplay is ignored.
1039 Perhaps someday we will really implement it. */
1042 prev_buffer
= current_buffer
;
1043 prev_modiff
= MODIFF
;
1044 last_point_position
= PT
;
1045 XSETBUFFER (last_point_position_buffer
, prev_buffer
);
1047 /* Execute the command. */
1050 /* Note that the value cell will never directly contain nil
1051 if the symbol is a local variable. */
1052 if (!NILP (XSYMBOL (Qpre_command_hook
)->value
) && !NILP (Vrun_hooks
))
1053 safe_run_hooks (Qpre_command_hook
);
1055 if (NILP (this_command
))
1057 /* nil means key is undefined. */
1059 defining_kbd_macro
= 0;
1060 update_mode_lines
= 1;
1061 current_perdisplay
->Vprefix_arg
= Qnil
;
1066 if (NILP (current_perdisplay
->Vprefix_arg
) && ! no_direct
)
1068 /* Recognize some common commands in common situations and
1069 do them directly. */
1070 if (EQ (this_command
, Qforward_char
) && PT
< ZV
)
1072 struct Lisp_Vector
*dp
1073 = window_display_table (XWINDOW (selected_window
));
1074 lose
= FETCH_CHAR (PT
);
1077 ? (VECTORP (DISP_CHAR_VECTOR (dp
, lose
))
1078 ? XVECTOR (DISP_CHAR_VECTOR (dp
, lose
))->size
== 1
1079 : (NILP (DISP_CHAR_VECTOR (dp
, lose
))
1080 && (lose
>= 0x20 && lose
< 0x7f)))
1081 : (lose
>= 0x20 && lose
< 0x7f))
1082 && (XFASTINT (XWINDOW (selected_window
)->last_modified
)
1084 && (XFASTINT (XWINDOW (selected_window
)->last_point
)
1086 && !windows_or_buffers_changed
1087 && EQ (current_buffer
->selective_display
, Qnil
)
1088 && !detect_input_pending ()
1089 && NILP (Vexecuting_macro
))
1090 no_redisplay
= direct_output_forward_char (1);
1093 else if (EQ (this_command
, Qbackward_char
) && PT
> BEGV
)
1095 struct Lisp_Vector
*dp
1096 = window_display_table (XWINDOW (selected_window
));
1098 lose
= FETCH_CHAR (PT
);
1100 ? (VECTORP (DISP_CHAR_VECTOR (dp
, lose
))
1101 ? XVECTOR (DISP_CHAR_VECTOR (dp
, lose
))->size
== 1
1102 : (NILP (DISP_CHAR_VECTOR (dp
, lose
))
1103 && (lose
>= 0x20 && lose
< 0x7f)))
1104 : (lose
>= 0x20 && lose
< 0x7f))
1105 && (XFASTINT (XWINDOW (selected_window
)->last_modified
)
1107 && (XFASTINT (XWINDOW (selected_window
)->last_point
)
1109 && !windows_or_buffers_changed
1110 && EQ (current_buffer
->selective_display
, Qnil
)
1111 && !detect_input_pending ()
1112 && NILP (Vexecuting_macro
))
1113 no_redisplay
= direct_output_forward_char (-1);
1116 else if (EQ (this_command
, Qself_insert_command
)
1117 /* Try this optimization only on ascii keystrokes. */
1118 && INTEGERP (last_command_char
))
1120 unsigned char c
= XINT (last_command_char
);
1123 if (NILP (Vexecuting_macro
)
1124 && !EQ (minibuf_window
, selected_window
))
1126 if (!nonundocount
|| nonundocount
>= 20)
1133 lose
= ((XFASTINT (XWINDOW (selected_window
)->last_modified
)
1135 || (XFASTINT (XWINDOW (selected_window
)->last_point
)
1137 || MODIFF
<= SAVE_MODIFF
1138 || windows_or_buffers_changed
1139 || !EQ (current_buffer
->selective_display
, Qnil
)
1140 || detect_input_pending ()
1141 || !NILP (Vexecuting_macro
));
1142 value
= internal_self_insert (c
, 0);
1149 && (PT
== ZV
|| FETCH_CHAR (PT
) == '\n'))
1151 struct Lisp_Vector
*dp
1152 = window_display_table (XWINDOW (selected_window
));
1159 obj
= DISP_CHAR_VECTOR (dp
, lose
);
1162 /* Do it only for char codes
1163 that by default display as themselves. */
1164 if (lose
>= 0x20 && lose
<= 0x7e)
1165 no_redisplay
= direct_output_for_insert (lose
);
1167 else if (VECTORP (obj
)
1168 && XVECTOR (obj
)->size
== 1
1169 && (obj
= XVECTOR (obj
)->contents
[0],
1171 /* Insist face not specified in glyph. */
1172 && (XINT (obj
) & ((-1) << 8)) == 0)
1174 = direct_output_for_insert (XINT (obj
));
1178 if (lose
>= 0x20 && lose
<= 0x7e)
1179 no_redisplay
= direct_output_for_insert (lose
);
1186 /* Here for a command that isn't executed directly */
1189 if (NILP (current_perdisplay
->Vprefix_arg
))
1191 Fcommand_execute (this_command
, Qnil
);
1196 /* Note that the value cell will never directly contain nil
1197 if the symbol is a local variable. */
1198 if (!NILP (XSYMBOL (Qpost_command_hook
)->value
) && !NILP (Vrun_hooks
))
1199 safe_run_hooks (Qpost_command_hook
);
1201 if (!NILP (Vdeferred_action_list
))
1202 safe_run_hooks (Qdeferred_action_function
);
1204 /* If there is a prefix argument,
1205 1) We don't want last_command to be ``universal-argument''
1206 (that would be dumb), so don't set last_command,
1207 2) we want to leave echoing on so that the prefix will be
1208 echoed as part of this key sequence, so don't call
1210 3) we want to leave this_command_key_count non-zero, so that
1211 read_char will realize that it is re-reading a character, and
1212 not echo it a second time. */
1213 if (NILP (current_perdisplay
->Vprefix_arg
))
1215 last_command
= this_command
;
1217 this_command_key_count
= 0;
1220 if (!NILP (current_buffer
->mark_active
) && !NILP (Vrun_hooks
))
1222 if (!NILP (Vdeactivate_mark
) && !NILP (Vtransient_mark_mode
))
1224 current_buffer
->mark_active
= Qnil
;
1225 call1 (Vrun_hooks
, intern ("deactivate-mark-hook"));
1227 else if (current_buffer
!= prev_buffer
|| MODIFF
!= prev_modiff
)
1228 call1 (Vrun_hooks
, intern ("activate-mark-hook"));
1232 /* Install chars successfully executed in kbd macro. */
1234 if (defining_kbd_macro
&& NILP (current_perdisplay
->Vprefix_arg
))
1235 finalize_kbd_macro_chars ();
1237 #ifdef MULTI_PERDISPLAY
1238 current_perdisplay
= global_perdisplay
;
1243 /* If we get an error while running the hook, cause the hook variable
1244 to be nil. Also inhibit quits, so that C-g won't cause the hook
1245 to mysteriously evaporate. */
1247 safe_run_hooks (hook
)
1251 int count
= specpdl_ptr
- specpdl
;
1252 specbind (Qinhibit_quit
, Qt
);
1254 /* We read and set the variable with functions,
1255 in case it's buffer-local. */
1256 value
= Vcommand_hook_internal
= Fsymbol_value (hook
);
1258 call1 (Vrun_hooks
, Qcommand_hook_internal
);
1261 unbind_to (count
, Qnil
);
1264 /* Number of seconds between polling for input. */
1267 /* Nonzero means polling for input is temporarily suppressed. */
1268 int poll_suppress_count
;
1270 /* Nonzero if polling_for_input is actually being used. */
1271 int polling_for_input
;
1273 #ifdef POLL_FOR_INPUT
1275 /* Handle an alarm once each second and read pending input
1276 so as to handle a C-g if it comces in. */
1279 input_poll_signal ()
1281 if (interrupt_input_blocked
== 0
1282 && !waiting_for_input
)
1283 read_avail_input (0);
1284 signal (SIGALRM
, input_poll_signal
);
1285 alarm (polling_period
);
1290 /* Begin signals to poll for input, if they are appropriate.
1291 This function is called unconditionally from various places. */
1295 #ifdef POLL_FOR_INPUT
1296 if (read_socket_hook
&& !interrupt_input
)
1298 poll_suppress_count
--;
1299 if (poll_suppress_count
== 0)
1301 signal (SIGALRM
, input_poll_signal
);
1302 polling_for_input
= 1;
1303 alarm (polling_period
);
1309 /* Nonzero if we are using polling to handle input asynchronously. */
1312 input_polling_used ()
1314 #ifdef POLL_FOR_INPUT
1315 return read_socket_hook
&& !interrupt_input
;
1321 /* Turn off polling. */
1325 #ifdef POLL_FOR_INPUT
1326 if (read_socket_hook
&& !interrupt_input
)
1328 if (poll_suppress_count
== 0)
1330 polling_for_input
= 0;
1333 poll_suppress_count
++;
1338 /* Set the value of poll_suppress_count to COUNT
1339 and start or stop polling accordingly. */
1342 set_poll_suppress_count (count
)
1345 #ifdef POLL_FOR_INPUT
1346 if (count
== 0 && poll_suppress_count
!= 0)
1348 poll_suppress_count
= 1;
1351 else if (count
!= 0 && poll_suppress_count
== 0)
1355 poll_suppress_count
= count
;
1359 /* Bind polling_period to a value at least N.
1360 But don't decrease it. */
1362 bind_polling_period (n
)
1365 #ifdef POLL_FOR_INPUT
1366 int new = polling_period
;
1372 specbind (Qpolling_period
, make_number (new));
1373 /* Start a new alarm with the new period. */
1378 /* Applying the control modifier to CHARACTER. */
1383 /* Save the upper bits here. */
1384 int upper
= c
& ~0177;
1388 /* Everything in the columns containing the upper-case letters
1389 denotes a control character. */
1390 if (c
>= 0100 && c
< 0140)
1394 /* Set the shift modifier for a control char
1395 made from a shifted letter. But only for letters! */
1396 if (oc
>= 'A' && oc
<= 'Z')
1397 c
|= shift_modifier
;
1400 /* The lower-case letters denote control characters too. */
1401 else if (c
>= 'a' && c
<= 'z')
1404 /* Include the bits for control and shift
1405 only if the basic ASCII code can't indicate them. */
1409 /* Replace the high bits. */
1410 c
|= (upper
& ~ctrl_modifier
);
1417 /* Input of single characters from keyboard */
1419 Lisp_Object
print_help ();
1420 static Lisp_Object
kbd_buffer_get_event ();
1421 static void record_char ();
1423 /* read a character from the keyboard; call the redisplay if needed */
1424 /* commandflag 0 means do not do auto-saving, but do do redisplay.
1425 -1 means do not do redisplay, but do do autosaving.
1428 /* The arguments MAPS and NMAPS are for menu prompting.
1429 MAPS is an array of keymaps; NMAPS is the length of MAPS.
1431 PREV_EVENT is the previous input event, or nil if we are reading
1432 the first event of a key sequence.
1434 If USED_MOUSE_MENU is non-zero, then we set *USED_MOUSE_MENU to 1
1435 if we used a mouse menu to read the input, or zero otherwise. If
1436 USED_MOUSE_MENU is zero, *USED_MOUSE_MENU is left alone.
1438 Value is t if we showed a menu and the user rejected it. */
1441 read_char (commandflag
, nmaps
, maps
, prev_event
, used_mouse_menu
)
1445 Lisp_Object prev_event
;
1446 int *used_mouse_menu
;
1448 register Lisp_Object c
;
1451 int key_already_recorded
= 0;
1452 PERDISPLAY
*perd
= get_perdisplay (selected_frame
);
1453 Lisp_Object also_record
;
1456 if (CONSP (Vunread_command_events
))
1458 c
= XCONS (Vunread_command_events
)->car
;
1459 Vunread_command_events
= XCONS (Vunread_command_events
)->cdr
;
1461 if (this_command_key_count
== 0)
1467 if (unread_command_char
!= -1)
1469 XSETINT (c
, unread_command_char
);
1470 unread_command_char
= -1;
1472 if (this_command_key_count
== 0)
1478 if (!NILP (Vexecuting_macro
))
1481 /* We set this to Qmacro; since that's not a frame, nobody will
1482 try to switch frames on us, and the selected window will
1485 Since this event came from a macro, it would be misleading to
1486 leave internal_last_event_frame set to wherever the last
1487 real event came from. Normally, a switch-frame event selects
1488 internal_last_event_frame after each command is read, but
1489 events read from a macro should never cause a new frame to be
1491 Vlast_event_frame
= internal_last_event_frame
= Qmacro
;
1494 /* Exit the macro if we are at the end.
1495 Also, some things replace the macro with t
1496 to force an early exit. */
1497 if (EQ (Vexecuting_macro
, Qt
)
1498 || executing_macro_index
>= XFASTINT (Flength (Vexecuting_macro
)))
1504 c
= Faref (Vexecuting_macro
, make_number (executing_macro_index
));
1505 if (STRINGP (Vexecuting_macro
)
1506 && (XINT (c
) & 0x80))
1507 XSETFASTINT (c
, CHAR_META
| (XINT (c
) & ~0x80));
1509 executing_macro_index
++;
1514 if (!NILP (unread_switch_frame
))
1516 c
= unread_switch_frame
;
1517 unread_switch_frame
= Qnil
;
1519 /* This event should make it into this_command_keys, and get echoed
1520 again, so we go to reread_first, rather than reread. */
1524 /* Don't bother updating menu bars while doing mouse tracking.
1525 We get events very rapidly then, and the menu bar won't be changing.
1526 We do update the menu bar once on entry to Ftrack_mouse. */
1527 if (commandflag
> 0 && !input_pending
&& !detect_input_pending ())
1528 prepare_menu_bars ();
1530 /* Save outer setjmp data, in case called recursively. */
1531 save_getcjmp (save_jump
);
1535 if (commandflag
>= 0 && !input_pending
&& !detect_input_pending ())
1538 if (_setjmp (getcjmp
))
1540 XSETINT (c
, quit_char
);
1542 XSETFRAME (internal_last_event_frame
, selected_frame
);
1543 Vlast_event_frame
= internal_last_event_frame
;
1545 /* If we report the quit char as an event,
1546 don't do so more than once. */
1547 if (!NILP (Vinhibit_quit
))
1553 /* Message turns off echoing unless more keystrokes turn it on again. */
1554 if (echo_area_glyphs
&& *echo_area_glyphs
&& echo_area_glyphs
!= perd
->echobuf
)
1557 /* If already echoing, continue. */
1560 /* Try reading a character via menu prompting in the minibuf.
1561 Try this before the sit-for, because the sit-for
1562 would do the wrong thing if we are supposed to do
1563 menu prompting. If EVENT_HAS_PARAMETERS then we are reading
1564 after a mouse event so don't try a minibuf menu. */
1566 if (nmaps
> 0 && INTERACTIVE
1567 && !NILP (prev_event
) && ! EVENT_HAS_PARAMETERS (prev_event
)
1568 /* Don't bring up a menu if we already have another event. */
1569 && NILP (Vunread_command_events
)
1570 && unread_command_char
< 0
1571 && !detect_input_pending ())
1573 c
= read_char_minibuf_menu_prompt (commandflag
, nmaps
, maps
);
1576 key_already_recorded
= 1;
1581 /* If in middle of key sequence and minibuffer not active,
1582 start echoing if enough time elapses. */
1583 if (minibuf_level
== 0 && !perd
->immediate_echo
&& this_command_key_count
> 0
1585 && echo_keystrokes
> 0
1586 && (echo_area_glyphs
== 0 || *echo_area_glyphs
== 0))
1590 /* After a mouse event, start echoing right away.
1591 This is because we are probably about to display a menu,
1592 and we don't want to delay before doing so. */
1593 if (EVENT_HAS_PARAMETERS (prev_event
))
1597 tem0
= sit_for (echo_keystrokes
, 0, 1, 1);
1603 /* Maybe auto save due to number of keystrokes or idle time. */
1605 if (commandflag
!= 0
1606 && auto_save_interval
> 0
1607 && num_nonmacro_input_chars
- last_auto_save
> max (auto_save_interval
, 20)
1608 && !detect_input_pending ())
1611 save_getcjmp (temp
);
1612 Fdo_auto_save (Qnil
, Qnil
);
1613 /* Hooks can actually change some buffers in auto save. */
1615 restore_getcjmp (temp
);
1618 /* Try reading using an X menu.
1619 This is never confused with reading using the minibuf
1620 because the recursive call of read_char in read_char_minibuf_menu_prompt
1621 does not pass on any keymaps. */
1622 if (nmaps
> 0 && INTERACTIVE
1623 && !NILP (prev_event
) && EVENT_HAS_PARAMETERS (prev_event
)
1624 /* Don't bring up a menu if we already have another event. */
1625 && NILP (Vunread_command_events
)
1626 && unread_command_char
< 0)
1627 c
= read_char_x_menu_prompt (nmaps
, maps
, prev_event
, used_mouse_menu
);
1629 /* Slow down auto saves logarithmically in size of current buffer,
1630 and garbage collect while we're at it. */
1631 if (INTERACTIVE
&& NILP (c
))
1633 int delay_level
, buffer_size
;
1635 if (! MINI_WINDOW_P (XWINDOW (selected_window
)))
1636 last_non_minibuf_size
= Z
- BEG
;
1637 buffer_size
= (last_non_minibuf_size
>> 8) + 1;
1639 while (buffer_size
> 64)
1640 delay_level
++, buffer_size
-= buffer_size
>> 2;
1641 if (delay_level
< 4) delay_level
= 4;
1642 /* delay_level is 4 for files under around 50k, 7 at 100k,
1643 9 at 200k, 11 at 300k, and 12 at 500k. It is 15 at 1 meg. */
1645 /* Auto save if enough time goes by without input. */
1646 if (commandflag
!= 0
1647 && num_nonmacro_input_chars
> last_auto_save
1648 && INTEGERP (Vauto_save_timeout
)
1649 && XINT (Vauto_save_timeout
) > 0)
1652 int delay
= delay_level
* XFASTINT (Vauto_save_timeout
) / 4;
1653 tem0
= sit_for (delay
, 0, 1, 1);
1657 save_getcjmp (temp
);
1658 Fdo_auto_save (Qnil
, Qnil
);
1659 restore_getcjmp (temp
);
1661 /* If we have auto-saved and there is still no input
1662 available, garbage collect if there has been enough
1663 consing going on to make it worthwhile. */
1664 if (!detect_input_pending ()
1665 && consing_since_gc
> gc_cons_threshold
/ 2)
1666 Fgarbage_collect ();
1667 /* prepare_menu_bars isn't safe here, but it should
1668 also be unnecessary. */
1674 /* Actually read a character, waiting if necessary. */
1677 c
= kbd_buffer_get_event ();
1680 if (commandflag
>= 0 && !input_pending
&& !detect_input_pending ())
1682 prepare_menu_bars ();
1687 /* Terminate Emacs in batch mode if at eof. */
1688 if (noninteractive
&& INTEGERP (c
) && XINT (c
) < 0)
1689 Fkill_emacs (make_number (1));
1693 /* Add in any extra modifiers, where appropriate. */
1694 if ((extra_keyboard_modifiers
& CHAR_CTL
)
1695 || ((extra_keyboard_modifiers
& 0177) < ' '
1696 && (extra_keyboard_modifiers
& 0177) != 0))
1697 XSETINT (c
, make_ctrl_char (XINT (c
)));
1699 /* Transfer any other modifier bits directly from
1700 extra_keyboard_modifiers to c. Ignore the actual character code
1701 in the low 16 bits of extra_keyboard_modifiers. */
1702 XSETINT (c
, XINT (c
) | (extra_keyboard_modifiers
& ~0xff7f & ~CHAR_CTL
));
1707 restore_getcjmp (save_jump
);
1711 /* Buffer switch events are only for internal wakeups
1712 so don't show them to the user. */
1716 if (key_already_recorded
)
1719 /* Wipe the echo area. */
1720 echo_area_glyphs
= 0;
1722 /* Handle things that only apply to characters. */
1725 /* If kbd_buffer_get_event gave us an EOF, return that. */
1729 if (STRINGP (Vkeyboard_translate_table
)
1730 && XSTRING (Vkeyboard_translate_table
)->size
> XFASTINT (c
))
1731 XSETINT (c
, XSTRING (Vkeyboard_translate_table
)->data
[XFASTINT (c
)]);
1734 /* If this event is a mouse click in the menu bar,
1735 return just menu-bar for now. Modify the mouse click event
1736 so we won't do this twice, then queue it up. */
1737 if (EVENT_HAS_PARAMETERS (c
)
1738 && CONSP (XCONS (c
)->cdr
)
1739 && CONSP (EVENT_START (c
))
1740 && CONSP (XCONS (EVENT_START (c
))->cdr
))
1744 posn
= POSN_BUFFER_POSN (EVENT_START (c
));
1745 /* Handle menu-bar events:
1746 insert the dummy prefix event `menu-bar'. */
1747 if (EQ (posn
, Qmenu_bar
))
1749 /* Change menu-bar to (menu-bar) as the event "position". */
1750 POSN_BUFFER_POSN (EVENT_START (c
)) = Fcons (posn
, Qnil
);
1753 Vunread_command_events
= Fcons (c
, Vunread_command_events
);
1759 if (! NILP (also_record
))
1760 record_char (also_record
);
1765 /* Don't echo mouse motion events. */
1767 && ! (EVENT_HAS_PARAMETERS (c
)
1768 && EQ (EVENT_HEAD_KIND (EVENT_HEAD (c
)), Qmouse_movement
)))
1771 if (! NILP (also_record
))
1772 echo_char (also_record
);
1775 /* Record this character as part of the current key. */
1776 add_command_key (c
);
1777 if (! NILP (also_record
))
1778 add_command_key (also_record
);
1780 /* Re-reading in the middle of a command */
1782 last_input_char
= c
;
1785 /* Process the help character specially if enabled */
1786 if (EQ (c
, Vhelp_char
) && !NILP (Vhelp_form
))
1789 count
= specpdl_ptr
- specpdl
;
1791 record_unwind_protect (Fset_window_configuration
,
1792 Fcurrent_window_configuration (Qnil
));
1794 tem0
= Feval (Vhelp_form
);
1796 internal_with_output_to_temp_buffer ("*Help*", print_help
, tem0
);
1800 c
= read_char (0, 0, 0, Qnil
, 0);
1801 while (BUFFERP (c
));
1802 /* Remove the help from the frame */
1803 unbind_to (count
, Qnil
);
1804 prepare_menu_bars ();
1806 if (EQ (c
, make_number (040)))
1810 c
= read_char (0, 0, 0, Qnil
, 0);
1811 while (BUFFERP (c
));
1818 /* Record the input event C in various ways. */
1825 XVECTOR (recent_keys
)->contents
[recent_keys_index
] = c
;
1826 if (++recent_keys_index
>= NUM_RECENT_KEYS
)
1827 recent_keys_index
= 0;
1829 /* Write c to the dribble file. If c is a lispy event, write
1830 the event's symbol to the dribble file, in <brackets>. Bleaugh.
1831 If you, dear reader, have a better idea, you've got the source. :-) */
1836 if (XUINT (c
) < 0x100)
1837 putc (XINT (c
), dribble
);
1839 fprintf (dribble
, " 0x%x", XUINT (c
));
1843 Lisp_Object dribblee
;
1845 /* If it's a structured event, take the event header. */
1846 dribblee
= EVENT_HEAD (c
);
1848 if (SYMBOLP (dribblee
))
1850 putc ('<', dribble
);
1851 fwrite (XSYMBOL (dribblee
)->name
->data
, sizeof (char),
1852 XSYMBOL (dribblee
)->name
->size
,
1854 putc ('>', dribble
);
1861 store_kbd_macro_char (c
);
1863 num_nonmacro_input_chars
++;
1870 struct buffer
*old
= current_buffer
;
1871 Fprinc (object
, Qnil
);
1872 set_buffer_internal (XBUFFER (Vstandard_output
));
1873 call0 (intern ("help-mode"));
1874 set_buffer_internal (old
);
1878 /* Copy out or in the info on where C-g should throw to.
1879 This is used when running Lisp code from within get_char,
1880 in case get_char is called recursively.
1881 See read_process_output. */
1886 bcopy (getcjmp
, temp
, sizeof getcjmp
);
1889 restore_getcjmp (temp
)
1892 bcopy (temp
, getcjmp
, sizeof getcjmp
);
1898 /* Restore mouse tracking enablement. See Ftrack_mouse for the only use
1899 of this function. */
1902 tracking_off (old_value
)
1903 Lisp_Object old_value
;
1905 do_mouse_tracking
= old_value
;
1906 if (NILP (old_value
))
1908 /* Redisplay may have been preempted because there was input
1909 available, and it assumes it will be called again after the
1910 input has been processed. If the only input available was
1911 the sort that we have just disabled, then we need to call
1913 if (!readable_events ())
1915 prepare_menu_bars ();
1916 redisplay_preserve_echo_area ();
1917 get_input_pending (&input_pending
);
1922 DEFUN ("track-mouse", Ftrack_mouse
, Strack_mouse
, 0, UNEVALLED
, 0,
1923 "Evaluate BODY with mouse movement events enabled.\n\
1924 Within a `track-mouse' form, mouse motion generates input events that\n\
1925 you can read with `read-event'.\n\
1926 Normally, mouse motion is ignored.")
1930 int count
= specpdl_ptr
- specpdl
;
1933 record_unwind_protect (tracking_off
, do_mouse_tracking
);
1935 if (!input_pending
&& !detect_input_pending ())
1936 prepare_menu_bars ();
1938 XSETFRAME (do_mouse_tracking
, selected_frame
);
1940 val
= Fprogn (args
);
1941 return unbind_to (count
, val
);
1944 #endif /* HAVE_MOUSE */
1946 /* Low level keyboard/mouse input.
1947 kbd_buffer_store_event places events in kbd_buffer, and
1948 kbd_buffer_get_event retrieves them.
1949 mouse_moved indicates when the mouse has moved again, and
1950 *mouse_position_hook provides the mouse position. */
1953 find_active_event_queue ()
1956 perd
= &the_only_perdisplay
;
1957 /* FOR_ALL_PERDISPLAYS (perd) */
1959 if (perd
->kbd_fetch_ptr
!= perd
->kbd_store_ptr
)
1965 /* Return true iff there are any events in the queue that read-char
1966 would return. If this returns false, a read-char would block. */
1970 return find_active_event_queue () != NULL
|| MOUSE_ACTIVITY_AVAILABLE
;
1973 /* Set this for debugging, to have a way to get out */
1976 /* Store an event obtained at interrupt level into kbd_buffer, fifo */
1979 kbd_buffer_store_event (event
)
1980 register struct input_event
*event
;
1982 PERDISPLAY
*perd
= get_perdisplay (XFRAME (event
->frame_or_window
));
1984 if (event
->kind
== no_event
)
1987 if (event
->kind
== ascii_keystroke
)
1989 register int c
= event
->code
& 0377;
1991 if (event
->modifiers
& ctrl_modifier
)
1992 c
= make_ctrl_char (c
);
1994 c
|= (event
->modifiers
1995 & (meta_modifier
| alt_modifier
1996 | hyper_modifier
| super_modifier
));
2000 extern SIGTYPE
interrupt_signal ();
2003 /* If this results in a quit_char being returned to Emacs as
2004 input, set Vlast_event_frame properly. If this doesn't
2005 get returned to Emacs as an event, the next event read
2006 will set Vlast_event_frame again, so this is safe to do. */
2010 focus
= FRAME_FOCUS_FRAME (XFRAME (event
->frame_or_window
));
2012 internal_last_event_frame
= event
->frame_or_window
;
2014 internal_last_event_frame
= focus
;
2015 Vlast_event_frame
= internal_last_event_frame
;
2019 last_event_timestamp
= event
->timestamp
;
2020 interrupt_signal ();
2024 if (c
&& c
== stop_character
)
2031 if (perd
->kbd_store_ptr
- perd
->kbd_buffer
== KBD_BUFFER_SIZE
)
2032 perd
->kbd_store_ptr
= perd
->kbd_buffer
;
2034 /* Don't let the very last slot in the buffer become full,
2035 since that would make the two pointers equal,
2036 and that is indistinguishable from an empty buffer.
2037 Discard the event if it would fill the last slot. */
2038 if (perd
->kbd_fetch_ptr
- 1 != perd
->kbd_store_ptr
)
2040 volatile struct input_event
*sp
= perd
->kbd_store_ptr
;
2041 sp
->kind
= event
->kind
;
2042 if (event
->kind
== selection_request_event
)
2044 /* We must not use the ordinary copying code for this case,
2045 since `part' is an enum and copying it might not copy enough
2047 bcopy (event
, (char *) sp
, sizeof (*event
));
2051 sp
->code
= event
->code
;
2052 sp
->part
= event
->part
;
2053 sp
->frame_or_window
= event
->frame_or_window
;
2054 sp
->modifiers
= event
->modifiers
;
2057 sp
->timestamp
= event
->timestamp
;
2059 (XVECTOR (perd
->kbd_buffer_frame_or_window
)->contents
[perd
->kbd_store_ptr
2061 = event
->frame_or_window
);
2063 perd
->kbd_store_ptr
++;
2067 /* Read one event from the event buffer, waiting if necessary.
2068 The value is a Lisp object representing the event.
2069 The value is nil for an event that should be ignored,
2070 or that was handled here.
2071 We always read and discard one event. */
2074 kbd_buffer_get_event ()
2087 /* Wait until there is input available. */
2090 perd
= find_active_event_queue ();
2091 if (perd
|| MOUSE_ACTIVITY_AVAILABLE
)
2094 /* If the quit flag is set, then read_char will return
2095 quit_char, so that counts as "available input." */
2096 if (!NILP (Vquit_flag
))
2097 quit_throw_to_read_char ();
2099 /* One way or another, wait until input is available; then, if
2100 interrupt handlers have not read it, read it now. */
2103 wait_for_kbd_input ();
2105 /* Note SIGIO has been undef'd if FIONREAD is missing. */
2109 perd
= find_active_event_queue ();
2110 if (!(perd
|| MOUSE_ACTIVITY_AVAILABLE
))
2112 Lisp_Object minus_one
;
2114 XSETINT (minus_one
, -1);
2115 wait_reading_process_input (0, 0, minus_one
, 1);
2117 if (!interrupt_input
&& find_active_event_queue () == NULL
)
2118 /* Pass 1 for EXPECT since we just waited to have input. */
2119 read_avail_input (1);
2121 #endif /* not VMS */
2124 /* At this point, we know that there is a readable event available
2125 somewhere. If the event queue is empty, then there must be a
2126 mouse movement enabled and available. */
2129 struct input_event
*event
;
2131 event
= ((perd
->kbd_fetch_ptr
< perd
->kbd_buffer
+ KBD_BUFFER_SIZE
)
2132 ? perd
->kbd_fetch_ptr
2133 : perd
->kbd_buffer
);
2135 last_event_timestamp
= event
->timestamp
;
2139 /* These two kinds of events get special handling
2140 and don't actually appear to the command loop.
2141 We return nil for them. */
2142 if (event
->kind
== selection_request_event
)
2145 x_handle_selection_request (event
);
2146 perd
->kbd_fetch_ptr
= event
+ 1;
2148 /* We're getting selection request events, but we don't have
2154 else if (event
->kind
== selection_clear_event
)
2157 x_handle_selection_clear (event
);
2158 perd
->kbd_fetch_ptr
= event
+ 1;
2160 /* We're getting selection request events, but we don't have
2166 else if (event
->kind
== delete_window_event
)
2168 /* Make an event (delete-frame (FRAME)). */
2169 obj
= Fcons (event
->frame_or_window
, Qnil
);
2170 obj
= Fcons (Qdelete_frame
, Fcons (obj
, Qnil
));
2171 perd
->kbd_fetch_ptr
= event
+ 1;
2173 else if (event
->kind
== iconify_event
)
2175 /* Make an event (iconify-frame (FRAME)). */
2176 obj
= Fcons (event
->frame_or_window
, Qnil
);
2177 obj
= Fcons (Qiconify_frame
, Fcons (obj
, Qnil
));
2178 perd
->kbd_fetch_ptr
= event
+ 1;
2180 else if (event
->kind
== deiconify_event
)
2182 /* Make an event (make-frame-visible (FRAME)). */
2183 obj
= Fcons (event
->frame_or_window
, Qnil
);
2184 obj
= Fcons (Qmake_frame_visible
, Fcons (obj
, Qnil
));
2185 perd
->kbd_fetch_ptr
= event
+ 1;
2188 else if (event
->kind
== menu_bar_event
)
2190 /* The event value is in the frame_or_window slot. */
2191 obj
= event
->frame_or_window
;
2192 perd
->kbd_fetch_ptr
= event
+ 1;
2194 else if (event
->kind
== buffer_switch_event
)
2196 /* The value doesn't matter here; only the type is tested. */
2197 XSETBUFFER (obj
, current_buffer
);
2198 perd
->kbd_fetch_ptr
= event
+ 1;
2200 /* Just discard these, by returning nil.
2201 (They shouldn't be found in the buffer,
2202 but on some machines it appears they do show up.) */
2203 else if (event
->kind
== no_event
)
2204 perd
->kbd_fetch_ptr
= event
+ 1;
2206 /* If this event is on a different frame, return a switch-frame this
2207 time, and leave the event in the queue for next time. */
2214 frame
= event
->frame_or_window
;
2215 if (WINDOWP (frame
))
2216 frame
= WINDOW_FRAME (XWINDOW (frame
));
2218 focus
= FRAME_FOCUS_FRAME (XFRAME (frame
));
2222 if (! EQ (frame
, internal_last_event_frame
)
2223 && XFRAME (frame
) != selected_frame
)
2224 obj
= make_lispy_switch_frame (frame
);
2225 internal_last_event_frame
= frame
;
2226 #endif /* MULTI_FRAME */
2228 /* If we didn't decide to make a switch-frame event, go ahead
2229 and build a real event from the queue entry. */
2233 obj
= make_lispy_event (event
);
2235 /* Wipe out this event, to catch bugs. */
2236 event
->kind
= no_event
;
2237 XVECTOR (perd
->kbd_buffer_frame_or_window
)->contents
[event
- perd
->kbd_buffer
] = Qnil
;
2239 perd
->kbd_fetch_ptr
= event
+ 1;
2244 /* Try generating a mouse motion event. */
2245 else if (FRAMEP (do_mouse_tracking
) && mouse_moved
)
2247 FRAME_PTR f
= XFRAME (do_mouse_tracking
);
2248 Lisp_Object bar_window
;
2249 enum scroll_bar_part part
;
2253 /* Note that this uses F to determine which display to look at.
2254 If there is no valid info, it does not store anything
2255 so x remains nil. */
2257 (*mouse_position_hook
) (&f
, &bar_window
, &part
, &x
, &y
, &time
);
2262 /* Decide if we should generate a switch-frame event. Don't
2263 generate switch-frame events for motion outside of all Emacs
2269 frame
= FRAME_FOCUS_FRAME (f
);
2271 XSETFRAME (frame
, f
);
2273 if (! EQ (frame
, internal_last_event_frame
)
2274 && XFRAME (frame
) != selected_frame
)
2275 obj
= make_lispy_switch_frame (frame
);
2276 internal_last_event_frame
= frame
;
2280 /* If we didn't decide to make a switch-frame event, go ahead and
2281 return a mouse-motion event. */
2282 if (!NILP (x
) && NILP (obj
))
2283 obj
= make_lispy_movement (f
, bar_window
, part
, x
, y
, time
);
2285 #endif /* HAVE_MOUSE */
2287 /* We were promised by the above while loop that there was
2288 something for us to read! */
2291 input_pending
= readable_events ();
2294 Vlast_event_frame
= internal_last_event_frame
;
2300 /* Process any events that are not user-visible,
2301 then return, without reading any user-visible events. */
2307 while ((perd
= find_active_event_queue ()) != NULL
)
2309 struct input_event
*event
;
2311 event
= ((perd
->kbd_fetch_ptr
< perd
->kbd_buffer
+ KBD_BUFFER_SIZE
)
2312 ? perd
->kbd_fetch_ptr
2313 : perd
->kbd_buffer
);
2315 last_event_timestamp
= event
->timestamp
;
2317 /* These two kinds of events get special handling
2318 and don't actually appear to the command loop. */
2319 if (event
->kind
== selection_request_event
)
2322 x_handle_selection_request (event
);
2323 perd
->kbd_fetch_ptr
= event
+ 1;
2325 /* We're getting selection request events, but we don't have
2331 else if (event
->kind
== selection_clear_event
)
2334 x_handle_selection_clear (event
);
2335 perd
->kbd_fetch_ptr
= event
+ 1;
2337 /* We're getting selection request events, but we don't have
2346 get_input_pending (&input_pending
);
2349 /* Caches for modify_event_symbol. */
2350 static Lisp_Object accent_key_syms
;
2351 static Lisp_Object system_key_syms
;
2352 static Lisp_Object func_key_syms
;
2353 static Lisp_Object mouse_syms
;
2355 Lisp_Object Vsystem_key_alist
;
2357 /* This is a list of keysym codes for special "accent" characters.
2358 It parallels lispy_accent_keys. */
2360 static int lispy_accent_codes
[] =
2362 #ifdef XK_dead_circumflex
2367 #ifdef XK_dead_grave
2372 #ifdef XK_dead_tilde
2377 #ifdef XK_dead_diaeresis
2382 #ifdef XK_dead_macron
2387 #ifdef XK_dead_degree
2392 #ifdef XK_dead_acute
2397 #ifdef XK_dead_cedilla
2402 #ifdef XK_dead_breve
2407 #ifdef XK_dead_ogonek
2412 #ifdef XK_dead_caron
2417 #ifdef XK_dead_doubleacute
2418 XK_dead_doubleacute
,
2422 #ifdef XK_dead_abovedot
2429 /* This is a list of Lisp names for special "accent" characters.
2430 It parallels lispy_accent_codes. */
2432 static char *lispy_accent_keys
[] =
2449 /* You'll notice that this table is arranged to be conveniently
2450 indexed by X Windows keysym values. */
2451 static char *lispy_function_keys
[] =
2453 /* X Keysym value */
2455 0, 0, 0, 0, 0, 0, 0, 0, /* 0xff00 */
2463 0, 0, 0, /* 0xff10 */
2465 0, 0, 0, 0, 0, 0, 0,
2468 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, /* 0xff20...2f */
2469 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, /* 0xff30...3f */
2470 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, /* 0xff40...4f */
2472 "home", /* 0xff50 */ /* IsCursorKey */
2483 "select", /* 0xff60 */ /* IsMiscFunctionKey */
2494 "break", /* 0xff6b */
2496 0, 0, 0, 0, 0, 0, 0, 0, "backtab", 0,
2498 0, 0, 0, 0, 0, 0, 0, 0, "kp-numlock", /* 0xff7f */
2499 "kp-space", /* 0xff80 */ /* IsKeypadKey */
2500 0, 0, 0, 0, 0, 0, 0, 0,
2501 "kp-tab", /* 0xff89 */
2503 "kp-enter", /* 0xff8d */
2505 "kp-f1", /* 0xff91 */
2509 "kp-home", /* 0xff95 */
2514 "kp-prior", /* kp-page-up */
2515 "kp-next", /* kp-page-down */
2521 0, 0, 0, 0, 0, 0, 0, 0, 0,
2522 "kp-multiply", /* 0xffaa */
2527 "kp-divide", /* 0xffaf */
2528 "kp-0", /* 0xffb0 */
2529 "kp-1", "kp-2", "kp-3", "kp-4", "kp-5", "kp-6", "kp-7", "kp-8", "kp-9",
2532 "kp-equal", /* 0xffbd */
2533 "f1", /* 0xffbe */ /* IsFunctionKey */
2535 "f3", "f4", "f5", "f6", "f7", "f8", "f9", "f10", /* 0xffc0 */
2536 "f11", "f12", "f13", "f14", "f15", "f16", "f17", "f18",
2537 "f19", "f20", "f21", "f22", "f23", "f24", "f25", "f26", /* 0xffd0 */
2538 "f27", "f28", "f29", "f30", "f31", "f32", "f33", "f34",
2539 "f35", 0, 0, 0, 0, 0, 0, 0, /* 0xffe0 */
2540 0, 0, 0, 0, 0, 0, 0, 0,
2541 0, 0, 0, 0, 0, 0, 0, 0, /* 0xfff0 */
2542 0, 0, 0, 0, 0, 0, 0, "delete"
2545 static char *lispy_mouse_names
[] =
2547 "mouse-1", "mouse-2", "mouse-3", "mouse-4", "mouse-5"
2550 /* Scroll bar parts. */
2551 Lisp_Object Qabove_handle
, Qhandle
, Qbelow_handle
;
2553 /* An array of scroll bar parts, indexed by an enum scroll_bar_part value. */
2554 Lisp_Object
*scroll_bar_parts
[] = {
2555 &Qabove_handle
, &Qhandle
, &Qbelow_handle
2559 /* A vector, indexed by button number, giving the down-going location
2560 of currently depressed buttons, both scroll bar and non-scroll bar.
2562 The elements have the form
2563 (BUTTON-NUMBER MODIFIER-MASK . REST)
2564 where REST is the cdr of a position as it would be reported in the event.
2566 The make_lispy_event function stores positions here to tell the
2567 difference between click and drag events, and to store the starting
2568 location to be included in drag events. */
2570 static Lisp_Object button_down_location
;
2572 /* Information about the most recent up-going button event: Which
2573 button, what location, and what time. */
2575 static int last_mouse_button
;
2576 static int last_mouse_x
;
2577 static int last_mouse_y
;
2578 static unsigned long button_down_time
;
2580 /* The maximum time between clicks to make a double-click,
2581 or Qnil to disable double-click detection,
2582 or Qt for no time limit. */
2583 Lisp_Object Vdouble_click_time
;
2585 /* The number of clicks in this multiple-click. */
2587 int double_click_count
;
2589 #ifdef USE_X_TOOLKIT
2590 extern Lisp_Object
map_event_to_object ();
2591 #endif /* USE_X_TOOLKIT */
2593 /* Given a struct input_event, build the lisp event which represents
2594 it. If EVENT is 0, build a mouse movement event from the mouse
2595 movement buffer, which should have a movement event in it.
2597 Note that events must be passed to this function in the order they
2598 are received; this function stores the location of button presses
2599 in order to build drag events when the button is released. */
2602 make_lispy_event (event
)
2603 struct input_event
*event
;
2607 switch (SWITCH_ENUM_CAST (event
->kind
))
2609 /* A simple keystroke. */
2610 case ascii_keystroke
:
2612 Lisp_Object lispy_c
;
2613 int c
= event
->code
& 0377;
2614 /* Turn ASCII characters into control characters
2616 if (event
->modifiers
& ctrl_modifier
)
2617 c
= make_ctrl_char (c
);
2619 /* Add in the other modifier bits. We took care of ctrl_modifier
2620 just above, and the shift key was taken care of by the X code,
2621 and applied to control characters by make_ctrl_char. */
2622 c
|= (event
->modifiers
2623 & (meta_modifier
| alt_modifier
2624 | hyper_modifier
| super_modifier
));
2625 button_down_time
= 0;
2626 XSETFASTINT (lispy_c
, c
);
2630 /* A function key. The symbol may need to have modifier prefixes
2632 case non_ascii_keystroke
:
2633 button_down_time
= 0;
2635 for (i
= 0; i
< sizeof (lispy_accent_codes
) / sizeof (int); i
++)
2636 if (event
->code
== lispy_accent_codes
[i
])
2637 return modify_event_symbol (i
,
2639 Qfunction_key
, Qnil
,
2640 lispy_accent_keys
, &accent_key_syms
,
2641 (sizeof (lispy_accent_keys
)
2642 / sizeof (lispy_accent_keys
[0])));
2644 /* Handle system-specific keysyms. */
2645 if (event
->code
& (1 << 28))
2647 /* We need to use an alist rather than a vector as the cache
2648 since we can't make a vector long enuf. */
2649 if (NILP (system_key_syms
))
2650 system_key_syms
= Fcons (Qnil
, Qnil
);
2651 return modify_event_symbol (event
->code
& 0xffffff,
2653 Qfunction_key
, Vsystem_key_alist
,
2654 0, &system_key_syms
, 0xffffff);
2657 return modify_event_symbol (event
->code
- 0xff00,
2659 Qfunction_key
, Qnil
,
2660 lispy_function_keys
, &func_key_syms
,
2661 (sizeof (lispy_function_keys
)
2662 / sizeof (lispy_function_keys
[0])));
2665 #if defined (MULTI_FRAME) || defined (HAVE_MOUSE)
2666 /* A mouse click. Figure out where it is, decide whether it's
2667 a press, click or drag, and build the appropriate structure. */
2669 case scroll_bar_click
:
2671 int button
= event
->code
;
2673 Lisp_Object position
;
2674 Lisp_Object
*start_pos_ptr
;
2675 Lisp_Object start_pos
;
2677 if (button
< 0 || button
>= NUM_MOUSE_BUTTONS
)
2680 /* Build the position as appropriate for this mouse click. */
2681 if (event
->kind
== mouse_click
)
2684 FRAME_PTR f
= XFRAME (event
->frame_or_window
);
2689 /* Ignore mouse events that were made on frame that
2690 have been deleted. */
2691 if (! FRAME_LIVE_P (f
))
2694 pixel_to_glyph_coords (f
, XINT (event
->x
), XINT (event
->y
),
2695 &column
, &row
, 0, 1);
2697 #ifndef USE_X_TOOLKIT
2698 /* In the non-toolkit version, clicks on the menu bar
2699 are ordinary button events in the event buffer.
2700 Distinguish them, and invoke the menu.
2702 (In the toolkit version, the toolkit handles the menu bar
2703 and Emacs doesn't know about it until after the user
2704 makes a selection.) */
2705 if (row
>= 0 && row
< FRAME_MENU_BAR_LINES (f
))
2707 Lisp_Object items
, item
;
2711 /* Activate the menu bar on the down event. If the
2712 up event comes in before the menu code can deal with it,
2714 if (! (event
->modifiers
& down_modifier
))
2718 items
= FRAME_MENU_BAR_ITEMS (f
);
2719 for (i
= 0; i
< XVECTOR (items
)->size
; i
+= 3)
2721 Lisp_Object pos
, string
;
2722 string
= XVECTOR (items
)->contents
[i
+ 1];
2723 pos
= XVECTOR (items
)->contents
[i
+ 2];
2726 if (column
>= XINT (pos
)
2727 && column
< XINT (pos
) + XSTRING (string
)->size
)
2729 item
= XVECTOR (items
)->contents
[i
];
2735 = Fcons (event
->frame_or_window
,
2737 Fcons (Fcons (event
->x
, event
->y
),
2738 Fcons (make_number (event
->timestamp
),
2741 return Fcons (item
, Fcons (position
, Qnil
));
2743 #endif /* not USE_X_TOOLKIT */
2745 window
= window_from_coordinates (f
, column
, row
, &part
);
2747 if (!WINDOWP (window
))
2749 window
= event
->frame_or_window
;
2754 int pixcolumn
, pixrow
;
2755 column
-= XINT (XWINDOW (window
)->left
);
2756 row
-= XINT (XWINDOW (window
)->top
);
2757 glyph_to_pixel_coords (f
, column
, row
, &pixcolumn
, &pixrow
);
2758 XSETINT (event
->x
, pixcolumn
);
2759 XSETINT (event
->y
, pixrow
);
2764 posn
= Qvertical_line
;
2767 buffer_posn_from_coords (XWINDOW (window
),
2774 Fcons (Fcons (event
->x
, event
->y
),
2775 Fcons (make_number (event
->timestamp
),
2781 Lisp_Object portion_whole
;
2784 window
= event
->frame_or_window
;
2785 portion_whole
= Fcons (event
->x
, event
->y
);
2786 part
= *scroll_bar_parts
[(int) event
->part
];
2790 Fcons (Qvertical_scroll_bar
,
2791 Fcons (portion_whole
,
2792 Fcons (make_number (event
->timestamp
),
2793 Fcons (part
, Qnil
)))));
2796 start_pos_ptr
= &XVECTOR (button_down_location
)->contents
[button
];
2798 start_pos
= *start_pos_ptr
;
2799 *start_pos_ptr
= Qnil
;
2801 is_double
= (button
== last_mouse_button
2802 && XINT (event
->x
) == last_mouse_x
2803 && XINT (event
->y
) == last_mouse_y
2804 && button_down_time
!= 0
2805 && (EQ (Vdouble_click_time
, Qt
)
2806 || (INTEGERP (Vdouble_click_time
)
2807 && ((int)(event
->timestamp
- button_down_time
)
2808 < XINT (Vdouble_click_time
)))));
2809 last_mouse_button
= button
;
2810 last_mouse_x
= XINT (event
->x
);
2811 last_mouse_y
= XINT (event
->y
);
2813 /* If this is a button press, squirrel away the location, so
2814 we can decide later whether it was a click or a drag. */
2815 if (event
->modifiers
& down_modifier
)
2819 double_click_count
++;
2820 event
->modifiers
|= ((double_click_count
> 2)
2825 double_click_count
= 1;
2826 button_down_time
= event
->timestamp
;
2827 *start_pos_ptr
= Fcopy_alist (position
);
2830 /* Now we're releasing a button - check the co-ordinates to
2831 see if this was a click or a drag. */
2832 else if (event
->modifiers
& up_modifier
)
2834 /* If we did not see a down before this up,
2835 ignore the up. Probably this happened because
2836 the down event chose a menu item.
2837 It would be an annoyance to treat the release
2838 of the button that chose the menu item
2839 as a separate event. */
2841 if (!CONSP (start_pos
))
2844 event
->modifiers
&= ~up_modifier
;
2845 #if 0 /* Formerly we treated an up with no down as a click event. */
2846 if (!CONSP (start_pos
))
2847 event
->modifiers
|= click_modifier
;
2851 /* The third element of every position should be the (x,y)
2855 down
= Fnth (make_number (2), start_pos
);
2856 if (EQ (event
->x
, XCONS (down
)->car
)
2857 && EQ (event
->y
, XCONS (down
)->cdr
))
2859 event
->modifiers
|= click_modifier
;
2863 button_down_time
= 0;
2864 event
->modifiers
|= drag_modifier
;
2866 /* Don't check is_double; treat this as multiple
2867 if the down-event was multiple. */
2868 if (double_click_count
> 1)
2869 event
->modifiers
|= ((double_click_count
> 2)
2875 /* Every mouse event should either have the down_modifier or
2876 the up_modifier set. */
2880 /* Get the symbol we should use for the mouse click. */
2883 head
= modify_event_symbol (button
,
2886 lispy_mouse_names
, &mouse_syms
,
2887 (sizeof (lispy_mouse_names
)
2888 / sizeof (lispy_mouse_names
[0])));
2889 if (event
->modifiers
& drag_modifier
)
2894 else if (event
->modifiers
& (double_modifier
| triple_modifier
))
2897 Fcons (make_number (double_click_count
),
2905 #endif /* MULTI_FRAME or HAVE_MOUSE */
2907 /* The 'kind' field of the event is something we don't recognize. */
2913 #if defined (MULTI_FRAME) || defined (HAVE_MOUSE)
2916 make_lispy_movement (frame
, bar_window
, part
, x
, y
, time
)
2918 Lisp_Object bar_window
;
2919 enum scroll_bar_part part
;
2924 /* Is it a scroll bar movement? */
2925 if (frame
&& ! NILP (bar_window
))
2927 Lisp_Object part_sym
;
2929 part_sym
= *scroll_bar_parts
[(int) part
];
2930 return Fcons (Qscroll_bar_movement
,
2931 (Fcons (Fcons (bar_window
,
2932 Fcons (Qvertical_scroll_bar
,
2933 Fcons (Fcons (x
, y
),
2934 Fcons (make_number (time
),
2940 /* Or is it an ordinary mouse movement? */
2942 #endif /* MULTI_FRAME */
2955 /* It's in a frame; which window on that frame? */
2956 pixel_to_glyph_coords (frame
, XINT (x
), XINT (y
), &column
, &row
, 0, 1);
2957 window
= window_from_coordinates (frame
, column
, row
, &area
);
2962 if (WINDOWP (window
))
2964 int pixcolumn
, pixrow
;
2965 column
-= XINT (XWINDOW (window
)->left
);
2966 row
-= XINT (XWINDOW (window
)->top
);
2967 glyph_to_pixel_coords (frame
, column
, row
, &pixcolumn
, &pixrow
);
2968 XSETINT (x
, pixcolumn
);
2969 XSETINT (y
, pixrow
);
2974 posn
= Qvertical_line
;
2977 buffer_posn_from_coords (XWINDOW (window
), column
, row
));
2980 else if (frame
!= 0)
2982 XSETFRAME (window
, frame
);
2994 return Fcons (Qmouse_movement
,
2995 Fcons (Fcons (window
,
2997 Fcons (Fcons (x
, y
),
2998 Fcons (make_number (time
),
3004 #endif /* neither MULTI_FRAME nor HAVE_MOUSE */
3006 /* Construct a switch frame event. */
3008 make_lispy_switch_frame (frame
)
3011 return Fcons (Qswitch_frame
, Fcons (frame
, Qnil
));
3014 /* Manipulating modifiers. */
3016 /* Parse the name of SYMBOL, and return the set of modifiers it contains.
3018 If MODIFIER_END is non-zero, set *MODIFIER_END to the position in
3019 SYMBOL's name of the end of the modifiers; the string from this
3020 position is the unmodified symbol name.
3022 This doesn't use any caches. */
3024 parse_modifiers_uncached (symbol
, modifier_end
)
3028 struct Lisp_String
*name
;
3032 CHECK_SYMBOL (symbol
, 1);
3035 name
= XSYMBOL (symbol
)->name
;
3038 for (i
= 0; i
+2 <= name
->size
; )
3039 switch (name
->data
[i
])
3041 #define SINGLE_LETTER_MOD(bit) \
3042 if (name->data[i+1] != '-') \
3043 goto no_more_modifiers; \
3048 SINGLE_LETTER_MOD (alt_modifier
);
3052 SINGLE_LETTER_MOD (ctrl_modifier
);
3056 SINGLE_LETTER_MOD (hyper_modifier
);
3060 SINGLE_LETTER_MOD (meta_modifier
);
3064 SINGLE_LETTER_MOD (shift_modifier
);
3068 SINGLE_LETTER_MOD (super_modifier
);
3072 if (i
+ 5 > name
->size
)
3073 goto no_more_modifiers
;
3074 if (! strncmp (name
->data
+ i
, "drag-", 5))
3076 modifiers
|= drag_modifier
;
3079 else if (! strncmp (name
->data
+ i
, "down-", 5))
3081 modifiers
|= down_modifier
;
3084 else if (i
+ 7 <= name
->size
3085 && ! strncmp (name
->data
+ i
, "double-", 7))
3087 modifiers
|= double_modifier
;
3091 goto no_more_modifiers
;
3095 if (i
+ 7 > name
->size
)
3096 goto no_more_modifiers
;
3097 if (! strncmp (name
->data
+ i
, "triple-", 7))
3099 modifiers
|= triple_modifier
;
3103 goto no_more_modifiers
;
3107 goto no_more_modifiers
;
3109 #undef SINGLE_LETTER_MOD
3113 /* Should we include the `click' modifier? */
3114 if (! (modifiers
& (down_modifier
| drag_modifier
3115 | double_modifier
| triple_modifier
))
3116 && i
+ 7 == name
->size
3117 && strncmp (name
->data
+ i
, "mouse-", 6) == 0
3118 && ('0' <= name
->data
[i
+ 6] && name
->data
[i
+ 6] <= '9'))
3119 modifiers
|= click_modifier
;
3128 /* Return a symbol whose name is the modifier prefixes for MODIFIERS
3129 prepended to the string BASE[0..BASE_LEN-1].
3130 This doesn't use any caches. */
3132 apply_modifiers_uncached (modifiers
, base
, base_len
)
3137 /* Since BASE could contain nulls, we can't use intern here; we have
3138 to use Fintern, which expects a genuine Lisp_String, and keeps a
3141 (char *) alloca (sizeof ("A-C-H-M-S-s-down-drag-double-triple-"));
3147 /* Only the event queue may use the `up' modifier; it should always
3148 be turned into a click or drag event before presented to lisp code. */
3149 if (modifiers
& up_modifier
)
3152 if (modifiers
& alt_modifier
) { *p
++ = 'A'; *p
++ = '-'; }
3153 if (modifiers
& ctrl_modifier
) { *p
++ = 'C'; *p
++ = '-'; }
3154 if (modifiers
& hyper_modifier
) { *p
++ = 'H'; *p
++ = '-'; }
3155 if (modifiers
& meta_modifier
) { *p
++ = 'M'; *p
++ = '-'; }
3156 if (modifiers
& shift_modifier
) { *p
++ = 'S'; *p
++ = '-'; }
3157 if (modifiers
& super_modifier
) { *p
++ = 's'; *p
++ = '-'; }
3158 if (modifiers
& double_modifier
) { strcpy (p
, "double-"); p
+= 7; }
3159 if (modifiers
& triple_modifier
) { strcpy (p
, "triple-"); p
+= 7; }
3160 if (modifiers
& down_modifier
) { strcpy (p
, "down-"); p
+= 5; }
3161 if (modifiers
& drag_modifier
) { strcpy (p
, "drag-"); p
+= 5; }
3162 /* The click modifier is denoted by the absence of other modifiers. */
3166 mod_len
= p
- new_mods
;
3170 Lisp_Object new_name
;
3172 new_name
= make_uninit_string (mod_len
+ base_len
);
3173 bcopy (new_mods
, XSTRING (new_name
)->data
, mod_len
);
3174 bcopy (base
, XSTRING (new_name
)->data
+ mod_len
, base_len
);
3176 return Fintern (new_name
, Qnil
);
3181 static char *modifier_names
[] =
3183 "up", "down", "drag", "click", "double", "triple", 0, 0,
3184 0, 0, 0, 0, 0, 0, 0, 0,
3185 0, 0, "alt", "super", "hyper", "shift", "control", "meta"
3187 #define NUM_MOD_NAMES (sizeof (modifier_names) / sizeof (modifier_names[0]))
3189 static Lisp_Object modifier_symbols
;
3191 /* Return the list of modifier symbols corresponding to the mask MODIFIERS. */
3193 lispy_modifier_list (modifiers
)
3196 Lisp_Object modifier_list
;
3199 modifier_list
= Qnil
;
3200 for (i
= 0; (1<<i
) <= modifiers
&& i
< NUM_MOD_NAMES
; i
++)
3201 if (modifiers
& (1<<i
))
3202 modifier_list
= Fcons (XVECTOR (modifier_symbols
)->contents
[i
],
3205 return modifier_list
;
3209 /* Parse the modifiers on SYMBOL, and return a list like (UNMODIFIED MASK),
3210 where UNMODIFIED is the unmodified form of SYMBOL,
3211 MASK is the set of modifiers present in SYMBOL's name.
3212 This is similar to parse_modifiers_uncached, but uses the cache in
3213 SYMBOL's Qevent_symbol_element_mask property, and maintains the
3214 Qevent_symbol_elements property. */
3216 parse_modifiers (symbol
)
3219 Lisp_Object elements
;
3221 elements
= Fget (symbol
, Qevent_symbol_element_mask
);
3222 if (CONSP (elements
))
3227 int modifiers
= parse_modifiers_uncached (symbol
, &end
);
3228 Lisp_Object unmodified
;
3231 unmodified
= Fintern (make_string (XSYMBOL (symbol
)->name
->data
+ end
,
3232 XSYMBOL (symbol
)->name
->size
- end
),
3235 if (modifiers
& ~((1<<VALBITS
) - 1))
3237 XSETFASTINT (mask
, modifiers
);
3238 elements
= Fcons (unmodified
, Fcons (mask
, Qnil
));
3240 /* Cache the parsing results on SYMBOL. */
3241 Fput (symbol
, Qevent_symbol_element_mask
,
3243 Fput (symbol
, Qevent_symbol_elements
,
3244 Fcons (unmodified
, lispy_modifier_list (modifiers
)));
3246 /* Since we know that SYMBOL is modifiers applied to unmodified,
3247 it would be nice to put that in unmodified's cache.
3248 But we can't, since we're not sure that parse_modifiers is
3255 /* Apply the modifiers MODIFIERS to the symbol BASE.
3256 BASE must be unmodified.
3258 This is like apply_modifiers_uncached, but uses BASE's
3259 Qmodifier_cache property, if present. It also builds
3260 Qevent_symbol_elements properties, since it has that info anyway.
3262 apply_modifiers copies the value of BASE's Qevent_kind property to
3263 the modified symbol. */
3265 apply_modifiers (modifiers
, base
)
3269 Lisp_Object cache
, index
, entry
, new_symbol
;
3271 /* Mask out upper bits. We don't know where this value's been. */
3272 modifiers
&= (1<<VALBITS
) - 1;
3274 /* The click modifier never figures into cache indices. */
3275 cache
= Fget (base
, Qmodifier_cache
);
3276 XSETFASTINT (index
, (modifiers
& ~click_modifier
));
3277 entry
= assq_no_quit (index
, cache
);
3280 new_symbol
= XCONS (entry
)->cdr
;
3283 /* We have to create the symbol ourselves. */
3284 new_symbol
= apply_modifiers_uncached (modifiers
,
3285 XSYMBOL (base
)->name
->data
,
3286 XSYMBOL (base
)->name
->size
);
3288 /* Add the new symbol to the base's cache. */
3289 entry
= Fcons (index
, new_symbol
);
3290 Fput (base
, Qmodifier_cache
, Fcons (entry
, cache
));
3292 /* We have the parsing info now for free, so add it to the caches. */
3293 XSETFASTINT (index
, modifiers
);
3294 Fput (new_symbol
, Qevent_symbol_element_mask
,
3295 Fcons (base
, Fcons (index
, Qnil
)));
3296 Fput (new_symbol
, Qevent_symbol_elements
,
3297 Fcons (base
, lispy_modifier_list (modifiers
)));
3300 /* Make sure this symbol is of the same kind as BASE.
3302 You'd think we could just set this once and for all when we
3303 intern the symbol above, but reorder_modifiers may call us when
3304 BASE's property isn't set right; we can't assume that just
3305 because it has a Qmodifier_cache property it must have its
3306 Qevent_kind set right as well. */
3307 if (NILP (Fget (new_symbol
, Qevent_kind
)))
3311 kind
= Fget (base
, Qevent_kind
);
3313 Fput (new_symbol
, Qevent_kind
, kind
);
3320 /* Given a symbol whose name begins with modifiers ("C-", "M-", etc),
3321 return a symbol with the modifiers placed in the canonical order.
3322 Canonical order is alphabetical, except for down and drag, which
3323 always come last. The 'click' modifier is never written out.
3325 Fdefine_key calls this to make sure that (for example) C-M-foo
3326 and M-C-foo end up being equivalent in the keymap. */
3329 reorder_modifiers (symbol
)
3332 /* It's hopefully okay to write the code this way, since everything
3333 will soon be in caches, and no consing will be done at all. */
3336 parsed
= parse_modifiers (symbol
);
3337 return apply_modifiers (XCONS (XCONS (parsed
)->cdr
)->car
,
3338 XCONS (parsed
)->car
);
3342 /* For handling events, we often want to produce a symbol whose name
3343 is a series of modifier key prefixes ("M-", "C-", etcetera) attached
3344 to some base, like the name of a function key or mouse button.
3345 modify_event_symbol produces symbols of this sort.
3347 NAME_TABLE should point to an array of strings, such that NAME_TABLE[i]
3348 is the name of the i'th symbol. TABLE_SIZE is the number of elements
3351 Alternatively, NAME_ALIST is an alist mapping codes into symbol names.
3352 NAME_ALIST is used if it is non-nil; otherwise NAME_TABLE is used.
3354 SYMBOL_TABLE should be a pointer to a Lisp_Object whose value will
3355 persist between calls to modify_event_symbol that it can use to
3356 store a cache of the symbols it's generated for this NAME_TABLE
3357 before. The object stored there may be a vector or an alist.
3359 SYMBOL_NUM is the number of the base name we want from NAME_TABLE.
3361 MODIFIERS is a set of modifier bits (as given in struct input_events)
3362 whose prefixes should be applied to the symbol name.
3364 SYMBOL_KIND is the value to be placed in the event_kind property of
3365 the returned symbol.
3367 The symbols we create are supposed to have an
3368 `event-symbol-elements' property, which lists the modifiers present
3369 in the symbol's name. */
3372 modify_event_symbol (symbol_num
, modifiers
, symbol_kind
, name_alist
,
3373 name_table
, symbol_table
, table_size
)
3376 Lisp_Object symbol_kind
;
3377 Lisp_Object name_alist
;
3379 Lisp_Object
*symbol_table
;
3383 Lisp_Object symbol_int
;
3385 XSETINT (symbol_int
, symbol_num
);
3387 /* Is this a request for a valid symbol? */
3388 if (symbol_num
< 0 || symbol_num
>= table_size
)
3391 if (CONSP (*symbol_table
))
3392 value
= Fcdr (assq_no_quit (symbol_int
, *symbol_table
));
3394 /* If *symbol_table doesn't seem to be initialized properly, fix that.
3395 *symbol_table should be a lisp vector TABLE_SIZE elements long,
3396 where the Nth element is the symbol for NAME_TABLE[N], or nil if
3397 we've never used that symbol before. */
3400 if (! VECTORP (*symbol_table
)
3401 || XVECTOR (*symbol_table
)->size
!= table_size
)
3405 XSETFASTINT (size
, table_size
);
3406 *symbol_table
= Fmake_vector (size
, Qnil
);
3409 value
= XVECTOR (*symbol_table
)->contents
[symbol_num
];
3412 /* Have we already used this symbol before? */
3415 /* No; let's create it. */
3416 if (!NILP (name_alist
))
3417 value
= Fcdr_safe (Fassq (symbol_int
, name_alist
));
3418 else if (name_table
[symbol_num
])
3419 value
= intern (name_table
[symbol_num
]);
3424 sprintf (buf
, "key-%d", symbol_num
);
3425 value
= intern (buf
);
3428 if (CONSP (*symbol_table
))
3429 *symbol_table
= Fcons (value
, *symbol_table
);
3431 XVECTOR (*symbol_table
)->contents
[symbol_num
] = value
;
3433 /* Fill in the cache entries for this symbol; this also
3434 builds the Qevent_symbol_elements property, which the user
3436 apply_modifiers (modifiers
& click_modifier
, value
);
3437 Fput (value
, Qevent_kind
, symbol_kind
);
3440 /* Apply modifiers to that symbol. */
3441 return apply_modifiers (modifiers
, value
);
3445 /* Store into *addr a value nonzero if terminal input chars are available.
3446 Serves the purpose of ioctl (0, FIONREAD, addr)
3447 but works even if FIONREAD does not exist.
3448 (In fact, this may actually read some input.) */
3451 get_input_pending (addr
)
3454 /* First of all, have we already counted some input? */
3455 *addr
= !NILP (Vquit_flag
) || readable_events ();
3457 /* If input is being read as it arrives, and we have none, there is none. */
3458 if (*addr
> 0 || (interrupt_input
&& ! interrupts_deferred
))
3461 /* Try to read some input and see how much we get. */
3463 *addr
= !NILP (Vquit_flag
) || readable_events ();
3466 /* Interface to read_avail_input, blocking SIGIO or SIGALRM if necessary. */
3469 gobble_input (expected
)
3474 if (interrupt_input
)
3477 mask
= sigblockx (SIGIO
);
3478 read_avail_input (expected
);
3482 #ifdef POLL_FOR_INPUT
3483 if (read_socket_hook
&& !interrupt_input
&& poll_suppress_count
== 0)
3486 mask
= sigblockx (SIGALRM
);
3487 read_avail_input (expected
);
3493 read_avail_input (expected
);
3497 /* Put a buffer_switch_event in the buffer
3498 so that read_key_sequence will notice the new current buffer. */
3500 record_asynch_buffer_change ()
3502 struct input_event event
;
3505 event
.kind
= buffer_switch_event
;
3506 event
.frame_or_window
= Qnil
;
3509 /* We don't need a buffer-switch event unless Emacs is waiting for input.
3510 The purpose of the event is to make read_key_sequence look up the
3511 keymaps again. If we aren't in read_key_sequence, we don't need one,
3512 and the event could cause trouble by messing up (input-pending-p). */
3513 tem
= Fwaiting_for_user_input_p ();
3517 /* We never need these events if we have no asynchronous subprocesses. */
3521 /* Make sure no interrupt happens while storing the event. */
3523 if (interrupt_input
)
3526 mask
= sigblockx (SIGIO
);
3527 kbd_buffer_store_event (&event
);
3534 kbd_buffer_store_event (&event
);
3541 /* Read any terminal input already buffered up by the system
3542 into the kbd_buffer, but do not wait.
3544 EXPECTED should be nonzero if the caller knows there is some input.
3546 Except on VMS, all input is read by this function.
3547 If interrupt_input is nonzero, this function MUST be called
3548 only when SIGIO is blocked.
3550 Returns the number of keyboard chars read, or -1 meaning
3551 this is a bad time to try to read input. */
3554 read_avail_input (expected
)
3557 struct input_event buf
[KBD_BUFFER_SIZE
];
3561 if (read_socket_hook
)
3562 /* No need for FIONREAD or fcntl; just say don't wait. */
3563 nread
= (*read_socket_hook
) (input_fd
, buf
, KBD_BUFFER_SIZE
,
3564 expected
, expected
);
3567 /* Using KBD_BUFFER_SIZE - 1 here avoids reading more than
3568 the kbd_buffer can really hold. That may prevent loss
3569 of characters on some systems when input is stuffed at us. */
3570 unsigned char cbuf
[KBD_BUFFER_SIZE
- 1];
3573 /* Determine how many characters we should *try* to read. */
3576 #else /* not WINDOWSNT */
3578 n_to_read
= dos_keysns ();
3581 #else /* not MSDOS */
3583 /* Find out how much input is available. */
3584 if (ioctl (input_fd
, FIONREAD
, &n_to_read
) < 0)
3585 /* Formerly simply reported no input, but that sometimes led to
3586 a failure of Emacs to terminate.
3587 SIGHUP seems appropriate if we can't reach the terminal. */
3588 /* ??? Is it really right to send the signal just to this process
3589 rather than to the whole process group?
3590 Perhaps on systems with FIONREAD Emacs is alone in its group. */
3591 kill (getpid (), SIGHUP
);
3594 if (n_to_read
> sizeof cbuf
)
3595 n_to_read
= sizeof cbuf
;
3596 #else /* no FIONREAD */
3597 #if defined(USG) || defined(DGUX)
3598 /* Read some input if available, but don't wait. */
3599 n_to_read
= sizeof cbuf
;
3600 fcntl (input_fd
, F_SETFL
, O_NDELAY
);
3605 #endif /* not MSDOS */
3606 #endif /* not WINDOWSNT */
3608 /* Now read; for one reason or another, this will not block.
3609 NREAD is set to the number of chars read. */
3613 cbuf
[0] = dos_keyread();
3616 nread
= read (input_fd
, cbuf
, n_to_read
);
3618 #if defined (AIX) && (! defined (aix386) && defined (_BSD))
3619 /* The kernel sometimes fails to deliver SIGHUP for ptys.
3620 This looks incorrect, but it isn't, because _BSD causes
3621 O_NDELAY to be defined in fcntl.h as O_NONBLOCK,
3622 and that causes a value other than 0 when there is no input. */
3628 /* We used to retry the read if it was interrupted.
3629 But this does the wrong thing when O_NDELAY causes
3630 an EAGAIN error. Does anybody know of a situation
3631 where a retry is actually needed? */
3633 nread
< 0 && (errno
== EAGAIN
3647 #if defined (USG) || defined (DGUX)
3648 fcntl (input_fd
, F_SETFL
, 0);
3649 #endif /* USG or DGUX */
3650 #endif /* no FIONREAD */
3651 for (i
= 0; i
< nread
; i
++)
3653 buf
[i
].kind
= ascii_keystroke
;
3654 buf
[i
].modifiers
= 0;
3655 if (meta_key
== 1 && (cbuf
[i
] & 0x80))
3656 buf
[i
].modifiers
= meta_modifier
;
3660 buf
[i
].code
= cbuf
[i
];
3662 XSETFRAME (buf
[i
].frame_or_window
, selected_frame
);
3664 buf
[i
].frame_or_window
= Qnil
;
3669 /* Scan the chars for C-g and store them in kbd_buffer. */
3670 for (i
= 0; i
< nread
; i
++)
3672 kbd_buffer_store_event (&buf
[i
]);
3673 /* Don't look at input that follows a C-g too closely.
3674 This reduces lossage due to autorepeat on C-g. */
3675 if (buf
[i
].kind
== ascii_keystroke
3676 && buf
[i
].code
== quit_char
)
3682 #endif /* not VMS */
3684 #ifdef SIGIO /* for entire page */
3685 /* Note SIGIO has been undef'd if FIONREAD is missing. */
3688 input_available_signal (signo
)
3691 /* Must preserve main program's value of errno. */
3692 int old_errno
= errno
;
3694 extern int select_alarmed
;
3698 /* USG systems forget handlers when they are used;
3699 must reestablish each time */
3700 signal (signo
, input_available_signal
);
3707 if (input_available_clear_time
)
3708 EMACS_SET_SECS_USECS (*input_available_clear_time
, 0, 0);
3713 nread
= read_avail_input (1);
3714 /* -1 means it's not ok to read the input now.
3715 UNBLOCK_INPUT will read it later; now, avoid infinite loop.
3716 0 means there was no keyboard input available. */
3721 select_alarmed
= 1; /* Force the select emulator back to life */
3732 /* Send ourselves a SIGIO.
3734 This function exists so that the UNBLOCK_INPUT macro in
3735 blockinput.h can have some way to take care of input we put off
3736 dealing with, without assuming that every file which uses
3737 UNBLOCK_INPUT also has #included the files necessary to get SIGIO. */
3739 reinvoke_input_signal ()
3748 /* Return the prompt-string of a sparse keymap.
3749 This is the first element which is a string.
3750 Return nil if there is none. */
3758 register Lisp_Object tem
;
3767 static void menu_bar_item ();
3768 static void menu_bar_one_keymap ();
3770 /* These variables hold the vector under construction within
3771 menu_bar_items and its subroutines, and the current index
3772 for storing into that vector. */
3773 static Lisp_Object menu_bar_items_vector
;
3774 static int menu_bar_items_index
;
3776 /* Return a vector of menu items for a menu bar, appropriate
3777 to the current buffer. Each item has three elements in the vector:
3780 OLD is an old vector we can optionally reuse, or nil. */
3783 menu_bar_items (old
)
3786 /* The number of keymaps we're scanning right now, and the number of
3787 keymaps we have allocated space for. */
3790 /* maps[0..nmaps-1] are the prefix definitions of KEYBUF[0..t-1]
3791 in the current keymaps, or nil where it is not a prefix. */
3794 Lisp_Object def
, tem
, tail
;
3803 struct gcpro gcpro1
;
3805 /* In order to build the menus, we need to call the keymap
3806 accessors. They all call QUIT. But this function is called
3807 during redisplay, during which a quit is fatal. So inhibit
3808 quitting while building the menus.
3809 We do this instead of specbind because (1) errors will clear it anyway
3810 and (2) this avoids risk of specpdl overflow. */
3811 oquit
= Vinhibit_quit
;
3815 menu_bar_items_vector
= old
;
3817 menu_bar_items_vector
= Fmake_vector (make_number (24), Qnil
);
3818 menu_bar_items_index
= 0;
3820 GCPRO1 (menu_bar_items_vector
);
3822 /* Build our list of keymaps.
3823 If we recognize a function key and replace its escape sequence in
3824 keybuf with its symbol, or if the sequence starts with a mouse
3825 click and we need to switch buffers, we jump back here to rebuild
3826 the initial keymaps from the current buffer. */
3830 /* Should overriding-local-map apply, here? */
3831 if (!NILP (Voverriding_local_map_menu_flag
))
3833 if (NILP (Voverriding_local_map
))
3835 /* Yes, and it is nil. Use just global map. */
3837 maps
= (Lisp_Object
*) alloca (nmaps
* sizeof (maps
[0]));
3841 /* Yes, and it is non-nil. Use it and the global map. */
3843 maps
= (Lisp_Object
*) alloca (nmaps
* sizeof (maps
[0]));
3844 maps
[0] = Voverriding_local_map
;
3849 /* No, so use major and minor mode keymaps. */
3850 nmaps
= current_minor_maps (0, &tmaps
) + 2;
3851 maps
= (Lisp_Object
*) alloca (nmaps
* sizeof (maps
[0]));
3852 bcopy (tmaps
, maps
, (nmaps
- 2) * sizeof (maps
[0]));
3853 #ifdef USE_TEXT_PROPERTIES
3854 maps
[nmaps
-2] = get_local_map (PT
, current_buffer
);
3856 maps
[nmaps
-2] = current_buffer
->keymap
;
3859 maps
[nmaps
-1] = current_global_map
;
3862 /* Look up in each map the dummy prefix key `menu-bar'. */
3866 for (mapno
= nmaps
- 1; mapno
>= 0; mapno
--)
3868 if (! NILP (maps
[mapno
]))
3869 def
= get_keyelt (access_keymap (maps
[mapno
], Qmenu_bar
, 1, 0));
3873 tem
= Fkeymapp (def
);
3875 menu_bar_one_keymap (def
);
3878 /* Move to the end those items that should be at the end. */
3880 for (tail
= Vmenu_bar_final_items
; CONSP (tail
); tail
= XCONS (tail
)->cdr
)
3883 int end
= menu_bar_items_index
;
3885 for (i
= 0; i
< end
; i
+= 3)
3886 if (EQ (XCONS (tail
)->car
, XVECTOR (menu_bar_items_vector
)->contents
[i
]))
3888 Lisp_Object tem0
, tem1
, tem2
;
3889 /* Move the item at index I to the end,
3890 shifting all the others forward. */
3891 tem0
= XVECTOR (menu_bar_items_vector
)->contents
[i
+ 0];
3892 tem1
= XVECTOR (menu_bar_items_vector
)->contents
[i
+ 1];
3893 tem2
= XVECTOR (menu_bar_items_vector
)->contents
[i
+ 2];
3895 bcopy (&XVECTOR (menu_bar_items_vector
)->contents
[i
+ 3],
3896 &XVECTOR (menu_bar_items_vector
)->contents
[i
],
3897 (end
- i
- 3) * sizeof (Lisp_Object
));
3898 XVECTOR (menu_bar_items_vector
)->contents
[end
- 3] = tem0
;
3899 XVECTOR (menu_bar_items_vector
)->contents
[end
- 2] = tem1
;
3900 XVECTOR (menu_bar_items_vector
)->contents
[end
- 1] = tem2
;
3905 /* Add nil, nil, nil at the end. */
3906 i
= menu_bar_items_index
;
3907 if (i
+ 3 > XVECTOR (menu_bar_items_vector
)->size
)
3910 int newsize
= 2 * i
;
3911 tem
= Fmake_vector (make_number (2 * i
), Qnil
);
3912 bcopy (XVECTOR (menu_bar_items_vector
)->contents
,
3913 XVECTOR (tem
)->contents
, i
* sizeof (Lisp_Object
));
3914 menu_bar_items_vector
= tem
;
3916 /* Add this item. */
3917 XVECTOR (menu_bar_items_vector
)->contents
[i
++] = Qnil
;
3918 XVECTOR (menu_bar_items_vector
)->contents
[i
++] = Qnil
;
3919 XVECTOR (menu_bar_items_vector
)->contents
[i
++] = Qnil
;
3920 menu_bar_items_index
= i
;
3922 Vinhibit_quit
= oquit
;
3924 return menu_bar_items_vector
;
3927 /* Scan one map KEYMAP, accumulating any menu items it defines
3928 in menu_bar_items_vector. */
3931 menu_bar_one_keymap (keymap
)
3934 Lisp_Object tail
, item
, key
, binding
, item_string
, table
;
3936 /* Loop over all keymap entries that have menu strings. */
3937 for (tail
= keymap
; CONSP (tail
); tail
= XCONS (tail
)->cdr
)
3939 item
= XCONS (tail
)->car
;
3942 key
= XCONS (item
)->car
;
3943 binding
= XCONS (item
)->cdr
;
3944 if (CONSP (binding
))
3946 item_string
= XCONS (binding
)->car
;
3947 if (STRINGP (item_string
))
3948 menu_bar_item (key
, item_string
, Fcdr (binding
));
3950 else if (EQ (binding
, Qundefined
))
3951 menu_bar_item (key
, Qnil
, binding
);
3953 else if (VECTORP (item
))
3955 /* Loop over the char values represented in the vector. */
3956 int len
= XVECTOR (item
)->size
;
3958 for (c
= 0; c
< len
; c
++)
3960 Lisp_Object character
;
3961 XSETFASTINT (character
, c
);
3962 binding
= XVECTOR (item
)->contents
[c
];
3963 if (CONSP (binding
))
3965 item_string
= XCONS (binding
)->car
;
3966 if (STRINGP (item_string
))
3967 menu_bar_item (key
, item_string
, Fcdr (binding
));
3969 else if (EQ (binding
, Qundefined
))
3970 menu_bar_item (key
, Qnil
, binding
);
3976 /* This is used as the handler when calling internal_condition_case_1. */
3979 menu_bar_item_1 (arg
)
3985 /* Add one item to menu_bar_items_vector, for KEY, ITEM_STRING and DEF.
3986 If there's already an item for KEY, add this DEF to it. */
3989 menu_bar_item (key
, item_string
, def
)
3990 Lisp_Object key
, item_string
, def
;
3993 Lisp_Object enabled
;
3996 if (EQ (def
, Qundefined
))
3998 /* If a map has an explicit `undefined' as definition,
3999 discard any previously made menu bar item. */
4001 for (i
= 0; i
< menu_bar_items_index
; i
+= 3)
4002 if (EQ (key
, XVECTOR (menu_bar_items_vector
)->contents
[i
]))
4004 if (menu_bar_items_index
> i
+ 3)
4005 bcopy (&XVECTOR (menu_bar_items_vector
)->contents
[i
+ 3],
4006 &XVECTOR (menu_bar_items_vector
)->contents
[i
],
4007 (menu_bar_items_index
- i
- 3) * sizeof (Lisp_Object
));
4008 menu_bar_items_index
-= 3;
4012 /* If there's no definition for this key yet,
4013 just ignore `undefined'. */
4017 /* See if this entry is enabled. */
4022 /* No property, or nil, means enable.
4023 Otherwise, enable if value is not nil. */
4024 tem
= Fget (def
, Qmenu_enable
);
4026 /* (condition-case nil (eval tem)
4028 enabled
= internal_condition_case_1 (Feval
, tem
, Qerror
,
4032 /* Ignore this item if it's not enabled. */
4036 /* Find any existing item for this KEY. */
4037 for (i
= 0; i
< menu_bar_items_index
; i
+= 3)
4038 if (EQ (key
, XVECTOR (menu_bar_items_vector
)->contents
[i
]))
4041 /* If we did not find this KEY, add it at the end. */
4042 if (i
== menu_bar_items_index
)
4044 /* If vector is too small, get a bigger one. */
4045 if (i
+ 3 > XVECTOR (menu_bar_items_vector
)->size
)
4048 int newsize
= 2 * i
;
4049 tem
= Fmake_vector (make_number (2 * i
), Qnil
);
4050 bcopy (XVECTOR (menu_bar_items_vector
)->contents
,
4051 XVECTOR (tem
)->contents
, i
* sizeof (Lisp_Object
));
4052 menu_bar_items_vector
= tem
;
4054 /* Add this item. */
4055 XVECTOR (menu_bar_items_vector
)->contents
[i
++] = key
;
4056 XVECTOR (menu_bar_items_vector
)->contents
[i
++] = item_string
;
4057 XVECTOR (menu_bar_items_vector
)->contents
[i
++] = Fcons (def
, Qnil
);
4058 menu_bar_items_index
= i
;
4060 /* We did find an item for this KEY. Add DEF to its list of maps. */
4064 old
= XVECTOR (menu_bar_items_vector
)->contents
[i
+ 2];
4065 XVECTOR (menu_bar_items_vector
)->contents
[i
+ 2] = Fcons (def
, old
);
4069 /* Read a character using menus based on maps in the array MAPS.
4070 NMAPS is the length of MAPS. Return nil if there are no menus in the maps.
4071 Return t if we displayed a menu but the user rejected it.
4073 PREV_EVENT is the previous input event, or nil if we are reading
4074 the first event of a key sequence.
4076 If USED_MOUSE_MENU is non-zero, then we set *USED_MOUSE_MENU to 1
4077 if we used a mouse menu to read the input, or zero otherwise. If
4078 USED_MOUSE_MENU is zero, *USED_MOUSE_MENU is left alone.
4080 The prompting is done based on the prompt-string of the map
4081 and the strings associated with various map elements.
4083 This can be done with X menus or with menus put in the minibuf.
4084 These are done in different ways, depending on how the input will be read.
4085 Menus using X are done after auto-saving in read-char, getting the input
4086 event from Fx_popup_menu; menus using the minibuf use read_char recursively
4087 and do auto-saving in the inner call of read_char. */
4090 read_char_x_menu_prompt (nmaps
, maps
, prev_event
, used_mouse_menu
)
4093 Lisp_Object prev_event
;
4094 int *used_mouse_menu
;
4097 register Lisp_Object name
;
4098 Lisp_Object rest
, vector
;
4100 if (used_mouse_menu
)
4101 *used_mouse_menu
= 0;
4103 /* Use local over global Menu maps */
4105 if (! menu_prompting
)
4108 /* Optionally disregard all but the global map. */
4109 if (inhibit_local_menu_bar_menus
)
4111 maps
+= (nmaps
- 1);
4115 /* Get the menu name from the first map that has one (a prompt string). */
4116 for (mapno
= 0; mapno
< nmaps
; mapno
++)
4118 name
= map_prompt (maps
[mapno
]);
4123 /* If we don't have any menus, just read a character normally. */
4127 #if (defined (HAVE_X_WINDOWS) && defined (HAVE_X_MENU)) || defined (MSDOS)
4128 /* If we got to this point via a mouse click,
4129 use a real menu for mouse selection. */
4130 if (EVENT_HAS_PARAMETERS (prev_event
))
4132 /* Display the menu and get the selection. */
4133 Lisp_Object
*realmaps
4134 = (Lisp_Object
*) alloca (nmaps
* sizeof (Lisp_Object
));
4138 /* Use the maps that are not nil. */
4139 for (mapno
= 0; mapno
< nmaps
; mapno
++)
4140 if (!NILP (maps
[mapno
]))
4141 realmaps
[nmaps1
++] = maps
[mapno
];
4143 value
= Fx_popup_menu (prev_event
, Flist (nmaps1
, realmaps
));
4146 /* If we got more than one event, put all but the first
4147 onto this list to be read later.
4148 Return just the first event now. */
4149 Vunread_command_events
4150 = nconc2 (XCONS (value
)->cdr
, Vunread_command_events
);
4151 value
= XCONS (value
)->car
;
4153 else if (NILP (value
))
4155 if (used_mouse_menu
)
4156 *used_mouse_menu
= 1;
4159 #endif /* (HAVE_X_WINDOWS && HAVE_X_MENU) || MSDOS */
4164 read_char_minibuf_menu_prompt (commandflag
, nmaps
, maps
)
4170 register Lisp_Object name
;
4172 int width
= FRAME_WIDTH (selected_frame
) - 4;
4173 char *menu
= (char *) alloca (width
+ 4);
4176 Lisp_Object rest
, vector
;
4178 if (! menu_prompting
)
4181 /* Get the menu name from the first map that has one (a prompt string). */
4182 for (mapno
= 0; mapno
< nmaps
; mapno
++)
4184 name
= map_prompt (maps
[mapno
]);
4189 /* If we don't have any menus, just read a character normally. */
4193 /* Prompt string always starts with map's prompt, and a space. */
4194 strcpy (menu
, XSTRING (name
)->data
);
4195 nlength
= XSTRING (name
)->size
;
4196 menu
[nlength
++] = ':';
4197 menu
[nlength
++] = ' ';
4200 /* Start prompting at start of first map. */
4204 /* Present the documented bindings, a line at a time. */
4211 int orig_defn_macro
;
4213 /* Loop over elements of map. */
4218 /* If reached end of map, start at beginning of next map. */
4222 /* At end of last map, wrap around to first map if just starting,
4223 or end this line if already have something on it. */
4227 if (notfirst
|| nobindings
) break;
4232 /* Look at the next element of the map. */
4234 elt
= XVECTOR (vector
)->contents
[idx
];
4236 elt
= Fcar_safe (rest
);
4238 if (idx
< 0 && VECTORP (elt
))
4240 /* If we found a dense table in the keymap,
4241 advanced past it, but start scanning its contents. */
4242 rest
= Fcdr_safe (rest
);
4248 /* An ordinary element. */
4250 s
= Fcar_safe (Fcdr_safe (elt
)); /* alist */
4252 s
= Fcar_safe(elt
); /* vector */
4254 /* Ignore the element if it has no prompt string. */
4256 /* If we have room for the prompt string, add it to this line.
4257 If this is the first on the line, always add it. */
4258 else if (XSTRING (s
)->size
+ i
+ 2 < width
4263 /* Punctuate between strings. */
4266 strcpy (menu
+ i
, ", ");
4272 /* Add as much of string as fits. */
4273 thiswidth
= XSTRING (s
)->size
;
4274 if (thiswidth
+ i
> width
)
4275 thiswidth
= width
- i
;
4276 bcopy (XSTRING (s
)->data
, menu
+ i
, thiswidth
);
4282 /* If this element does not fit, end the line now,
4283 and save the element for the next line. */
4284 strcpy (menu
+ i
, "...");
4288 /* Move past this element. */
4289 if (idx
>= 0 && idx
+ 1 >= XVECTOR (vector
)->size
)
4290 /* Handle reaching end of dense table. */
4295 rest
= Fcdr_safe (rest
);
4299 /* Prompt with that and read response. */
4302 /* Make believe its not a keyboard macro in case the help char
4303 is pressed. Help characters are not recorded because menu prompting
4304 is not used on replay.
4306 orig_defn_macro
= defining_kbd_macro
;
4307 defining_kbd_macro
= 0 ;
4309 obj
= read_char (commandflag
, 0, 0, Qnil
, 0);
4310 while (BUFFERP (obj
));
4311 defining_kbd_macro
= orig_defn_macro
;
4313 if (!INTEGERP (obj
))
4318 if (! EQ (obj
, menu_prompt_more_char
)
4319 && (!INTEGERP (menu_prompt_more_char
)
4320 || ! EQ (obj
, make_number (Ctl (XINT (menu_prompt_more_char
))))))
4322 if ( defining_kbd_macro
)
4323 store_kbd_macro_char(obj
) ;
4326 /* Help char - go round again */
4330 /* Reading key sequences. */
4332 /* Follow KEY in the maps in CURRENT[0..NMAPS-1], placing its bindings
4333 in DEFS[0..NMAPS-1]. Set NEXT[i] to DEFS[i] if DEFS[i] is a
4334 keymap, or nil otherwise. Return the index of the first keymap in
4335 which KEY has any binding, or NMAPS if no map has a binding.
4337 If KEY is a meta ASCII character, treat it like meta-prefix-char
4338 followed by the corresponding non-meta character. Keymaps in
4339 CURRENT with non-prefix bindings for meta-prefix-char become nil in
4342 If KEY has no bindings in any of the CURRENT maps, NEXT is left
4345 NEXT may == CURRENT. */
4348 follow_key (key
, nmaps
, current
, defs
, next
)
4350 Lisp_Object
*current
, *defs
, *next
;
4353 int i
, first_binding
;
4355 /* If KEY is a meta ASCII character, treat it like meta-prefix-char
4356 followed by the corresponding non-meta character. */
4357 if (INTEGERP (key
) && (XINT (key
) & CHAR_META
))
4359 for (i
= 0; i
< nmaps
; i
++)
4360 if (! NILP (current
[i
]))
4363 get_keyelt (access_keymap (current
[i
], meta_prefix_char
, 1, 0));
4365 /* Note that since we pass the resulting bindings through
4366 get_keymap_1, non-prefix bindings for meta-prefix-char
4368 next
[i
] = get_keymap_1 (next
[i
], 0, 1);
4374 XSETINT (key
, XFASTINT (key
) & ~CHAR_META
);
4377 first_binding
= nmaps
;
4378 for (i
= nmaps
- 1; i
>= 0; i
--)
4380 if (! NILP (current
[i
]))
4382 defs
[i
] = get_keyelt (access_keymap (current
[i
], key
, 1, 0));
4383 if (! NILP (defs
[i
]))
4390 /* Given the set of bindings we've found, produce the next set of maps. */
4391 if (first_binding
< nmaps
)
4392 for (i
= 0; i
< nmaps
; i
++)
4393 next
[i
] = NILP (defs
[i
]) ? Qnil
: get_keymap_1 (defs
[i
], 0, 1);
4395 return first_binding
;
4398 /* Read a sequence of keys that ends with a non prefix character,
4399 storing it in KEYBUF, a buffer of size BUFSIZE.
4401 Return the length of the key sequence stored.
4402 Return -1 if the user rejected a command menu.
4404 Echo starting immediately unless `prompt' is 0.
4406 Where a key sequence ends depends on the currently active keymaps.
4407 These include any minor mode keymaps active in the current buffer,
4408 the current buffer's local map, and the global map.
4410 If a key sequence has no other bindings, we check Vfunction_key_map
4411 to see if some trailing subsequence might be the beginning of a
4412 function key's sequence. If so, we try to read the whole function
4413 key, and substitute its symbolic name into the key sequence.
4415 We ignore unbound `down-' mouse clicks. We turn unbound `drag-' and
4416 `double-' events into similar click events, if that would make them
4417 bound. We try to turn `triple-' events first into `double-' events,
4420 If we get a mouse click in a mode line, vertical divider, or other
4421 non-text area, we treat the click as if it were prefixed by the
4422 symbol denoting that area - `mode-line', `vertical-line', or
4425 If the sequence starts with a mouse click, we read the key sequence
4426 with respect to the buffer clicked on, not the current buffer.
4428 If the user switches frames in the midst of a key sequence, we put
4429 off the switch-frame event until later; the next call to
4430 read_char will return it. */
4433 read_key_sequence (keybuf
, bufsize
, prompt
, dont_downcase_last
)
4434 Lisp_Object
*keybuf
;
4437 int dont_downcase_last
;
4439 int count
= specpdl_ptr
- specpdl
;
4441 /* How many keys there are in the current key sequence. */
4444 /* The length of the echo buffer when we started reading, and
4445 the length of this_command_keys when we started reading. */
4449 /* The number of keymaps we're scanning right now, and the number of
4450 keymaps we have allocated space for. */
4452 int nmaps_allocated
= 0;
4454 /* defs[0..nmaps-1] are the definitions of KEYBUF[0..t-1] in
4455 the current keymaps. */
4458 /* submaps[0..nmaps-1] are the prefix definitions of KEYBUF[0..t-1]
4459 in the current keymaps, or nil where it is not a prefix. */
4460 Lisp_Object
*submaps
;
4462 /* The local map to start out with at start of key sequence. */
4463 Lisp_Object orig_local_map
;
4465 /* 1 if we have already considered switching to the local-map property
4466 of the place where a mouse click occurred. */
4467 int localized_local_map
= 0;
4469 /* The index in defs[] of the first keymap that has a binding for
4470 this key sequence. In other words, the lowest i such that
4471 defs[i] is non-nil. */
4474 /* If t < mock_input, then KEYBUF[t] should be read as the next
4477 We use this to recover after recognizing a function key. Once we
4478 realize that a suffix of the current key sequence is actually a
4479 function key's escape sequence, we replace the suffix with the
4480 function key's binding from Vfunction_key_map. Now keybuf
4481 contains a new and different key sequence, so the echo area,
4482 this_command_keys, and the submaps and defs arrays are wrong. In
4483 this situation, we set mock_input to t, set t to 0, and jump to
4484 restart_sequence; the loop will read keys from keybuf up until
4485 mock_input, thus rebuilding the state; and then it will resume
4486 reading characters from the keyboard. */
4489 /* If the sequence is unbound in submaps[], then
4490 keybuf[fkey_start..fkey_end-1] is a prefix in Vfunction_key_map,
4491 and fkey_map is its binding.
4493 These might be > t, indicating that all function key scanning
4494 should hold off until t reaches them. We do this when we've just
4495 recognized a function key, to avoid searching for the function
4496 key's again in Vfunction_key_map. */
4497 int fkey_start
= 0, fkey_end
= 0;
4498 Lisp_Object fkey_map
;
4500 /* Likewise, for key_translation_map. */
4501 int keytran_start
= 0, keytran_end
= 0;
4502 Lisp_Object keytran_map
;
4504 /* If we receive a ``switch-frame'' event in the middle of a key sequence,
4505 we put it off for later. While we're reading, we keep the event here. */
4506 Lisp_Object delayed_switch_frame
;
4508 /* See the comment below... */
4509 #if defined (GOBBLE_FIRST_EVENT)
4510 Lisp_Object first_event
;
4513 Lisp_Object original_uppercase
;
4514 int original_uppercase_position
= -1;
4516 /* Gets around Microsoft compiler limitations. */
4519 struct buffer
*starting_buffer
;
4521 /* Nonzero if we seem to have got the beginning of a binding
4522 in function_key_map. */
4523 int function_key_possible
= 0;
4524 int key_translation_possible
= 0;
4528 last_nonmenu_event
= Qnil
;
4530 delayed_switch_frame
= Qnil
;
4531 fkey_map
= Vfunction_key_map
;
4532 keytran_map
= Vkey_translation_map
;
4534 /* If there is no function-key-map, turn off function key scanning. */
4535 if (NILP (Fkeymapp (Vfunction_key_map
)))
4536 fkey_start
= fkey_end
= bufsize
+ 1;
4538 /* If there is no key-translation-map, turn off scanning. */
4539 if (NILP (Fkeymapp (Vkey_translation_map
)))
4540 keytran_start
= keytran_end
= bufsize
+ 1;
4545 echo_prompt (XSTRING (prompt
)->data
);
4546 else if (cursor_in_echo_area
&& echo_keystrokes
)
4547 /* This doesn't put in a dash if the echo buffer is empty, so
4548 you don't always see a dash hanging out in the minibuffer. */
4552 /* Record the initial state of the echo area and this_command_keys;
4553 we will need to restore them if we replay a key sequence. */
4555 echo_start
= echo_length ();
4556 keys_start
= this_command_key_count
;
4558 #if defined (GOBBLE_FIRST_EVENT)
4559 /* This doesn't quite work, because some of the things that read_char
4560 does cannot safely be bypassed. It seems too risky to try to make
4563 /* Read the first char of the sequence specially, before setting
4564 up any keymaps, in case a filter runs and switches buffers on us. */
4565 first_event
= read_char (NILP (prompt
), 0, submaps
, last_nonmenu_event
,
4567 #endif /* GOBBLE_FIRST_EVENT */
4569 orig_local_map
= get_local_map (PT
, current_buffer
);
4571 /* We jump here when the key sequence has been thoroughly changed, and
4572 we need to rescan it starting from the beginning. When we jump here,
4573 keybuf[0..mock_input] holds the sequence we should reread. */
4576 starting_buffer
= current_buffer
;
4577 function_key_possible
= 0;
4578 key_translation_possible
= 0;
4580 /* Build our list of keymaps.
4581 If we recognize a function key and replace its escape sequence in
4582 keybuf with its symbol, or if the sequence starts with a mouse
4583 click and we need to switch buffers, we jump back here to rebuild
4584 the initial keymaps from the current buffer. */
4588 if (!NILP (Voverriding_local_map
))
4591 if (nmaps
> nmaps_allocated
)
4593 submaps
= (Lisp_Object
*) alloca (nmaps
* sizeof (submaps
[0]));
4594 defs
= (Lisp_Object
*) alloca (nmaps
* sizeof (defs
[0]));
4595 nmaps_allocated
= nmaps
;
4597 submaps
[0] = Voverriding_local_map
;
4601 nmaps
= current_minor_maps (0, &maps
) + 2;
4602 if (nmaps
> nmaps_allocated
)
4604 submaps
= (Lisp_Object
*) alloca (nmaps
* sizeof (submaps
[0]));
4605 defs
= (Lisp_Object
*) alloca (nmaps
* sizeof (defs
[0]));
4606 nmaps_allocated
= nmaps
;
4608 bcopy (maps
, submaps
, (nmaps
- 2) * sizeof (submaps
[0]));
4609 #ifdef USE_TEXT_PROPERTIES
4610 submaps
[nmaps
-2] = orig_local_map
;
4612 submaps
[nmaps
-2] = current_buffer
->keymap
;
4615 submaps
[nmaps
-1] = current_global_map
;
4618 /* Find an accurate initial value for first_binding. */
4619 for (first_binding
= 0; first_binding
< nmaps
; first_binding
++)
4620 if (! NILP (submaps
[first_binding
]))
4623 /* Start from the beginning in keybuf. */
4626 /* These are no-ops the first time through, but if we restart, they
4627 revert the echo area and this_command_keys to their original state. */
4628 this_command_key_count
= keys_start
;
4629 if (INTERACTIVE
&& t
< mock_input
)
4630 echo_truncate (echo_start
);
4632 /* If the best binding for the current key sequence is a keymap, or
4633 we may be looking at a function key's escape sequence, keep on
4635 while ((first_binding
< nmaps
&& ! NILP (submaps
[first_binding
]))
4636 || (first_binding
>= nmaps
4638 /* mock input is never part of a function key's sequence. */
4639 && mock_input
<= fkey_start
)
4640 || (first_binding
>= nmaps
4641 && keytran_start
< t
&& key_translation_possible
)
4642 /* Don't return in the middle of a possible function key sequence,
4643 if the only bindings we found were via case conversion.
4644 Thus, if ESC O a has a function-key-map translation
4645 and ESC o has a binding, don't return after ESC O,
4646 so that we can translate ESC O plus the next character. */
4650 int used_mouse_menu
= 0;
4652 /* Where the last real key started. If we need to throw away a
4653 key that has expanded into more than one element of keybuf
4654 (say, a mouse click on the mode line which is being treated
4655 as [mode-line (mouse-...)], then we backtrack to this point
4657 int last_real_key_start
;
4659 /* These variables are analogous to echo_start and keys_start;
4660 while those allow us to restart the entire key sequence,
4661 echo_local_start and keys_local_start allow us to throw away
4663 int echo_local_start
, keys_local_start
, local_first_binding
;
4666 error ("key sequence too long");
4669 echo_local_start
= echo_length ();
4670 keys_local_start
= this_command_key_count
;
4671 local_first_binding
= first_binding
;
4674 /* These are no-ops, unless we throw away a keystroke below and
4675 jumped back up to replay_key; in that case, these restore the
4676 variables to their original state, allowing us to replay the
4678 if (INTERACTIVE
&& t
< mock_input
)
4679 echo_truncate (echo_local_start
);
4680 this_command_key_count
= keys_local_start
;
4681 first_binding
= local_first_binding
;
4683 /* By default, assume each event is "real". */
4684 last_real_key_start
= t
;
4686 /* Does mock_input indicate that we are re-reading a key sequence? */
4690 add_command_key (key
);
4691 if (echo_keystrokes
)
4695 /* If not, we should actually read a character. */
4698 struct buffer
*buf
= current_buffer
;
4700 key
= read_char (NILP (prompt
), nmaps
, submaps
, last_nonmenu_event
,
4703 /* read_char returns t when it shows a menu and the user rejects it.
4708 /* read_char returns -1 at the end of a macro.
4709 Emacs 18 handles this by returning immediately with a
4710 zero, so that's what we'll do. */
4711 if (INTEGERP (key
) && XINT (key
) == -1)
4714 /* The Microsoft C compiler can't handle the goto that
4720 /* If the current buffer has been changed from under us, the
4721 keymap may have changed, so replay the sequence. */
4725 goto replay_sequence
;
4728 /* If we have a quit that was typed in another frame, and
4729 quit_throw_to_read_char switched buffers,
4730 replay to get the right keymap. */
4731 if (XINT (key
) == quit_char
&& current_buffer
!= starting_buffer
)
4736 goto replay_sequence
;
4742 /* Clicks in non-text areas get prefixed by the symbol
4743 in their CHAR-ADDRESS field. For example, a click on
4744 the mode line is prefixed by the symbol `mode-line'.
4746 Furthermore, key sequences beginning with mouse clicks
4747 are read using the keymaps of the buffer clicked on, not
4748 the current buffer. So we may have to switch the buffer
4751 When we turn one event into two events, we must make sure
4752 that neither of the two looks like the original--so that,
4753 if we replay the events, they won't be expanded again.
4754 If not for this, such reexpansion could happen either here
4755 or when user programs play with this-command-keys. */
4756 if (EVENT_HAS_PARAMETERS (key
))
4760 kind
= EVENT_HEAD_KIND (EVENT_HEAD (key
));
4761 if (EQ (kind
, Qmouse_click
))
4763 Lisp_Object window
, posn
;
4765 window
= POSN_WINDOW (EVENT_START (key
));
4766 posn
= POSN_BUFFER_POSN (EVENT_START (key
));
4769 /* We're looking at the second event of a
4770 sequence which we expanded before. Set
4771 last_real_key_start appropriately. */
4773 last_real_key_start
= t
- 1;
4776 /* Key sequences beginning with mouse clicks are
4777 read using the keymaps in the buffer clicked on,
4778 not the current buffer. If we're at the
4779 beginning of a key sequence, switch buffers. */
4780 if (last_real_key_start
== 0
4782 && BUFFERP (XWINDOW (window
)->buffer
)
4783 && XBUFFER (XWINDOW (window
)->buffer
) != current_buffer
)
4788 /* Arrange to go back to the original buffer once we're
4789 done reading the key sequence. Note that we can't
4790 use save_excursion_{save,restore} here, because they
4791 save point as well as the current buffer; we don't
4792 want to save point, because redisplay may change it,
4793 to accommodate a Fset_window_start or something. We
4794 don't want to do this at the top of the function,
4795 because we may get input from a subprocess which
4796 wants to change the selected window and stuff (say,
4798 record_unwind_protect (Fset_buffer
, Fcurrent_buffer ());
4800 set_buffer_internal (XBUFFER (XWINDOW (window
)->buffer
));
4801 orig_local_map
= get_local_map (PT
, current_buffer
);
4802 goto replay_sequence
;
4804 /* For a mouse click, get the local text-property keymap
4805 of the place clicked on, rather than point. */
4806 if (last_real_key_start
== 0 && CONSP (XCONS (key
)->cdr
)
4807 && ! localized_local_map
)
4809 Lisp_Object map_here
, start
, pos
;
4811 localized_local_map
= 1;
4812 start
= EVENT_START (key
);
4813 if (CONSP (start
) && CONSP (XCONS (start
)->cdr
))
4815 pos
= POSN_BUFFER_POSN (start
);
4818 map_here
= get_local_map (XINT (pos
), current_buffer
);
4819 if (!EQ (map_here
, orig_local_map
))
4821 orig_local_map
= map_here
;
4825 goto replay_sequence
;
4831 /* Expand mode-line and scroll-bar events into two events:
4832 use posn as a fake prefix key. */
4835 if (t
+ 1 >= bufsize
)
4836 error ("key sequence too long");
4841 /* Zap the position in key, so we know that we've
4842 expanded it, and don't try to do so again. */
4843 POSN_BUFFER_POSN (EVENT_START (key
))
4844 = Fcons (posn
, Qnil
);
4848 else if (EQ (kind
, Qswitch_frame
))
4850 /* If we're at the beginning of a key sequence, go
4851 ahead and return this event. If we're in the
4852 midst of a key sequence, delay it until the end. */
4855 delayed_switch_frame
= key
;
4859 else if (CONSP (XCONS (key
)->cdr
)
4860 && CONSP (EVENT_START (key
))
4861 && CONSP (XCONS (EVENT_START (key
))->cdr
))
4865 posn
= POSN_BUFFER_POSN (EVENT_START (key
));
4866 /* Handle menu-bar events:
4867 insert the dummy prefix event `menu-bar'. */
4868 if (EQ (posn
, Qmenu_bar
))
4870 if (t
+ 1 >= bufsize
)
4871 error ("key sequence too long");
4872 /* Run the Lucid hook. */
4873 if (!NILP (Vrun_hooks
))
4874 call1 (Vrun_hooks
, Qactivate_menubar_hook
);
4875 /* If it has changed current-menubar from previous value,
4876 really recompute the menubar from the value. */
4877 if (! NILP (Vlucid_menu_bar_dirty_flag
))
4878 call0 (Qrecompute_lucid_menubar
);
4882 /* Zap the position in key, so we know that we've
4883 expanded it, and don't try to do so again. */
4884 POSN_BUFFER_POSN (EVENT_START (key
))
4885 = Fcons (posn
, Qnil
);
4888 goto replay_sequence
;
4890 else if (CONSP (posn
))
4892 /* We're looking at the second event of a
4893 sequence which we expanded before. Set
4894 last_real_key_start appropriately. */
4895 if (last_real_key_start
== t
&& t
> 0)
4896 last_real_key_start
= t
- 1;
4901 /* We have finally decided that KEY is something we might want
4903 first_binding
= (follow_key (key
,
4904 nmaps
- first_binding
,
4905 submaps
+ first_binding
,
4906 defs
+ first_binding
,
4907 submaps
+ first_binding
)
4910 /* If KEY wasn't bound, we'll try some fallbacks. */
4911 if (first_binding
>= nmaps
)
4915 head
= EVENT_HEAD (key
);
4916 if (EQ (head
, Vhelp_char
))
4918 read_key_sequence_cmd
= Vprefix_help_command
;
4920 last_nonmenu_event
= key
;
4921 /* The Microsoft C compiler can't handle the goto that
4929 Lisp_Object breakdown
;
4932 breakdown
= parse_modifiers (head
);
4933 modifiers
= XINT (XCONS (XCONS (breakdown
)->cdr
)->car
);
4934 /* Attempt to reduce an unbound mouse event to a simpler
4935 event that is bound:
4936 Drags reduce to clicks.
4937 Double-clicks reduce to clicks.
4938 Triple-clicks reduce to double-clicks, then to clicks.
4939 Down-clicks are eliminated.
4940 Double-downs reduce to downs, then are eliminated.
4941 Triple-downs reduce to double-downs, then to downs,
4942 then are eliminated. */
4943 if (modifiers
& (down_modifier
| drag_modifier
4944 | double_modifier
| triple_modifier
))
4946 while (modifiers
& (down_modifier
| drag_modifier
4947 | double_modifier
| triple_modifier
))
4949 Lisp_Object new_head
, new_click
;
4950 if (modifiers
& triple_modifier
)
4951 modifiers
^= (double_modifier
| triple_modifier
);
4952 else if (modifiers
& double_modifier
)
4953 modifiers
&= ~double_modifier
;
4954 else if (modifiers
& drag_modifier
)
4955 modifiers
&= ~drag_modifier
;
4958 /* Dispose of this `down' event by simply jumping
4959 back to replay_key, to get another event.
4961 Note that if this event came from mock input,
4962 then just jumping back to replay_key will just
4963 hand it to us again. So we have to wipe out any
4966 We could delete keybuf[t] and shift everything
4967 after that to the left by one spot, but we'd also
4968 have to fix up any variable that points into
4969 keybuf, and shifting isn't really necessary
4972 Adding prefixes for non-textual mouse clicks
4973 creates two characters of mock input, and both
4974 must be thrown away. If we're only looking at
4975 the prefix now, we can just jump back to
4976 replay_key. On the other hand, if we've already
4977 processed the prefix, and now the actual click
4978 itself is giving us trouble, then we've lost the
4979 state of the keymaps we want to backtrack to, and
4980 we need to replay the whole sequence to rebuild
4983 Beyond that, only function key expansion could
4984 create more than two keys, but that should never
4985 generate mouse events, so it's okay to zero
4986 mock_input in that case too.
4988 Isn't this just the most wonderful code ever? */
4989 if (t
== last_real_key_start
)
4996 mock_input
= last_real_key_start
;
4997 goto replay_sequence
;
5002 = apply_modifiers (modifiers
, XCONS (breakdown
)->car
);
5004 = Fcons (new_head
, Fcons (EVENT_START (key
), Qnil
));
5006 /* Look for a binding for this new key. follow_key
5007 promises that it didn't munge submaps the
5008 last time we called it, since key was unbound. */
5010 = (follow_key (new_click
,
5011 nmaps
- local_first_binding
,
5012 submaps
+ local_first_binding
,
5013 defs
+ local_first_binding
,
5014 submaps
+ local_first_binding
)
5015 + local_first_binding
);
5017 /* If that click is bound, go for it. */
5018 if (first_binding
< nmaps
)
5023 /* Otherwise, we'll leave key set to the drag event. */
5030 /* Normally, last_nonmenu_event gets the previous key we read.
5031 But when a mouse popup menu is being used,
5032 we don't update last_nonmenu_event; it continues to hold the mouse
5033 event that preceded the first level of menu. */
5034 if (!used_mouse_menu
)
5035 last_nonmenu_event
= key
;
5037 /* If the sequence is unbound, see if we can hang a function key
5038 off the end of it. We only want to scan real keyboard input
5039 for function key sequences, so if mock_input says that we're
5040 re-reading old events, don't examine it. */
5041 if (first_binding
>= nmaps
5044 Lisp_Object fkey_next
;
5046 /* Continue scan from fkey_end until we find a bound suffix.
5047 If we fail, increment fkey_start
5048 and start fkey_end from there. */
5049 while (fkey_end
< t
)
5053 key
= keybuf
[fkey_end
++];
5054 /* Look up meta-characters by prefixing them
5055 with meta_prefix_char. I hate this. */
5056 if (INTEGERP (key
) && XINT (key
) & meta_modifier
)
5061 (access_keymap (fkey_map
, meta_prefix_char
, 1, 0)),
5063 XSETFASTINT (key
, XFASTINT (key
) & ~meta_modifier
);
5066 fkey_next
= fkey_map
;
5069 = get_keyelt (access_keymap (fkey_next
, key
, 1, 0));
5071 #if 0 /* I didn't turn this on, because it might cause trouble
5072 for the mapping of return into C-m and tab into C-i. */
5073 /* Optionally don't map function keys into other things.
5074 This enables the user to redefine kp- keys easily. */
5075 if (SYMBOLP (key
) && !NILP (Vinhibit_function_key_mapping
))
5079 /* If the function key map gives a function, not an
5080 array, then call the function with no args and use
5081 its value instead. */
5082 if (SYMBOLP (fkey_next
) && ! NILP (Ffboundp (fkey_next
))
5085 struct gcpro gcpro1
, gcpro2
, gcpro3
;
5089 GCPRO3 (fkey_map
, keytran_map
, delayed_switch_frame
);
5090 fkey_next
= call1 (fkey_next
, prompt
);
5092 /* If the function returned something invalid,
5093 barf--don't ignore it.
5094 (To ignore it safely, we would need to gcpro a bunch of
5095 other variables.) */
5096 if (! (VECTORP (fkey_next
) || STRINGP (fkey_next
)))
5097 error ("Function in function-key-map returns invalid key sequence");
5100 function_key_possible
= ! NILP (fkey_next
);
5102 /* If keybuf[fkey_start..fkey_end] is bound in the
5103 function key map and it's a suffix of the current
5104 sequence (i.e. fkey_end == t), replace it with
5105 the binding and restart with fkey_start at the end. */
5106 if ((VECTORP (fkey_next
) || STRINGP (fkey_next
))
5109 int len
= XFASTINT (Flength (fkey_next
));
5111 t
= fkey_start
+ len
;
5113 error ("key sequence too long");
5115 if (VECTORP (fkey_next
))
5116 bcopy (XVECTOR (fkey_next
)->contents
,
5117 keybuf
+ fkey_start
,
5118 (t
- fkey_start
) * sizeof (keybuf
[0]));
5119 else if (STRINGP (fkey_next
))
5123 for (i
= 0; i
< len
; i
++)
5124 XSETFASTINT (keybuf
[fkey_start
+ i
],
5125 XSTRING (fkey_next
)->data
[i
]);
5129 fkey_start
= fkey_end
= t
;
5130 fkey_map
= Vfunction_key_map
;
5132 /* Do pass the results through key-translation-map. */
5133 keytran_start
= keytran_end
= 0;
5134 keytran_map
= Vkey_translation_map
;
5136 goto replay_sequence
;
5139 fkey_map
= get_keymap_1 (fkey_next
, 0, 1);
5141 /* If we no longer have a bound suffix, try a new positions for
5143 if (NILP (fkey_map
))
5145 fkey_end
= ++fkey_start
;
5146 fkey_map
= Vfunction_key_map
;
5147 function_key_possible
= 0;
5152 /* Look for this sequence in key-translation-map. */
5154 Lisp_Object keytran_next
;
5156 /* Scan from keytran_end until we find a bound suffix. */
5157 while (keytran_end
< t
)
5161 key
= keybuf
[keytran_end
++];
5162 /* Look up meta-characters by prefixing them
5163 with meta_prefix_char. I hate this. */
5164 if (INTEGERP (key
) && XINT (key
) & meta_modifier
)
5169 (access_keymap (keytran_map
, meta_prefix_char
, 1, 0)),
5171 XSETFASTINT (key
, XFASTINT (key
) & ~meta_modifier
);
5174 keytran_next
= keytran_map
;
5177 = get_keyelt (access_keymap (keytran_next
, key
, 1, 0));
5179 /* If the key translation map gives a function, not an
5180 array, then call the function with no args and use
5181 its value instead. */
5182 if (SYMBOLP (keytran_next
) && ! NILP (Ffboundp (keytran_next
))
5183 && keytran_end
== t
)
5185 struct gcpro gcpro1
, gcpro2
, gcpro3
;
5189 GCPRO3 (fkey_map
, keytran_map
, delayed_switch_frame
);
5190 keytran_next
= call1 (keytran_next
, prompt
);
5192 /* If the function returned something invalid,
5193 barf--don't ignore it.
5194 (To ignore it safely, we would need to gcpro a bunch of
5195 other variables.) */
5196 if (! (VECTORP (keytran_next
) || STRINGP (keytran_next
)))
5197 error ("Function in key-translation-map returns invalid key sequence");
5200 key_translation_possible
= ! NILP (keytran_next
);
5202 /* If keybuf[keytran_start..keytran_end] is bound in the
5203 key translation map and it's a suffix of the current
5204 sequence (i.e. keytran_end == t), replace it with
5205 the binding and restart with keytran_start at the end. */
5206 if ((VECTORP (keytran_next
) || STRINGP (keytran_next
))
5207 && keytran_end
== t
)
5209 int len
= XFASTINT (Flength (keytran_next
));
5211 t
= keytran_start
+ len
;
5213 error ("key sequence too long");
5215 if (VECTORP (keytran_next
))
5216 bcopy (XVECTOR (keytran_next
)->contents
,
5217 keybuf
+ keytran_start
,
5218 (t
- keytran_start
) * sizeof (keybuf
[0]));
5219 else if (STRINGP (keytran_next
))
5223 for (i
= 0; i
< len
; i
++)
5224 XSETFASTINT (keybuf
[keytran_start
+ i
],
5225 XSTRING (keytran_next
)->data
[i
]);
5229 keytran_start
= keytran_end
= t
;
5230 keytran_map
= Vkey_translation_map
;
5232 /* Don't pass the results of key-translation-map
5233 through function-key-map. */
5234 fkey_start
= fkey_end
= t
;
5235 fkey_map
= Vkey_translation_map
;
5237 goto replay_sequence
;
5240 keytran_map
= get_keymap_1 (keytran_next
, 0, 1);
5242 /* If we no longer have a bound suffix, try a new positions for
5244 if (NILP (keytran_map
))
5246 keytran_end
= ++keytran_start
;
5247 keytran_map
= Vkey_translation_map
;
5248 key_translation_possible
= 0;
5253 /* If KEY is not defined in any of the keymaps,
5254 and cannot be part of a function key or translation,
5255 and is an upper case letter
5256 use the corresponding lower-case letter instead. */
5257 if (first_binding
== nmaps
&& ! function_key_possible
5258 && ! key_translation_possible
5260 && ((((XINT (key
) & 0x3ffff)
5261 < XSTRING (current_buffer
->downcase_table
)->size
)
5262 && UPPERCASEP (XINT (key
) & 0x3ffff))
5263 || (XINT (key
) & shift_modifier
)))
5265 original_uppercase
= key
;
5266 original_uppercase_position
= t
- 1;
5268 if (XINT (key
) & shift_modifier
)
5269 XSETINT (key
, XINT (key
) & ~shift_modifier
);
5271 XSETINT (key
, (DOWNCASE (XINT (key
) & 0x3ffff)
5272 | (XINT (key
) & ~0x3ffff)));
5274 keybuf
[t
- 1] = key
;
5276 goto replay_sequence
;
5278 /* If KEY is not defined in any of the keymaps,
5279 and cannot be part of a function key or translation,
5280 and is a shifted function key,
5281 use the corresponding unshifted function key instead. */
5282 if (first_binding
== nmaps
&& ! function_key_possible
5283 && ! key_translation_possible
5286 Lisp_Object breakdown
;
5289 original_uppercase
= key
;
5290 original_uppercase_position
= t
- 1;
5292 breakdown
= parse_modifiers (key
);
5293 modifiers
= XINT (XCONS (XCONS (breakdown
)->cdr
)->car
);
5294 if (modifiers
& shift_modifier
)
5296 modifiers
&= ~shift_modifier
;
5297 key
= apply_modifiers (make_number (modifiers
),
5298 XCONS (breakdown
)->car
);
5300 keybuf
[t
- 1] = key
;
5302 goto replay_sequence
;
5308 read_key_sequence_cmd
= (first_binding
< nmaps
5309 ? defs
[first_binding
]
5312 unread_switch_frame
= delayed_switch_frame
;
5313 unbind_to (count
, Qnil
);
5315 if (dont_downcase_last
&& t
- 1 == original_uppercase_position
)
5316 keybuf
[t
- 1] = original_uppercase
;
5318 /* Occasionally we fabricate events, perhaps by expanding something
5319 according to function-key-map, or by adding a prefix symbol to a
5320 mouse click in the scroll bar or modeline. In this cases, return
5321 the entire generated key sequence, even if we hit an unbound
5322 prefix or a definition before the end. This means that you will
5323 be able to push back the event properly, and also means that
5324 read-key-sequence will always return a logical unit.
5327 for (; t
< mock_input
; t
++)
5329 if (echo_keystrokes
)
5330 echo_char (keybuf
[t
]);
5331 add_command_key (keybuf
[t
]);
5337 #if 0 /* This doc string is too long for some compilers.
5338 This commented-out definition serves for DOC. */
5339 DEFUN ("read-key-sequence", Fread_key_sequence
, Sread_key_sequence
, 1, 2, 0,
5340 "Read a sequence of keystrokes and return as a string or vector.\n\
5341 The sequence is sufficient to specify a non-prefix command in the\n\
5342 current local and global maps.\n\
5344 First arg PROMPT is a prompt string. If nil, do not prompt specially.\n\
5345 Second (optional) arg CONTINUE-ECHO, if non-nil, means this key echos\n\
5346 as a continuation of the previous key.\n\
5348 The third (optional) arg DONT-DOWNCASE-LAST, if non-nil, means do not\n\
5349 convert the last event to lower case. (Normally any upper case event\n\
5350 is converted to lower case if the original event is undefined and the lower\n\
5351 case equivalent is defined.) A non-nil value is appropriate for reading\n\
5352 a key sequence to be defined.\n\
5354 A C-g typed while in this function is treated like any other character,\n\
5355 and `quit-flag' is not set.\n\
5357 If the key sequence starts with a mouse click, then the sequence is read\n\
5358 using the keymaps of the buffer of the window clicked in, not the buffer\n\
5359 of the selected window as normal.\n\
5361 `read-key-sequence' drops unbound button-down events, since you normally\n\
5362 only care about the click or drag events which follow them. If a drag\n\
5363 or multi-click event is unbound, but the corresponding click event would\n\
5364 be bound, `read-key-sequence' turns the event into a click event at the\n\
5365 drag's starting position. This means that you don't have to distinguish\n\
5366 between click and drag, double, or triple events unless you want to.\n\
5368 `read-key-sequence' prefixes mouse events on mode lines, the vertical\n\
5369 lines separating windows, and scroll bars with imaginary keys\n\
5370 `mode-line', `vertical-line', and `vertical-scroll-bar'.\n\
5372 If the user switches frames in the middle of a key sequence, the\n\
5373 frame-switch event is put off until after the current key sequence.\n\
5375 `read-key-sequence' checks `function-key-map' for function key\n\
5376 sequences, where they wouldn't conflict with ordinary bindings. See\n\
5377 `function-key-map' for more details.")
5378 (prompt
, continue_echo
)
5381 DEFUN ("read-key-sequence", Fread_key_sequence
, Sread_key_sequence
, 1, 3, 0,
5383 (prompt
, continue_echo
, dont_downcase_last
)
5384 Lisp_Object prompt
, continue_echo
, dont_downcase_last
;
5386 Lisp_Object keybuf
[30];
5388 struct gcpro gcpro1
, gcpro2
;
5391 CHECK_STRING (prompt
, 0);
5394 bzero (keybuf
, sizeof keybuf
);
5396 gcpro1
.nvars
= (sizeof keybuf
/sizeof (keybuf
[0]));
5398 if (NILP (continue_echo
))
5399 this_command_key_count
= 0;
5401 i
= read_key_sequence (keybuf
, (sizeof keybuf
/sizeof (keybuf
[0])),
5402 prompt
, ! NILP (dont_downcase_last
));
5410 return make_event_array (i
, keybuf
);
5413 DEFUN ("command-execute", Fcommand_execute
, Scommand_execute
, 1, 2, 0,
5414 "Execute CMD as an editor command.\n\
5415 CMD must be a symbol that satisfies the `commandp' predicate.\n\
5416 Optional second arg RECORD-FLAG non-nil\n\
5417 means unconditionally put this command in `command-history'.\n\
5418 Otherwise, that is done only if an arg is read using the minibuffer.")
5420 Lisp_Object cmd
, record
;
5422 register Lisp_Object final
;
5423 register Lisp_Object tem
;
5424 Lisp_Object prefixarg
;
5425 struct backtrace backtrace
;
5426 extern int debug_on_next_call
;
5428 prefixarg
= current_perdisplay
->Vprefix_arg
;
5429 current_perdisplay
->Vprefix_arg
= Qnil
;
5430 current_perdisplay
->Vcurrent_prefix_arg
= prefixarg
;
5431 debug_on_next_call
= 0;
5435 tem
= Fget (cmd
, Qdisabled
);
5436 if (!NILP (tem
) && !NILP (Vrun_hooks
))
5437 return call1 (Vrun_hooks
, Qdisabled_command_hook
);
5442 final
= Findirect_function (cmd
);
5444 if (CONSP (final
) && (tem
= Fcar (final
), EQ (tem
, Qautoload
)))
5445 do_autoload (final
, cmd
);
5450 if (STRINGP (final
) || VECTORP (final
))
5452 /* If requested, place the macro in the command history. For
5453 other sorts of commands, call-interactively takes care of
5457 = Fcons (Fcons (Qexecute_kbd_macro
,
5458 Fcons (final
, Fcons (prefixarg
, Qnil
))),
5461 return Fexecute_kbd_macro (final
, prefixarg
);
5463 if (CONSP (final
) || SUBRP (final
) || COMPILEDP (final
))
5465 backtrace
.next
= backtrace_list
;
5466 backtrace_list
= &backtrace
;
5467 backtrace
.function
= &Qcall_interactively
;
5468 backtrace
.args
= &cmd
;
5469 backtrace
.nargs
= 1;
5470 backtrace
.evalargs
= 0;
5472 tem
= Fcall_interactively (cmd
, record
);
5474 backtrace_list
= backtrace
.next
;
5480 DEFUN ("execute-extended-command", Fexecute_extended_command
, Sexecute_extended_command
,
5482 "Read function name, then read its arguments and call it.")
5484 Lisp_Object prefixarg
;
5486 Lisp_Object function
;
5488 Lisp_Object saved_keys
;
5489 struct gcpro gcpro1
;
5491 saved_keys
= Fvector (this_command_key_count
,
5492 XVECTOR (this_command_keys
)->contents
);
5494 GCPRO1 (saved_keys
);
5496 if (EQ (prefixarg
, Qminus
))
5498 else if (CONSP (prefixarg
) && XINT (XCONS (prefixarg
)->car
) == 4)
5499 strcpy (buf
, "C-u ");
5500 else if (CONSP (prefixarg
) && INTEGERP (XCONS (prefixarg
)->car
))
5501 sprintf (buf
, "%d ", XINT (XCONS (prefixarg
)->car
));
5502 else if (INTEGERP (prefixarg
))
5503 sprintf (buf
, "%d ", XINT (prefixarg
));
5505 /* This isn't strictly correct if execute-extended-command
5506 is bound to anything else. Perhaps it should use
5507 this_command_keys? */
5508 strcat (buf
, "M-x ");
5510 /* Prompt with buf, and then read a string, completing from and
5511 restricting to the set of all defined commands. Don't provide
5512 any initial input. Save the command read on the extended-command
5514 function
= Fcompleting_read (build_string (buf
),
5515 Vobarray
, Qcommandp
,
5516 Qt
, Qnil
, Qextended_command_history
);
5518 /* Set this_command_keys to the concatenation of saved_keys and
5519 function, followed by a RET. */
5521 struct Lisp_String
*str
;
5526 this_command_key_count
= 0;
5528 keys
= XVECTOR (saved_keys
)->contents
;
5529 for (i
= 0; i
< XVECTOR (saved_keys
)->size
; i
++)
5530 add_command_key (keys
[i
]);
5532 str
= XSTRING (function
);
5533 for (i
= 0; i
< str
->size
; i
++)
5535 XSETFASTINT (tem
, str
->data
[i
]);
5536 add_command_key (tem
);
5539 XSETFASTINT (tem
, '\015');
5540 add_command_key (tem
);
5545 function
= Fintern (function
, Qnil
);
5546 current_perdisplay
->Vprefix_arg
= prefixarg
;
5547 this_command
= function
;
5549 return Fcommand_execute (function
, Qt
);
5553 detect_input_pending ()
5556 get_input_pending (&input_pending
);
5558 return input_pending
;
5561 /* This is called in some cases before a possible quit.
5562 It cases the next call to detect_input_pending to recompute input_pending.
5563 So calling this function unnecessarily can't do any harm. */
5564 clear_input_pending ()
5569 DEFUN ("input-pending-p", Finput_pending_p
, Sinput_pending_p
, 0, 0, 0,
5570 "T if command input is currently available with no waiting.\n\
5571 Actually, the value is nil only if we can be sure that no input is available.")
5574 if (!NILP (Vunread_command_events
) || unread_command_char
!= -1)
5577 return detect_input_pending () ? Qt
: Qnil
;
5580 DEFUN ("recent-keys", Frecent_keys
, Srecent_keys
, 0, 0, 0,
5581 "Return vector of last 100 events, not counting those from keyboard macros.")
5584 Lisp_Object
*keys
= XVECTOR (recent_keys
)->contents
;
5587 if (total_keys
< NUM_RECENT_KEYS
)
5588 return Fvector (total_keys
, keys
);
5591 val
= Fvector (NUM_RECENT_KEYS
, keys
);
5592 bcopy (keys
+ recent_keys_index
,
5593 XVECTOR (val
)->contents
,
5594 (NUM_RECENT_KEYS
- recent_keys_index
) * sizeof (Lisp_Object
));
5596 XVECTOR (val
)->contents
+ NUM_RECENT_KEYS
- recent_keys_index
,
5597 recent_keys_index
* sizeof (Lisp_Object
));
5602 DEFUN ("this-command-keys", Fthis_command_keys
, Sthis_command_keys
, 0, 0, 0,
5603 "Return the key sequence that invoked this command.\n\
5604 The value is a string or a vector.")
5607 return make_event_array (this_command_key_count
,
5608 XVECTOR (this_command_keys
)->contents
);
5611 DEFUN ("recursion-depth", Frecursion_depth
, Srecursion_depth
, 0, 0, 0,
5612 "Return the current depth in recursive edits.")
5616 XSETFASTINT (temp
, command_loop_level
+ minibuf_level
);
5620 DEFUN ("open-dribble-file", Fopen_dribble_file
, Sopen_dribble_file
, 1, 1,
5621 "FOpen dribble file: ",
5622 "Start writing all keyboard characters to a dribble file called FILE.\n\
5623 If FILE is nil, close any open dribble file.")
5637 file
= Fexpand_file_name (file
, Qnil
);
5638 dribble
= fopen (XSTRING (file
)->data
, "w");
5643 DEFUN ("discard-input", Fdiscard_input
, Sdiscard_input
, 0, 0, 0,
5644 "Discard the contents of the terminal input buffer.\n\
5645 Also cancel any kbd macro being defined.")
5648 PERDISPLAY
*perd
= &the_only_perdisplay
;
5649 defining_kbd_macro
= 0;
5650 update_mode_lines
++;
5652 Vunread_command_events
= Qnil
;
5653 unread_command_char
= -1;
5655 discard_tty_input ();
5657 /* Without the cast, GCC complains that this assignment loses the
5658 volatile qualifier of kbd_store_ptr. Is there anything wrong
5660 perd
->kbd_fetch_ptr
= (struct input_event
*) perd
->kbd_store_ptr
;
5661 Ffillarray (perd
->kbd_buffer_frame_or_window
, Qnil
);
5667 DEFUN ("suspend-emacs", Fsuspend_emacs
, Ssuspend_emacs
, 0, 1, "",
5668 "Stop Emacs and return to superior process. You can resume later.\n\
5669 If `cannot-suspend' is non-nil, or if the system doesn't support job\n\
5670 control, run a subshell instead.\n\n\
5671 If optional arg STUFFSTRING is non-nil, its characters are stuffed\n\
5672 to be read as terminal input by Emacs's parent, after suspension.\n\
5674 Before suspending, run the normal hook `suspend-hook'.\n\
5675 After resumption run the normal hook `suspend-resume-hook'.\n\
5677 Some operating systems cannot stop the Emacs process and resume it later.\n\
5678 On such systems, Emacs starts a subshell instead of suspending.")
5680 Lisp_Object stuffstring
;
5683 int count
= specpdl_ptr
- specpdl
;
5684 int old_height
, old_width
;
5686 struct gcpro gcpro1
, gcpro2
;
5687 extern init_sys_modes ();
5689 if (!NILP (stuffstring
))
5690 CHECK_STRING (stuffstring
, 0);
5692 /* Run the functions in suspend-hook. */
5693 if (!NILP (Vrun_hooks
))
5694 call1 (Vrun_hooks
, intern ("suspend-hook"));
5696 GCPRO1 (stuffstring
);
5697 get_frame_size (&old_width
, &old_height
);
5699 /* sys_suspend can get an error if it tries to fork a subshell
5700 and the system resources aren't available for that. */
5701 record_unwind_protect (init_sys_modes
, 0);
5702 stuff_buffered_input (stuffstring
);
5707 unbind_to (count
, Qnil
);
5709 /* Check if terminal/window size has changed.
5710 Note that this is not useful when we are running directly
5711 with a window system; but suspend should be disabled in that case. */
5712 get_frame_size (&width
, &height
);
5713 if (width
!= old_width
|| height
!= old_height
)
5714 change_frame_size (selected_frame
, height
, width
, 0, 0);
5716 /* Run suspend-resume-hook. */
5717 if (!NILP (Vrun_hooks
))
5718 call1 (Vrun_hooks
, intern ("suspend-resume-hook"));
5724 /* If STUFFSTRING is a string, stuff its contents as pending terminal input.
5725 Then in any case stuff anything Emacs has read ahead and not used. */
5727 stuff_buffered_input (stuffstring
)
5728 Lisp_Object stuffstring
;
5730 /* stuff_char works only in BSD, versions 4.2 and up. */
5733 register unsigned char *p
;
5734 PERDISPLAY
*perd
= &the_only_perdisplay
; /* We really want the primary display's perd */
5736 if (STRINGP (stuffstring
))
5740 p
= XSTRING (stuffstring
)->data
;
5741 count
= XSTRING (stuffstring
)->size
;
5746 /* Anything we have read ahead, put back for the shell to read. */
5747 while (perd
->kbd_fetch_ptr
!= perd
->kbd_store_ptr
)
5749 if (perd
->kbd_fetch_ptr
== perd
->kbd_buffer
+ KBD_BUFFER_SIZE
)
5750 perd
->kbd_fetch_ptr
= perd
->kbd_buffer
;
5751 if (perd
->kbd_fetch_ptr
->kind
== ascii_keystroke
)
5752 stuff_char (perd
->kbd_fetch_ptr
->code
);
5753 perd
->kbd_fetch_ptr
->kind
= no_event
;
5754 (XVECTOR (perd
->kbd_buffer_frame_or_window
)->contents
[perd
->kbd_fetch_ptr
5757 perd
->kbd_fetch_ptr
++;
5761 #endif /* BSD and not BSD4_1 */
5764 set_waiting_for_input (time_to_clear
)
5765 EMACS_TIME
*time_to_clear
;
5767 input_available_clear_time
= time_to_clear
;
5769 /* Tell interrupt_signal to throw back to read_char, */
5770 waiting_for_input
= 1;
5772 /* If interrupt_signal was called before and buffered a C-g,
5773 make it run again now, to avoid timing error. */
5774 if (!NILP (Vquit_flag
))
5775 quit_throw_to_read_char ();
5778 clear_waiting_for_input ()
5780 /* Tell interrupt_signal not to throw back to read_char, */
5781 waiting_for_input
= 0;
5782 input_available_clear_time
= 0;
5785 /* This routine is called at interrupt level in response to C-G.
5786 If interrupt_input, this is the handler for SIGINT.
5787 Otherwise, it is called from kbd_buffer_store_event,
5788 in handling SIGIO or SIGTINT.
5790 If `waiting_for_input' is non zero, then unless `echoing' is nonzero,
5791 immediately throw back to read_char.
5793 Otherwise it sets the Lisp variable quit-flag not-nil.
5794 This causes eval to throw, when it gets a chance.
5795 If quit-flag is already non-nil, it stops the job right away. */
5801 /* Must preserve main program's value of errno. */
5802 int old_errno
= errno
;
5805 if (!read_socket_hook
&& NILP (Vwindow_system
))
5807 /* USG systems forget handlers when they are used;
5808 must reestablish each time */
5809 signal (SIGINT
, interrupt_signal
);
5810 signal (SIGQUIT
, interrupt_signal
);
5816 if (!NILP (Vquit_flag
) && FRAME_TERMCAP_P (selected_frame
))
5821 #ifdef SIGTSTP /* Support possible in later USG versions */
5823 * On systems which can suspend the current process and return to the original
5824 * shell, this command causes the user to end up back at the shell.
5825 * The "Auto-save" and "Abort" questions are not asked until
5826 * the user elects to return to emacs, at which point he can save the current
5827 * job and either dump core or continue.
5832 if (sys_suspend () == -1)
5834 printf ("Not running as a subprocess;\n");
5835 printf ("you can continue or abort.\n");
5838 /* Perhaps should really fork an inferior shell?
5839 But that would not provide any way to get back
5840 to the original shell, ever. */
5841 printf ("No support for stopping a process on this operating system;\n");
5842 printf ("you can continue or abort.\n");
5843 #endif /* not VMS */
5844 #endif /* not SIGTSTP */
5846 /* We must remain inside the screen area when the internal terminal
5847 is used. Note that [Enter] is not echoed by dos. */
5850 printf ("Auto-save? (y or n) ");
5852 if (((c
= getchar ()) & ~040) == 'Y')
5854 Fdo_auto_save (Qt
, Qnil
);
5856 printf ("\r\nAuto-save done");
5857 #else /* not MSDOS */
5858 printf ("Auto-save done\n");
5859 #endif /* not MSDOS */
5861 while (c
!= '\n') c
= getchar ();
5863 printf ("\r\nAbort? (y or n) ");
5864 #else /* not MSDOS */
5866 printf ("Abort (and enter debugger)? (y or n) ");
5868 printf ("Abort (and dump core)? (y or n) ");
5869 #endif /* not VMS */
5870 #endif /* not MSDOS */
5872 if (((c
= getchar ()) & ~040) == 'Y')
5874 while (c
!= '\n') c
= getchar ();
5876 printf ("\r\nContinuing...\r\n");
5877 #else /* not MSDOS */
5878 printf ("Continuing...\n");
5879 #endif /* not MSDOS */
5885 /* If executing a function that wants to be interrupted out of
5886 and the user has not deferred quitting by binding `inhibit-quit'
5887 then quit right away. */
5888 if (immediate_quit
&& NILP (Vinhibit_quit
))
5892 Fsignal (Qquit
, Qnil
);
5895 /* Else request quit when it's safe */
5899 if (waiting_for_input
&& !echoing
)
5900 quit_throw_to_read_char ();
5905 /* Handle a C-g by making read_char return C-g. */
5907 quit_throw_to_read_char ()
5909 quit_error_check ();
5911 /* Prevent another signal from doing this before we finish. */
5912 clear_waiting_for_input ();
5915 Vunread_command_events
= Qnil
;
5916 unread_command_char
= -1;
5918 #ifdef POLL_FOR_INPUT
5919 /* May be > 1 if in recursive minibuffer. */
5920 if (poll_suppress_count
== 0)
5924 if (FRAMEP (internal_last_event_frame
)
5925 && XFRAME (internal_last_event_frame
) != selected_frame
)
5926 Fhandle_switch_frame (make_lispy_switch_frame (internal_last_event_frame
));
5929 _longjmp (getcjmp
, 1);
5932 DEFUN ("set-input-mode", Fset_input_mode
, Sset_input_mode
, 3, 4, 0,
5933 "Set mode of reading keyboard input.\n\
5934 First arg INTERRUPT non-nil means use input interrupts;\n\
5935 nil means use CBREAK mode.\n\
5936 Second arg FLOW non-nil means use ^S/^Q flow control for output to terminal\n\
5937 (no effect except in CBREAK mode).\n\
5938 Third arg META t means accept 8-bit input (for a Meta key).\n\
5939 META nil means ignore the top bit, on the assumption it is parity.\n\
5940 Otherwise, accept 8-bit input and don't use the top bit for Meta.\n\
5941 Optional fourth arg QUIT if non-nil specifies character to use for quitting.\n\
5942 See also `current-input-mode'.")
5943 (interrupt
, flow
, meta
, quit
)
5944 Lisp_Object interrupt
, flow
, meta
, quit
;
5947 && (!INTEGERP (quit
) || XINT (quit
) < 0 || XINT (quit
) > 0400))
5948 error ("set-input-mode: QUIT must be an ASCII character");
5950 #ifdef POLL_FOR_INPUT
5956 /* Note SIGIO has been undef'd if FIONREAD is missing. */
5957 #ifdef NO_SOCK_SIGIO
5958 if (read_socket_hook
)
5959 interrupt_input
= 0; /* No interrupts if reading from a socket. */
5961 #endif /* NO_SOCK_SIGIO */
5962 interrupt_input
= !NILP (interrupt
);
5963 #else /* not SIGIO */
5964 interrupt_input
= 0;
5965 #endif /* not SIGIO */
5966 /* Our VMS input only works by interrupts, as of now. */
5968 interrupt_input
= 1;
5970 flow_control
= !NILP (flow
);
5973 else if (EQ (meta
, Qt
))
5978 /* Don't let this value be out of range. */
5979 quit_char
= XINT (quit
) & (meta_key
? 0377 : 0177);
5983 #ifdef POLL_FOR_INPUT
5984 poll_suppress_count
= 1;
5990 DEFUN ("current-input-mode", Fcurrent_input_mode
, Scurrent_input_mode
, 0, 0, 0,
5991 "Return information about the way Emacs currently reads keyboard input.\n\
5992 The value is a list of the form (INTERRUPT FLOW META QUIT), where\n\
5993 INTERRUPT is non-nil if Emacs is using interrupt-driven input; if\n\
5994 nil, Emacs is using CBREAK mode.\n\
5995 FLOW is non-nil if Emacs uses ^S/^Q flow control for output to the\n\
5996 terminal; this does not apply if Emacs uses interrupt-driven input.\n\
5997 META is t if accepting 8-bit input with 8th bit as Meta flag.\n\
5998 META nil means ignoring the top bit, on the assumption it is parity.\n\
5999 META is neither t nor nil if accepting 8-bit input and using\n\
6000 all 8 bits as the character code.\n\
6001 QUIT is the character Emacs currently uses to quit.\n\
6002 The elements of this list correspond to the arguments of\n\
6008 val
[0] = interrupt_input
? Qt
: Qnil
;
6009 val
[1] = flow_control
? Qt
: Qnil
;
6010 val
[2] = meta_key
== 2 ? make_number (0) : meta_key
== 1 ? Qt
: Qnil
;
6011 XSETFASTINT (val
[3], quit_char
);
6013 return Flist (sizeof (val
) / sizeof (val
[0]), val
);
6019 /* This is correct before outermost invocation of the editor loop */
6020 command_loop_level
= -1;
6022 quit_char
= Ctl ('g');
6023 Vunread_command_events
= Qnil
;
6024 unread_command_char
= -1;
6026 recent_keys_index
= 0;
6027 the_only_perdisplay
.kbd_buffer
6028 = (struct input_event
*)xmalloc (KBD_BUFFER_SIZE
6029 * sizeof (struct input_event
));
6030 the_only_perdisplay
.kbd_fetch_ptr
= the_only_perdisplay
.kbd_buffer
;
6031 the_only_perdisplay
.kbd_store_ptr
= the_only_perdisplay
.kbd_buffer
;
6033 do_mouse_tracking
= Qnil
;
6038 /* This means that command_loop_1 won't try to select anything the first
6040 internal_last_event_frame
= Qnil
;
6041 Vlast_event_frame
= internal_last_event_frame
;
6044 /* If we're running a dumped Emacs, we need to clear out
6045 kbd_buffer_frame_or_window, in case some events got into it
6048 If we're running an undumped Emacs, it hasn't been initialized by
6049 syms_of_keyboard yet. */
6053 perd
= &the_only_perdisplay
;
6054 /* FOR_ALL_PERDISPLAYS (perd) */
6056 Ffillarray (perd
->kbd_buffer_frame_or_window
, Qnil
);
6060 if (!noninteractive
&& !read_socket_hook
&& NILP (Vwindow_system
))
6062 signal (SIGINT
, interrupt_signal
);
6063 #if defined (HAVE_TERMIO) || defined (HAVE_TERMIOS)
6064 /* For systems with SysV TERMIO, C-g is set up for both SIGINT and
6065 SIGQUIT and we can't tell which one it will give us. */
6066 signal (SIGQUIT
, interrupt_signal
);
6067 #endif /* HAVE_TERMIO */
6069 /* Note SIGIO has been undef'd if FIONREAD is missing. */
6071 if (!noninteractive
)
6072 signal (SIGIO
, input_available_signal
);
6075 /* Use interrupt input by default, if it works and noninterrupt input
6076 has deficiencies. */
6078 #ifdef INTERRUPT_INPUT
6079 interrupt_input
= 1;
6081 interrupt_input
= 0;
6084 /* Our VMS input only works by interrupts, as of now. */
6086 interrupt_input
= 1;
6092 if (keyboard_init_hook
)
6093 (*keyboard_init_hook
) ();
6095 #ifdef POLL_FOR_INPUT
6096 poll_suppress_count
= 1;
6101 /* This type's only use is in syms_of_keyboard, to initialize the
6102 event header symbols and put properties on them. */
6109 struct event_head head_table
[] = {
6110 &Qmouse_movement
, "mouse-movement", &Qmouse_movement
,
6111 &Qscroll_bar_movement
, "scroll-bar-movement", &Qmouse_movement
,
6112 &Qswitch_frame
, "switch-frame", &Qswitch_frame
,
6113 &Qdelete_frame
, "delete-frame", &Qdelete_frame
,
6114 &Qiconify_frame
, "iconify-frame", &Qiconify_frame
,
6115 &Qmake_frame_visible
, "make-frame-visible", &Qmake_frame_visible
,
6120 Qdisabled_command_hook
= intern ("disabled-command-hook");
6121 staticpro (&Qdisabled_command_hook
);
6123 Qself_insert_command
= intern ("self-insert-command");
6124 staticpro (&Qself_insert_command
);
6126 Qforward_char
= intern ("forward-char");
6127 staticpro (&Qforward_char
);
6129 Qbackward_char
= intern ("backward-char");
6130 staticpro (&Qbackward_char
);
6132 Qdisabled
= intern ("disabled");
6133 staticpro (&Qdisabled
);
6135 Qundefined
= intern ("undefined");
6136 staticpro (&Qundefined
);
6138 Qpre_command_hook
= intern ("pre-command-hook");
6139 staticpro (&Qpre_command_hook
);
6141 Qpost_command_hook
= intern ("post-command-hook");
6142 staticpro (&Qpost_command_hook
);
6144 Qdeferred_action_function
= intern ("deferred-action-function");
6145 staticpro (&Qdeferred_action_function
);
6147 Qcommand_hook_internal
= intern ("command-hook-internal");
6148 staticpro (&Qcommand_hook_internal
);
6150 Qfunction_key
= intern ("function-key");
6151 staticpro (&Qfunction_key
);
6152 Qmouse_click
= intern ("mouse-click");
6153 staticpro (&Qmouse_click
);
6155 Qmenu_enable
= intern ("menu-enable");
6156 staticpro (&Qmenu_enable
);
6158 Qmode_line
= intern ("mode-line");
6159 staticpro (&Qmode_line
);
6160 Qvertical_line
= intern ("vertical-line");
6161 staticpro (&Qvertical_line
);
6162 Qvertical_scroll_bar
= intern ("vertical-scroll-bar");
6163 staticpro (&Qvertical_scroll_bar
);
6164 Qmenu_bar
= intern ("menu-bar");
6165 staticpro (&Qmenu_bar
);
6167 Qabove_handle
= intern ("above-handle");
6168 staticpro (&Qabove_handle
);
6169 Qhandle
= intern ("handle");
6170 staticpro (&Qhandle
);
6171 Qbelow_handle
= intern ("below-handle");
6172 staticpro (&Qbelow_handle
);
6174 Qevent_kind
= intern ("event-kind");
6175 staticpro (&Qevent_kind
);
6176 Qevent_symbol_elements
= intern ("event-symbol-elements");
6177 staticpro (&Qevent_symbol_elements
);
6178 Qevent_symbol_element_mask
= intern ("event-symbol-element-mask");
6179 staticpro (&Qevent_symbol_element_mask
);
6180 Qmodifier_cache
= intern ("modifier-cache");
6181 staticpro (&Qmodifier_cache
);
6183 Qrecompute_lucid_menubar
= intern ("recompute-lucid-menubar");
6184 staticpro (&Qrecompute_lucid_menubar
);
6185 Qactivate_menubar_hook
= intern ("activate-menubar-hook");
6186 staticpro (&Qactivate_menubar_hook
);
6188 Qpolling_period
= intern ("polling-period");
6189 staticpro (&Qpolling_period
);
6192 struct event_head
*p
;
6194 for (p
= head_table
;
6195 p
< head_table
+ (sizeof (head_table
) / sizeof (head_table
[0]));
6198 *p
->var
= intern (p
->name
);
6200 Fput (*p
->var
, Qevent_kind
, *p
->kind
);
6201 Fput (*p
->var
, Qevent_symbol_elements
, Fcons (*p
->var
, Qnil
));
6205 button_down_location
= Fmake_vector (make_number (NUM_MOUSE_BUTTONS
), Qnil
);
6206 staticpro (&button_down_location
);
6210 int len
= sizeof (modifier_names
) / sizeof (modifier_names
[0]);
6212 modifier_symbols
= Fmake_vector (make_number (len
), Qnil
);
6213 for (i
= 0; i
< len
; i
++)
6214 if (modifier_names
[i
])
6215 XVECTOR (modifier_symbols
)->contents
[i
] = intern (modifier_names
[i
]);
6216 staticpro (&modifier_symbols
);
6219 recent_keys
= Fmake_vector (make_number (NUM_RECENT_KEYS
), Qnil
);
6220 staticpro (&recent_keys
);
6222 this_command_keys
= Fmake_vector (make_number (40), Qnil
);
6223 staticpro (&this_command_keys
);
6225 Qextended_command_history
= intern ("extended-command-history");
6226 Fset (Qextended_command_history
, Qnil
);
6227 staticpro (&Qextended_command_history
);
6229 the_only_perdisplay
.kbd_buffer_frame_or_window
6230 = Fmake_vector (make_number (KBD_BUFFER_SIZE
), Qnil
);
6231 staticpro (&the_only_perdisplay
.kbd_buffer_frame_or_window
);
6233 accent_key_syms
= Qnil
;
6234 staticpro (&accent_key_syms
);
6236 func_key_syms
= Qnil
;
6237 staticpro (&func_key_syms
);
6239 system_key_syms
= Qnil
;
6240 staticpro (&system_key_syms
);
6243 staticpro (&mouse_syms
);
6245 unread_switch_frame
= Qnil
;
6246 staticpro (&unread_switch_frame
);
6248 defsubr (&Sread_key_sequence
);
6249 defsubr (&Srecursive_edit
);
6251 defsubr (&Strack_mouse
);
6253 defsubr (&Sinput_pending_p
);
6254 defsubr (&Scommand_execute
);
6255 defsubr (&Srecent_keys
);
6256 defsubr (&Sthis_command_keys
);
6257 defsubr (&Ssuspend_emacs
);
6258 defsubr (&Sabort_recursive_edit
);
6259 defsubr (&Sexit_recursive_edit
);
6260 defsubr (&Srecursion_depth
);
6261 defsubr (&Stop_level
);
6262 defsubr (&Sdiscard_input
);
6263 defsubr (&Sopen_dribble_file
);
6264 defsubr (&Sset_input_mode
);
6265 defsubr (&Scurrent_input_mode
);
6266 defsubr (&Sexecute_extended_command
);
6268 DEFVAR_LISP ("last-command-char", &last_command_char
,
6269 "Last input event that was part of a command.");
6271 DEFVAR_LISP_NOPRO ("last-command-event", &last_command_char
,
6272 "Last input event that was part of a command.");
6274 DEFVAR_LISP ("last-nonmenu-event", &last_nonmenu_event
,
6275 "Last input event in a command, except for mouse menu events.\n\
6276 Mouse menus give back keys that don't look like mouse events;\n\
6277 this variable holds the actual mouse event that led to the menu,\n\
6278 so that you can determine whether the command was run by mouse or not.");
6280 DEFVAR_LISP ("last-input-char", &last_input_char
,
6281 "Last input event.");
6283 DEFVAR_LISP_NOPRO ("last-input-event", &last_input_char
,
6284 "Last input event.");
6286 DEFVAR_LISP ("unread-command-events", &Vunread_command_events
,
6287 "List of objects to be read as next command input events.");
6289 DEFVAR_INT ("unread-command-char", &unread_command_char
,
6290 "If not -1, an object to be read as next command input event.");
6292 DEFVAR_LISP ("meta-prefix-char", &meta_prefix_char
,
6293 "Meta-prefix character code. Meta-foo as command input\n\
6294 turns into this character followed by foo.");
6295 XSETINT (meta_prefix_char
, 033);
6297 DEFVAR_LISP ("last-command", &last_command
,
6298 "The last command executed. Normally a symbol with a function definition,\n\
6299 but can be whatever was found in the keymap, or whatever the variable\n\
6300 `this-command' was set to by that command.\n\
6302 The value `mode-exit' is special; it means that the previous command\n\
6303 read an event that told it to exit, and it did so and unread that event.\n\
6304 In other words, the present command is the event that made the previous\n\
6307 The value `kill-region' is special; it means that the previous command\n\
6308 was a kill command.");
6309 last_command
= Qnil
;
6311 DEFVAR_LISP ("this-command", &this_command
,
6312 "The command now being executed.\n\
6313 The command can set this variable; whatever is put here\n\
6314 will be in `last-command' during the following command.");
6315 this_command
= Qnil
;
6317 DEFVAR_INT ("auto-save-interval", &auto_save_interval
,
6318 "*Number of keyboard input characters between auto-saves.\n\
6319 Zero means disable autosaving due to number of characters typed.");
6320 auto_save_interval
= 300;
6322 DEFVAR_LISP ("auto-save-timeout", &Vauto_save_timeout
,
6323 "*Number of seconds idle time before auto-save.\n\
6324 Zero or nil means disable auto-saving due to idleness.\n\
6325 After auto-saving due to this many seconds of idle time,\n\
6326 Emacs also does a garbage collection if that seems to be warranted.");
6327 XSETFASTINT (Vauto_save_timeout
, 30);
6329 DEFVAR_INT ("echo-keystrokes", &echo_keystrokes
,
6330 "*Nonzero means echo unfinished commands after this many seconds of pause.");
6331 echo_keystrokes
= 1;
6333 DEFVAR_INT ("polling-period", &polling_period
,
6334 "*Interval between polling for input during Lisp execution.\n\
6335 The reason for polling is to make C-g work to stop a running program.\n\
6336 Polling is needed only when using X windows and SIGIO does not work.\n\
6337 Polling is automatically disabled in all other cases.");
6340 DEFVAR_LISP ("double-click-time", &Vdouble_click_time
,
6341 "*Maximum time between mouse clicks to make a double-click.\n\
6342 Measured in milliseconds. nil means disable double-click recognition;\n\
6343 t means double-clicks have no time limit and are detected\n\
6344 by position only.");
6345 Vdouble_click_time
= make_number (500);
6347 DEFVAR_BOOL ("inhibit-local-menu-bar-menus", &inhibit_local_menu_bar_menus
,
6348 "*Non-nil means inhibit local map menu bar menus.");
6349 inhibit_local_menu_bar_menus
= 0;
6351 DEFVAR_INT ("num-input-keys", &num_input_keys
,
6352 "Number of complete keys read from the keyboard so far.");
6355 DEFVAR_LISP ("last-event-frame", &Vlast_event_frame
,
6356 "The frame in which the most recently read event occurred.\n\
6357 If the last event came from a keyboard macro, this is set to `macro'.");
6358 Vlast_event_frame
= Qnil
;
6360 DEFVAR_LISP ("help-char", &Vhelp_char
,
6361 "Character to recognize as meaning Help.\n\
6362 When it is read, do `(eval help-form)', and display result if it's a string.\n\
6363 If the value of `help-form' is nil, this char can be read normally.");
6364 XSETINT (Vhelp_char
, Ctl ('H'));
6366 DEFVAR_LISP ("help-form", &Vhelp_form
,
6367 "Form to execute when character `help-char' is read.\n\
6368 If the form returns a string, that string is displayed.\n\
6369 If `help-form' is nil, the help char is not recognized.");
6372 DEFVAR_LISP ("prefix-help-command", &Vprefix_help_command
,
6373 "Command to run when `help-char' character follows a prefix key.\n\
6374 This command is used only when there is no actual binding\n\
6375 for that character after that prefix key.");
6376 Vprefix_help_command
= Qnil
;
6378 DEFVAR_LISP ("top-level", &Vtop_level
,
6379 "Form to evaluate when Emacs starts up.\n\
6380 Useful to set before you dump a modified Emacs.");
6383 DEFVAR_LISP ("keyboard-translate-table", &Vkeyboard_translate_table
,
6384 "String used as translate table for keyboard input, or nil.\n\
6385 Each character is looked up in this string and the contents used instead.\n\
6386 If string is of length N, character codes N and up are untranslated.");
6387 Vkeyboard_translate_table
= Qnil
;
6389 DEFVAR_LISP ("key-translation-map", &Vkey_translation_map
,
6390 "Keymap of key translations that can override keymaps.\n\
6391 This keymap works like `function-key-map', but comes after that,\n\
6392 and applies even for keys that have ordinary bindings.");
6393 Vkey_translation_map
= Qnil
;
6395 DEFVAR_BOOL ("cannot-suspend", &cannot_suspend
,
6396 "Non-nil means to always spawn a subshell instead of suspending,\n\
6397 even if the operating system has support for stopping a process.");
6400 DEFVAR_BOOL ("menu-prompting", &menu_prompting
,
6401 "Non-nil means prompt with menus when appropriate.\n\
6402 This is done when reading from a keymap that has a prompt string,\n\
6403 for elements that have prompt strings.\n\
6404 The menu is displayed on the screen\n\
6405 if X menus were enabled at configuration\n\
6406 time and the previous event was a mouse click prefix key.\n\
6407 Otherwise, menu prompting uses the echo area.");
6410 DEFVAR_LISP ("menu-prompt-more-char", &menu_prompt_more_char
,
6411 "Character to see next line of menu prompt.\n\
6412 Type this character while in a menu prompt to rotate around the lines of it.");
6413 XSETINT (menu_prompt_more_char
, ' ');
6415 DEFVAR_INT ("extra-keyboard-modifiers", &extra_keyboard_modifiers
,
6416 "A mask of additional modifier keys to use with every keyboard character.\n\
6417 Emacs applies the modifiers of the character stored here to each keyboard\n\
6418 character it reads. For example, after evaluating the expression\n\
6419 (setq extra-keyboard-modifiers ?\\C-x)\n\
6420 all input characters will have the control modifier applied to them.\n\
6422 Note that the character ?\\C-@, equivalent to the integer zero, does\n\
6423 not count as a control character; rather, it counts as a character\n\
6424 with no modifiers; thus, setting `extra-keyboard-modifiers' to zero\n\
6425 cancels any modification.");
6426 extra_keyboard_modifiers
= 0;
6428 DEFVAR_LISP ("deactivate-mark", &Vdeactivate_mark
,
6429 "If an editing command sets this to t, deactivate the mark afterward.\n\
6430 The command loop sets this to nil before each command,\n\
6431 and tests the value when the command returns.\n\
6432 Buffer modification stores t in this variable.");
6433 Vdeactivate_mark
= Qnil
;
6435 DEFVAR_LISP ("command-hook-internal", &Vcommand_hook_internal
,
6436 "Temporary storage of pre-command-hook or post-command-hook.");
6437 Vcommand_hook_internal
= Qnil
;
6439 DEFVAR_LISP ("pre-command-hook", &Vpre_command_hook
,
6440 "Normal hook run before each command is executed.\n\
6441 While the hook is run, its value is temporarily set to nil\n\
6442 to avoid an unbreakable infinite loop if a hook function gets an error.\n\
6443 As a result, a hook function cannot straightforwardly alter the value of\n\
6444 `pre-command-hook'. See the Emacs Lisp manual for a way of\n\
6445 implementing hook functions that alter the set of hook functions.");
6446 Vpre_command_hook
= Qnil
;
6448 DEFVAR_LISP ("post-command-hook", &Vpost_command_hook
,
6449 "Normal hook run after each command is executed.\n\
6450 While the hook is run, its value is temporarily set to nil\n\
6451 to avoid an unbreakable infinite loop if a hook function gets an error.\n\
6452 As a result, a hook function cannot straightforwardly alter the value of\n\
6453 `post-command-hook'. See the Emacs Lisp manual for a way of\n\
6454 implementing hook functions that alter the set of hook functions.");
6455 Vpost_command_hook
= Qnil
;
6457 DEFVAR_LISP ("lucid-menu-bar-dirty-flag", &Vlucid_menu_bar_dirty_flag
,
6458 "t means menu bar, specified Lucid style, needs to be recomputed.");
6459 Vlucid_menu_bar_dirty_flag
= Qnil
;
6461 DEFVAR_LISP ("menu-bar-final-items", &Vmenu_bar_final_items
,
6462 "List of menu bar items to move to the end of the menu bar.\n\
6463 The elements of the list are event types that may have menu bar bindings.");
6464 Vmenu_bar_final_items
= Qnil
;
6466 DEFVAR_LISP ("overriding-local-map", &Voverriding_local_map
,
6467 "Keymap that overrides all other local keymaps.\n\
6468 If this variable is non-nil, it is used as a keymap instead of the\n\
6469 buffer's local map, and the minor mode keymaps and text property keymaps.");
6470 Voverriding_local_map
= Qnil
;
6472 DEFVAR_LISP ("overriding-local-map-menu-flag", &Voverriding_local_map_menu_flag
,
6473 "Non-nil means `overriding-local-map' applies to the menu bar.\n\
6474 Otherwise, the menu bar continues to reflect the buffer's local map\n\
6475 and the minor mode maps regardless of `overriding-local-map'.");
6476 Voverriding_local_map_menu_flag
= Qnil
;
6479 DEFVAR_LISP ("track-mouse", &do_mouse_tracking
,
6480 "*Non-nil means generate motion events for mouse motion.");
6483 DEFVAR_LISP ("system-key-alist", &Vsystem_key_alist
,
6484 "Alist of system-specific X windows key symbols.\n\
6485 Each element should have the form (N . SYMBOL) where N is the\n\
6486 numeric keysym code (sans the \"system-specific\" bit 1<<28)\n\
6487 and SYMBOL is its name.");
6488 Vsystem_key_alist
= Qnil
;
6490 DEFVAR_LISP ("deferred-action-list", &Vdeferred_action_list
,
6491 "List of deferred actions to be performed at a later time.\n\
6492 The precise format isn't relevant here; we just check whether it is nil.");
6493 Vdeferred_action_list
= Qnil
;
6495 DEFVAR_LISP ("deferred-action-function", &Vdeferred_action_function
,
6496 "Function to call to handle deferred actions, after each command.\n\
6497 This function is called with no arguments after each command\n\
6498 whenever `deferred-action-list' is non-nil.");
6499 Vdeferred_action_function
= Qnil
;
6504 initial_define_key (global_map
, Ctl ('Z'), "suspend-emacs");
6505 initial_define_key (control_x_map
, Ctl ('Z'), "suspend-emacs");
6506 initial_define_key (meta_map
, Ctl ('C'), "exit-recursive-edit");
6507 initial_define_key (global_map
, Ctl (']'), "abort-recursive-edit");
6508 initial_define_key (meta_map
, 'x', "execute-extended-command");