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