(print): Use current_perdisplay, not get_perdisplay.
[emacs.git] / src / keyboard.c
blobfca3d3a15990093eb8d2b1a1c625b5bae0466ed1
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)
9 any later version.
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. */
21 #include <signal.h>
23 #include <config.h>
24 #include <stdio.h>
25 #undef NULL
26 #include "termchar.h"
27 #include "termopts.h"
28 #include "lisp.h"
29 #include "termhooks.h"
30 #include "macros.h"
31 #include "frame.h"
32 #include "window.h"
33 #include "commands.h"
34 #include "buffer.h"
35 #include "disptab.h"
36 #include "dispextern.h"
37 #include "keyboard.h"
38 #include "intervals.h"
39 #include "blockinput.h"
40 #include <setjmp.h>
41 #include <errno.h>
43 #ifdef MSDOS
44 #include "msdos.h"
45 #include <time.h>
46 #else /* not MSDOS */
47 #ifndef VMS
48 #include <sys/ioctl.h>
49 #endif
50 #endif /* not MSDOS */
52 #include "syssignal.h"
53 #include "systty.h"
55 /* This is to get the definitions of the XK_ symbols. */
56 #ifdef HAVE_X_WINDOWS
57 #include "xterm.h"
58 #endif
60 /* Include systime.h after xterm.h to avoid double inclusion of time.h. */
61 #include "systime.h"
63 extern int errno;
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. */
76 extern int input_fd;
78 #ifdef HAVE_X_WINDOWS
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 */
87 struct backtrace
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
94 unevalled args */
95 char evalargs;
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. */
134 static int echoing;
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. */
140 int immediate_quit;
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
166 keystrokes.
168 FOR THESE ELABORATE AND UNSATISFYING REASONS, quit_char must be an
169 ASCII character. */
170 int quit_char;
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. */
185 int num_input_keys;
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. */
227 int num_input_chars;
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. */
239 int 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;
257 #ifdef MULTI_FRAME
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;
264 #endif
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. */
318 FILE *dribble;
320 /* Nonzero if input is available. */
321 int input_pending;
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. */
326 int meta_key;
328 extern char *pending_malloc_warning;
330 #ifdef HAVE_MOUSE
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! */
341 int mouse_moved;
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
377 apply_modifiers. */
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
395 happens. */
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. */
400 int interrupt_input;
402 /* Nonzero while interrupts are temporarily deferred during redisplay. */
403 int interrupts_deferred;
405 /* nonzero means use ^S/^Q for flow control. */
406 int flow_control;
408 /* Allow m- file to inhibit use of FIONREAD. */
409 #ifdef BROKEN_FIONREAD
410 #undef FIONREAD
411 #endif
413 /* We are unable to use interrupts if FIONREAD is not available,
414 so flush SIGIO so we won't try. */
415 #ifndef FIONREAD
416 #ifdef SIGIO
417 #undef SIGIO
418 #endif
419 #endif
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
425 #endif
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
446 to support it. */
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. */
456 echo_prompt (str)
457 char *str;
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;
470 echo ();
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. */
477 echo_char (c)
478 Lisp_Object c;
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)
488 *ptr++ = ' ';
490 /* If someone has passed us a composite event, use its head symbol. */
491 c = EVENT_HEAD (c);
493 if (INTEGERP (c))
495 if (ptr - perd->echobuf > ECHOBUFSIZE - 6)
496 return;
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)
504 return;
505 bcopy (name->data, ptr, name->size);
506 ptr += name->size;
509 if (perd->echoptr == perd->echobuf && EQ (c, Vhelp_char))
511 strcpy (ptr, " (Type ? for further options)");
512 ptr += strlen (ptr);
515 *ptr = 0;
516 perd->echoptr = ptr;
518 echo ();
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. */
525 echo_dash ()
527 PERDISPLAY *perd = get_perdisplay (selected_frame);
528 if (!perd->immediate_echo && perd->echoptr == perd->echobuf)
529 return;
530 /* Do nothing if we just printed a prompt. */
531 if (perd->echo_after_prompt == perd->echoptr - perd->echobuf)
532 return;
533 /* Do nothing if not echoing at all. */
534 if (perd->echoptr == 0)
535 return;
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;
542 echo ();
545 /* Display the current echo string, and begin echoing if not already
546 doing so. */
548 echo ()
550 PERDISPLAY *perd = get_perdisplay (selected_frame);
551 if (!perd->immediate_echo)
553 int i;
554 perd->immediate_echo = 1;
556 for (i = 0; i < this_command_key_count; i++)
558 Lisp_Object c;
559 c = XVECTOR (this_command_keys)->contents[i];
560 if (! (EVENT_HAS_PARAMETERS (c)
561 && EQ (EVENT_HEAD_KIND (EVENT_HEAD (c)), Qmouse_movement)))
562 echo_char (c);
564 echo_dash ();
567 echoing = 1;
568 message2_nolog (perd->echobuf, strlen (perd->echobuf));
569 echoing = 0;
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. */
577 cancel_echoing ()
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. */
587 static int
588 echo_length ()
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. */
598 static void
599 echo_truncate (len)
600 int len;
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. */
610 static void
611 add_command_key (key)
612 Lisp_Object 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;
631 Lisp_Object
632 recursive_edit_1 ()
634 int count = specpdl_ptr - specpdl;
635 Lisp_Object val;
637 if (command_loop_level > 0)
639 specbind (Qstandard_output, Qt);
640 specbind (Qstandard_input, Qt);
643 val = command_loop ();
644 if (EQ (val, Qt))
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. */
652 record_auto_save ()
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;
675 Lisp_Object val;
677 command_loop_level++;
678 update_mode_lines = 1;
680 record_unwind_protect (recursive_edit_unwind,
681 (command_loop_level
682 && current_buffer != XBUFFER (XWINDOW (selected_window)->buffer))
683 ? Fcurrent_buffer ()
684 : Qnil);
685 recursive_edit_1 ();
686 return unbind_to (count, Qnil);
689 Lisp_Object
690 recursive_edit_unwind (buffer)
691 Lisp_Object buffer;
693 if (!NILP (buffer))
694 Fset_buffer (buffer);
696 command_loop_level--;
697 update_mode_lines = 1;
698 return Qnil;
701 Lisp_Object
702 cmd_error (data)
703 Lisp_Object data;
705 Vstandard_output = Qt;
706 Vstandard_input = Qt;
707 Vexecuting_macro = Qnil;
708 if (!current_perdisplay)
709 abort ();
710 current_perdisplay->Vprefix_arg = Qnil;
711 cmd_error_internal (data, 0);
713 Vquit_flag = Qnil;
715 Vinhibit_quit = Qnil;
716 #ifdef MULTI_PERDISPLAY
717 current_perdisplay = 0;
718 #endif
720 return make_number (0);
723 cmd_error_internal (data, context)
724 Lisp_Object data;
725 char *context;
727 Lisp_Object errmsg, tail, errname, file_error;
728 Lisp_Object stream;
729 struct gcpro gcpro1;
730 int i;
732 Vquit_flag = Qnil;
733 Vinhibit_quit = Qt;
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)
740 || noninteractive)
741 stream = Qexternal_debugging_output;
742 else
744 Fdiscard_input ();
745 bitch_at_user ();
746 stream = Qt;
749 if (context != 0)
750 write_string_1 (context, -1, stream);
752 errname = Fcar (data);
754 if (EQ (errname, Qerror))
756 data = Fcdr (data);
757 if (!CONSP (data)) data = Qnil;
758 errmsg = Fcar (data);
759 file_error = Qnil;
761 else
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;
773 tail = Fcdr (data);
774 GCPRO1 (tail);
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);
783 else
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);
791 else
792 Fprin1 (Fcar (tail), stream);
794 UNGCPRO;
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)
799 || noninteractive)
801 Fterpri (stream);
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. */
814 Lisp_Object
815 command_loop ()
817 if (command_loop_level > 0 || minibuf_level > 0)
819 return internal_catch (Qexit, command_loop_2, Qnil);
821 else
822 while (1)
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. */
828 if (noninteractive)
829 Fkill_emacs (Qt);
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). */
839 Lisp_Object
840 command_loop_2 ()
842 register Lisp_Object val;
845 val = internal_condition_case (command_loop_1, Qerror, cmd_error);
846 while (!NILP (val));
848 return Qnil;
851 Lisp_Object
852 top_level_2 ()
854 return Feval (Vtop_level);
857 Lisp_Object
858 top_level_1 ()
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)");
865 else
866 message ("Bare Emacs (standard Lisp code not loaded)");
867 return Qnil;
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)
892 Fthrow (Qexit, Qt);
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 ();
904 Lisp_Object
905 command_loop_1 ()
907 Lisp_Object cmd, tem;
908 int lose;
909 int nonundocount;
910 Lisp_Object keybuf[30];
911 int i;
912 int no_redisplay;
913 int no_direct;
914 int prev_modiff;
915 struct buffer *prev_buffer;
916 PERDISPLAY *global_perdisplay = current_perdisplay;
918 Vdeactivate_mark = Qnil;
919 waiting_for_input = 0;
920 cancel_echoing ();
922 nonundocount = 0;
923 no_redisplay = 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;
939 while (1)
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 ();
951 no_direct = 0;
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;
968 no_direct = 1;
969 if (!NILP (Vquit_flag))
971 Vquit_flag = Qnil;
972 Vunread_command_events = Fcons (make_number (quit_char), Qnil);
976 #ifdef C_ALLOCA
977 alloca (0); /* Cause a garbage collection now */
978 /* Since we can free the most stuff here. */
979 #endif /* C_ALLOCA */
981 #if 0
982 #ifdef MULTI_FRAME
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);
990 #endif
991 #endif
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);
1001 ++num_input_keys;
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. */
1010 if (i == -1)
1012 cancel_echoing ();
1013 this_command_key_count = 0;
1014 goto finalize;
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. */
1040 no_redisplay = 0;
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. */
1049 this_command = cmd;
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. */
1058 bitch_at_user ();
1059 defining_kbd_macro = 0;
1060 update_mode_lines = 1;
1061 current_perdisplay->Vprefix_arg = Qnil;
1064 else
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);
1075 SET_PT (PT + 1);
1076 if ((dp
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)
1083 >= MODIFF)
1084 && (XFASTINT (XWINDOW (selected_window)->last_point)
1085 == PT - 1)
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);
1091 goto directly_done;
1093 else if (EQ (this_command, Qbackward_char) && PT > BEGV)
1095 struct Lisp_Vector *dp
1096 = window_display_table (XWINDOW (selected_window));
1097 SET_PT (PT - 1);
1098 lose = FETCH_CHAR (PT);
1099 if ((dp
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)
1106 >= MODIFF)
1107 && (XFASTINT (XWINDOW (selected_window)->last_point)
1108 == PT + 1)
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);
1114 goto directly_done;
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);
1121 int value;
1123 if (NILP (Vexecuting_macro)
1124 && !EQ (minibuf_window, selected_window))
1126 if (!nonundocount || nonundocount >= 20)
1128 Fundo_boundary ();
1129 nonundocount = 0;
1131 nonundocount++;
1133 lose = ((XFASTINT (XWINDOW (selected_window)->last_modified)
1134 < MODIFF)
1135 || (XFASTINT (XWINDOW (selected_window)->last_point)
1136 != PT)
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);
1143 if (value)
1144 lose = 1;
1145 if (value == 2)
1146 nonundocount = 0;
1148 if (!lose
1149 && (PT == ZV || FETCH_CHAR (PT) == '\n'))
1151 struct Lisp_Vector *dp
1152 = window_display_table (XWINDOW (selected_window));
1153 int lose = c;
1155 if (dp)
1157 Lisp_Object obj;
1159 obj = DISP_CHAR_VECTOR (dp, lose);
1160 if (NILP (obj))
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],
1170 INTEGERP (obj))
1171 /* Insist face not specified in glyph. */
1172 && (XINT (obj) & ((-1) << 8)) == 0)
1173 no_redisplay
1174 = direct_output_for_insert (XINT (obj));
1176 else
1178 if (lose >= 0x20 && lose <= 0x7e)
1179 no_redisplay = direct_output_for_insert (lose);
1182 goto directly_done;
1186 /* Here for a command that isn't executed directly */
1188 nonundocount = 0;
1189 if (NILP (current_perdisplay->Vprefix_arg))
1190 Fundo_boundary ();
1191 Fcommand_execute (this_command, Qnil);
1194 directly_done: ;
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
1209 cancel_echoing, and
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;
1216 cancel_echoing ();
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"));
1231 finalize:
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;
1239 #endif
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. */
1246 static void
1247 safe_run_hooks (hook)
1248 Lisp_Object hook;
1250 Lisp_Object value;
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);
1257 Fset (hook, Qnil);
1258 call1 (Vrun_hooks, Qcommand_hook_internal);
1259 Fset (hook, value);
1261 unbind_to (count, Qnil);
1264 /* Number of seconds between polling for input. */
1265 int polling_period;
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. */
1278 SIGTYPE
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);
1288 #endif
1290 /* Begin signals to poll for input, if they are appropriate.
1291 This function is called unconditionally from various places. */
1293 start_polling ()
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);
1306 #endif
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;
1316 #else
1317 return 0;
1318 #endif
1321 /* Turn off polling. */
1323 stop_polling ()
1325 #ifdef POLL_FOR_INPUT
1326 if (read_socket_hook && !interrupt_input)
1328 if (poll_suppress_count == 0)
1330 polling_for_input = 0;
1331 alarm (0);
1333 poll_suppress_count++;
1335 #endif
1338 /* Set the value of poll_suppress_count to COUNT
1339 and start or stop polling accordingly. */
1341 void
1342 set_poll_suppress_count (count)
1343 int count;
1345 #ifdef POLL_FOR_INPUT
1346 if (count == 0 && poll_suppress_count != 0)
1348 poll_suppress_count = 1;
1349 start_polling ();
1351 else if (count != 0 && poll_suppress_count == 0)
1353 stop_polling ();
1355 poll_suppress_count = count;
1356 #endif
1359 /* Bind polling_period to a value at least N.
1360 But don't decrease it. */
1362 bind_polling_period (n)
1363 int n;
1365 #ifdef POLL_FOR_INPUT
1366 int new = polling_period;
1368 if (n > new)
1369 new = n;
1371 stop_polling ();
1372 specbind (Qpolling_period, make_number (new));
1373 /* Start a new alarm with the new period. */
1374 start_polling ();
1375 #endif
1378 /* Applying the control modifier to CHARACTER. */
1380 make_ctrl_char (c)
1381 int c;
1383 /* Save the upper bits here. */
1384 int upper = c & ~0177;
1386 c &= 0177;
1388 /* Everything in the columns containing the upper-case letters
1389 denotes a control character. */
1390 if (c >= 0100 && c < 0140)
1392 int oc = c;
1393 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')
1402 c &= ~0140;
1404 /* Include the bits for control and shift
1405 only if the basic ASCII code can't indicate them. */
1406 else if (c >= ' ')
1407 c |= ctrl_modifier;
1409 /* Replace the high bits. */
1410 c |= (upper & ~ctrl_modifier);
1412 return c;
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.
1426 1 means do both. */
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. */
1440 Lisp_Object
1441 read_char (commandflag, nmaps, maps, prev_event, used_mouse_menu)
1442 int commandflag;
1443 int nmaps;
1444 Lisp_Object *maps;
1445 Lisp_Object prev_event;
1446 int *used_mouse_menu;
1448 register Lisp_Object c;
1449 int count;
1450 jmp_buf save_jump;
1451 int key_already_recorded = 0;
1452 PERDISPLAY *perd = get_perdisplay (selected_frame);
1453 Lisp_Object also_record;
1454 also_record = Qnil;
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)
1462 goto reread_first;
1463 else
1464 goto reread;
1467 if (unread_command_char != -1)
1469 XSETINT (c, unread_command_char);
1470 unread_command_char = -1;
1472 if (this_command_key_count == 0)
1473 goto reread_first;
1474 else
1475 goto reread;
1478 if (!NILP (Vexecuting_macro))
1480 #ifdef MULTI_FRAME
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
1483 remain unchanged.
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
1490 selected. */
1491 Vlast_event_frame = internal_last_event_frame = Qmacro;
1492 #endif
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)))
1500 XSETINT (c, -1);
1501 return c;
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++;
1511 goto from_macro;
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. */
1521 goto reread_first;
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);
1533 stop_polling ();
1535 if (commandflag >= 0 && !input_pending && !detect_input_pending ())
1536 redisplay ();
1538 if (_setjmp (getcjmp))
1540 XSETINT (c, quit_char);
1541 #ifdef MULTI_FRAME
1542 XSETFRAME (internal_last_event_frame, selected_frame);
1543 Vlast_event_frame = internal_last_event_frame;
1544 #endif
1545 /* If we report the quit char as an event,
1546 don't do so more than once. */
1547 if (!NILP (Vinhibit_quit))
1548 Vquit_flag = Qnil;
1550 goto non_reread;
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)
1555 cancel_echoing ();
1556 else
1557 /* If already echoing, continue. */
1558 echo_dash ();
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. */
1565 c = Qnil;
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);
1574 if (! NILP (c))
1576 key_already_recorded = 1;
1577 goto non_reread;
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
1584 && ! noninteractive
1585 && echo_keystrokes > 0
1586 && (echo_area_glyphs == 0 || *echo_area_glyphs == 0))
1588 Lisp_Object tem0;
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))
1594 echo ();
1595 else
1597 tem0 = sit_for (echo_keystrokes, 0, 1, 1);
1598 if (EQ (tem0, Qt))
1599 echo ();
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 ())
1610 jmp_buf temp;
1611 save_getcjmp (temp);
1612 Fdo_auto_save (Qnil, Qnil);
1613 /* Hooks can actually change some buffers in auto save. */
1614 redisplay ();
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;
1638 delay_level = 0;
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)
1651 Lisp_Object tem0;
1652 int delay = delay_level * XFASTINT (Vauto_save_timeout) / 4;
1653 tem0 = sit_for (delay, 0, 1, 1);
1654 if (EQ (tem0, Qt))
1656 jmp_buf temp;
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. */
1669 redisplay ();
1674 /* Actually read a character, waiting if necessary. */
1675 while (NILP (c))
1677 c = kbd_buffer_get_event ();
1678 if (!NILP (c))
1679 break;
1680 if (commandflag >= 0 && !input_pending && !detect_input_pending ())
1682 prepare_menu_bars ();
1683 redisplay ();
1687 /* Terminate Emacs in batch mode if at eof. */
1688 if (noninteractive && INTEGERP (c) && XINT (c) < 0)
1689 Fkill_emacs (make_number (1));
1691 if (INTEGERP (c))
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));
1705 non_reread:
1707 restore_getcjmp (save_jump);
1709 start_polling ();
1711 /* Buffer switch events are only for internal wakeups
1712 so don't show them to the user. */
1713 if (BUFFERP (c))
1714 return c;
1716 if (key_already_recorded)
1717 return c;
1719 /* Wipe the echo area. */
1720 echo_area_glyphs = 0;
1722 /* Handle things that only apply to characters. */
1723 if (INTEGERP (c))
1725 /* If kbd_buffer_get_event gave us an EOF, return that. */
1726 if (XINT (c) == -1)
1727 return c;
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))
1742 Lisp_Object posn;
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);
1752 also_record = c;
1753 Vunread_command_events = Fcons (c, Vunread_command_events);
1754 c = posn;
1758 record_char (c);
1759 if (! NILP (also_record))
1760 record_char (also_record);
1762 from_macro:
1763 reread_first:
1765 /* Don't echo mouse motion events. */
1766 if (echo_keystrokes
1767 && ! (EVENT_HAS_PARAMETERS (c)
1768 && EQ (EVENT_HEAD_KIND (EVENT_HEAD (c)), Qmouse_movement)))
1770 echo_char (c);
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 */
1781 reread:
1782 last_input_char = c;
1783 num_input_chars++;
1785 /* Process the help character specially if enabled */
1786 if (EQ (c, Vhelp_char) && !NILP (Vhelp_form))
1788 Lisp_Object tem0;
1789 count = specpdl_ptr - specpdl;
1791 record_unwind_protect (Fset_window_configuration,
1792 Fcurrent_window_configuration (Qnil));
1794 tem0 = Feval (Vhelp_form);
1795 if (STRINGP (tem0))
1796 internal_with_output_to_temp_buffer ("*Help*", print_help, tem0);
1798 cancel_echoing ();
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 ();
1805 redisplay ();
1806 if (EQ (c, make_number (040)))
1808 cancel_echoing ();
1810 c = read_char (0, 0, 0, Qnil, 0);
1811 while (BUFFERP (c));
1815 return c;
1818 /* Record the input event C in various ways. */
1820 static void
1821 record_char (c)
1822 Lisp_Object c;
1824 total_keys++;
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. :-) */
1832 if (dribble)
1834 if (INTEGERP (c))
1836 if (XUINT (c) < 0x100)
1837 putc (XINT (c), dribble);
1838 else
1839 fprintf (dribble, " 0x%x", XUINT (c));
1841 else
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,
1853 dribble);
1854 putc ('>', dribble);
1858 fflush (dribble);
1861 store_kbd_macro_char (c);
1863 num_nonmacro_input_chars++;
1866 Lisp_Object
1867 print_help (object)
1868 Lisp_Object object;
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);
1875 return Qnil;
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. */
1883 save_getcjmp (temp)
1884 jmp_buf temp;
1886 bcopy (getcjmp, temp, sizeof getcjmp);
1889 restore_getcjmp (temp)
1890 jmp_buf temp;
1892 bcopy (temp, getcjmp, sizeof getcjmp);
1896 #ifdef HAVE_MOUSE
1898 /* Restore mouse tracking enablement. See Ftrack_mouse for the only use
1899 of this function. */
1901 static Lisp_Object
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
1912 redisplay. */
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.")
1927 (args)
1928 Lisp_Object args;
1930 int count = specpdl_ptr - specpdl;
1931 Lisp_Object val;
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. */
1952 static PERDISPLAY *
1953 find_active_event_queue ()
1955 PERDISPLAY *perd;
1956 perd = &the_only_perdisplay;
1957 /* FOR_ALL_PERDISPLAYS (perd) */
1959 if (perd->kbd_fetch_ptr != perd->kbd_store_ptr)
1960 return perd;
1962 return 0;
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. */
1967 static int
1968 readable_events ()
1970 return find_active_event_queue () != NULL || MOUSE_ACTIVITY_AVAILABLE;
1973 /* Set this for debugging, to have a way to get out */
1974 int stop_character;
1976 /* Store an event obtained at interrupt level into kbd_buffer, fifo */
1978 void
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)
1985 abort ();
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));
1998 if (c == quit_char)
2000 extern SIGTYPE interrupt_signal ();
2002 #ifdef MULTI_FRAME
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. */
2008 Lisp_Object focus;
2010 focus = FRAME_FOCUS_FRAME (XFRAME (event->frame_or_window));
2011 if (NILP (focus))
2012 internal_last_event_frame = event->frame_or_window;
2013 else
2014 internal_last_event_frame = focus;
2015 Vlast_event_frame = internal_last_event_frame;
2017 #endif
2019 last_event_timestamp = event->timestamp;
2020 interrupt_signal ();
2021 return;
2024 if (c && c == stop_character)
2026 sys_suspend ();
2027 return;
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
2046 in this case. */
2047 bcopy (event, (char *) sp, sizeof (*event));
2049 else
2051 sp->code = event->code;
2052 sp->part = event->part;
2053 sp->frame_or_window = event->frame_or_window;
2054 sp->modifiers = event->modifiers;
2055 sp->x = event->x;
2056 sp->y = event->y;
2057 sp->timestamp = event->timestamp;
2059 (XVECTOR (perd->kbd_buffer_frame_or_window)->contents[perd->kbd_store_ptr
2060 - perd->kbd_buffer]
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. */
2073 static Lisp_Object
2074 kbd_buffer_get_event ()
2076 PERDISPLAY *perd;
2077 register int c;
2078 Lisp_Object obj;
2080 if (noninteractive)
2082 c = getchar ();
2083 XSETINT (obj, c);
2084 return obj;
2087 /* Wait until there is input available. */
2088 for (;;)
2090 perd = find_active_event_queue ();
2091 if (perd || MOUSE_ACTIVITY_AVAILABLE)
2092 break;
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. */
2102 #ifdef OLDVMS
2103 wait_for_kbd_input ();
2104 #else
2105 /* Note SIGIO has been undef'd if FIONREAD is missing. */
2106 #ifdef SIGIO
2107 gobble_input (0);
2108 #endif /* SIGIO */
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. */
2127 if (perd)
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;
2137 obj = Qnil;
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)
2144 #ifdef HAVE_X11
2145 struct input_event copy = *event;
2146 /* Remove it from the buffer before processing it,
2147 since otherwise swallow_events will see it
2148 and process it again. */
2149 perd->kbd_fetch_ptr = event + 1;
2150 x_handle_selection_request (&copy);
2151 #else
2152 /* We're getting selection request events, but we don't have
2153 a window system. */
2154 abort ();
2155 #endif
2158 else if (event->kind == selection_clear_event)
2160 #ifdef HAVE_X11
2161 x_handle_selection_clear (event);
2162 perd->kbd_fetch_ptr = event + 1;
2163 #else
2164 /* We're getting selection request events, but we don't have
2165 a window system. */
2166 abort ();
2167 #endif
2169 #ifdef HAVE_X11
2170 else if (event->kind == delete_window_event)
2172 /* Make an event (delete-frame (FRAME)). */
2173 obj = Fcons (event->frame_or_window, Qnil);
2174 obj = Fcons (Qdelete_frame, Fcons (obj, Qnil));
2175 perd->kbd_fetch_ptr = event + 1;
2177 else if (event->kind == iconify_event)
2179 /* Make an event (iconify-frame (FRAME)). */
2180 obj = Fcons (event->frame_or_window, Qnil);
2181 obj = Fcons (Qiconify_frame, Fcons (obj, Qnil));
2182 perd->kbd_fetch_ptr = event + 1;
2184 else if (event->kind == deiconify_event)
2186 /* Make an event (make-frame-visible (FRAME)). */
2187 obj = Fcons (event->frame_or_window, Qnil);
2188 obj = Fcons (Qmake_frame_visible, Fcons (obj, Qnil));
2189 perd->kbd_fetch_ptr = event + 1;
2191 #endif
2192 else if (event->kind == menu_bar_event)
2194 /* The event value is in the frame_or_window slot. */
2195 obj = event->frame_or_window;
2196 perd->kbd_fetch_ptr = event + 1;
2198 else if (event->kind == buffer_switch_event)
2200 /* The value doesn't matter here; only the type is tested. */
2201 XSETBUFFER (obj, current_buffer);
2202 perd->kbd_fetch_ptr = event + 1;
2204 /* Just discard these, by returning nil.
2205 (They shouldn't be found in the buffer,
2206 but on some machines it appears they do show up.) */
2207 else if (event->kind == no_event)
2208 perd->kbd_fetch_ptr = event + 1;
2210 /* If this event is on a different frame, return a switch-frame this
2211 time, and leave the event in the queue for next time. */
2212 else
2214 #ifdef MULTI_FRAME
2215 Lisp_Object frame;
2216 Lisp_Object focus;
2218 frame = event->frame_or_window;
2219 if (WINDOWP (frame))
2220 frame = WINDOW_FRAME (XWINDOW (frame));
2222 focus = FRAME_FOCUS_FRAME (XFRAME (frame));
2223 if (! NILP (focus))
2224 frame = focus;
2226 if (! EQ (frame, internal_last_event_frame)
2227 && XFRAME (frame) != selected_frame)
2228 obj = make_lispy_switch_frame (frame);
2229 internal_last_event_frame = frame;
2230 #endif /* MULTI_FRAME */
2232 /* If we didn't decide to make a switch-frame event, go ahead
2233 and build a real event from the queue entry. */
2235 if (NILP (obj))
2237 obj = make_lispy_event (event);
2239 /* Wipe out this event, to catch bugs. */
2240 event->kind = no_event;
2241 XVECTOR (perd->kbd_buffer_frame_or_window)->contents[event - perd->kbd_buffer] = Qnil;
2243 perd->kbd_fetch_ptr = event + 1;
2247 #ifdef HAVE_MOUSE
2248 /* Try generating a mouse motion event. */
2249 else if (FRAMEP (do_mouse_tracking) && mouse_moved)
2251 FRAME_PTR f = XFRAME (do_mouse_tracking);
2252 Lisp_Object bar_window;
2253 enum scroll_bar_part part;
2254 Lisp_Object x, y;
2255 unsigned long time;
2257 /* Note that this uses F to determine which display to look at.
2258 If there is no valid info, it does not store anything
2259 so x remains nil. */
2260 x = Qnil;
2261 (*mouse_position_hook) (&f, &bar_window, &part, &x, &y, &time);
2263 obj = Qnil;
2265 #ifdef MULTI_FRAME
2266 /* Decide if we should generate a switch-frame event. Don't
2267 generate switch-frame events for motion outside of all Emacs
2268 frames. */
2269 if (!NILP (x) && f)
2271 Lisp_Object frame;
2273 frame = FRAME_FOCUS_FRAME (f);
2274 if (NILP (frame))
2275 XSETFRAME (frame, f);
2277 if (! EQ (frame, internal_last_event_frame)
2278 && XFRAME (frame) != selected_frame)
2279 obj = make_lispy_switch_frame (frame);
2280 internal_last_event_frame = frame;
2282 #endif
2284 /* If we didn't decide to make a switch-frame event, go ahead and
2285 return a mouse-motion event. */
2286 if (!NILP (x) && NILP (obj))
2287 obj = make_lispy_movement (f, bar_window, part, x, y, time);
2289 #endif /* HAVE_MOUSE */
2290 else
2291 /* We were promised by the above while loop that there was
2292 something for us to read! */
2293 abort ();
2295 input_pending = readable_events ();
2297 #ifdef MULTI_FRAME
2298 Vlast_event_frame = internal_last_event_frame;
2299 #endif
2301 return (obj);
2304 /* Process any events that are not user-visible,
2305 then return, without reading any user-visible events. */
2307 void
2308 swallow_events ()
2310 PERDISPLAY *perd;
2311 while ((perd = find_active_event_queue ()) != NULL)
2313 struct input_event *event;
2315 event = ((perd->kbd_fetch_ptr < perd->kbd_buffer + KBD_BUFFER_SIZE)
2316 ? perd->kbd_fetch_ptr
2317 : perd->kbd_buffer);
2319 last_event_timestamp = event->timestamp;
2321 /* These two kinds of events get special handling
2322 and don't actually appear to the command loop. */
2323 if (event->kind == selection_request_event)
2325 #ifdef HAVE_X11
2326 struct input_event copy;
2327 copy = *event;
2328 perd->kbd_fetch_ptr = event + 1;
2329 x_handle_selection_request (&copy);
2330 #else
2331 /* We're getting selection request events, but we don't have
2332 a window system. */
2333 abort ();
2334 #endif
2337 else if (event->kind == selection_clear_event)
2339 #ifdef HAVE_X11
2340 x_handle_selection_clear (event);
2341 perd->kbd_fetch_ptr = event + 1;
2342 #else
2343 /* We're getting selection request events, but we don't have
2344 a window system. */
2345 abort ();
2346 #endif
2348 else
2349 break;
2352 get_input_pending (&input_pending);
2355 /* Caches for modify_event_symbol. */
2356 static Lisp_Object accent_key_syms;
2357 static Lisp_Object system_key_syms;
2358 static Lisp_Object func_key_syms;
2359 static Lisp_Object mouse_syms;
2361 Lisp_Object Vsystem_key_alist;
2363 /* This is a list of keysym codes for special "accent" characters.
2364 It parallels lispy_accent_keys. */
2366 static int lispy_accent_codes[] =
2368 #ifdef XK_dead_circumflex
2369 XK_dead_circumflex,
2370 #else
2372 #endif
2373 #ifdef XK_dead_grave
2374 XK_dead_grave,
2375 #else
2377 #endif
2378 #ifdef XK_dead_tilde
2379 XK_dead_tilde,
2380 #else
2382 #endif
2383 #ifdef XK_dead_diaeresis
2384 XK_dead_diaeresis,
2385 #else
2387 #endif
2388 #ifdef XK_dead_macron
2389 XK_dead_macron,
2390 #else
2392 #endif
2393 #ifdef XK_dead_degree
2394 XK_dead_degree,
2395 #else
2397 #endif
2398 #ifdef XK_dead_acute
2399 XK_dead_acute,
2400 #else
2402 #endif
2403 #ifdef XK_dead_cedilla
2404 XK_dead_cedilla,
2405 #else
2407 #endif
2408 #ifdef XK_dead_breve
2409 XK_dead_breve,
2410 #else
2412 #endif
2413 #ifdef XK_dead_ogonek
2414 XK_dead_ogonek,
2415 #else
2417 #endif
2418 #ifdef XK_dead_caron
2419 XK_dead_caron,
2420 #else
2422 #endif
2423 #ifdef XK_dead_doubleacute
2424 XK_dead_doubleacute,
2425 #else
2427 #endif
2428 #ifdef XK_dead_abovedot
2429 XK_dead_abovedot,
2430 #else
2432 #endif
2435 /* This is a list of Lisp names for special "accent" characters.
2436 It parallels lispy_accent_codes. */
2438 static char *lispy_accent_keys[] =
2440 "dead-circumflex",
2441 "dead-grave",
2442 "dead-tilde",
2443 "dead-diaeresis",
2444 "dead-macron",
2445 "dead-degree",
2446 "dead-acute",
2447 "dead-cedilla",
2448 "dead-breve",
2449 "dead-ogonek",
2450 "dead-caron",
2451 "dead-doubleacute",
2452 "dead-abovedot",
2455 /* You'll notice that this table is arranged to be conveniently
2456 indexed by X Windows keysym values. */
2457 static char *lispy_function_keys[] =
2459 /* X Keysym value */
2461 0, 0, 0, 0, 0, 0, 0, 0, /* 0xff00 */
2462 "backspace",
2463 "tab",
2464 "linefeed",
2465 "clear",
2467 "return",
2468 0, 0,
2469 0, 0, 0, /* 0xff10 */
2470 "pause",
2471 0, 0, 0, 0, 0, 0, 0,
2472 "escape",
2473 0, 0, 0, 0,
2474 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, /* 0xff20...2f */
2475 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, /* 0xff30...3f */
2476 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, /* 0xff40...4f */
2478 "home", /* 0xff50 */ /* IsCursorKey */
2479 "left",
2480 "up",
2481 "right",
2482 "down",
2483 "prior",
2484 "next",
2485 "end",
2486 "begin",
2487 0, /* 0xff59 */
2488 0, 0, 0, 0, 0, 0,
2489 "select", /* 0xff60 */ /* IsMiscFunctionKey */
2490 "print",
2491 "execute",
2492 "insert",
2493 0, /* 0xff64 */
2494 "undo",
2495 "redo",
2496 "menu",
2497 "find",
2498 "cancel",
2499 "help",
2500 "break", /* 0xff6b */
2502 0, 0, 0, 0, 0, 0, 0, 0, "backtab", 0,
2503 0, /* 0xff76 */
2504 0, 0, 0, 0, 0, 0, 0, 0, "kp-numlock", /* 0xff7f */
2505 "kp-space", /* 0xff80 */ /* IsKeypadKey */
2506 0, 0, 0, 0, 0, 0, 0, 0,
2507 "kp-tab", /* 0xff89 */
2508 0, 0, 0,
2509 "kp-enter", /* 0xff8d */
2510 0, 0, 0,
2511 "kp-f1", /* 0xff91 */
2512 "kp-f2",
2513 "kp-f3",
2514 "kp-f4",
2515 "kp-home", /* 0xff95 */
2516 "kp-left",
2517 "kp-up",
2518 "kp-right",
2519 "kp-down",
2520 "kp-prior", /* kp-page-up */
2521 "kp-next", /* kp-page-down */
2522 "kp-end",
2523 "kp-begin",
2524 "kp-insert",
2525 "kp-delete",
2526 0, /* 0xffa0 */
2527 0, 0, 0, 0, 0, 0, 0, 0, 0,
2528 "kp-multiply", /* 0xffaa */
2529 "kp-add",
2530 "kp-separator",
2531 "kp-subtract",
2532 "kp-decimal",
2533 "kp-divide", /* 0xffaf */
2534 "kp-0", /* 0xffb0 */
2535 "kp-1", "kp-2", "kp-3", "kp-4", "kp-5", "kp-6", "kp-7", "kp-8", "kp-9",
2536 0, /* 0xffba */
2537 0, 0,
2538 "kp-equal", /* 0xffbd */
2539 "f1", /* 0xffbe */ /* IsFunctionKey */
2540 "f2",
2541 "f3", "f4", "f5", "f6", "f7", "f8", "f9", "f10", /* 0xffc0 */
2542 "f11", "f12", "f13", "f14", "f15", "f16", "f17", "f18",
2543 "f19", "f20", "f21", "f22", "f23", "f24", "f25", "f26", /* 0xffd0 */
2544 "f27", "f28", "f29", "f30", "f31", "f32", "f33", "f34",
2545 "f35", 0, 0, 0, 0, 0, 0, 0, /* 0xffe0 */
2546 0, 0, 0, 0, 0, 0, 0, 0,
2547 0, 0, 0, 0, 0, 0, 0, 0, /* 0xfff0 */
2548 0, 0, 0, 0, 0, 0, 0, "delete"
2551 static char *lispy_mouse_names[] =
2553 "mouse-1", "mouse-2", "mouse-3", "mouse-4", "mouse-5"
2556 /* Scroll bar parts. */
2557 Lisp_Object Qabove_handle, Qhandle, Qbelow_handle;
2559 /* An array of scroll bar parts, indexed by an enum scroll_bar_part value. */
2560 Lisp_Object *scroll_bar_parts[] = {
2561 &Qabove_handle, &Qhandle, &Qbelow_handle
2565 /* A vector, indexed by button number, giving the down-going location
2566 of currently depressed buttons, both scroll bar and non-scroll bar.
2568 The elements have the form
2569 (BUTTON-NUMBER MODIFIER-MASK . REST)
2570 where REST is the cdr of a position as it would be reported in the event.
2572 The make_lispy_event function stores positions here to tell the
2573 difference between click and drag events, and to store the starting
2574 location to be included in drag events. */
2576 static Lisp_Object button_down_location;
2578 /* Information about the most recent up-going button event: Which
2579 button, what location, and what time. */
2581 static int last_mouse_button;
2582 static int last_mouse_x;
2583 static int last_mouse_y;
2584 static unsigned long button_down_time;
2586 /* The maximum time between clicks to make a double-click,
2587 or Qnil to disable double-click detection,
2588 or Qt for no time limit. */
2589 Lisp_Object Vdouble_click_time;
2591 /* The number of clicks in this multiple-click. */
2593 int double_click_count;
2595 #ifdef USE_X_TOOLKIT
2596 extern Lisp_Object map_event_to_object ();
2597 #endif /* USE_X_TOOLKIT */
2599 /* Given a struct input_event, build the lisp event which represents
2600 it. If EVENT is 0, build a mouse movement event from the mouse
2601 movement buffer, which should have a movement event in it.
2603 Note that events must be passed to this function in the order they
2604 are received; this function stores the location of button presses
2605 in order to build drag events when the button is released. */
2607 static Lisp_Object
2608 make_lispy_event (event)
2609 struct input_event *event;
2611 int i;
2613 switch (SWITCH_ENUM_CAST (event->kind))
2615 /* A simple keystroke. */
2616 case ascii_keystroke:
2618 Lisp_Object lispy_c;
2619 int c = event->code & 0377;
2620 /* Turn ASCII characters into control characters
2621 when proper. */
2622 if (event->modifiers & ctrl_modifier)
2623 c = make_ctrl_char (c);
2625 /* Add in the other modifier bits. We took care of ctrl_modifier
2626 just above, and the shift key was taken care of by the X code,
2627 and applied to control characters by make_ctrl_char. */
2628 c |= (event->modifiers
2629 & (meta_modifier | alt_modifier
2630 | hyper_modifier | super_modifier));
2631 button_down_time = 0;
2632 XSETFASTINT (lispy_c, c);
2633 return lispy_c;
2636 /* A function key. The symbol may need to have modifier prefixes
2637 tacked onto it. */
2638 case non_ascii_keystroke:
2639 button_down_time = 0;
2641 for (i = 0; i < sizeof (lispy_accent_codes) / sizeof (int); i++)
2642 if (event->code == lispy_accent_codes[i])
2643 return modify_event_symbol (i,
2644 event->modifiers,
2645 Qfunction_key, Qnil,
2646 lispy_accent_keys, &accent_key_syms,
2647 (sizeof (lispy_accent_keys)
2648 / sizeof (lispy_accent_keys[0])));
2650 /* Handle system-specific keysyms. */
2651 if (event->code & (1 << 28))
2653 /* We need to use an alist rather than a vector as the cache
2654 since we can't make a vector long enuf. */
2655 if (NILP (system_key_syms))
2656 system_key_syms = Fcons (Qnil, Qnil);
2657 return modify_event_symbol (event->code & 0xffffff,
2658 event->modifiers,
2659 Qfunction_key, Vsystem_key_alist,
2660 0, &system_key_syms, 0xffffff);
2663 return modify_event_symbol (event->code - 0xff00,
2664 event->modifiers,
2665 Qfunction_key, Qnil,
2666 lispy_function_keys, &func_key_syms,
2667 (sizeof (lispy_function_keys)
2668 / sizeof (lispy_function_keys[0])));
2669 break;
2671 #if defined (MULTI_FRAME) || defined (HAVE_MOUSE)
2672 /* A mouse click. Figure out where it is, decide whether it's
2673 a press, click or drag, and build the appropriate structure. */
2674 case mouse_click:
2675 case scroll_bar_click:
2677 int button = event->code;
2678 int is_double;
2679 Lisp_Object position;
2680 Lisp_Object *start_pos_ptr;
2681 Lisp_Object start_pos;
2683 if (button < 0 || button >= NUM_MOUSE_BUTTONS)
2684 abort ();
2686 /* Build the position as appropriate for this mouse click. */
2687 if (event->kind == mouse_click)
2689 int part;
2690 FRAME_PTR f = XFRAME (event->frame_or_window);
2691 Lisp_Object window;
2692 Lisp_Object posn;
2693 int row, column;
2695 /* Ignore mouse events that were made on frame that
2696 have been deleted. */
2697 if (! FRAME_LIVE_P (f))
2698 return Qnil;
2700 pixel_to_glyph_coords (f, XINT (event->x), XINT (event->y),
2701 &column, &row, 0, 1);
2703 #ifndef USE_X_TOOLKIT
2704 /* In the non-toolkit version, clicks on the menu bar
2705 are ordinary button events in the event buffer.
2706 Distinguish them, and invoke the menu.
2708 (In the toolkit version, the toolkit handles the menu bar
2709 and Emacs doesn't know about it until after the user
2710 makes a selection.) */
2711 if (row >= 0 && row < FRAME_MENU_BAR_LINES (f))
2713 Lisp_Object items, item;
2714 int hpos;
2715 int i;
2717 /* Activate the menu bar on the down event. If the
2718 up event comes in before the menu code can deal with it,
2719 just ignore it. */
2720 if (! (event->modifiers & down_modifier))
2721 return Qnil;
2723 item = Qnil;
2724 items = FRAME_MENU_BAR_ITEMS (f);
2725 for (i = 0; i < XVECTOR (items)->size; i += 3)
2727 Lisp_Object pos, string;
2728 string = XVECTOR (items)->contents[i + 1];
2729 pos = XVECTOR (items)->contents[i + 2];
2730 if (NILP (string))
2731 break;
2732 if (column >= XINT (pos)
2733 && column < XINT (pos) + XSTRING (string)->size)
2735 item = XVECTOR (items)->contents[i];
2736 break;
2740 position
2741 = Fcons (event->frame_or_window,
2742 Fcons (Qmenu_bar,
2743 Fcons (Fcons (event->x, event->y),
2744 Fcons (make_number (event->timestamp),
2745 Qnil))));
2747 return Fcons (item, Fcons (position, Qnil));
2749 #endif /* not USE_X_TOOLKIT */
2751 window = window_from_coordinates (f, column, row, &part);
2753 if (!WINDOWP (window))
2755 window = event->frame_or_window;
2756 posn = Qnil;
2758 else
2760 int pixcolumn, pixrow;
2761 column -= XINT (XWINDOW (window)->left);
2762 row -= XINT (XWINDOW (window)->top);
2763 glyph_to_pixel_coords (f, column, row, &pixcolumn, &pixrow);
2764 XSETINT (event->x, pixcolumn);
2765 XSETINT (event->y, pixrow);
2767 if (part == 1)
2768 posn = Qmode_line;
2769 else if (part == 2)
2770 posn = Qvertical_line;
2771 else
2772 XSETINT (posn,
2773 buffer_posn_from_coords (XWINDOW (window),
2774 column, row));
2777 position
2778 = Fcons (window,
2779 Fcons (posn,
2780 Fcons (Fcons (event->x, event->y),
2781 Fcons (make_number (event->timestamp),
2782 Qnil))));
2784 else
2786 Lisp_Object window;
2787 Lisp_Object portion_whole;
2788 Lisp_Object part;
2790 window = event->frame_or_window;
2791 portion_whole = Fcons (event->x, event->y);
2792 part = *scroll_bar_parts[(int) event->part];
2794 position =
2795 Fcons (window,
2796 Fcons (Qvertical_scroll_bar,
2797 Fcons (portion_whole,
2798 Fcons (make_number (event->timestamp),
2799 Fcons (part, Qnil)))));
2802 start_pos_ptr = &XVECTOR (button_down_location)->contents[button];
2804 start_pos = *start_pos_ptr;
2805 *start_pos_ptr = Qnil;
2807 is_double = (button == last_mouse_button
2808 && XINT (event->x) == last_mouse_x
2809 && XINT (event->y) == last_mouse_y
2810 && button_down_time != 0
2811 && (EQ (Vdouble_click_time, Qt)
2812 || (INTEGERP (Vdouble_click_time)
2813 && ((int)(event->timestamp - button_down_time)
2814 < XINT (Vdouble_click_time)))));
2815 last_mouse_button = button;
2816 last_mouse_x = XINT (event->x);
2817 last_mouse_y = XINT (event->y);
2819 /* If this is a button press, squirrel away the location, so
2820 we can decide later whether it was a click or a drag. */
2821 if (event->modifiers & down_modifier)
2823 if (is_double)
2825 double_click_count++;
2826 event->modifiers |= ((double_click_count > 2)
2827 ? triple_modifier
2828 : double_modifier);
2830 else
2831 double_click_count = 1;
2832 button_down_time = event->timestamp;
2833 *start_pos_ptr = Fcopy_alist (position);
2836 /* Now we're releasing a button - check the co-ordinates to
2837 see if this was a click or a drag. */
2838 else if (event->modifiers & up_modifier)
2840 /* If we did not see a down before this up,
2841 ignore the up. Probably this happened because
2842 the down event chose a menu item.
2843 It would be an annoyance to treat the release
2844 of the button that chose the menu item
2845 as a separate event. */
2847 if (!CONSP (start_pos))
2848 return Qnil;
2850 event->modifiers &= ~up_modifier;
2851 #if 0 /* Formerly we treated an up with no down as a click event. */
2852 if (!CONSP (start_pos))
2853 event->modifiers |= click_modifier;
2854 else
2855 #endif
2857 /* The third element of every position should be the (x,y)
2858 pair. */
2859 Lisp_Object down;
2861 down = Fnth (make_number (2), start_pos);
2862 if (EQ (event->x, XCONS (down)->car)
2863 && EQ (event->y, XCONS (down)->cdr))
2865 event->modifiers |= click_modifier;
2867 else
2869 button_down_time = 0;
2870 event->modifiers |= drag_modifier;
2872 /* Don't check is_double; treat this as multiple
2873 if the down-event was multiple. */
2874 if (double_click_count > 1)
2875 event->modifiers |= ((double_click_count > 2)
2876 ? triple_modifier
2877 : double_modifier);
2880 else
2881 /* Every mouse event should either have the down_modifier or
2882 the up_modifier set. */
2883 abort ();
2886 /* Get the symbol we should use for the mouse click. */
2887 Lisp_Object head;
2889 head = modify_event_symbol (button,
2890 event->modifiers,
2891 Qmouse_click, Qnil,
2892 lispy_mouse_names, &mouse_syms,
2893 (sizeof (lispy_mouse_names)
2894 / sizeof (lispy_mouse_names[0])));
2895 if (event->modifiers & drag_modifier)
2896 return Fcons (head,
2897 Fcons (start_pos,
2898 Fcons (position,
2899 Qnil)));
2900 else if (event->modifiers & (double_modifier | triple_modifier))
2901 return Fcons (head,
2902 Fcons (position,
2903 Fcons (make_number (double_click_count),
2904 Qnil)));
2905 else
2906 return Fcons (head,
2907 Fcons (position,
2908 Qnil));
2911 #endif /* MULTI_FRAME or HAVE_MOUSE */
2913 /* The 'kind' field of the event is something we don't recognize. */
2914 default:
2915 abort ();
2919 #if defined (MULTI_FRAME) || defined (HAVE_MOUSE)
2921 static Lisp_Object
2922 make_lispy_movement (frame, bar_window, part, x, y, time)
2923 FRAME_PTR frame;
2924 Lisp_Object bar_window;
2925 enum scroll_bar_part part;
2926 Lisp_Object x, y;
2927 unsigned long time;
2929 #ifdef MULTI_FRAME
2930 /* Is it a scroll bar movement? */
2931 if (frame && ! NILP (bar_window))
2933 Lisp_Object part_sym;
2935 part_sym = *scroll_bar_parts[(int) part];
2936 return Fcons (Qscroll_bar_movement,
2937 (Fcons (Fcons (bar_window,
2938 Fcons (Qvertical_scroll_bar,
2939 Fcons (Fcons (x, y),
2940 Fcons (make_number (time),
2941 Fcons (part_sym,
2942 Qnil))))),
2943 Qnil)));
2946 /* Or is it an ordinary mouse movement? */
2947 else
2948 #endif /* MULTI_FRAME */
2950 int area;
2951 Lisp_Object window;
2952 Lisp_Object posn;
2953 int column, row;
2955 #ifdef MULTI_FRAME
2956 if (frame)
2957 #else
2958 if (1)
2959 #endif
2961 /* It's in a frame; which window on that frame? */
2962 pixel_to_glyph_coords (frame, XINT (x), XINT (y), &column, &row, 0, 1);
2963 window = window_from_coordinates (frame, column, row, &area);
2965 else
2966 window = Qnil;
2968 if (WINDOWP (window))
2970 int pixcolumn, pixrow;
2971 column -= XINT (XWINDOW (window)->left);
2972 row -= XINT (XWINDOW (window)->top);
2973 glyph_to_pixel_coords (frame, column, row, &pixcolumn, &pixrow);
2974 XSETINT (x, pixcolumn);
2975 XSETINT (y, pixrow);
2977 if (area == 1)
2978 posn = Qmode_line;
2979 else if (area == 2)
2980 posn = Qvertical_line;
2981 else
2982 XSETINT (posn,
2983 buffer_posn_from_coords (XWINDOW (window), column, row));
2985 #ifdef MULTI_FRAME
2986 else if (frame != 0)
2988 XSETFRAME (window, frame);
2989 posn = Qnil;
2991 #endif
2992 else
2994 window = Qnil;
2995 posn = Qnil;
2996 XSETFASTINT (x, 0);
2997 XSETFASTINT (y, 0);
3000 return Fcons (Qmouse_movement,
3001 Fcons (Fcons (window,
3002 Fcons (posn,
3003 Fcons (Fcons (x, y),
3004 Fcons (make_number (time),
3005 Qnil)))),
3006 Qnil));
3010 #endif /* neither MULTI_FRAME nor HAVE_MOUSE */
3012 /* Construct a switch frame event. */
3013 static Lisp_Object
3014 make_lispy_switch_frame (frame)
3015 Lisp_Object frame;
3017 return Fcons (Qswitch_frame, Fcons (frame, Qnil));
3020 /* Manipulating modifiers. */
3022 /* Parse the name of SYMBOL, and return the set of modifiers it contains.
3024 If MODIFIER_END is non-zero, set *MODIFIER_END to the position in
3025 SYMBOL's name of the end of the modifiers; the string from this
3026 position is the unmodified symbol name.
3028 This doesn't use any caches. */
3029 static int
3030 parse_modifiers_uncached (symbol, modifier_end)
3031 Lisp_Object symbol;
3032 int *modifier_end;
3034 struct Lisp_String *name;
3035 int i;
3036 int modifiers;
3038 CHECK_SYMBOL (symbol, 1);
3040 modifiers = 0;
3041 name = XSYMBOL (symbol)->name;
3044 for (i = 0; i+2 <= name->size; )
3045 switch (name->data[i])
3047 #define SINGLE_LETTER_MOD(bit) \
3048 if (name->data[i+1] != '-') \
3049 goto no_more_modifiers; \
3050 modifiers |= bit; \
3051 i += 2;
3053 case 'A':
3054 SINGLE_LETTER_MOD (alt_modifier);
3055 break;
3057 case 'C':
3058 SINGLE_LETTER_MOD (ctrl_modifier);
3059 break;
3061 case 'H':
3062 SINGLE_LETTER_MOD (hyper_modifier);
3063 break;
3065 case 'M':
3066 SINGLE_LETTER_MOD (meta_modifier);
3067 break;
3069 case 'S':
3070 SINGLE_LETTER_MOD (shift_modifier);
3071 break;
3073 case 's':
3074 SINGLE_LETTER_MOD (super_modifier);
3075 break;
3077 case 'd':
3078 if (i + 5 > name->size)
3079 goto no_more_modifiers;
3080 if (! strncmp (name->data + i, "drag-", 5))
3082 modifiers |= drag_modifier;
3083 i += 5;
3085 else if (! strncmp (name->data + i, "down-", 5))
3087 modifiers |= down_modifier;
3088 i += 5;
3090 else if (i + 7 <= name->size
3091 && ! strncmp (name->data + i, "double-", 7))
3093 modifiers |= double_modifier;
3094 i += 7;
3096 else
3097 goto no_more_modifiers;
3098 break;
3100 case 't':
3101 if (i + 7 > name->size)
3102 goto no_more_modifiers;
3103 if (! strncmp (name->data + i, "triple-", 7))
3105 modifiers |= triple_modifier;
3106 i += 7;
3108 else
3109 goto no_more_modifiers;
3110 break;
3112 default:
3113 goto no_more_modifiers;
3115 #undef SINGLE_LETTER_MOD
3117 no_more_modifiers:
3119 /* Should we include the `click' modifier? */
3120 if (! (modifiers & (down_modifier | drag_modifier
3121 | double_modifier | triple_modifier))
3122 && i + 7 == name->size
3123 && strncmp (name->data + i, "mouse-", 6) == 0
3124 && ('0' <= name->data[i + 6] && name->data[i + 6] <= '9'))
3125 modifiers |= click_modifier;
3127 if (modifier_end)
3128 *modifier_end = i;
3130 return modifiers;
3134 /* Return a symbol whose name is the modifier prefixes for MODIFIERS
3135 prepended to the string BASE[0..BASE_LEN-1].
3136 This doesn't use any caches. */
3137 static Lisp_Object
3138 apply_modifiers_uncached (modifiers, base, base_len)
3139 int modifiers;
3140 char *base;
3141 int base_len;
3143 /* Since BASE could contain nulls, we can't use intern here; we have
3144 to use Fintern, which expects a genuine Lisp_String, and keeps a
3145 reference to it. */
3146 char *new_mods =
3147 (char *) alloca (sizeof ("A-C-H-M-S-s-down-drag-double-triple-"));
3148 int mod_len;
3151 char *p = new_mods;
3153 /* Only the event queue may use the `up' modifier; it should always
3154 be turned into a click or drag event before presented to lisp code. */
3155 if (modifiers & up_modifier)
3156 abort ();
3158 if (modifiers & alt_modifier) { *p++ = 'A'; *p++ = '-'; }
3159 if (modifiers & ctrl_modifier) { *p++ = 'C'; *p++ = '-'; }
3160 if (modifiers & hyper_modifier) { *p++ = 'H'; *p++ = '-'; }
3161 if (modifiers & meta_modifier) { *p++ = 'M'; *p++ = '-'; }
3162 if (modifiers & shift_modifier) { *p++ = 'S'; *p++ = '-'; }
3163 if (modifiers & super_modifier) { *p++ = 's'; *p++ = '-'; }
3164 if (modifiers & double_modifier) { strcpy (p, "double-"); p += 7; }
3165 if (modifiers & triple_modifier) { strcpy (p, "triple-"); p += 7; }
3166 if (modifiers & down_modifier) { strcpy (p, "down-"); p += 5; }
3167 if (modifiers & drag_modifier) { strcpy (p, "drag-"); p += 5; }
3168 /* The click modifier is denoted by the absence of other modifiers. */
3170 *p = '\0';
3172 mod_len = p - new_mods;
3176 Lisp_Object new_name;
3178 new_name = make_uninit_string (mod_len + base_len);
3179 bcopy (new_mods, XSTRING (new_name)->data, mod_len);
3180 bcopy (base, XSTRING (new_name)->data + mod_len, base_len);
3182 return Fintern (new_name, Qnil);
3187 static char *modifier_names[] =
3189 "up", "down", "drag", "click", "double", "triple", 0, 0,
3190 0, 0, 0, 0, 0, 0, 0, 0,
3191 0, 0, "alt", "super", "hyper", "shift", "control", "meta"
3193 #define NUM_MOD_NAMES (sizeof (modifier_names) / sizeof (modifier_names[0]))
3195 static Lisp_Object modifier_symbols;
3197 /* Return the list of modifier symbols corresponding to the mask MODIFIERS. */
3198 static Lisp_Object
3199 lispy_modifier_list (modifiers)
3200 int modifiers;
3202 Lisp_Object modifier_list;
3203 int i;
3205 modifier_list = Qnil;
3206 for (i = 0; (1<<i) <= modifiers && i < NUM_MOD_NAMES; i++)
3207 if (modifiers & (1<<i))
3208 modifier_list = Fcons (XVECTOR (modifier_symbols)->contents[i],
3209 modifier_list);
3211 return modifier_list;
3215 /* Parse the modifiers on SYMBOL, and return a list like (UNMODIFIED MASK),
3216 where UNMODIFIED is the unmodified form of SYMBOL,
3217 MASK is the set of modifiers present in SYMBOL's name.
3218 This is similar to parse_modifiers_uncached, but uses the cache in
3219 SYMBOL's Qevent_symbol_element_mask property, and maintains the
3220 Qevent_symbol_elements property. */
3221 static Lisp_Object
3222 parse_modifiers (symbol)
3223 Lisp_Object symbol;
3225 Lisp_Object elements;
3227 elements = Fget (symbol, Qevent_symbol_element_mask);
3228 if (CONSP (elements))
3229 return elements;
3230 else
3232 int end;
3233 int modifiers = parse_modifiers_uncached (symbol, &end);
3234 Lisp_Object unmodified;
3235 Lisp_Object mask;
3237 unmodified = Fintern (make_string (XSYMBOL (symbol)->name->data + end,
3238 XSYMBOL (symbol)->name->size - end),
3239 Qnil);
3241 if (modifiers & ~((1<<VALBITS) - 1))
3242 abort ();
3243 XSETFASTINT (mask, modifiers);
3244 elements = Fcons (unmodified, Fcons (mask, Qnil));
3246 /* Cache the parsing results on SYMBOL. */
3247 Fput (symbol, Qevent_symbol_element_mask,
3248 elements);
3249 Fput (symbol, Qevent_symbol_elements,
3250 Fcons (unmodified, lispy_modifier_list (modifiers)));
3252 /* Since we know that SYMBOL is modifiers applied to unmodified,
3253 it would be nice to put that in unmodified's cache.
3254 But we can't, since we're not sure that parse_modifiers is
3255 canonical. */
3257 return elements;
3261 /* Apply the modifiers MODIFIERS to the symbol BASE.
3262 BASE must be unmodified.
3264 This is like apply_modifiers_uncached, but uses BASE's
3265 Qmodifier_cache property, if present. It also builds
3266 Qevent_symbol_elements properties, since it has that info anyway.
3268 apply_modifiers copies the value of BASE's Qevent_kind property to
3269 the modified symbol. */
3270 static Lisp_Object
3271 apply_modifiers (modifiers, base)
3272 int modifiers;
3273 Lisp_Object base;
3275 Lisp_Object cache, index, entry, new_symbol;
3277 /* Mask out upper bits. We don't know where this value's been. */
3278 modifiers &= (1<<VALBITS) - 1;
3280 /* The click modifier never figures into cache indices. */
3281 cache = Fget (base, Qmodifier_cache);
3282 XSETFASTINT (index, (modifiers & ~click_modifier));
3283 entry = assq_no_quit (index, cache);
3285 if (CONSP (entry))
3286 new_symbol = XCONS (entry)->cdr;
3287 else
3289 /* We have to create the symbol ourselves. */
3290 new_symbol = apply_modifiers_uncached (modifiers,
3291 XSYMBOL (base)->name->data,
3292 XSYMBOL (base)->name->size);
3294 /* Add the new symbol to the base's cache. */
3295 entry = Fcons (index, new_symbol);
3296 Fput (base, Qmodifier_cache, Fcons (entry, cache));
3298 /* We have the parsing info now for free, so add it to the caches. */
3299 XSETFASTINT (index, modifiers);
3300 Fput (new_symbol, Qevent_symbol_element_mask,
3301 Fcons (base, Fcons (index, Qnil)));
3302 Fput (new_symbol, Qevent_symbol_elements,
3303 Fcons (base, lispy_modifier_list (modifiers)));
3306 /* Make sure this symbol is of the same kind as BASE.
3308 You'd think we could just set this once and for all when we
3309 intern the symbol above, but reorder_modifiers may call us when
3310 BASE's property isn't set right; we can't assume that just
3311 because it has a Qmodifier_cache property it must have its
3312 Qevent_kind set right as well. */
3313 if (NILP (Fget (new_symbol, Qevent_kind)))
3315 Lisp_Object kind;
3317 kind = Fget (base, Qevent_kind);
3318 if (! NILP (kind))
3319 Fput (new_symbol, Qevent_kind, kind);
3322 return new_symbol;
3326 /* Given a symbol whose name begins with modifiers ("C-", "M-", etc),
3327 return a symbol with the modifiers placed in the canonical order.
3328 Canonical order is alphabetical, except for down and drag, which
3329 always come last. The 'click' modifier is never written out.
3331 Fdefine_key calls this to make sure that (for example) C-M-foo
3332 and M-C-foo end up being equivalent in the keymap. */
3334 Lisp_Object
3335 reorder_modifiers (symbol)
3336 Lisp_Object symbol;
3338 /* It's hopefully okay to write the code this way, since everything
3339 will soon be in caches, and no consing will be done at all. */
3340 Lisp_Object parsed;
3342 parsed = parse_modifiers (symbol);
3343 return apply_modifiers (XCONS (XCONS (parsed)->cdr)->car,
3344 XCONS (parsed)->car);
3348 /* For handling events, we often want to produce a symbol whose name
3349 is a series of modifier key prefixes ("M-", "C-", etcetera) attached
3350 to some base, like the name of a function key or mouse button.
3351 modify_event_symbol produces symbols of this sort.
3353 NAME_TABLE should point to an array of strings, such that NAME_TABLE[i]
3354 is the name of the i'th symbol. TABLE_SIZE is the number of elements
3355 in the table.
3357 Alternatively, NAME_ALIST is an alist mapping codes into symbol names.
3358 NAME_ALIST is used if it is non-nil; otherwise NAME_TABLE is used.
3360 SYMBOL_TABLE should be a pointer to a Lisp_Object whose value will
3361 persist between calls to modify_event_symbol that it can use to
3362 store a cache of the symbols it's generated for this NAME_TABLE
3363 before. The object stored there may be a vector or an alist.
3365 SYMBOL_NUM is the number of the base name we want from NAME_TABLE.
3367 MODIFIERS is a set of modifier bits (as given in struct input_events)
3368 whose prefixes should be applied to the symbol name.
3370 SYMBOL_KIND is the value to be placed in the event_kind property of
3371 the returned symbol.
3373 The symbols we create are supposed to have an
3374 `event-symbol-elements' property, which lists the modifiers present
3375 in the symbol's name. */
3377 static Lisp_Object
3378 modify_event_symbol (symbol_num, modifiers, symbol_kind, name_alist,
3379 name_table, symbol_table, table_size)
3380 int symbol_num;
3381 unsigned modifiers;
3382 Lisp_Object symbol_kind;
3383 Lisp_Object name_alist;
3384 char **name_table;
3385 Lisp_Object *symbol_table;
3386 int table_size;
3388 Lisp_Object value;
3389 Lisp_Object symbol_int;
3391 XSETINT (symbol_int, symbol_num);
3393 /* Is this a request for a valid symbol? */
3394 if (symbol_num < 0 || symbol_num >= table_size)
3395 return Qnil;
3397 if (CONSP (*symbol_table))
3398 value = Fcdr (assq_no_quit (symbol_int, *symbol_table));
3400 /* If *symbol_table doesn't seem to be initialized properly, fix that.
3401 *symbol_table should be a lisp vector TABLE_SIZE elements long,
3402 where the Nth element is the symbol for NAME_TABLE[N], or nil if
3403 we've never used that symbol before. */
3404 else
3406 if (! VECTORP (*symbol_table)
3407 || XVECTOR (*symbol_table)->size != table_size)
3409 Lisp_Object size;
3411 XSETFASTINT (size, table_size);
3412 *symbol_table = Fmake_vector (size, Qnil);
3415 value = XVECTOR (*symbol_table)->contents[symbol_num];
3418 /* Have we already used this symbol before? */
3419 if (NILP (value))
3421 /* No; let's create it. */
3422 if (!NILP (name_alist))
3423 value = Fcdr_safe (Fassq (symbol_int, name_alist));
3424 else if (name_table[symbol_num])
3425 value = intern (name_table[symbol_num]);
3427 if (NILP (value))
3429 char buf[20];
3430 sprintf (buf, "key-%d", symbol_num);
3431 value = intern (buf);
3434 if (CONSP (*symbol_table))
3435 *symbol_table = Fcons (value, *symbol_table);
3436 else
3437 XVECTOR (*symbol_table)->contents[symbol_num] = value;
3439 /* Fill in the cache entries for this symbol; this also
3440 builds the Qevent_symbol_elements property, which the user
3441 cares about. */
3442 apply_modifiers (modifiers & click_modifier, value);
3443 Fput (value, Qevent_kind, symbol_kind);
3446 /* Apply modifiers to that symbol. */
3447 return apply_modifiers (modifiers, value);
3451 /* Store into *addr a value nonzero if terminal input chars are available.
3452 Serves the purpose of ioctl (0, FIONREAD, addr)
3453 but works even if FIONREAD does not exist.
3454 (In fact, this may actually read some input.) */
3456 static void
3457 get_input_pending (addr)
3458 int *addr;
3460 /* First of all, have we already counted some input? */
3461 *addr = !NILP (Vquit_flag) || readable_events ();
3463 /* If input is being read as it arrives, and we have none, there is none. */
3464 if (*addr > 0 || (interrupt_input && ! interrupts_deferred))
3465 return;
3467 /* Try to read some input and see how much we get. */
3468 gobble_input (0);
3469 *addr = !NILP (Vquit_flag) || readable_events ();
3472 /* Interface to read_avail_input, blocking SIGIO or SIGALRM if necessary. */
3475 gobble_input (expected)
3476 int expected;
3478 #ifndef VMS
3479 #ifdef SIGIO
3480 if (interrupt_input)
3482 SIGMASKTYPE mask;
3483 mask = sigblockx (SIGIO);
3484 read_avail_input (expected);
3485 sigsetmask (mask);
3487 else
3488 #ifdef POLL_FOR_INPUT
3489 if (read_socket_hook && !interrupt_input && poll_suppress_count == 0)
3491 SIGMASKTYPE mask;
3492 mask = sigblockx (SIGALRM);
3493 read_avail_input (expected);
3494 sigsetmask (mask);
3496 else
3497 #endif
3498 #endif
3499 read_avail_input (expected);
3500 #endif
3503 /* Put a buffer_switch_event in the buffer
3504 so that read_key_sequence will notice the new current buffer. */
3506 record_asynch_buffer_change ()
3508 struct input_event event;
3509 Lisp_Object tem;
3511 event.kind = buffer_switch_event;
3512 event.frame_or_window = Qnil;
3514 #ifdef subprocesses
3515 /* We don't need a buffer-switch event unless Emacs is waiting for input.
3516 The purpose of the event is to make read_key_sequence look up the
3517 keymaps again. If we aren't in read_key_sequence, we don't need one,
3518 and the event could cause trouble by messing up (input-pending-p). */
3519 tem = Fwaiting_for_user_input_p ();
3520 if (NILP (tem))
3521 return;
3522 #else
3523 /* We never need these events if we have no asynchronous subprocesses. */
3524 return;
3525 #endif
3527 /* Make sure no interrupt happens while storing the event. */
3528 #ifdef SIGIO
3529 if (interrupt_input)
3531 SIGMASKTYPE mask;
3532 mask = sigblockx (SIGIO);
3533 kbd_buffer_store_event (&event);
3534 sigsetmask (mask);
3536 else
3537 #endif
3539 stop_polling ();
3540 kbd_buffer_store_event (&event);
3541 start_polling ();
3545 #ifndef VMS
3547 /* Read any terminal input already buffered up by the system
3548 into the kbd_buffer, but do not wait.
3550 EXPECTED should be nonzero if the caller knows there is some input.
3552 Except on VMS, all input is read by this function.
3553 If interrupt_input is nonzero, this function MUST be called
3554 only when SIGIO is blocked.
3556 Returns the number of keyboard chars read, or -1 meaning
3557 this is a bad time to try to read input. */
3559 static int
3560 read_avail_input (expected)
3561 int expected;
3563 struct input_event buf[KBD_BUFFER_SIZE];
3564 register int i;
3565 int nread;
3567 if (read_socket_hook)
3568 /* No need for FIONREAD or fcntl; just say don't wait. */
3569 nread = (*read_socket_hook) (input_fd, buf, KBD_BUFFER_SIZE,
3570 expected, expected);
3571 else
3573 /* Using KBD_BUFFER_SIZE - 1 here avoids reading more than
3574 the kbd_buffer can really hold. That may prevent loss
3575 of characters on some systems when input is stuffed at us. */
3576 unsigned char cbuf[KBD_BUFFER_SIZE - 1];
3577 int n_to_read;
3579 /* Determine how many characters we should *try* to read. */
3580 #ifdef WINDOWSNT
3581 return 0;
3582 #else /* not WINDOWSNT */
3583 #ifdef MSDOS
3584 n_to_read = dos_keysns ();
3585 if (n_to_read == 0)
3586 return 0;
3587 #else /* not MSDOS */
3588 #ifdef FIONREAD
3589 /* Find out how much input is available. */
3590 if (ioctl (input_fd, FIONREAD, &n_to_read) < 0)
3591 /* Formerly simply reported no input, but that sometimes led to
3592 a failure of Emacs to terminate.
3593 SIGHUP seems appropriate if we can't reach the terminal. */
3594 /* ??? Is it really right to send the signal just to this process
3595 rather than to the whole process group?
3596 Perhaps on systems with FIONREAD Emacs is alone in its group. */
3597 kill (getpid (), SIGHUP);
3598 if (n_to_read == 0)
3599 return 0;
3600 if (n_to_read > sizeof cbuf)
3601 n_to_read = sizeof cbuf;
3602 #else /* no FIONREAD */
3603 #if defined(USG) || defined(DGUX)
3604 /* Read some input if available, but don't wait. */
3605 n_to_read = sizeof cbuf;
3606 fcntl (input_fd, F_SETFL, O_NDELAY);
3607 #else
3608 you lose;
3609 #endif
3610 #endif
3611 #endif /* not MSDOS */
3612 #endif /* not WINDOWSNT */
3614 /* Now read; for one reason or another, this will not block.
3615 NREAD is set to the number of chars read. */
3618 #ifdef MSDOS
3619 cbuf[0] = dos_keyread();
3620 nread = 1;
3621 #else
3622 nread = read (input_fd, cbuf, n_to_read);
3623 #endif
3624 #if defined (AIX) && (! defined (aix386) && defined (_BSD))
3625 /* The kernel sometimes fails to deliver SIGHUP for ptys.
3626 This looks incorrect, but it isn't, because _BSD causes
3627 O_NDELAY to be defined in fcntl.h as O_NONBLOCK,
3628 and that causes a value other than 0 when there is no input. */
3629 if (nread == 0)
3630 kill (0, SIGHUP);
3631 #endif
3633 while (
3634 /* We used to retry the read if it was interrupted.
3635 But this does the wrong thing when O_NDELAY causes
3636 an EAGAIN error. Does anybody know of a situation
3637 where a retry is actually needed? */
3638 #if 0
3639 nread < 0 && (errno == EAGAIN
3640 #ifdef EFAULT
3641 || errno == EFAULT
3642 #endif
3643 #ifdef EBADSLT
3644 || errno == EBADSLT
3645 #endif
3647 #else
3649 #endif
3652 #ifndef FIONREAD
3653 #if defined (USG) || defined (DGUX)
3654 fcntl (input_fd, F_SETFL, 0);
3655 #endif /* USG or DGUX */
3656 #endif /* no FIONREAD */
3657 for (i = 0; i < nread; i++)
3659 buf[i].kind = ascii_keystroke;
3660 buf[i].modifiers = 0;
3661 if (meta_key == 1 && (cbuf[i] & 0x80))
3662 buf[i].modifiers = meta_modifier;
3663 if (meta_key != 2)
3664 cbuf[i] &= ~0x80;
3666 buf[i].code = cbuf[i];
3667 #ifdef MULTI_FRAME
3668 XSETFRAME (buf[i].frame_or_window, selected_frame);
3669 #else
3670 buf[i].frame_or_window = Qnil;
3671 #endif
3675 /* Scan the chars for C-g and store them in kbd_buffer. */
3676 for (i = 0; i < nread; i++)
3678 kbd_buffer_store_event (&buf[i]);
3679 /* Don't look at input that follows a C-g too closely.
3680 This reduces lossage due to autorepeat on C-g. */
3681 if (buf[i].kind == ascii_keystroke
3682 && buf[i].code == quit_char)
3683 break;
3686 return nread;
3688 #endif /* not VMS */
3690 #ifdef SIGIO /* for entire page */
3691 /* Note SIGIO has been undef'd if FIONREAD is missing. */
3693 SIGTYPE
3694 input_available_signal (signo)
3695 int signo;
3697 /* Must preserve main program's value of errno. */
3698 int old_errno = errno;
3699 #ifdef BSD4_1
3700 extern int select_alarmed;
3701 #endif
3703 #ifdef USG
3704 /* USG systems forget handlers when they are used;
3705 must reestablish each time */
3706 signal (signo, input_available_signal);
3707 #endif /* USG */
3709 #ifdef BSD4_1
3710 sigisheld (SIGIO);
3711 #endif
3713 if (input_available_clear_time)
3714 EMACS_SET_SECS_USECS (*input_available_clear_time, 0, 0);
3716 while (1)
3718 int nread;
3719 nread = read_avail_input (1);
3720 /* -1 means it's not ok to read the input now.
3721 UNBLOCK_INPUT will read it later; now, avoid infinite loop.
3722 0 means there was no keyboard input available. */
3723 if (nread <= 0)
3724 break;
3726 #ifdef BSD4_1
3727 select_alarmed = 1; /* Force the select emulator back to life */
3728 #endif
3731 #ifdef BSD4_1
3732 sigfree ();
3733 #endif
3734 errno = old_errno;
3736 #endif /* SIGIO */
3738 /* Send ourselves a SIGIO.
3740 This function exists so that the UNBLOCK_INPUT macro in
3741 blockinput.h can have some way to take care of input we put off
3742 dealing with, without assuming that every file which uses
3743 UNBLOCK_INPUT also has #included the files necessary to get SIGIO. */
3744 void
3745 reinvoke_input_signal ()
3747 #ifdef SIGIO
3748 kill (0, SIGIO);
3749 #endif
3754 /* Return the prompt-string of a sparse keymap.
3755 This is the first element which is a string.
3756 Return nil if there is none. */
3758 Lisp_Object
3759 map_prompt (map)
3760 Lisp_Object map;
3762 while (CONSP (map))
3764 register Lisp_Object tem;
3765 tem = Fcar (map);
3766 if (STRINGP (tem))
3767 return tem;
3768 map = Fcdr (map);
3770 return Qnil;
3773 static void menu_bar_item ();
3774 static void menu_bar_one_keymap ();
3776 /* These variables hold the vector under construction within
3777 menu_bar_items and its subroutines, and the current index
3778 for storing into that vector. */
3779 static Lisp_Object menu_bar_items_vector;
3780 static int menu_bar_items_index;
3782 /* Return a vector of menu items for a menu bar, appropriate
3783 to the current buffer. Each item has three elements in the vector:
3784 KEY STRING MAPLIST.
3786 OLD is an old vector we can optionally reuse, or nil. */
3788 Lisp_Object
3789 menu_bar_items (old)
3790 Lisp_Object old;
3792 /* The number of keymaps we're scanning right now, and the number of
3793 keymaps we have allocated space for. */
3794 int nmaps;
3796 /* maps[0..nmaps-1] are the prefix definitions of KEYBUF[0..t-1]
3797 in the current keymaps, or nil where it is not a prefix. */
3798 Lisp_Object *maps;
3800 Lisp_Object def, tem, tail;
3802 Lisp_Object result;
3804 int mapno;
3805 Lisp_Object oquit;
3807 int i;
3809 struct gcpro gcpro1;
3811 /* In order to build the menus, we need to call the keymap
3812 accessors. They all call QUIT. But this function is called
3813 during redisplay, during which a quit is fatal. So inhibit
3814 quitting while building the menus.
3815 We do this instead of specbind because (1) errors will clear it anyway
3816 and (2) this avoids risk of specpdl overflow. */
3817 oquit = Vinhibit_quit;
3818 Vinhibit_quit = Qt;
3820 if (!NILP (old))
3821 menu_bar_items_vector = old;
3822 else
3823 menu_bar_items_vector = Fmake_vector (make_number (24), Qnil);
3824 menu_bar_items_index = 0;
3826 GCPRO1 (menu_bar_items_vector);
3828 /* Build our list of keymaps.
3829 If we recognize a function key and replace its escape sequence in
3830 keybuf with its symbol, or if the sequence starts with a mouse
3831 click and we need to switch buffers, we jump back here to rebuild
3832 the initial keymaps from the current buffer. */
3834 Lisp_Object *tmaps;
3836 /* Should overriding-local-map apply, here? */
3837 if (!NILP (Voverriding_local_map_menu_flag))
3839 if (NILP (Voverriding_local_map))
3841 /* Yes, and it is nil. Use just global map. */
3842 nmaps = 1;
3843 maps = (Lisp_Object *) alloca (nmaps * sizeof (maps[0]));
3845 else
3847 /* Yes, and it is non-nil. Use it and the global map. */
3848 nmaps = 2;
3849 maps = (Lisp_Object *) alloca (nmaps * sizeof (maps[0]));
3850 maps[0] = Voverriding_local_map;
3853 else
3855 /* No, so use major and minor mode keymaps. */
3856 nmaps = current_minor_maps (0, &tmaps) + 2;
3857 maps = (Lisp_Object *) alloca (nmaps * sizeof (maps[0]));
3858 bcopy (tmaps, maps, (nmaps - 2) * sizeof (maps[0]));
3859 #ifdef USE_TEXT_PROPERTIES
3860 maps[nmaps-2] = get_local_map (PT, current_buffer);
3861 #else
3862 maps[nmaps-2] = current_buffer->keymap;
3863 #endif
3865 maps[nmaps-1] = current_global_map;
3868 /* Look up in each map the dummy prefix key `menu-bar'. */
3870 result = Qnil;
3872 for (mapno = nmaps - 1; mapno >= 0; mapno--)
3874 if (! NILP (maps[mapno]))
3875 def = get_keyelt (access_keymap (maps[mapno], Qmenu_bar, 1, 0));
3876 else
3877 def = Qnil;
3879 tem = Fkeymapp (def);
3880 if (!NILP (tem))
3881 menu_bar_one_keymap (def);
3884 /* Move to the end those items that should be at the end. */
3886 for (tail = Vmenu_bar_final_items; CONSP (tail); tail = XCONS (tail)->cdr)
3888 int i;
3889 int end = menu_bar_items_index;
3891 for (i = 0; i < end; i += 3)
3892 if (EQ (XCONS (tail)->car, XVECTOR (menu_bar_items_vector)->contents[i]))
3894 Lisp_Object tem0, tem1, tem2;
3895 /* Move the item at index I to the end,
3896 shifting all the others forward. */
3897 tem0 = XVECTOR (menu_bar_items_vector)->contents[i + 0];
3898 tem1 = XVECTOR (menu_bar_items_vector)->contents[i + 1];
3899 tem2 = XVECTOR (menu_bar_items_vector)->contents[i + 2];
3900 if (end > i + 3)
3901 bcopy (&XVECTOR (menu_bar_items_vector)->contents[i + 3],
3902 &XVECTOR (menu_bar_items_vector)->contents[i],
3903 (end - i - 3) * sizeof (Lisp_Object));
3904 XVECTOR (menu_bar_items_vector)->contents[end - 3] = tem0;
3905 XVECTOR (menu_bar_items_vector)->contents[end - 2] = tem1;
3906 XVECTOR (menu_bar_items_vector)->contents[end - 1] = tem2;
3907 break;
3911 /* Add nil, nil, nil at the end. */
3912 i = menu_bar_items_index;
3913 if (i + 3 > XVECTOR (menu_bar_items_vector)->size)
3915 Lisp_Object tem;
3916 int newsize = 2 * i;
3917 tem = Fmake_vector (make_number (2 * i), Qnil);
3918 bcopy (XVECTOR (menu_bar_items_vector)->contents,
3919 XVECTOR (tem)->contents, i * sizeof (Lisp_Object));
3920 menu_bar_items_vector = tem;
3922 /* Add this item. */
3923 XVECTOR (menu_bar_items_vector)->contents[i++] = Qnil;
3924 XVECTOR (menu_bar_items_vector)->contents[i++] = Qnil;
3925 XVECTOR (menu_bar_items_vector)->contents[i++] = Qnil;
3926 menu_bar_items_index = i;
3928 Vinhibit_quit = oquit;
3929 UNGCPRO;
3930 return menu_bar_items_vector;
3933 /* Scan one map KEYMAP, accumulating any menu items it defines
3934 in menu_bar_items_vector. */
3936 static void
3937 menu_bar_one_keymap (keymap)
3938 Lisp_Object keymap;
3940 Lisp_Object tail, item, key, binding, item_string, table;
3942 /* Loop over all keymap entries that have menu strings. */
3943 for (tail = keymap; CONSP (tail); tail = XCONS (tail)->cdr)
3945 item = XCONS (tail)->car;
3946 if (CONSP (item))
3948 key = XCONS (item)->car;
3949 binding = XCONS (item)->cdr;
3950 if (CONSP (binding))
3952 item_string = XCONS (binding)->car;
3953 if (STRINGP (item_string))
3954 menu_bar_item (key, item_string, Fcdr (binding));
3956 else if (EQ (binding, Qundefined))
3957 menu_bar_item (key, Qnil, binding);
3959 else if (VECTORP (item))
3961 /* Loop over the char values represented in the vector. */
3962 int len = XVECTOR (item)->size;
3963 int c;
3964 for (c = 0; c < len; c++)
3966 Lisp_Object character;
3967 XSETFASTINT (character, c);
3968 binding = XVECTOR (item)->contents[c];
3969 if (CONSP (binding))
3971 item_string = XCONS (binding)->car;
3972 if (STRINGP (item_string))
3973 menu_bar_item (key, item_string, Fcdr (binding));
3975 else if (EQ (binding, Qundefined))
3976 menu_bar_item (key, Qnil, binding);
3982 /* This is used as the handler when calling internal_condition_case_1. */
3984 static Lisp_Object
3985 menu_bar_item_1 (arg)
3986 Lisp_Object arg;
3988 return Qnil;
3991 /* Add one item to menu_bar_items_vector, for KEY, ITEM_STRING and DEF.
3992 If there's already an item for KEY, add this DEF to it. */
3994 static void
3995 menu_bar_item (key, item_string, def)
3996 Lisp_Object key, item_string, def;
3998 Lisp_Object tem;
3999 Lisp_Object enabled;
4000 int i;
4002 if (EQ (def, Qundefined))
4004 /* If a map has an explicit `undefined' as definition,
4005 discard any previously made menu bar item. */
4007 for (i = 0; i < menu_bar_items_index; i += 3)
4008 if (EQ (key, XVECTOR (menu_bar_items_vector)->contents[i]))
4010 if (menu_bar_items_index > i + 3)
4011 bcopy (&XVECTOR (menu_bar_items_vector)->contents[i + 3],
4012 &XVECTOR (menu_bar_items_vector)->contents[i],
4013 (menu_bar_items_index - i - 3) * sizeof (Lisp_Object));
4014 menu_bar_items_index -= 3;
4015 return;
4018 /* If there's no definition for this key yet,
4019 just ignore `undefined'. */
4020 return;
4023 /* See if this entry is enabled. */
4024 enabled = Qt;
4026 if (SYMBOLP (def))
4028 /* No property, or nil, means enable.
4029 Otherwise, enable if value is not nil. */
4030 tem = Fget (def, Qmenu_enable);
4031 if (!NILP (tem))
4032 /* (condition-case nil (eval tem)
4033 (error nil)) */
4034 enabled = internal_condition_case_1 (Feval, tem, Qerror,
4035 menu_bar_item_1);
4038 /* Ignore this item if it's not enabled. */
4039 if (NILP (enabled))
4040 return;
4042 /* Find any existing item for this KEY. */
4043 for (i = 0; i < menu_bar_items_index; i += 3)
4044 if (EQ (key, XVECTOR (menu_bar_items_vector)->contents[i]))
4045 break;
4047 /* If we did not find this KEY, add it at the end. */
4048 if (i == menu_bar_items_index)
4050 /* If vector is too small, get a bigger one. */
4051 if (i + 3 > XVECTOR (menu_bar_items_vector)->size)
4053 Lisp_Object tem;
4054 int newsize = 2 * i;
4055 tem = Fmake_vector (make_number (2 * i), Qnil);
4056 bcopy (XVECTOR (menu_bar_items_vector)->contents,
4057 XVECTOR (tem)->contents, i * sizeof (Lisp_Object));
4058 menu_bar_items_vector = tem;
4060 /* Add this item. */
4061 XVECTOR (menu_bar_items_vector)->contents[i++] = key;
4062 XVECTOR (menu_bar_items_vector)->contents[i++] = item_string;
4063 XVECTOR (menu_bar_items_vector)->contents[i++] = Fcons (def, Qnil);
4064 menu_bar_items_index = i;
4066 /* We did find an item for this KEY. Add DEF to its list of maps. */
4067 else
4069 Lisp_Object old;
4070 old = XVECTOR (menu_bar_items_vector)->contents[i + 2];
4071 XVECTOR (menu_bar_items_vector)->contents[i + 2] = Fcons (def, old);
4075 /* Read a character using menus based on maps in the array MAPS.
4076 NMAPS is the length of MAPS. Return nil if there are no menus in the maps.
4077 Return t if we displayed a menu but the user rejected it.
4079 PREV_EVENT is the previous input event, or nil if we are reading
4080 the first event of a key sequence.
4082 If USED_MOUSE_MENU is non-zero, then we set *USED_MOUSE_MENU to 1
4083 if we used a mouse menu to read the input, or zero otherwise. If
4084 USED_MOUSE_MENU is zero, *USED_MOUSE_MENU is left alone.
4086 The prompting is done based on the prompt-string of the map
4087 and the strings associated with various map elements.
4089 This can be done with X menus or with menus put in the minibuf.
4090 These are done in different ways, depending on how the input will be read.
4091 Menus using X are done after auto-saving in read-char, getting the input
4092 event from Fx_popup_menu; menus using the minibuf use read_char recursively
4093 and do auto-saving in the inner call of read_char. */
4095 static Lisp_Object
4096 read_char_x_menu_prompt (nmaps, maps, prev_event, used_mouse_menu)
4097 int nmaps;
4098 Lisp_Object *maps;
4099 Lisp_Object prev_event;
4100 int *used_mouse_menu;
4102 int mapno;
4103 register Lisp_Object name;
4104 Lisp_Object rest, vector;
4106 if (used_mouse_menu)
4107 *used_mouse_menu = 0;
4109 /* Use local over global Menu maps */
4111 if (! menu_prompting)
4112 return Qnil;
4114 /* Optionally disregard all but the global map. */
4115 if (inhibit_local_menu_bar_menus)
4117 maps += (nmaps - 1);
4118 nmaps = 1;
4121 /* Get the menu name from the first map that has one (a prompt string). */
4122 for (mapno = 0; mapno < nmaps; mapno++)
4124 name = map_prompt (maps[mapno]);
4125 if (!NILP (name))
4126 break;
4129 /* If we don't have any menus, just read a character normally. */
4130 if (mapno >= nmaps)
4131 return Qnil;
4133 #if (defined (HAVE_X_WINDOWS) && defined (HAVE_X_MENU)) || defined (MSDOS)
4134 /* If we got to this point via a mouse click,
4135 use a real menu for mouse selection. */
4136 if (EVENT_HAS_PARAMETERS (prev_event))
4138 /* Display the menu and get the selection. */
4139 Lisp_Object *realmaps
4140 = (Lisp_Object *) alloca (nmaps * sizeof (Lisp_Object));
4141 Lisp_Object value;
4142 int nmaps1 = 0;
4144 /* Use the maps that are not nil. */
4145 for (mapno = 0; mapno < nmaps; mapno++)
4146 if (!NILP (maps[mapno]))
4147 realmaps[nmaps1++] = maps[mapno];
4149 value = Fx_popup_menu (prev_event, Flist (nmaps1, realmaps));
4150 if (CONSP (value))
4152 /* If we got more than one event, put all but the first
4153 onto this list to be read later.
4154 Return just the first event now. */
4155 Vunread_command_events
4156 = nconc2 (XCONS (value)->cdr, Vunread_command_events);
4157 value = XCONS (value)->car;
4159 else if (NILP (value))
4160 value = Qt;
4161 if (used_mouse_menu)
4162 *used_mouse_menu = 1;
4163 return value;
4165 #endif /* (HAVE_X_WINDOWS && HAVE_X_MENU) || MSDOS */
4166 return Qnil ;
4169 static Lisp_Object
4170 read_char_minibuf_menu_prompt (commandflag, nmaps, maps)
4171 int commandflag ;
4172 int nmaps;
4173 Lisp_Object *maps;
4175 int mapno;
4176 register Lisp_Object name;
4177 int nlength;
4178 int width = FRAME_WIDTH (selected_frame) - 4;
4179 char *menu = (char *) alloca (width + 4);
4180 int idx = -1;
4181 int nobindings = 1;
4182 Lisp_Object rest, vector;
4184 if (! menu_prompting)
4185 return Qnil;
4187 /* Get the menu name from the first map that has one (a prompt string). */
4188 for (mapno = 0; mapno < nmaps; mapno++)
4190 name = map_prompt (maps[mapno]);
4191 if (!NILP (name))
4192 break;
4195 /* If we don't have any menus, just read a character normally. */
4196 if (mapno >= nmaps)
4197 return Qnil;
4199 /* Prompt string always starts with map's prompt, and a space. */
4200 strcpy (menu, XSTRING (name)->data);
4201 nlength = XSTRING (name)->size;
4202 menu[nlength++] = ':';
4203 menu[nlength++] = ' ';
4204 menu[nlength] = 0;
4206 /* Start prompting at start of first map. */
4207 mapno = 0;
4208 rest = maps[mapno];
4210 /* Present the documented bindings, a line at a time. */
4211 while (1)
4213 int notfirst = 0;
4214 int i = nlength;
4215 Lisp_Object obj;
4216 int ch;
4217 int orig_defn_macro ;
4219 /* Loop over elements of map. */
4220 while (i < width)
4222 Lisp_Object s, elt;
4224 /* If reached end of map, start at beginning of next map. */
4225 if (NILP (rest))
4227 mapno++;
4228 /* At end of last map, wrap around to first map if just starting,
4229 or end this line if already have something on it. */
4230 if (mapno == nmaps)
4232 mapno = 0;
4233 if (notfirst || nobindings) break;
4235 rest = maps[mapno];
4238 /* Look at the next element of the map. */
4239 if (idx >= 0)
4240 elt = XVECTOR (vector)->contents[idx];
4241 else
4242 elt = Fcar_safe (rest);
4244 if (idx < 0 && VECTORP (elt))
4246 /* If we found a dense table in the keymap,
4247 advanced past it, but start scanning its contents. */
4248 rest = Fcdr_safe (rest);
4249 vector = elt;
4250 idx = 0;
4252 else
4254 /* An ordinary element. */
4255 if ( idx < 0 )
4256 s = Fcar_safe (Fcdr_safe (elt)); /* alist */
4257 else
4258 s = Fcar_safe(elt); /* vector */
4259 if (!STRINGP (s))
4260 /* Ignore the element if it has no prompt string. */
4262 /* If we have room for the prompt string, add it to this line.
4263 If this is the first on the line, always add it. */
4264 else if (XSTRING (s)->size + i + 2 < width
4265 || !notfirst)
4267 int thiswidth;
4269 /* Punctuate between strings. */
4270 if (notfirst)
4272 strcpy (menu + i, ", ");
4273 i += 2;
4275 notfirst = 1;
4276 nobindings = 0 ;
4278 /* Add as much of string as fits. */
4279 thiswidth = XSTRING (s)->size;
4280 if (thiswidth + i > width)
4281 thiswidth = width - i;
4282 bcopy (XSTRING (s)->data, menu + i, thiswidth);
4283 i += thiswidth;
4284 menu[i] = 0;
4286 else
4288 /* If this element does not fit, end the line now,
4289 and save the element for the next line. */
4290 strcpy (menu + i, "...");
4291 break;
4294 /* Move past this element. */
4295 if (idx >= 0 && idx + 1 >= XVECTOR (vector)->size)
4296 /* Handle reaching end of dense table. */
4297 idx = -1;
4298 if (idx >= 0)
4299 idx++;
4300 else
4301 rest = Fcdr_safe (rest);
4305 /* Prompt with that and read response. */
4306 message1 (menu);
4308 /* Make believe its not a keyboard macro in case the help char
4309 is pressed. Help characters are not recorded because menu prompting
4310 is not used on replay.
4312 orig_defn_macro = defining_kbd_macro ;
4313 defining_kbd_macro = 0 ;
4315 obj = read_char (commandflag, 0, 0, Qnil, 0);
4316 while (BUFFERP (obj));
4317 defining_kbd_macro = orig_defn_macro ;
4319 if (!INTEGERP (obj))
4320 return obj;
4321 else
4322 ch = XINT (obj);
4324 if (! EQ (obj, menu_prompt_more_char)
4325 && (!INTEGERP (menu_prompt_more_char)
4326 || ! EQ (obj, make_number (Ctl (XINT (menu_prompt_more_char))))))
4328 if ( defining_kbd_macro )
4329 store_kbd_macro_char(obj) ;
4330 return obj;
4332 /* Help char - go round again */
4336 /* Reading key sequences. */
4338 /* Follow KEY in the maps in CURRENT[0..NMAPS-1], placing its bindings
4339 in DEFS[0..NMAPS-1]. Set NEXT[i] to DEFS[i] if DEFS[i] is a
4340 keymap, or nil otherwise. Return the index of the first keymap in
4341 which KEY has any binding, or NMAPS if no map has a binding.
4343 If KEY is a meta ASCII character, treat it like meta-prefix-char
4344 followed by the corresponding non-meta character. Keymaps in
4345 CURRENT with non-prefix bindings for meta-prefix-char become nil in
4346 NEXT.
4348 If KEY has no bindings in any of the CURRENT maps, NEXT is left
4349 unmodified.
4351 NEXT may == CURRENT. */
4353 static int
4354 follow_key (key, nmaps, current, defs, next)
4355 Lisp_Object key;
4356 Lisp_Object *current, *defs, *next;
4357 int nmaps;
4359 int i, first_binding;
4361 /* If KEY is a meta ASCII character, treat it like meta-prefix-char
4362 followed by the corresponding non-meta character. */
4363 if (INTEGERP (key) && (XINT (key) & CHAR_META))
4365 for (i = 0; i < nmaps; i++)
4366 if (! NILP (current[i]))
4368 next[i] =
4369 get_keyelt (access_keymap (current[i], meta_prefix_char, 1, 0));
4371 /* Note that since we pass the resulting bindings through
4372 get_keymap_1, non-prefix bindings for meta-prefix-char
4373 disappear. */
4374 next[i] = get_keymap_1 (next[i], 0, 1);
4376 else
4377 next[i] = Qnil;
4379 current = next;
4380 XSETINT (key, XFASTINT (key) & ~CHAR_META);
4383 first_binding = nmaps;
4384 for (i = nmaps - 1; i >= 0; i--)
4386 if (! NILP (current[i]))
4388 defs[i] = get_keyelt (access_keymap (current[i], key, 1, 0));
4389 if (! NILP (defs[i]))
4390 first_binding = i;
4392 else
4393 defs[i] = Qnil;
4396 /* Given the set of bindings we've found, produce the next set of maps. */
4397 if (first_binding < nmaps)
4398 for (i = 0; i < nmaps; i++)
4399 next[i] = NILP (defs[i]) ? Qnil : get_keymap_1 (defs[i], 0, 1);
4401 return first_binding;
4404 /* Read a sequence of keys that ends with a non prefix character,
4405 storing it in KEYBUF, a buffer of size BUFSIZE.
4406 Prompt with PROMPT.
4407 Return the length of the key sequence stored.
4408 Return -1 if the user rejected a command menu.
4410 Echo starting immediately unless `prompt' is 0.
4412 Where a key sequence ends depends on the currently active keymaps.
4413 These include any minor mode keymaps active in the current buffer,
4414 the current buffer's local map, and the global map.
4416 If a key sequence has no other bindings, we check Vfunction_key_map
4417 to see if some trailing subsequence might be the beginning of a
4418 function key's sequence. If so, we try to read the whole function
4419 key, and substitute its symbolic name into the key sequence.
4421 We ignore unbound `down-' mouse clicks. We turn unbound `drag-' and
4422 `double-' events into similar click events, if that would make them
4423 bound. We try to turn `triple-' events first into `double-' events,
4424 then into clicks.
4426 If we get a mouse click in a mode line, vertical divider, or other
4427 non-text area, we treat the click as if it were prefixed by the
4428 symbol denoting that area - `mode-line', `vertical-line', or
4429 whatever.
4431 If the sequence starts with a mouse click, we read the key sequence
4432 with respect to the buffer clicked on, not the current buffer.
4434 If the user switches frames in the midst of a key sequence, we put
4435 off the switch-frame event until later; the next call to
4436 read_char will return it. */
4438 static int
4439 read_key_sequence (keybuf, bufsize, prompt, dont_downcase_last)
4440 Lisp_Object *keybuf;
4441 int bufsize;
4442 Lisp_Object prompt;
4443 int dont_downcase_last;
4445 int count = specpdl_ptr - specpdl;
4447 /* How many keys there are in the current key sequence. */
4448 int t;
4450 /* The length of the echo buffer when we started reading, and
4451 the length of this_command_keys when we started reading. */
4452 int echo_start;
4453 int keys_start;
4455 /* The number of keymaps we're scanning right now, and the number of
4456 keymaps we have allocated space for. */
4457 int nmaps;
4458 int nmaps_allocated = 0;
4460 /* defs[0..nmaps-1] are the definitions of KEYBUF[0..t-1] in
4461 the current keymaps. */
4462 Lisp_Object *defs;
4464 /* submaps[0..nmaps-1] are the prefix definitions of KEYBUF[0..t-1]
4465 in the current keymaps, or nil where it is not a prefix. */
4466 Lisp_Object *submaps;
4468 /* The local map to start out with at start of key sequence. */
4469 Lisp_Object orig_local_map;
4471 /* 1 if we have already considered switching to the local-map property
4472 of the place where a mouse click occurred. */
4473 int localized_local_map = 0;
4475 /* The index in defs[] of the first keymap that has a binding for
4476 this key sequence. In other words, the lowest i such that
4477 defs[i] is non-nil. */
4478 int first_binding;
4480 /* If t < mock_input, then KEYBUF[t] should be read as the next
4481 input key.
4483 We use this to recover after recognizing a function key. Once we
4484 realize that a suffix of the current key sequence is actually a
4485 function key's escape sequence, we replace the suffix with the
4486 function key's binding from Vfunction_key_map. Now keybuf
4487 contains a new and different key sequence, so the echo area,
4488 this_command_keys, and the submaps and defs arrays are wrong. In
4489 this situation, we set mock_input to t, set t to 0, and jump to
4490 restart_sequence; the loop will read keys from keybuf up until
4491 mock_input, thus rebuilding the state; and then it will resume
4492 reading characters from the keyboard. */
4493 int mock_input = 0;
4495 /* If the sequence is unbound in submaps[], then
4496 keybuf[fkey_start..fkey_end-1] is a prefix in Vfunction_key_map,
4497 and fkey_map is its binding.
4499 These might be > t, indicating that all function key scanning
4500 should hold off until t reaches them. We do this when we've just
4501 recognized a function key, to avoid searching for the function
4502 key's again in Vfunction_key_map. */
4503 int fkey_start = 0, fkey_end = 0;
4504 Lisp_Object fkey_map;
4506 /* Likewise, for key_translation_map. */
4507 int keytran_start = 0, keytran_end = 0;
4508 Lisp_Object keytran_map;
4510 /* If we receive a ``switch-frame'' event in the middle of a key sequence,
4511 we put it off for later. While we're reading, we keep the event here. */
4512 Lisp_Object delayed_switch_frame;
4514 /* See the comment below... */
4515 #if defined (GOBBLE_FIRST_EVENT)
4516 Lisp_Object first_event;
4517 #endif
4519 Lisp_Object original_uppercase;
4520 int original_uppercase_position = -1;
4522 /* Gets around Microsoft compiler limitations. */
4523 int dummyflag = 0;
4525 struct buffer *starting_buffer;
4527 /* Nonzero if we seem to have got the beginning of a binding
4528 in function_key_map. */
4529 int function_key_possible = 0;
4530 int key_translation_possible = 0;
4532 int junk;
4534 last_nonmenu_event = Qnil;
4536 delayed_switch_frame = Qnil;
4537 fkey_map = Vfunction_key_map;
4538 keytran_map = Vkey_translation_map;
4540 /* If there is no function-key-map, turn off function key scanning. */
4541 if (NILP (Fkeymapp (Vfunction_key_map)))
4542 fkey_start = fkey_end = bufsize + 1;
4544 /* If there is no key-translation-map, turn off scanning. */
4545 if (NILP (Fkeymapp (Vkey_translation_map)))
4546 keytran_start = keytran_end = bufsize + 1;
4548 if (INTERACTIVE)
4550 if (!NILP (prompt))
4551 echo_prompt (XSTRING (prompt)->data);
4552 else if (cursor_in_echo_area && echo_keystrokes)
4553 /* This doesn't put in a dash if the echo buffer is empty, so
4554 you don't always see a dash hanging out in the minibuffer. */
4555 echo_dash ();
4558 /* Record the initial state of the echo area and this_command_keys;
4559 we will need to restore them if we replay a key sequence. */
4560 if (INTERACTIVE)
4561 echo_start = echo_length ();
4562 keys_start = this_command_key_count;
4564 #if defined (GOBBLE_FIRST_EVENT)
4565 /* This doesn't quite work, because some of the things that read_char
4566 does cannot safely be bypassed. It seems too risky to try to make
4567 this work right. */
4569 /* Read the first char of the sequence specially, before setting
4570 up any keymaps, in case a filter runs and switches buffers on us. */
4571 first_event = read_char (NILP (prompt), 0, submaps, last_nonmenu_event,
4572 &junk);
4573 #endif /* GOBBLE_FIRST_EVENT */
4575 orig_local_map = get_local_map (PT, current_buffer);
4577 /* We jump here when the key sequence has been thoroughly changed, and
4578 we need to rescan it starting from the beginning. When we jump here,
4579 keybuf[0..mock_input] holds the sequence we should reread. */
4580 replay_sequence:
4582 starting_buffer = current_buffer;
4583 function_key_possible = 0;
4584 key_translation_possible = 0;
4586 /* Build our list of keymaps.
4587 If we recognize a function key and replace its escape sequence in
4588 keybuf with its symbol, or if the sequence starts with a mouse
4589 click and we need to switch buffers, we jump back here to rebuild
4590 the initial keymaps from the current buffer. */
4592 Lisp_Object *maps;
4594 if (!NILP (Voverriding_local_map))
4596 nmaps = 2;
4597 if (nmaps > nmaps_allocated)
4599 submaps = (Lisp_Object *) alloca (nmaps * sizeof (submaps[0]));
4600 defs = (Lisp_Object *) alloca (nmaps * sizeof (defs[0]));
4601 nmaps_allocated = nmaps;
4603 submaps[0] = Voverriding_local_map;
4605 else
4607 nmaps = current_minor_maps (0, &maps) + 2;
4608 if (nmaps > nmaps_allocated)
4610 submaps = (Lisp_Object *) alloca (nmaps * sizeof (submaps[0]));
4611 defs = (Lisp_Object *) alloca (nmaps * sizeof (defs[0]));
4612 nmaps_allocated = nmaps;
4614 bcopy (maps, submaps, (nmaps - 2) * sizeof (submaps[0]));
4615 #ifdef USE_TEXT_PROPERTIES
4616 submaps[nmaps-2] = orig_local_map;
4617 #else
4618 submaps[nmaps-2] = current_buffer->keymap;
4619 #endif
4621 submaps[nmaps-1] = current_global_map;
4624 /* Find an accurate initial value for first_binding. */
4625 for (first_binding = 0; first_binding < nmaps; first_binding++)
4626 if (! NILP (submaps[first_binding]))
4627 break;
4629 /* Start from the beginning in keybuf. */
4630 t = 0;
4632 /* These are no-ops the first time through, but if we restart, they
4633 revert the echo area and this_command_keys to their original state. */
4634 this_command_key_count = keys_start;
4635 if (INTERACTIVE && t < mock_input)
4636 echo_truncate (echo_start);
4638 /* If the best binding for the current key sequence is a keymap, or
4639 we may be looking at a function key's escape sequence, keep on
4640 reading. */
4641 while ((first_binding < nmaps && ! NILP (submaps[first_binding]))
4642 || (first_binding >= nmaps
4643 && fkey_start < t
4644 /* mock input is never part of a function key's sequence. */
4645 && mock_input <= fkey_start)
4646 || (first_binding >= nmaps
4647 && keytran_start < t && key_translation_possible)
4648 /* Don't return in the middle of a possible function key sequence,
4649 if the only bindings we found were via case conversion.
4650 Thus, if ESC O a has a function-key-map translation
4651 and ESC o has a binding, don't return after ESC O,
4652 so that we can translate ESC O plus the next character. */
4655 Lisp_Object key;
4656 int used_mouse_menu = 0;
4658 /* Where the last real key started. If we need to throw away a
4659 key that has expanded into more than one element of keybuf
4660 (say, a mouse click on the mode line which is being treated
4661 as [mode-line (mouse-...)], then we backtrack to this point
4662 of keybuf. */
4663 int last_real_key_start;
4665 /* These variables are analogous to echo_start and keys_start;
4666 while those allow us to restart the entire key sequence,
4667 echo_local_start and keys_local_start allow us to throw away
4668 just one key. */
4669 int echo_local_start, keys_local_start, local_first_binding;
4671 if (t >= bufsize)
4672 error ("key sequence too long");
4674 if (INTERACTIVE)
4675 echo_local_start = echo_length ();
4676 keys_local_start = this_command_key_count;
4677 local_first_binding = first_binding;
4679 replay_key:
4680 /* These are no-ops, unless we throw away a keystroke below and
4681 jumped back up to replay_key; in that case, these restore the
4682 variables to their original state, allowing us to replay the
4683 loop. */
4684 if (INTERACTIVE && t < mock_input)
4685 echo_truncate (echo_local_start);
4686 this_command_key_count = keys_local_start;
4687 first_binding = local_first_binding;
4689 /* By default, assume each event is "real". */
4690 last_real_key_start = t;
4692 /* Does mock_input indicate that we are re-reading a key sequence? */
4693 if (t < mock_input)
4695 key = keybuf[t];
4696 add_command_key (key);
4697 if (echo_keystrokes)
4698 echo_char (key);
4701 /* If not, we should actually read a character. */
4702 else
4704 struct buffer *buf = current_buffer;
4706 key = read_char (NILP (prompt), nmaps, submaps, last_nonmenu_event,
4707 &used_mouse_menu);
4709 /* read_char returns t when it shows a menu and the user rejects it.
4710 Just return -1. */
4711 if (EQ (key, Qt))
4712 return -1;
4714 /* read_char returns -1 at the end of a macro.
4715 Emacs 18 handles this by returning immediately with a
4716 zero, so that's what we'll do. */
4717 if (INTEGERP (key) && XINT (key) == -1)
4719 t = 0;
4720 /* The Microsoft C compiler can't handle the goto that
4721 would go here. */
4722 dummyflag = 1;
4723 break;
4726 /* If the current buffer has been changed from under us, the
4727 keymap may have changed, so replay the sequence. */
4728 if (BUFFERP (key))
4730 mock_input = t;
4731 goto replay_sequence;
4734 /* If we have a quit that was typed in another frame, and
4735 quit_throw_to_read_char switched buffers,
4736 replay to get the right keymap. */
4737 if (XINT (key) == quit_char && current_buffer != starting_buffer)
4739 keybuf[t++] = key;
4740 mock_input = t;
4741 Vquit_flag = Qnil;
4742 goto replay_sequence;
4745 Vquit_flag = Qnil;
4748 /* Clicks in non-text areas get prefixed by the symbol
4749 in their CHAR-ADDRESS field. For example, a click on
4750 the mode line is prefixed by the symbol `mode-line'.
4752 Furthermore, key sequences beginning with mouse clicks
4753 are read using the keymaps of the buffer clicked on, not
4754 the current buffer. So we may have to switch the buffer
4755 here.
4757 When we turn one event into two events, we must make sure
4758 that neither of the two looks like the original--so that,
4759 if we replay the events, they won't be expanded again.
4760 If not for this, such reexpansion could happen either here
4761 or when user programs play with this-command-keys. */
4762 if (EVENT_HAS_PARAMETERS (key))
4764 Lisp_Object kind;
4766 kind = EVENT_HEAD_KIND (EVENT_HEAD (key));
4767 if (EQ (kind, Qmouse_click))
4769 Lisp_Object window, posn;
4771 window = POSN_WINDOW (EVENT_START (key));
4772 posn = POSN_BUFFER_POSN (EVENT_START (key));
4773 if (CONSP (posn))
4775 /* We're looking at the second event of a
4776 sequence which we expanded before. Set
4777 last_real_key_start appropriately. */
4778 if (t > 0)
4779 last_real_key_start = t - 1;
4782 /* Key sequences beginning with mouse clicks are
4783 read using the keymaps in the buffer clicked on,
4784 not the current buffer. If we're at the
4785 beginning of a key sequence, switch buffers. */
4786 if (last_real_key_start == 0
4787 && WINDOWP (window)
4788 && BUFFERP (XWINDOW (window)->buffer)
4789 && XBUFFER (XWINDOW (window)->buffer) != current_buffer)
4791 keybuf[t] = key;
4792 mock_input = t + 1;
4794 /* Arrange to go back to the original buffer once we're
4795 done reading the key sequence. Note that we can't
4796 use save_excursion_{save,restore} here, because they
4797 save point as well as the current buffer; we don't
4798 want to save point, because redisplay may change it,
4799 to accommodate a Fset_window_start or something. We
4800 don't want to do this at the top of the function,
4801 because we may get input from a subprocess which
4802 wants to change the selected window and stuff (say,
4803 emacsclient). */
4804 record_unwind_protect (Fset_buffer, Fcurrent_buffer ());
4806 set_buffer_internal (XBUFFER (XWINDOW (window)->buffer));
4807 orig_local_map = get_local_map (PT, current_buffer);
4808 goto replay_sequence;
4810 /* For a mouse click, get the local text-property keymap
4811 of the place clicked on, rather than point. */
4812 if (last_real_key_start == 0 && CONSP (XCONS (key)->cdr)
4813 && ! localized_local_map)
4815 Lisp_Object map_here, start, pos;
4817 localized_local_map = 1;
4818 start = EVENT_START (key);
4819 if (CONSP (start) && CONSP (XCONS (start)->cdr))
4821 pos = POSN_BUFFER_POSN (start);
4822 if (INTEGERP (pos))
4824 map_here = get_local_map (XINT (pos), current_buffer);
4825 if (!EQ (map_here, orig_local_map))
4827 orig_local_map = map_here;
4828 keybuf[t] = key;
4829 mock_input = t + 1;
4831 goto replay_sequence;
4837 /* Expand mode-line and scroll-bar events into two events:
4838 use posn as a fake prefix key. */
4839 if (SYMBOLP (posn))
4841 if (t + 1 >= bufsize)
4842 error ("key sequence too long");
4843 keybuf[t] = posn;
4844 keybuf[t+1] = key;
4845 mock_input = t + 2;
4847 /* Zap the position in key, so we know that we've
4848 expanded it, and don't try to do so again. */
4849 POSN_BUFFER_POSN (EVENT_START (key))
4850 = Fcons (posn, Qnil);
4851 goto replay_key;
4854 else if (EQ (kind, Qswitch_frame))
4856 /* If we're at the beginning of a key sequence, go
4857 ahead and return this event. If we're in the
4858 midst of a key sequence, delay it until the end. */
4859 if (t > 0)
4861 delayed_switch_frame = key;
4862 goto replay_key;
4865 else if (CONSP (XCONS (key)->cdr)
4866 && CONSP (EVENT_START (key))
4867 && CONSP (XCONS (EVENT_START (key))->cdr))
4869 Lisp_Object posn;
4871 posn = POSN_BUFFER_POSN (EVENT_START (key));
4872 /* Handle menu-bar events:
4873 insert the dummy prefix event `menu-bar'. */
4874 if (EQ (posn, Qmenu_bar))
4876 if (t + 1 >= bufsize)
4877 error ("key sequence too long");
4878 /* Run the Lucid hook. */
4879 if (!NILP (Vrun_hooks))
4880 call1 (Vrun_hooks, Qactivate_menubar_hook);
4881 /* If it has changed current-menubar from previous value,
4882 really recompute the menubar from the value. */
4883 if (! NILP (Vlucid_menu_bar_dirty_flag))
4884 call0 (Qrecompute_lucid_menubar);
4885 keybuf[t] = posn;
4886 keybuf[t+1] = key;
4888 /* Zap the position in key, so we know that we've
4889 expanded it, and don't try to do so again. */
4890 POSN_BUFFER_POSN (EVENT_START (key))
4891 = Fcons (posn, Qnil);
4893 mock_input = t + 2;
4894 goto replay_sequence;
4896 else if (CONSP (posn))
4898 /* We're looking at the second event of a
4899 sequence which we expanded before. Set
4900 last_real_key_start appropriately. */
4901 if (last_real_key_start == t && t > 0)
4902 last_real_key_start = t - 1;
4907 /* We have finally decided that KEY is something we might want
4908 to look up. */
4909 first_binding = (follow_key (key,
4910 nmaps - first_binding,
4911 submaps + first_binding,
4912 defs + first_binding,
4913 submaps + first_binding)
4914 + first_binding);
4916 /* If KEY wasn't bound, we'll try some fallbacks. */
4917 if (first_binding >= nmaps)
4919 Lisp_Object head;
4921 head = EVENT_HEAD (key);
4922 if (EQ (head, Vhelp_char))
4924 read_key_sequence_cmd = Vprefix_help_command;
4925 keybuf[t++] = key;
4926 last_nonmenu_event = key;
4927 /* The Microsoft C compiler can't handle the goto that
4928 would go here. */
4929 dummyflag = 1;
4930 break;
4933 if (SYMBOLP (head))
4935 Lisp_Object breakdown;
4936 int modifiers;
4938 breakdown = parse_modifiers (head);
4939 modifiers = XINT (XCONS (XCONS (breakdown)->cdr)->car);
4940 /* Attempt to reduce an unbound mouse event to a simpler
4941 event that is bound:
4942 Drags reduce to clicks.
4943 Double-clicks reduce to clicks.
4944 Triple-clicks reduce to double-clicks, then to clicks.
4945 Down-clicks are eliminated.
4946 Double-downs reduce to downs, then are eliminated.
4947 Triple-downs reduce to double-downs, then to downs,
4948 then are eliminated. */
4949 if (modifiers & (down_modifier | drag_modifier
4950 | double_modifier | triple_modifier))
4952 while (modifiers & (down_modifier | drag_modifier
4953 | double_modifier | triple_modifier))
4955 Lisp_Object new_head, new_click;
4956 if (modifiers & triple_modifier)
4957 modifiers ^= (double_modifier | triple_modifier);
4958 else if (modifiers & double_modifier)
4959 modifiers &= ~double_modifier;
4960 else if (modifiers & drag_modifier)
4961 modifiers &= ~drag_modifier;
4962 else
4964 /* Dispose of this `down' event by simply jumping
4965 back to replay_key, to get another event.
4967 Note that if this event came from mock input,
4968 then just jumping back to replay_key will just
4969 hand it to us again. So we have to wipe out any
4970 mock input.
4972 We could delete keybuf[t] and shift everything
4973 after that to the left by one spot, but we'd also
4974 have to fix up any variable that points into
4975 keybuf, and shifting isn't really necessary
4976 anyway.
4978 Adding prefixes for non-textual mouse clicks
4979 creates two characters of mock input, and both
4980 must be thrown away. If we're only looking at
4981 the prefix now, we can just jump back to
4982 replay_key. On the other hand, if we've already
4983 processed the prefix, and now the actual click
4984 itself is giving us trouble, then we've lost the
4985 state of the keymaps we want to backtrack to, and
4986 we need to replay the whole sequence to rebuild
4989 Beyond that, only function key expansion could
4990 create more than two keys, but that should never
4991 generate mouse events, so it's okay to zero
4992 mock_input in that case too.
4994 Isn't this just the most wonderful code ever? */
4995 if (t == last_real_key_start)
4997 mock_input = 0;
4998 goto replay_key;
5000 else
5002 mock_input = last_real_key_start;
5003 goto replay_sequence;
5007 new_head
5008 = apply_modifiers (modifiers, XCONS (breakdown)->car);
5009 new_click
5010 = Fcons (new_head, Fcons (EVENT_START (key), Qnil));
5012 /* Look for a binding for this new key. follow_key
5013 promises that it didn't munge submaps the
5014 last time we called it, since key was unbound. */
5015 first_binding
5016 = (follow_key (new_click,
5017 nmaps - local_first_binding,
5018 submaps + local_first_binding,
5019 defs + local_first_binding,
5020 submaps + local_first_binding)
5021 + local_first_binding);
5023 /* If that click is bound, go for it. */
5024 if (first_binding < nmaps)
5026 key = new_click;
5027 break;
5029 /* Otherwise, we'll leave key set to the drag event. */
5035 keybuf[t++] = key;
5036 /* Normally, last_nonmenu_event gets the previous key we read.
5037 But when a mouse popup menu is being used,
5038 we don't update last_nonmenu_event; it continues to hold the mouse
5039 event that preceded the first level of menu. */
5040 if (!used_mouse_menu)
5041 last_nonmenu_event = key;
5043 /* If the sequence is unbound, see if we can hang a function key
5044 off the end of it. We only want to scan real keyboard input
5045 for function key sequences, so if mock_input says that we're
5046 re-reading old events, don't examine it. */
5047 if (first_binding >= nmaps
5048 && t >= mock_input)
5050 Lisp_Object fkey_next;
5052 /* Continue scan from fkey_end until we find a bound suffix.
5053 If we fail, increment fkey_start
5054 and start fkey_end from there. */
5055 while (fkey_end < t)
5057 Lisp_Object key;
5059 key = keybuf[fkey_end++];
5060 /* Look up meta-characters by prefixing them
5061 with meta_prefix_char. I hate this. */
5062 if (INTEGERP (key) && XINT (key) & meta_modifier)
5064 fkey_next
5065 = get_keymap_1
5066 (get_keyelt
5067 (access_keymap (fkey_map, meta_prefix_char, 1, 0)),
5068 0, 1);
5069 XSETFASTINT (key, XFASTINT (key) & ~meta_modifier);
5071 else
5072 fkey_next = fkey_map;
5074 fkey_next
5075 = get_keyelt (access_keymap (fkey_next, key, 1, 0));
5077 #if 0 /* I didn't turn this on, because it might cause trouble
5078 for the mapping of return into C-m and tab into C-i. */
5079 /* Optionally don't map function keys into other things.
5080 This enables the user to redefine kp- keys easily. */
5081 if (SYMBOLP (key) && !NILP (Vinhibit_function_key_mapping))
5082 fkey_next = Qnil;
5083 #endif
5085 /* If the function key map gives a function, not an
5086 array, then call the function with no args and use
5087 its value instead. */
5088 if (SYMBOLP (fkey_next) && ! NILP (Ffboundp (fkey_next))
5089 && fkey_end == t)
5091 struct gcpro gcpro1, gcpro2, gcpro3;
5092 Lisp_Object tem;
5093 tem = fkey_next;
5095 GCPRO3 (fkey_map, keytran_map, delayed_switch_frame);
5096 fkey_next = call1 (fkey_next, prompt);
5097 UNGCPRO;
5098 /* If the function returned something invalid,
5099 barf--don't ignore it.
5100 (To ignore it safely, we would need to gcpro a bunch of
5101 other variables.) */
5102 if (! (VECTORP (fkey_next) || STRINGP (fkey_next)))
5103 error ("Function in function-key-map returns invalid key sequence");
5106 function_key_possible = ! NILP (fkey_next);
5108 /* If keybuf[fkey_start..fkey_end] is bound in the
5109 function key map and it's a suffix of the current
5110 sequence (i.e. fkey_end == t), replace it with
5111 the binding and restart with fkey_start at the end. */
5112 if ((VECTORP (fkey_next) || STRINGP (fkey_next))
5113 && fkey_end == t)
5115 int len = XFASTINT (Flength (fkey_next));
5117 t = fkey_start + len;
5118 if (t >= bufsize)
5119 error ("key sequence too long");
5121 if (VECTORP (fkey_next))
5122 bcopy (XVECTOR (fkey_next)->contents,
5123 keybuf + fkey_start,
5124 (t - fkey_start) * sizeof (keybuf[0]));
5125 else if (STRINGP (fkey_next))
5127 int i;
5129 for (i = 0; i < len; i++)
5130 XSETFASTINT (keybuf[fkey_start + i],
5131 XSTRING (fkey_next)->data[i]);
5134 mock_input = t;
5135 fkey_start = fkey_end = t;
5136 fkey_map = Vfunction_key_map;
5138 /* Do pass the results through key-translation-map. */
5139 keytran_start = keytran_end = 0;
5140 keytran_map = Vkey_translation_map;
5142 goto replay_sequence;
5145 fkey_map = get_keymap_1 (fkey_next, 0, 1);
5147 /* If we no longer have a bound suffix, try a new positions for
5148 fkey_start. */
5149 if (NILP (fkey_map))
5151 fkey_end = ++fkey_start;
5152 fkey_map = Vfunction_key_map;
5153 function_key_possible = 0;
5158 /* Look for this sequence in key-translation-map. */
5160 Lisp_Object keytran_next;
5162 /* Scan from keytran_end until we find a bound suffix. */
5163 while (keytran_end < t)
5165 Lisp_Object key;
5167 key = keybuf[keytran_end++];
5168 /* Look up meta-characters by prefixing them
5169 with meta_prefix_char. I hate this. */
5170 if (INTEGERP (key) && XINT (key) & meta_modifier)
5172 keytran_next
5173 = get_keymap_1
5174 (get_keyelt
5175 (access_keymap (keytran_map, meta_prefix_char, 1, 0)),
5176 0, 1);
5177 XSETFASTINT (key, XFASTINT (key) & ~meta_modifier);
5179 else
5180 keytran_next = keytran_map;
5182 keytran_next
5183 = get_keyelt (access_keymap (keytran_next, key, 1, 0));
5185 /* If the key translation map gives a function, not an
5186 array, then call the function with no args and use
5187 its value instead. */
5188 if (SYMBOLP (keytran_next) && ! NILP (Ffboundp (keytran_next))
5189 && keytran_end == t)
5191 struct gcpro gcpro1, gcpro2, gcpro3;
5192 Lisp_Object tem;
5193 tem = keytran_next;
5195 GCPRO3 (fkey_map, keytran_map, delayed_switch_frame);
5196 keytran_next = call1 (keytran_next, prompt);
5197 UNGCPRO;
5198 /* If the function returned something invalid,
5199 barf--don't ignore it.
5200 (To ignore it safely, we would need to gcpro a bunch of
5201 other variables.) */
5202 if (! (VECTORP (keytran_next) || STRINGP (keytran_next)))
5203 error ("Function in key-translation-map returns invalid key sequence");
5206 key_translation_possible = ! NILP (keytran_next);
5208 /* If keybuf[keytran_start..keytran_end] is bound in the
5209 key translation map and it's a suffix of the current
5210 sequence (i.e. keytran_end == t), replace it with
5211 the binding and restart with keytran_start at the end. */
5212 if ((VECTORP (keytran_next) || STRINGP (keytran_next))
5213 && keytran_end == t)
5215 int len = XFASTINT (Flength (keytran_next));
5217 t = keytran_start + len;
5218 if (t >= bufsize)
5219 error ("key sequence too long");
5221 if (VECTORP (keytran_next))
5222 bcopy (XVECTOR (keytran_next)->contents,
5223 keybuf + keytran_start,
5224 (t - keytran_start) * sizeof (keybuf[0]));
5225 else if (STRINGP (keytran_next))
5227 int i;
5229 for (i = 0; i < len; i++)
5230 XSETFASTINT (keybuf[keytran_start + i],
5231 XSTRING (keytran_next)->data[i]);
5234 mock_input = t;
5235 keytran_start = keytran_end = t;
5236 keytran_map = Vkey_translation_map;
5238 /* Don't pass the results of key-translation-map
5239 through function-key-map. */
5240 fkey_start = fkey_end = t;
5241 fkey_map = Vkey_translation_map;
5243 goto replay_sequence;
5246 keytran_map = get_keymap_1 (keytran_next, 0, 1);
5248 /* If we no longer have a bound suffix, try a new positions for
5249 keytran_start. */
5250 if (NILP (keytran_map))
5252 keytran_end = ++keytran_start;
5253 keytran_map = Vkey_translation_map;
5254 key_translation_possible = 0;
5259 /* If KEY is not defined in any of the keymaps,
5260 and cannot be part of a function key or translation,
5261 and is an upper case letter
5262 use the corresponding lower-case letter instead. */
5263 if (first_binding == nmaps && ! function_key_possible
5264 && ! key_translation_possible
5265 && INTEGERP (key)
5266 && ((((XINT (key) & 0x3ffff)
5267 < XSTRING (current_buffer->downcase_table)->size)
5268 && UPPERCASEP (XINT (key) & 0x3ffff))
5269 || (XINT (key) & shift_modifier)))
5271 original_uppercase = key;
5272 original_uppercase_position = t - 1;
5274 if (XINT (key) & shift_modifier)
5275 XSETINT (key, XINT (key) & ~shift_modifier);
5276 else
5277 XSETINT (key, (DOWNCASE (XINT (key) & 0x3ffff)
5278 | (XINT (key) & ~0x3ffff)));
5280 keybuf[t - 1] = key;
5281 mock_input = t;
5282 goto replay_sequence;
5284 /* If KEY is not defined in any of the keymaps,
5285 and cannot be part of a function key or translation,
5286 and is a shifted function key,
5287 use the corresponding unshifted function key instead. */
5288 if (first_binding == nmaps && ! function_key_possible
5289 && ! key_translation_possible
5290 && SYMBOLP (key))
5292 Lisp_Object breakdown;
5293 int modifiers;
5295 original_uppercase = key;
5296 original_uppercase_position = t - 1;
5298 breakdown = parse_modifiers (key);
5299 modifiers = XINT (XCONS (XCONS (breakdown)->cdr)->car);
5300 if (modifiers & shift_modifier)
5302 modifiers &= ~shift_modifier;
5303 key = apply_modifiers (make_number (modifiers),
5304 XCONS (breakdown)->car);
5306 keybuf[t - 1] = key;
5307 mock_input = t;
5308 goto replay_sequence;
5313 if (!dummyflag)
5314 read_key_sequence_cmd = (first_binding < nmaps
5315 ? defs[first_binding]
5316 : Qnil);
5318 unread_switch_frame = delayed_switch_frame;
5319 unbind_to (count, Qnil);
5321 if (dont_downcase_last && t - 1 == original_uppercase_position)
5322 keybuf[t - 1] = original_uppercase;
5324 /* Occasionally we fabricate events, perhaps by expanding something
5325 according to function-key-map, or by adding a prefix symbol to a
5326 mouse click in the scroll bar or modeline. In this cases, return
5327 the entire generated key sequence, even if we hit an unbound
5328 prefix or a definition before the end. This means that you will
5329 be able to push back the event properly, and also means that
5330 read-key-sequence will always return a logical unit.
5332 Better ideas? */
5333 for (; t < mock_input; t++)
5335 if (echo_keystrokes)
5336 echo_char (keybuf[t]);
5337 add_command_key (keybuf[t]);
5340 return t;
5343 #if 0 /* This doc string is too long for some compilers.
5344 This commented-out definition serves for DOC. */
5345 DEFUN ("read-key-sequence", Fread_key_sequence, Sread_key_sequence, 1, 2, 0,
5346 "Read a sequence of keystrokes and return as a string or vector.\n\
5347 The sequence is sufficient to specify a non-prefix command in the\n\
5348 current local and global maps.\n\
5350 First arg PROMPT is a prompt string. If nil, do not prompt specially.\n\
5351 Second (optional) arg CONTINUE-ECHO, if non-nil, means this key echos\n\
5352 as a continuation of the previous key.\n\
5354 The third (optional) arg DONT-DOWNCASE-LAST, if non-nil, means do not\n\
5355 convert the last event to lower case. (Normally any upper case event\n\
5356 is converted to lower case if the original event is undefined and the lower\n\
5357 case equivalent is defined.) A non-nil value is appropriate for reading\n\
5358 a key sequence to be defined.\n\
5360 A C-g typed while in this function is treated like any other character,\n\
5361 and `quit-flag' is not set.\n\
5363 If the key sequence starts with a mouse click, then the sequence is read\n\
5364 using the keymaps of the buffer of the window clicked in, not the buffer\n\
5365 of the selected window as normal.\n\
5366 ""\n\
5367 `read-key-sequence' drops unbound button-down events, since you normally\n\
5368 only care about the click or drag events which follow them. If a drag\n\
5369 or multi-click event is unbound, but the corresponding click event would\n\
5370 be bound, `read-key-sequence' turns the event into a click event at the\n\
5371 drag's starting position. This means that you don't have to distinguish\n\
5372 between click and drag, double, or triple events unless you want to.\n\
5374 `read-key-sequence' prefixes mouse events on mode lines, the vertical\n\
5375 lines separating windows, and scroll bars with imaginary keys\n\
5376 `mode-line', `vertical-line', and `vertical-scroll-bar'.\n\
5378 If the user switches frames in the middle of a key sequence, the\n\
5379 frame-switch event is put off until after the current key sequence.\n\
5381 `read-key-sequence' checks `function-key-map' for function key\n\
5382 sequences, where they wouldn't conflict with ordinary bindings. See\n\
5383 `function-key-map' for more details.")
5384 (prompt, continue_echo)
5385 #endif
5387 DEFUN ("read-key-sequence", Fread_key_sequence, Sread_key_sequence, 1, 3, 0,
5389 (prompt, continue_echo, dont_downcase_last)
5390 Lisp_Object prompt, continue_echo, dont_downcase_last;
5392 Lisp_Object keybuf[30];
5393 register int i;
5394 struct gcpro gcpro1, gcpro2;
5396 if (!NILP (prompt))
5397 CHECK_STRING (prompt, 0);
5398 QUIT;
5400 bzero (keybuf, sizeof keybuf);
5401 GCPRO1 (keybuf[0]);
5402 gcpro1.nvars = (sizeof keybuf/sizeof (keybuf[0]));
5404 if (NILP (continue_echo))
5405 this_command_key_count = 0;
5407 i = read_key_sequence (keybuf, (sizeof keybuf/sizeof (keybuf[0])),
5408 prompt, ! NILP (dont_downcase_last));
5410 if (i == -1)
5412 Vquit_flag = Qt;
5413 QUIT;
5415 UNGCPRO;
5416 return make_event_array (i, keybuf);
5419 DEFUN ("command-execute", Fcommand_execute, Scommand_execute, 1, 2, 0,
5420 "Execute CMD as an editor command.\n\
5421 CMD must be a symbol that satisfies the `commandp' predicate.\n\
5422 Optional second arg RECORD-FLAG non-nil\n\
5423 means unconditionally put this command in `command-history'.\n\
5424 Otherwise, that is done only if an arg is read using the minibuffer.")
5425 (cmd, record)
5426 Lisp_Object cmd, record;
5428 register Lisp_Object final;
5429 register Lisp_Object tem;
5430 Lisp_Object prefixarg;
5431 struct backtrace backtrace;
5432 extern int debug_on_next_call;
5434 prefixarg = current_perdisplay->Vprefix_arg;
5435 current_perdisplay->Vprefix_arg = Qnil;
5436 current_perdisplay->Vcurrent_prefix_arg = prefixarg;
5437 debug_on_next_call = 0;
5439 if (SYMBOLP (cmd))
5441 tem = Fget (cmd, Qdisabled);
5442 if (!NILP (tem) && !NILP (Vrun_hooks))
5443 return call1 (Vrun_hooks, Qdisabled_command_hook);
5446 while (1)
5448 final = Findirect_function (cmd);
5450 if (CONSP (final) && (tem = Fcar (final), EQ (tem, Qautoload)))
5451 do_autoload (final, cmd);
5452 else
5453 break;
5456 if (STRINGP (final) || VECTORP (final))
5458 /* If requested, place the macro in the command history. For
5459 other sorts of commands, call-interactively takes care of
5460 this. */
5461 if (!NILP (record))
5462 Vcommand_history
5463 = Fcons (Fcons (Qexecute_kbd_macro,
5464 Fcons (final, Fcons (prefixarg, Qnil))),
5465 Vcommand_history);
5467 return Fexecute_kbd_macro (final, prefixarg);
5469 if (CONSP (final) || SUBRP (final) || COMPILEDP (final))
5471 backtrace.next = backtrace_list;
5472 backtrace_list = &backtrace;
5473 backtrace.function = &Qcall_interactively;
5474 backtrace.args = &cmd;
5475 backtrace.nargs = 1;
5476 backtrace.evalargs = 0;
5478 tem = Fcall_interactively (cmd, record);
5480 backtrace_list = backtrace.next;
5481 return tem;
5483 return Qnil;
5486 DEFUN ("execute-extended-command", Fexecute_extended_command, Sexecute_extended_command,
5487 1, 1, "P",
5488 "Read function name, then read its arguments and call it.")
5489 (prefixarg)
5490 Lisp_Object prefixarg;
5492 Lisp_Object function;
5493 char buf[40];
5494 Lisp_Object saved_keys;
5495 struct gcpro gcpro1;
5497 saved_keys = Fvector (this_command_key_count,
5498 XVECTOR (this_command_keys)->contents);
5499 buf[0] = 0;
5500 GCPRO1 (saved_keys);
5502 if (EQ (prefixarg, Qminus))
5503 strcpy (buf, "- ");
5504 else if (CONSP (prefixarg) && XINT (XCONS (prefixarg)->car) == 4)
5505 strcpy (buf, "C-u ");
5506 else if (CONSP (prefixarg) && INTEGERP (XCONS (prefixarg)->car))
5507 sprintf (buf, "%d ", XINT (XCONS (prefixarg)->car));
5508 else if (INTEGERP (prefixarg))
5509 sprintf (buf, "%d ", XINT (prefixarg));
5511 /* This isn't strictly correct if execute-extended-command
5512 is bound to anything else. Perhaps it should use
5513 this_command_keys? */
5514 strcat (buf, "M-x ");
5516 /* Prompt with buf, and then read a string, completing from and
5517 restricting to the set of all defined commands. Don't provide
5518 any initial input. Save the command read on the extended-command
5519 history list. */
5520 function = Fcompleting_read (build_string (buf),
5521 Vobarray, Qcommandp,
5522 Qt, Qnil, Qextended_command_history);
5524 /* Set this_command_keys to the concatenation of saved_keys and
5525 function, followed by a RET. */
5527 struct Lisp_String *str;
5528 Lisp_Object *keys;
5529 int i;
5530 Lisp_Object tem;
5532 this_command_key_count = 0;
5534 keys = XVECTOR (saved_keys)->contents;
5535 for (i = 0; i < XVECTOR (saved_keys)->size; i++)
5536 add_command_key (keys[i]);
5538 str = XSTRING (function);
5539 for (i = 0; i < str->size; i++)
5541 XSETFASTINT (tem, str->data[i]);
5542 add_command_key (tem);
5545 XSETFASTINT (tem, '\015');
5546 add_command_key (tem);
5549 UNGCPRO;
5551 function = Fintern (function, Qnil);
5552 current_perdisplay->Vprefix_arg = prefixarg;
5553 this_command = function;
5555 return Fcommand_execute (function, Qt);
5559 detect_input_pending ()
5561 if (!input_pending)
5562 get_input_pending (&input_pending);
5564 return input_pending;
5567 /* This is called in some cases before a possible quit.
5568 It cases the next call to detect_input_pending to recompute input_pending.
5569 So calling this function unnecessarily can't do any harm. */
5570 clear_input_pending ()
5572 input_pending = 0;
5575 DEFUN ("input-pending-p", Finput_pending_p, Sinput_pending_p, 0, 0, 0,
5576 "T if command input is currently available with no waiting.\n\
5577 Actually, the value is nil only if we can be sure that no input is available.")
5580 if (!NILP (Vunread_command_events) || unread_command_char != -1)
5581 return (Qt);
5583 return detect_input_pending () ? Qt : Qnil;
5586 DEFUN ("recent-keys", Frecent_keys, Srecent_keys, 0, 0, 0,
5587 "Return vector of last 100 events, not counting those from keyboard macros.")
5590 Lisp_Object *keys = XVECTOR (recent_keys)->contents;
5591 Lisp_Object val;
5593 if (total_keys < NUM_RECENT_KEYS)
5594 return Fvector (total_keys, keys);
5595 else
5597 val = Fvector (NUM_RECENT_KEYS, keys);
5598 bcopy (keys + recent_keys_index,
5599 XVECTOR (val)->contents,
5600 (NUM_RECENT_KEYS - recent_keys_index) * sizeof (Lisp_Object));
5601 bcopy (keys,
5602 XVECTOR (val)->contents + NUM_RECENT_KEYS - recent_keys_index,
5603 recent_keys_index * sizeof (Lisp_Object));
5604 return val;
5608 DEFUN ("this-command-keys", Fthis_command_keys, Sthis_command_keys, 0, 0, 0,
5609 "Return the key sequence that invoked this command.\n\
5610 The value is a string or a vector.")
5613 return make_event_array (this_command_key_count,
5614 XVECTOR (this_command_keys)->contents);
5617 DEFUN ("recursion-depth", Frecursion_depth, Srecursion_depth, 0, 0, 0,
5618 "Return the current depth in recursive edits.")
5621 Lisp_Object temp;
5622 XSETFASTINT (temp, command_loop_level + minibuf_level);
5623 return temp;
5626 DEFUN ("open-dribble-file", Fopen_dribble_file, Sopen_dribble_file, 1, 1,
5627 "FOpen dribble file: ",
5628 "Start writing all keyboard characters to a dribble file called FILE.\n\
5629 If FILE is nil, close any open dribble file.")
5630 (file)
5631 Lisp_Object file;
5633 if (NILP (file))
5635 if (dribble)
5637 fclose (dribble);
5638 dribble = 0;
5641 else
5643 file = Fexpand_file_name (file, Qnil);
5644 dribble = fopen (XSTRING (file)->data, "w");
5646 return Qnil;
5649 DEFUN ("discard-input", Fdiscard_input, Sdiscard_input, 0, 0, 0,
5650 "Discard the contents of the terminal input buffer.\n\
5651 Also cancel any kbd macro being defined.")
5654 PERDISPLAY *perd = &the_only_perdisplay;
5655 defining_kbd_macro = 0;
5656 update_mode_lines++;
5658 Vunread_command_events = Qnil;
5659 unread_command_char = -1;
5661 discard_tty_input ();
5663 /* Without the cast, GCC complains that this assignment loses the
5664 volatile qualifier of kbd_store_ptr. Is there anything wrong
5665 with that? */
5666 perd->kbd_fetch_ptr = (struct input_event *) perd->kbd_store_ptr;
5667 Ffillarray (perd->kbd_buffer_frame_or_window, Qnil);
5668 input_pending = 0;
5670 return Qnil;
5673 DEFUN ("suspend-emacs", Fsuspend_emacs, Ssuspend_emacs, 0, 1, "",
5674 "Stop Emacs and return to superior process. You can resume later.\n\
5675 If `cannot-suspend' is non-nil, or if the system doesn't support job\n\
5676 control, run a subshell instead.\n\n\
5677 If optional arg STUFFSTRING is non-nil, its characters are stuffed\n\
5678 to be read as terminal input by Emacs's parent, after suspension.\n\
5680 Before suspending, run the normal hook `suspend-hook'.\n\
5681 After resumption run the normal hook `suspend-resume-hook'.\n\
5683 Some operating systems cannot stop the Emacs process and resume it later.\n\
5684 On such systems, Emacs starts a subshell instead of suspending.")
5685 (stuffstring)
5686 Lisp_Object stuffstring;
5688 Lisp_Object tem;
5689 int count = specpdl_ptr - specpdl;
5690 int old_height, old_width;
5691 int width, height;
5692 struct gcpro gcpro1, gcpro2;
5693 extern init_sys_modes ();
5695 if (!NILP (stuffstring))
5696 CHECK_STRING (stuffstring, 0);
5698 /* Run the functions in suspend-hook. */
5699 if (!NILP (Vrun_hooks))
5700 call1 (Vrun_hooks, intern ("suspend-hook"));
5702 GCPRO1 (stuffstring);
5703 get_frame_size (&old_width, &old_height);
5704 reset_sys_modes ();
5705 /* sys_suspend can get an error if it tries to fork a subshell
5706 and the system resources aren't available for that. */
5707 record_unwind_protect (init_sys_modes, 0);
5708 stuff_buffered_input (stuffstring);
5709 if (cannot_suspend)
5710 sys_subshell ();
5711 else
5712 sys_suspend ();
5713 unbind_to (count, Qnil);
5715 /* Check if terminal/window size has changed.
5716 Note that this is not useful when we are running directly
5717 with a window system; but suspend should be disabled in that case. */
5718 get_frame_size (&width, &height);
5719 if (width != old_width || height != old_height)
5720 change_frame_size (selected_frame, height, width, 0, 0);
5722 /* Run suspend-resume-hook. */
5723 if (!NILP (Vrun_hooks))
5724 call1 (Vrun_hooks, intern ("suspend-resume-hook"));
5726 UNGCPRO;
5727 return Qnil;
5730 /* If STUFFSTRING is a string, stuff its contents as pending terminal input.
5731 Then in any case stuff anything Emacs has read ahead and not used. */
5733 stuff_buffered_input (stuffstring)
5734 Lisp_Object stuffstring;
5736 /* stuff_char works only in BSD, versions 4.2 and up. */
5737 #ifdef BSD
5738 #ifndef BSD4_1
5739 register unsigned char *p;
5740 PERDISPLAY *perd = &the_only_perdisplay; /* We really want the primary display's perd */
5742 if (STRINGP (stuffstring))
5744 register int count;
5746 p = XSTRING (stuffstring)->data;
5747 count = XSTRING (stuffstring)->size;
5748 while (count-- > 0)
5749 stuff_char (*p++);
5750 stuff_char ('\n');
5752 /* Anything we have read ahead, put back for the shell to read. */
5753 while (perd->kbd_fetch_ptr != perd->kbd_store_ptr)
5755 if (perd->kbd_fetch_ptr == perd->kbd_buffer + KBD_BUFFER_SIZE)
5756 perd->kbd_fetch_ptr = perd->kbd_buffer;
5757 if (perd->kbd_fetch_ptr->kind == ascii_keystroke)
5758 stuff_char (perd->kbd_fetch_ptr->code);
5759 perd->kbd_fetch_ptr->kind = no_event;
5760 (XVECTOR (perd->kbd_buffer_frame_or_window)->contents[perd->kbd_fetch_ptr
5761 - perd->kbd_buffer]
5762 = Qnil);
5763 perd->kbd_fetch_ptr++;
5765 input_pending = 0;
5766 #endif
5767 #endif /* BSD and not BSD4_1 */
5770 set_waiting_for_input (time_to_clear)
5771 EMACS_TIME *time_to_clear;
5773 input_available_clear_time = time_to_clear;
5775 /* Tell interrupt_signal to throw back to read_char, */
5776 waiting_for_input = 1;
5778 /* If interrupt_signal was called before and buffered a C-g,
5779 make it run again now, to avoid timing error. */
5780 if (!NILP (Vquit_flag))
5781 quit_throw_to_read_char ();
5784 clear_waiting_for_input ()
5786 /* Tell interrupt_signal not to throw back to read_char, */
5787 waiting_for_input = 0;
5788 input_available_clear_time = 0;
5791 /* This routine is called at interrupt level in response to C-G.
5792 If interrupt_input, this is the handler for SIGINT.
5793 Otherwise, it is called from kbd_buffer_store_event,
5794 in handling SIGIO or SIGTINT.
5796 If `waiting_for_input' is non zero, then unless `echoing' is nonzero,
5797 immediately throw back to read_char.
5799 Otherwise it sets the Lisp variable quit-flag not-nil.
5800 This causes eval to throw, when it gets a chance.
5801 If quit-flag is already non-nil, it stops the job right away. */
5803 SIGTYPE
5804 interrupt_signal ()
5806 char c;
5807 /* Must preserve main program's value of errno. */
5808 int old_errno = errno;
5810 #ifdef USG
5811 if (!read_socket_hook && NILP (Vwindow_system))
5813 /* USG systems forget handlers when they are used;
5814 must reestablish each time */
5815 signal (SIGINT, interrupt_signal);
5816 signal (SIGQUIT, interrupt_signal);
5818 #endif /* USG */
5820 cancel_echoing ();
5822 if (!NILP (Vquit_flag) && FRAME_TERMCAP_P (selected_frame))
5824 fflush (stdout);
5825 reset_sys_modes ();
5826 sigfree ();
5827 #ifdef SIGTSTP /* Support possible in later USG versions */
5829 * On systems which can suspend the current process and return to the original
5830 * shell, this command causes the user to end up back at the shell.
5831 * The "Auto-save" and "Abort" questions are not asked until
5832 * the user elects to return to emacs, at which point he can save the current
5833 * job and either dump core or continue.
5835 sys_suspend ();
5836 #else
5837 #ifdef VMS
5838 if (sys_suspend () == -1)
5840 printf ("Not running as a subprocess;\n");
5841 printf ("you can continue or abort.\n");
5843 #else /* not VMS */
5844 /* Perhaps should really fork an inferior shell?
5845 But that would not provide any way to get back
5846 to the original shell, ever. */
5847 printf ("No support for stopping a process on this operating system;\n");
5848 printf ("you can continue or abort.\n");
5849 #endif /* not VMS */
5850 #endif /* not SIGTSTP */
5851 #ifdef MSDOS
5852 /* We must remain inside the screen area when the internal terminal
5853 is used. Note that [Enter] is not echoed by dos. */
5854 cursor_to (0, 0);
5855 #endif
5856 printf ("Auto-save? (y or n) ");
5857 fflush (stdout);
5858 if (((c = getchar ()) & ~040) == 'Y')
5860 Fdo_auto_save (Qt, Qnil);
5861 #ifdef MSDOS
5862 printf ("\r\nAuto-save done");
5863 #else /* not MSDOS */
5864 printf ("Auto-save done\n");
5865 #endif /* not MSDOS */
5867 while (c != '\n') c = getchar ();
5868 #ifdef MSDOS
5869 printf ("\r\nAbort? (y or n) ");
5870 #else /* not MSDOS */
5871 #ifdef VMS
5872 printf ("Abort (and enter debugger)? (y or n) ");
5873 #else /* not VMS */
5874 printf ("Abort (and dump core)? (y or n) ");
5875 #endif /* not VMS */
5876 #endif /* not MSDOS */
5877 fflush (stdout);
5878 if (((c = getchar ()) & ~040) == 'Y')
5879 abort ();
5880 while (c != '\n') c = getchar ();
5881 #ifdef MSDOS
5882 printf ("\r\nContinuing...\r\n");
5883 #else /* not MSDOS */
5884 printf ("Continuing...\n");
5885 #endif /* not MSDOS */
5886 fflush (stdout);
5887 init_sys_modes ();
5889 else
5891 /* If executing a function that wants to be interrupted out of
5892 and the user has not deferred quitting by binding `inhibit-quit'
5893 then quit right away. */
5894 if (immediate_quit && NILP (Vinhibit_quit))
5896 immediate_quit = 0;
5897 sigfree ();
5898 Fsignal (Qquit, Qnil);
5900 else
5901 /* Else request quit when it's safe */
5902 Vquit_flag = Qt;
5905 if (waiting_for_input && !echoing)
5906 quit_throw_to_read_char ();
5908 errno = old_errno;
5911 /* Handle a C-g by making read_char return C-g. */
5913 quit_throw_to_read_char ()
5915 quit_error_check ();
5916 sigfree ();
5917 /* Prevent another signal from doing this before we finish. */
5918 clear_waiting_for_input ();
5919 input_pending = 0;
5921 Vunread_command_events = Qnil;
5922 unread_command_char = -1;
5924 #ifdef POLL_FOR_INPUT
5925 /* May be > 1 if in recursive minibuffer. */
5926 if (poll_suppress_count == 0)
5927 abort ();
5928 #endif
5929 #ifdef MULTI_FRAME
5930 if (FRAMEP (internal_last_event_frame)
5931 && XFRAME (internal_last_event_frame) != selected_frame)
5932 Fhandle_switch_frame (make_lispy_switch_frame (internal_last_event_frame));
5933 #endif
5935 _longjmp (getcjmp, 1);
5938 DEFUN ("set-input-mode", Fset_input_mode, Sset_input_mode, 3, 4, 0,
5939 "Set mode of reading keyboard input.\n\
5940 First arg INTERRUPT non-nil means use input interrupts;\n\
5941 nil means use CBREAK mode.\n\
5942 Second arg FLOW non-nil means use ^S/^Q flow control for output to terminal\n\
5943 (no effect except in CBREAK mode).\n\
5944 Third arg META t means accept 8-bit input (for a Meta key).\n\
5945 META nil means ignore the top bit, on the assumption it is parity.\n\
5946 Otherwise, accept 8-bit input and don't use the top bit for Meta.\n\
5947 Optional fourth arg QUIT if non-nil specifies character to use for quitting.\n\
5948 See also `current-input-mode'.")
5949 (interrupt, flow, meta, quit)
5950 Lisp_Object interrupt, flow, meta, quit;
5952 if (!NILP (quit)
5953 && (!INTEGERP (quit) || XINT (quit) < 0 || XINT (quit) > 0400))
5954 error ("set-input-mode: QUIT must be an ASCII character");
5956 #ifdef POLL_FOR_INPUT
5957 stop_polling ();
5958 #endif
5960 reset_sys_modes ();
5961 #ifdef SIGIO
5962 /* Note SIGIO has been undef'd if FIONREAD is missing. */
5963 #ifdef NO_SOCK_SIGIO
5964 if (read_socket_hook)
5965 interrupt_input = 0; /* No interrupts if reading from a socket. */
5966 else
5967 #endif /* NO_SOCK_SIGIO */
5968 interrupt_input = !NILP (interrupt);
5969 #else /* not SIGIO */
5970 interrupt_input = 0;
5971 #endif /* not SIGIO */
5972 /* Our VMS input only works by interrupts, as of now. */
5973 #ifdef VMS
5974 interrupt_input = 1;
5975 #endif
5976 flow_control = !NILP (flow);
5977 if (NILP (meta))
5978 meta_key = 0;
5979 else if (EQ (meta, Qt))
5980 meta_key = 1;
5981 else
5982 meta_key = 2;
5983 if (!NILP (quit))
5984 /* Don't let this value be out of range. */
5985 quit_char = XINT (quit) & (meta_key ? 0377 : 0177);
5987 init_sys_modes ();
5989 #ifdef POLL_FOR_INPUT
5990 poll_suppress_count = 1;
5991 start_polling ();
5992 #endif
5993 return Qnil;
5996 DEFUN ("current-input-mode", Fcurrent_input_mode, Scurrent_input_mode, 0, 0, 0,
5997 "Return information about the way Emacs currently reads keyboard input.\n\
5998 The value is a list of the form (INTERRUPT FLOW META QUIT), where\n\
5999 INTERRUPT is non-nil if Emacs is using interrupt-driven input; if\n\
6000 nil, Emacs is using CBREAK mode.\n\
6001 FLOW is non-nil if Emacs uses ^S/^Q flow control for output to the\n\
6002 terminal; this does not apply if Emacs uses interrupt-driven input.\n\
6003 META is t if accepting 8-bit input with 8th bit as Meta flag.\n\
6004 META nil means ignoring the top bit, on the assumption it is parity.\n\
6005 META is neither t nor nil if accepting 8-bit input and using\n\
6006 all 8 bits as the character code.\n\
6007 QUIT is the character Emacs currently uses to quit.\n\
6008 The elements of this list correspond to the arguments of\n\
6009 `set-input-mode'.")
6012 Lisp_Object val[4];
6014 val[0] = interrupt_input ? Qt : Qnil;
6015 val[1] = flow_control ? Qt : Qnil;
6016 val[2] = meta_key == 2 ? make_number (0) : meta_key == 1 ? Qt : Qnil;
6017 XSETFASTINT (val[3], quit_char);
6019 return Flist (sizeof (val) / sizeof (val[0]), val);
6023 init_keyboard ()
6025 /* This is correct before outermost invocation of the editor loop */
6026 command_loop_level = -1;
6027 immediate_quit = 0;
6028 quit_char = Ctl ('g');
6029 Vunread_command_events = Qnil;
6030 unread_command_char = -1;
6031 total_keys = 0;
6032 recent_keys_index = 0;
6033 the_only_perdisplay.kbd_buffer
6034 = (struct input_event *)xmalloc (KBD_BUFFER_SIZE
6035 * sizeof (struct input_event));
6036 the_only_perdisplay.kbd_fetch_ptr = the_only_perdisplay.kbd_buffer;
6037 the_only_perdisplay.kbd_store_ptr = the_only_perdisplay.kbd_buffer;
6038 #ifdef HAVE_MOUSE
6039 do_mouse_tracking = Qnil;
6040 #endif
6041 input_pending = 0;
6043 #ifdef MULTI_FRAME
6044 /* This means that command_loop_1 won't try to select anything the first
6045 time through. */
6046 internal_last_event_frame = Qnil;
6047 Vlast_event_frame = internal_last_event_frame;
6048 #endif
6050 /* If we're running a dumped Emacs, we need to clear out
6051 kbd_buffer_frame_or_window, in case some events got into it
6052 before we dumped.
6054 If we're running an undumped Emacs, it hasn't been initialized by
6055 syms_of_keyboard yet. */
6056 if (initialized)
6058 PERDISPLAY *perd;
6059 perd = &the_only_perdisplay;
6060 /* FOR_ALL_PERDISPLAYS (perd) */
6062 Ffillarray (perd->kbd_buffer_frame_or_window, Qnil);
6066 if (!noninteractive && !read_socket_hook && NILP (Vwindow_system))
6068 signal (SIGINT, interrupt_signal);
6069 #if defined (HAVE_TERMIO) || defined (HAVE_TERMIOS)
6070 /* For systems with SysV TERMIO, C-g is set up for both SIGINT and
6071 SIGQUIT and we can't tell which one it will give us. */
6072 signal (SIGQUIT, interrupt_signal);
6073 #endif /* HAVE_TERMIO */
6075 /* Note SIGIO has been undef'd if FIONREAD is missing. */
6076 #ifdef SIGIO
6077 if (!noninteractive)
6078 signal (SIGIO, input_available_signal);
6079 #endif /* SIGIO */
6081 /* Use interrupt input by default, if it works and noninterrupt input
6082 has deficiencies. */
6084 #ifdef INTERRUPT_INPUT
6085 interrupt_input = 1;
6086 #else
6087 interrupt_input = 0;
6088 #endif
6090 /* Our VMS input only works by interrupts, as of now. */
6091 #ifdef VMS
6092 interrupt_input = 1;
6093 #endif
6095 sigfree ();
6096 dribble = 0;
6098 if (keyboard_init_hook)
6099 (*keyboard_init_hook) ();
6101 #ifdef POLL_FOR_INPUT
6102 poll_suppress_count = 1;
6103 start_polling ();
6104 #endif
6107 /* This type's only use is in syms_of_keyboard, to initialize the
6108 event header symbols and put properties on them. */
6109 struct event_head {
6110 Lisp_Object *var;
6111 char *name;
6112 Lisp_Object *kind;
6115 struct event_head head_table[] = {
6116 &Qmouse_movement, "mouse-movement", &Qmouse_movement,
6117 &Qscroll_bar_movement, "scroll-bar-movement", &Qmouse_movement,
6118 &Qswitch_frame, "switch-frame", &Qswitch_frame,
6119 &Qdelete_frame, "delete-frame", &Qdelete_frame,
6120 &Qiconify_frame, "iconify-frame", &Qiconify_frame,
6121 &Qmake_frame_visible, "make-frame-visible", &Qmake_frame_visible,
6124 syms_of_keyboard ()
6126 Qdisabled_command_hook = intern ("disabled-command-hook");
6127 staticpro (&Qdisabled_command_hook);
6129 Qself_insert_command = intern ("self-insert-command");
6130 staticpro (&Qself_insert_command);
6132 Qforward_char = intern ("forward-char");
6133 staticpro (&Qforward_char);
6135 Qbackward_char = intern ("backward-char");
6136 staticpro (&Qbackward_char);
6138 Qdisabled = intern ("disabled");
6139 staticpro (&Qdisabled);
6141 Qundefined = intern ("undefined");
6142 staticpro (&Qundefined);
6144 Qpre_command_hook = intern ("pre-command-hook");
6145 staticpro (&Qpre_command_hook);
6147 Qpost_command_hook = intern ("post-command-hook");
6148 staticpro (&Qpost_command_hook);
6150 Qdeferred_action_function = intern ("deferred-action-function");
6151 staticpro (&Qdeferred_action_function);
6153 Qcommand_hook_internal = intern ("command-hook-internal");
6154 staticpro (&Qcommand_hook_internal);
6156 Qfunction_key = intern ("function-key");
6157 staticpro (&Qfunction_key);
6158 Qmouse_click = intern ("mouse-click");
6159 staticpro (&Qmouse_click);
6161 Qmenu_enable = intern ("menu-enable");
6162 staticpro (&Qmenu_enable);
6164 Qmode_line = intern ("mode-line");
6165 staticpro (&Qmode_line);
6166 Qvertical_line = intern ("vertical-line");
6167 staticpro (&Qvertical_line);
6168 Qvertical_scroll_bar = intern ("vertical-scroll-bar");
6169 staticpro (&Qvertical_scroll_bar);
6170 Qmenu_bar = intern ("menu-bar");
6171 staticpro (&Qmenu_bar);
6173 Qabove_handle = intern ("above-handle");
6174 staticpro (&Qabove_handle);
6175 Qhandle = intern ("handle");
6176 staticpro (&Qhandle);
6177 Qbelow_handle = intern ("below-handle");
6178 staticpro (&Qbelow_handle);
6180 Qevent_kind = intern ("event-kind");
6181 staticpro (&Qevent_kind);
6182 Qevent_symbol_elements = intern ("event-symbol-elements");
6183 staticpro (&Qevent_symbol_elements);
6184 Qevent_symbol_element_mask = intern ("event-symbol-element-mask");
6185 staticpro (&Qevent_symbol_element_mask);
6186 Qmodifier_cache = intern ("modifier-cache");
6187 staticpro (&Qmodifier_cache);
6189 Qrecompute_lucid_menubar = intern ("recompute-lucid-menubar");
6190 staticpro (&Qrecompute_lucid_menubar);
6191 Qactivate_menubar_hook = intern ("activate-menubar-hook");
6192 staticpro (&Qactivate_menubar_hook);
6194 Qpolling_period = intern ("polling-period");
6195 staticpro (&Qpolling_period);
6198 struct event_head *p;
6200 for (p = head_table;
6201 p < head_table + (sizeof (head_table) / sizeof (head_table[0]));
6202 p++)
6204 *p->var = intern (p->name);
6205 staticpro (p->var);
6206 Fput (*p->var, Qevent_kind, *p->kind);
6207 Fput (*p->var, Qevent_symbol_elements, Fcons (*p->var, Qnil));
6211 button_down_location = Fmake_vector (make_number (NUM_MOUSE_BUTTONS), Qnil);
6212 staticpro (&button_down_location);
6215 int i;
6216 int len = sizeof (modifier_names) / sizeof (modifier_names[0]);
6218 modifier_symbols = Fmake_vector (make_number (len), Qnil);
6219 for (i = 0; i < len; i++)
6220 if (modifier_names[i])
6221 XVECTOR (modifier_symbols)->contents[i] = intern (modifier_names[i]);
6222 staticpro (&modifier_symbols);
6225 recent_keys = Fmake_vector (make_number (NUM_RECENT_KEYS), Qnil);
6226 staticpro (&recent_keys);
6228 this_command_keys = Fmake_vector (make_number (40), Qnil);
6229 staticpro (&this_command_keys);
6231 Qextended_command_history = intern ("extended-command-history");
6232 Fset (Qextended_command_history, Qnil);
6233 staticpro (&Qextended_command_history);
6235 the_only_perdisplay.kbd_buffer_frame_or_window
6236 = Fmake_vector (make_number (KBD_BUFFER_SIZE), Qnil);
6237 staticpro (&the_only_perdisplay.kbd_buffer_frame_or_window);
6239 accent_key_syms = Qnil;
6240 staticpro (&accent_key_syms);
6242 func_key_syms = Qnil;
6243 staticpro (&func_key_syms);
6245 system_key_syms = Qnil;
6246 staticpro (&system_key_syms);
6248 mouse_syms = Qnil;
6249 staticpro (&mouse_syms);
6251 unread_switch_frame = Qnil;
6252 staticpro (&unread_switch_frame);
6254 defsubr (&Sread_key_sequence);
6255 defsubr (&Srecursive_edit);
6256 #ifdef HAVE_MOUSE
6257 defsubr (&Strack_mouse);
6258 #endif
6259 defsubr (&Sinput_pending_p);
6260 defsubr (&Scommand_execute);
6261 defsubr (&Srecent_keys);
6262 defsubr (&Sthis_command_keys);
6263 defsubr (&Ssuspend_emacs);
6264 defsubr (&Sabort_recursive_edit);
6265 defsubr (&Sexit_recursive_edit);
6266 defsubr (&Srecursion_depth);
6267 defsubr (&Stop_level);
6268 defsubr (&Sdiscard_input);
6269 defsubr (&Sopen_dribble_file);
6270 defsubr (&Sset_input_mode);
6271 defsubr (&Scurrent_input_mode);
6272 defsubr (&Sexecute_extended_command);
6274 DEFVAR_LISP ("last-command-char", &last_command_char,
6275 "Last input event that was part of a command.");
6277 DEFVAR_LISP_NOPRO ("last-command-event", &last_command_char,
6278 "Last input event that was part of a command.");
6280 DEFVAR_LISP ("last-nonmenu-event", &last_nonmenu_event,
6281 "Last input event in a command, except for mouse menu events.\n\
6282 Mouse menus give back keys that don't look like mouse events;\n\
6283 this variable holds the actual mouse event that led to the menu,\n\
6284 so that you can determine whether the command was run by mouse or not.");
6286 DEFVAR_LISP ("last-input-char", &last_input_char,
6287 "Last input event.");
6289 DEFVAR_LISP_NOPRO ("last-input-event", &last_input_char,
6290 "Last input event.");
6292 DEFVAR_LISP ("unread-command-events", &Vunread_command_events,
6293 "List of objects to be read as next command input events.");
6295 DEFVAR_INT ("unread-command-char", &unread_command_char,
6296 "If not -1, an object to be read as next command input event.");
6298 DEFVAR_LISP ("meta-prefix-char", &meta_prefix_char,
6299 "Meta-prefix character code. Meta-foo as command input\n\
6300 turns into this character followed by foo.");
6301 XSETINT (meta_prefix_char, 033);
6303 DEFVAR_LISP ("last-command", &last_command,
6304 "The last command executed. Normally a symbol with a function definition,\n\
6305 but can be whatever was found in the keymap, or whatever the variable\n\
6306 `this-command' was set to by that command.\n\
6308 The value `mode-exit' is special; it means that the previous command\n\
6309 read an event that told it to exit, and it did so and unread that event.\n\
6310 In other words, the present command is the event that made the previous\n\
6311 command exit.\n\
6313 The value `kill-region' is special; it means that the previous command\n\
6314 was a kill command.");
6315 last_command = Qnil;
6317 DEFVAR_LISP ("this-command", &this_command,
6318 "The command now being executed.\n\
6319 The command can set this variable; whatever is put here\n\
6320 will be in `last-command' during the following command.");
6321 this_command = Qnil;
6323 DEFVAR_INT ("auto-save-interval", &auto_save_interval,
6324 "*Number of keyboard input characters between auto-saves.\n\
6325 Zero means disable autosaving due to number of characters typed.");
6326 auto_save_interval = 300;
6328 DEFVAR_LISP ("auto-save-timeout", &Vauto_save_timeout,
6329 "*Number of seconds idle time before auto-save.\n\
6330 Zero or nil means disable auto-saving due to idleness.\n\
6331 After auto-saving due to this many seconds of idle time,\n\
6332 Emacs also does a garbage collection if that seems to be warranted.");
6333 XSETFASTINT (Vauto_save_timeout, 30);
6335 DEFVAR_INT ("echo-keystrokes", &echo_keystrokes,
6336 "*Nonzero means echo unfinished commands after this many seconds of pause.");
6337 echo_keystrokes = 1;
6339 DEFVAR_INT ("polling-period", &polling_period,
6340 "*Interval between polling for input during Lisp execution.\n\
6341 The reason for polling is to make C-g work to stop a running program.\n\
6342 Polling is needed only when using X windows and SIGIO does not work.\n\
6343 Polling is automatically disabled in all other cases.");
6344 polling_period = 2;
6346 DEFVAR_LISP ("double-click-time", &Vdouble_click_time,
6347 "*Maximum time between mouse clicks to make a double-click.\n\
6348 Measured in milliseconds. nil means disable double-click recognition;\n\
6349 t means double-clicks have no time limit and are detected\n\
6350 by position only.");
6351 Vdouble_click_time = make_number (500);
6353 DEFVAR_BOOL ("inhibit-local-menu-bar-menus", &inhibit_local_menu_bar_menus,
6354 "*Non-nil means inhibit local map menu bar menus.");
6355 inhibit_local_menu_bar_menus = 0;
6357 DEFVAR_INT ("num-input-keys", &num_input_keys,
6358 "Number of complete keys read from the keyboard so far.");
6359 num_input_keys = 0;
6361 DEFVAR_LISP ("last-event-frame", &Vlast_event_frame,
6362 "The frame in which the most recently read event occurred.\n\
6363 If the last event came from a keyboard macro, this is set to `macro'.");
6364 Vlast_event_frame = Qnil;
6366 DEFVAR_LISP ("help-char", &Vhelp_char,
6367 "Character to recognize as meaning Help.\n\
6368 When it is read, do `(eval help-form)', and display result if it's a string.\n\
6369 If the value of `help-form' is nil, this char can be read normally.");
6370 XSETINT (Vhelp_char, Ctl ('H'));
6372 DEFVAR_LISP ("help-form", &Vhelp_form,
6373 "Form to execute when character `help-char' is read.\n\
6374 If the form returns a string, that string is displayed.\n\
6375 If `help-form' is nil, the help char is not recognized.");
6376 Vhelp_form = Qnil;
6378 DEFVAR_LISP ("prefix-help-command", &Vprefix_help_command,
6379 "Command to run when `help-char' character follows a prefix key.\n\
6380 This command is used only when there is no actual binding\n\
6381 for that character after that prefix key.");
6382 Vprefix_help_command = Qnil;
6384 DEFVAR_LISP ("top-level", &Vtop_level,
6385 "Form to evaluate when Emacs starts up.\n\
6386 Useful to set before you dump a modified Emacs.");
6387 Vtop_level = Qnil;
6389 DEFVAR_LISP ("keyboard-translate-table", &Vkeyboard_translate_table,
6390 "String used as translate table for keyboard input, or nil.\n\
6391 Each character is looked up in this string and the contents used instead.\n\
6392 If string is of length N, character codes N and up are untranslated.");
6393 Vkeyboard_translate_table = Qnil;
6395 DEFVAR_LISP ("key-translation-map", &Vkey_translation_map,
6396 "Keymap of key translations that can override keymaps.\n\
6397 This keymap works like `function-key-map', but comes after that,\n\
6398 and applies even for keys that have ordinary bindings.");
6399 Vkey_translation_map = Qnil;
6401 DEFVAR_BOOL ("cannot-suspend", &cannot_suspend,
6402 "Non-nil means to always spawn a subshell instead of suspending,\n\
6403 even if the operating system has support for stopping a process.");
6404 cannot_suspend = 0;
6406 DEFVAR_BOOL ("menu-prompting", &menu_prompting,
6407 "Non-nil means prompt with menus when appropriate.\n\
6408 This is done when reading from a keymap that has a prompt string,\n\
6409 for elements that have prompt strings.\n\
6410 The menu is displayed on the screen\n\
6411 if X menus were enabled at configuration\n\
6412 time and the previous event was a mouse click prefix key.\n\
6413 Otherwise, menu prompting uses the echo area.");
6414 menu_prompting = 1;
6416 DEFVAR_LISP ("menu-prompt-more-char", &menu_prompt_more_char,
6417 "Character to see next line of menu prompt.\n\
6418 Type this character while in a menu prompt to rotate around the lines of it.");
6419 XSETINT (menu_prompt_more_char, ' ');
6421 DEFVAR_INT ("extra-keyboard-modifiers", &extra_keyboard_modifiers,
6422 "A mask of additional modifier keys to use with every keyboard character.\n\
6423 Emacs applies the modifiers of the character stored here to each keyboard\n\
6424 character it reads. For example, after evaluating the expression\n\
6425 (setq extra-keyboard-modifiers ?\\C-x)\n\
6426 all input characters will have the control modifier applied to them.\n\
6428 Note that the character ?\\C-@, equivalent to the integer zero, does\n\
6429 not count as a control character; rather, it counts as a character\n\
6430 with no modifiers; thus, setting `extra-keyboard-modifiers' to zero\n\
6431 cancels any modification.");
6432 extra_keyboard_modifiers = 0;
6434 DEFVAR_LISP ("deactivate-mark", &Vdeactivate_mark,
6435 "If an editing command sets this to t, deactivate the mark afterward.\n\
6436 The command loop sets this to nil before each command,\n\
6437 and tests the value when the command returns.\n\
6438 Buffer modification stores t in this variable.");
6439 Vdeactivate_mark = Qnil;
6441 DEFVAR_LISP ("command-hook-internal", &Vcommand_hook_internal,
6442 "Temporary storage of pre-command-hook or post-command-hook.");
6443 Vcommand_hook_internal = Qnil;
6445 DEFVAR_LISP ("pre-command-hook", &Vpre_command_hook,
6446 "Normal hook run before each command is executed.\n\
6447 While the hook is run, its value is temporarily set to nil\n\
6448 to avoid an unbreakable infinite loop if a hook function gets an error.\n\
6449 As a result, a hook function cannot straightforwardly alter the value of\n\
6450 `pre-command-hook'. See the Emacs Lisp manual for a way of\n\
6451 implementing hook functions that alter the set of hook functions.");
6452 Vpre_command_hook = Qnil;
6454 DEFVAR_LISP ("post-command-hook", &Vpost_command_hook,
6455 "Normal hook run after each command is executed.\n\
6456 While the hook is run, its value is temporarily set to nil\n\
6457 to avoid an unbreakable infinite loop if a hook function gets an error.\n\
6458 As a result, a hook function cannot straightforwardly alter the value of\n\
6459 `post-command-hook'. See the Emacs Lisp manual for a way of\n\
6460 implementing hook functions that alter the set of hook functions.");
6461 Vpost_command_hook = Qnil;
6463 DEFVAR_LISP ("lucid-menu-bar-dirty-flag", &Vlucid_menu_bar_dirty_flag,
6464 "t means menu bar, specified Lucid style, needs to be recomputed.");
6465 Vlucid_menu_bar_dirty_flag = Qnil;
6467 DEFVAR_LISP ("menu-bar-final-items", &Vmenu_bar_final_items,
6468 "List of menu bar items to move to the end of the menu bar.\n\
6469 The elements of the list are event types that may have menu bar bindings.");
6470 Vmenu_bar_final_items = Qnil;
6472 DEFVAR_LISP ("overriding-local-map", &Voverriding_local_map,
6473 "Keymap that overrides all other local keymaps.\n\
6474 If this variable is non-nil, it is used as a keymap instead of the\n\
6475 buffer's local map, and the minor mode keymaps and text property keymaps.");
6476 Voverriding_local_map = Qnil;
6478 DEFVAR_LISP ("overriding-local-map-menu-flag", &Voverriding_local_map_menu_flag,
6479 "Non-nil means `overriding-local-map' applies to the menu bar.\n\
6480 Otherwise, the menu bar continues to reflect the buffer's local map\n\
6481 and the minor mode maps regardless of `overriding-local-map'.");
6482 Voverriding_local_map_menu_flag = Qnil;
6484 #ifdef HAVE_MOUSE
6485 DEFVAR_LISP ("track-mouse", &do_mouse_tracking,
6486 "*Non-nil means generate motion events for mouse motion.");
6487 #endif
6489 DEFVAR_LISP ("system-key-alist", &Vsystem_key_alist,
6490 "Alist of system-specific X windows key symbols.\n\
6491 Each element should have the form (N . SYMBOL) where N is the\n\
6492 numeric keysym code (sans the \"system-specific\" bit 1<<28)\n\
6493 and SYMBOL is its name.");
6494 Vsystem_key_alist = Qnil;
6496 DEFVAR_LISP ("deferred-action-list", &Vdeferred_action_list,
6497 "List of deferred actions to be performed at a later time.\n\
6498 The precise format isn't relevant here; we just check whether it is nil.");
6499 Vdeferred_action_list = Qnil;
6501 DEFVAR_LISP ("deferred-action-function", &Vdeferred_action_function,
6502 "Function to call to handle deferred actions, after each command.\n\
6503 This function is called with no arguments after each command\n\
6504 whenever `deferred-action-list' is non-nil.");
6505 Vdeferred_action_function = Qnil;
6508 keys_of_keyboard ()
6510 initial_define_key (global_map, Ctl ('Z'), "suspend-emacs");
6511 initial_define_key (control_x_map, Ctl ('Z'), "suspend-emacs");
6512 initial_define_key (meta_map, Ctl ('C'), "exit-recursive-edit");
6513 initial_define_key (global_map, Ctl (']'), "abort-recursive-edit");
6514 initial_define_key (meta_map, 'x', "execute-extended-command");