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