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