(cmd_error): Clear prefix arg here.
[bpt/emacs.git] / src / keyboard.c
1 /* Keyboard and mouse input; editor command loop.
2 Copyright (C) 1985,86,87,88,89,93,94,95 Free Software Foundation, Inc.
3
4 This file is part of GNU Emacs.
5
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.
10
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.
15
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. */
19
20 /* Allow config.h to undefine symbols found here. */
21 #include <signal.h>
22
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>
42
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 */
51
52 #include "syssignal.h"
53 #include "systty.h"
54
55 /* This is to get the definitions of the XK_ symbols. */
56 #ifdef HAVE_X_WINDOWS
57 #include "xterm.h"
58 #endif
59
60 /* Include systime.h after xterm.h to avoid double inclusion of time.h. */
61 #include "systime.h"
62
63 extern int errno;
64
65 /* Variables for blockinput.h: */
66
67 /* Non-zero if interrupt input is blocked right now. */
68 int interrupt_input_blocked;
69
70 /* Nonzero means an input interrupt has arrived
71 during the current critical section. */
72 int interrupt_input_pending;
73
74
75 /* File descriptor to use for input. */
76 extern int input_fd;
77
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 */
84
85 /* Following definition copied from eval.c */
86
87 struct backtrace
88 {
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;
96 };
97
98 PERDISPLAY the_only_perdisplay;
99
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;
103
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 */
108
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;
116
117 extern int minbuf_level;
118
119 extern struct backtrace *backtrace_list;
120
121 /* Nonzero means do menu prompting. */
122 static int menu_prompting;
123
124 /* Character to see next line of menu prompt. */
125 static Lisp_Object menu_prompt_more_char;
126
127 /* For longjmp to where kbd input is being done. */
128 static jmp_buf getcjmp;
129
130 /* True while doing kbd input. */
131 int waiting_for_input;
132
133 /* True while displaying for echoing. Delays C-g throwing. */
134 static int echoing;
135
136 /* Nonzero means disregard local maps for the menu bar. */
137 static int inhibit_local_menu_bar_menus;
138
139 /* Nonzero means C-g should cause immediate error-signal. */
140 int immediate_quit;
141
142 /* Character to recognize as the help char. */
143 Lisp_Object Vhelp_char;
144
145 /* Form to execute when help char is typed. */
146 Lisp_Object Vhelp_form;
147
148 /* Command to run when the help character follows a prefix key. */
149 Lisp_Object Vprefix_help_command;
150
151 /* List of items that should move to the end of the menu bar. */
152 Lisp_Object Vmenu_bar_final_items;
153
154 /* Character that causes a quit. Normally C-g.
155
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.
158
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.
167
168 FOR THESE ELABORATE AND UNSATISFYING REASONS, quit_char must be an
169 ASCII character. */
170 int quit_char;
171
172 extern Lisp_Object current_global_map;
173 extern int minibuf_level;
174
175 /* If non-nil, this is a map that overrides all other local maps. */
176 Lisp_Object Voverriding_local_map;
177
178 /* If non-nil, Voverriding_local_map applies to the menu bar. */
179 Lisp_Object Voverriding_local_map_menu_flag;
180
181 /* Current depth in recursive edits. */
182 int command_loop_level;
183
184 /* Total number of times command_loop has read a key sequence. */
185 int num_input_keys;
186
187 /* Last input character read as a command. */
188 Lisp_Object last_command_char;
189
190 /* Last input character read as a command, not counting menus
191 reached by the mouse. */
192 Lisp_Object last_nonmenu_event;
193
194 /* Last input character read for any purpose. */
195 Lisp_Object last_input_char;
196
197 /* If not Qnil, a list of objects to be read as subsequent command input. */
198 Lisp_Object Vunread_command_events;
199
200 /* If not -1, an event to be read as subsequent command input. */
201 int unread_command_char;
202
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.
206
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;
211
212 /* A mask of extra modifier bits to put into every keyboard char. */
213 int extra_keyboard_modifiers;
214
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. */
217
218 Lisp_Object meta_prefix_char;
219
220 /* Last size recorded for a current buffer which is not a minibuffer. */
221 static int last_non_minibuf_size;
222
223 /* Number of idle seconds before an auto-save and garbage collection. */
224 static Lisp_Object Vauto_save_timeout;
225
226 /* Total number of times read_char has returned. */
227 int num_input_chars;
228
229 /* Total number of times read_char has returned, outside of macros. */
230 int num_nonmacro_input_chars;
231
232 /* Auto-save automatically when this many characters have been typed
233 since the last time. */
234
235 static int auto_save_interval;
236
237 /* Value of num_nonmacro_input_chars as of last auto save. */
238
239 int last_auto_save;
240
241 /* Last command executed by the editor command loop, not counting
242 commands that set the prefix argument. */
243
244 Lisp_Object last_command;
245
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;
250
251 /* The value of point when the last command was executed. */
252 int last_point_position;
253
254 /* The buffer that was current when the last command was started. */
255 Lisp_Object last_point_position_buffer;
256
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
265
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;
270
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;
274
275 Lisp_Object Qself_insert_command;
276 Lisp_Object Qforward_char;
277 Lisp_Object Qbackward_char;
278 Lisp_Object Qundefined;
279
280 /* read_key_sequence stores here the command definition of the
281 key sequence that it reads. */
282 Lisp_Object read_key_sequence_cmd;
283
284 /* Form to evaluate (if non-nil) when Emacs is started. */
285 Lisp_Object Vtop_level;
286
287 /* User-supplied string to translate input characters through. */
288 Lisp_Object Vkeyboard_translate_table;
289
290 /* Keymap mapping ASCII function key sequences onto their preferred forms. */
291 extern Lisp_Object Vfunction_key_map;
292
293 /* Keymap mapping ASCII function key sequences onto their preferred forms. */
294 Lisp_Object Vkey_translation_map;
295
296 /* Non-nil means deactivate the mark at end of this command. */
297 Lisp_Object Vdeactivate_mark;
298
299 /* Menu bar specified in Lucid Emacs fashion. */
300
301 Lisp_Object Vlucid_menu_bar_dirty_flag;
302 Lisp_Object Qrecompute_lucid_menubar, Qactivate_menubar_hook;
303
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;
308
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;
312
313 /* Function to call to handle deferred actions, when there are any. */
314 Lisp_Object Vdeferred_action_function;
315 Lisp_Object Qdeferred_action_function;
316
317 /* File in which we write all commands we read. */
318 FILE *dribble;
319
320 /* Nonzero if input is available. */
321 int input_pending;
322
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. */
325
326 int meta_key;
327
328 extern char *pending_malloc_warning;
329
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;
335
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;
342
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. */
347
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;
355
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 */
360
361 /* Properties of event headers. */
362 Lisp_Object Qevent_kind;
363 Lisp_Object Qevent_symbol_elements;
364
365 Lisp_Object Qmenu_enable;
366
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;
373
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;
379
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;
385
386 extern Lisp_Object Qmenu_enable;
387
388 Lisp_Object recursive_edit_unwind (), command_loop ();
389 Lisp_Object Fthis_command_keys ();
390 Lisp_Object Qextended_command_history;
391
392 Lisp_Object Qpolling_period;
393
394 /* Address (if not 0) of EMACS_TIME to zero out if a SIGIO interrupt
395 happens. */
396 EMACS_TIME *input_available_clear_time;
397
398 /* Nonzero means use SIGIO interrupts; zero means use CBREAK mode.
399 Default is 1 if INTERRUPT_INPUT is defined. */
400 int interrupt_input;
401
402 /* Nonzero while interrupts are temporarily deferred during redisplay. */
403 int interrupts_deferred;
404
405 /* nonzero means use ^S/^Q for flow control. */
406 int flow_control;
407
408 /* Allow m- file to inhibit use of FIONREAD. */
409 #ifdef BROKEN_FIONREAD
410 #undef FIONREAD
411 #endif
412
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
420
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
426 \f
427 /* Global variable declarations. */
428
429 /* Function for init_keyboard to call with no args (if nonzero). */
430 void (*keyboard_init_hook) ();
431
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 ();
441
442 /* > 0 if we are to echo keystrokes. */
443 static int echo_keystrokes;
444
445 /* Nonzero means don't try to suspend even if the operating system seems
446 to support it. */
447 static int cannot_suspend;
448
449 #define min(a,b) ((a)<(b)?(a):(b))
450 #define max(a,b) ((a)>(b)?(a):(b))
451
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. */
455
456 echo_prompt (str)
457 char *str;
458 {
459 PERDISPLAY *perd = get_perdisplay (selected_frame);
460 int len = strlen (str);
461
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';
467
468 perd->echo_after_prompt = len;
469
470 echo ();
471 }
472
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. */
476
477 echo_char (c)
478 Lisp_Object c;
479 {
480 extern char *push_key_description ();
481 PERDISPLAY *perd = get_perdisplay (selected_frame);
482
483 if (perd->immediate_echo)
484 {
485 char *ptr = perd->echoptr;
486
487 if (ptr != perd->echobuf)
488 *ptr++ = ' ';
489
490 /* If someone has passed us a composite event, use its head symbol. */
491 c = EVENT_HEAD (c);
492
493 if (INTEGERP (c))
494 {
495 if (ptr - perd->echobuf > ECHOBUFSIZE - 6)
496 return;
497
498 ptr = push_key_description (XINT (c), ptr);
499 }
500 else if (SYMBOLP (c))
501 {
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;
507 }
508
509 if (perd->echoptr == perd->echobuf && EQ (c, Vhelp_char))
510 {
511 strcpy (ptr, " (Type ? for further options)");
512 ptr += strlen (ptr);
513 }
514
515 *ptr = 0;
516 perd->echoptr = ptr;
517
518 echo ();
519 }
520 }
521
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. */
524
525 echo_dash ()
526 {
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;
536
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;
541
542 echo ();
543 }
544
545 /* Display the current echo string, and begin echoing if not already
546 doing so. */
547
548 echo ()
549 {
550 PERDISPLAY *perd = get_perdisplay (selected_frame);
551 if (!perd->immediate_echo)
552 {
553 int i;
554 perd->immediate_echo = 1;
555
556 for (i = 0; i < this_command_key_count; i++)
557 {
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);
563 }
564 echo_dash ();
565 }
566
567 echoing = 1;
568 message2_nolog (perd->echobuf, strlen (perd->echobuf));
569 echoing = 0;
570
571 if (waiting_for_input && !NILP (Vquit_flag))
572 quit_throw_to_read_char ();
573 }
574
575 /* Turn off echoing, for the start of a new command. */
576
577 cancel_echoing ()
578 {
579 PERDISPLAY *perd = get_perdisplay (selected_frame);
580 perd->immediate_echo = 0;
581 perd->echoptr = perd->echobuf;
582 perd->echo_after_prompt = -1;
583 }
584
585 /* Return the length of the current echo string. */
586
587 static int
588 echo_length ()
589 {
590 PERDISPLAY *perd = get_perdisplay (selected_frame);
591 return perd->echoptr - perd->echobuf;
592 }
593
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. */
597
598 static void
599 echo_truncate (len)
600 int len;
601 {
602 PERDISPLAY *perd = get_perdisplay (selected_frame);
603 perd->echobuf[len] = '\0';
604 perd->echoptr = perd->echobuf + len;
605 truncate_echo_area (len);
606 }
607
608 \f
609 /* Functions for manipulating this_command_keys. */
610 static void
611 add_command_key (key)
612 Lisp_Object key;
613 {
614 int size = XVECTOR (this_command_keys)->size;
615
616 if (this_command_key_count >= size)
617 {
618 Lisp_Object new_keys;
619
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));
624
625 this_command_keys = new_keys;
626 }
627
628 XVECTOR (this_command_keys)->contents[this_command_key_count++] = key;
629 }
630 \f
631 Lisp_Object
632 recursive_edit_1 ()
633 {
634 int count = specpdl_ptr - specpdl;
635 Lisp_Object val;
636
637 if (command_loop_level > 0)
638 {
639 specbind (Qstandard_output, Qt);
640 specbind (Qstandard_input, Qt);
641 }
642
643 val = command_loop ();
644 if (EQ (val, Qt))
645 Fsignal (Qquit, Qnil);
646
647 return unbind_to (count, Qnil);
648 }
649
650 /* When an auto-save happens, record the "time", and don't do again soon. */
651
652 record_auto_save ()
653 {
654 last_auto_save = num_nonmacro_input_chars;
655 }
656
657 /* Make an auto save happen as soon as possible at command level. */
658
659 force_auto_save_soon ()
660 {
661 last_auto_save = - auto_save_interval - 1;
662
663 record_asynch_buffer_change ();
664 }
665 \f
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.")
672 ()
673 {
674 int count = specpdl_ptr - specpdl;
675 Lisp_Object val;
676
677 command_loop_level++;
678 update_mode_lines = 1;
679
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);
687 }
688
689 Lisp_Object
690 recursive_edit_unwind (buffer)
691 Lisp_Object buffer;
692 {
693 if (!NILP (buffer))
694 Fset_buffer (buffer);
695
696 command_loop_level--;
697 update_mode_lines = 1;
698 return Qnil;
699 }
700 \f
701 Lisp_Object
702 cmd_error (data)
703 Lisp_Object data;
704 {
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);
712
713 Vquit_flag = Qnil;
714
715 Vinhibit_quit = Qnil;
716 #ifdef MULTI_PERDISPLAY
717 current_perdisplay = 0;
718 #endif
719
720 return make_number (0);
721 }
722
723 cmd_error_internal (data, context)
724 Lisp_Object data;
725 char *context;
726 {
727 Lisp_Object errmsg, tail, errname, file_error;
728 Lisp_Object stream;
729 struct gcpro gcpro1;
730 int i;
731
732 Vquit_flag = Qnil;
733 Vinhibit_quit = Qt;
734 echo_area_glyphs = 0;
735
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
743 {
744 Fdiscard_input ();
745 bitch_at_user ();
746 stream = Qt;
747 }
748
749 if (context != 0)
750 write_string_1 (context, -1, stream);
751
752 errname = Fcar (data);
753
754 if (EQ (errname, Qerror))
755 {
756 data = Fcdr (data);
757 if (!CONSP (data)) data = Qnil;
758 errmsg = Fcar (data);
759 file_error = Qnil;
760 }
761 else
762 {
763 errmsg = Fget (errname, Qerror_message);
764 file_error = Fmemq (Qfile_error,
765 Fget (errname, Qerror_conditions));
766 }
767
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. */
771
772 if (!CONSP (data)) data = Qnil;
773 tail = Fcdr (data);
774 GCPRO1 (tail);
775
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;
780
781 if (STRINGP (errmsg))
782 Fprinc (errmsg, stream);
783 else
784 write_string_1 ("peculiar error", -1, stream);
785
786 for (i = 0; CONSP (tail); tail = Fcdr (tail), i++)
787 {
788 write_string_1 (i ? ", " : ": ", 2, stream);
789 if (!NILP (file_error))
790 Fprinc (Fcar (tail), stream);
791 else
792 Fprin1 (Fcar (tail), stream);
793 }
794 UNGCPRO;
795
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)
800 {
801 Fterpri (stream);
802 Fkill_emacs (make_number (-1));
803 }
804 }
805 \f
806 Lisp_Object command_loop_1 ();
807 Lisp_Object command_loop_2 ();
808 Lisp_Object top_level_1 ();
809
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. */
813
814 Lisp_Object
815 command_loop ()
816 {
817 if (command_loop_level > 0 || minibuf_level > 0)
818 {
819 return internal_catch (Qexit, command_loop_2, Qnil);
820 }
821 else
822 while (1)
823 {
824 internal_catch (Qtop_level, top_level_1, Qnil);
825 internal_catch (Qtop_level, command_loop_2, Qnil);
826
827 /* End of file in -batch run causes exit here. */
828 if (noninteractive)
829 Fkill_emacs (Qt);
830 }
831 }
832
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). */
838
839 Lisp_Object
840 command_loop_2 ()
841 {
842 register Lisp_Object val;
843
844 do
845 val = internal_condition_case (command_loop_1, Qerror, cmd_error);
846 while (!NILP (val));
847
848 return Qnil;
849 }
850
851 Lisp_Object
852 top_level_2 ()
853 {
854 return Feval (Vtop_level);
855 }
856
857 Lisp_Object
858 top_level_1 ()
859 {
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;
868 }
869
870 DEFUN ("top-level", Ftop_level, Stop_level, 0, 0, "",
871 "Exit all recursive editing levels.")
872 ()
873 {
874 Fthrow (Qtop_level, Qnil);
875 }
876
877 DEFUN ("exit-recursive-edit", Fexit_recursive_edit, Sexit_recursive_edit, 0, 0, "",
878 "Exit from the innermost recursive edit or minibuffer.")
879 ()
880 {
881 if (command_loop_level > 0 || minibuf_level > 0)
882 Fthrow (Qexit, Qnil);
883
884 error ("No recursive edit is in progress");
885 }
886
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.")
889 ()
890 {
891 if (command_loop_level > 0 || minibuf_level > 0)
892 Fthrow (Qexit, Qt);
893
894 error ("No recursive edit is in progress");
895 }
896 \f
897 /* This is the actual command reading loop,
898 sans error-handling encapsulation. */
899
900 Lisp_Object Fcommand_execute ();
901 static int read_key_sequence ();
902 static void safe_run_hooks ();
903
904 Lisp_Object
905 command_loop_1 ()
906 {
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;
917
918 Vdeactivate_mark = Qnil;
919 waiting_for_input = 0;
920 cancel_echoing ();
921
922 nonundocount = 0;
923 no_redisplay = 0;
924 this_command_key_count = 0;
925
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);
932
933 if (!NILP (Vdeferred_action_list))
934 call0 (Vdeferred_action_function);
935
936 /* Do this after running Vpost_command_hook, for consistency. */
937 last_command = this_command;
938
939 while (1)
940 {
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));
944
945 /* Display any malloc warning that just came out. Use while because
946 displaying one warning can cause another. */
947
948 while (pending_malloc_warning)
949 display_malloc_warning ();
950
951 no_direct = 0;
952
953 Vdeactivate_mark = Qnil;
954
955 /* If minibuffer on and echo area in use,
956 wait 2 sec and redraw minibuffer. */
957
958 if (minibuf_level && echo_area_glyphs)
959 {
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);
966
967 echo_area_glyphs = 0;
968 no_direct = 1;
969 if (!NILP (Vquit_flag))
970 {
971 Vquit_flag = Qnil;
972 Vunread_command_events = Fcons (make_number (quit_char), Qnil);
973 }
974 }
975
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 */
980
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);
997
998 /* Read next key sequence; i gets its length. */
999 i = read_key_sequence (keybuf, sizeof keybuf / sizeof keybuf[0], Qnil, 0);
1000
1001 ++num_input_keys;
1002
1003 /* Now we have read a key sequence of length I,
1004 or else I is 0 and we found end of file. */
1005
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)
1011 {
1012 cancel_echoing ();
1013 this_command_key_count = 0;
1014 goto finalize;
1015 }
1016
1017 last_command_char = keybuf[i - 1];
1018
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;
1023
1024 cmd = read_key_sequence_cmd;
1025 if (!NILP (Vexecuting_macro))
1026 {
1027 if (!NILP (Vquit_flag))
1028 {
1029 Vexecuting_macro = Qt;
1030 QUIT; /* Make some noise. */
1031 /* Will return since macro now empty. */
1032 }
1033 }
1034
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;
1041
1042 prev_buffer = current_buffer;
1043 prev_modiff = MODIFF;
1044 last_point_position = PT;
1045 XSETBUFFER (last_point_position_buffer, prev_buffer);
1046
1047 /* Execute the command. */
1048
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);
1054
1055 if (NILP (this_command))
1056 {
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;
1062
1063 }
1064 else
1065 {
1066 if (NILP (current_perdisplay->Vprefix_arg) && ! no_direct)
1067 {
1068 /* Recognize some common commands in common situations and
1069 do them directly. */
1070 if (EQ (this_command, Qforward_char) && PT < ZV)
1071 {
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;
1092 }
1093 else if (EQ (this_command, Qbackward_char) && PT > BEGV)
1094 {
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;
1115 }
1116 else if (EQ (this_command, Qself_insert_command)
1117 /* Try this optimization only on ascii keystrokes. */
1118 && INTEGERP (last_command_char))
1119 {
1120 unsigned char c = XINT (last_command_char);
1121 int value;
1122
1123 if (NILP (Vexecuting_macro)
1124 && !EQ (minibuf_window, selected_window))
1125 {
1126 if (!nonundocount || nonundocount >= 20)
1127 {
1128 Fundo_boundary ();
1129 nonundocount = 0;
1130 }
1131 nonundocount++;
1132 }
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;
1147
1148 if (!lose
1149 && (PT == ZV || FETCH_CHAR (PT) == '\n'))
1150 {
1151 struct Lisp_Vector *dp
1152 = window_display_table (XWINDOW (selected_window));
1153 int lose = c;
1154
1155 if (dp)
1156 {
1157 Lisp_Object obj;
1158
1159 obj = DISP_CHAR_VECTOR (dp, lose);
1160 if (NILP (obj))
1161 {
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);
1166 }
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));
1175 }
1176 else
1177 {
1178 if (lose >= 0x20 && lose <= 0x7e)
1179 no_redisplay = direct_output_for_insert (lose);
1180 }
1181 }
1182 goto directly_done;
1183 }
1184 }
1185
1186 /* Here for a command that isn't executed directly */
1187
1188 nonundocount = 0;
1189 if (NILP (current_perdisplay->Vprefix_arg))
1190 Fundo_boundary ();
1191 Fcommand_execute (this_command, Qnil);
1192
1193 }
1194 directly_done: ;
1195
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);
1200
1201 if (!NILP (Vdeferred_action_list))
1202 safe_run_hooks (Qdeferred_action_function);
1203
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))
1214 {
1215 last_command = this_command;
1216 cancel_echoing ();
1217 this_command_key_count = 0;
1218 }
1219
1220 if (!NILP (current_buffer->mark_active) && !NILP (Vrun_hooks))
1221 {
1222 if (!NILP (Vdeactivate_mark) && !NILP (Vtransient_mark_mode))
1223 {
1224 current_buffer->mark_active = Qnil;
1225 call1 (Vrun_hooks, intern ("deactivate-mark-hook"));
1226 }
1227 else if (current_buffer != prev_buffer || MODIFF != prev_modiff)
1228 call1 (Vrun_hooks, intern ("activate-mark-hook"));
1229 }
1230
1231 finalize:
1232 /* Install chars successfully executed in kbd macro. */
1233
1234 if (defining_kbd_macro && NILP (current_perdisplay->Vprefix_arg))
1235 finalize_kbd_macro_chars ();
1236
1237 #ifdef MULTI_PERDISPLAY
1238 current_perdisplay = global_perdisplay;
1239 #endif
1240 }
1241 }
1242
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;
1249 {
1250 Lisp_Object value;
1251 int count = specpdl_ptr - specpdl;
1252 specbind (Qinhibit_quit, Qt);
1253
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);
1260
1261 unbind_to (count, Qnil);
1262 }
1263 \f
1264 /* Number of seconds between polling for input. */
1265 int polling_period;
1266
1267 /* Nonzero means polling for input is temporarily suppressed. */
1268 int poll_suppress_count;
1269
1270 /* Nonzero if polling_for_input is actually being used. */
1271 int polling_for_input;
1272
1273 #ifdef POLL_FOR_INPUT
1274
1275 /* Handle an alarm once each second and read pending input
1276 so as to handle a C-g if it comces in. */
1277
1278 SIGTYPE
1279 input_poll_signal ()
1280 {
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);
1286 }
1287
1288 #endif
1289
1290 /* Begin signals to poll for input, if they are appropriate.
1291 This function is called unconditionally from various places. */
1292
1293 start_polling ()
1294 {
1295 #ifdef POLL_FOR_INPUT
1296 if (read_socket_hook && !interrupt_input)
1297 {
1298 poll_suppress_count--;
1299 if (poll_suppress_count == 0)
1300 {
1301 signal (SIGALRM, input_poll_signal);
1302 polling_for_input = 1;
1303 alarm (polling_period);
1304 }
1305 }
1306 #endif
1307 }
1308
1309 /* Nonzero if we are using polling to handle input asynchronously. */
1310
1311 int
1312 input_polling_used ()
1313 {
1314 #ifdef POLL_FOR_INPUT
1315 return read_socket_hook && !interrupt_input;
1316 #else
1317 return 0;
1318 #endif
1319 }
1320
1321 /* Turn off polling. */
1322
1323 stop_polling ()
1324 {
1325 #ifdef POLL_FOR_INPUT
1326 if (read_socket_hook && !interrupt_input)
1327 {
1328 if (poll_suppress_count == 0)
1329 {
1330 polling_for_input = 0;
1331 alarm (0);
1332 }
1333 poll_suppress_count++;
1334 }
1335 #endif
1336 }
1337
1338 /* Set the value of poll_suppress_count to COUNT
1339 and start or stop polling accordingly. */
1340
1341 void
1342 set_poll_suppress_count (count)
1343 int count;
1344 {
1345 #ifdef POLL_FOR_INPUT
1346 if (count == 0 && poll_suppress_count != 0)
1347 {
1348 poll_suppress_count = 1;
1349 start_polling ();
1350 }
1351 else if (count != 0 && poll_suppress_count == 0)
1352 {
1353 stop_polling ();
1354 }
1355 poll_suppress_count = count;
1356 #endif
1357 }
1358
1359 /* Bind polling_period to a value at least N.
1360 But don't decrease it. */
1361
1362 bind_polling_period (n)
1363 int n;
1364 {
1365 #ifdef POLL_FOR_INPUT
1366 int new = polling_period;
1367
1368 if (n > new)
1369 new = n;
1370
1371 stop_polling ();
1372 specbind (Qpolling_period, make_number (new));
1373 /* Start a new alarm with the new period. */
1374 start_polling ();
1375 #endif
1376 }
1377 \f
1378 /* Applying the control modifier to CHARACTER. */
1379 int
1380 make_ctrl_char (c)
1381 int c;
1382 {
1383 /* Save the upper bits here. */
1384 int upper = c & ~0177;
1385
1386 c &= 0177;
1387
1388 /* Everything in the columns containing the upper-case letters
1389 denotes a control character. */
1390 if (c >= 0100 && c < 0140)
1391 {
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;
1398 }
1399
1400 /* The lower-case letters denote control characters too. */
1401 else if (c >= 'a' && c <= 'z')
1402 c &= ~0140;
1403
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;
1408
1409 /* Replace the high bits. */
1410 c |= (upper & ~ctrl_modifier);
1411
1412 return c;
1413 }
1414
1415
1416 \f
1417 /* Input of single characters from keyboard */
1418
1419 Lisp_Object print_help ();
1420 static Lisp_Object kbd_buffer_get_event ();
1421 static void record_char ();
1422
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. */
1427
1428 /* The arguments MAPS and NMAPS are for menu prompting.
1429 MAPS is an array of keymaps; NMAPS is the length of MAPS.
1430
1431 PREV_EVENT is the previous input event, or nil if we are reading
1432 the first event of a key sequence.
1433
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.
1437
1438 Value is t if we showed a menu and the user rejected it. */
1439
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;
1447 {
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;
1455
1456 if (CONSP (Vunread_command_events))
1457 {
1458 c = XCONS (Vunread_command_events)->car;
1459 Vunread_command_events = XCONS (Vunread_command_events)->cdr;
1460
1461 if (this_command_key_count == 0)
1462 goto reread_first;
1463 else
1464 goto reread;
1465 }
1466
1467 if (unread_command_char != -1)
1468 {
1469 XSETINT (c, unread_command_char);
1470 unread_command_char = -1;
1471
1472 if (this_command_key_count == 0)
1473 goto reread_first;
1474 else
1475 goto reread;
1476 }
1477
1478 if (!NILP (Vexecuting_macro))
1479 {
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.
1484
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
1493
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)))
1499 {
1500 XSETINT (c, -1);
1501 return c;
1502 }
1503
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));
1508
1509 executing_macro_index++;
1510
1511 goto from_macro;
1512 }
1513
1514 if (!NILP (unread_switch_frame))
1515 {
1516 c = unread_switch_frame;
1517 unread_switch_frame = Qnil;
1518
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;
1522 }
1523
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 ();
1529
1530 /* Save outer setjmp data, in case called recursively. */
1531 save_getcjmp (save_jump);
1532
1533 stop_polling ();
1534
1535 if (commandflag >= 0 && !input_pending && !detect_input_pending ())
1536 redisplay ();
1537
1538 if (_setjmp (getcjmp))
1539 {
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;
1549
1550 goto non_reread;
1551 }
1552
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 ();
1559
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 ())
1572 {
1573 c = read_char_minibuf_menu_prompt (commandflag, nmaps, maps);
1574 if (! NILP (c))
1575 {
1576 key_already_recorded = 1;
1577 goto non_reread;
1578 }
1579 }
1580
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))
1587 {
1588 Lisp_Object tem0;
1589
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
1596 {
1597 tem0 = sit_for (echo_keystrokes, 0, 1, 1);
1598 if (EQ (tem0, Qt))
1599 echo ();
1600 }
1601 }
1602
1603 /* Maybe auto save due to number of keystrokes or idle time. */
1604
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 ())
1609 {
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);
1616 }
1617
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);
1628
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))
1632 {
1633 int delay_level, buffer_size;
1634
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. */
1644
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)
1650 {
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))
1655 {
1656 jmp_buf temp;
1657 save_getcjmp (temp);
1658 Fdo_auto_save (Qnil, Qnil);
1659 restore_getcjmp (temp);
1660
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 ();
1670 }
1671 }
1672 }
1673
1674 /* Actually read a character, waiting if necessary. */
1675 while (NILP (c))
1676 {
1677 c = kbd_buffer_get_event ();
1678 if (!NILP (c))
1679 break;
1680 if (commandflag >= 0 && !input_pending && !detect_input_pending ())
1681 {
1682 prepare_menu_bars ();
1683 redisplay ();
1684 }
1685 }
1686
1687 /* Terminate Emacs in batch mode if at eof. */
1688 if (noninteractive && INTEGERP (c) && XINT (c) < 0)
1689 Fkill_emacs (make_number (1));
1690
1691 if (INTEGERP (c))
1692 {
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)));
1698
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));
1703 }
1704
1705 non_reread:
1706
1707 restore_getcjmp (save_jump);
1708
1709 start_polling ();
1710
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;
1715
1716 if (key_already_recorded)
1717 return c;
1718
1719 /* Wipe the echo area. */
1720 echo_area_glyphs = 0;
1721
1722 /* Handle things that only apply to characters. */
1723 if (INTEGERP (c))
1724 {
1725 /* If kbd_buffer_get_event gave us an EOF, return that. */
1726 if (XINT (c) == -1)
1727 return c;
1728
1729 if (STRINGP (Vkeyboard_translate_table)
1730 && XSTRING (Vkeyboard_translate_table)->size > XFASTINT (c))
1731 XSETINT (c, XSTRING (Vkeyboard_translate_table)->data[XFASTINT (c)]);
1732 }
1733
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))
1741 {
1742 Lisp_Object posn;
1743
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))
1748 {
1749 /* Change menu-bar to (menu-bar) as the event "position". */
1750 POSN_BUFFER_POSN (EVENT_START (c)) = Fcons (posn, Qnil);
1751
1752 also_record = c;
1753 Vunread_command_events = Fcons (c, Vunread_command_events);
1754 c = posn;
1755 }
1756 }
1757
1758 record_char (c);
1759 if (! NILP (also_record))
1760 record_char (also_record);
1761
1762 from_macro:
1763 reread_first:
1764
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)))
1769 {
1770 echo_char (c);
1771 if (! NILP (also_record))
1772 echo_char (also_record);
1773 }
1774
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);
1779
1780 /* Re-reading in the middle of a command */
1781 reread:
1782 last_input_char = c;
1783 num_input_chars++;
1784
1785 /* Process the help character specially if enabled */
1786 if (EQ (c, Vhelp_char) && !NILP (Vhelp_form))
1787 {
1788 Lisp_Object tem0;
1789 count = specpdl_ptr - specpdl;
1790
1791 record_unwind_protect (Fset_window_configuration,
1792 Fcurrent_window_configuration (Qnil));
1793
1794 tem0 = Feval (Vhelp_form);
1795 if (STRINGP (tem0))
1796 internal_with_output_to_temp_buffer ("*Help*", print_help, tem0);
1797
1798 cancel_echoing ();
1799 do
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)))
1807 {
1808 cancel_echoing ();
1809 do
1810 c = read_char (0, 0, 0, Qnil, 0);
1811 while (BUFFERP (c));
1812 }
1813 }
1814
1815 return c;
1816 }
1817
1818 /* Record the input event C in various ways. */
1819
1820 static void
1821 record_char (c)
1822 Lisp_Object c;
1823 {
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;
1828
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)
1833 {
1834 if (INTEGERP (c))
1835 {
1836 if (XUINT (c) < 0x100)
1837 putc (XINT (c), dribble);
1838 else
1839 fprintf (dribble, " 0x%x", XUINT (c));
1840 }
1841 else
1842 {
1843 Lisp_Object dribblee;
1844
1845 /* If it's a structured event, take the event header. */
1846 dribblee = EVENT_HEAD (c);
1847
1848 if (SYMBOLP (dribblee))
1849 {
1850 putc ('<', dribble);
1851 fwrite (XSYMBOL (dribblee)->name->data, sizeof (char),
1852 XSYMBOL (dribblee)->name->size,
1853 dribble);
1854 putc ('>', dribble);
1855 }
1856 }
1857
1858 fflush (dribble);
1859 }
1860
1861 store_kbd_macro_char (c);
1862
1863 num_nonmacro_input_chars++;
1864 }
1865
1866 Lisp_Object
1867 print_help (object)
1868 Lisp_Object object;
1869 {
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;
1876 }
1877
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. */
1882
1883 save_getcjmp (temp)
1884 jmp_buf temp;
1885 {
1886 bcopy (getcjmp, temp, sizeof getcjmp);
1887 }
1888
1889 restore_getcjmp (temp)
1890 jmp_buf temp;
1891 {
1892 bcopy (temp, getcjmp, sizeof getcjmp);
1893 }
1894
1895 \f
1896 #ifdef HAVE_MOUSE
1897
1898 /* Restore mouse tracking enablement. See Ftrack_mouse for the only use
1899 of this function. */
1900
1901 static Lisp_Object
1902 tracking_off (old_value)
1903 Lisp_Object old_value;
1904 {
1905 do_mouse_tracking = old_value;
1906 if (NILP (old_value))
1907 {
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 ())
1914 {
1915 prepare_menu_bars ();
1916 redisplay_preserve_echo_area ();
1917 get_input_pending (&input_pending);
1918 }
1919 }
1920 }
1921
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;
1929 {
1930 int count = specpdl_ptr - specpdl;
1931 Lisp_Object val;
1932
1933 record_unwind_protect (tracking_off, do_mouse_tracking);
1934
1935 if (!input_pending && !detect_input_pending ())
1936 prepare_menu_bars ();
1937
1938 XSETFRAME (do_mouse_tracking, selected_frame);
1939
1940 val = Fprogn (args);
1941 return unbind_to (count, val);
1942 }
1943
1944 #endif /* HAVE_MOUSE */
1945 \f
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. */
1951
1952 static PERDISPLAY *
1953 find_active_event_queue ()
1954 {
1955 PERDISPLAY *perd;
1956 perd = &the_only_perdisplay;
1957 /* FOR_ALL_PERDISPLAYS (perd) */
1958 {
1959 if (perd->kbd_fetch_ptr != perd->kbd_store_ptr)
1960 return perd;
1961 }
1962 return 0;
1963 }
1964
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 ()
1969 {
1970 return find_active_event_queue () != NULL || MOUSE_ACTIVITY_AVAILABLE;
1971 }
1972
1973 /* Set this for debugging, to have a way to get out */
1974 int stop_character;
1975
1976 /* Store an event obtained at interrupt level into kbd_buffer, fifo */
1977
1978 void
1979 kbd_buffer_store_event (event)
1980 register struct input_event *event;
1981 {
1982 PERDISPLAY *perd = get_perdisplay (XFRAME (event->frame_or_window));
1983
1984 if (event->kind == no_event)
1985 abort ();
1986
1987 if (event->kind == ascii_keystroke)
1988 {
1989 register int c = event->code & 0377;
1990
1991 if (event->modifiers & ctrl_modifier)
1992 c = make_ctrl_char (c);
1993
1994 c |= (event->modifiers
1995 & (meta_modifier | alt_modifier
1996 | hyper_modifier | super_modifier));
1997
1998 if (c == quit_char)
1999 {
2000 extern SIGTYPE interrupt_signal ();
2001
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. */
2007 {
2008 Lisp_Object focus;
2009
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;
2016 }
2017 #endif
2018
2019 last_event_timestamp = event->timestamp;
2020 interrupt_signal ();
2021 return;
2022 }
2023
2024 if (c && c == stop_character)
2025 {
2026 sys_suspend ();
2027 return;
2028 }
2029 }
2030
2031 if (perd->kbd_store_ptr - perd->kbd_buffer == KBD_BUFFER_SIZE)
2032 perd->kbd_store_ptr = perd->kbd_buffer;
2033
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)
2039 {
2040 volatile struct input_event *sp = perd->kbd_store_ptr;
2041 sp->kind = event->kind;
2042 if (event->kind == selection_request_event)
2043 {
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));
2048 }
2049 else
2050 {
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;
2058 }
2059 (XVECTOR (perd->kbd_buffer_frame_or_window)->contents[perd->kbd_store_ptr
2060 - perd->kbd_buffer]
2061 = event->frame_or_window);
2062
2063 perd->kbd_store_ptr++;
2064 }
2065 }
2066 \f
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. */
2072
2073 static Lisp_Object
2074 kbd_buffer_get_event ()
2075 {
2076 PERDISPLAY *perd;
2077 register int c;
2078 Lisp_Object obj;
2079
2080 if (noninteractive)
2081 {
2082 c = getchar ();
2083 XSETINT (obj, c);
2084 return obj;
2085 }
2086
2087 /* Wait until there is input available. */
2088 for (;;)
2089 {
2090 perd = find_active_event_queue ();
2091 if (perd || MOUSE_ACTIVITY_AVAILABLE)
2092 break;
2093
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 ();
2098
2099 /* One way or another, wait until input is available; then, if
2100 interrupt handlers have not read it, read it now. */
2101
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))
2111 {
2112 Lisp_Object minus_one;
2113
2114 XSETINT (minus_one, -1);
2115 wait_reading_process_input (0, 0, minus_one, 1);
2116
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);
2120 }
2121 #endif /* not VMS */
2122 }
2123
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)
2128 {
2129 struct input_event *event;
2130
2131 event = ((perd->kbd_fetch_ptr < perd->kbd_buffer + KBD_BUFFER_SIZE)
2132 ? perd->kbd_fetch_ptr
2133 : perd->kbd_buffer);
2134
2135 last_event_timestamp = event->timestamp;
2136
2137 obj = Qnil;
2138
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)
2143 {
2144 #ifdef HAVE_X11
2145 x_handle_selection_request (event);
2146 perd->kbd_fetch_ptr = event + 1;
2147 #else
2148 /* We're getting selection request events, but we don't have
2149 a window system. */
2150 abort ();
2151 #endif
2152 }
2153
2154 else if (event->kind == selection_clear_event)
2155 {
2156 #ifdef HAVE_X11
2157 x_handle_selection_clear (event);
2158 perd->kbd_fetch_ptr = event + 1;
2159 #else
2160 /* We're getting selection request events, but we don't have
2161 a window system. */
2162 abort ();
2163 #endif
2164 }
2165 #ifdef HAVE_X11
2166 else if (event->kind == delete_window_event)
2167 {
2168 /* Make an event (delete-frame (FRAME)). */
2169 obj = Fcons (event->frame_or_window, Qnil);
2170 obj = Fcons (Qdelete_frame, Fcons (obj, Qnil));
2171 perd->kbd_fetch_ptr = event + 1;
2172 }
2173 else if (event->kind == iconify_event)
2174 {
2175 /* Make an event (iconify-frame (FRAME)). */
2176 obj = Fcons (event->frame_or_window, Qnil);
2177 obj = Fcons (Qiconify_frame, Fcons (obj, Qnil));
2178 perd->kbd_fetch_ptr = event + 1;
2179 }
2180 else if (event->kind == deiconify_event)
2181 {
2182 /* Make an event (make-frame-visible (FRAME)). */
2183 obj = Fcons (event->frame_or_window, Qnil);
2184 obj = Fcons (Qmake_frame_visible, Fcons (obj, Qnil));
2185 perd->kbd_fetch_ptr = event + 1;
2186 }
2187 #endif
2188 else if (event->kind == menu_bar_event)
2189 {
2190 /* The event value is in the frame_or_window slot. */
2191 obj = event->frame_or_window;
2192 perd->kbd_fetch_ptr = event + 1;
2193 }
2194 else if (event->kind == buffer_switch_event)
2195 {
2196 /* The value doesn't matter here; only the type is tested. */
2197 XSETBUFFER (obj, current_buffer);
2198 perd->kbd_fetch_ptr = event + 1;
2199 }
2200 /* Just discard these, by returning nil.
2201 (They shouldn't be found in the buffer,
2202 but on some machines it appears they do show up.) */
2203 else if (event->kind == no_event)
2204 perd->kbd_fetch_ptr = event + 1;
2205
2206 /* If this event is on a different frame, return a switch-frame this
2207 time, and leave the event in the queue for next time. */
2208 else
2209 {
2210 #ifdef MULTI_FRAME
2211 Lisp_Object frame;
2212 Lisp_Object focus;
2213
2214 frame = event->frame_or_window;
2215 if (WINDOWP (frame))
2216 frame = WINDOW_FRAME (XWINDOW (frame));
2217
2218 focus = FRAME_FOCUS_FRAME (XFRAME (frame));
2219 if (! NILP (focus))
2220 frame = focus;
2221
2222 if (! EQ (frame, internal_last_event_frame)
2223 && XFRAME (frame) != selected_frame)
2224 obj = make_lispy_switch_frame (frame);
2225 internal_last_event_frame = frame;
2226 #endif /* MULTI_FRAME */
2227
2228 /* If we didn't decide to make a switch-frame event, go ahead
2229 and build a real event from the queue entry. */
2230
2231 if (NILP (obj))
2232 {
2233 obj = make_lispy_event (event);
2234
2235 /* Wipe out this event, to catch bugs. */
2236 event->kind = no_event;
2237 XVECTOR (perd->kbd_buffer_frame_or_window)->contents[event - perd->kbd_buffer] = Qnil;
2238
2239 perd->kbd_fetch_ptr = event + 1;
2240 }
2241 }
2242 }
2243 #ifdef HAVE_MOUSE
2244 /* Try generating a mouse motion event. */
2245 else if (FRAMEP (do_mouse_tracking) && mouse_moved)
2246 {
2247 FRAME_PTR f = XFRAME (do_mouse_tracking);
2248 Lisp_Object bar_window;
2249 enum scroll_bar_part part;
2250 Lisp_Object x, y;
2251 unsigned long time;
2252
2253 /* Note that this uses F to determine which display to look at.
2254 If there is no valid info, it does not store anything
2255 so x remains nil. */
2256 x = Qnil;
2257 (*mouse_position_hook) (&f, &bar_window, &part, &x, &y, &time);
2258
2259 obj = Qnil;
2260
2261 #ifdef MULTI_FRAME
2262 /* Decide if we should generate a switch-frame event. Don't
2263 generate switch-frame events for motion outside of all Emacs
2264 frames. */
2265 if (!NILP (x) && f)
2266 {
2267 Lisp_Object frame;
2268
2269 frame = FRAME_FOCUS_FRAME (f);
2270 if (NILP (frame))
2271 XSETFRAME (frame, f);
2272
2273 if (! EQ (frame, internal_last_event_frame)
2274 && XFRAME (frame) != selected_frame)
2275 obj = make_lispy_switch_frame (frame);
2276 internal_last_event_frame = frame;
2277 }
2278 #endif
2279
2280 /* If we didn't decide to make a switch-frame event, go ahead and
2281 return a mouse-motion event. */
2282 if (!NILP (x) && NILP (obj))
2283 obj = make_lispy_movement (f, bar_window, part, x, y, time);
2284 }
2285 #endif /* HAVE_MOUSE */
2286 else
2287 /* We were promised by the above while loop that there was
2288 something for us to read! */
2289 abort ();
2290
2291 input_pending = readable_events ();
2292
2293 #ifdef MULTI_FRAME
2294 Vlast_event_frame = internal_last_event_frame;
2295 #endif
2296
2297 return (obj);
2298 }
2299 \f
2300 /* Process any events that are not user-visible,
2301 then return, without reading any user-visible events. */
2302
2303 void
2304 swallow_events ()
2305 {
2306 PERDISPLAY *perd;
2307 while ((perd = find_active_event_queue ()) != NULL)
2308 {
2309 struct input_event *event;
2310
2311 event = ((perd->kbd_fetch_ptr < perd->kbd_buffer + KBD_BUFFER_SIZE)
2312 ? perd->kbd_fetch_ptr
2313 : perd->kbd_buffer);
2314
2315 last_event_timestamp = event->timestamp;
2316
2317 /* These two kinds of events get special handling
2318 and don't actually appear to the command loop. */
2319 if (event->kind == selection_request_event)
2320 {
2321 #ifdef HAVE_X11
2322 x_handle_selection_request (event);
2323 perd->kbd_fetch_ptr = event + 1;
2324 #else
2325 /* We're getting selection request events, but we don't have
2326 a window system. */
2327 abort ();
2328 #endif
2329 }
2330
2331 else if (event->kind == selection_clear_event)
2332 {
2333 #ifdef HAVE_X11
2334 x_handle_selection_clear (event);
2335 perd->kbd_fetch_ptr = event + 1;
2336 #else
2337 /* We're getting selection request events, but we don't have
2338 a window system. */
2339 abort ();
2340 #endif
2341 }
2342 else
2343 break;
2344 }
2345
2346 get_input_pending (&input_pending);
2347 }
2348 \f
2349 /* Caches for modify_event_symbol. */
2350 static Lisp_Object accent_key_syms;
2351 static Lisp_Object system_key_syms;
2352 static Lisp_Object func_key_syms;
2353 static Lisp_Object mouse_syms;
2354
2355 Lisp_Object Vsystem_key_alist;
2356
2357 /* This is a list of keysym codes for special "accent" characters.
2358 It parallels lispy_accent_keys. */
2359
2360 static int lispy_accent_codes[] =
2361 {
2362 #ifdef XK_dead_circumflex
2363 XK_dead_circumflex,
2364 #else
2365 0,
2366 #endif
2367 #ifdef XK_dead_grave
2368 XK_dead_grave,
2369 #else
2370 0,
2371 #endif
2372 #ifdef XK_dead_tilde
2373 XK_dead_tilde,
2374 #else
2375 0,
2376 #endif
2377 #ifdef XK_dead_diaeresis
2378 XK_dead_diaeresis,
2379 #else
2380 0,
2381 #endif
2382 #ifdef XK_dead_macron
2383 XK_dead_macron,
2384 #else
2385 0,
2386 #endif
2387 #ifdef XK_dead_degree
2388 XK_dead_degree,
2389 #else
2390 0,
2391 #endif
2392 #ifdef XK_dead_acute
2393 XK_dead_acute,
2394 #else
2395 0,
2396 #endif
2397 #ifdef XK_dead_cedilla
2398 XK_dead_cedilla,
2399 #else
2400 0,
2401 #endif
2402 #ifdef XK_dead_breve
2403 XK_dead_breve,
2404 #else
2405 0,
2406 #endif
2407 #ifdef XK_dead_ogonek
2408 XK_dead_ogonek,
2409 #else
2410 0,
2411 #endif
2412 #ifdef XK_dead_caron
2413 XK_dead_caron,
2414 #else
2415 0,
2416 #endif
2417 #ifdef XK_dead_doubleacute
2418 XK_dead_doubleacute,
2419 #else
2420 0,
2421 #endif
2422 #ifdef XK_dead_abovedot
2423 XK_dead_abovedot,
2424 #else
2425 0,
2426 #endif
2427 };
2428
2429 /* This is a list of Lisp names for special "accent" characters.
2430 It parallels lispy_accent_codes. */
2431
2432 static char *lispy_accent_keys[] =
2433 {
2434 "dead-circumflex",
2435 "dead-grave",
2436 "dead-tilde",
2437 "dead-diaeresis",
2438 "dead-macron",
2439 "dead-degree",
2440 "dead-acute",
2441 "dead-cedilla",
2442 "dead-breve",
2443 "dead-ogonek",
2444 "dead-caron",
2445 "dead-doubleacute",
2446 "dead-abovedot",
2447 };
2448
2449 /* You'll notice that this table is arranged to be conveniently
2450 indexed by X Windows keysym values. */
2451 static char *lispy_function_keys[] =
2452 {
2453 /* X Keysym value */
2454
2455 0, 0, 0, 0, 0, 0, 0, 0, /* 0xff00 */
2456 "backspace",
2457 "tab",
2458 "linefeed",
2459 "clear",
2460 0,
2461 "return",
2462 0, 0,
2463 0, 0, 0, /* 0xff10 */
2464 "pause",
2465 0, 0, 0, 0, 0, 0, 0,
2466 "escape",
2467 0, 0, 0, 0,
2468 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, /* 0xff20...2f */
2469 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, /* 0xff30...3f */
2470 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, /* 0xff40...4f */
2471
2472 "home", /* 0xff50 */ /* IsCursorKey */
2473 "left",
2474 "up",
2475 "right",
2476 "down",
2477 "prior",
2478 "next",
2479 "end",
2480 "begin",
2481 0, /* 0xff59 */
2482 0, 0, 0, 0, 0, 0,
2483 "select", /* 0xff60 */ /* IsMiscFunctionKey */
2484 "print",
2485 "execute",
2486 "insert",
2487 0, /* 0xff64 */
2488 "undo",
2489 "redo",
2490 "menu",
2491 "find",
2492 "cancel",
2493 "help",
2494 "break", /* 0xff6b */
2495
2496 0, 0, 0, 0, 0, 0, 0, 0, "backtab", 0,
2497 0, /* 0xff76 */
2498 0, 0, 0, 0, 0, 0, 0, 0, "kp-numlock", /* 0xff7f */
2499 "kp-space", /* 0xff80 */ /* IsKeypadKey */
2500 0, 0, 0, 0, 0, 0, 0, 0,
2501 "kp-tab", /* 0xff89 */
2502 0, 0, 0,
2503 "kp-enter", /* 0xff8d */
2504 0, 0, 0,
2505 "kp-f1", /* 0xff91 */
2506 "kp-f2",
2507 "kp-f3",
2508 "kp-f4",
2509 "kp-home", /* 0xff95 */
2510 "kp-left",
2511 "kp-up",
2512 "kp-right",
2513 "kp-down",
2514 "kp-prior", /* kp-page-up */
2515 "kp-next", /* kp-page-down */
2516 "kp-end",
2517 "kp-begin",
2518 "kp-insert",
2519 "kp-delete",
2520 0, /* 0xffa0 */
2521 0, 0, 0, 0, 0, 0, 0, 0, 0,
2522 "kp-multiply", /* 0xffaa */
2523 "kp-add",
2524 "kp-separator",
2525 "kp-subtract",
2526 "kp-decimal",
2527 "kp-divide", /* 0xffaf */
2528 "kp-0", /* 0xffb0 */
2529 "kp-1", "kp-2", "kp-3", "kp-4", "kp-5", "kp-6", "kp-7", "kp-8", "kp-9",
2530 0, /* 0xffba */
2531 0, 0,
2532 "kp-equal", /* 0xffbd */
2533 "f1", /* 0xffbe */ /* IsFunctionKey */
2534 "f2",
2535 "f3", "f4", "f5", "f6", "f7", "f8", "f9", "f10", /* 0xffc0 */
2536 "f11", "f12", "f13", "f14", "f15", "f16", "f17", "f18",
2537 "f19", "f20", "f21", "f22", "f23", "f24", "f25", "f26", /* 0xffd0 */
2538 "f27", "f28", "f29", "f30", "f31", "f32", "f33", "f34",
2539 "f35", 0, 0, 0, 0, 0, 0, 0, /* 0xffe0 */
2540 0, 0, 0, 0, 0, 0, 0, 0,
2541 0, 0, 0, 0, 0, 0, 0, 0, /* 0xfff0 */
2542 0, 0, 0, 0, 0, 0, 0, "delete"
2543 };
2544
2545 static char *lispy_mouse_names[] =
2546 {
2547 "mouse-1", "mouse-2", "mouse-3", "mouse-4", "mouse-5"
2548 };
2549
2550 /* Scroll bar parts. */
2551 Lisp_Object Qabove_handle, Qhandle, Qbelow_handle;
2552
2553 /* An array of scroll bar parts, indexed by an enum scroll_bar_part value. */
2554 Lisp_Object *scroll_bar_parts[] = {
2555 &Qabove_handle, &Qhandle, &Qbelow_handle
2556 };
2557
2558
2559 /* A vector, indexed by button number, giving the down-going location
2560 of currently depressed buttons, both scroll bar and non-scroll bar.
2561
2562 The elements have the form
2563 (BUTTON-NUMBER MODIFIER-MASK . REST)
2564 where REST is the cdr of a position as it would be reported in the event.
2565
2566 The make_lispy_event function stores positions here to tell the
2567 difference between click and drag events, and to store the starting
2568 location to be included in drag events. */
2569
2570 static Lisp_Object button_down_location;
2571
2572 /* Information about the most recent up-going button event: Which
2573 button, what location, and what time. */
2574
2575 static int last_mouse_button;
2576 static int last_mouse_x;
2577 static int last_mouse_y;
2578 static unsigned long button_down_time;
2579
2580 /* The maximum time between clicks to make a double-click,
2581 or Qnil to disable double-click detection,
2582 or Qt for no time limit. */
2583 Lisp_Object Vdouble_click_time;
2584
2585 /* The number of clicks in this multiple-click. */
2586
2587 int double_click_count;
2588
2589 #ifdef USE_X_TOOLKIT
2590 extern Lisp_Object map_event_to_object ();
2591 #endif /* USE_X_TOOLKIT */
2592
2593 /* Given a struct input_event, build the lisp event which represents
2594 it. If EVENT is 0, build a mouse movement event from the mouse
2595 movement buffer, which should have a movement event in it.
2596
2597 Note that events must be passed to this function in the order they
2598 are received; this function stores the location of button presses
2599 in order to build drag events when the button is released. */
2600
2601 static Lisp_Object
2602 make_lispy_event (event)
2603 struct input_event *event;
2604 {
2605 int i;
2606
2607 switch (SWITCH_ENUM_CAST (event->kind))
2608 {
2609 /* A simple keystroke. */
2610 case ascii_keystroke:
2611 {
2612 Lisp_Object lispy_c;
2613 int c = event->code & 0377;
2614 /* Turn ASCII characters into control characters
2615 when proper. */
2616 if (event->modifiers & ctrl_modifier)
2617 c = make_ctrl_char (c);
2618
2619 /* Add in the other modifier bits. We took care of ctrl_modifier
2620 just above, and the shift key was taken care of by the X code,
2621 and applied to control characters by make_ctrl_char. */
2622 c |= (event->modifiers
2623 & (meta_modifier | alt_modifier
2624 | hyper_modifier | super_modifier));
2625 button_down_time = 0;
2626 XSETFASTINT (lispy_c, c);
2627 return lispy_c;
2628 }
2629
2630 /* A function key. The symbol may need to have modifier prefixes
2631 tacked onto it. */
2632 case non_ascii_keystroke:
2633 button_down_time = 0;
2634
2635 for (i = 0; i < sizeof (lispy_accent_codes) / sizeof (int); i++)
2636 if (event->code == lispy_accent_codes[i])
2637 return modify_event_symbol (i,
2638 event->modifiers,
2639 Qfunction_key, Qnil,
2640 lispy_accent_keys, &accent_key_syms,
2641 (sizeof (lispy_accent_keys)
2642 / sizeof (lispy_accent_keys[0])));
2643
2644 /* Handle system-specific keysyms. */
2645 if (event->code & (1 << 28))
2646 {
2647 /* We need to use an alist rather than a vector as the cache
2648 since we can't make a vector long enuf. */
2649 if (NILP (system_key_syms))
2650 system_key_syms = Fcons (Qnil, Qnil);
2651 return modify_event_symbol (event->code & 0xffffff,
2652 event->modifiers,
2653 Qfunction_key, Vsystem_key_alist,
2654 0, &system_key_syms, 0xffffff);
2655 }
2656
2657 return modify_event_symbol (event->code - 0xff00,
2658 event->modifiers,
2659 Qfunction_key, Qnil,
2660 lispy_function_keys, &func_key_syms,
2661 (sizeof (lispy_function_keys)
2662 / sizeof (lispy_function_keys[0])));
2663 break;
2664
2665 #if defined (MULTI_FRAME) || defined (HAVE_MOUSE)
2666 /* A mouse click. Figure out where it is, decide whether it's
2667 a press, click or drag, and build the appropriate structure. */
2668 case mouse_click:
2669 case scroll_bar_click:
2670 {
2671 int button = event->code;
2672 int is_double;
2673 Lisp_Object position;
2674 Lisp_Object *start_pos_ptr;
2675 Lisp_Object start_pos;
2676
2677 if (button < 0 || button >= NUM_MOUSE_BUTTONS)
2678 abort ();
2679
2680 /* Build the position as appropriate for this mouse click. */
2681 if (event->kind == mouse_click)
2682 {
2683 int part;
2684 FRAME_PTR f = XFRAME (event->frame_or_window);
2685 Lisp_Object window;
2686 Lisp_Object posn;
2687 int row, column;
2688
2689 /* Ignore mouse events that were made on frame that
2690 have been deleted. */
2691 if (! FRAME_LIVE_P (f))
2692 return Qnil;
2693
2694 pixel_to_glyph_coords (f, XINT (event->x), XINT (event->y),
2695 &column, &row, 0, 1);
2696
2697 #ifndef USE_X_TOOLKIT
2698 /* In the non-toolkit version, clicks on the menu bar
2699 are ordinary button events in the event buffer.
2700 Distinguish them, and invoke the menu.
2701
2702 (In the toolkit version, the toolkit handles the menu bar
2703 and Emacs doesn't know about it until after the user
2704 makes a selection.) */
2705 if (row >= 0 && row < FRAME_MENU_BAR_LINES (f))
2706 {
2707 Lisp_Object items, item;
2708 int hpos;
2709 int i;
2710
2711 /* Activate the menu bar on the down event. If the
2712 up event comes in before the menu code can deal with it,
2713 just ignore it. */
2714 if (! (event->modifiers & down_modifier))
2715 return Qnil;
2716
2717 item = Qnil;
2718 items = FRAME_MENU_BAR_ITEMS (f);
2719 for (i = 0; i < XVECTOR (items)->size; i += 3)
2720 {
2721 Lisp_Object pos, string;
2722 string = XVECTOR (items)->contents[i + 1];
2723 pos = XVECTOR (items)->contents[i + 2];
2724 if (NILP (string))
2725 break;
2726 if (column >= XINT (pos)
2727 && column < XINT (pos) + XSTRING (string)->size)
2728 {
2729 item = XVECTOR (items)->contents[i];
2730 break;
2731 }
2732 }
2733
2734 position
2735 = Fcons (event->frame_or_window,
2736 Fcons (Qmenu_bar,
2737 Fcons (Fcons (event->x, event->y),
2738 Fcons (make_number (event->timestamp),
2739 Qnil))));
2740
2741 return Fcons (item, Fcons (position, Qnil));
2742 }
2743 #endif /* not USE_X_TOOLKIT */
2744
2745 window = window_from_coordinates (f, column, row, &part);
2746
2747 if (!WINDOWP (window))
2748 {
2749 window = event->frame_or_window;
2750 posn = Qnil;
2751 }
2752 else
2753 {
2754 int pixcolumn, pixrow;
2755 column -= XINT (XWINDOW (window)->left);
2756 row -= XINT (XWINDOW (window)->top);
2757 glyph_to_pixel_coords (f, column, row, &pixcolumn, &pixrow);
2758 XSETINT (event->x, pixcolumn);
2759 XSETINT (event->y, pixrow);
2760
2761 if (part == 1)
2762 posn = Qmode_line;
2763 else if (part == 2)
2764 posn = Qvertical_line;
2765 else
2766 XSETINT (posn,
2767 buffer_posn_from_coords (XWINDOW (window),
2768 column, row));
2769 }
2770
2771 position
2772 = Fcons (window,
2773 Fcons (posn,
2774 Fcons (Fcons (event->x, event->y),
2775 Fcons (make_number (event->timestamp),
2776 Qnil))));
2777 }
2778 else
2779 {
2780 Lisp_Object window;
2781 Lisp_Object portion_whole;
2782 Lisp_Object part;
2783
2784 window = event->frame_or_window;
2785 portion_whole = Fcons (event->x, event->y);
2786 part = *scroll_bar_parts[(int) event->part];
2787
2788 position =
2789 Fcons (window,
2790 Fcons (Qvertical_scroll_bar,
2791 Fcons (portion_whole,
2792 Fcons (make_number (event->timestamp),
2793 Fcons (part, Qnil)))));
2794 }
2795
2796 start_pos_ptr = &XVECTOR (button_down_location)->contents[button];
2797
2798 start_pos = *start_pos_ptr;
2799 *start_pos_ptr = Qnil;
2800
2801 is_double = (button == last_mouse_button
2802 && XINT (event->x) == last_mouse_x
2803 && XINT (event->y) == last_mouse_y
2804 && button_down_time != 0
2805 && (EQ (Vdouble_click_time, Qt)
2806 || (INTEGERP (Vdouble_click_time)
2807 && ((int)(event->timestamp - button_down_time)
2808 < XINT (Vdouble_click_time)))));
2809 last_mouse_button = button;
2810 last_mouse_x = XINT (event->x);
2811 last_mouse_y = XINT (event->y);
2812
2813 /* If this is a button press, squirrel away the location, so
2814 we can decide later whether it was a click or a drag. */
2815 if (event->modifiers & down_modifier)
2816 {
2817 if (is_double)
2818 {
2819 double_click_count++;
2820 event->modifiers |= ((double_click_count > 2)
2821 ? triple_modifier
2822 : double_modifier);
2823 }
2824 else
2825 double_click_count = 1;
2826 button_down_time = event->timestamp;
2827 *start_pos_ptr = Fcopy_alist (position);
2828 }
2829
2830 /* Now we're releasing a button - check the co-ordinates to
2831 see if this was a click or a drag. */
2832 else if (event->modifiers & up_modifier)
2833 {
2834 /* If we did not see a down before this up,
2835 ignore the up. Probably this happened because
2836 the down event chose a menu item.
2837 It would be an annoyance to treat the release
2838 of the button that chose the menu item
2839 as a separate event. */
2840
2841 if (!CONSP (start_pos))
2842 return Qnil;
2843
2844 event->modifiers &= ~up_modifier;
2845 #if 0 /* Formerly we treated an up with no down as a click event. */
2846 if (!CONSP (start_pos))
2847 event->modifiers |= click_modifier;
2848 else
2849 #endif
2850 {
2851 /* The third element of every position should be the (x,y)
2852 pair. */
2853 Lisp_Object down;
2854
2855 down = Fnth (make_number (2), start_pos);
2856 if (EQ (event->x, XCONS (down)->car)
2857 && EQ (event->y, XCONS (down)->cdr))
2858 {
2859 event->modifiers |= click_modifier;
2860 }
2861 else
2862 {
2863 button_down_time = 0;
2864 event->modifiers |= drag_modifier;
2865 }
2866 /* Don't check is_double; treat this as multiple
2867 if the down-event was multiple. */
2868 if (double_click_count > 1)
2869 event->modifiers |= ((double_click_count > 2)
2870 ? triple_modifier
2871 : double_modifier);
2872 }
2873 }
2874 else
2875 /* Every mouse event should either have the down_modifier or
2876 the up_modifier set. */
2877 abort ();
2878
2879 {
2880 /* Get the symbol we should use for the mouse click. */
2881 Lisp_Object head;
2882
2883 head = modify_event_symbol (button,
2884 event->modifiers,
2885 Qmouse_click, Qnil,
2886 lispy_mouse_names, &mouse_syms,
2887 (sizeof (lispy_mouse_names)
2888 / sizeof (lispy_mouse_names[0])));
2889 if (event->modifiers & drag_modifier)
2890 return Fcons (head,
2891 Fcons (start_pos,
2892 Fcons (position,
2893 Qnil)));
2894 else if (event->modifiers & (double_modifier | triple_modifier))
2895 return Fcons (head,
2896 Fcons (position,
2897 Fcons (make_number (double_click_count),
2898 Qnil)));
2899 else
2900 return Fcons (head,
2901 Fcons (position,
2902 Qnil));
2903 }
2904 }
2905 #endif /* MULTI_FRAME or HAVE_MOUSE */
2906
2907 /* The 'kind' field of the event is something we don't recognize. */
2908 default:
2909 abort ();
2910 }
2911 }
2912
2913 #if defined (MULTI_FRAME) || defined (HAVE_MOUSE)
2914
2915 static Lisp_Object
2916 make_lispy_movement (frame, bar_window, part, x, y, time)
2917 FRAME_PTR frame;
2918 Lisp_Object bar_window;
2919 enum scroll_bar_part part;
2920 Lisp_Object x, y;
2921 unsigned long time;
2922 {
2923 #ifdef MULTI_FRAME
2924 /* Is it a scroll bar movement? */
2925 if (frame && ! NILP (bar_window))
2926 {
2927 Lisp_Object part_sym;
2928
2929 part_sym = *scroll_bar_parts[(int) part];
2930 return Fcons (Qscroll_bar_movement,
2931 (Fcons (Fcons (bar_window,
2932 Fcons (Qvertical_scroll_bar,
2933 Fcons (Fcons (x, y),
2934 Fcons (make_number (time),
2935 Fcons (part_sym,
2936 Qnil))))),
2937 Qnil)));
2938 }
2939
2940 /* Or is it an ordinary mouse movement? */
2941 else
2942 #endif /* MULTI_FRAME */
2943 {
2944 int area;
2945 Lisp_Object window;
2946 Lisp_Object posn;
2947 int column, row;
2948
2949 #ifdef MULTI_FRAME
2950 if (frame)
2951 #else
2952 if (1)
2953 #endif
2954 {
2955 /* It's in a frame; which window on that frame? */
2956 pixel_to_glyph_coords (frame, XINT (x), XINT (y), &column, &row, 0, 1);
2957 window = window_from_coordinates (frame, column, row, &area);
2958 }
2959 else
2960 window = Qnil;
2961
2962 if (WINDOWP (window))
2963 {
2964 int pixcolumn, pixrow;
2965 column -= XINT (XWINDOW (window)->left);
2966 row -= XINT (XWINDOW (window)->top);
2967 glyph_to_pixel_coords (frame, column, row, &pixcolumn, &pixrow);
2968 XSETINT (x, pixcolumn);
2969 XSETINT (y, pixrow);
2970
2971 if (area == 1)
2972 posn = Qmode_line;
2973 else if (area == 2)
2974 posn = Qvertical_line;
2975 else
2976 XSETINT (posn,
2977 buffer_posn_from_coords (XWINDOW (window), column, row));
2978 }
2979 #ifdef MULTI_FRAME
2980 else if (frame != 0)
2981 {
2982 XSETFRAME (window, frame);
2983 posn = Qnil;
2984 }
2985 #endif
2986 else
2987 {
2988 window = Qnil;
2989 posn = Qnil;
2990 XSETFASTINT (x, 0);
2991 XSETFASTINT (y, 0);
2992 }
2993
2994 return Fcons (Qmouse_movement,
2995 Fcons (Fcons (window,
2996 Fcons (posn,
2997 Fcons (Fcons (x, y),
2998 Fcons (make_number (time),
2999 Qnil)))),
3000 Qnil));
3001 }
3002 }
3003
3004 #endif /* neither MULTI_FRAME nor HAVE_MOUSE */
3005
3006 /* Construct a switch frame event. */
3007 static Lisp_Object
3008 make_lispy_switch_frame (frame)
3009 Lisp_Object frame;
3010 {
3011 return Fcons (Qswitch_frame, Fcons (frame, Qnil));
3012 }
3013 \f
3014 /* Manipulating modifiers. */
3015
3016 /* Parse the name of SYMBOL, and return the set of modifiers it contains.
3017
3018 If MODIFIER_END is non-zero, set *MODIFIER_END to the position in
3019 SYMBOL's name of the end of the modifiers; the string from this
3020 position is the unmodified symbol name.
3021
3022 This doesn't use any caches. */
3023 static int
3024 parse_modifiers_uncached (symbol, modifier_end)
3025 Lisp_Object symbol;
3026 int *modifier_end;
3027 {
3028 struct Lisp_String *name;
3029 int i;
3030 int modifiers;
3031
3032 CHECK_SYMBOL (symbol, 1);
3033
3034 modifiers = 0;
3035 name = XSYMBOL (symbol)->name;
3036
3037
3038 for (i = 0; i+2 <= name->size; )
3039 switch (name->data[i])
3040 {
3041 #define SINGLE_LETTER_MOD(bit) \
3042 if (name->data[i+1] != '-') \
3043 goto no_more_modifiers; \
3044 modifiers |= bit; \
3045 i += 2;
3046
3047 case 'A':
3048 SINGLE_LETTER_MOD (alt_modifier);
3049 break;
3050
3051 case 'C':
3052 SINGLE_LETTER_MOD (ctrl_modifier);
3053 break;
3054
3055 case 'H':
3056 SINGLE_LETTER_MOD (hyper_modifier);
3057 break;
3058
3059 case 'M':
3060 SINGLE_LETTER_MOD (meta_modifier);
3061 break;
3062
3063 case 'S':
3064 SINGLE_LETTER_MOD (shift_modifier);
3065 break;
3066
3067 case 's':
3068 SINGLE_LETTER_MOD (super_modifier);
3069 break;
3070
3071 case 'd':
3072 if (i + 5 > name->size)
3073 goto no_more_modifiers;
3074 if (! strncmp (name->data + i, "drag-", 5))
3075 {
3076 modifiers |= drag_modifier;
3077 i += 5;
3078 }
3079 else if (! strncmp (name->data + i, "down-", 5))
3080 {
3081 modifiers |= down_modifier;
3082 i += 5;
3083 }
3084 else if (i + 7 <= name->size
3085 && ! strncmp (name->data + i, "double-", 7))
3086 {
3087 modifiers |= double_modifier;
3088 i += 7;
3089 }
3090 else
3091 goto no_more_modifiers;
3092 break;
3093
3094 case 't':
3095 if (i + 7 > name->size)
3096 goto no_more_modifiers;
3097 if (! strncmp (name->data + i, "triple-", 7))
3098 {
3099 modifiers |= triple_modifier;
3100 i += 7;
3101 }
3102 else
3103 goto no_more_modifiers;
3104 break;
3105
3106 default:
3107 goto no_more_modifiers;
3108
3109 #undef SINGLE_LETTER_MOD
3110 }
3111 no_more_modifiers:
3112
3113 /* Should we include the `click' modifier? */
3114 if (! (modifiers & (down_modifier | drag_modifier
3115 | double_modifier | triple_modifier))
3116 && i + 7 == name->size
3117 && strncmp (name->data + i, "mouse-", 6) == 0
3118 && ('0' <= name->data[i + 6] && name->data[i + 6] <= '9'))
3119 modifiers |= click_modifier;
3120
3121 if (modifier_end)
3122 *modifier_end = i;
3123
3124 return modifiers;
3125 }
3126
3127
3128 /* Return a symbol whose name is the modifier prefixes for MODIFIERS
3129 prepended to the string BASE[0..BASE_LEN-1].
3130 This doesn't use any caches. */
3131 static Lisp_Object
3132 apply_modifiers_uncached (modifiers, base, base_len)
3133 int modifiers;
3134 char *base;
3135 int base_len;
3136 {
3137 /* Since BASE could contain nulls, we can't use intern here; we have
3138 to use Fintern, which expects a genuine Lisp_String, and keeps a
3139 reference to it. */
3140 char *new_mods =
3141 (char *) alloca (sizeof ("A-C-H-M-S-s-down-drag-double-triple-"));
3142 int mod_len;
3143
3144 {
3145 char *p = new_mods;
3146
3147 /* Only the event queue may use the `up' modifier; it should always
3148 be turned into a click or drag event before presented to lisp code. */
3149 if (modifiers & up_modifier)
3150 abort ();
3151
3152 if (modifiers & alt_modifier) { *p++ = 'A'; *p++ = '-'; }
3153 if (modifiers & ctrl_modifier) { *p++ = 'C'; *p++ = '-'; }
3154 if (modifiers & hyper_modifier) { *p++ = 'H'; *p++ = '-'; }
3155 if (modifiers & meta_modifier) { *p++ = 'M'; *p++ = '-'; }
3156 if (modifiers & shift_modifier) { *p++ = 'S'; *p++ = '-'; }
3157 if (modifiers & super_modifier) { *p++ = 's'; *p++ = '-'; }
3158 if (modifiers & double_modifier) { strcpy (p, "double-"); p += 7; }
3159 if (modifiers & triple_modifier) { strcpy (p, "triple-"); p += 7; }
3160 if (modifiers & down_modifier) { strcpy (p, "down-"); p += 5; }
3161 if (modifiers & drag_modifier) { strcpy (p, "drag-"); p += 5; }
3162 /* The click modifier is denoted by the absence of other modifiers. */
3163
3164 *p = '\0';
3165
3166 mod_len = p - new_mods;
3167 }
3168
3169 {
3170 Lisp_Object new_name;
3171
3172 new_name = make_uninit_string (mod_len + base_len);
3173 bcopy (new_mods, XSTRING (new_name)->data, mod_len);
3174 bcopy (base, XSTRING (new_name)->data + mod_len, base_len);
3175
3176 return Fintern (new_name, Qnil);
3177 }
3178 }
3179
3180
3181 static char *modifier_names[] =
3182 {
3183 "up", "down", "drag", "click", "double", "triple", 0, 0,
3184 0, 0, 0, 0, 0, 0, 0, 0,
3185 0, 0, "alt", "super", "hyper", "shift", "control", "meta"
3186 };
3187 #define NUM_MOD_NAMES (sizeof (modifier_names) / sizeof (modifier_names[0]))
3188
3189 static Lisp_Object modifier_symbols;
3190
3191 /* Return the list of modifier symbols corresponding to the mask MODIFIERS. */
3192 static Lisp_Object
3193 lispy_modifier_list (modifiers)
3194 int modifiers;
3195 {
3196 Lisp_Object modifier_list;
3197 int i;
3198
3199 modifier_list = Qnil;
3200 for (i = 0; (1<<i) <= modifiers && i < NUM_MOD_NAMES; i++)
3201 if (modifiers & (1<<i))
3202 modifier_list = Fcons (XVECTOR (modifier_symbols)->contents[i],
3203 modifier_list);
3204
3205 return modifier_list;
3206 }
3207
3208
3209 /* Parse the modifiers on SYMBOL, and return a list like (UNMODIFIED MASK),
3210 where UNMODIFIED is the unmodified form of SYMBOL,
3211 MASK is the set of modifiers present in SYMBOL's name.
3212 This is similar to parse_modifiers_uncached, but uses the cache in
3213 SYMBOL's Qevent_symbol_element_mask property, and maintains the
3214 Qevent_symbol_elements property. */
3215 static Lisp_Object
3216 parse_modifiers (symbol)
3217 Lisp_Object symbol;
3218 {
3219 Lisp_Object elements;
3220
3221 elements = Fget (symbol, Qevent_symbol_element_mask);
3222 if (CONSP (elements))
3223 return elements;
3224 else
3225 {
3226 int end;
3227 int modifiers = parse_modifiers_uncached (symbol, &end);
3228 Lisp_Object unmodified;
3229 Lisp_Object mask;
3230
3231 unmodified = Fintern (make_string (XSYMBOL (symbol)->name->data + end,
3232 XSYMBOL (symbol)->name->size - end),
3233 Qnil);
3234
3235 if (modifiers & ~((1<<VALBITS) - 1))
3236 abort ();
3237 XSETFASTINT (mask, modifiers);
3238 elements = Fcons (unmodified, Fcons (mask, Qnil));
3239
3240 /* Cache the parsing results on SYMBOL. */
3241 Fput (symbol, Qevent_symbol_element_mask,
3242 elements);
3243 Fput (symbol, Qevent_symbol_elements,
3244 Fcons (unmodified, lispy_modifier_list (modifiers)));
3245
3246 /* Since we know that SYMBOL is modifiers applied to unmodified,
3247 it would be nice to put that in unmodified's cache.
3248 But we can't, since we're not sure that parse_modifiers is
3249 canonical. */
3250
3251 return elements;
3252 }
3253 }
3254
3255 /* Apply the modifiers MODIFIERS to the symbol BASE.
3256 BASE must be unmodified.
3257
3258 This is like apply_modifiers_uncached, but uses BASE's
3259 Qmodifier_cache property, if present. It also builds
3260 Qevent_symbol_elements properties, since it has that info anyway.
3261
3262 apply_modifiers copies the value of BASE's Qevent_kind property to
3263 the modified symbol. */
3264 static Lisp_Object
3265 apply_modifiers (modifiers, base)
3266 int modifiers;
3267 Lisp_Object base;
3268 {
3269 Lisp_Object cache, index, entry, new_symbol;
3270
3271 /* Mask out upper bits. We don't know where this value's been. */
3272 modifiers &= (1<<VALBITS) - 1;
3273
3274 /* The click modifier never figures into cache indices. */
3275 cache = Fget (base, Qmodifier_cache);
3276 XSETFASTINT (index, (modifiers & ~click_modifier));
3277 entry = assq_no_quit (index, cache);
3278
3279 if (CONSP (entry))
3280 new_symbol = XCONS (entry)->cdr;
3281 else
3282 {
3283 /* We have to create the symbol ourselves. */
3284 new_symbol = apply_modifiers_uncached (modifiers,
3285 XSYMBOL (base)->name->data,
3286 XSYMBOL (base)->name->size);
3287
3288 /* Add the new symbol to the base's cache. */
3289 entry = Fcons (index, new_symbol);
3290 Fput (base, Qmodifier_cache, Fcons (entry, cache));
3291
3292 /* We have the parsing info now for free, so add it to the caches. */
3293 XSETFASTINT (index, modifiers);
3294 Fput (new_symbol, Qevent_symbol_element_mask,
3295 Fcons (base, Fcons (index, Qnil)));
3296 Fput (new_symbol, Qevent_symbol_elements,
3297 Fcons (base, lispy_modifier_list (modifiers)));
3298 }
3299
3300 /* Make sure this symbol is of the same kind as BASE.
3301
3302 You'd think we could just set this once and for all when we
3303 intern the symbol above, but reorder_modifiers may call us when
3304 BASE's property isn't set right; we can't assume that just
3305 because it has a Qmodifier_cache property it must have its
3306 Qevent_kind set right as well. */
3307 if (NILP (Fget (new_symbol, Qevent_kind)))
3308 {
3309 Lisp_Object kind;
3310
3311 kind = Fget (base, Qevent_kind);
3312 if (! NILP (kind))
3313 Fput (new_symbol, Qevent_kind, kind);
3314 }
3315
3316 return new_symbol;
3317 }
3318
3319
3320 /* Given a symbol whose name begins with modifiers ("C-", "M-", etc),
3321 return a symbol with the modifiers placed in the canonical order.
3322 Canonical order is alphabetical, except for down and drag, which
3323 always come last. The 'click' modifier is never written out.
3324
3325 Fdefine_key calls this to make sure that (for example) C-M-foo
3326 and M-C-foo end up being equivalent in the keymap. */
3327
3328 Lisp_Object
3329 reorder_modifiers (symbol)
3330 Lisp_Object symbol;
3331 {
3332 /* It's hopefully okay to write the code this way, since everything
3333 will soon be in caches, and no consing will be done at all. */
3334 Lisp_Object parsed;
3335
3336 parsed = parse_modifiers (symbol);
3337 return apply_modifiers (XCONS (XCONS (parsed)->cdr)->car,
3338 XCONS (parsed)->car);
3339 }
3340
3341
3342 /* For handling events, we often want to produce a symbol whose name
3343 is a series of modifier key prefixes ("M-", "C-", etcetera) attached
3344 to some base, like the name of a function key or mouse button.
3345 modify_event_symbol produces symbols of this sort.
3346
3347 NAME_TABLE should point to an array of strings, such that NAME_TABLE[i]
3348 is the name of the i'th symbol. TABLE_SIZE is the number of elements
3349 in the table.
3350
3351 Alternatively, NAME_ALIST is an alist mapping codes into symbol names.
3352 NAME_ALIST is used if it is non-nil; otherwise NAME_TABLE is used.
3353
3354 SYMBOL_TABLE should be a pointer to a Lisp_Object whose value will
3355 persist between calls to modify_event_symbol that it can use to
3356 store a cache of the symbols it's generated for this NAME_TABLE
3357 before. The object stored there may be a vector or an alist.
3358
3359 SYMBOL_NUM is the number of the base name we want from NAME_TABLE.
3360
3361 MODIFIERS is a set of modifier bits (as given in struct input_events)
3362 whose prefixes should be applied to the symbol name.
3363
3364 SYMBOL_KIND is the value to be placed in the event_kind property of
3365 the returned symbol.
3366
3367 The symbols we create are supposed to have an
3368 `event-symbol-elements' property, which lists the modifiers present
3369 in the symbol's name. */
3370
3371 static Lisp_Object
3372 modify_event_symbol (symbol_num, modifiers, symbol_kind, name_alist,
3373 name_table, symbol_table, table_size)
3374 int symbol_num;
3375 unsigned modifiers;
3376 Lisp_Object symbol_kind;
3377 Lisp_Object name_alist;
3378 char **name_table;
3379 Lisp_Object *symbol_table;
3380 int table_size;
3381 {
3382 Lisp_Object value;
3383 Lisp_Object symbol_int;
3384
3385 XSETINT (symbol_int, symbol_num);
3386
3387 /* Is this a request for a valid symbol? */
3388 if (symbol_num < 0 || symbol_num >= table_size)
3389 return Qnil;
3390
3391 if (CONSP (*symbol_table))
3392 value = Fcdr (assq_no_quit (symbol_int, *symbol_table));
3393
3394 /* If *symbol_table doesn't seem to be initialized properly, fix that.
3395 *symbol_table should be a lisp vector TABLE_SIZE elements long,
3396 where the Nth element is the symbol for NAME_TABLE[N], or nil if
3397 we've never used that symbol before. */
3398 else
3399 {
3400 if (! VECTORP (*symbol_table)
3401 || XVECTOR (*symbol_table)->size != table_size)
3402 {
3403 Lisp_Object size;
3404
3405 XSETFASTINT (size, table_size);
3406 *symbol_table = Fmake_vector (size, Qnil);
3407 }
3408
3409 value = XVECTOR (*symbol_table)->contents[symbol_num];
3410 }
3411
3412 /* Have we already used this symbol before? */
3413 if (NILP (value))
3414 {
3415 /* No; let's create it. */
3416 if (!NILP (name_alist))
3417 value = Fcdr_safe (Fassq (symbol_int, name_alist));
3418 else if (name_table[symbol_num])
3419 value = intern (name_table[symbol_num]);
3420
3421 if (NILP (value))
3422 {
3423 char buf[20];
3424 sprintf (buf, "key-%d", symbol_num);
3425 value = intern (buf);
3426 }
3427
3428 if (CONSP (*symbol_table))
3429 *symbol_table = Fcons (value, *symbol_table);
3430 else
3431 XVECTOR (*symbol_table)->contents[symbol_num] = value;
3432
3433 /* Fill in the cache entries for this symbol; this also
3434 builds the Qevent_symbol_elements property, which the user
3435 cares about. */
3436 apply_modifiers (modifiers & click_modifier, value);
3437 Fput (value, Qevent_kind, symbol_kind);
3438 }
3439
3440 /* Apply modifiers to that symbol. */
3441 return apply_modifiers (modifiers, value);
3442 }
3443
3444 \f
3445 /* Store into *addr a value nonzero if terminal input chars are available.
3446 Serves the purpose of ioctl (0, FIONREAD, addr)
3447 but works even if FIONREAD does not exist.
3448 (In fact, this may actually read some input.) */
3449
3450 static void
3451 get_input_pending (addr)
3452 int *addr;
3453 {
3454 /* First of all, have we already counted some input? */
3455 *addr = !NILP (Vquit_flag) || readable_events ();
3456
3457 /* If input is being read as it arrives, and we have none, there is none. */
3458 if (*addr > 0 || (interrupt_input && ! interrupts_deferred))
3459 return;
3460
3461 /* Try to read some input and see how much we get. */
3462 gobble_input (0);
3463 *addr = !NILP (Vquit_flag) || readable_events ();
3464 }
3465
3466 /* Interface to read_avail_input, blocking SIGIO or SIGALRM if necessary. */
3467
3468 int
3469 gobble_input (expected)
3470 int expected;
3471 {
3472 #ifndef VMS
3473 #ifdef SIGIO
3474 if (interrupt_input)
3475 {
3476 SIGMASKTYPE mask;
3477 mask = sigblockx (SIGIO);
3478 read_avail_input (expected);
3479 sigsetmask (mask);
3480 }
3481 else
3482 #ifdef POLL_FOR_INPUT
3483 if (read_socket_hook && !interrupt_input && poll_suppress_count == 0)
3484 {
3485 SIGMASKTYPE mask;
3486 mask = sigblockx (SIGALRM);
3487 read_avail_input (expected);
3488 sigsetmask (mask);
3489 }
3490 else
3491 #endif
3492 #endif
3493 read_avail_input (expected);
3494 #endif
3495 }
3496
3497 /* Put a buffer_switch_event in the buffer
3498 so that read_key_sequence will notice the new current buffer. */
3499
3500 record_asynch_buffer_change ()
3501 {
3502 struct input_event event;
3503 Lisp_Object tem;
3504
3505 event.kind = buffer_switch_event;
3506 event.frame_or_window = Qnil;
3507
3508 #ifdef subprocesses
3509 /* We don't need a buffer-switch event unless Emacs is waiting for input.
3510 The purpose of the event is to make read_key_sequence look up the
3511 keymaps again. If we aren't in read_key_sequence, we don't need one,
3512 and the event could cause trouble by messing up (input-pending-p). */
3513 tem = Fwaiting_for_user_input_p ();
3514 if (NILP (tem))
3515 return;
3516 #else
3517 /* We never need these events if we have no asynchronous subprocesses. */
3518 return;
3519 #endif
3520
3521 /* Make sure no interrupt happens while storing the event. */
3522 #ifdef SIGIO
3523 if (interrupt_input)
3524 {
3525 SIGMASKTYPE mask;
3526 mask = sigblockx (SIGIO);
3527 kbd_buffer_store_event (&event);
3528 sigsetmask (mask);
3529 }
3530 else
3531 #endif
3532 {
3533 stop_polling ();
3534 kbd_buffer_store_event (&event);
3535 start_polling ();
3536 }
3537 }
3538 \f
3539 #ifndef VMS
3540
3541 /* Read any terminal input already buffered up by the system
3542 into the kbd_buffer, but do not wait.
3543
3544 EXPECTED should be nonzero if the caller knows there is some input.
3545
3546 Except on VMS, all input is read by this function.
3547 If interrupt_input is nonzero, this function MUST be called
3548 only when SIGIO is blocked.
3549
3550 Returns the number of keyboard chars read, or -1 meaning
3551 this is a bad time to try to read input. */
3552
3553 static int
3554 read_avail_input (expected)
3555 int expected;
3556 {
3557 struct input_event buf[KBD_BUFFER_SIZE];
3558 register int i;
3559 int nread;
3560
3561 if (read_socket_hook)
3562 /* No need for FIONREAD or fcntl; just say don't wait. */
3563 nread = (*read_socket_hook) (input_fd, buf, KBD_BUFFER_SIZE,
3564 expected, expected);
3565 else
3566 {
3567 /* Using KBD_BUFFER_SIZE - 1 here avoids reading more than
3568 the kbd_buffer can really hold. That may prevent loss
3569 of characters on some systems when input is stuffed at us. */
3570 unsigned char cbuf[KBD_BUFFER_SIZE - 1];
3571 int n_to_read;
3572
3573 /* Determine how many characters we should *try* to read. */
3574 #ifdef WINDOWSNT
3575 return 0;
3576 #else /* not WINDOWSNT */
3577 #ifdef MSDOS
3578 n_to_read = dos_keysns ();
3579 if (n_to_read == 0)
3580 return 0;
3581 #else /* not MSDOS */
3582 #ifdef FIONREAD
3583 /* Find out how much input is available. */
3584 if (ioctl (input_fd, FIONREAD, &n_to_read) < 0)
3585 /* Formerly simply reported no input, but that sometimes led to
3586 a failure of Emacs to terminate.
3587 SIGHUP seems appropriate if we can't reach the terminal. */
3588 /* ??? Is it really right to send the signal just to this process
3589 rather than to the whole process group?
3590 Perhaps on systems with FIONREAD Emacs is alone in its group. */
3591 kill (getpid (), SIGHUP);
3592 if (n_to_read == 0)
3593 return 0;
3594 if (n_to_read > sizeof cbuf)
3595 n_to_read = sizeof cbuf;
3596 #else /* no FIONREAD */
3597 #if defined(USG) || defined(DGUX)
3598 /* Read some input if available, but don't wait. */
3599 n_to_read = sizeof cbuf;
3600 fcntl (input_fd, F_SETFL, O_NDELAY);
3601 #else
3602 you lose;
3603 #endif
3604 #endif
3605 #endif /* not MSDOS */
3606 #endif /* not WINDOWSNT */
3607
3608 /* Now read; for one reason or another, this will not block.
3609 NREAD is set to the number of chars read. */
3610 do
3611 {
3612 #ifdef MSDOS
3613 cbuf[0] = dos_keyread();
3614 nread = 1;
3615 #else
3616 nread = read (input_fd, cbuf, n_to_read);
3617 #endif
3618 #if defined (AIX) && (! defined (aix386) && defined (_BSD))
3619 /* The kernel sometimes fails to deliver SIGHUP for ptys.
3620 This looks incorrect, but it isn't, because _BSD causes
3621 O_NDELAY to be defined in fcntl.h as O_NONBLOCK,
3622 and that causes a value other than 0 when there is no input. */
3623 if (nread == 0)
3624 kill (0, SIGHUP);
3625 #endif
3626 }
3627 while (
3628 /* We used to retry the read if it was interrupted.
3629 But this does the wrong thing when O_NDELAY causes
3630 an EAGAIN error. Does anybody know of a situation
3631 where a retry is actually needed? */
3632 #if 0
3633 nread < 0 && (errno == EAGAIN
3634 #ifdef EFAULT
3635 || errno == EFAULT
3636 #endif
3637 #ifdef EBADSLT
3638 || errno == EBADSLT
3639 #endif
3640 )
3641 #else
3642 0
3643 #endif
3644 );
3645
3646 #ifndef FIONREAD
3647 #if defined (USG) || defined (DGUX)
3648 fcntl (input_fd, F_SETFL, 0);
3649 #endif /* USG or DGUX */
3650 #endif /* no FIONREAD */
3651 for (i = 0; i < nread; i++)
3652 {
3653 buf[i].kind = ascii_keystroke;
3654 buf[i].modifiers = 0;
3655 if (meta_key == 1 && (cbuf[i] & 0x80))
3656 buf[i].modifiers = meta_modifier;
3657 if (meta_key != 2)
3658 cbuf[i] &= ~0x80;
3659
3660 buf[i].code = cbuf[i];
3661 #ifdef MULTI_FRAME
3662 XSETFRAME (buf[i].frame_or_window, selected_frame);
3663 #else
3664 buf[i].frame_or_window = Qnil;
3665 #endif
3666 }
3667 }
3668
3669 /* Scan the chars for C-g and store them in kbd_buffer. */
3670 for (i = 0; i < nread; i++)
3671 {
3672 kbd_buffer_store_event (&buf[i]);
3673 /* Don't look at input that follows a C-g too closely.
3674 This reduces lossage due to autorepeat on C-g. */
3675 if (buf[i].kind == ascii_keystroke
3676 && buf[i].code == quit_char)
3677 break;
3678 }
3679
3680 return nread;
3681 }
3682 #endif /* not VMS */
3683 \f
3684 #ifdef SIGIO /* for entire page */
3685 /* Note SIGIO has been undef'd if FIONREAD is missing. */
3686
3687 SIGTYPE
3688 input_available_signal (signo)
3689 int signo;
3690 {
3691 /* Must preserve main program's value of errno. */
3692 int old_errno = errno;
3693 #ifdef BSD4_1
3694 extern int select_alarmed;
3695 #endif
3696
3697 #ifdef USG
3698 /* USG systems forget handlers when they are used;
3699 must reestablish each time */
3700 signal (signo, input_available_signal);
3701 #endif /* USG */
3702
3703 #ifdef BSD4_1
3704 sigisheld (SIGIO);
3705 #endif
3706
3707 if (input_available_clear_time)
3708 EMACS_SET_SECS_USECS (*input_available_clear_time, 0, 0);
3709
3710 while (1)
3711 {
3712 int nread;
3713 nread = read_avail_input (1);
3714 /* -1 means it's not ok to read the input now.
3715 UNBLOCK_INPUT will read it later; now, avoid infinite loop.
3716 0 means there was no keyboard input available. */
3717 if (nread <= 0)
3718 break;
3719
3720 #ifdef BSD4_1
3721 select_alarmed = 1; /* Force the select emulator back to life */
3722 #endif
3723 }
3724
3725 #ifdef BSD4_1
3726 sigfree ();
3727 #endif
3728 errno = old_errno;
3729 }
3730 #endif /* SIGIO */
3731
3732 /* Send ourselves a SIGIO.
3733
3734 This function exists so that the UNBLOCK_INPUT macro in
3735 blockinput.h can have some way to take care of input we put off
3736 dealing with, without assuming that every file which uses
3737 UNBLOCK_INPUT also has #included the files necessary to get SIGIO. */
3738 void
3739 reinvoke_input_signal ()
3740 {
3741 #ifdef SIGIO
3742 kill (0, SIGIO);
3743 #endif
3744 }
3745
3746
3747 \f
3748 /* Return the prompt-string of a sparse keymap.
3749 This is the first element which is a string.
3750 Return nil if there is none. */
3751
3752 Lisp_Object
3753 map_prompt (map)
3754 Lisp_Object map;
3755 {
3756 while (CONSP (map))
3757 {
3758 register Lisp_Object tem;
3759 tem = Fcar (map);
3760 if (STRINGP (tem))
3761 return tem;
3762 map = Fcdr (map);
3763 }
3764 return Qnil;
3765 }
3766
3767 static void menu_bar_item ();
3768 static void menu_bar_one_keymap ();
3769
3770 /* These variables hold the vector under construction within
3771 menu_bar_items and its subroutines, and the current index
3772 for storing into that vector. */
3773 static Lisp_Object menu_bar_items_vector;
3774 static int menu_bar_items_index;
3775
3776 /* Return a vector of menu items for a menu bar, appropriate
3777 to the current buffer. Each item has three elements in the vector:
3778 KEY STRING MAPLIST.
3779
3780 OLD is an old vector we can optionally reuse, or nil. */
3781
3782 Lisp_Object
3783 menu_bar_items (old)
3784 Lisp_Object old;
3785 {
3786 /* The number of keymaps we're scanning right now, and the number of
3787 keymaps we have allocated space for. */
3788 int nmaps;
3789
3790 /* maps[0..nmaps-1] are the prefix definitions of KEYBUF[0..t-1]
3791 in the current keymaps, or nil where it is not a prefix. */
3792 Lisp_Object *maps;
3793
3794 Lisp_Object def, tem, tail;
3795
3796 Lisp_Object result;
3797
3798 int mapno;
3799 Lisp_Object oquit;
3800
3801 int i;
3802
3803 struct gcpro gcpro1;
3804
3805 /* In order to build the menus, we need to call the keymap
3806 accessors. They all call QUIT. But this function is called
3807 during redisplay, during which a quit is fatal. So inhibit
3808 quitting while building the menus.
3809 We do this instead of specbind because (1) errors will clear it anyway
3810 and (2) this avoids risk of specpdl overflow. */
3811 oquit = Vinhibit_quit;
3812 Vinhibit_quit = Qt;
3813
3814 if (!NILP (old))
3815 menu_bar_items_vector = old;
3816 else
3817 menu_bar_items_vector = Fmake_vector (make_number (24), Qnil);
3818 menu_bar_items_index = 0;
3819
3820 GCPRO1 (menu_bar_items_vector);
3821
3822 /* Build our list of keymaps.
3823 If we recognize a function key and replace its escape sequence in
3824 keybuf with its symbol, or if the sequence starts with a mouse
3825 click and we need to switch buffers, we jump back here to rebuild
3826 the initial keymaps from the current buffer. */
3827 {
3828 Lisp_Object *tmaps;
3829
3830 /* Should overriding-local-map apply, here? */
3831 if (!NILP (Voverriding_local_map_menu_flag))
3832 {
3833 if (NILP (Voverriding_local_map))
3834 {
3835 /* Yes, and it is nil. Use just global map. */
3836 nmaps = 1;
3837 maps = (Lisp_Object *) alloca (nmaps * sizeof (maps[0]));
3838 }
3839 else
3840 {
3841 /* Yes, and it is non-nil. Use it and the global map. */
3842 nmaps = 2;
3843 maps = (Lisp_Object *) alloca (nmaps * sizeof (maps[0]));
3844 maps[0] = Voverriding_local_map;
3845 }
3846 }
3847 else
3848 {
3849 /* No, so use major and minor mode keymaps. */
3850 nmaps = current_minor_maps (0, &tmaps) + 2;
3851 maps = (Lisp_Object *) alloca (nmaps * sizeof (maps[0]));
3852 bcopy (tmaps, maps, (nmaps - 2) * sizeof (maps[0]));
3853 #ifdef USE_TEXT_PROPERTIES
3854 maps[nmaps-2] = get_local_map (PT, current_buffer);
3855 #else
3856 maps[nmaps-2] = current_buffer->keymap;
3857 #endif
3858 }
3859 maps[nmaps-1] = current_global_map;
3860 }
3861
3862 /* Look up in each map the dummy prefix key `menu-bar'. */
3863
3864 result = Qnil;
3865
3866 for (mapno = nmaps - 1; mapno >= 0; mapno--)
3867 {
3868 if (! NILP (maps[mapno]))
3869 def = get_keyelt (access_keymap (maps[mapno], Qmenu_bar, 1, 0));
3870 else
3871 def = Qnil;
3872
3873 tem = Fkeymapp (def);
3874 if (!NILP (tem))
3875 menu_bar_one_keymap (def);
3876 }
3877
3878 /* Move to the end those items that should be at the end. */
3879
3880 for (tail = Vmenu_bar_final_items; CONSP (tail); tail = XCONS (tail)->cdr)
3881 {
3882 int i;
3883 int end = menu_bar_items_index;
3884
3885 for (i = 0; i < end; i += 3)
3886 if (EQ (XCONS (tail)->car, XVECTOR (menu_bar_items_vector)->contents[i]))
3887 {
3888 Lisp_Object tem0, tem1, tem2;
3889 /* Move the item at index I to the end,
3890 shifting all the others forward. */
3891 tem0 = XVECTOR (menu_bar_items_vector)->contents[i + 0];
3892 tem1 = XVECTOR (menu_bar_items_vector)->contents[i + 1];
3893 tem2 = XVECTOR (menu_bar_items_vector)->contents[i + 2];
3894 if (end > i + 3)
3895 bcopy (&XVECTOR (menu_bar_items_vector)->contents[i + 3],
3896 &XVECTOR (menu_bar_items_vector)->contents[i],
3897 (end - i - 3) * sizeof (Lisp_Object));
3898 XVECTOR (menu_bar_items_vector)->contents[end - 3] = tem0;
3899 XVECTOR (menu_bar_items_vector)->contents[end - 2] = tem1;
3900 XVECTOR (menu_bar_items_vector)->contents[end - 1] = tem2;
3901 break;
3902 }
3903 }
3904
3905 /* Add nil, nil, nil at the end. */
3906 i = menu_bar_items_index;
3907 if (i + 3 > XVECTOR (menu_bar_items_vector)->size)
3908 {
3909 Lisp_Object tem;
3910 int newsize = 2 * i;
3911 tem = Fmake_vector (make_number (2 * i), Qnil);
3912 bcopy (XVECTOR (menu_bar_items_vector)->contents,
3913 XVECTOR (tem)->contents, i * sizeof (Lisp_Object));
3914 menu_bar_items_vector = tem;
3915 }
3916 /* Add this item. */
3917 XVECTOR (menu_bar_items_vector)->contents[i++] = Qnil;
3918 XVECTOR (menu_bar_items_vector)->contents[i++] = Qnil;
3919 XVECTOR (menu_bar_items_vector)->contents[i++] = Qnil;
3920 menu_bar_items_index = i;
3921
3922 Vinhibit_quit = oquit;
3923 UNGCPRO;
3924 return menu_bar_items_vector;
3925 }
3926 \f
3927 /* Scan one map KEYMAP, accumulating any menu items it defines
3928 in menu_bar_items_vector. */
3929
3930 static void
3931 menu_bar_one_keymap (keymap)
3932 Lisp_Object keymap;
3933 {
3934 Lisp_Object tail, item, key, binding, item_string, table;
3935
3936 /* Loop over all keymap entries that have menu strings. */
3937 for (tail = keymap; CONSP (tail); tail = XCONS (tail)->cdr)
3938 {
3939 item = XCONS (tail)->car;
3940 if (CONSP (item))
3941 {
3942 key = XCONS (item)->car;
3943 binding = XCONS (item)->cdr;
3944 if (CONSP (binding))
3945 {
3946 item_string = XCONS (binding)->car;
3947 if (STRINGP (item_string))
3948 menu_bar_item (key, item_string, Fcdr (binding));
3949 }
3950 else if (EQ (binding, Qundefined))
3951 menu_bar_item (key, Qnil, binding);
3952 }
3953 else if (VECTORP (item))
3954 {
3955 /* Loop over the char values represented in the vector. */
3956 int len = XVECTOR (item)->size;
3957 int c;
3958 for (c = 0; c < len; c++)
3959 {
3960 Lisp_Object character;
3961 XSETFASTINT (character, c);
3962 binding = XVECTOR (item)->contents[c];
3963 if (CONSP (binding))
3964 {
3965 item_string = XCONS (binding)->car;
3966 if (STRINGP (item_string))
3967 menu_bar_item (key, item_string, Fcdr (binding));
3968 }
3969 else if (EQ (binding, Qundefined))
3970 menu_bar_item (key, Qnil, binding);
3971 }
3972 }
3973 }
3974 }
3975
3976 /* This is used as the handler when calling internal_condition_case_1. */
3977
3978 static Lisp_Object
3979 menu_bar_item_1 (arg)
3980 Lisp_Object arg;
3981 {
3982 return Qnil;
3983 }
3984
3985 /* Add one item to menu_bar_items_vector, for KEY, ITEM_STRING and DEF.
3986 If there's already an item for KEY, add this DEF to it. */
3987
3988 static void
3989 menu_bar_item (key, item_string, def)
3990 Lisp_Object key, item_string, def;
3991 {
3992 Lisp_Object tem;
3993 Lisp_Object enabled;
3994 int i;
3995
3996 if (EQ (def, Qundefined))
3997 {
3998 /* If a map has an explicit `undefined' as definition,
3999 discard any previously made menu bar item. */
4000
4001 for (i = 0; i < menu_bar_items_index; i += 3)
4002 if (EQ (key, XVECTOR (menu_bar_items_vector)->contents[i]))
4003 {
4004 if (menu_bar_items_index > i + 3)
4005 bcopy (&XVECTOR (menu_bar_items_vector)->contents[i + 3],
4006 &XVECTOR (menu_bar_items_vector)->contents[i],
4007 (menu_bar_items_index - i - 3) * sizeof (Lisp_Object));
4008 menu_bar_items_index -= 3;
4009 return;
4010 }
4011
4012 /* If there's no definition for this key yet,
4013 just ignore `undefined'. */
4014 return;
4015 }
4016
4017 /* See if this entry is enabled. */
4018 enabled = Qt;
4019
4020 if (SYMBOLP (def))
4021 {
4022 /* No property, or nil, means enable.
4023 Otherwise, enable if value is not nil. */
4024 tem = Fget (def, Qmenu_enable);
4025 if (!NILP (tem))
4026 /* (condition-case nil (eval tem)
4027 (error nil)) */
4028 enabled = internal_condition_case_1 (Feval, tem, Qerror,
4029 menu_bar_item_1);
4030 }
4031
4032 /* Ignore this item if it's not enabled. */
4033 if (NILP (enabled))
4034 return;
4035
4036 /* Find any existing item for this KEY. */
4037 for (i = 0; i < menu_bar_items_index; i += 3)
4038 if (EQ (key, XVECTOR (menu_bar_items_vector)->contents[i]))
4039 break;
4040
4041 /* If we did not find this KEY, add it at the end. */
4042 if (i == menu_bar_items_index)
4043 {
4044 /* If vector is too small, get a bigger one. */
4045 if (i + 3 > XVECTOR (menu_bar_items_vector)->size)
4046 {
4047 Lisp_Object tem;
4048 int newsize = 2 * i;
4049 tem = Fmake_vector (make_number (2 * i), Qnil);
4050 bcopy (XVECTOR (menu_bar_items_vector)->contents,
4051 XVECTOR (tem)->contents, i * sizeof (Lisp_Object));
4052 menu_bar_items_vector = tem;
4053 }
4054 /* Add this item. */
4055 XVECTOR (menu_bar_items_vector)->contents[i++] = key;
4056 XVECTOR (menu_bar_items_vector)->contents[i++] = item_string;
4057 XVECTOR (menu_bar_items_vector)->contents[i++] = Fcons (def, Qnil);
4058 menu_bar_items_index = i;
4059 }
4060 /* We did find an item for this KEY. Add DEF to its list of maps. */
4061 else
4062 {
4063 Lisp_Object old;
4064 old = XVECTOR (menu_bar_items_vector)->contents[i + 2];
4065 XVECTOR (menu_bar_items_vector)->contents[i + 2] = Fcons (def, old);
4066 }
4067 }
4068 \f
4069 /* Read a character using menus based on maps in the array MAPS.
4070 NMAPS is the length of MAPS. Return nil if there are no menus in the maps.
4071 Return t if we displayed a menu but the user rejected it.
4072
4073 PREV_EVENT is the previous input event, or nil if we are reading
4074 the first event of a key sequence.
4075
4076 If USED_MOUSE_MENU is non-zero, then we set *USED_MOUSE_MENU to 1
4077 if we used a mouse menu to read the input, or zero otherwise. If
4078 USED_MOUSE_MENU is zero, *USED_MOUSE_MENU is left alone.
4079
4080 The prompting is done based on the prompt-string of the map
4081 and the strings associated with various map elements.
4082
4083 This can be done with X menus or with menus put in the minibuf.
4084 These are done in different ways, depending on how the input will be read.
4085 Menus using X are done after auto-saving in read-char, getting the input
4086 event from Fx_popup_menu; menus using the minibuf use read_char recursively
4087 and do auto-saving in the inner call of read_char. */
4088
4089 static Lisp_Object
4090 read_char_x_menu_prompt (nmaps, maps, prev_event, used_mouse_menu)
4091 int nmaps;
4092 Lisp_Object *maps;
4093 Lisp_Object prev_event;
4094 int *used_mouse_menu;
4095 {
4096 int mapno;
4097 register Lisp_Object name;
4098 Lisp_Object rest, vector;
4099
4100 if (used_mouse_menu)
4101 *used_mouse_menu = 0;
4102
4103 /* Use local over global Menu maps */
4104
4105 if (! menu_prompting)
4106 return Qnil;
4107
4108 /* Optionally disregard all but the global map. */
4109 if (inhibit_local_menu_bar_menus)
4110 {
4111 maps += (nmaps - 1);
4112 nmaps = 1;
4113 }
4114
4115 /* Get the menu name from the first map that has one (a prompt string). */
4116 for (mapno = 0; mapno < nmaps; mapno++)
4117 {
4118 name = map_prompt (maps[mapno]);
4119 if (!NILP (name))
4120 break;
4121 }
4122
4123 /* If we don't have any menus, just read a character normally. */
4124 if (mapno >= nmaps)
4125 return Qnil;
4126
4127 #if (defined (HAVE_X_WINDOWS) && defined (HAVE_X_MENU)) || defined (MSDOS)
4128 /* If we got to this point via a mouse click,
4129 use a real menu for mouse selection. */
4130 if (EVENT_HAS_PARAMETERS (prev_event))
4131 {
4132 /* Display the menu and get the selection. */
4133 Lisp_Object *realmaps
4134 = (Lisp_Object *) alloca (nmaps * sizeof (Lisp_Object));
4135 Lisp_Object value;
4136 int nmaps1 = 0;
4137
4138 /* Use the maps that are not nil. */
4139 for (mapno = 0; mapno < nmaps; mapno++)
4140 if (!NILP (maps[mapno]))
4141 realmaps[nmaps1++] = maps[mapno];
4142
4143 value = Fx_popup_menu (prev_event, Flist (nmaps1, realmaps));
4144 if (CONSP (value))
4145 {
4146 /* If we got more than one event, put all but the first
4147 onto this list to be read later.
4148 Return just the first event now. */
4149 Vunread_command_events
4150 = nconc2 (XCONS (value)->cdr, Vunread_command_events);
4151 value = XCONS (value)->car;
4152 }
4153 else if (NILP (value))
4154 value = Qt;
4155 if (used_mouse_menu)
4156 *used_mouse_menu = 1;
4157 return value;
4158 }
4159 #endif /* (HAVE_X_WINDOWS && HAVE_X_MENU) || MSDOS */
4160 return Qnil ;
4161 }
4162
4163 static Lisp_Object
4164 read_char_minibuf_menu_prompt (commandflag, nmaps, maps)
4165 int commandflag ;
4166 int nmaps;
4167 Lisp_Object *maps;
4168 {
4169 int mapno;
4170 register Lisp_Object name;
4171 int nlength;
4172 int width = FRAME_WIDTH (selected_frame) - 4;
4173 char *menu = (char *) alloca (width + 4);
4174 int idx = -1;
4175 int nobindings = 1;
4176 Lisp_Object rest, vector;
4177
4178 if (! menu_prompting)
4179 return Qnil;
4180
4181 /* Get the menu name from the first map that has one (a prompt string). */
4182 for (mapno = 0; mapno < nmaps; mapno++)
4183 {
4184 name = map_prompt (maps[mapno]);
4185 if (!NILP (name))
4186 break;
4187 }
4188
4189 /* If we don't have any menus, just read a character normally. */
4190 if (mapno >= nmaps)
4191 return Qnil;
4192
4193 /* Prompt string always starts with map's prompt, and a space. */
4194 strcpy (menu, XSTRING (name)->data);
4195 nlength = XSTRING (name)->size;
4196 menu[nlength++] = ':';
4197 menu[nlength++] = ' ';
4198 menu[nlength] = 0;
4199
4200 /* Start prompting at start of first map. */
4201 mapno = 0;
4202 rest = maps[mapno];
4203
4204 /* Present the documented bindings, a line at a time. */
4205 while (1)
4206 {
4207 int notfirst = 0;
4208 int i = nlength;
4209 Lisp_Object obj;
4210 int ch;
4211 int orig_defn_macro ;
4212
4213 /* Loop over elements of map. */
4214 while (i < width)
4215 {
4216 Lisp_Object s, elt;
4217
4218 /* If reached end of map, start at beginning of next map. */
4219 if (NILP (rest))
4220 {
4221 mapno++;
4222 /* At end of last map, wrap around to first map if just starting,
4223 or end this line if already have something on it. */
4224 if (mapno == nmaps)
4225 {
4226 mapno = 0;
4227 if (notfirst || nobindings) break;
4228 }
4229 rest = maps[mapno];
4230 }
4231
4232 /* Look at the next element of the map. */
4233 if (idx >= 0)
4234 elt = XVECTOR (vector)->contents[idx];
4235 else
4236 elt = Fcar_safe (rest);
4237
4238 if (idx < 0 && VECTORP (elt))
4239 {
4240 /* If we found a dense table in the keymap,
4241 advanced past it, but start scanning its contents. */
4242 rest = Fcdr_safe (rest);
4243 vector = elt;
4244 idx = 0;
4245 }
4246 else
4247 {
4248 /* An ordinary element. */
4249 if ( idx < 0 )
4250 s = Fcar_safe (Fcdr_safe (elt)); /* alist */
4251 else
4252 s = Fcar_safe(elt); /* vector */
4253 if (!STRINGP (s))
4254 /* Ignore the element if it has no prompt string. */
4255 ;
4256 /* If we have room for the prompt string, add it to this line.
4257 If this is the first on the line, always add it. */
4258 else if (XSTRING (s)->size + i + 2 < width
4259 || !notfirst)
4260 {
4261 int thiswidth;
4262
4263 /* Punctuate between strings. */
4264 if (notfirst)
4265 {
4266 strcpy (menu + i, ", ");
4267 i += 2;
4268 }
4269 notfirst = 1;
4270 nobindings = 0 ;
4271
4272 /* Add as much of string as fits. */
4273 thiswidth = XSTRING (s)->size;
4274 if (thiswidth + i > width)
4275 thiswidth = width - i;
4276 bcopy (XSTRING (s)->data, menu + i, thiswidth);
4277 i += thiswidth;
4278 menu[i] = 0;
4279 }
4280 else
4281 {
4282 /* If this element does not fit, end the line now,
4283 and save the element for the next line. */
4284 strcpy (menu + i, "...");
4285 break;
4286 }
4287
4288 /* Move past this element. */
4289 if (idx >= 0 && idx + 1 >= XVECTOR (vector)->size)
4290 /* Handle reaching end of dense table. */
4291 idx = -1;
4292 if (idx >= 0)
4293 idx++;
4294 else
4295 rest = Fcdr_safe (rest);
4296 }
4297 }
4298
4299 /* Prompt with that and read response. */
4300 message1 (menu);
4301
4302 /* Make believe its not a keyboard macro in case the help char
4303 is pressed. Help characters are not recorded because menu prompting
4304 is not used on replay.
4305 */
4306 orig_defn_macro = defining_kbd_macro ;
4307 defining_kbd_macro = 0 ;
4308 do
4309 obj = read_char (commandflag, 0, 0, Qnil, 0);
4310 while (BUFFERP (obj));
4311 defining_kbd_macro = orig_defn_macro ;
4312
4313 if (!INTEGERP (obj))
4314 return obj;
4315 else
4316 ch = XINT (obj);
4317
4318 if (! EQ (obj, menu_prompt_more_char)
4319 && (!INTEGERP (menu_prompt_more_char)
4320 || ! EQ (obj, make_number (Ctl (XINT (menu_prompt_more_char))))))
4321 {
4322 if ( defining_kbd_macro )
4323 store_kbd_macro_char(obj) ;
4324 return obj;
4325 }
4326 /* Help char - go round again */
4327 }
4328 }
4329 \f
4330 /* Reading key sequences. */
4331
4332 /* Follow KEY in the maps in CURRENT[0..NMAPS-1], placing its bindings
4333 in DEFS[0..NMAPS-1]. Set NEXT[i] to DEFS[i] if DEFS[i] is a
4334 keymap, or nil otherwise. Return the index of the first keymap in
4335 which KEY has any binding, or NMAPS if no map has a binding.
4336
4337 If KEY is a meta ASCII character, treat it like meta-prefix-char
4338 followed by the corresponding non-meta character. Keymaps in
4339 CURRENT with non-prefix bindings for meta-prefix-char become nil in
4340 NEXT.
4341
4342 If KEY has no bindings in any of the CURRENT maps, NEXT is left
4343 unmodified.
4344
4345 NEXT may == CURRENT. */
4346
4347 static int
4348 follow_key (key, nmaps, current, defs, next)
4349 Lisp_Object key;
4350 Lisp_Object *current, *defs, *next;
4351 int nmaps;
4352 {
4353 int i, first_binding;
4354
4355 /* If KEY is a meta ASCII character, treat it like meta-prefix-char
4356 followed by the corresponding non-meta character. */
4357 if (INTEGERP (key) && (XINT (key) & CHAR_META))
4358 {
4359 for (i = 0; i < nmaps; i++)
4360 if (! NILP (current[i]))
4361 {
4362 next[i] =
4363 get_keyelt (access_keymap (current[i], meta_prefix_char, 1, 0));
4364
4365 /* Note that since we pass the resulting bindings through
4366 get_keymap_1, non-prefix bindings for meta-prefix-char
4367 disappear. */
4368 next[i] = get_keymap_1 (next[i], 0, 1);
4369 }
4370 else
4371 next[i] = Qnil;
4372
4373 current = next;
4374 XSETINT (key, XFASTINT (key) & ~CHAR_META);
4375 }
4376
4377 first_binding = nmaps;
4378 for (i = nmaps - 1; i >= 0; i--)
4379 {
4380 if (! NILP (current[i]))
4381 {
4382 defs[i] = get_keyelt (access_keymap (current[i], key, 1, 0));
4383 if (! NILP (defs[i]))
4384 first_binding = i;
4385 }
4386 else
4387 defs[i] = Qnil;
4388 }
4389
4390 /* Given the set of bindings we've found, produce the next set of maps. */
4391 if (first_binding < nmaps)
4392 for (i = 0; i < nmaps; i++)
4393 next[i] = NILP (defs[i]) ? Qnil : get_keymap_1 (defs[i], 0, 1);
4394
4395 return first_binding;
4396 }
4397
4398 /* Read a sequence of keys that ends with a non prefix character,
4399 storing it in KEYBUF, a buffer of size BUFSIZE.
4400 Prompt with PROMPT.
4401 Return the length of the key sequence stored.
4402 Return -1 if the user rejected a command menu.
4403
4404 Echo starting immediately unless `prompt' is 0.
4405
4406 Where a key sequence ends depends on the currently active keymaps.
4407 These include any minor mode keymaps active in the current buffer,
4408 the current buffer's local map, and the global map.
4409
4410 If a key sequence has no other bindings, we check Vfunction_key_map
4411 to see if some trailing subsequence might be the beginning of a
4412 function key's sequence. If so, we try to read the whole function
4413 key, and substitute its symbolic name into the key sequence.
4414
4415 We ignore unbound `down-' mouse clicks. We turn unbound `drag-' and
4416 `double-' events into similar click events, if that would make them
4417 bound. We try to turn `triple-' events first into `double-' events,
4418 then into clicks.
4419
4420 If we get a mouse click in a mode line, vertical divider, or other
4421 non-text area, we treat the click as if it were prefixed by the
4422 symbol denoting that area - `mode-line', `vertical-line', or
4423 whatever.
4424
4425 If the sequence starts with a mouse click, we read the key sequence
4426 with respect to the buffer clicked on, not the current buffer.
4427
4428 If the user switches frames in the midst of a key sequence, we put
4429 off the switch-frame event until later; the next call to
4430 read_char will return it. */
4431
4432 static int
4433 read_key_sequence (keybuf, bufsize, prompt, dont_downcase_last)
4434 Lisp_Object *keybuf;
4435 int bufsize;
4436 Lisp_Object prompt;
4437 int dont_downcase_last;
4438 {
4439 int count = specpdl_ptr - specpdl;
4440
4441 /* How many keys there are in the current key sequence. */
4442 int t;
4443
4444 /* The length of the echo buffer when we started reading, and
4445 the length of this_command_keys when we started reading. */
4446 int echo_start;
4447 int keys_start;
4448
4449 /* The number of keymaps we're scanning right now, and the number of
4450 keymaps we have allocated space for. */
4451 int nmaps;
4452 int nmaps_allocated = 0;
4453
4454 /* defs[0..nmaps-1] are the definitions of KEYBUF[0..t-1] in
4455 the current keymaps. */
4456 Lisp_Object *defs;
4457
4458 /* submaps[0..nmaps-1] are the prefix definitions of KEYBUF[0..t-1]
4459 in the current keymaps, or nil where it is not a prefix. */
4460 Lisp_Object *submaps;
4461
4462 /* The local map to start out with at start of key sequence. */
4463 Lisp_Object orig_local_map;
4464
4465 /* 1 if we have already considered switching to the local-map property
4466 of the place where a mouse click occurred. */
4467 int localized_local_map = 0;
4468
4469 /* The index in defs[] of the first keymap that has a binding for
4470 this key sequence. In other words, the lowest i such that
4471 defs[i] is non-nil. */
4472 int first_binding;
4473
4474 /* If t < mock_input, then KEYBUF[t] should be read as the next
4475 input key.
4476
4477 We use this to recover after recognizing a function key. Once we
4478 realize that a suffix of the current key sequence is actually a
4479 function key's escape sequence, we replace the suffix with the
4480 function key's binding from Vfunction_key_map. Now keybuf
4481 contains a new and different key sequence, so the echo area,
4482 this_command_keys, and the submaps and defs arrays are wrong. In
4483 this situation, we set mock_input to t, set t to 0, and jump to
4484 restart_sequence; the loop will read keys from keybuf up until
4485 mock_input, thus rebuilding the state; and then it will resume
4486 reading characters from the keyboard. */
4487 int mock_input = 0;
4488
4489 /* If the sequence is unbound in submaps[], then
4490 keybuf[fkey_start..fkey_end-1] is a prefix in Vfunction_key_map,
4491 and fkey_map is its binding.
4492
4493 These might be > t, indicating that all function key scanning
4494 should hold off until t reaches them. We do this when we've just
4495 recognized a function key, to avoid searching for the function
4496 key's again in Vfunction_key_map. */
4497 int fkey_start = 0, fkey_end = 0;
4498 Lisp_Object fkey_map;
4499
4500 /* Likewise, for key_translation_map. */
4501 int keytran_start = 0, keytran_end = 0;
4502 Lisp_Object keytran_map;
4503
4504 /* If we receive a ``switch-frame'' event in the middle of a key sequence,
4505 we put it off for later. While we're reading, we keep the event here. */
4506 Lisp_Object delayed_switch_frame;
4507
4508 /* See the comment below... */
4509 #if defined (GOBBLE_FIRST_EVENT)
4510 Lisp_Object first_event;
4511 #endif
4512
4513 Lisp_Object original_uppercase;
4514 int original_uppercase_position = -1;
4515
4516 /* Gets around Microsoft compiler limitations. */
4517 int dummyflag = 0;
4518
4519 struct buffer *starting_buffer;
4520
4521 /* Nonzero if we seem to have got the beginning of a binding
4522 in function_key_map. */
4523 int function_key_possible = 0;
4524 int key_translation_possible = 0;
4525
4526 int junk;
4527
4528 last_nonmenu_event = Qnil;
4529
4530 delayed_switch_frame = Qnil;
4531 fkey_map = Vfunction_key_map;
4532 keytran_map = Vkey_translation_map;
4533
4534 /* If there is no function-key-map, turn off function key scanning. */
4535 if (NILP (Fkeymapp (Vfunction_key_map)))
4536 fkey_start = fkey_end = bufsize + 1;
4537
4538 /* If there is no key-translation-map, turn off scanning. */
4539 if (NILP (Fkeymapp (Vkey_translation_map)))
4540 keytran_start = keytran_end = bufsize + 1;
4541
4542 if (INTERACTIVE)
4543 {
4544 if (!NILP (prompt))
4545 echo_prompt (XSTRING (prompt)->data);
4546 else if (cursor_in_echo_area && echo_keystrokes)
4547 /* This doesn't put in a dash if the echo buffer is empty, so
4548 you don't always see a dash hanging out in the minibuffer. */
4549 echo_dash ();
4550 }
4551
4552 /* Record the initial state of the echo area and this_command_keys;
4553 we will need to restore them if we replay a key sequence. */
4554 if (INTERACTIVE)
4555 echo_start = echo_length ();
4556 keys_start = this_command_key_count;
4557
4558 #if defined (GOBBLE_FIRST_EVENT)
4559 /* This doesn't quite work, because some of the things that read_char
4560 does cannot safely be bypassed. It seems too risky to try to make
4561 this work right. */
4562
4563 /* Read the first char of the sequence specially, before setting
4564 up any keymaps, in case a filter runs and switches buffers on us. */
4565 first_event = read_char (NILP (prompt), 0, submaps, last_nonmenu_event,
4566 &junk);
4567 #endif /* GOBBLE_FIRST_EVENT */
4568
4569 orig_local_map = get_local_map (PT, current_buffer);
4570
4571 /* We jump here when the key sequence has been thoroughly changed, and
4572 we need to rescan it starting from the beginning. When we jump here,
4573 keybuf[0..mock_input] holds the sequence we should reread. */
4574 replay_sequence:
4575
4576 starting_buffer = current_buffer;
4577 function_key_possible = 0;
4578 key_translation_possible = 0;
4579
4580 /* Build our list of keymaps.
4581 If we recognize a function key and replace its escape sequence in
4582 keybuf with its symbol, or if the sequence starts with a mouse
4583 click and we need to switch buffers, we jump back here to rebuild
4584 the initial keymaps from the current buffer. */
4585 {
4586 Lisp_Object *maps;
4587
4588 if (!NILP (Voverriding_local_map))
4589 {
4590 nmaps = 2;
4591 if (nmaps > nmaps_allocated)
4592 {
4593 submaps = (Lisp_Object *) alloca (nmaps * sizeof (submaps[0]));
4594 defs = (Lisp_Object *) alloca (nmaps * sizeof (defs[0]));
4595 nmaps_allocated = nmaps;
4596 }
4597 submaps[0] = Voverriding_local_map;
4598 }
4599 else
4600 {
4601 nmaps = current_minor_maps (0, &maps) + 2;
4602 if (nmaps > nmaps_allocated)
4603 {
4604 submaps = (Lisp_Object *) alloca (nmaps * sizeof (submaps[0]));
4605 defs = (Lisp_Object *) alloca (nmaps * sizeof (defs[0]));
4606 nmaps_allocated = nmaps;
4607 }
4608 bcopy (maps, submaps, (nmaps - 2) * sizeof (submaps[0]));
4609 #ifdef USE_TEXT_PROPERTIES
4610 submaps[nmaps-2] = orig_local_map;
4611 #else
4612 submaps[nmaps-2] = current_buffer->keymap;
4613 #endif
4614 }
4615 submaps[nmaps-1] = current_global_map;
4616 }
4617
4618 /* Find an accurate initial value for first_binding. */
4619 for (first_binding = 0; first_binding < nmaps; first_binding++)
4620 if (! NILP (submaps[first_binding]))
4621 break;
4622
4623 /* Start from the beginning in keybuf. */
4624 t = 0;
4625
4626 /* These are no-ops the first time through, but if we restart, they
4627 revert the echo area and this_command_keys to their original state. */
4628 this_command_key_count = keys_start;
4629 if (INTERACTIVE && t < mock_input)
4630 echo_truncate (echo_start);
4631
4632 /* If the best binding for the current key sequence is a keymap, or
4633 we may be looking at a function key's escape sequence, keep on
4634 reading. */
4635 while ((first_binding < nmaps && ! NILP (submaps[first_binding]))
4636 || (first_binding >= nmaps
4637 && fkey_start < t
4638 /* mock input is never part of a function key's sequence. */
4639 && mock_input <= fkey_start)
4640 || (first_binding >= nmaps
4641 && keytran_start < t && key_translation_possible)
4642 /* Don't return in the middle of a possible function key sequence,
4643 if the only bindings we found were via case conversion.
4644 Thus, if ESC O a has a function-key-map translation
4645 and ESC o has a binding, don't return after ESC O,
4646 so that we can translate ESC O plus the next character. */
4647 )
4648 {
4649 Lisp_Object key;
4650 int used_mouse_menu = 0;
4651
4652 /* Where the last real key started. If we need to throw away a
4653 key that has expanded into more than one element of keybuf
4654 (say, a mouse click on the mode line which is being treated
4655 as [mode-line (mouse-...)], then we backtrack to this point
4656 of keybuf. */
4657 int last_real_key_start;
4658
4659 /* These variables are analogous to echo_start and keys_start;
4660 while those allow us to restart the entire key sequence,
4661 echo_local_start and keys_local_start allow us to throw away
4662 just one key. */
4663 int echo_local_start, keys_local_start, local_first_binding;
4664
4665 if (t >= bufsize)
4666 error ("key sequence too long");
4667
4668 if (INTERACTIVE)
4669 echo_local_start = echo_length ();
4670 keys_local_start = this_command_key_count;
4671 local_first_binding = first_binding;
4672
4673 replay_key:
4674 /* These are no-ops, unless we throw away a keystroke below and
4675 jumped back up to replay_key; in that case, these restore the
4676 variables to their original state, allowing us to replay the
4677 loop. */
4678 if (INTERACTIVE && t < mock_input)
4679 echo_truncate (echo_local_start);
4680 this_command_key_count = keys_local_start;
4681 first_binding = local_first_binding;
4682
4683 /* By default, assume each event is "real". */
4684 last_real_key_start = t;
4685
4686 /* Does mock_input indicate that we are re-reading a key sequence? */
4687 if (t < mock_input)
4688 {
4689 key = keybuf[t];
4690 add_command_key (key);
4691 if (echo_keystrokes)
4692 echo_char (key);
4693 }
4694
4695 /* If not, we should actually read a character. */
4696 else
4697 {
4698 struct buffer *buf = current_buffer;
4699
4700 key = read_char (NILP (prompt), nmaps, submaps, last_nonmenu_event,
4701 &used_mouse_menu);
4702
4703 /* read_char returns t when it shows a menu and the user rejects it.
4704 Just return -1. */
4705 if (EQ (key, Qt))
4706 return -1;
4707
4708 /* read_char returns -1 at the end of a macro.
4709 Emacs 18 handles this by returning immediately with a
4710 zero, so that's what we'll do. */
4711 if (INTEGERP (key) && XINT (key) == -1)
4712 {
4713 t = 0;
4714 /* The Microsoft C compiler can't handle the goto that
4715 would go here. */
4716 dummyflag = 1;
4717 break;
4718 }
4719
4720 /* If the current buffer has been changed from under us, the
4721 keymap may have changed, so replay the sequence. */
4722 if (BUFFERP (key))
4723 {
4724 mock_input = t;
4725 goto replay_sequence;
4726 }
4727
4728 /* If we have a quit that was typed in another frame, and
4729 quit_throw_to_read_char switched buffers,
4730 replay to get the right keymap. */
4731 if (XINT (key) == quit_char && current_buffer != starting_buffer)
4732 {
4733 keybuf[t++] = key;
4734 mock_input = t;
4735 Vquit_flag = Qnil;
4736 goto replay_sequence;
4737 }
4738
4739 Vquit_flag = Qnil;
4740 }
4741
4742 /* Clicks in non-text areas get prefixed by the symbol
4743 in their CHAR-ADDRESS field. For example, a click on
4744 the mode line is prefixed by the symbol `mode-line'.
4745
4746 Furthermore, key sequences beginning with mouse clicks
4747 are read using the keymaps of the buffer clicked on, not
4748 the current buffer. So we may have to switch the buffer
4749 here.
4750
4751 When we turn one event into two events, we must make sure
4752 that neither of the two looks like the original--so that,
4753 if we replay the events, they won't be expanded again.
4754 If not for this, such reexpansion could happen either here
4755 or when user programs play with this-command-keys. */
4756 if (EVENT_HAS_PARAMETERS (key))
4757 {
4758 Lisp_Object kind;
4759
4760 kind = EVENT_HEAD_KIND (EVENT_HEAD (key));
4761 if (EQ (kind, Qmouse_click))
4762 {
4763 Lisp_Object window, posn;
4764
4765 window = POSN_WINDOW (EVENT_START (key));
4766 posn = POSN_BUFFER_POSN (EVENT_START (key));
4767 if (CONSP (posn))
4768 {
4769 /* We're looking at the second event of a
4770 sequence which we expanded before. Set
4771 last_real_key_start appropriately. */
4772 if (t > 0)
4773 last_real_key_start = t - 1;
4774 }
4775
4776 /* Key sequences beginning with mouse clicks are
4777 read using the keymaps in the buffer clicked on,
4778 not the current buffer. If we're at the
4779 beginning of a key sequence, switch buffers. */
4780 if (last_real_key_start == 0
4781 && WINDOWP (window)
4782 && BUFFERP (XWINDOW (window)->buffer)
4783 && XBUFFER (XWINDOW (window)->buffer) != current_buffer)
4784 {
4785 keybuf[t] = key;
4786 mock_input = t + 1;
4787
4788 /* Arrange to go back to the original buffer once we're
4789 done reading the key sequence. Note that we can't
4790 use save_excursion_{save,restore} here, because they
4791 save point as well as the current buffer; we don't
4792 want to save point, because redisplay may change it,
4793 to accommodate a Fset_window_start or something. We
4794 don't want to do this at the top of the function,
4795 because we may get input from a subprocess which
4796 wants to change the selected window and stuff (say,
4797 emacsclient). */
4798 record_unwind_protect (Fset_buffer, Fcurrent_buffer ());
4799
4800 set_buffer_internal (XBUFFER (XWINDOW (window)->buffer));
4801 orig_local_map = get_local_map (PT, current_buffer);
4802 goto replay_sequence;
4803 }
4804 /* For a mouse click, get the local text-property keymap
4805 of the place clicked on, rather than point. */
4806 if (last_real_key_start == 0 && CONSP (XCONS (key)->cdr)
4807 && ! localized_local_map)
4808 {
4809 Lisp_Object map_here, start, pos;
4810
4811 localized_local_map = 1;
4812 start = EVENT_START (key);
4813 if (CONSP (start) && CONSP (XCONS (start)->cdr))
4814 {
4815 pos = POSN_BUFFER_POSN (start);
4816 if (INTEGERP (pos))
4817 {
4818 map_here = get_local_map (XINT (pos), current_buffer);
4819 if (!EQ (map_here, orig_local_map))
4820 {
4821 orig_local_map = map_here;
4822 keybuf[t] = key;
4823 mock_input = t + 1;
4824
4825 goto replay_sequence;
4826 }
4827 }
4828 }
4829 }
4830
4831 /* Expand mode-line and scroll-bar events into two events:
4832 use posn as a fake prefix key. */
4833 if (SYMBOLP (posn))
4834 {
4835 if (t + 1 >= bufsize)
4836 error ("key sequence too long");
4837 keybuf[t] = posn;
4838 keybuf[t+1] = key;
4839 mock_input = t + 2;
4840
4841 /* Zap the position in key, so we know that we've
4842 expanded it, and don't try to do so again. */
4843 POSN_BUFFER_POSN (EVENT_START (key))
4844 = Fcons (posn, Qnil);
4845 goto replay_key;
4846 }
4847 }
4848 else if (EQ (kind, Qswitch_frame))
4849 {
4850 /* If we're at the beginning of a key sequence, go
4851 ahead and return this event. If we're in the
4852 midst of a key sequence, delay it until the end. */
4853 if (t > 0)
4854 {
4855 delayed_switch_frame = key;
4856 goto replay_key;
4857 }
4858 }
4859 else if (CONSP (XCONS (key)->cdr)
4860 && CONSP (EVENT_START (key))
4861 && CONSP (XCONS (EVENT_START (key))->cdr))
4862 {
4863 Lisp_Object posn;
4864
4865 posn = POSN_BUFFER_POSN (EVENT_START (key));
4866 /* Handle menu-bar events:
4867 insert the dummy prefix event `menu-bar'. */
4868 if (EQ (posn, Qmenu_bar))
4869 {
4870 if (t + 1 >= bufsize)
4871 error ("key sequence too long");
4872 /* Run the Lucid hook. */
4873 if (!NILP (Vrun_hooks))
4874 call1 (Vrun_hooks, Qactivate_menubar_hook);
4875 /* If it has changed current-menubar from previous value,
4876 really recompute the menubar from the value. */
4877 if (! NILP (Vlucid_menu_bar_dirty_flag))
4878 call0 (Qrecompute_lucid_menubar);
4879 keybuf[t] = posn;
4880 keybuf[t+1] = key;
4881
4882 /* Zap the position in key, so we know that we've
4883 expanded it, and don't try to do so again. */
4884 POSN_BUFFER_POSN (EVENT_START (key))
4885 = Fcons (posn, Qnil);
4886
4887 mock_input = t + 2;
4888 goto replay_sequence;
4889 }
4890 else if (CONSP (posn))
4891 {
4892 /* We're looking at the second event of a
4893 sequence which we expanded before. Set
4894 last_real_key_start appropriately. */
4895 if (last_real_key_start == t && t > 0)
4896 last_real_key_start = t - 1;
4897 }
4898 }
4899 }
4900
4901 /* We have finally decided that KEY is something we might want
4902 to look up. */
4903 first_binding = (follow_key (key,
4904 nmaps - first_binding,
4905 submaps + first_binding,
4906 defs + first_binding,
4907 submaps + first_binding)
4908 + first_binding);
4909
4910 /* If KEY wasn't bound, we'll try some fallbacks. */
4911 if (first_binding >= nmaps)
4912 {
4913 Lisp_Object head;
4914
4915 head = EVENT_HEAD (key);
4916 if (EQ (head, Vhelp_char))
4917 {
4918 read_key_sequence_cmd = Vprefix_help_command;
4919 keybuf[t++] = key;
4920 last_nonmenu_event = key;
4921 /* The Microsoft C compiler can't handle the goto that
4922 would go here. */
4923 dummyflag = 1;
4924 break;
4925 }
4926
4927 if (SYMBOLP (head))
4928 {
4929 Lisp_Object breakdown;
4930 int modifiers;
4931
4932 breakdown = parse_modifiers (head);
4933 modifiers = XINT (XCONS (XCONS (breakdown)->cdr)->car);
4934 /* Attempt to reduce an unbound mouse event to a simpler
4935 event that is bound:
4936 Drags reduce to clicks.
4937 Double-clicks reduce to clicks.
4938 Triple-clicks reduce to double-clicks, then to clicks.
4939 Down-clicks are eliminated.
4940 Double-downs reduce to downs, then are eliminated.
4941 Triple-downs reduce to double-downs, then to downs,
4942 then are eliminated. */
4943 if (modifiers & (down_modifier | drag_modifier
4944 | double_modifier | triple_modifier))
4945 {
4946 while (modifiers & (down_modifier | drag_modifier
4947 | double_modifier | triple_modifier))
4948 {
4949 Lisp_Object new_head, new_click;
4950 if (modifiers & triple_modifier)
4951 modifiers ^= (double_modifier | triple_modifier);
4952 else if (modifiers & double_modifier)
4953 modifiers &= ~double_modifier;
4954 else if (modifiers & drag_modifier)
4955 modifiers &= ~drag_modifier;
4956 else
4957 {
4958 /* Dispose of this `down' event by simply jumping
4959 back to replay_key, to get another event.
4960
4961 Note that if this event came from mock input,
4962 then just jumping back to replay_key will just
4963 hand it to us again. So we have to wipe out any
4964 mock input.
4965
4966 We could delete keybuf[t] and shift everything
4967 after that to the left by one spot, but we'd also
4968 have to fix up any variable that points into
4969 keybuf, and shifting isn't really necessary
4970 anyway.
4971
4972 Adding prefixes for non-textual mouse clicks
4973 creates two characters of mock input, and both
4974 must be thrown away. If we're only looking at
4975 the prefix now, we can just jump back to
4976 replay_key. On the other hand, if we've already
4977 processed the prefix, and now the actual click
4978 itself is giving us trouble, then we've lost the
4979 state of the keymaps we want to backtrack to, and
4980 we need to replay the whole sequence to rebuild
4981 it.
4982
4983 Beyond that, only function key expansion could
4984 create more than two keys, but that should never
4985 generate mouse events, so it's okay to zero
4986 mock_input in that case too.
4987
4988 Isn't this just the most wonderful code ever? */
4989 if (t == last_real_key_start)
4990 {
4991 mock_input = 0;
4992 goto replay_key;
4993 }
4994 else
4995 {
4996 mock_input = last_real_key_start;
4997 goto replay_sequence;
4998 }
4999 }
5000
5001 new_head
5002 = apply_modifiers (modifiers, XCONS (breakdown)->car);
5003 new_click
5004 = Fcons (new_head, Fcons (EVENT_START (key), Qnil));
5005
5006 /* Look for a binding for this new key. follow_key
5007 promises that it didn't munge submaps the
5008 last time we called it, since key was unbound. */
5009 first_binding
5010 = (follow_key (new_click,
5011 nmaps - local_first_binding,
5012 submaps + local_first_binding,
5013 defs + local_first_binding,
5014 submaps + local_first_binding)
5015 + local_first_binding);
5016
5017 /* If that click is bound, go for it. */
5018 if (first_binding < nmaps)
5019 {
5020 key = new_click;
5021 break;
5022 }
5023 /* Otherwise, we'll leave key set to the drag event. */
5024 }
5025 }
5026 }
5027 }
5028
5029 keybuf[t++] = key;
5030 /* Normally, last_nonmenu_event gets the previous key we read.
5031 But when a mouse popup menu is being used,
5032 we don't update last_nonmenu_event; it continues to hold the mouse
5033 event that preceded the first level of menu. */
5034 if (!used_mouse_menu)
5035 last_nonmenu_event = key;
5036
5037 /* If the sequence is unbound, see if we can hang a function key
5038 off the end of it. We only want to scan real keyboard input
5039 for function key sequences, so if mock_input says that we're
5040 re-reading old events, don't examine it. */
5041 if (first_binding >= nmaps
5042 && t >= mock_input)
5043 {
5044 Lisp_Object fkey_next;
5045
5046 /* Continue scan from fkey_end until we find a bound suffix.
5047 If we fail, increment fkey_start
5048 and start fkey_end from there. */
5049 while (fkey_end < t)
5050 {
5051 Lisp_Object key;
5052
5053 key = keybuf[fkey_end++];
5054 /* Look up meta-characters by prefixing them
5055 with meta_prefix_char. I hate this. */
5056 if (INTEGERP (key) && XINT (key) & meta_modifier)
5057 {
5058 fkey_next
5059 = get_keymap_1
5060 (get_keyelt
5061 (access_keymap (fkey_map, meta_prefix_char, 1, 0)),
5062 0, 1);
5063 XSETFASTINT (key, XFASTINT (key) & ~meta_modifier);
5064 }
5065 else
5066 fkey_next = fkey_map;
5067
5068 fkey_next
5069 = get_keyelt (access_keymap (fkey_next, key, 1, 0));
5070
5071 #if 0 /* I didn't turn this on, because it might cause trouble
5072 for the mapping of return into C-m and tab into C-i. */
5073 /* Optionally don't map function keys into other things.
5074 This enables the user to redefine kp- keys easily. */
5075 if (SYMBOLP (key) && !NILP (Vinhibit_function_key_mapping))
5076 fkey_next = Qnil;
5077 #endif
5078
5079 /* If the function key map gives a function, not an
5080 array, then call the function with no args and use
5081 its value instead. */
5082 if (SYMBOLP (fkey_next) && ! NILP (Ffboundp (fkey_next))
5083 && fkey_end == t)
5084 {
5085 struct gcpro gcpro1, gcpro2, gcpro3;
5086 Lisp_Object tem;
5087 tem = fkey_next;
5088
5089 GCPRO3 (fkey_map, keytran_map, delayed_switch_frame);
5090 fkey_next = call1 (fkey_next, prompt);
5091 UNGCPRO;
5092 /* If the function returned something invalid,
5093 barf--don't ignore it.
5094 (To ignore it safely, we would need to gcpro a bunch of
5095 other variables.) */
5096 if (! (VECTORP (fkey_next) || STRINGP (fkey_next)))
5097 error ("Function in function-key-map returns invalid key sequence");
5098 }
5099
5100 function_key_possible = ! NILP (fkey_next);
5101
5102 /* If keybuf[fkey_start..fkey_end] is bound in the
5103 function key map and it's a suffix of the current
5104 sequence (i.e. fkey_end == t), replace it with
5105 the binding and restart with fkey_start at the end. */
5106 if ((VECTORP (fkey_next) || STRINGP (fkey_next))
5107 && fkey_end == t)
5108 {
5109 int len = XFASTINT (Flength (fkey_next));
5110
5111 t = fkey_start + len;
5112 if (t >= bufsize)
5113 error ("key sequence too long");
5114
5115 if (VECTORP (fkey_next))
5116 bcopy (XVECTOR (fkey_next)->contents,
5117 keybuf + fkey_start,
5118 (t - fkey_start) * sizeof (keybuf[0]));
5119 else if (STRINGP (fkey_next))
5120 {
5121 int i;
5122
5123 for (i = 0; i < len; i++)
5124 XSETFASTINT (keybuf[fkey_start + i],
5125 XSTRING (fkey_next)->data[i]);
5126 }
5127
5128 mock_input = t;
5129 fkey_start = fkey_end = t;
5130 fkey_map = Vfunction_key_map;
5131
5132 /* Do pass the results through key-translation-map. */
5133 keytran_start = keytran_end = 0;
5134 keytran_map = Vkey_translation_map;
5135
5136 goto replay_sequence;
5137 }
5138
5139 fkey_map = get_keymap_1 (fkey_next, 0, 1);
5140
5141 /* If we no longer have a bound suffix, try a new positions for
5142 fkey_start. */
5143 if (NILP (fkey_map))
5144 {
5145 fkey_end = ++fkey_start;
5146 fkey_map = Vfunction_key_map;
5147 function_key_possible = 0;
5148 }
5149 }
5150 }
5151
5152 /* Look for this sequence in key-translation-map. */
5153 {
5154 Lisp_Object keytran_next;
5155
5156 /* Scan from keytran_end until we find a bound suffix. */
5157 while (keytran_end < t)
5158 {
5159 Lisp_Object key;
5160
5161 key = keybuf[keytran_end++];
5162 /* Look up meta-characters by prefixing them
5163 with meta_prefix_char. I hate this. */
5164 if (INTEGERP (key) && XINT (key) & meta_modifier)
5165 {
5166 keytran_next
5167 = get_keymap_1
5168 (get_keyelt
5169 (access_keymap (keytran_map, meta_prefix_char, 1, 0)),
5170 0, 1);
5171 XSETFASTINT (key, XFASTINT (key) & ~meta_modifier);
5172 }
5173 else
5174 keytran_next = keytran_map;
5175
5176 keytran_next
5177 = get_keyelt (access_keymap (keytran_next, key, 1, 0));
5178
5179 /* If the key translation map gives a function, not an
5180 array, then call the function with no args and use
5181 its value instead. */
5182 if (SYMBOLP (keytran_next) && ! NILP (Ffboundp (keytran_next))
5183 && keytran_end == t)
5184 {
5185 struct gcpro gcpro1, gcpro2, gcpro3;
5186 Lisp_Object tem;
5187 tem = keytran_next;
5188
5189 GCPRO3 (fkey_map, keytran_map, delayed_switch_frame);
5190 keytran_next = call1 (keytran_next, prompt);
5191 UNGCPRO;
5192 /* If the function returned something invalid,
5193 barf--don't ignore it.
5194 (To ignore it safely, we would need to gcpro a bunch of
5195 other variables.) */
5196 if (! (VECTORP (keytran_next) || STRINGP (keytran_next)))
5197 error ("Function in key-translation-map returns invalid key sequence");
5198 }
5199
5200 key_translation_possible = ! NILP (keytran_next);
5201
5202 /* If keybuf[keytran_start..keytran_end] is bound in the
5203 key translation map and it's a suffix of the current
5204 sequence (i.e. keytran_end == t), replace it with
5205 the binding and restart with keytran_start at the end. */
5206 if ((VECTORP (keytran_next) || STRINGP (keytran_next))
5207 && keytran_end == t)
5208 {
5209 int len = XFASTINT (Flength (keytran_next));
5210
5211 t = keytran_start + len;
5212 if (t >= bufsize)
5213 error ("key sequence too long");
5214
5215 if (VECTORP (keytran_next))
5216 bcopy (XVECTOR (keytran_next)->contents,
5217 keybuf + keytran_start,
5218 (t - keytran_start) * sizeof (keybuf[0]));
5219 else if (STRINGP (keytran_next))
5220 {
5221 int i;
5222
5223 for (i = 0; i < len; i++)
5224 XSETFASTINT (keybuf[keytran_start + i],
5225 XSTRING (keytran_next)->data[i]);
5226 }
5227
5228 mock_input = t;
5229 keytran_start = keytran_end = t;
5230 keytran_map = Vkey_translation_map;
5231
5232 /* Don't pass the results of key-translation-map
5233 through function-key-map. */
5234 fkey_start = fkey_end = t;
5235 fkey_map = Vkey_translation_map;
5236
5237 goto replay_sequence;
5238 }
5239
5240 keytran_map = get_keymap_1 (keytran_next, 0, 1);
5241
5242 /* If we no longer have a bound suffix, try a new positions for
5243 keytran_start. */
5244 if (NILP (keytran_map))
5245 {
5246 keytran_end = ++keytran_start;
5247 keytran_map = Vkey_translation_map;
5248 key_translation_possible = 0;
5249 }
5250 }
5251 }
5252
5253 /* If KEY is not defined in any of the keymaps,
5254 and cannot be part of a function key or translation,
5255 and is an upper case letter
5256 use the corresponding lower-case letter instead. */
5257 if (first_binding == nmaps && ! function_key_possible
5258 && ! key_translation_possible
5259 && INTEGERP (key)
5260 && ((((XINT (key) & 0x3ffff)
5261 < XSTRING (current_buffer->downcase_table)->size)
5262 && UPPERCASEP (XINT (key) & 0x3ffff))
5263 || (XINT (key) & shift_modifier)))
5264 {
5265 original_uppercase = key;
5266 original_uppercase_position = t - 1;
5267
5268 if (XINT (key) & shift_modifier)
5269 XSETINT (key, XINT (key) & ~shift_modifier);
5270 else
5271 XSETINT (key, (DOWNCASE (XINT (key) & 0x3ffff)
5272 | (XINT (key) & ~0x3ffff)));
5273
5274 keybuf[t - 1] = key;
5275 mock_input = t;
5276 goto replay_sequence;
5277 }
5278 /* If KEY is not defined in any of the keymaps,
5279 and cannot be part of a function key or translation,
5280 and is a shifted function key,
5281 use the corresponding unshifted function key instead. */
5282 if (first_binding == nmaps && ! function_key_possible
5283 && ! key_translation_possible
5284 && SYMBOLP (key))
5285 {
5286 Lisp_Object breakdown;
5287 int modifiers;
5288
5289 original_uppercase = key;
5290 original_uppercase_position = t - 1;
5291
5292 breakdown = parse_modifiers (key);
5293 modifiers = XINT (XCONS (XCONS (breakdown)->cdr)->car);
5294 if (modifiers & shift_modifier)
5295 {
5296 modifiers &= ~shift_modifier;
5297 key = apply_modifiers (make_number (modifiers),
5298 XCONS (breakdown)->car);
5299
5300 keybuf[t - 1] = key;
5301 mock_input = t;
5302 goto replay_sequence;
5303 }
5304 }
5305 }
5306
5307 if (!dummyflag)
5308 read_key_sequence_cmd = (first_binding < nmaps
5309 ? defs[first_binding]
5310 : Qnil);
5311
5312 unread_switch_frame = delayed_switch_frame;
5313 unbind_to (count, Qnil);
5314
5315 if (dont_downcase_last && t - 1 == original_uppercase_position)
5316 keybuf[t - 1] = original_uppercase;
5317
5318 /* Occasionally we fabricate events, perhaps by expanding something
5319 according to function-key-map, or by adding a prefix symbol to a
5320 mouse click in the scroll bar or modeline. In this cases, return
5321 the entire generated key sequence, even if we hit an unbound
5322 prefix or a definition before the end. This means that you will
5323 be able to push back the event properly, and also means that
5324 read-key-sequence will always return a logical unit.
5325
5326 Better ideas? */
5327 for (; t < mock_input; t++)
5328 {
5329 if (echo_keystrokes)
5330 echo_char (keybuf[t]);
5331 add_command_key (keybuf[t]);
5332 }
5333
5334 return t;
5335 }
5336
5337 #if 0 /* This doc string is too long for some compilers.
5338 This commented-out definition serves for DOC. */
5339 DEFUN ("read-key-sequence", Fread_key_sequence, Sread_key_sequence, 1, 2, 0,
5340 "Read a sequence of keystrokes and return as a string or vector.\n\
5341 The sequence is sufficient to specify a non-prefix command in the\n\
5342 current local and global maps.\n\
5343 \n\
5344 First arg PROMPT is a prompt string. If nil, do not prompt specially.\n\
5345 Second (optional) arg CONTINUE-ECHO, if non-nil, means this key echos\n\
5346 as a continuation of the previous key.\n\
5347 \n\
5348 The third (optional) arg DONT-DOWNCASE-LAST, if non-nil, means do not\n\
5349 convert the last event to lower case. (Normally any upper case event\n\
5350 is converted to lower case if the original event is undefined and the lower\n\
5351 case equivalent is defined.) A non-nil value is appropriate for reading\n\
5352 a key sequence to be defined.\n\
5353 \n\
5354 A C-g typed while in this function is treated like any other character,\n\
5355 and `quit-flag' is not set.\n\
5356 \n\
5357 If the key sequence starts with a mouse click, then the sequence is read\n\
5358 using the keymaps of the buffer of the window clicked in, not the buffer\n\
5359 of the selected window as normal.\n\
5360 ""\n\
5361 `read-key-sequence' drops unbound button-down events, since you normally\n\
5362 only care about the click or drag events which follow them. If a drag\n\
5363 or multi-click event is unbound, but the corresponding click event would\n\
5364 be bound, `read-key-sequence' turns the event into a click event at the\n\
5365 drag's starting position. This means that you don't have to distinguish\n\
5366 between click and drag, double, or triple events unless you want to.\n\
5367 \n\
5368 `read-key-sequence' prefixes mouse events on mode lines, the vertical\n\
5369 lines separating windows, and scroll bars with imaginary keys\n\
5370 `mode-line', `vertical-line', and `vertical-scroll-bar'.\n\
5371 \n\
5372 If the user switches frames in the middle of a key sequence, the\n\
5373 frame-switch event is put off until after the current key sequence.\n\
5374 \n\
5375 `read-key-sequence' checks `function-key-map' for function key\n\
5376 sequences, where they wouldn't conflict with ordinary bindings. See\n\
5377 `function-key-map' for more details.")
5378 (prompt, continue_echo)
5379 #endif
5380
5381 DEFUN ("read-key-sequence", Fread_key_sequence, Sread_key_sequence, 1, 3, 0,
5382 0)
5383 (prompt, continue_echo, dont_downcase_last)
5384 Lisp_Object prompt, continue_echo, dont_downcase_last;
5385 {
5386 Lisp_Object keybuf[30];
5387 register int i;
5388 struct gcpro gcpro1, gcpro2;
5389
5390 if (!NILP (prompt))
5391 CHECK_STRING (prompt, 0);
5392 QUIT;
5393
5394 bzero (keybuf, sizeof keybuf);
5395 GCPRO1 (keybuf[0]);
5396 gcpro1.nvars = (sizeof keybuf/sizeof (keybuf[0]));
5397
5398 if (NILP (continue_echo))
5399 this_command_key_count = 0;
5400
5401 i = read_key_sequence (keybuf, (sizeof keybuf/sizeof (keybuf[0])),
5402 prompt, ! NILP (dont_downcase_last));
5403
5404 if (i == -1)
5405 {
5406 Vquit_flag = Qt;
5407 QUIT;
5408 }
5409 UNGCPRO;
5410 return make_event_array (i, keybuf);
5411 }
5412 \f
5413 DEFUN ("command-execute", Fcommand_execute, Scommand_execute, 1, 2, 0,
5414 "Execute CMD as an editor command.\n\
5415 CMD must be a symbol that satisfies the `commandp' predicate.\n\
5416 Optional second arg RECORD-FLAG non-nil\n\
5417 means unconditionally put this command in `command-history'.\n\
5418 Otherwise, that is done only if an arg is read using the minibuffer.")
5419 (cmd, record)
5420 Lisp_Object cmd, record;
5421 {
5422 register Lisp_Object final;
5423 register Lisp_Object tem;
5424 Lisp_Object prefixarg;
5425 struct backtrace backtrace;
5426 extern int debug_on_next_call;
5427
5428 prefixarg = current_perdisplay->Vprefix_arg;
5429 current_perdisplay->Vprefix_arg = Qnil;
5430 current_perdisplay->Vcurrent_prefix_arg = prefixarg;
5431 debug_on_next_call = 0;
5432
5433 if (SYMBOLP (cmd))
5434 {
5435 tem = Fget (cmd, Qdisabled);
5436 if (!NILP (tem) && !NILP (Vrun_hooks))
5437 return call1 (Vrun_hooks, Qdisabled_command_hook);
5438 }
5439
5440 while (1)
5441 {
5442 final = Findirect_function (cmd);
5443
5444 if (CONSP (final) && (tem = Fcar (final), EQ (tem, Qautoload)))
5445 do_autoload (final, cmd);
5446 else
5447 break;
5448 }
5449
5450 if (STRINGP (final) || VECTORP (final))
5451 {
5452 /* If requested, place the macro in the command history. For
5453 other sorts of commands, call-interactively takes care of
5454 this. */
5455 if (!NILP (record))
5456 Vcommand_history
5457 = Fcons (Fcons (Qexecute_kbd_macro,
5458 Fcons (final, Fcons (prefixarg, Qnil))),
5459 Vcommand_history);
5460
5461 return Fexecute_kbd_macro (final, prefixarg);
5462 }
5463 if (CONSP (final) || SUBRP (final) || COMPILEDP (final))
5464 {
5465 backtrace.next = backtrace_list;
5466 backtrace_list = &backtrace;
5467 backtrace.function = &Qcall_interactively;
5468 backtrace.args = &cmd;
5469 backtrace.nargs = 1;
5470 backtrace.evalargs = 0;
5471
5472 tem = Fcall_interactively (cmd, record);
5473
5474 backtrace_list = backtrace.next;
5475 return tem;
5476 }
5477 return Qnil;
5478 }
5479 \f
5480 DEFUN ("execute-extended-command", Fexecute_extended_command, Sexecute_extended_command,
5481 1, 1, "P",
5482 "Read function name, then read its arguments and call it.")
5483 (prefixarg)
5484 Lisp_Object prefixarg;
5485 {
5486 Lisp_Object function;
5487 char buf[40];
5488 Lisp_Object saved_keys;
5489 struct gcpro gcpro1;
5490
5491 saved_keys = Fvector (this_command_key_count,
5492 XVECTOR (this_command_keys)->contents);
5493 buf[0] = 0;
5494 GCPRO1 (saved_keys);
5495
5496 if (EQ (prefixarg, Qminus))
5497 strcpy (buf, "- ");
5498 else if (CONSP (prefixarg) && XINT (XCONS (prefixarg)->car) == 4)
5499 strcpy (buf, "C-u ");
5500 else if (CONSP (prefixarg) && INTEGERP (XCONS (prefixarg)->car))
5501 sprintf (buf, "%d ", XINT (XCONS (prefixarg)->car));
5502 else if (INTEGERP (prefixarg))
5503 sprintf (buf, "%d ", XINT (prefixarg));
5504
5505 /* This isn't strictly correct if execute-extended-command
5506 is bound to anything else. Perhaps it should use
5507 this_command_keys? */
5508 strcat (buf, "M-x ");
5509
5510 /* Prompt with buf, and then read a string, completing from and
5511 restricting to the set of all defined commands. Don't provide
5512 any initial input. Save the command read on the extended-command
5513 history list. */
5514 function = Fcompleting_read (build_string (buf),
5515 Vobarray, Qcommandp,
5516 Qt, Qnil, Qextended_command_history);
5517
5518 /* Set this_command_keys to the concatenation of saved_keys and
5519 function, followed by a RET. */
5520 {
5521 struct Lisp_String *str;
5522 Lisp_Object *keys;
5523 int i;
5524 Lisp_Object tem;
5525
5526 this_command_key_count = 0;
5527
5528 keys = XVECTOR (saved_keys)->contents;
5529 for (i = 0; i < XVECTOR (saved_keys)->size; i++)
5530 add_command_key (keys[i]);
5531
5532 str = XSTRING (function);
5533 for (i = 0; i < str->size; i++)
5534 {
5535 XSETFASTINT (tem, str->data[i]);
5536 add_command_key (tem);
5537 }
5538
5539 XSETFASTINT (tem, '\015');
5540 add_command_key (tem);
5541 }
5542
5543 UNGCPRO;
5544
5545 function = Fintern (function, Qnil);
5546 current_perdisplay->Vprefix_arg = prefixarg;
5547 this_command = function;
5548
5549 return Fcommand_execute (function, Qt);
5550 }
5551 \f
5552
5553 detect_input_pending ()
5554 {
5555 if (!input_pending)
5556 get_input_pending (&input_pending);
5557
5558 return input_pending;
5559 }
5560
5561 /* This is called in some cases before a possible quit.
5562 It cases the next call to detect_input_pending to recompute input_pending.
5563 So calling this function unnecessarily can't do any harm. */
5564 clear_input_pending ()
5565 {
5566 input_pending = 0;
5567 }
5568
5569 DEFUN ("input-pending-p", Finput_pending_p, Sinput_pending_p, 0, 0, 0,
5570 "T if command input is currently available with no waiting.\n\
5571 Actually, the value is nil only if we can be sure that no input is available.")
5572 ()
5573 {
5574 if (!NILP (Vunread_command_events) || unread_command_char != -1)
5575 return (Qt);
5576
5577 return detect_input_pending () ? Qt : Qnil;
5578 }
5579
5580 DEFUN ("recent-keys", Frecent_keys, Srecent_keys, 0, 0, 0,
5581 "Return vector of last 100 events, not counting those from keyboard macros.")
5582 ()
5583 {
5584 Lisp_Object *keys = XVECTOR (recent_keys)->contents;
5585 Lisp_Object val;
5586
5587 if (total_keys < NUM_RECENT_KEYS)
5588 return Fvector (total_keys, keys);
5589 else
5590 {
5591 val = Fvector (NUM_RECENT_KEYS, keys);
5592 bcopy (keys + recent_keys_index,
5593 XVECTOR (val)->contents,
5594 (NUM_RECENT_KEYS - recent_keys_index) * sizeof (Lisp_Object));
5595 bcopy (keys,
5596 XVECTOR (val)->contents + NUM_RECENT_KEYS - recent_keys_index,
5597 recent_keys_index * sizeof (Lisp_Object));
5598 return val;
5599 }
5600 }
5601
5602 DEFUN ("this-command-keys", Fthis_command_keys, Sthis_command_keys, 0, 0, 0,
5603 "Return the key sequence that invoked this command.\n\
5604 The value is a string or a vector.")
5605 ()
5606 {
5607 return make_event_array (this_command_key_count,
5608 XVECTOR (this_command_keys)->contents);
5609 }
5610
5611 DEFUN ("recursion-depth", Frecursion_depth, Srecursion_depth, 0, 0, 0,
5612 "Return the current depth in recursive edits.")
5613 ()
5614 {
5615 Lisp_Object temp;
5616 XSETFASTINT (temp, command_loop_level + minibuf_level);
5617 return temp;
5618 }
5619
5620 DEFUN ("open-dribble-file", Fopen_dribble_file, Sopen_dribble_file, 1, 1,
5621 "FOpen dribble file: ",
5622 "Start writing all keyboard characters to a dribble file called FILE.\n\
5623 If FILE is nil, close any open dribble file.")
5624 (file)
5625 Lisp_Object file;
5626 {
5627 if (NILP (file))
5628 {
5629 if (dribble)
5630 {
5631 fclose (dribble);
5632 dribble = 0;
5633 }
5634 }
5635 else
5636 {
5637 file = Fexpand_file_name (file, Qnil);
5638 dribble = fopen (XSTRING (file)->data, "w");
5639 }
5640 return Qnil;
5641 }
5642
5643 DEFUN ("discard-input", Fdiscard_input, Sdiscard_input, 0, 0, 0,
5644 "Discard the contents of the terminal input buffer.\n\
5645 Also cancel any kbd macro being defined.")
5646 ()
5647 {
5648 PERDISPLAY *perd = &the_only_perdisplay;
5649 defining_kbd_macro = 0;
5650 update_mode_lines++;
5651
5652 Vunread_command_events = Qnil;
5653 unread_command_char = -1;
5654
5655 discard_tty_input ();
5656
5657 /* Without the cast, GCC complains that this assignment loses the
5658 volatile qualifier of kbd_store_ptr. Is there anything wrong
5659 with that? */
5660 perd->kbd_fetch_ptr = (struct input_event *) perd->kbd_store_ptr;
5661 Ffillarray (perd->kbd_buffer_frame_or_window, Qnil);
5662 input_pending = 0;
5663
5664 return Qnil;
5665 }
5666 \f
5667 DEFUN ("suspend-emacs", Fsuspend_emacs, Ssuspend_emacs, 0, 1, "",
5668 "Stop Emacs and return to superior process. You can resume later.\n\
5669 If `cannot-suspend' is non-nil, or if the system doesn't support job\n\
5670 control, run a subshell instead.\n\n\
5671 If optional arg STUFFSTRING is non-nil, its characters are stuffed\n\
5672 to be read as terminal input by Emacs's parent, after suspension.\n\
5673 \n\
5674 Before suspending, run the normal hook `suspend-hook'.\n\
5675 After resumption run the normal hook `suspend-resume-hook'.\n\
5676 \n\
5677 Some operating systems cannot stop the Emacs process and resume it later.\n\
5678 On such systems, Emacs starts a subshell instead of suspending.")
5679 (stuffstring)
5680 Lisp_Object stuffstring;
5681 {
5682 Lisp_Object tem;
5683 int count = specpdl_ptr - specpdl;
5684 int old_height, old_width;
5685 int width, height;
5686 struct gcpro gcpro1, gcpro2;
5687 extern init_sys_modes ();
5688
5689 if (!NILP (stuffstring))
5690 CHECK_STRING (stuffstring, 0);
5691
5692 /* Run the functions in suspend-hook. */
5693 if (!NILP (Vrun_hooks))
5694 call1 (Vrun_hooks, intern ("suspend-hook"));
5695
5696 GCPRO1 (stuffstring);
5697 get_frame_size (&old_width, &old_height);
5698 reset_sys_modes ();
5699 /* sys_suspend can get an error if it tries to fork a subshell
5700 and the system resources aren't available for that. */
5701 record_unwind_protect (init_sys_modes, 0);
5702 stuff_buffered_input (stuffstring);
5703 if (cannot_suspend)
5704 sys_subshell ();
5705 else
5706 sys_suspend ();
5707 unbind_to (count, Qnil);
5708
5709 /* Check if terminal/window size has changed.
5710 Note that this is not useful when we are running directly
5711 with a window system; but suspend should be disabled in that case. */
5712 get_frame_size (&width, &height);
5713 if (width != old_width || height != old_height)
5714 change_frame_size (selected_frame, height, width, 0, 0);
5715
5716 /* Run suspend-resume-hook. */
5717 if (!NILP (Vrun_hooks))
5718 call1 (Vrun_hooks, intern ("suspend-resume-hook"));
5719
5720 UNGCPRO;
5721 return Qnil;
5722 }
5723
5724 /* If STUFFSTRING is a string, stuff its contents as pending terminal input.
5725 Then in any case stuff anything Emacs has read ahead and not used. */
5726
5727 stuff_buffered_input (stuffstring)
5728 Lisp_Object stuffstring;
5729 {
5730 /* stuff_char works only in BSD, versions 4.2 and up. */
5731 #ifdef BSD
5732 #ifndef BSD4_1
5733 register unsigned char *p;
5734 PERDISPLAY *perd = &the_only_perdisplay; /* We really want the primary display's perd */
5735
5736 if (STRINGP (stuffstring))
5737 {
5738 register int count;
5739
5740 p = XSTRING (stuffstring)->data;
5741 count = XSTRING (stuffstring)->size;
5742 while (count-- > 0)
5743 stuff_char (*p++);
5744 stuff_char ('\n');
5745 }
5746 /* Anything we have read ahead, put back for the shell to read. */
5747 while (perd->kbd_fetch_ptr != perd->kbd_store_ptr)
5748 {
5749 if (perd->kbd_fetch_ptr == perd->kbd_buffer + KBD_BUFFER_SIZE)
5750 perd->kbd_fetch_ptr = perd->kbd_buffer;
5751 if (perd->kbd_fetch_ptr->kind == ascii_keystroke)
5752 stuff_char (perd->kbd_fetch_ptr->code);
5753 perd->kbd_fetch_ptr->kind = no_event;
5754 (XVECTOR (perd->kbd_buffer_frame_or_window)->contents[perd->kbd_fetch_ptr
5755 - perd->kbd_buffer]
5756 = Qnil);
5757 perd->kbd_fetch_ptr++;
5758 }
5759 input_pending = 0;
5760 #endif
5761 #endif /* BSD and not BSD4_1 */
5762 }
5763 \f
5764 set_waiting_for_input (time_to_clear)
5765 EMACS_TIME *time_to_clear;
5766 {
5767 input_available_clear_time = time_to_clear;
5768
5769 /* Tell interrupt_signal to throw back to read_char, */
5770 waiting_for_input = 1;
5771
5772 /* If interrupt_signal was called before and buffered a C-g,
5773 make it run again now, to avoid timing error. */
5774 if (!NILP (Vquit_flag))
5775 quit_throw_to_read_char ();
5776 }
5777
5778 clear_waiting_for_input ()
5779 {
5780 /* Tell interrupt_signal not to throw back to read_char, */
5781 waiting_for_input = 0;
5782 input_available_clear_time = 0;
5783 }
5784
5785 /* This routine is called at interrupt level in response to C-G.
5786 If interrupt_input, this is the handler for SIGINT.
5787 Otherwise, it is called from kbd_buffer_store_event,
5788 in handling SIGIO or SIGTINT.
5789
5790 If `waiting_for_input' is non zero, then unless `echoing' is nonzero,
5791 immediately throw back to read_char.
5792
5793 Otherwise it sets the Lisp variable quit-flag not-nil.
5794 This causes eval to throw, when it gets a chance.
5795 If quit-flag is already non-nil, it stops the job right away. */
5796
5797 SIGTYPE
5798 interrupt_signal ()
5799 {
5800 char c;
5801 /* Must preserve main program's value of errno. */
5802 int old_errno = errno;
5803
5804 #ifdef USG
5805 if (!read_socket_hook && NILP (Vwindow_system))
5806 {
5807 /* USG systems forget handlers when they are used;
5808 must reestablish each time */
5809 signal (SIGINT, interrupt_signal);
5810 signal (SIGQUIT, interrupt_signal);
5811 }
5812 #endif /* USG */
5813
5814 cancel_echoing ();
5815
5816 if (!NILP (Vquit_flag) && FRAME_TERMCAP_P (selected_frame))
5817 {
5818 fflush (stdout);
5819 reset_sys_modes ();
5820 sigfree ();
5821 #ifdef SIGTSTP /* Support possible in later USG versions */
5822 /*
5823 * On systems which can suspend the current process and return to the original
5824 * shell, this command causes the user to end up back at the shell.
5825 * The "Auto-save" and "Abort" questions are not asked until
5826 * the user elects to return to emacs, at which point he can save the current
5827 * job and either dump core or continue.
5828 */
5829 sys_suspend ();
5830 #else
5831 #ifdef VMS
5832 if (sys_suspend () == -1)
5833 {
5834 printf ("Not running as a subprocess;\n");
5835 printf ("you can continue or abort.\n");
5836 }
5837 #else /* not VMS */
5838 /* Perhaps should really fork an inferior shell?
5839 But that would not provide any way to get back
5840 to the original shell, ever. */
5841 printf ("No support for stopping a process on this operating system;\n");
5842 printf ("you can continue or abort.\n");
5843 #endif /* not VMS */
5844 #endif /* not SIGTSTP */
5845 #ifdef MSDOS
5846 /* We must remain inside the screen area when the internal terminal
5847 is used. Note that [Enter] is not echoed by dos. */
5848 cursor_to (0, 0);
5849 #endif
5850 printf ("Auto-save? (y or n) ");
5851 fflush (stdout);
5852 if (((c = getchar ()) & ~040) == 'Y')
5853 {
5854 Fdo_auto_save (Qt, Qnil);
5855 #ifdef MSDOS
5856 printf ("\r\nAuto-save done");
5857 #else /* not MSDOS */
5858 printf ("Auto-save done\n");
5859 #endif /* not MSDOS */
5860 }
5861 while (c != '\n') c = getchar ();
5862 #ifdef MSDOS
5863 printf ("\r\nAbort? (y or n) ");
5864 #else /* not MSDOS */
5865 #ifdef VMS
5866 printf ("Abort (and enter debugger)? (y or n) ");
5867 #else /* not VMS */
5868 printf ("Abort (and dump core)? (y or n) ");
5869 #endif /* not VMS */
5870 #endif /* not MSDOS */
5871 fflush (stdout);
5872 if (((c = getchar ()) & ~040) == 'Y')
5873 abort ();
5874 while (c != '\n') c = getchar ();
5875 #ifdef MSDOS
5876 printf ("\r\nContinuing...\r\n");
5877 #else /* not MSDOS */
5878 printf ("Continuing...\n");
5879 #endif /* not MSDOS */
5880 fflush (stdout);
5881 init_sys_modes ();
5882 }
5883 else
5884 {
5885 /* If executing a function that wants to be interrupted out of
5886 and the user has not deferred quitting by binding `inhibit-quit'
5887 then quit right away. */
5888 if (immediate_quit && NILP (Vinhibit_quit))
5889 {
5890 immediate_quit = 0;
5891 sigfree ();
5892 Fsignal (Qquit, Qnil);
5893 }
5894 else
5895 /* Else request quit when it's safe */
5896 Vquit_flag = Qt;
5897 }
5898
5899 if (waiting_for_input && !echoing)
5900 quit_throw_to_read_char ();
5901
5902 errno = old_errno;
5903 }
5904
5905 /* Handle a C-g by making read_char return C-g. */
5906
5907 quit_throw_to_read_char ()
5908 {
5909 quit_error_check ();
5910 sigfree ();
5911 /* Prevent another signal from doing this before we finish. */
5912 clear_waiting_for_input ();
5913 input_pending = 0;
5914
5915 Vunread_command_events = Qnil;
5916 unread_command_char = -1;
5917
5918 #ifdef POLL_FOR_INPUT
5919 /* May be > 1 if in recursive minibuffer. */
5920 if (poll_suppress_count == 0)
5921 abort ();
5922 #endif
5923 #ifdef MULTI_FRAME
5924 if (FRAMEP (internal_last_event_frame)
5925 && XFRAME (internal_last_event_frame) != selected_frame)
5926 Fhandle_switch_frame (make_lispy_switch_frame (internal_last_event_frame));
5927 #endif
5928
5929 _longjmp (getcjmp, 1);
5930 }
5931 \f
5932 DEFUN ("set-input-mode", Fset_input_mode, Sset_input_mode, 3, 4, 0,
5933 "Set mode of reading keyboard input.\n\
5934 First arg INTERRUPT non-nil means use input interrupts;\n\
5935 nil means use CBREAK mode.\n\
5936 Second arg FLOW non-nil means use ^S/^Q flow control for output to terminal\n\
5937 (no effect except in CBREAK mode).\n\
5938 Third arg META t means accept 8-bit input (for a Meta key).\n\
5939 META nil means ignore the top bit, on the assumption it is parity.\n\
5940 Otherwise, accept 8-bit input and don't use the top bit for Meta.\n\
5941 Optional fourth arg QUIT if non-nil specifies character to use for quitting.\n\
5942 See also `current-input-mode'.")
5943 (interrupt, flow, meta, quit)
5944 Lisp_Object interrupt, flow, meta, quit;
5945 {
5946 if (!NILP (quit)
5947 && (!INTEGERP (quit) || XINT (quit) < 0 || XINT (quit) > 0400))
5948 error ("set-input-mode: QUIT must be an ASCII character");
5949
5950 #ifdef POLL_FOR_INPUT
5951 stop_polling ();
5952 #endif
5953
5954 reset_sys_modes ();
5955 #ifdef SIGIO
5956 /* Note SIGIO has been undef'd if FIONREAD is missing. */
5957 #ifdef NO_SOCK_SIGIO
5958 if (read_socket_hook)
5959 interrupt_input = 0; /* No interrupts if reading from a socket. */
5960 else
5961 #endif /* NO_SOCK_SIGIO */
5962 interrupt_input = !NILP (interrupt);
5963 #else /* not SIGIO */
5964 interrupt_input = 0;
5965 #endif /* not SIGIO */
5966 /* Our VMS input only works by interrupts, as of now. */
5967 #ifdef VMS
5968 interrupt_input = 1;
5969 #endif
5970 flow_control = !NILP (flow);
5971 if (NILP (meta))
5972 meta_key = 0;
5973 else if (EQ (meta, Qt))
5974 meta_key = 1;
5975 else
5976 meta_key = 2;
5977 if (!NILP (quit))
5978 /* Don't let this value be out of range. */
5979 quit_char = XINT (quit) & (meta_key ? 0377 : 0177);
5980
5981 init_sys_modes ();
5982
5983 #ifdef POLL_FOR_INPUT
5984 poll_suppress_count = 1;
5985 start_polling ();
5986 #endif
5987 return Qnil;
5988 }
5989
5990 DEFUN ("current-input-mode", Fcurrent_input_mode, Scurrent_input_mode, 0, 0, 0,
5991 "Return information about the way Emacs currently reads keyboard input.\n\
5992 The value is a list of the form (INTERRUPT FLOW META QUIT), where\n\
5993 INTERRUPT is non-nil if Emacs is using interrupt-driven input; if\n\
5994 nil, Emacs is using CBREAK mode.\n\
5995 FLOW is non-nil if Emacs uses ^S/^Q flow control for output to the\n\
5996 terminal; this does not apply if Emacs uses interrupt-driven input.\n\
5997 META is t if accepting 8-bit input with 8th bit as Meta flag.\n\
5998 META nil means ignoring the top bit, on the assumption it is parity.\n\
5999 META is neither t nor nil if accepting 8-bit input and using\n\
6000 all 8 bits as the character code.\n\
6001 QUIT is the character Emacs currently uses to quit.\n\
6002 The elements of this list correspond to the arguments of\n\
6003 `set-input-mode'.")
6004 ()
6005 {
6006 Lisp_Object val[4];
6007
6008 val[0] = interrupt_input ? Qt : Qnil;
6009 val[1] = flow_control ? Qt : Qnil;
6010 val[2] = meta_key == 2 ? make_number (0) : meta_key == 1 ? Qt : Qnil;
6011 XSETFASTINT (val[3], quit_char);
6012
6013 return Flist (sizeof (val) / sizeof (val[0]), val);
6014 }
6015
6016 \f
6017 init_keyboard ()
6018 {
6019 /* This is correct before outermost invocation of the editor loop */
6020 command_loop_level = -1;
6021 immediate_quit = 0;
6022 quit_char = Ctl ('g');
6023 Vunread_command_events = Qnil;
6024 unread_command_char = -1;
6025 total_keys = 0;
6026 recent_keys_index = 0;
6027 the_only_perdisplay.kbd_buffer
6028 = (struct input_event *)xmalloc (KBD_BUFFER_SIZE
6029 * sizeof (struct input_event));
6030 the_only_perdisplay.kbd_fetch_ptr = the_only_perdisplay.kbd_buffer;
6031 the_only_perdisplay.kbd_store_ptr = the_only_perdisplay.kbd_buffer;
6032 #ifdef HAVE_MOUSE
6033 do_mouse_tracking = Qnil;
6034 #endif
6035 input_pending = 0;
6036
6037 #ifdef MULTI_FRAME
6038 /* This means that command_loop_1 won't try to select anything the first
6039 time through. */
6040 internal_last_event_frame = Qnil;
6041 Vlast_event_frame = internal_last_event_frame;
6042 #endif
6043
6044 /* If we're running a dumped Emacs, we need to clear out
6045 kbd_buffer_frame_or_window, in case some events got into it
6046 before we dumped.
6047
6048 If we're running an undumped Emacs, it hasn't been initialized by
6049 syms_of_keyboard yet. */
6050 if (initialized)
6051 {
6052 PERDISPLAY *perd;
6053 perd = &the_only_perdisplay;
6054 /* FOR_ALL_PERDISPLAYS (perd) */
6055 {
6056 Ffillarray (perd->kbd_buffer_frame_or_window, Qnil);
6057 }
6058 }
6059
6060 if (!noninteractive && !read_socket_hook && NILP (Vwindow_system))
6061 {
6062 signal (SIGINT, interrupt_signal);
6063 #if defined (HAVE_TERMIO) || defined (HAVE_TERMIOS)
6064 /* For systems with SysV TERMIO, C-g is set up for both SIGINT and
6065 SIGQUIT and we can't tell which one it will give us. */
6066 signal (SIGQUIT, interrupt_signal);
6067 #endif /* HAVE_TERMIO */
6068 }
6069 /* Note SIGIO has been undef'd if FIONREAD is missing. */
6070 #ifdef SIGIO
6071 if (!noninteractive)
6072 signal (SIGIO, input_available_signal);
6073 #endif /* SIGIO */
6074
6075 /* Use interrupt input by default, if it works and noninterrupt input
6076 has deficiencies. */
6077
6078 #ifdef INTERRUPT_INPUT
6079 interrupt_input = 1;
6080 #else
6081 interrupt_input = 0;
6082 #endif
6083
6084 /* Our VMS input only works by interrupts, as of now. */
6085 #ifdef VMS
6086 interrupt_input = 1;
6087 #endif
6088
6089 sigfree ();
6090 dribble = 0;
6091
6092 if (keyboard_init_hook)
6093 (*keyboard_init_hook) ();
6094
6095 #ifdef POLL_FOR_INPUT
6096 poll_suppress_count = 1;
6097 start_polling ();
6098 #endif
6099 }
6100
6101 /* This type's only use is in syms_of_keyboard, to initialize the
6102 event header symbols and put properties on them. */
6103 struct event_head {
6104 Lisp_Object *var;
6105 char *name;
6106 Lisp_Object *kind;
6107 };
6108
6109 struct event_head head_table[] = {
6110 &Qmouse_movement, "mouse-movement", &Qmouse_movement,
6111 &Qscroll_bar_movement, "scroll-bar-movement", &Qmouse_movement,
6112 &Qswitch_frame, "switch-frame", &Qswitch_frame,
6113 &Qdelete_frame, "delete-frame", &Qdelete_frame,
6114 &Qiconify_frame, "iconify-frame", &Qiconify_frame,
6115 &Qmake_frame_visible, "make-frame-visible", &Qmake_frame_visible,
6116 };
6117
6118 syms_of_keyboard ()
6119 {
6120 Qdisabled_command_hook = intern ("disabled-command-hook");
6121 staticpro (&Qdisabled_command_hook);
6122
6123 Qself_insert_command = intern ("self-insert-command");
6124 staticpro (&Qself_insert_command);
6125
6126 Qforward_char = intern ("forward-char");
6127 staticpro (&Qforward_char);
6128
6129 Qbackward_char = intern ("backward-char");
6130 staticpro (&Qbackward_char);
6131
6132 Qdisabled = intern ("disabled");
6133 staticpro (&Qdisabled);
6134
6135 Qundefined = intern ("undefined");
6136 staticpro (&Qundefined);
6137
6138 Qpre_command_hook = intern ("pre-command-hook");
6139 staticpro (&Qpre_command_hook);
6140
6141 Qpost_command_hook = intern ("post-command-hook");
6142 staticpro (&Qpost_command_hook);
6143
6144 Qdeferred_action_function = intern ("deferred-action-function");
6145 staticpro (&Qdeferred_action_function);
6146
6147 Qcommand_hook_internal = intern ("command-hook-internal");
6148 staticpro (&Qcommand_hook_internal);
6149
6150 Qfunction_key = intern ("function-key");
6151 staticpro (&Qfunction_key);
6152 Qmouse_click = intern ("mouse-click");
6153 staticpro (&Qmouse_click);
6154
6155 Qmenu_enable = intern ("menu-enable");
6156 staticpro (&Qmenu_enable);
6157
6158 Qmode_line = intern ("mode-line");
6159 staticpro (&Qmode_line);
6160 Qvertical_line = intern ("vertical-line");
6161 staticpro (&Qvertical_line);
6162 Qvertical_scroll_bar = intern ("vertical-scroll-bar");
6163 staticpro (&Qvertical_scroll_bar);
6164 Qmenu_bar = intern ("menu-bar");
6165 staticpro (&Qmenu_bar);
6166
6167 Qabove_handle = intern ("above-handle");
6168 staticpro (&Qabove_handle);
6169 Qhandle = intern ("handle");
6170 staticpro (&Qhandle);
6171 Qbelow_handle = intern ("below-handle");
6172 staticpro (&Qbelow_handle);
6173
6174 Qevent_kind = intern ("event-kind");
6175 staticpro (&Qevent_kind);
6176 Qevent_symbol_elements = intern ("event-symbol-elements");
6177 staticpro (&Qevent_symbol_elements);
6178 Qevent_symbol_element_mask = intern ("event-symbol-element-mask");
6179 staticpro (&Qevent_symbol_element_mask);
6180 Qmodifier_cache = intern ("modifier-cache");
6181 staticpro (&Qmodifier_cache);
6182
6183 Qrecompute_lucid_menubar = intern ("recompute-lucid-menubar");
6184 staticpro (&Qrecompute_lucid_menubar);
6185 Qactivate_menubar_hook = intern ("activate-menubar-hook");
6186 staticpro (&Qactivate_menubar_hook);
6187
6188 Qpolling_period = intern ("polling-period");
6189 staticpro (&Qpolling_period);
6190
6191 {
6192 struct event_head *p;
6193
6194 for (p = head_table;
6195 p < head_table + (sizeof (head_table) / sizeof (head_table[0]));
6196 p++)
6197 {
6198 *p->var = intern (p->name);
6199 staticpro (p->var);
6200 Fput (*p->var, Qevent_kind, *p->kind);
6201 Fput (*p->var, Qevent_symbol_elements, Fcons (*p->var, Qnil));
6202 }
6203 }
6204
6205 button_down_location = Fmake_vector (make_number (NUM_MOUSE_BUTTONS), Qnil);
6206 staticpro (&button_down_location);
6207
6208 {
6209 int i;
6210 int len = sizeof (modifier_names) / sizeof (modifier_names[0]);
6211
6212 modifier_symbols = Fmake_vector (make_number (len), Qnil);
6213 for (i = 0; i < len; i++)
6214 if (modifier_names[i])
6215 XVECTOR (modifier_symbols)->contents[i] = intern (modifier_names[i]);
6216 staticpro (&modifier_symbols);
6217 }
6218
6219 recent_keys = Fmake_vector (make_number (NUM_RECENT_KEYS), Qnil);
6220 staticpro (&recent_keys);
6221
6222 this_command_keys = Fmake_vector (make_number (40), Qnil);
6223 staticpro (&this_command_keys);
6224
6225 Qextended_command_history = intern ("extended-command-history");
6226 Fset (Qextended_command_history, Qnil);
6227 staticpro (&Qextended_command_history);
6228
6229 the_only_perdisplay.kbd_buffer_frame_or_window
6230 = Fmake_vector (make_number (KBD_BUFFER_SIZE), Qnil);
6231 staticpro (&the_only_perdisplay.kbd_buffer_frame_or_window);
6232
6233 accent_key_syms = Qnil;
6234 staticpro (&accent_key_syms);
6235
6236 func_key_syms = Qnil;
6237 staticpro (&func_key_syms);
6238
6239 system_key_syms = Qnil;
6240 staticpro (&system_key_syms);
6241
6242 mouse_syms = Qnil;
6243 staticpro (&mouse_syms);
6244
6245 unread_switch_frame = Qnil;
6246 staticpro (&unread_switch_frame);
6247
6248 defsubr (&Sread_key_sequence);
6249 defsubr (&Srecursive_edit);
6250 #ifdef HAVE_MOUSE
6251 defsubr (&Strack_mouse);
6252 #endif
6253 defsubr (&Sinput_pending_p);
6254 defsubr (&Scommand_execute);
6255 defsubr (&Srecent_keys);
6256 defsubr (&Sthis_command_keys);
6257 defsubr (&Ssuspend_emacs);
6258 defsubr (&Sabort_recursive_edit);
6259 defsubr (&Sexit_recursive_edit);
6260 defsubr (&Srecursion_depth);
6261 defsubr (&Stop_level);
6262 defsubr (&Sdiscard_input);
6263 defsubr (&Sopen_dribble_file);
6264 defsubr (&Sset_input_mode);
6265 defsubr (&Scurrent_input_mode);
6266 defsubr (&Sexecute_extended_command);
6267
6268 DEFVAR_LISP ("last-command-char", &last_command_char,
6269 "Last input event that was part of a command.");
6270
6271 DEFVAR_LISP_NOPRO ("last-command-event", &last_command_char,
6272 "Last input event that was part of a command.");
6273
6274 DEFVAR_LISP ("last-nonmenu-event", &last_nonmenu_event,
6275 "Last input event in a command, except for mouse menu events.\n\
6276 Mouse menus give back keys that don't look like mouse events;\n\
6277 this variable holds the actual mouse event that led to the menu,\n\
6278 so that you can determine whether the command was run by mouse or not.");
6279
6280 DEFVAR_LISP ("last-input-char", &last_input_char,
6281 "Last input event.");
6282
6283 DEFVAR_LISP_NOPRO ("last-input-event", &last_input_char,
6284 "Last input event.");
6285
6286 DEFVAR_LISP ("unread-command-events", &Vunread_command_events,
6287 "List of objects to be read as next command input events.");
6288
6289 DEFVAR_INT ("unread-command-char", &unread_command_char,
6290 "If not -1, an object to be read as next command input event.");
6291
6292 DEFVAR_LISP ("meta-prefix-char", &meta_prefix_char,
6293 "Meta-prefix character code. Meta-foo as command input\n\
6294 turns into this character followed by foo.");
6295 XSETINT (meta_prefix_char, 033);
6296
6297 DEFVAR_LISP ("last-command", &last_command,
6298 "The last command executed. Normally a symbol with a function definition,\n\
6299 but can be whatever was found in the keymap, or whatever the variable\n\
6300 `this-command' was set to by that command.\n\
6301 \n\
6302 The value `mode-exit' is special; it means that the previous command\n\
6303 read an event that told it to exit, and it did so and unread that event.\n\
6304 In other words, the present command is the event that made the previous\n\
6305 command exit.\n\
6306 \n\
6307 The value `kill-region' is special; it means that the previous command\n\
6308 was a kill command.");
6309 last_command = Qnil;
6310
6311 DEFVAR_LISP ("this-command", &this_command,
6312 "The command now being executed.\n\
6313 The command can set this variable; whatever is put here\n\
6314 will be in `last-command' during the following command.");
6315 this_command = Qnil;
6316
6317 DEFVAR_INT ("auto-save-interval", &auto_save_interval,
6318 "*Number of keyboard input characters between auto-saves.\n\
6319 Zero means disable autosaving due to number of characters typed.");
6320 auto_save_interval = 300;
6321
6322 DEFVAR_LISP ("auto-save-timeout", &Vauto_save_timeout,
6323 "*Number of seconds idle time before auto-save.\n\
6324 Zero or nil means disable auto-saving due to idleness.\n\
6325 After auto-saving due to this many seconds of idle time,\n\
6326 Emacs also does a garbage collection if that seems to be warranted.");
6327 XSETFASTINT (Vauto_save_timeout, 30);
6328
6329 DEFVAR_INT ("echo-keystrokes", &echo_keystrokes,
6330 "*Nonzero means echo unfinished commands after this many seconds of pause.");
6331 echo_keystrokes = 1;
6332
6333 DEFVAR_INT ("polling-period", &polling_period,
6334 "*Interval between polling for input during Lisp execution.\n\
6335 The reason for polling is to make C-g work to stop a running program.\n\
6336 Polling is needed only when using X windows and SIGIO does not work.\n\
6337 Polling is automatically disabled in all other cases.");
6338 polling_period = 2;
6339
6340 DEFVAR_LISP ("double-click-time", &Vdouble_click_time,
6341 "*Maximum time between mouse clicks to make a double-click.\n\
6342 Measured in milliseconds. nil means disable double-click recognition;\n\
6343 t means double-clicks have no time limit and are detected\n\
6344 by position only.");
6345 Vdouble_click_time = make_number (500);
6346
6347 DEFVAR_BOOL ("inhibit-local-menu-bar-menus", &inhibit_local_menu_bar_menus,
6348 "*Non-nil means inhibit local map menu bar menus.");
6349 inhibit_local_menu_bar_menus = 0;
6350
6351 DEFVAR_INT ("num-input-keys", &num_input_keys,
6352 "Number of complete keys read from the keyboard so far.");
6353 num_input_keys = 0;
6354
6355 DEFVAR_LISP ("last-event-frame", &Vlast_event_frame,
6356 "The frame in which the most recently read event occurred.\n\
6357 If the last event came from a keyboard macro, this is set to `macro'.");
6358 Vlast_event_frame = Qnil;
6359
6360 DEFVAR_LISP ("help-char", &Vhelp_char,
6361 "Character to recognize as meaning Help.\n\
6362 When it is read, do `(eval help-form)', and display result if it's a string.\n\
6363 If the value of `help-form' is nil, this char can be read normally.");
6364 XSETINT (Vhelp_char, Ctl ('H'));
6365
6366 DEFVAR_LISP ("help-form", &Vhelp_form,
6367 "Form to execute when character `help-char' is read.\n\
6368 If the form returns a string, that string is displayed.\n\
6369 If `help-form' is nil, the help char is not recognized.");
6370 Vhelp_form = Qnil;
6371
6372 DEFVAR_LISP ("prefix-help-command", &Vprefix_help_command,
6373 "Command to run when `help-char' character follows a prefix key.\n\
6374 This command is used only when there is no actual binding\n\
6375 for that character after that prefix key.");
6376 Vprefix_help_command = Qnil;
6377
6378 DEFVAR_LISP ("top-level", &Vtop_level,
6379 "Form to evaluate when Emacs starts up.\n\
6380 Useful to set before you dump a modified Emacs.");
6381 Vtop_level = Qnil;
6382
6383 DEFVAR_LISP ("keyboard-translate-table", &Vkeyboard_translate_table,
6384 "String used as translate table for keyboard input, or nil.\n\
6385 Each character is looked up in this string and the contents used instead.\n\
6386 If string is of length N, character codes N and up are untranslated.");
6387 Vkeyboard_translate_table = Qnil;
6388
6389 DEFVAR_LISP ("key-translation-map", &Vkey_translation_map,
6390 "Keymap of key translations that can override keymaps.\n\
6391 This keymap works like `function-key-map', but comes after that,\n\
6392 and applies even for keys that have ordinary bindings.");
6393 Vkey_translation_map = Qnil;
6394
6395 DEFVAR_BOOL ("cannot-suspend", &cannot_suspend,
6396 "Non-nil means to always spawn a subshell instead of suspending,\n\
6397 even if the operating system has support for stopping a process.");
6398 cannot_suspend = 0;
6399
6400 DEFVAR_BOOL ("menu-prompting", &menu_prompting,
6401 "Non-nil means prompt with menus when appropriate.\n\
6402 This is done when reading from a keymap that has a prompt string,\n\
6403 for elements that have prompt strings.\n\
6404 The menu is displayed on the screen\n\
6405 if X menus were enabled at configuration\n\
6406 time and the previous event was a mouse click prefix key.\n\
6407 Otherwise, menu prompting uses the echo area.");
6408 menu_prompting = 1;
6409
6410 DEFVAR_LISP ("menu-prompt-more-char", &menu_prompt_more_char,
6411 "Character to see next line of menu prompt.\n\
6412 Type this character while in a menu prompt to rotate around the lines of it.");
6413 XSETINT (menu_prompt_more_char, ' ');
6414
6415 DEFVAR_INT ("extra-keyboard-modifiers", &extra_keyboard_modifiers,
6416 "A mask of additional modifier keys to use with every keyboard character.\n\
6417 Emacs applies the modifiers of the character stored here to each keyboard\n\
6418 character it reads. For example, after evaluating the expression\n\
6419 (setq extra-keyboard-modifiers ?\\C-x)\n\
6420 all input characters will have the control modifier applied to them.\n\
6421 \n\
6422 Note that the character ?\\C-@, equivalent to the integer zero, does\n\
6423 not count as a control character; rather, it counts as a character\n\
6424 with no modifiers; thus, setting `extra-keyboard-modifiers' to zero\n\
6425 cancels any modification.");
6426 extra_keyboard_modifiers = 0;
6427
6428 DEFVAR_LISP ("deactivate-mark", &Vdeactivate_mark,
6429 "If an editing command sets this to t, deactivate the mark afterward.\n\
6430 The command loop sets this to nil before each command,\n\
6431 and tests the value when the command returns.\n\
6432 Buffer modification stores t in this variable.");
6433 Vdeactivate_mark = Qnil;
6434
6435 DEFVAR_LISP ("command-hook-internal", &Vcommand_hook_internal,
6436 "Temporary storage of pre-command-hook or post-command-hook.");
6437 Vcommand_hook_internal = Qnil;
6438
6439 DEFVAR_LISP ("pre-command-hook", &Vpre_command_hook,
6440 "Normal hook run before each command is executed.\n\
6441 While the hook is run, its value is temporarily set to nil\n\
6442 to avoid an unbreakable infinite loop if a hook function gets an error.\n\
6443 As a result, a hook function cannot straightforwardly alter the value of\n\
6444 `pre-command-hook'. See the Emacs Lisp manual for a way of\n\
6445 implementing hook functions that alter the set of hook functions.");
6446 Vpre_command_hook = Qnil;
6447
6448 DEFVAR_LISP ("post-command-hook", &Vpost_command_hook,
6449 "Normal hook run after each command is executed.\n\
6450 While the hook is run, its value is temporarily set to nil\n\
6451 to avoid an unbreakable infinite loop if a hook function gets an error.\n\
6452 As a result, a hook function cannot straightforwardly alter the value of\n\
6453 `post-command-hook'. See the Emacs Lisp manual for a way of\n\
6454 implementing hook functions that alter the set of hook functions.");
6455 Vpost_command_hook = Qnil;
6456
6457 DEFVAR_LISP ("lucid-menu-bar-dirty-flag", &Vlucid_menu_bar_dirty_flag,
6458 "t means menu bar, specified Lucid style, needs to be recomputed.");
6459 Vlucid_menu_bar_dirty_flag = Qnil;
6460
6461 DEFVAR_LISP ("menu-bar-final-items", &Vmenu_bar_final_items,
6462 "List of menu bar items to move to the end of the menu bar.\n\
6463 The elements of the list are event types that may have menu bar bindings.");
6464 Vmenu_bar_final_items = Qnil;
6465
6466 DEFVAR_LISP ("overriding-local-map", &Voverriding_local_map,
6467 "Keymap that overrides all other local keymaps.\n\
6468 If this variable is non-nil, it is used as a keymap instead of the\n\
6469 buffer's local map, and the minor mode keymaps and text property keymaps.");
6470 Voverriding_local_map = Qnil;
6471
6472 DEFVAR_LISP ("overriding-local-map-menu-flag", &Voverriding_local_map_menu_flag,
6473 "Non-nil means `overriding-local-map' applies to the menu bar.\n\
6474 Otherwise, the menu bar continues to reflect the buffer's local map\n\
6475 and the minor mode maps regardless of `overriding-local-map'.");
6476 Voverriding_local_map_menu_flag = Qnil;
6477
6478 #ifdef HAVE_MOUSE
6479 DEFVAR_LISP ("track-mouse", &do_mouse_tracking,
6480 "*Non-nil means generate motion events for mouse motion.");
6481 #endif
6482
6483 DEFVAR_LISP ("system-key-alist", &Vsystem_key_alist,
6484 "Alist of system-specific X windows key symbols.\n\
6485 Each element should have the form (N . SYMBOL) where N is the\n\
6486 numeric keysym code (sans the \"system-specific\" bit 1<<28)\n\
6487 and SYMBOL is its name.");
6488 Vsystem_key_alist = Qnil;
6489
6490 DEFVAR_LISP ("deferred-action-list", &Vdeferred_action_list,
6491 "List of deferred actions to be performed at a later time.\n\
6492 The precise format isn't relevant here; we just check whether it is nil.");
6493 Vdeferred_action_list = Qnil;
6494
6495 DEFVAR_LISP ("deferred-action-function", &Vdeferred_action_function,
6496 "Function to call to handle deferred actions, after each command.\n\
6497 This function is called with no arguments after each command\n\
6498 whenever `deferred-action-list' is non-nil.");
6499 Vdeferred_action_function = Qnil;
6500 }
6501
6502 keys_of_keyboard ()
6503 {
6504 initial_define_key (global_map, Ctl ('Z'), "suspend-emacs");
6505 initial_define_key (control_x_map, Ctl ('Z'), "suspend-emacs");
6506 initial_define_key (meta_map, Ctl ('C'), "exit-recursive-edit");
6507 initial_define_key (global_map, Ctl (']'), "abort-recursive-edit");
6508 initial_define_key (meta_map, 'x', "execute-extended-command");
6509 }