Mercurial > emacs
annotate src/keyboard.c @ 1101:3e06965680fd
entered into RCS
author | Richard M. Stallman <rms@gnu.org> |
---|---|
date | Sat, 12 Sep 1992 07:45:15 +0000 |
parents | d9efc1c88574 |
children | f3a7122a68e1 |
rev | line source |
---|---|
518 | 1 /* Keyboard and mouse input; editor command loop. |
586 | 2 Copyright (C) 1985, 1986, 1987, 1988, 1989, 1992 Free Software Foundation, Inc. |
518 | 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 1, 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" | |
765 | 31 #include "frame.h" |
518 | 32 #include "window.h" |
33 #include "commands.h" | |
34 #include "buffer.h" | |
35 #include "disptab.h" | |
36 #include "keyboard.h" | |
37 #include <setjmp.h> | |
38 #include <errno.h> | |
39 | |
562 | 40 #ifndef VMS |
41 #include <sys/ioctl.h> | |
42 #endif | |
43 | |
44 #include "syssignal.h" | |
1046
d4b1e5db2b2a
* keyboard.c: Include "systty.h", not "systerm.h".
Jim Blandy <jimb@redhat.com>
parents:
1008
diff
changeset
|
45 #include "systty.h" |
648 | 46 #include "systime.h" |
518 | 47 |
48 extern int errno; | |
49 | |
50 #ifdef HAVE_X_WINDOWS | |
51 extern Lisp_Object Vmouse_grabbed; | |
52 | |
53 /* Make all keyboard buffers much bigger when using X windows. */ | |
54 #define KBD_BUFFER_SIZE 4096 | |
55 #else /* No X-windows, character input */ | |
56 #define KBD_BUFFER_SIZE 256 | |
57 #endif /* No X-windows */ | |
58 | |
59 /* Following definition copied from eval.c */ | |
60 | |
61 struct backtrace | |
62 { | |
63 struct backtrace *next; | |
64 Lisp_Object *function; | |
65 Lisp_Object *args; /* Points to vector of args. */ | |
66 int nargs; /* length of vector. If nargs is UNEVALLED, | |
67 args points to slot holding list of | |
68 unevalled args */ | |
69 char evalargs; | |
70 }; | |
71 | |
72 /* Non-nil disable property on a command means | |
73 do not execute it; call disabled-command-hook's value instead. */ | |
74 Lisp_Object Qdisabled, Vdisabled_command_hook; | |
75 | |
76 #define NUM_RECENT_KEYS (100) | |
77 int recent_keys_index; /* Index for storing next element into recent_keys */ | |
78 int total_keys; /* Total number of elements stored into recent_keys */ | |
79 Lisp_Object recent_keys[NUM_RECENT_KEYS]; /* Holds last 100 keystrokes */ | |
80 | |
81 /* Buffer holding the key that invoked the current command. */ | |
82 Lisp_Object *this_command_keys; | |
83 int this_command_key_count; /* Size in use. */ | |
84 int this_command_keys_size; /* Size allocated. */ | |
85 | |
86 extern int minbuf_level; | |
87 | |
88 extern struct backtrace *backtrace_list; | |
89 | |
90 /* Nonzero means do menu prompting. */ | |
91 static int menu_prompting; | |
92 | |
93 /* Character to see next line of menu prompt. */ | |
94 static Lisp_Object menu_prompt_more_char; | |
95 | |
96 /* For longjmp to where kbd input is being done. */ | |
97 static jmp_buf getcjmp; | |
98 | |
99 /* True while doing kbd input. */ | |
100 int waiting_for_input; | |
101 | |
102 /* True while displaying for echoing. Delays C-g throwing. */ | |
103 static int echoing; | |
104 | |
105 /* Nonzero means C-G should cause immediate error-signal. */ | |
106 int immediate_quit; | |
107 | |
108 /* Character to recognize as the help char. */ | |
109 Lisp_Object help_char; | |
110 | |
111 /* Form to execute when help char is typed. */ | |
112 Lisp_Object Vhelp_form; | |
113 | |
114 /* Character that causes a quit. Normally C-g. | |
115 | |
116 If we are running on an ordinary terminal, this must be an ordinary | |
117 ASCII char, since we want to make it our interrupt character. | |
118 | |
119 If we are not running on an ordinary terminal, it still needs to be | |
120 an ordinary ASCII char. This character needs to be recognized in | |
121 the input interrupt handler. At this point, the keystroke is | |
122 represented as a struct input_event, while the desired quit | |
123 character is specified as a lispy event. The mapping from struct | |
124 input_events to lispy events cannot run in an interrupt handler, | |
125 and the reverse mapping is difficult for anything but ASCII | |
126 keystrokes. | |
127 | |
128 FOR THESE ELABORATE AND UNSATISFYING REASONS, quit_char must be an | |
129 ASCII character. */ | |
130 int quit_char; | |
131 | |
132 extern Lisp_Object current_global_map; | |
133 extern int minibuf_level; | |
134 | |
135 /* Current depth in recursive edits. */ | |
136 int command_loop_level; | |
137 | |
138 /* Total number of times command_loop has read a key sequence. */ | |
139 int num_input_keys; | |
140 | |
141 /* Last input character read as a command. */ | |
142 Lisp_Object last_command_char; | |
143 | |
1083
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
144 /* Last input character read as a command, not counting menus |
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
145 reached by the mouse. */ |
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
146 Lisp_Object last_nonmenu_event; |
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
147 |
518 | 148 /* Last input character read for any purpose. */ |
149 Lisp_Object last_input_char; | |
150 | |
151 /* If not Qnil, an object to be read as the next command input. */ | |
152 Lisp_Object unread_command_char; | |
153 | |
154 /* Char to use as prefix when a meta character is typed in. | |
155 This is bound on entry to minibuffer in case ESC is changed there. */ | |
156 | |
157 Lisp_Object meta_prefix_char; | |
158 | |
159 /* Last size recorded for a current buffer which is not a minibuffer. */ | |
160 static int last_non_minibuf_size; | |
161 | |
687
e2b747dd6a6e
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
682
diff
changeset
|
162 /* Number of idle seconds before an auto-save and garbage collection. */ |
518 | 163 static Lisp_Object Vauto_save_timeout; |
164 | |
165 /* Total number of times read_char has returned. */ | |
166 int num_input_chars; | |
167 | |
168 /* Auto-save automatically when this many characters have been typed | |
169 since the last time. */ | |
170 | |
171 static int auto_save_interval; | |
172 | |
173 /* Value of num_input_chars as of last auto save. */ | |
174 | |
175 int last_auto_save; | |
176 | |
177 /* Last command executed by the editor command loop, not counting | |
178 commands that set the prefix argument. */ | |
179 | |
180 Lisp_Object last_command; | |
181 | |
182 /* The command being executed by the command loop. | |
183 Commands may set this, and the value set will be copied into last_command | |
184 instead of the actual command. */ | |
185 Lisp_Object this_command; | |
186 | |
985
952aa214a3d0
* keyboard.c (Fexecute_mouse_event): dyked-out function deleted.
Jim Blandy <jimb@redhat.com>
parents:
966
diff
changeset
|
187 #ifdef MULTI_FRAME |
765 | 188 /* The frame in which the last input event occurred. |
189 command_loop_1 will select this frame before running the | |
518 | 190 command bound to an event sequence, and read_key_sequence will |
191 toss the existing prefix if the user starts typing at a | |
765 | 192 new frame. */ |
193 Lisp_Object Vlast_event_frame; | |
985
952aa214a3d0
* keyboard.c (Fexecute_mouse_event): dyked-out function deleted.
Jim Blandy <jimb@redhat.com>
parents:
966
diff
changeset
|
194 #endif |
518 | 195 |
708 | 196 /* The timestamp of the last input event we received from the X server. |
197 X Windows wants this for selection ownership. */ | |
518 | 198 unsigned long last_event_timestamp; |
199 | |
200 Lisp_Object Qself_insert_command; | |
201 Lisp_Object Qforward_char; | |
202 Lisp_Object Qbackward_char; | |
203 | |
204 /* read_key_sequence stores here the command definition of the | |
205 key sequence that it reads. */ | |
206 Lisp_Object read_key_sequence_cmd; | |
207 | |
208 /* Form to evaluate (if non-nil) when Emacs is started. */ | |
209 Lisp_Object Vtop_level; | |
210 | |
211 /* User-supplied string to translate input characters through. */ | |
212 Lisp_Object Vkeyboard_translate_table; | |
213 | |
214 /* Keymap mapping ASCII function key sequences onto their preferred forms. */ | |
215 extern Lisp_Object Vfunction_key_map; | |
216 | |
217 /* File in which we write all commands we read. */ | |
218 FILE *dribble; | |
219 | |
220 /* Nonzero if input is available. */ | |
221 int input_pending; | |
222 | |
223 /* Nonzero if should obey 0200 bit in input chars as "Meta". */ | |
224 int meta_key; | |
225 | |
226 extern char *pending_malloc_warning; | |
227 | |
228 /* Circular buffer for pre-read keyboard input. */ | |
229 static struct input_event kbd_buffer[KBD_BUFFER_SIZE]; | |
230 | |
231 /* Pointer to next available character in kbd_buffer. | |
232 If kbd_fetch_ptr == kbd_store_ptr, the buffer is empty. | |
233 This may be kbd_buffer + KBD_BUFFER_SIZE, meaning that the the | |
234 next available char is in kbd_buffer[0]. */ | |
235 static struct input_event *kbd_fetch_ptr; | |
236 | |
237 /* Pointer to next place to store character in kbd_buffer. This | |
238 may be kbd_buffer + KBD_BUFFER_SIZE, meaning that the next | |
239 character should go in kbd_buffer[0]. */ | |
240 static struct input_event *kbd_store_ptr; | |
241 | |
242 /* The above pair of variables forms a "queue empty" flag. When we | |
243 enqueue a non-hook event, we increment kbd_write_count. When we | |
244 dequeue a non-hook event, we increment kbd_read_count. We say that | |
245 there is input available iff the two counters are equal. | |
246 | |
247 Why not just have a flag set and cleared by the enqueuing and | |
248 dequeuing functions? Such a flag could be screwed up by interrupts | |
249 at inopportune times. */ | |
250 | |
251 /* If this flag is non-zero, mouse movement events will appear in the | |
252 input stream. If is zero, mouse movement will be ignored. */ | |
253 int do_mouse_tracking; | |
254 | |
255 /* The window system handling code should set this if the mouse has | |
256 moved since the last call to the mouse_position_hook. Calling that | |
257 hook should clear this. Code assumes that if this is set, it can | |
258 call mouse_position_hook to get the promised position, so don't set | |
259 it unless you're prepared to substantiate the claim! */ | |
260 int mouse_moved; | |
261 | |
262 /* True iff there is an event in kbd_buffer, or if mouse tracking is | |
263 enabled and there is a new mouse position in the mouse movement | |
264 buffer. Note that if this is false, that doesn't mean that there | |
265 is readable input; all the events in the queue might be button-up | |
266 events, and do_mouse_tracking might be off. */ | |
267 #define EVENT_QUEUES_EMPTY \ | |
268 ((kbd_fetch_ptr == kbd_store_ptr) && (!do_mouse_tracking || !mouse_moved)) | |
269 | |
270 | |
271 /* Symbols to head events. */ | |
272 Lisp_Object Qmouse_movement; | |
273 | |
274 Lisp_Object Qvscrollbar_part; | |
275 Lisp_Object Qvslider_part; | |
276 Lisp_Object Qvthumbup_part; | |
277 Lisp_Object Qvthumbdown_part; | |
278 | |
279 Lisp_Object Qhscrollbar_part; | |
280 Lisp_Object Qhslider_part; | |
281 Lisp_Object Qhthumbleft_part; | |
282 Lisp_Object Qhthumbright_part; | |
283 | |
284 /* Symbols to denote kinds of events. */ | |
285 Lisp_Object Qfunction_key; | |
286 Lisp_Object Qmouse_click; | |
287 /* Lisp_Object Qmouse_movement; - also an event header */ | |
288 Lisp_Object Qscrollbar_click; | |
289 | |
290 /* Properties of event headers. */ | |
291 Lisp_Object Qevent_kind; | |
292 Lisp_Object Qevent_unmodified; | |
293 | |
294 /* Symbols to use for non-text mouse positions. */ | |
295 Lisp_Object Qmode_line; | |
732 | 296 Lisp_Object Qvertical_line; |
518 | 297 |
298 | |
648 | 299 /* Address (if not 0) of EMACS_TIME to zero out if a SIGIO interrupt |
300 happens. */ | |
301 EMACS_TIME *input_available_clear_time; | |
518 | 302 |
303 /* Nonzero means use SIGIO interrupts; zero means use CBREAK mode. | |
304 Default is 1 if INTERRUPT_INPUT is defined. */ | |
305 int interrupt_input; | |
306 | |
307 /* Nonzero while interrupts are temporarily deferred during redisplay. */ | |
308 int interrupts_deferred; | |
309 | |
310 /* nonzero means use ^S/^Q for flow control. */ | |
311 int flow_control; | |
312 | |
313 /* Allow m- file to inhibit use of FIONREAD. */ | |
314 #ifdef BROKEN_FIONREAD | |
315 #undef FIONREAD | |
316 #endif | |
317 | |
318 /* We are unable to use interrupts if FIONREAD is not available, | |
319 so flush SIGIO so we won't try. */ | |
320 #ifndef FIONREAD | |
321 #ifdef SIGIO | |
322 #undef SIGIO | |
323 #endif | |
324 #endif | |
325 | |
326 /* If we support X Windows, and won't get an interrupt when input | |
327 arrives from the server, poll periodically so we can detect C-g. */ | |
328 #ifdef HAVE_X_WINDOWS | |
329 #ifndef SIGIO | |
330 #define POLL_FOR_INPUT | |
331 #endif | |
332 #endif | |
333 | |
334 /* Global variable declarations. */ | |
335 | |
336 /* Function for init_keyboard to call with no args (if nonzero). */ | |
337 void (*keyboard_init_hook) (); | |
338 | |
339 static int read_avail_input (); | |
340 static void get_input_pending (); | |
341 | |
342 /* > 0 if we are to echo keystrokes. */ | |
343 static int echo_keystrokes; | |
344 | |
345 /* Nonzero means echo each character as typed. */ | |
346 static int immediate_echo; | |
347 | |
348 /* The text we're echoing in the modeline - partial key sequences, | |
349 usually. '\0'-terminated. */ | |
350 static char echobuf[100]; | |
351 | |
352 /* Where to append more text to echobuf if we want to. */ | |
353 static char *echoptr; | |
354 | |
355 #define min(a,b) ((a)<(b)?(a):(b)) | |
356 #define max(a,b) ((a)>(b)?(a):(b)) | |
357 | |
358 /* Install the string STR as the beginning of the string of echoing, | |
359 so that it serves as a prompt for the next character. | |
360 Also start echoing. */ | |
361 | |
362 echo_prompt (str) | |
363 char *str; | |
364 { | |
365 int len = strlen (str); | |
366 if (len > sizeof echobuf - 4) | |
367 len = sizeof echobuf - 4; | |
368 bcopy (str, echobuf, len + 1); | |
369 echoptr = echobuf + len; | |
370 | |
371 echo (); | |
372 } | |
373 | |
374 /* Add C to the echo string, if echoing is going on. | |
375 C can be a character, which is printed prettily ("M-C-x" and all that | |
376 jazz), or a symbol, whose name is printed. */ | |
377 | |
378 echo_char (c) | |
379 Lisp_Object c; | |
380 { | |
381 extern char *push_key_description (); | |
382 | |
383 if (immediate_echo) | |
384 { | |
385 char *ptr = echoptr; | |
386 | |
387 if (ptr != echobuf) | |
388 *ptr++ = ' '; | |
389 | |
390 /* If someone has passed us a composite event, use its head symbol. */ | |
391 if (EVENT_HAS_PARAMETERS (c)) | |
392 c = EVENT_HEAD (c); | |
393 | |
394 if (XTYPE (c) == Lisp_Int) | |
395 { | |
396 if (ptr - echobuf > sizeof echobuf - 6) | |
397 return; | |
398 | |
399 ptr = push_key_description (c, ptr); | |
400 } | |
401 else if (XTYPE (c) == Lisp_Symbol) | |
402 { | |
403 struct Lisp_String *name = XSYMBOL (c)->name; | |
404 if (((ptr - echobuf) + name->size + 4) > sizeof echobuf) | |
405 return; | |
406 bcopy (name->data, ptr, name->size); | |
407 ptr += name->size; | |
408 } | |
409 | |
410 if (echoptr == echobuf && c == help_char) | |
411 { | |
412 strcpy (ptr, " (Type ? for further options)"); | |
413 ptr += strlen (ptr); | |
414 } | |
415 | |
416 *ptr = 0; | |
417 echoptr = ptr; | |
418 | |
419 echo (); | |
420 } | |
421 } | |
422 | |
423 /* Temporarily add a dash to the end of the echo string if it's not | |
424 empty, so that it serves as a mini-prompt for the very next character. */ | |
425 | |
426 echo_dash () | |
427 { | |
428 if (!immediate_echo && echoptr == echobuf) | |
429 return; | |
430 | |
431 /* Put a dash at the end of the buffer temporarily, | |
432 but make it go away when the next character is added. */ | |
433 echoptr[0] = '-'; | |
434 echoptr[1] = 0; | |
435 | |
436 echo (); | |
437 } | |
438 | |
439 /* Display the current echo string, and begin echoing if not already | |
440 doing so. */ | |
441 | |
442 echo () | |
443 { | |
444 if (!immediate_echo) | |
445 { | |
446 int i; | |
447 immediate_echo = 1; | |
448 | |
449 for (i = 0; i < this_command_key_count; i++) | |
450 echo_char (this_command_keys[i]); | |
451 echo_dash (); | |
452 } | |
453 | |
454 echoing = 1; | |
455 message1 (echobuf); | |
456 echoing = 0; | |
457 | |
458 if (waiting_for_input && !NILP (Vquit_flag)) | |
459 quit_throw_to_read_char (); | |
460 } | |
461 | |
462 /* Turn off echoing, for the start of a new command. */ | |
463 | |
464 cancel_echoing () | |
465 { | |
466 immediate_echo = 0; | |
467 echoptr = echobuf; | |
468 } | |
469 | |
470 /* Return the length of the current echo string. */ | |
471 | |
472 static int | |
473 echo_length () | |
474 { | |
475 return echoptr - echobuf; | |
476 } | |
477 | |
478 /* Truncate the current echo message to its first LEN chars. | |
479 This and echo_char get used by read_key_sequence when the user | |
765 | 480 switches frames while entering a key sequence. */ |
518 | 481 |
482 static void | |
483 echo_truncate (len) | |
484 int len; | |
485 { | |
486 echobuf[len] = '\0'; | |
487 echoptr = echobuf + strlen (echobuf); | |
488 } | |
489 | |
490 | |
491 /* Functions for manipulating this_command_keys. */ | |
492 static void | |
493 add_command_key (key) | |
494 Lisp_Object key; | |
495 { | |
496 if (this_command_key_count == this_command_keys_size) | |
497 { | |
498 this_command_keys_size *= 2; | |
499 this_command_keys | |
500 = (Lisp_Object *) xrealloc (this_command_keys, | |
501 (this_command_keys_size | |
502 * sizeof (Lisp_Object))); | |
503 } | |
504 this_command_keys[this_command_key_count++] = key; | |
505 } | |
506 | |
507 Lisp_Object | |
508 recursive_edit_1 () | |
509 { | |
510 int count = specpdl_ptr - specpdl; | |
511 Lisp_Object val; | |
512 | |
513 if (command_loop_level > 0) | |
514 { | |
515 specbind (Qstandard_output, Qt); | |
516 specbind (Qstandard_input, Qt); | |
517 } | |
518 | |
519 val = command_loop (); | |
520 if (EQ (val, Qt)) | |
521 Fsignal (Qquit, Qnil); | |
522 | |
523 unbind_to (count); | |
524 return Qnil; | |
525 } | |
526 | |
527 /* When an auto-save happens, record the "time", and don't do again soon. */ | |
528 record_auto_save () | |
529 { | |
530 last_auto_save = num_input_chars; | |
531 } | |
532 | |
533 Lisp_Object recursive_edit_unwind (), command_loop (); | |
534 | |
535 DEFUN ("recursive-edit", Frecursive_edit, Srecursive_edit, 0, 0, "", | |
536 "Invoke the editor command loop recursively.\n\ | |
537 To get out of the recursive edit, a command can do `(throw 'exit nil)';\n\ | |
538 that tells this function to return.\n\ | |
539 Alternately, `(throw 'exit t)' makes this function signal an error.\n\ | |
540 This function is called by the editor initialization to begin editing.") | |
541 () | |
542 { | |
543 int count = specpdl_ptr - specpdl; | |
544 Lisp_Object val; | |
545 | |
546 command_loop_level++; | |
547 update_mode_lines = 1; | |
548 | |
549 record_unwind_protect (recursive_edit_unwind, | |
550 (command_loop_level | |
551 && current_buffer != XBUFFER (XWINDOW (selected_window)->buffer)) | |
552 ? Fcurrent_buffer () | |
553 : Qnil); | |
554 recursive_edit_1 (); | |
555 return unbind_to (count, Qnil); | |
556 } | |
557 | |
558 Lisp_Object | |
559 recursive_edit_unwind (buffer) | |
560 Lisp_Object buffer; | |
561 { | |
562 if (!NILP (buffer)) | |
563 Fset_buffer (buffer); | |
564 | |
565 command_loop_level--; | |
566 update_mode_lines = 1; | |
567 return Qnil; | |
568 } | |
569 | |
570 Lisp_Object | |
571 cmd_error (data) | |
572 Lisp_Object data; | |
573 { | |
574 Lisp_Object errmsg, tail, errname, file_error; | |
575 Lisp_Object stream; | |
576 struct gcpro gcpro1; | |
577 int i; | |
578 | |
579 Vquit_flag = Qnil; | |
580 Vinhibit_quit = Qt; | |
581 Vstandard_output = Qt; | |
582 Vstandard_input = Qt; | |
583 Vexecuting_macro = Qnil; | |
584 echo_area_glyphs = 0; | |
585 | |
765 | 586 /* If the window system or terminal frame hasn't been initialized |
518 | 587 yet, or we're not interactive, it's best to dump this message out |
588 to stderr and exit. */ | |
765 | 589 if (! FRAME_MESSAGE_BUF (selected_frame) |
518 | 590 || noninteractive) |
591 stream = Qexternal_debugging_output; | |
592 else | |
593 { | |
594 Fdiscard_input (); | |
595 bitch_at_user (); | |
596 stream = Qt; | |
597 } | |
598 | |
599 errname = Fcar (data); | |
600 | |
601 if (EQ (errname, Qerror)) | |
602 { | |
603 data = Fcdr (data); | |
604 if (!CONSP (data)) data = Qnil; | |
605 errmsg = Fcar (data); | |
606 file_error = Qnil; | |
607 } | |
608 else | |
609 { | |
610 errmsg = Fget (errname, Qerror_message); | |
611 file_error = Fmemq (Qfile_error, | |
612 Fget (errname, Qerror_conditions)); | |
613 } | |
614 | |
615 /* Print an error message including the data items. | |
616 This is done by printing it into a scratch buffer | |
617 and then making a copy of the text in the buffer. */ | |
618 | |
619 if (!CONSP (data)) data = Qnil; | |
620 tail = Fcdr (data); | |
621 GCPRO1 (tail); | |
622 | |
623 /* For file-error, make error message by concatenating | |
624 all the data items. They are all strings. */ | |
625 if (!NILP (file_error) && !NILP (tail)) | |
626 errmsg = XCONS (tail)->car, tail = XCONS (tail)->cdr; | |
627 | |
628 if (XTYPE (errmsg) == Lisp_String) | |
629 Fprinc (errmsg, stream); | |
630 else | |
631 write_string_1 ("peculiar error", -1, stream); | |
632 | |
633 for (i = 0; CONSP (tail); tail = Fcdr (tail), i++) | |
634 { | |
635 write_string_1 (i ? ", " : ": ", 2, stream); | |
636 if (!NILP (file_error)) | |
637 Fprinc (Fcar (tail), stream); | |
638 else | |
639 Fprin1 (Fcar (tail), stream); | |
640 } | |
641 UNGCPRO; | |
642 | |
765 | 643 /* If the window system or terminal frame hasn't been initialized |
518 | 644 yet, or we're in -batch mode, this error should cause Emacs to exit. */ |
765 | 645 if (! FRAME_MESSAGE_BUF (selected_frame) |
518 | 646 || noninteractive) |
647 { | |
648 Fterpri (stream); | |
649 Fkill_emacs (make_number (-1)); | |
650 } | |
651 | |
652 Vquit_flag = Qnil; | |
653 | |
654 Vinhibit_quit = Qnil; | |
655 return make_number (0); | |
656 } | |
657 | |
658 Lisp_Object command_loop_1 (); | |
659 Lisp_Object command_loop_2 (); | |
660 Lisp_Object top_level_1 (); | |
661 | |
662 /* Entry to editor-command-loop. | |
663 This level has the catches for exiting/returning to editor command loop. | |
664 It returns nil to exit recursive edit, t to abort it. */ | |
665 | |
666 Lisp_Object | |
667 command_loop () | |
668 { | |
669 if (command_loop_level > 0 || minibuf_level > 0) | |
670 { | |
671 return internal_catch (Qexit, command_loop_2, Qnil); | |
672 } | |
673 else | |
674 while (1) | |
675 { | |
676 internal_catch (Qtop_level, top_level_1, Qnil); | |
677 internal_catch (Qtop_level, command_loop_2, Qnil); | |
678 | |
679 /* End of file in -batch run causes exit here. */ | |
680 if (noninteractive) | |
681 Fkill_emacs (Qt); | |
682 } | |
683 } | |
684 | |
685 /* Here we catch errors in execution of commands within the | |
686 editing loop, and reenter the editing loop. | |
687 When there is an error, cmd_error runs and returns a non-nil | |
688 value to us. A value of nil means that cmd_loop_1 itself | |
689 returned due to end of file (or end of kbd macro). */ | |
690 | |
691 Lisp_Object | |
692 command_loop_2 () | |
693 { | |
694 register Lisp_Object val; | |
695 | |
696 do | |
697 val = internal_condition_case (command_loop_1, Qerror, cmd_error); | |
698 while (!NILP (val)); | |
699 | |
700 return Qnil; | |
701 } | |
702 | |
703 Lisp_Object | |
704 top_level_2 () | |
705 { | |
706 return Feval (Vtop_level); | |
707 } | |
708 | |
709 Lisp_Object | |
710 top_level_1 () | |
711 { | |
712 /* On entry to the outer level, run the startup file */ | |
713 if (!NILP (Vtop_level)) | |
714 internal_condition_case (top_level_2, Qerror, cmd_error); | |
715 else if (!NILP (Vpurify_flag)) | |
716 message ("Bare impure Emacs (standard Lisp code not loaded)"); | |
717 else | |
718 message ("Bare Emacs (standard Lisp code not loaded)"); | |
719 return Qnil; | |
720 } | |
721 | |
722 DEFUN ("top-level", Ftop_level, Stop_level, 0, 0, "", | |
723 "Exit all recursive editing levels.") | |
724 () | |
725 { | |
726 Fthrow (Qtop_level, Qnil); | |
727 } | |
728 | |
729 DEFUN ("exit-recursive-edit", Fexit_recursive_edit, Sexit_recursive_edit, 0, 0, "", | |
730 "Exit from the innermost recursive edit or minibuffer.") | |
731 () | |
732 { | |
733 if (command_loop_level > 0 || minibuf_level > 0) | |
734 Fthrow (Qexit, Qnil); | |
735 | |
736 error ("No recursive edit is in progress"); | |
737 } | |
738 | |
739 DEFUN ("abort-recursive-edit", Fabort_recursive_edit, Sabort_recursive_edit, 0, 0, "", | |
740 "Abort the command that requested this recursive edit or minibuffer input.") | |
741 () | |
742 { | |
743 if (command_loop_level > 0 || minibuf_level > 0) | |
744 Fthrow (Qexit, Qt); | |
745 | |
746 error ("No recursive edit is in progress"); | |
747 } | |
748 | |
749 /* This is the actual command reading loop, | |
750 sans error-handling encapsulation. */ | |
751 | |
752 Lisp_Object Fcommand_execute (); | |
753 static int read_key_sequence (); | |
754 | |
755 Lisp_Object | |
756 command_loop_1 () | |
757 { | |
758 Lisp_Object cmd; | |
759 int lose; | |
760 int nonundocount; | |
761 Lisp_Object keybuf[30]; | |
762 int i; | |
763 int no_redisplay; | |
764 int no_direct; | |
765 | |
766 Vprefix_arg = Qnil; | |
767 waiting_for_input = 0; | |
768 cancel_echoing (); | |
769 | |
770 /* Don't clear out last_command at the beginning of a macro. */ | |
771 if (XTYPE (Vexecuting_macro) != Lisp_String) | |
772 last_command = Qt; | |
773 | |
774 nonundocount = 0; | |
775 no_redisplay = 0; | |
776 this_command_key_count = 0; | |
777 | |
778 while (1) | |
779 { | |
780 /* Install chars successfully executed in kbd macro. */ | |
781 | |
782 if (defining_kbd_macro && NILP (Vprefix_arg)) | |
783 finalize_kbd_macro_chars (); | |
784 | |
785 /* Make sure the current window's buffer is selected. */ | |
786 if (XBUFFER (XWINDOW (selected_window)->buffer) != current_buffer) | |
787 set_buffer_internal (XBUFFER (XWINDOW (selected_window)->buffer)); | |
788 | |
789 /* Display any malloc warning that just came out. Use while because | |
790 displaying one warning can cause another. */ | |
791 | |
792 while (pending_malloc_warning) | |
793 display_malloc_warning (); | |
794 | |
795 no_direct = 0; | |
796 | |
797 /* If minibuffer on and echo area in use, | |
798 wait 2 sec and redraw minibufer. */ | |
799 | |
800 if (minibuf_level && echo_area_glyphs) | |
801 { | |
1097
d9efc1c88574
(command_loop_1): Bind inhibit-quit to t when in Fsit_for.
Richard M. Stallman <rms@gnu.org>
parents:
1083
diff
changeset
|
802 /* Bind inhibit-quit to t so that C-g gets read in |
d9efc1c88574
(command_loop_1): Bind inhibit-quit to t when in Fsit_for.
Richard M. Stallman <rms@gnu.org>
parents:
1083
diff
changeset
|
803 rather than quitting back to the minibuffer. */ |
d9efc1c88574
(command_loop_1): Bind inhibit-quit to t when in Fsit_for.
Richard M. Stallman <rms@gnu.org>
parents:
1083
diff
changeset
|
804 int count = specpdl_ptr - specpdl; |
d9efc1c88574
(command_loop_1): Bind inhibit-quit to t when in Fsit_for.
Richard M. Stallman <rms@gnu.org>
parents:
1083
diff
changeset
|
805 specbind (Qinhibit_quit, Qt); |
518 | 806 Fsit_for (make_number (2), Qnil, Qnil); |
1097
d9efc1c88574
(command_loop_1): Bind inhibit-quit to t when in Fsit_for.
Richard M. Stallman <rms@gnu.org>
parents:
1083
diff
changeset
|
807 unbind_to (count); |
d9efc1c88574
(command_loop_1): Bind inhibit-quit to t when in Fsit_for.
Richard M. Stallman <rms@gnu.org>
parents:
1083
diff
changeset
|
808 |
518 | 809 echo_area_glyphs = 0; |
810 no_direct = 1; | |
811 if (!NILP (Vquit_flag)) | |
812 { | |
813 Vquit_flag = Qnil; | |
814 unread_command_char = make_number (quit_char); | |
815 } | |
816 } | |
817 | |
818 #ifdef C_ALLOCA | |
819 alloca (0); /* Cause a garbage collection now */ | |
820 /* Since we can free the most stuff here. */ | |
821 #endif /* C_ALLOCA */ | |
822 | |
823 /* Read next key sequence; i gets its length. */ | |
824 i = read_key_sequence (keybuf, (sizeof keybuf / sizeof (keybuf[0])), 0); | |
825 | |
826 ++num_input_keys; | |
827 | |
765 | 828 #ifdef MULTI_FRAME |
829 /* Select the frame that the key sequence came from. */ | |
830 if (XTYPE (Vlast_event_frame) == Lisp_Frame | |
831 && XFRAME (Vlast_event_frame) != selected_frame) | |
832 Fselect_frame (Vlast_event_frame, Qnil); | |
518 | 833 #endif |
834 | |
835 /* Now we have read a key sequence of length I, | |
836 or else I is 0 and we found end of file. */ | |
837 | |
838 if (i == 0) /* End of file -- happens only in */ | |
839 return Qnil; /* a kbd macro, at the end. */ | |
840 | |
841 last_command_char = keybuf[i - 1]; | |
842 | |
843 cmd = read_key_sequence_cmd; | |
844 if (!NILP (Vexecuting_macro)) | |
845 { | |
846 if (!NILP (Vquit_flag)) | |
847 { | |
848 Vexecuting_macro = Qt; | |
849 QUIT; /* Make some noise. */ | |
850 /* Will return since macro now empty. */ | |
851 } | |
852 } | |
853 | |
854 /* Do redisplay processing after this command except in special | |
855 cases identified below that set no_redisplay to 1. */ | |
856 no_redisplay = 0; | |
857 | |
858 /* Execute the command. */ | |
859 | |
860 if (NILP (cmd)) | |
861 { | |
862 /* nil means key is undefined. */ | |
863 bitch_at_user (); | |
864 defining_kbd_macro = 0; | |
865 update_mode_lines = 1; | |
866 Vprefix_arg = Qnil; | |
867 } | |
868 else | |
869 { | |
870 this_command = cmd; | |
871 if (NILP (Vprefix_arg) && ! no_direct) | |
872 { | |
873 /* Recognize some common commands in common situations and | |
874 do them directly. */ | |
875 if (EQ (cmd, Qforward_char) && point < ZV) | |
876 { | |
877 struct Lisp_Vector *dp | |
878 = window_display_table (XWINDOW (selected_window)); | |
879 lose = FETCH_CHAR (point); | |
880 SET_PT (point + 1); | |
881 if (((dp == 0 && lose >= 040 && lose < 0177) | |
882 || | |
883 (dp && (XTYPE (dp->contents[lose]) != Lisp_String | |
884 || XSTRING (dp->contents[lose])->size == sizeof (GLYPH)))) | |
885 && (XFASTINT (XWINDOW (selected_window)->last_modified) | |
886 >= MODIFF) | |
887 && (XFASTINT (XWINDOW (selected_window)->last_point) | |
888 == point - 1) | |
889 && !windows_or_buffers_changed | |
890 && EQ (current_buffer->selective_display, Qnil) | |
891 && !detect_input_pending () | |
892 && NILP (Vexecuting_macro)) | |
893 no_redisplay = direct_output_forward_char (1); | |
894 goto directly_done; | |
895 } | |
896 else if (EQ (cmd, Qbackward_char) && point > BEGV) | |
897 { | |
898 struct Lisp_Vector *dp | |
899 = window_display_table (XWINDOW (selected_window)); | |
900 SET_PT (point - 1); | |
901 lose = FETCH_CHAR (point); | |
902 if (((dp == 0 && lose >= 040 && lose < 0177) | |
903 || | |
904 (dp && (XTYPE (dp->contents[lose]) != Lisp_String | |
905 || XSTRING (dp->contents[lose])->size == sizeof (GLYPH)))) | |
906 && (XFASTINT (XWINDOW (selected_window)->last_modified) | |
907 >= MODIFF) | |
908 && (XFASTINT (XWINDOW (selected_window)->last_point) | |
909 == point + 1) | |
910 && !windows_or_buffers_changed | |
911 && EQ (current_buffer->selective_display, Qnil) | |
912 && !detect_input_pending () | |
913 && NILP (Vexecuting_macro)) | |
914 no_redisplay = direct_output_forward_char (-1); | |
915 goto directly_done; | |
916 } | |
917 else if (EQ (cmd, Qself_insert_command) | |
918 /* Try this optimization only on ascii keystrokes. */ | |
919 && XTYPE (last_command_char) == Lisp_Int) | |
920 { | |
921 unsigned char c = XINT (last_command_char); | |
922 | |
923 if (NILP (Vexecuting_macro) && | |
924 !EQ (minibuf_window, selected_window)) | |
925 { | |
926 if (!nonundocount || nonundocount >= 20) | |
927 { | |
928 Fundo_boundary (); | |
929 nonundocount = 0; | |
930 } | |
931 nonundocount++; | |
932 } | |
933 lose = (XFASTINT (XWINDOW (selected_window)->last_modified) | |
934 < MODIFF) | |
935 || (XFASTINT (XWINDOW (selected_window)->last_point) | |
936 != point) | |
937 || MODIFF <= current_buffer->save_modified | |
938 || windows_or_buffers_changed | |
939 || !EQ (current_buffer->selective_display, Qnil) | |
940 || detect_input_pending () | |
941 || !NILP (Vexecuting_macro); | |
942 if (internal_self_insert (c, 0)) | |
943 { | |
944 lose = 1; | |
945 nonundocount = 0; | |
946 } | |
947 if (!lose && | |
948 (point == ZV || FETCH_CHAR (point) == '\n')) | |
949 { | |
950 struct Lisp_Vector *dp | |
951 = window_display_table (XWINDOW (selected_window)); | |
952 | |
953 if (dp == 0 || XTYPE (dp->contents[c]) != Lisp_String) | |
954 no_redisplay = direct_output_for_insert (c); | |
955 else if (XSTRING (dp->contents[c])->size | |
956 == sizeof (GLYPH)) | |
957 no_redisplay = | |
958 direct_output_for_insert (*(GLYPH *)XSTRING (dp->contents[c])->data); | |
959 } | |
960 goto directly_done; | |
961 } | |
962 } | |
963 | |
964 /* Here for a command that isn't executed directly */ | |
965 | |
966 nonundocount = 0; | |
967 if (NILP (Vprefix_arg)) | |
968 Fundo_boundary (); | |
969 Fcommand_execute (cmd, Qnil); | |
970 | |
971 } | |
547 | 972 directly_done: ; |
518 | 973 |
974 /* If there is a prefix argument, | |
975 1) We don't want last_command to be ``universal-argument'' | |
976 (that would be dumb), so don't set last_command, | |
977 2) we want to leave echoing on so that the prefix will be | |
978 echoed as part of this key sequence, so don't call | |
979 cancel_echoing, and | |
980 3) we want to leave this_command_key_count non-zero, so that | |
981 read_char will realize that it is re-reading a character, and | |
982 not echo it a second time. */ | |
983 if (NILP (Vprefix_arg)) | |
984 { | |
985 last_command = this_command; | |
986 cancel_echoing (); | |
987 this_command_key_count = 0; | |
988 } | |
989 } | |
990 } | |
991 | |
992 /* Number of seconds between polling for input. */ | |
993 int polling_period; | |
994 | |
995 /* Nonzero means polling for input is temporarily suppresed. */ | |
996 int poll_suppress_count; | |
997 | |
998 #ifdef POLL_FOR_INPUT | |
999 int polling_for_input; | |
1000 | |
1001 /* Handle an alarm once each second and read pending input | |
1002 so as to handle a C-g if it comces in. */ | |
1003 | |
1004 SIGTYPE | |
1005 input_poll_signal () | |
1006 { | |
1007 #ifdef HAVE_X_WINDOWS | |
1008 extern int x_input_blocked; | |
1009 if (x_input_blocked == 0) | |
1010 #endif | |
1011 if (!waiting_for_input) | |
1012 read_avail_input (0); | |
1013 signal (SIGALRM, input_poll_signal); | |
1014 alarm (polling_period); | |
1015 } | |
1016 | |
1017 #endif | |
1018 | |
1019 /* Begin signals to poll for input, if they are appropriate. | |
1020 This function is called unconditionally from various places. */ | |
1021 | |
1022 start_polling () | |
1023 { | |
1024 #ifdef POLL_FOR_INPUT | |
1025 if (read_socket_hook) | |
1026 { | |
1027 poll_suppress_count--; | |
1028 if (poll_suppress_count == 0) | |
1029 { | |
1030 signal (SIGALRM, input_poll_signal); | |
1031 polling_for_input = 1; | |
1032 alarm (polling_period); | |
1033 } | |
1034 } | |
1035 #endif | |
1036 } | |
1037 | |
1038 /* Turn off polling. */ | |
1039 | |
1040 stop_polling () | |
1041 { | |
1042 #ifdef POLL_FOR_INPUT | |
1043 if (read_socket_hook) | |
1044 { | |
1045 if (poll_suppress_count == 0) | |
1046 { | |
1047 polling_for_input = 0; | |
1048 alarm (0); | |
1049 } | |
1050 poll_suppress_count++; | |
1051 } | |
1052 #endif | |
1053 } | |
1054 | |
1055 /* Input of single characters from keyboard */ | |
1056 | |
1057 Lisp_Object print_help (); | |
1058 static Lisp_Object kbd_buffer_get_event (); | |
1059 | |
1060 /* read a character from the keyboard; call the redisplay if needed */ | |
1061 /* commandflag 0 means do not do auto-saving, but do do redisplay. | |
1062 -1 means do not do redisplay, but do do autosaving. | |
1063 1 means do both. */ | |
1064 | |
1083
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
1065 /* The arguments MAPS and NMAPS are for menu prompting. |
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
1066 MAPS is an array of keymaps; NMAPS is the length of MAPS. |
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
1067 |
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
1068 PREV_EVENT is the previous input event, or nil if we are reading |
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
1069 the first event of a key sequence. |
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
1070 |
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
1071 If we use a mouse menu to read the input, we store 1 into *USED_MOUSE_MENU. |
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
1072 Otherwise we store 0 there. */ |
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
1073 |
518 | 1074 Lisp_Object |
1083
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
1075 read_char (commandflag, nmaps, maps, prev_event, used_mouse_menu) |
518 | 1076 int commandflag; |
1083
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
1077 int nmaps; |
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
1078 Lisp_Object *maps; |
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
1079 Lisp_Object prev_event; |
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
1080 int *used_mouse_menu; |
518 | 1081 { |
1082 register Lisp_Object c; | |
1083 int count; | |
1084 jmp_buf save_jump; | |
1085 | |
1086 if (!NILP (unread_command_char)) | |
1087 { | |
1088 c = unread_command_char; | |
1089 unread_command_char = Qnil; | |
1090 | |
1091 if (this_command_key_count == 0) | |
1092 goto reread_first; | |
1093 else | |
1094 goto reread; | |
1095 } | |
1096 | |
1097 if (!NILP (Vexecuting_macro)) | |
1098 { | |
1099 if (executing_macro_index >= Flength (Vexecuting_macro)) | |
1100 { | |
1101 XSET (c, Lisp_Int, -1); | |
1102 return c; | |
1103 } | |
1104 | |
1105 c = Faref (Vexecuting_macro, make_number (executing_macro_index)); | |
1106 executing_macro_index++; | |
1107 | |
1108 goto from_macro; | |
1109 } | |
1110 | |
1111 /* Save outer setjmp data, in case called recursively. */ | |
650 | 1112 save_getcjmp (save_jump); |
518 | 1113 |
1114 stop_polling (); | |
1115 | |
1116 if (commandflag >= 0 && !input_pending && !detect_input_pending ()) | |
1117 redisplay (); | |
1118 | |
1119 if (_setjmp (getcjmp)) | |
1120 { | |
1121 XSET (c, Lisp_Int, quit_char); | |
765 | 1122 #ifdef MULTI_FRAME |
1123 XSET (Vlast_event_frame, Lisp_Frame, selected_frame); | |
586 | 1124 #endif |
518 | 1125 |
1126 goto non_reread; | |
1127 } | |
1128 | |
1129 /* Message turns off echoing unless more keystrokes turn it on again. */ | |
1130 if (echo_area_glyphs && *echo_area_glyphs && echo_area_glyphs != echobuf) | |
1131 cancel_echoing (); | |
1132 else | |
1133 /* If already echoing, continue. */ | |
1134 echo_dash (); | |
1135 | |
1136 /* If in middle of key sequence and minibuffer not active, | |
1137 start echoing if enough time elapses. */ | |
1138 if (minibuf_level == 0 && !immediate_echo && this_command_key_count > 0 | |
1139 && echo_keystrokes > 0 | |
1140 && (echo_area_glyphs == 0 || *echo_area_glyphs == 0)) | |
1141 { | |
1142 Lisp_Object tem0; | |
1143 | |
1083
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
1144 /* After a mouse event, start echoing right away. |
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
1145 This is because we are probably about to display a menu, |
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
1146 and we don't want to delay before doing so. */ |
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
1147 if (XTYPE (prev_event) == Lisp_Cons) |
518 | 1148 echo (); |
1083
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
1149 else |
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
1150 { |
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
1151 tem0 = sit_for (echo_keystrokes, 0, 1, 1); |
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
1152 if (EQ (tem0, Qt)) |
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
1153 echo (); |
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
1154 } |
518 | 1155 } |
1156 | |
1157 /* Maybe auto save due to number of keystrokes or idle time. */ | |
1158 | |
1159 if (commandflag != 0 | |
1160 && auto_save_interval > 0 | |
1161 && num_input_chars - last_auto_save > max (auto_save_interval, 20) | |
1162 && !detect_input_pending ()) | |
1163 { | |
1164 jmp_buf temp; | |
1165 save_getcjmp (temp); | |
1166 Fdo_auto_save (Qnil, Qnil); | |
1167 restore_getcjmp (temp); | |
1168 } | |
1169 | |
1083
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
1170 /* Try reading a character via menu prompting. |
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
1171 Try this before the sit-for, because the sit-for |
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
1172 would do the wrong thing if we are supposed to do |
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
1173 menu prompting. */ |
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
1174 c = Qnil; |
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
1175 if (INTERACTIVE && !NILP (prev_event)) |
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
1176 c = read_char_menu_prompt (nmaps, maps, prev_event, used_mouse_menu); |
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
1177 |
518 | 1178 /* Slow down auto saves logarithmically in size of current buffer, |
1179 and garbage collect while we're at it. */ | |
1083
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
1180 if (NILP (c)) |
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
1181 { |
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
1182 int delay_level, buffer_size; |
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
1183 |
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
1184 if (! MINI_WINDOW_P (XWINDOW (selected_window))) |
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
1185 last_non_minibuf_size = Z - BEG; |
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
1186 buffer_size = (last_non_minibuf_size >> 8) + 1; |
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
1187 delay_level = 0; |
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
1188 while (buffer_size > 64) |
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
1189 delay_level++, buffer_size -= buffer_size >> 2; |
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
1190 if (delay_level < 4) delay_level = 4; |
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
1191 /* delay_level is 4 for files under around 50k, 7 at 100k, |
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
1192 9 at 200k, 11 at 300k, and 12 at 500k. It is 15 at 1 meg. */ |
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
1193 |
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
1194 /* Auto save if enough time goes by without input. */ |
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
1195 if (commandflag != 0 |
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
1196 && num_input_chars > last_auto_save |
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
1197 && XTYPE (Vauto_save_timeout) == Lisp_Int |
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
1198 && XINT (Vauto_save_timeout) > 0) |
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
1199 { |
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
1200 Lisp_Object tem0; |
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
1201 int delay = delay_level * XFASTINT (Vauto_save_timeout) / 4; |
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
1202 tem0 = sit_for (delay, 0, 1, 1); |
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
1203 if (EQ (tem0, Qt)) |
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
1204 { |
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
1205 jmp_buf temp; |
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
1206 save_getcjmp (temp); |
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
1207 Fdo_auto_save (Qnil, Qnil); |
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
1208 restore_getcjmp (temp); |
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
1209 |
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
1210 /* If we have auto-saved and there is still no input |
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
1211 available, garbage collect if there has been enough |
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
1212 consing going on to make it worthwhile. */ |
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
1213 if (!detect_input_pending () |
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
1214 && consing_since_gc > gc_cons_threshold / 2) |
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
1215 Fgarbage_collect (); |
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
1216 } |
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
1217 } |
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
1218 } |
518 | 1219 |
1220 /* Actually read a character, waiting if necessary. */ | |
1083
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
1221 if (NILP (c)) |
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
1222 c = kbd_buffer_get_event (); |
518 | 1223 |
1224 if (NILP (c)) | |
1225 abort (); /* Don't think this can happen. */ | |
1226 | |
1227 /* Terminate Emacs in batch mode if at eof. */ | |
1083
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
1228 if (noninteractive && XTYPE (c) == Lisp_Int && XINT (c) < 0) |
518 | 1229 Fkill_emacs (make_number (1)); |
1230 | |
1231 non_reread: | |
1232 | |
650 | 1233 restore_getcjmp (save_jump); |
518 | 1234 |
1235 start_polling (); | |
1236 | |
1237 echo_area_glyphs = 0; | |
1238 | |
1239 /* Handle things that only apply to characters. */ | |
1240 if (XTYPE (c) == Lisp_Int) | |
1241 { | |
1242 /* If kbd_buffer_get_event gave us an EOF, return that. */ | |
1243 if (XINT (c) < 0) | |
1244 return c; | |
1245 | |
1246 /* Strip the high bits, and maybe the meta bit too. */ | |
1247 XSETINT (c, c & (meta_key ? 0377 : 0177)); | |
1248 | |
1249 if (XTYPE (Vkeyboard_translate_table) == Lisp_String | |
1250 && XSTRING (Vkeyboard_translate_table)->size > XINT (c)) | |
1251 XSETINT (c, XSTRING (Vkeyboard_translate_table)->data[c]); | |
1252 } | |
1253 | |
1254 total_keys++; | |
1255 recent_keys[recent_keys_index] = c; | |
1256 if (++recent_keys_index >= (sizeof (recent_keys)/sizeof(recent_keys[0]))) | |
1257 recent_keys_index = 0; | |
1258 | |
1259 /* Write c to the dribble file. If c is a lispy event, write | |
1260 the event's symbol to the dribble file, in <brackets>. Bleaugh. | |
1261 If you, dear reader, have a better idea, you've got the source. :-) */ | |
1262 if (dribble) | |
1263 { | |
1264 if (XTYPE (c) == Lisp_Int) | |
1265 putc (c, dribble); | |
1266 else | |
1267 { | |
1268 Lisp_Object dribblee = c; | |
1269 | |
1270 /* If it's a structured event, take the event header. */ | |
1271 if (EVENT_HAS_PARAMETERS (dribblee)) | |
1272 dribblee = EVENT_HEAD (dribblee); | |
1273 | |
1274 if (XTYPE (c) == Lisp_Symbol) | |
1275 { | |
1276 putc ('<', dribble); | |
1277 fwrite (XSYMBOL (c)->name->data, sizeof (char), | |
1278 XSYMBOL (c)->name->size, | |
1279 dribble); | |
1280 putc ('>', dribble); | |
1281 } | |
1282 } | |
1283 | |
1284 fflush (dribble); | |
1285 } | |
1286 | |
1287 store_kbd_macro_char (c); | |
1288 | |
1289 from_macro: | |
1290 reread_first: | |
1291 echo_char (c); | |
1292 | |
1293 /* Record this character as part of the current key. */ | |
1294 add_command_key (c); | |
1295 | |
1296 /* Re-reading in the middle of a command */ | |
1297 reread: | |
1298 last_input_char = c; | |
1299 num_input_chars++; | |
1300 | |
1301 /* Process the help character specially if enabled */ | |
1302 if (EQ (c, help_char) && !NILP (Vhelp_form)) | |
1303 { | |
1304 Lisp_Object tem0; | |
1305 count = specpdl_ptr - specpdl; | |
1306 | |
1307 record_unwind_protect (Fset_window_configuration, | |
1308 Fcurrent_window_configuration (Qnil)); | |
1309 | |
1310 tem0 = Feval (Vhelp_form); | |
1311 if (XTYPE (tem0) == Lisp_String) | |
1312 internal_with_output_to_temp_buffer ("*Help*", print_help, tem0); | |
1313 | |
1314 cancel_echoing (); | |
1315 c = read_char (0); | |
765 | 1316 /* Remove the help from the frame */ |
518 | 1317 unbind_to (count, Qnil); |
1318 redisplay (); | |
1319 if (EQ (c, make_number (040))) | |
1320 { | |
1321 cancel_echoing (); | |
1083
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
1322 c = read_char (0, 0, 0, Qnil, 0); |
518 | 1323 } |
1324 } | |
1325 | |
1326 return c; | |
1327 } | |
1328 | |
1329 Lisp_Object | |
1330 print_help (object) | |
1331 Lisp_Object object; | |
1332 { | |
1333 Fprinc (object, Qnil); | |
1334 return Qnil; | |
1335 } | |
1336 | |
1337 /* Copy out or in the info on where C-g should throw to. | |
1338 This is used when running Lisp code from within get_char, | |
1339 in case get_char is called recursively. | |
1340 See read_process_output. */ | |
1341 | |
1342 save_getcjmp (temp) | |
1343 jmp_buf temp; | |
1344 { | |
1345 bcopy (getcjmp, temp, sizeof getcjmp); | |
1346 } | |
1347 | |
1348 restore_getcjmp (temp) | |
1349 jmp_buf temp; | |
1350 { | |
1351 bcopy (temp, getcjmp, sizeof getcjmp); | |
1352 } | |
1353 | |
1354 | |
1355 /* Low level keyboard/mouse input. | |
1356 kbd_buffer_store_event places events in kbd_buffer, and | |
1357 kbd_buffer_get_event retrieves them. | |
1358 mouse_moved indicates when the mouse has moved again, and | |
1359 *mouse_position_hook provides the mouse position. */ | |
1360 | |
1361 /* Set this for debugging, to have a way to get out */ | |
1362 int stop_character; | |
1363 | |
765 | 1364 extern int frame_garbaged; |
518 | 1365 |
1366 /* Return true iff there are any events in the queue that read-char | |
1367 would return. If this returns false, a read-char would block. */ | |
1368 static int | |
1369 readable_events () | |
1370 { | |
1371 struct input_event *ep; | |
1372 | |
1373 if (EVENT_QUEUES_EMPTY) | |
1374 return 0; | |
1375 | |
1376 if (do_mouse_tracking) | |
1377 return 1; | |
1378 | |
1379 /* Mouse tracking is disabled, so we need to actually scan the | |
1380 input queue to see if any events are currently readable. */ | |
1381 for (ep = kbd_fetch_ptr; ep != kbd_store_ptr; ep++) | |
1382 { | |
1383 if (ep == kbd_buffer + KBD_BUFFER_SIZE) | |
1384 ep = kbd_buffer; | |
1385 | |
1386 /* Skip button-up events. */ | |
1387 if ((ep->kind == mouse_click || ep->kind == scrollbar_click) | |
1388 && (ep->modifiers & up_modifier)) | |
1389 continue; | |
1390 | |
1391 return 1; | |
1392 } | |
1393 | |
1394 return 0; | |
1395 } | |
1396 | |
1397 | |
1398 /* Restore mouse tracking enablement. See Ftrack_mouse for the only use | |
1399 of this function. */ | |
1400 static Lisp_Object | |
1401 tracking_off (old_value) | |
1402 Lisp_Object old_value; | |
1403 { | |
1404 if (! XFASTINT (old_value)) | |
1405 { | |
1406 do_mouse_tracking = 0; | |
1407 | |
1408 /* Redisplay may have been preempted because there was input | |
1409 available, and it assumes it will be called again after the | |
1410 input has been processed. If the only input available was | |
1411 the sort that we have just disabled, then we need to call | |
1412 redisplay. */ | |
1413 if (!readable_events ()) | |
1414 { | |
1415 redisplay_preserve_echo_area (); | |
1416 get_input_pending (&input_pending); | |
1417 } | |
1418 } | |
1419 } | |
1420 | |
1421 DEFUN ("track-mouse", Ftrack_mouse, Strack_mouse, 0, UNEVALLED, 0, | |
1422 "Evaluate BODY with mouse movement and button release events enabled.\n\ | |
682
71f59bd24996
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
650
diff
changeset
|
1423 Within a `track-mouse', mouse motion and button releases generate input\n\ |
71f59bd24996
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
650
diff
changeset
|
1424 events that you can read with `read-event'.\n\ |
71f59bd24996
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
650
diff
changeset
|
1425 Normally, these occurrences don't generate events.") |
518 | 1426 (args) |
1427 Lisp_Object args; | |
1428 { | |
1429 int count = specpdl_ptr - specpdl; | |
1430 Lisp_Object val; | |
1431 | |
1432 XSET (val, Lisp_Int, do_mouse_tracking); | |
1433 record_unwind_protect (tracking_off, val); | |
1434 | |
1435 do_mouse_tracking = 1; | |
1436 | |
1437 val = Fprogn (args); | |
1438 return unbind_to (count, val); | |
1439 } | |
1440 | |
1441 /* Store an event obtained at interrupt level into kbd_buffer, fifo */ | |
1442 | |
1443 void | |
1444 kbd_buffer_store_event (event) | |
1445 register struct input_event *event; | |
1446 { | |
1447 if (event->kind == no_event) | |
1448 abort (); | |
1449 | |
1450 if (event->kind == ascii_keystroke) | |
1451 { | |
1452 register int c = XFASTINT (event->code) & 0377; | |
1453 | |
1454 if (c == quit_char | |
1455 || ((c == (0200 | quit_char)) && !meta_key)) | |
1456 { | |
985
952aa214a3d0
* keyboard.c (Fexecute_mouse_event): dyked-out function deleted.
Jim Blandy <jimb@redhat.com>
parents:
966
diff
changeset
|
1457 extern SIGTYPE interrupt_signal (); |
952aa214a3d0
* keyboard.c (Fexecute_mouse_event): dyked-out function deleted.
Jim Blandy <jimb@redhat.com>
parents:
966
diff
changeset
|
1458 |
952aa214a3d0
* keyboard.c (Fexecute_mouse_event): dyked-out function deleted.
Jim Blandy <jimb@redhat.com>
parents:
966
diff
changeset
|
1459 #ifdef MULTI_FRAME |
518 | 1460 /* If this results in a quit_char being returned to Emacs as |
765 | 1461 input, set last-event-frame properly. If this doesn't |
518 | 1462 get returned to Emacs as an event, the next event read |
765 | 1463 will set Vlast_event_frame again, so this is safe to do. */ |
1464 Vlast_event_frame = FRAME_FOCUS_FRAME (event->frame); | |
985
952aa214a3d0
* keyboard.c (Fexecute_mouse_event): dyked-out function deleted.
Jim Blandy <jimb@redhat.com>
parents:
966
diff
changeset
|
1465 #endif |
952aa214a3d0
* keyboard.c (Fexecute_mouse_event): dyked-out function deleted.
Jim Blandy <jimb@redhat.com>
parents:
966
diff
changeset
|
1466 |
648 | 1467 last_event_timestamp = event->timestamp; |
518 | 1468 interrupt_signal (); |
1469 return; | |
1470 } | |
1471 | |
1472 if (c && c == stop_character) | |
1473 { | |
1474 sys_suspend (); | |
1475 return; | |
1476 } | |
1477 | |
1478 XSET (event->code, Lisp_Int, c); | |
1479 } | |
1480 | |
1481 if (kbd_store_ptr - kbd_buffer == KBD_BUFFER_SIZE) | |
1482 kbd_store_ptr = kbd_buffer; | |
1483 | |
1484 /* Don't let the very last slot in the buffer become full, | |
1485 since that would make the two pointers equal, | |
1486 and that is indistinguishable from an empty buffer. | |
1487 Discard the event if it would fill the last slot. */ | |
1488 if (kbd_fetch_ptr - 1 != kbd_store_ptr) | |
1489 { | |
1490 kbd_store_ptr->kind = event->kind; | |
1491 kbd_store_ptr->code = event->code; | |
1492 kbd_store_ptr->part = event->part; | |
765 | 1493 kbd_store_ptr->frame = event->frame; |
518 | 1494 kbd_store_ptr->modifiers = event->modifiers; |
1495 kbd_store_ptr->x = event->x; | |
1496 kbd_store_ptr->y = event->y; | |
1497 kbd_store_ptr->timestamp = event->timestamp; | |
1498 | |
1499 kbd_store_ptr++; | |
1500 } | |
1501 } | |
1502 | |
1503 static Lisp_Object make_lispy_event (); | |
1504 static Lisp_Object make_lispy_movement (); | |
1505 static Lisp_Object modify_event_symbol (); | |
1506 | |
1507 static Lisp_Object | |
1508 kbd_buffer_get_event () | |
1509 { | |
1510 register int c; | |
1511 Lisp_Object obj; | |
1512 | |
1513 if (noninteractive) | |
1514 { | |
1515 c = getchar (); | |
1516 XSET (obj, Lisp_Int, c); | |
1517 return obj; | |
1518 } | |
1519 | |
1520 /* Wait until there is input available. */ | |
1521 for (;;) | |
1522 { | |
1523 | |
1524 /* Process or toss any events that we don't want to return as | |
1525 input. The fact that we remove undesirable events here | |
1526 allows us to use EVENT_QUEUES_EMPTY in the rest of this loop. */ | |
1527 if (! do_mouse_tracking) | |
1528 while (kbd_fetch_ptr != kbd_store_ptr) | |
1529 { | |
1530 if (kbd_fetch_ptr == kbd_buffer + KBD_BUFFER_SIZE) | |
1531 kbd_fetch_ptr = kbd_buffer; | |
1532 | |
1533 if (kbd_fetch_ptr->kind == mouse_click | |
1534 || kbd_fetch_ptr->kind == scrollbar_click) | |
1535 { | |
1536 if ((kbd_fetch_ptr->modifiers & up_modifier) == 0) | |
1537 break; | |
1538 } | |
1539 else | |
1540 break; | |
1541 | |
1542 kbd_fetch_ptr++; | |
1543 } | |
1544 | |
1545 if (!EVENT_QUEUES_EMPTY) | |
1546 break; | |
1547 | |
1548 /* If the quit flag is set, then read_char will return | |
1549 quit_char, so that counts as "available input." */ | |
1550 if (!NILP (Vquit_flag)) | |
1551 quit_throw_to_read_char (); | |
1552 | |
1553 /* One way or another, wait until input is available; then, if | |
1554 interrupt handlers have not read it, read it now. */ | |
1555 | |
1556 #ifdef OLDVMS | |
1557 wait_for_kbd_input (); | |
1558 #else | |
1559 /* Note SIGIO has been undef'd if FIONREAD is missing. */ | |
1560 #ifdef SIGIO | |
1561 gobble_input (0); | |
1562 #endif /* SIGIO */ | |
1563 if (EVENT_QUEUES_EMPTY) | |
1564 { | |
650 | 1565 Lisp_Object minus_one; |
1566 | |
1567 XSET (minus_one, Lisp_Int, -1); | |
1568 wait_reading_process_input (0, 0, minus_one, 1); | |
518 | 1569 |
1570 if (!interrupt_input && EVENT_QUEUES_EMPTY) | |
1571 { | |
1572 read_avail_input (0); | |
1573 } | |
1574 } | |
1575 #endif /* not VMS */ | |
1576 } | |
1577 | |
1578 /* At this point, we know that there is a readable event available | |
1579 somewhere. If the event queue is empty, then there must be a | |
1580 mouse movement enabled and available. */ | |
1581 if (kbd_fetch_ptr != kbd_store_ptr) | |
1582 { | |
1583 if (kbd_fetch_ptr == kbd_buffer + KBD_BUFFER_SIZE) | |
1584 kbd_fetch_ptr = kbd_buffer; | |
765 | 1585 /* Do the redirection specified by the focus_frame |
727 | 1586 member now, before we return this event. */ |
1083
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
1587 kbd_fetch_ptr->frame |
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
1588 = XFRAME (FRAME_FOCUS_FRAME (kbd_fetch_ptr->frame)); |
985
952aa214a3d0
* keyboard.c (Fexecute_mouse_event): dyked-out function deleted.
Jim Blandy <jimb@redhat.com>
parents:
966
diff
changeset
|
1589 |
952aa214a3d0
* keyboard.c (Fexecute_mouse_event): dyked-out function deleted.
Jim Blandy <jimb@redhat.com>
parents:
966
diff
changeset
|
1590 #ifdef MULTI_FRAME |
765 | 1591 XSET (Vlast_event_frame, Lisp_Frame, kbd_fetch_ptr->frame); |
985
952aa214a3d0
* keyboard.c (Fexecute_mouse_event): dyked-out function deleted.
Jim Blandy <jimb@redhat.com>
parents:
966
diff
changeset
|
1592 #endif |
952aa214a3d0
* keyboard.c (Fexecute_mouse_event): dyked-out function deleted.
Jim Blandy <jimb@redhat.com>
parents:
966
diff
changeset
|
1593 |
708 | 1594 last_event_timestamp = kbd_fetch_ptr->timestamp; |
518 | 1595 obj = make_lispy_event (kbd_fetch_ptr); |
1596 kbd_fetch_ptr->kind = no_event; | |
1597 kbd_fetch_ptr++; | |
1598 if (XTYPE (obj) == Lisp_Int) | |
1599 XSET (obj, Lisp_Int, XINT (obj) & (meta_key ? 0377 : 0177)); | |
1600 } | |
1601 else if (do_mouse_tracking && mouse_moved) | |
1602 { | |
765 | 1603 FRAME_PTR frame; |
732 | 1604 Lisp_Object x, y; |
1605 unsigned long time; | |
518 | 1606 |
765 | 1607 (*mouse_position_hook) (&frame, &x, &y, &time); |
985
952aa214a3d0
* keyboard.c (Fexecute_mouse_event): dyked-out function deleted.
Jim Blandy <jimb@redhat.com>
parents:
966
diff
changeset
|
1608 #ifdef MULTI_FRAME |
765 | 1609 XSET (Vlast_event_frame, Lisp_Frame, frame); |
985
952aa214a3d0
* keyboard.c (Fexecute_mouse_event): dyked-out function deleted.
Jim Blandy <jimb@redhat.com>
parents:
966
diff
changeset
|
1610 #endif |
765 | 1611 |
1612 obj = make_lispy_movement (frame, x, y, time); | |
518 | 1613 } |
1614 else | |
1615 /* We were promised by the above while loop that there was | |
1616 something for us to read! */ | |
1617 abort (); | |
1618 | |
1619 input_pending = readable_events (); | |
1620 | |
1621 return (obj); | |
1622 } | |
1623 | |
1624 /* Caches for modify_event_symbol. */ | |
1625 static Lisp_Object func_key_syms; | |
1626 static Lisp_Object mouse_syms; | |
1627 | |
1628 /* You'll notice that this table is arranged to be conveniently | |
1629 indexed by X Windows keysym values. */ | |
1630 static char *lispy_function_keys[] = | |
1631 { | |
1632 /* X Keysym value */ | |
1633 | |
1634 "home", /* 0xff50 */ /* IsCursorKey */ | |
1635 "left", | |
1636 "up", | |
1637 "right", | |
1638 "down", | |
1639 "prior", | |
1640 "next", | |
1641 "end", | |
1642 "begin", | |
1643 0, /* 0xff59 */ | |
1644 0, 0, 0, 0, 0, 0, | |
1645 "select", /* 0xff60 */ /* IsMiscFunctionKey */ | |
1646 "print", | |
1647 "execute", | |
1648 "insert", | |
1649 0, /* 0xff64 */ | |
1650 "undo", | |
1651 "redo", | |
1652 "menu", | |
1653 "find", | |
1654 "cancel", | |
1655 "help", | |
1656 "break", /* 0xff6b */ | |
1657 | |
1658 /* Here are some keys found mostly on HP keyboards. The X event | |
1659 handling code will strip bit 29, which flags vendor-specific | |
1660 keysyms. */ | |
1661 "reset", /* 0x1000ff6c */ | |
1662 "system", | |
1663 "user", | |
1664 "clearline", | |
1665 "insertline", | |
1666 "deleteline", | |
1667 "insertchar", | |
1668 "deletechar", | |
1669 "backtab", | |
1670 "kp_backtab", /* 0x1000ff75 */ | |
1671 0, /* 0xff76 */ | |
1672 0, 0, 0, 0, 0, 0, 0, 0, 0, /* 0xff7f */ | |
1673 "kp-space", /* 0xff80 */ /* IsKeypadKey */ | |
1674 0, 0, 0, 0, 0, 0, 0, 0, | |
1675 "kp-tab", /* 0xff89 */ | |
1676 0, 0, 0, | |
1677 "kp-enter", /* 0xff8d */ | |
1678 0, 0, 0, | |
1679 "kp-f1", /* 0xff91 */ | |
1680 "kp-f2", | |
1681 "kp-f3", | |
1682 "kp-f4", | |
1683 0, /* 0xff95 */ | |
1684 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, | |
1685 "kp-multiply", /* 0xffaa */ | |
1686 "kp-add", | |
1687 "kp-separator", | |
1688 "kp-subtract", | |
1689 "kp-decimal", | |
1690 "kp-divide", /* 0xffaf */ | |
1691 "kp-0", /* 0xffb0 */ | |
1692 "kp-1", "kp-2", "kp-3", "kp-4", "kp-5", "kp-6", "kp-7", "kp-8", "kp-9", | |
1693 0, /* 0xffba */ | |
1694 0, 0, | |
1695 "kp-equal", /* 0xffbd */ | |
1696 "f1", /* 0xffbe */ /* IsFunctionKey */ | |
1697 "f2", "f3", "f4", | |
1698 "f5", "f6", "f7", "f8", "f9", "f10", "f11", "f12", | |
1699 "f13", "f14", "f15", "f16", "f17", "f18", "f19", "f20", | |
1700 "f21", "f22", "f23", "f24", "f25", "f26", "f27", "f28", | |
1701 "f29", "f30", "f31", "f32", "f33", "f34", "f35" /* 0xffe0 */ | |
1702 }; | |
1703 | |
1704 static char *lispy_mouse_names[] = | |
1705 { | |
1706 "mouse-1", "mouse-2", "mouse-3", "mouse-4", "mouse-5" | |
1707 }; | |
1708 | |
1709 /* Given a struct input_event, build the lisp event which represents | |
1710 it. If EVENT is 0, build a mouse movement event from the mouse | |
1711 movement buffer, which should have a movement event in it. */ | |
1712 | |
1713 static Lisp_Object | |
1714 make_lispy_event (event) | |
1715 struct input_event *event; | |
1716 { | |
1717 #ifdef SWITCH_ENUM_BUG | |
1718 switch ((int) event->kind) | |
1719 #else | |
1720 switch (event->kind) | |
1721 #endif | |
1722 { | |
1723 | |
1724 /* A simple keystroke. */ | |
1725 case ascii_keystroke: | |
1726 return event->code; | |
1727 break; | |
1728 | |
1729 /* A function key. The symbol may need to have modifier prefixes | |
1730 tacked onto it. */ | |
1731 case non_ascii_keystroke: | |
1732 return modify_event_symbol (XFASTINT (event->code), event->modifiers, | |
1733 Qfunction_key, | |
1734 lispy_function_keys, &func_key_syms, | |
1735 (sizeof (lispy_function_keys) | |
1736 / sizeof (lispy_function_keys[0]))); | |
1737 break; | |
1738 | |
1739 /* A mouse click - build a list of the relevant information. */ | |
1740 case mouse_click: | |
1741 { | |
1742 int part; | |
1743 Lisp_Object window = | |
765 | 1744 window_from_coordinates (event->frame, |
518 | 1745 XINT (event->x), XINT (event->y), |
1746 &part); | |
1747 Lisp_Object posn; | |
1748 | |
1749 if (XTYPE (window) != Lisp_Window) | |
1750 posn = Qnil; | |
1751 else | |
1752 { | |
1753 XSETINT (event->x, (XINT (event->x) | |
1754 - XINT (XWINDOW (window)->left))); | |
1755 XSETINT (event->y, (XINT (event->y) | |
1756 - XINT (XWINDOW (window)->top))); | |
1757 | |
1758 if (part == 1) | |
1759 posn = Qmode_line; | |
1760 else if (part == 2) | |
732 | 1761 posn = Qvertical_line; |
518 | 1762 else |
1763 XSET (posn, Lisp_Int, | |
1764 buffer_posn_from_coords (XWINDOW (window), | |
1765 XINT (event->x), | |
1766 XINT (event->y))); | |
1767 } | |
1768 | |
1769 return Fcons (modify_event_symbol (XFASTINT (event->code) - 1, | |
1770 event->modifiers, | |
1771 Qmouse_click, | |
1772 lispy_mouse_names, &mouse_syms, | |
1773 (sizeof (lispy_mouse_names) | |
1774 / sizeof (lispy_mouse_names[0]))), | |
1775 Fcons (window, | |
1776 Fcons (posn, | |
1777 Fcons (Fcons (event->x, event->y), | |
708 | 1778 Fcons (make_number |
1779 (event->timestamp), | |
518 | 1780 Qnil))))); |
1781 } | |
1782 | |
1783 /* A scrollbar click. Build a list containing the relevant | |
1784 information. */ | |
1785 case scrollbar_click: | |
1786 { | |
1787 Lisp_Object button | |
1788 = modify_event_symbol (XFASTINT (event->code) - 1, | |
1789 event->modifiers, | |
1790 Qmouse_click, | |
1791 lispy_mouse_names, &mouse_syms, | |
1792 (sizeof (lispy_mouse_names) | |
1793 / sizeof (lispy_mouse_names[0]))); | |
1794 return Fcons (event->part, | |
765 | 1795 Fcons (FRAME_SELECTED_WINDOW (event->frame), |
518 | 1796 Fcons (button, |
1797 Fcons (Fcons (event->x, event->y), | |
708 | 1798 Fcons (make_number |
1799 (event->timestamp), | |
518 | 1800 Qnil))))); |
1801 } | |
1802 | |
1803 /* The 'kind' field of the event is something we don't recognize. */ | |
1804 default: | |
1805 abort(); | |
1806 } | |
1807 } | |
1808 | |
1809 static Lisp_Object | |
765 | 1810 make_lispy_movement (frame, x, y, time) |
1811 FRAME_PTR frame; | |
518 | 1812 Lisp_Object x, y; |
732 | 1813 unsigned long time; |
518 | 1814 { |
1815 Lisp_Object window; | |
1816 int ix, iy; | |
1817 Lisp_Object posn; | |
1818 int part; | |
1819 | |
1820 ix = XINT (x); | |
1821 iy = XINT (y); | |
765 | 1822 window = (frame |
1823 ? window_from_coordinates (frame, ix, iy, &part) | |
518 | 1824 : Qnil); |
1825 if (XTYPE (window) != Lisp_Window) | |
1826 posn = Qnil; | |
1827 else | |
1828 { | |
1829 ix -= XINT (XWINDOW (window)->left); | |
1830 iy -= XINT (XWINDOW (window)->top); | |
1831 if (part == 1) | |
1832 posn = Qmode_line; | |
1833 else if (part == 2) | |
732 | 1834 posn = Qvertical_line; |
518 | 1835 else |
1836 XSET (posn, Lisp_Int, buffer_posn_from_coords (XWINDOW (window), | |
1837 ix, iy)); | |
1838 } | |
1839 | |
1840 XSETINT (x, ix); | |
1841 XSETINT (y, iy); | |
1842 return Fcons (Qmouse_movement, | |
1843 Fcons (window, | |
1844 Fcons (posn, | |
1845 Fcons (Fcons (x, y), | |
732 | 1846 Fcons (make_number (time), Qnil))))); |
518 | 1847 } |
1848 | |
1849 | |
1850 | |
1851 /* Place the written representation of MODIFIERS in BUF, '\0'-terminated, | |
1852 and return its length. */ | |
1853 | |
1854 static int | |
1855 format_modifiers (modifiers, buf) | |
1856 int modifiers; | |
1857 char *buf; | |
1858 { | |
1859 char *p = buf; | |
1860 | |
708 | 1861 if (modifiers & ctrl_modifier) { *p++ = 'C'; *p++ = '-'; } |
518 | 1862 if (modifiers & meta_modifier) { *p++ = 'M'; *p++ = '-'; } |
1863 if (modifiers & shift_modifier) { *p++ = 'S'; *p++ = '-'; } | |
1864 if (modifiers & up_modifier) { *p++ = 'U'; *p++ = '-'; } | |
1865 *p = '\0'; | |
1866 | |
1867 return p - buf; | |
1868 } | |
1869 | |
1870 | |
1871 /* Given a symbol whose name begins with modifiers ("C-", "M-", etc), | |
1872 return a symbol with the modifiers placed in the canonical order. | |
1873 | |
1874 Fdefine_key calls this to make sure that (for example) C-M-foo | |
1875 and M-C-foo end up being equivalent in the keymap. */ | |
1876 | |
1877 Lisp_Object | |
1878 reorder_modifiers (symbol) | |
1879 Lisp_Object symbol; | |
1880 { | |
1881 struct Lisp_String *name; | |
1882 int i; | |
1883 int modifiers; | |
1884 int not_canonical; | |
1885 | |
1886 CHECK_SYMBOL (symbol, 1); | |
1887 | |
1888 modifiers = 0; | |
1889 name = XSYMBOL (symbol)->name; | |
1890 | |
1891 /* Special case for things with only one modifier, which is | |
1892 (hopefully) the vast majority of cases. */ | |
1893 if (! (name->size >= 4 && name->data[1] == '-' && name->data[3] == '-')) | |
1894 return symbol; | |
1895 | |
1896 for (i = 0; i + 1 < name->size && name->data[i + 1] == '-'; i += 2) | |
1897 switch (name->data[i]) | |
1898 { | |
1899 case 'M': | |
1900 not_canonical |= (modifiers & (meta_modifier|ctrl_modifier | |
1901 |shift_modifier|up_modifier)); | |
1902 modifiers |= meta_modifier; | |
1903 break; | |
1904 | |
1905 case 'C': | |
1906 not_canonical |= (modifiers & | |
1907 (ctrl_modifier|shift_modifier|up_modifier)); | |
1908 modifiers |= ctrl_modifier; | |
1909 break; | |
1910 | |
1911 case 'S': | |
1912 not_canonical |= (modifiers & (shift_modifier|up_modifier)); | |
1913 modifiers |= shift_modifier; | |
1914 break; | |
1915 | |
1916 case 'U': | |
1917 not_canonical |= (modifiers & (up_modifier)); | |
1918 modifiers |= up_modifier; | |
1919 break; | |
1920 | |
1921 default: | |
1922 goto no_more_modifiers; | |
1923 } | |
1924 no_more_modifiers: | |
1925 | |
1926 if (!not_canonical) | |
1927 return symbol; | |
1928 | |
1929 /* The modifiers were out of order, so find a new symbol with the | |
1930 mods in order. Since the symbol name could contain nulls, we can't | |
1931 use intern here; we have to use Fintern, which expects a genuine | |
1932 Lisp_String, and keeps a reference to it. */ | |
1933 { | |
1934 char *new_mods = (char *) alloca (sizeof ("C-M-S-U-")); | |
1935 int len = format_modifiers (modifiers, new_mods); | |
1936 Lisp_Object new_name = make_uninit_string (len + name->size - i); | |
1937 | |
1938 bcopy (new_mods, XSTRING (new_name)->data, len); | |
1939 bcopy (name->data + i, XSTRING (new_name)->data + len, name->size - i); | |
1940 | |
1941 return Fintern (new_name, Qnil); | |
1942 } | |
1943 } | |
1944 | |
1945 | |
1946 /* For handling events, we often want to produce a symbol whose name | |
1947 is a series of modifier key prefixes ("M-", "C-", etcetera) attached | |
1948 to some base, like the name of a function key or mouse button. | |
1949 modify_event_symbol produces symbols of this sort. | |
1950 | |
1951 NAME_TABLE should point to an array of strings, such that NAME_TABLE[i] | |
1952 is the name of the i'th symbol. TABLE_SIZE is the number of elements | |
1953 in the table. | |
1954 | |
1955 SYMBOL_TABLE should be a pointer to a Lisp_Object whose value will | |
1956 persist between calls to modify_event_symbol that it can use to | |
1957 store a cache of the symbols it's generated for this NAME_TABLE | |
1958 before. | |
1959 | |
1960 SYMBOL_NUM is the number of the base name we want from NAME_TABLE. | |
1961 | |
1962 MODIFIERS is a set of modifier bits (as given in struct input_events) | |
1963 whose prefixes should be applied to the symbol name. | |
1964 | |
1965 SYMBOL_KIND is the value to be placed in the event_kind property of | |
1966 the returned symbol. */ | |
1967 | |
1968 static Lisp_Object | |
1969 modify_event_symbol (symbol_num, modifiers, symbol_kind, name_table, | |
1970 symbol_table, table_size) | |
1971 int symbol_num; | |
1972 unsigned modifiers; | |
1973 Lisp_Object symbol_kind; | |
1974 char **name_table; | |
1975 Lisp_Object *symbol_table; | |
1976 int table_size; | |
1977 { | |
1978 Lisp_Object *slot, *unmodified_slot; | |
1979 | |
1980 /* Is this a request for a valid symbol? */ | |
1981 if (symbol_num < 0 || symbol_num >= table_size | |
1982 || modifiers >= NUM_MODIFIER_COMBOS) | |
1983 abort (); | |
1984 | |
1985 /* If *symbol_table is not a vector of the appropriate size, | |
1986 set it to one. */ | |
1987 if (XTYPE (*symbol_table) != Lisp_Vector | |
1988 || XVECTOR (*symbol_table)->size != table_size) | |
1989 *symbol_table = Fmake_vector (make_number (table_size), Qnil); | |
1990 | |
1991 unmodified_slot = slot = & XVECTOR (*symbol_table)->contents[symbol_num]; | |
1992 | |
1993 /* If there are modifier keys, there had better be a vector in | |
1994 this symbol's position of the symbol_table. */ | |
1995 if (modifiers != 0) | |
1996 { | |
1997 Lisp_Object slot_contents = *slot; | |
1998 | |
1999 /* If there isn't the right sort of vector there, put one in. */ | |
2000 if (XTYPE (slot_contents) != Lisp_Vector | |
2001 || XVECTOR (slot_contents)->size != NUM_MODIFIER_COMBOS) | |
2002 { | |
2003 *slot = Fmake_vector (make_number (NUM_MODIFIER_COMBOS), Qnil); | |
2004 | |
2005 /* Make sure that the vector has an entry for the unmodified | |
2006 symbol, so we can put it on the event_unmodified property. */ | |
2007 if (! NILP (slot_contents)) | |
2008 XVECTOR (*slot)->contents[0] = slot_contents; | |
2009 else | |
2010 XVECTOR (*slot)->contents[0] = intern (name_table [symbol_num]); | |
2011 } | |
2012 } | |
2013 | |
2014 /* If this entry has been filled in with a modified symbol vector, | |
2015 point to the appropriate slot within that. */ | |
2016 if (XTYPE (*slot) == Lisp_Vector) | |
2017 { | |
2018 unmodified_slot = & XVECTOR (*slot)->contents[0]; | |
2019 slot = & XVECTOR (*slot)->contents[modifiers]; | |
2020 } | |
2021 | |
2022 /* Make sure we have an unmodified version of the symbol in its | |
2023 proper place? */ | |
2024 if (NILP (*unmodified_slot)) | |
2025 { | |
2026 *unmodified_slot = intern (name_table [symbol_num]); | |
2027 Fput (*unmodified_slot, Qevent_kind, symbol_kind); | |
2028 Fput (*unmodified_slot, Qevent_unmodified, *unmodified_slot); | |
2029 } | |
2030 | |
2031 /* Have we already created a symbol for this combination of modifiers? */ | |
2032 if (NILP (*slot)) | |
2033 { | |
2034 /* No, let's create one. */ | |
2035 char *modified_name | |
2036 = (char *) alloca (sizeof ("C-M-S-U-") | |
2037 + strlen (name_table [symbol_num])); | |
2038 | |
2039 strcpy (modified_name + format_modifiers (modifiers, modified_name), | |
2040 name_table [symbol_num]); | |
2041 | |
2042 *slot = intern (modified_name); | |
2043 Fput (*slot, Qevent_kind, symbol_kind); | |
2044 Fput (*slot, Qevent_unmodified, *unmodified_slot); | |
2045 } | |
2046 | |
2047 return *slot; | |
2048 } | |
2049 | |
2050 DEFUN ("mouse-click-p", Fmouse_click_p, Smouse_click_p, 1, 1, 0, | |
2051 "Return non-nil iff OBJECT is a representation of a mouse event.\n\ | |
2052 A mouse event is a list of five elements whose car is a symbol of the\n\ | |
2053 form <MODIFIERS>mouse-<DIGIT>. I hope this is a temporary hack.") | |
2054 (object) | |
2055 Lisp_Object object; | |
2056 { | |
2057 if (EVENT_HAS_PARAMETERS (object) | |
2058 && EQ (EVENT_HEAD_KIND (EVENT_HEAD (object)), | |
2059 Qmouse_click)) | |
2060 return Qt; | |
2061 else | |
2062 return Qnil; | |
2063 } | |
2064 | |
2065 /* Store into *addr a value nonzero if terminal input chars are available. | |
2066 Serves the purpose of ioctl (0, FIONREAD, addr) | |
2067 but works even if FIONREAD does not exist. | |
2068 (In fact, this may actually read some input.) */ | |
2069 | |
2070 static void | |
2071 get_input_pending (addr) | |
2072 int *addr; | |
2073 { | |
2074 /* First of all, have we already counted some input? */ | |
2075 *addr = !NILP (Vquit_flag) || readable_events (); | |
2076 | |
2077 /* If input is being read as it arrives, and we have none, there is none. */ | |
2078 if (*addr > 0 || (interrupt_input && ! interrupts_deferred)) | |
2079 return; | |
2080 | |
2081 /* Try to read some input and see how much we get. */ | |
2082 gobble_input (0); | |
2083 *addr = !NILP (Vquit_flag) || readable_events (); | |
2084 } | |
2085 | |
2086 /* Interface to read_avail_input, blocking SIGIO if necessary. */ | |
2087 | |
2088 int | |
2089 gobble_input (expected) | |
2090 int expected; | |
2091 { | |
2092 #ifndef VMS | |
2093 #ifdef SIGIO | |
2094 if (interrupt_input) | |
2095 { | |
624 | 2096 SIGMASKTYPE mask; |
638 | 2097 mask = sigblockx (SIGIO); |
518 | 2098 read_avail_input (expected); |
638 | 2099 sigsetmask (mask); |
518 | 2100 } |
2101 else | |
2102 #endif | |
2103 read_avail_input (expected); | |
2104 #endif | |
2105 } | |
2106 | |
2107 #ifndef VMS | |
2108 | |
2109 /* Read any terminal input already buffered up by the system | |
2110 into the kbd_buffer, but do not wait. | |
2111 | |
2112 EXPECTED should be nonzero if the caller knows there is some input. | |
2113 | |
2114 Except on VMS, all input is read by this function. | |
2115 If interrupt_input is nonzero, this function MUST be called | |
2116 only when SIGIO is blocked. | |
2117 | |
2118 Returns the number of keyboard chars read, or -1 meaning | |
2119 this is a bad time to try to read input. */ | |
2120 | |
2121 static int | |
2122 read_avail_input (expected) | |
2123 int expected; | |
2124 { | |
2125 struct input_event buf[KBD_BUFFER_SIZE]; | |
2126 register int i; | |
2127 int nread; | |
2128 | |
2129 if (read_socket_hook) | |
2130 /* No need for FIONREAD or fcntl; just say don't wait. */ | |
2131 nread = (*read_socket_hook) (0, buf, KBD_BUFFER_SIZE, expected, expected); | |
2132 else | |
2133 { | |
2134 unsigned char cbuf[KBD_BUFFER_SIZE]; | |
2135 | |
2136 #ifdef FIONREAD | |
2137 /* Find out how much input is available. */ | |
2138 if (ioctl (0, FIONREAD, &nread) < 0) | |
2139 /* Formerly simply reported no input, but that sometimes led to | |
2140 a failure of Emacs to terminate. | |
2141 SIGHUP seems appropriate if we can't reach the terminal. */ | |
2142 kill (getpid (), SIGHUP); | |
2143 if (nread == 0) | |
2144 return 0; | |
2145 if (nread > sizeof cbuf) | |
2146 nread = sizeof cbuf; | |
2147 #else /* no FIONREAD */ | |
2148 #ifdef USG | |
2149 /* Read some input if available, but don't wait. */ | |
2150 nread = sizeof cbuf; | |
2151 fcntl (fileno (stdin), F_SETFL, O_NDELAY); | |
2152 #else | |
2153 you lose; | |
2154 #endif | |
2155 #endif | |
2156 | |
2157 /* Now read; for one reason or another, this will not block. */ | |
2158 while (1) | |
2159 { | |
2160 nread = read (fileno (stdin), cbuf, nread); | |
2161 #ifdef AIX | |
2162 /* The kernel sometimes fails to deliver SIGHUP for ptys. | |
2163 This looks incorrect, but it isn't, because _BSD causes | |
2164 O_NDELAY to be defined in fcntl.h as O_NONBLOCK, | |
2165 and that causes a value other than 0 when there is no input. */ | |
2166 if (nread == 0) | |
2167 kill (SIGHUP, 0); | |
2168 #endif | |
2169 /* Retry the read if it is interrupted. */ | |
2170 if (nread >= 0 | |
2171 || ! (errno == EAGAIN || errno == EFAULT | |
2172 #ifdef EBADSLT | |
2173 || errno == EBADSLT | |
2174 #endif | |
2175 )) | |
2176 break; | |
2177 } | |
2178 | |
2179 #ifndef FIONREAD | |
2180 #ifdef USG | |
2181 fcntl (fileno (stdin), F_SETFL, 0); | |
2182 #endif /* USG */ | |
2183 #endif /* no FIONREAD */ | |
2184 for (i = 0; i < nread; i++) | |
2185 { | |
2186 buf[i].kind = ascii_keystroke; | |
2187 XSET (buf[i].code, Lisp_Int, cbuf[i]); | |
765 | 2188 buf[i].frame = selected_frame; |
518 | 2189 } |
2190 } | |
2191 | |
2192 /* Scan the chars for C-g and store them in kbd_buffer. */ | |
2193 for (i = 0; i < nread; i++) | |
2194 { | |
2195 kbd_buffer_store_event (&buf[i]); | |
2196 /* Don't look at input that follows a C-g too closely. | |
2197 This reduces lossage due to autorepeat on C-g. */ | |
2198 if (buf[i].kind == ascii_keystroke | |
2199 && XINT(buf[i].code) == quit_char) | |
2200 break; | |
2201 } | |
2202 | |
2203 return nread; | |
2204 } | |
2205 #endif /* not VMS */ | |
2206 | |
2207 #ifdef SIGIO /* for entire page */ | |
2208 /* Note SIGIO has been undef'd if FIONREAD is missing. */ | |
2209 | |
2210 input_available_signal (signo) | |
2211 int signo; | |
2212 { | |
2213 /* Must preserve main program's value of errno. */ | |
2214 int old_errno = errno; | |
2215 #ifdef BSD4_1 | |
2216 extern int select_alarmed; | |
2217 #endif | |
2218 | |
2219 #ifdef USG | |
2220 /* USG systems forget handlers when they are used; | |
2221 must reestablish each time */ | |
2222 signal (signo, input_available_signal); | |
2223 #endif /* USG */ | |
2224 | |
2225 #ifdef BSD4_1 | |
2226 sigisheld (SIGIO); | |
2227 #endif | |
2228 | |
648 | 2229 if (input_available_clear_time) |
2230 EMACS_SET_SECS_USECS (*input_available_clear_time, 0, 0); | |
518 | 2231 |
2232 while (1) | |
2233 { | |
2234 int nread; | |
2235 nread = read_avail_input (1); | |
2236 /* -1 means it's not ok to read the input now. | |
2237 UNBLOCK_INPUT will read it later; now, avoid infinite loop. | |
2238 0 means there was no keyboard input available. */ | |
2239 if (nread <= 0) | |
2240 break; | |
2241 | |
2242 #ifdef BSD4_1 | |
2243 select_alarmed = 1; /* Force the select emulator back to life */ | |
2244 #endif | |
2245 } | |
2246 | |
2247 #ifdef BSD4_1 | |
2248 sigfree (); | |
2249 #endif | |
2250 errno = old_errno; | |
2251 } | |
2252 #endif /* SIGIO */ | |
2253 | |
2254 /* Return the prompt-string of a sparse keymap. | |
2255 This is the first element which is a string. | |
2256 Return nil if there is none. */ | |
2257 | |
2258 Lisp_Object | |
2259 map_prompt (map) | |
2260 Lisp_Object map; | |
2261 { | |
2262 while (CONSP (map)) | |
2263 { | |
2264 register Lisp_Object tem; | |
2265 tem = Fcar (map); | |
2266 if (XTYPE (tem) == Lisp_String) | |
2267 return tem; | |
2268 map = Fcdr (map); | |
2269 } | |
2270 return Qnil; | |
2271 } | |
2272 | |
2273 static int echo_flag; | |
2274 static int echo_now; | |
2275 | |
2276 /* Read a character like read_char but optionally prompt based on maps | |
1083
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
2277 in the array MAPS. NMAPS is the length of MAPS. |
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
2278 |
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
2279 PREV_EVENT is the previous input event, or nil if we are reading |
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
2280 the first event of a key sequence. |
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
2281 |
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
2282 If we use a mouse menu to read the input, we store 1 into *USED_MOUSE_MENU. |
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
2283 Otherwise we store 0 there. |
518 | 2284 |
2285 The prompting is done based on the prompt-string of the map | |
2286 and the strings associated with various map elements. */ | |
2287 | |
2288 Lisp_Object | |
1083
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
2289 read_char_menu_prompt (nmaps, maps, prev_event, used_mouse_menu) |
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
2290 int nmaps; |
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
2291 Lisp_Object *maps; |
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
2292 Lisp_Object prev_event; |
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
2293 int *used_mouse_menu; |
518 | 2294 { |
1083
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
2295 int mapno; |
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
2296 register Lisp_Object name; |
518 | 2297 int nlength; |
765 | 2298 int width = FRAME_WIDTH (selected_frame) - 4; |
1083
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
2299 char *menu = (char *) alloca (width + 4); |
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
2300 int idx = -1; |
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
2301 Lisp_Object rest, vector; |
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
2302 |
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
2303 *used_mouse_menu = 0; |
518 | 2304 |
2305 /* Use local over global Menu maps */ | |
2306 | |
1083
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
2307 if (! menu_prompting) |
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
2308 return Qnil; |
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
2309 |
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
2310 /* Get the menu name from the first map that has one (a prompt string). */ |
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
2311 for (mapno = 0; mapno < nmaps; mapno++) |
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
2312 { |
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
2313 name = map_prompt (maps[mapno]); |
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
2314 if (!NILP (name)) |
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
2315 break; |
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
2316 } |
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
2317 |
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
2318 /* If we don't have any menus, just read a character normally. */ |
518 | 2319 if (NILP (name)) |
1083
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
2320 return Qnil; |
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
2321 |
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
2322 #ifdef HAVE_X_MENU |
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
2323 /* If we got to this point via a mouse click, |
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
2324 use a real menu for mouse selection. */ |
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
2325 if (XTYPE (prev_event) == Lisp_Cons) |
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
2326 { |
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
2327 /* Display the menu and get the selection. */ |
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
2328 Lisp_Object *realmaps |
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
2329 = (Lisp_Object *) alloca (nmaps * sizeof (Lisp_Object)); |
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
2330 Lisp_Object value; |
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
2331 int nmaps1 = 0; |
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
2332 |
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
2333 /* Use the maps that are not nil. */ |
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
2334 for (mapno = 0; mapno < nmaps; mapno++) |
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
2335 if (!NILP (maps[mapno])) |
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
2336 realmaps[nmaps1++] = maps[mapno]; |
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
2337 |
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
2338 value = Fx_popup_menu (prev_event, Flist (nmaps1, realmaps)); |
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
2339 if (NILP (value)) |
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
2340 XSET (value, Lisp_Int, quit_char); |
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
2341 *used_mouse_menu = 1; |
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
2342 return value; |
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
2343 } |
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
2344 #endif /* HAVE_X_MENU */ |
518 | 2345 |
2346 /* Prompt string always starts with map's prompt, and a space. */ | |
2347 strcpy (menu, XSTRING (name)->data); | |
2348 nlength = XSTRING (name)->size; | |
1083
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
2349 menu[nlength++] = ':'; |
518 | 2350 menu[nlength++] = ' '; |
2351 menu[nlength] = 0; | |
2352 | |
1083
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
2353 /* Start prompting at start of first map. */ |
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
2354 mapno = 0; |
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
2355 rest = maps[mapno]; |
518 | 2356 |
2357 /* Present the documented bindings, a line at a time. */ | |
2358 while (1) | |
2359 { | |
2360 int notfirst = 0; | |
2361 int i = nlength; | |
2362 Lisp_Object obj; | |
2363 int ch; | |
2364 | |
2365 /* Loop over elements of map. */ | |
1083
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
2366 while (i < width) |
518 | 2367 { |
1083
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
2368 Lisp_Object s, elt; |
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
2369 |
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
2370 /* If reached end of map, start at beginning of next map. */ |
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
2371 if (NILP (rest)) |
518 | 2372 { |
1083
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
2373 mapno++; |
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
2374 /* At end of last map, wrap around to first map if just starting, |
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
2375 or end this line if already have something on it. */ |
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
2376 if (mapno == nmaps) |
518 | 2377 { |
1083
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
2378 if (notfirst) |
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
2379 break; |
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
2380 else |
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
2381 mapno = 0; |
518 | 2382 } |
1083
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
2383 rest = maps[mapno]; |
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
2384 } |
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
2385 |
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
2386 /* Look at the next element of the map. */ |
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
2387 if (idx >= 0) |
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
2388 elt = XVECTOR (vector)->contents[idx]; |
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
2389 else |
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
2390 elt = Fcar_safe (rest); |
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
2391 |
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
2392 if (idx < 0 && XTYPE (elt) == Lisp_Vector) |
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
2393 { |
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
2394 /* If we found a dense table in the keymap, |
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
2395 advanced past it, but start scanning its contents. */ |
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
2396 rest = Fcdr_safe (rest); |
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
2397 vector = elt; |
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
2398 idx = 0; |
518 | 2399 } |
2400 else | |
2401 { | |
1083
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
2402 /* An ordinary element. */ |
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
2403 s = Fcar_safe (Fcdr_safe (elt)); |
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
2404 if (XTYPE (s) != Lisp_String) |
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
2405 /* Ignore the element if it has no prompt string. */ |
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
2406 ; |
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
2407 /* If we have room for the prompt string, add it to this line. |
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
2408 If this is the first on the line, always add it. */ |
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
2409 else if (XSTRING (s)->size + i < width |
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
2410 || !notfirst) |
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
2411 { |
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
2412 int thiswidth; |
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
2413 |
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
2414 /* Punctuate between strings. */ |
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
2415 if (notfirst) |
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
2416 { |
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
2417 strcpy (menu + i, ", "); |
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
2418 i += 2; |
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
2419 } |
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
2420 notfirst = 1; |
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
2421 |
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
2422 /* Add as much of string as fits. */ |
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
2423 thiswidth = XSTRING (s)->size; |
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
2424 if (thiswidth + i > width) |
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
2425 thiswidth = width - i; |
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
2426 bcopy (XSTRING (s)->data, menu + i, thiswidth); |
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
2427 i += thiswidth; |
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
2428 } |
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
2429 else |
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
2430 { |
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
2431 /* If this element does not fit, end the line now, |
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
2432 and save the element for the next line. */ |
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
2433 strcpy (menu + i, "..."); |
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
2434 break; |
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
2435 } |
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
2436 |
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
2437 /* Move past this element. */ |
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
2438 if (idx >= 0 && idx + 1 >= XVECTOR (rest)->size) |
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
2439 /* Handle reaching end of dense table. */ |
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
2440 idx = -1; |
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
2441 if (idx >= 0) |
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
2442 idx++; |
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
2443 else |
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
2444 rest = Fcdr_safe (rest); |
518 | 2445 } |
2446 } | |
2447 | |
2448 /* Prompt with that and read response. */ | |
2449 message1 (menu); | |
1083
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
2450 obj = read_char (1, 0, 0, Qnil, 0); |
518 | 2451 |
2452 if (XTYPE (obj) != Lisp_Int) | |
2453 return obj; | |
2454 else | |
2455 ch = XINT (obj); | |
2456 | |
2457 if (obj != menu_prompt_more_char | |
2458 && (XTYPE (menu_prompt_more_char) != Lisp_Int | |
2459 || obj != make_number (Ctl (XINT (menu_prompt_more_char))))) | |
2460 return obj; | |
2461 } | |
2462 } | |
2463 | |
2464 /* Reading key sequences. */ | |
2465 | |
2466 /* Follow KEY in the maps in CURRENT[0..NMAPS-1], placing its bindings | |
2467 in DEFS[0..NMAPS-1]. Set NEXT[i] to DEFS[i] if DEFS[i] is a | |
2468 keymap, or nil otherwise. Return the index of the first keymap in | |
2469 which KEY has any binding, or NMAPS if no map has a binding. | |
2470 | |
2471 If KEY is a meta ASCII character, treat it like meta-prefix-char | |
2472 followed by the corresponding non-meta character. Keymaps in | |
2473 CURRENT with non-prefix bindings for meta-prefix-char become nil in | |
2474 NEXT. | |
2475 | |
2476 When KEY is not defined in any of the keymaps, if it is an upper | |
2477 case letter and there are bindings for the corresponding lower-case | |
2478 letter, return the bindings for the lower-case letter. | |
2479 | |
2480 NEXT may == CURRENT. */ | |
2481 | |
2482 static int | |
2483 follow_key (key, nmaps, current, defs, next) | |
2484 Lisp_Object key; | |
2485 Lisp_Object *current, *defs, *next; | |
2486 int nmaps; | |
2487 { | |
2488 int i, first_binding; | |
2489 | |
2490 /* If KEY is a meta ASCII character, treat it like meta-prefix-char | |
2491 followed by the corresponding non-meta character. */ | |
2492 if (XTYPE (key) == Lisp_Int | |
2493 && XINT (key) >= 0200) | |
2494 { | |
2495 for (i = 0; i < nmaps; i++) | |
2496 if (! NILP (current[i])) | |
2497 { | |
2498 next[i] = get_keyelt (access_keymap (current[i], | |
2499 meta_prefix_char)); | |
2500 | |
2501 /* Note that since we pass the resulting bindings through | |
2502 get_keymap_1, non-prefix bindings for meta-prefix-char | |
2503 disappear. */ | |
2504 next[i] = get_keymap_1 (next[i], 0); | |
2505 } | |
2506 else | |
2507 next[i] = Qnil; | |
2508 | |
2509 current = next; | |
2510 XSET (key, Lisp_Int, XFASTINT (key) & 0177); | |
2511 } | |
2512 | |
2513 first_binding = nmaps; | |
2514 for (i = nmaps - 1; i >= 0; i--) | |
2515 { | |
2516 if (! NILP (current[i])) | |
2517 { | |
2518 defs[i] = get_keyelt (access_keymap (current[i], key)); | |
2519 if (! NILP (defs[i])) | |
2520 first_binding = i; | |
2521 } | |
2522 else | |
2523 defs[i] = Qnil; | |
2524 } | |
2525 | |
2526 /* When KEY is not defined in any of the keymaps, if it is an upper | |
2527 case letter and there are bindings for the corresponding | |
2528 lower-case letter, return the bindings for the lower-case letter. */ | |
2529 if (first_binding == nmaps | |
2530 && XTYPE (key) == Lisp_Int | |
2531 && UPPERCASEP (XINT (key))) | |
2532 { | |
2533 XSETINT (key, DOWNCASE (XINT (key))); | |
2534 | |
2535 first_binding = nmaps; | |
2536 for (i = nmaps - 1; i >= 0; i--) | |
2537 { | |
2538 if (! NILP (current[i])) | |
2539 { | |
2540 defs[i] = get_keyelt (access_keymap (current[i], key)); | |
2541 if (! NILP (defs[i])) | |
2542 first_binding = i; | |
2543 } | |
2544 else | |
2545 defs[i] = Qnil; | |
2546 } | |
2547 } | |
2548 | |
2549 /* Given the set of bindings we've found, produce the next set of maps. */ | |
2550 for (i = 0; i < nmaps; i++) | |
2551 next[i] = NILP (defs[i]) ? Qnil : get_keymap_1 (defs[i], 0); | |
2552 | |
2553 return first_binding; | |
2554 } | |
2555 | |
2556 /* Read a sequence of keys that ends with a non prefix character | |
2557 according to the keymaps in KEYMAPS[0..nmaps-1]. Keymaps appearing | |
2558 earlier in KEYMAPS take precidence over those appearing later. | |
2559 | |
2560 Store the sequence in KEYBUF, a buffer of size BUFSIZE. Prompt | |
2561 with PROMPT. Echo starting immediately unless `prompt' is 0. | |
2562 Return the length of the key sequence stored. | |
2563 | |
765 | 2564 If the user switches frames in the midst of a key sequence, we |
518 | 2565 throw away any prefix we have read so far, and start afresh. For |
2566 mouse clicks, we look up the click in the keymap of the buffer | |
2567 clicked on, throwing away any prefix if it is not the same buffer | |
2568 we used to be reading from. */ | |
2569 | |
2570 static int | |
2571 read_key_sequence (keybuf, bufsize, prompt) | |
2572 Lisp_Object *keybuf; | |
2573 int bufsize; | |
2574 Lisp_Object prompt; | |
2575 { | |
2576 /* How many keys there are in the current key sequence. */ | |
2577 int t; | |
2578 | |
2579 /* The buffer that the most recently read event was typed at. This | |
2580 helps us read mouse clicks according to the buffer clicked in, | |
765 | 2581 and notice when the mouse has moved from one frame to another. */ |
518 | 2582 struct buffer *last_event_buffer = current_buffer; |
2583 | |
2584 /* The length of the echo buffer when we started reading, and | |
2585 the length of this_command_keys when we started reading. */ | |
2586 int echo_start; | |
2587 int keys_start = this_command_key_count; | |
2588 | |
2589 /* The number of keymaps we're scanning right now, and the number of | |
2590 keymaps we have allocated space for. */ | |
2591 int nmaps; | |
2592 int nmaps_allocated = 0; | |
2593 | |
899 | 2594 /* submaps[0..nmaps-1] are the prefix definitions of KEYBUF[0..t-1] |
518 | 2595 in the current keymaps, or nil where it is not a prefix. */ |
899 | 2596 Lisp_Object *submaps; |
518 | 2597 |
2598 /* defs[0..nmaps-1] are the definitions of KEYBUF[0..t-1] in | |
2599 the current keymaps. */ | |
2600 Lisp_Object *defs; | |
2601 | |
899 | 2602 /* The index of the first keymap that has a binding for this key |
2603 sequence. In other words, the lowest i such that defs[i] is | |
2604 non-nil.*/ | |
518 | 2605 int first_binding; |
2606 | |
2607 /* If mock_input > t, then KEYBUF[t] should be read as the next | |
899 | 2608 input key. |
2609 | |
2610 We use this to recover after recognizing a function key. Once we | |
2611 realize that a suffix of the current key sequence is actually a | |
2612 function key's escape sequence, we replace the suffix with the | |
2613 function key's binding from Vfunction_key_map. Now keybuf | |
2614 contains a new and different key sequence, so the echo area and | |
2615 the submaps and defs arrays are wrong. In this situation, we set | |
2616 mock_input to t, set t to 0, and jump to restart; the loop will | |
2617 read keys from keybuf up until mock_input, which rebuilds the | |
2618 state, and then it will resume reading characters from the keyboard. */ | |
518 | 2619 int mock_input = 0; |
2620 | |
899 | 2621 /* If the sequence is unbound in submaps[], then |
2622 keymap[fkey_start..fkey_end-1] is a prefix in Vfunction_key_map, | |
2623 and fkey_map is its binding. If mock_input is in use, these | |
2624 might be > t, indicating that all function key scanning should | |
518 | 2625 hold off until t reaches them. */ |
899 | 2626 |
518 | 2627 int fkey_start = 0, fkey_end = 0; |
2628 Lisp_Object fkey_map = Vfunction_key_map; | |
2629 | |
1083
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
2630 last_nonmenu_event = Qnil; |
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
2631 |
518 | 2632 if (INTERACTIVE) |
2633 { | |
2634 if (prompt) | |
2635 echo_prompt (prompt); | |
2636 else if (cursor_in_echo_area) | |
2637 /* This doesn't put in a dash if the echo buffer is empty, so | |
2638 you don't always see a dash hanging out in the minibuffer. */ | |
2639 echo_dash (); | |
2640 echo_start = echo_length (); | |
2641 } | |
2642 | |
899 | 2643 /* If there is no function key map, turn off function key scanning. */ |
518 | 2644 if (NILP (Fkeymapp (Vfunction_key_map))) |
2645 fkey_start = fkey_end = bufsize + 1; | |
2646 | |
2647 restart: | |
2648 t = 0; | |
2649 this_command_key_count = keys_start; | |
2650 | |
2651 { | |
2652 Lisp_Object *maps; | |
2653 | |
2654 nmaps = current_minor_maps (0, &maps) + 2; | |
2655 if (nmaps > nmaps_allocated) | |
2656 { | |
899 | 2657 submaps = (Lisp_Object *) alloca (nmaps * sizeof (submaps[0])); |
518 | 2658 defs = (Lisp_Object *) alloca (nmaps * sizeof (defs[0])); |
2659 nmaps_allocated = nmaps; | |
2660 } | |
899 | 2661 bcopy (maps, submaps, (nmaps - 2) * sizeof (submaps[0])); |
2662 submaps[nmaps-2] = last_event_buffer->keymap; | |
2663 submaps[nmaps-1] = global_map; | |
518 | 2664 } |
2665 | |
2666 /* Find an accurate initial value for first_binding. */ | |
2667 for (first_binding = 0; first_binding < nmaps; first_binding++) | |
899 | 2668 if (! NILP (submaps[first_binding])) |
518 | 2669 break; |
2670 | |
899 | 2671 while ((first_binding < nmaps && ! NILP (submaps[first_binding])) |
518 | 2672 || (first_binding >= nmaps && fkey_start < t)) |
2673 { | |
2674 Lisp_Object key; | |
1083
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
2675 int used_mouse_menu = 0; |
518 | 2676 |
2677 if (t >= bufsize) | |
2678 error ("key sequence too long"); | |
2679 | |
899 | 2680 /* Are we re-reading a key sequence, as indicated by mock_input? */ |
518 | 2681 if (t < mock_input) |
2682 { | |
2683 key = keybuf[t]; | |
2684 add_command_key (key); | |
2685 echo_char (key); | |
2686 } | |
899 | 2687 |
2688 /* If not, we should actually read a character. */ | |
518 | 2689 else |
2690 { | |
2691 struct buffer *buf; | |
2692 | |
1083
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
2693 key = read_char (!prompt, nmaps, submaps, last_nonmenu_event, |
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
2694 &used_mouse_menu); |
518 | 2695 |
2696 /* The above routines return -1 at the end of a macro. | |
2697 Emacs 18 handles this by returning immediately with a | |
2698 zero, so that's what we'll do. */ | |
2699 if (XTYPE (key) == Lisp_Int && XINT (key) < 0) | |
2700 return 0; | |
2701 | |
2702 Vquit_flag = Qnil; | |
2703 | |
765 | 2704 #ifdef MULTI_FRAME |
518 | 2705 /* What buffer was this event typed/moused at? */ |
1083
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
2706 if (used_mouse_menu) |
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
2707 /* Never change last_event_buffer for using a menu. */ |
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
2708 buf = last_event_buffer; |
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
2709 else if (XTYPE (key) == Lisp_Int || XTYPE (key) == Lisp_Symbol) |
518 | 2710 buf = (XBUFFER |
2711 (XWINDOW | |
765 | 2712 (FRAME_SELECTED_WINDOW |
2713 (XFRAME (Vlast_event_frame)))->buffer)); | |
518 | 2714 else if (EVENT_HAS_PARAMETERS (key)) |
2715 { | |
2716 Lisp_Object window = EVENT_WINDOW (key); | |
2717 | |
2718 if (NILP (window)) | |
2719 abort (); | |
2720 | |
2721 buf = XBUFFER (XWINDOW (window)->buffer); | |
2722 } | |
2723 else | |
2724 abort (); | |
2725 | |
2726 /* If this event came to a different buffer than the one | |
2727 we're currently in, switch buffers and start a new key | |
2728 sequence, starting with key. */ | |
2729 if (buf != last_event_buffer) | |
2730 { | |
2731 last_event_buffer = buf; | |
765 | 2732 Fselect_frame (Vlast_event_frame, Qnil); |
518 | 2733 |
2734 /* Arrange to read key as the next event. */ | |
2735 keybuf[0] = key; | |
2736 mock_input = 1; | |
2737 | |
2738 /* Truncate the key sequence in the echo area. */ | |
2739 if (INTERACTIVE) | |
2740 echo_truncate (echo_start); | |
2741 | |
2742 goto restart; | |
2743 } | |
732 | 2744 #endif |
518 | 2745 } |
2746 | |
2747 first_binding = (follow_key (key, | |
2748 nmaps - first_binding, | |
899 | 2749 submaps + first_binding, |
518 | 2750 defs + first_binding, |
899 | 2751 submaps + first_binding) |
518 | 2752 + first_binding); |
2753 keybuf[t++] = key; | |
1083
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
2754 /* Normally, last_nonmenu_event gets the previous key we read. |
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
2755 But when a mouse popup menu is being used, |
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
2756 we don't update last_nonmenu_event; it continues to hold the mouse |
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
2757 event that preceded the first level of menu. */ |
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
2758 if (!used_mouse_menu) |
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
2759 last_nonmenu_event = key; |
518 | 2760 |
2761 /* If the sequence is unbound, see if we can hang a function key | |
899 | 2762 off the end of it. We only want to scan real keyboard input |
2763 for function key sequences, so if mock_input says that we're | |
2764 re-scanning after expanding a function key, don't examine it. */ | |
518 | 2765 if (first_binding >= nmaps |
899 | 2766 && t >= mock_input) |
518 | 2767 { |
2768 Lisp_Object fkey_next; | |
2769 | |
2770 /* Scan from fkey_end until we find a bound suffix. */ | |
2771 while (fkey_end < t) | |
2772 { | |
853 | 2773 /* Look up meta-characters by prefixing them |
2774 with meta_prefix_char. I hate this. */ | |
899 | 2775 if (keybuf[fkey_end] & 0x80) |
853 | 2776 fkey_next = |
2777 get_keymap_1 (get_keyelt | |
2778 (access_keymap (fkey_map, meta_prefix_char)), | |
2779 0); | |
2780 else | |
2781 fkey_next = fkey_map; | |
2782 | |
518 | 2783 fkey_next = |
853 | 2784 get_keyelt (access_keymap |
939
c4dcdc9aed70
Clear the eighth bit of the character from the key sequence, NOT the
Jim Blandy <jimb@redhat.com>
parents:
899
diff
changeset
|
2785 (fkey_next, keybuf[fkey_end++] & 0x7f)); |
c4dcdc9aed70
Clear the eighth bit of the character from the key sequence, NOT the
Jim Blandy <jimb@redhat.com>
parents:
899
diff
changeset
|
2786 |
c4dcdc9aed70
Clear the eighth bit of the character from the key sequence, NOT the
Jim Blandy <jimb@redhat.com>
parents:
899
diff
changeset
|
2787 /* If keybuf[fkey_start..fkey_end] is bound in the |
547 | 2788 function key map and it's a suffix of the current |
939
c4dcdc9aed70
Clear the eighth bit of the character from the key sequence, NOT the
Jim Blandy <jimb@redhat.com>
parents:
899
diff
changeset
|
2789 sequence (i.e. fkey_end == t), replace it with |
547 | 2790 the binding and restart with fkey_start at the end. */ |
518 | 2791 if (XTYPE (fkey_next) == Lisp_Vector |
2792 && fkey_end == t) | |
2793 { | |
2794 t = fkey_start + XVECTOR (fkey_next)->size; | |
2795 if (t >= bufsize) | |
2796 error ("key sequence too long"); | |
2797 | |
2798 bcopy (XVECTOR (fkey_next)->contents, | |
2799 keybuf + fkey_start, | |
2800 (t - fkey_start) * sizeof (keybuf[0])); | |
2801 | |
2802 mock_input = t; | |
2803 fkey_start = fkey_end = t; | |
2804 | |
2805 /* Truncate the key sequence in the echo area. */ | |
2806 if (INTERACTIVE) | |
2807 echo_truncate (echo_start); | |
2808 | |
2809 goto restart; | |
2810 } | |
2811 | |
2812 fkey_map = get_keymap_1 (fkey_next, 0); | |
2813 | |
547 | 2814 /* If we no longer have a bound suffix, try a new positions for |
2815 fkey_start. */ | |
518 | 2816 if (NILP (fkey_map)) |
2817 { | |
2818 fkey_end = ++fkey_start; | |
2819 fkey_map = Vfunction_key_map; | |
2820 } | |
2821 } | |
2822 } | |
2823 } | |
2824 | |
2825 read_key_sequence_cmd = (first_binding < nmaps | |
2826 ? defs[first_binding] | |
2827 : Qnil); | |
2828 | |
2829 return t; | |
2830 } | |
2831 | |
691
cae8c3ef1677
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
687
diff
changeset
|
2832 DEFUN ("read-key-sequence", Fread_key_sequence, Sread_key_sequence, 1, 2, 0, |
518 | 2833 "Read a sequence of keystrokes and return as a string or vector.\n\ |
2834 The sequence is sufficient to specify a non-prefix command in the\n\ | |
2835 current local and global maps.\n\ | |
2836 \n\ | |
691
cae8c3ef1677
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
687
diff
changeset
|
2837 First arg PROMPT is a prompt string. If nil, do not prompt specially.\n\ |
cae8c3ef1677
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
687
diff
changeset
|
2838 Second (optional) arg CONTINUE-ECHO, if non-nil, means this key echos\n\ |
cae8c3ef1677
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
687
diff
changeset
|
2839 as a continuation of the previous key.\n\ |
518 | 2840 \n\ |
765 | 2841 If Emacs is running on multiple frames, switching between frames in\n\ |
518 | 2842 the midst of a keystroke will toss any prefix typed so far. A C-g\n\ |
2843 typed while in this function is treated like any other character, and\n\ | |
2844 `quit-flag' is not set.") | |
691
cae8c3ef1677
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
687
diff
changeset
|
2845 (prompt, continue_echo) |
cae8c3ef1677
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
687
diff
changeset
|
2846 Lisp_Object prompt, continue_echo; |
518 | 2847 { |
2848 Lisp_Object keybuf[30]; | |
2849 register int i; | |
2850 struct gcpro gcpro1, gcpro2; | |
2851 | |
2852 if (!NILP (prompt)) | |
2853 CHECK_STRING (prompt, 0); | |
2854 QUIT; | |
2855 | |
2856 bzero (keybuf, sizeof keybuf); | |
2857 GCPRO1 (keybuf[0]); | |
2858 gcpro1.nvars = (sizeof keybuf/sizeof (keybuf[0])); | |
2859 | |
727 | 2860 if (NILP (continue_echo)) |
691
cae8c3ef1677
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
687
diff
changeset
|
2861 this_command_key_count = 0; |
cae8c3ef1677
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
687
diff
changeset
|
2862 |
518 | 2863 i = read_key_sequence (keybuf, (sizeof keybuf/sizeof (keybuf[0])), |
2864 NILP (prompt) ? 0 : XSTRING (prompt)->data); | |
2865 | |
2866 UNGCPRO; | |
2867 return make_array (i, keybuf); | |
2868 } | |
2869 | |
2870 DEFUN ("command-execute", Fcommand_execute, Scommand_execute, 1, 2, 0, | |
2871 "Execute CMD as an editor command.\n\ | |
2872 CMD must be a symbol that satisfies the `commandp' predicate.\n\ | |
2873 Optional second arg RECORD-FLAG non-nil\n\ | |
2874 means unconditionally put this command in `command-history'.\n\ | |
2875 Otherwise, that is done only if an arg is read using the minibuffer.") | |
2876 (cmd, record) | |
2877 Lisp_Object cmd, record; | |
2878 { | |
2879 register Lisp_Object final; | |
2880 register Lisp_Object tem; | |
2881 Lisp_Object prefixarg; | |
2882 struct backtrace backtrace; | |
2883 extern int debug_on_next_call; | |
2884 | |
2885 prefixarg = Vprefix_arg, Vprefix_arg = Qnil; | |
2886 Vcurrent_prefix_arg = prefixarg; | |
2887 debug_on_next_call = 0; | |
2888 | |
2889 if (XTYPE (cmd) == Lisp_Symbol) | |
2890 { | |
2891 tem = Fget (cmd, Qdisabled); | |
2892 if (!NILP (tem)) | |
2893 return call1 (Vrun_hooks, Vdisabled_command_hook); | |
2894 } | |
2895 | |
2896 while (1) | |
2897 { | |
648 | 2898 final = Findirect_function (cmd); |
518 | 2899 |
2900 if (CONSP (final) && (tem = Fcar (final), EQ (tem, Qautoload))) | |
2901 do_autoload (final, cmd); | |
2902 else | |
2903 break; | |
2904 } | |
2905 | |
2906 if (XTYPE (final) == Lisp_String | |
2907 || XTYPE (final) == Lisp_Vector) | |
2908 { | |
2909 /* If requested, place the macro in the command history. For | |
2910 other sorts of commands, call-interactively takes care of | |
2911 this. */ | |
2912 if (!NILP (record)) | |
2913 Vcommand_history | |
2914 = Fcons (Fcons (Qexecute_kbd_macro, | |
2915 Fcons (final, Fcons (prefixarg, Qnil))), | |
2916 Vcommand_history); | |
2917 | |
2918 return Fexecute_kbd_macro (final, prefixarg); | |
2919 } | |
2920 if (CONSP (final) || XTYPE (final) == Lisp_Subr | |
2921 || XTYPE (final) == Lisp_Compiled) | |
2922 { | |
2923 backtrace.next = backtrace_list; | |
2924 backtrace_list = &backtrace; | |
2925 backtrace.function = &Qcall_interactively; | |
2926 backtrace.args = &cmd; | |
2927 backtrace.nargs = 1; | |
2928 backtrace.evalargs = 0; | |
2929 | |
2930 tem = Fcall_interactively (cmd, record); | |
2931 | |
2932 backtrace_list = backtrace.next; | |
2933 return tem; | |
2934 } | |
2935 return Qnil; | |
2936 } | |
2937 | |
2938 DEFUN ("execute-extended-command", Fexecute_extended_command, Sexecute_extended_command, | |
2939 1, 1, "P", | |
2940 "Read function name, then read its arguments and call it.") | |
2941 (prefixarg) | |
2942 Lisp_Object prefixarg; | |
2943 { | |
2944 Lisp_Object function; | |
2945 char buf[40]; | |
2946 Lisp_Object saved_keys; | |
2947 struct gcpro gcpro1; | |
2948 | |
2949 saved_keys = Fthis_command_keys (); | |
2950 buf[0] = 0; | |
2951 GCPRO1 (saved_keys); | |
2952 | |
2953 if (EQ (prefixarg, Qminus)) | |
2954 strcpy (buf, "- "); | |
2955 else if (CONSP (prefixarg) && XINT (XCONS (prefixarg)->car) == 4) | |
2956 strcpy (buf, "C-u "); | |
2957 else if (CONSP (prefixarg) && XTYPE (XCONS (prefixarg)->car) == Lisp_Int) | |
2958 sprintf (buf, "%d ", XINT (XCONS (prefixarg)->car)); | |
2959 else if (XTYPE (prefixarg) == Lisp_Int) | |
2960 sprintf (buf, "%d ", XINT (prefixarg)); | |
2961 | |
2962 /* This isn't strictly correct if execute-extended-command | |
2963 is bound to anything else. Perhaps it should use | |
2964 this_command_keys? */ | |
2965 strcat (buf, "M-x "); | |
2966 | |
2967 /* Prompt with buf, and then read a string, completing from and | |
2968 restricting to the set of all defined commands. Don't provide | |
2969 any initial input. The last Qnil says not to perform a | |
2970 peculiar hack on the initial input. */ | |
2971 function = Fcompleting_read (build_string (buf), | |
2972 Vobarray, Qcommandp, | |
2973 Qt, Qnil, Qnil); | |
2974 | |
708 | 2975 /* Set this_command_keys to the concatenation of saved_keys and |
2976 function, followed by a RET. */ | |
518 | 2977 { |
708 | 2978 struct Lisp_String *str; |
518 | 2979 int i; |
2980 Lisp_Object tem; | |
2981 | |
708 | 2982 this_command_key_count = 0; |
2983 | |
2984 str = XSTRING (saved_keys); | |
2985 for (i = 0; i < str->size; i++) | |
518 | 2986 { |
708 | 2987 XFASTINT (tem) = str->data[i]; |
518 | 2988 add_command_key (tem); |
2989 } | |
708 | 2990 |
2991 str = XSTRING (function); | |
2992 for (i = 0; i < str->size; i++) | |
2993 { | |
2994 XFASTINT (tem) = str->data[i]; | |
2995 add_command_key (tem); | |
2996 } | |
2997 | |
2998 XFASTINT (tem) = '\015'; | |
2999 add_command_key (tem); | |
518 | 3000 } |
3001 | |
3002 UNGCPRO; | |
3003 | |
3004 function = Fintern (function, Vobarray); | |
3005 Vprefix_arg = prefixarg; | |
3006 this_command = function; | |
3007 | |
3008 return Fcommand_execute (function, Qt); | |
3009 } | |
3010 | |
3011 | |
3012 detect_input_pending () | |
3013 { | |
3014 if (!input_pending) | |
3015 get_input_pending (&input_pending); | |
3016 | |
3017 return input_pending; | |
3018 } | |
3019 | |
648 | 3020 /* This is called in some cases before a possible quit. |
3021 It cases the next call to detect_input_pending to recompute input_pending. | |
3022 So calling this function unnecessarily can't do any harm. */ | |
3023 clear_input_pending () | |
3024 { | |
3025 input_pending = 0; | |
3026 } | |
3027 | |
518 | 3028 DEFUN ("input-pending-p", Finput_pending_p, Sinput_pending_p, 0, 0, 0, |
3029 "T if command input is currently available with no waiting.\n\ | |
3030 Actually, the value is nil only if we can be sure that no input is available.") | |
3031 () | |
3032 { | |
3033 if (!NILP (unread_command_char)) | |
3034 return (Qt); | |
3035 | |
3036 return detect_input_pending () ? Qt : Qnil; | |
3037 } | |
3038 | |
3039 DEFUN ("recent-keys", Frecent_keys, Srecent_keys, 0, 0, 0, | |
727 | 3040 "Return vector of last 100 chars read from terminal.") |
518 | 3041 () |
3042 { | |
3043 Lisp_Object val; | |
3044 | |
3045 if (total_keys < NUM_RECENT_KEYS) | |
3046 return Fvector (total_keys, recent_keys); | |
3047 else | |
3048 { | |
3049 val = Fvector (NUM_RECENT_KEYS, recent_keys); | |
3050 bcopy (recent_keys + recent_keys_index, | |
3051 XVECTOR (val)->contents, | |
3052 (NUM_RECENT_KEYS - recent_keys_index) * sizeof (Lisp_Object)); | |
3053 bcopy (recent_keys, | |
3054 XVECTOR (val)->contents + NUM_RECENT_KEYS - recent_keys_index, | |
3055 recent_keys_index * sizeof (Lisp_Object)); | |
3056 return val; | |
3057 } | |
3058 } | |
3059 | |
3060 DEFUN ("this-command-keys", Fthis_command_keys, Sthis_command_keys, 0, 0, 0, | |
3061 "Return string of the keystrokes that invoked this command.") | |
3062 () | |
3063 { | |
3064 return make_array (this_command_key_count, this_command_keys); | |
3065 } | |
3066 | |
3067 DEFUN ("recursion-depth", Frecursion_depth, Srecursion_depth, 0, 0, 0, | |
3068 "Return the current depth in recursive edits.") | |
3069 () | |
3070 { | |
3071 Lisp_Object temp; | |
3072 XFASTINT (temp) = command_loop_level + minibuf_level; | |
3073 return temp; | |
3074 } | |
3075 | |
3076 DEFUN ("open-dribble-file", Fopen_dribble_file, Sopen_dribble_file, 1, 1, | |
3077 "FOpen dribble file: ", | |
3078 "Start writing all keyboard characters to FILE.") | |
3079 (file) | |
3080 Lisp_Object file; | |
3081 { | |
3082 if (NILP (file)) | |
3083 { | |
3084 fclose (dribble); | |
3085 dribble = 0; | |
3086 } | |
3087 else | |
3088 { | |
3089 file = Fexpand_file_name (file, Qnil); | |
3090 dribble = fopen (XSTRING (file)->data, "w"); | |
3091 } | |
3092 return Qnil; | |
3093 } | |
3094 | |
3095 DEFUN ("discard-input", Fdiscard_input, Sdiscard_input, 0, 0, 0, | |
3096 "Discard the contents of the terminal input buffer.\n\ | |
3097 Also cancel any kbd macro being defined.") | |
3098 () | |
3099 { | |
3100 defining_kbd_macro = 0; | |
3101 update_mode_lines++; | |
3102 | |
3103 unread_command_char = Qnil; | |
3104 | |
3105 discard_tty_input (); | |
3106 | |
3107 kbd_fetch_ptr = kbd_store_ptr; | |
3108 input_pending = 0; | |
3109 | |
3110 return Qnil; | |
3111 } | |
3112 | |
3113 DEFUN ("suspend-emacs", Fsuspend_emacs, Ssuspend_emacs, 0, 1, "", | |
3114 "Stop Emacs and return to superior process. You can resume later.\n\ | |
3115 On systems that don't have job control, run a subshell instead.\n\n\ | |
3116 If optional arg STUFFSTRING is non-nil, its characters are stuffed\n\ | |
3117 to be read as terminal input by Emacs's superior shell.\n\ | |
3118 Before suspending, if `suspend-hook' is bound and value is non-nil\n\ | |
3119 call the value as a function of no args. Don't suspend if it returns non-nil.\n\ | |
3120 Otherwise, suspend normally and after resumption call\n\ | |
3121 `suspend-resume-hook' if that is bound and non-nil.\n\ | |
3122 \n\ | |
3123 Some operating systems cannot stop the Emacs process and resume it later.\n\ | |
3124 On such systems, Emacs will start a subshell and wait for it to exit.") | |
3125 (stuffstring) | |
3126 Lisp_Object stuffstring; | |
3127 { | |
3128 register Lisp_Object tem; | |
3129 int count = specpdl_ptr - specpdl; | |
3130 int old_height, old_width; | |
3131 int width, height; | |
3132 struct gcpro gcpro1; | |
3133 extern init_sys_modes (); | |
3134 | |
3135 if (!NILP (stuffstring)) | |
3136 CHECK_STRING (stuffstring, 0); | |
3137 GCPRO1 (stuffstring); | |
3138 | |
3139 /* Call value of suspend-hook | |
3140 if it is bound and value is non-nil. */ | |
3141 if (!NILP (Vrun_hooks)) | |
3142 { | |
3143 tem = call1 (Vrun_hooks, intern ("suspend-hook")); | |
3144 if (!EQ (tem, Qnil)) return Qnil; | |
3145 } | |
3146 | |
765 | 3147 get_frame_size (&old_width, &old_height); |
518 | 3148 reset_sys_modes (); |
3149 /* sys_suspend can get an error if it tries to fork a subshell | |
3150 and the system resources aren't available for that. */ | |
3151 record_unwind_protect (init_sys_modes, 0); | |
3152 stuff_buffered_input (stuffstring); | |
3153 sys_suspend (); | |
3154 unbind_to (count, Qnil); | |
3155 | |
3156 /* Check if terminal/window size has changed. | |
3157 Note that this is not useful when we are running directly | |
3158 with a window system; but suspend should be disabled in that case. */ | |
765 | 3159 get_frame_size (&width, &height); |
518 | 3160 if (width != old_width || height != old_height) |
966
eb74884fc95a
* keyboard.c (Fsuspend_emacs): Call change_frame_size with the
Jim Blandy <jimb@redhat.com>
parents:
939
diff
changeset
|
3161 change_frame_size (0, height, width, 0, 0); |
518 | 3162 |
3163 /* Call value of suspend-resume-hook | |
3164 if it is bound and value is non-nil. */ | |
3165 if (!NILP (Vrun_hooks)) | |
3166 call1 (Vrun_hooks, intern ("suspend-resume-hook")); | |
3167 | |
3168 UNGCPRO; | |
3169 return Qnil; | |
3170 } | |
3171 | |
3172 /* If STUFFSTRING is a string, stuff its contents as pending terminal input. | |
3173 Then in any case stuff anthing Emacs has read ahead and not used. */ | |
3174 | |
3175 stuff_buffered_input (stuffstring) | |
3176 Lisp_Object stuffstring; | |
3177 { | |
3178 register unsigned char *p; | |
3179 | |
3180 /* stuff_char works only in BSD, versions 4.2 and up. */ | |
3181 #ifdef BSD | |
3182 #ifndef BSD4_1 | |
3183 if (XTYPE (stuffstring) == Lisp_String) | |
3184 { | |
3185 register int count; | |
3186 | |
3187 p = XSTRING (stuffstring)->data; | |
3188 count = XSTRING (stuffstring)->size; | |
3189 while (count-- > 0) | |
3190 stuff_char (*p++); | |
3191 stuff_char ('\n'); | |
3192 } | |
3193 /* Anything we have read ahead, put back for the shell to read. */ | |
3194 while (kbd_fetch_ptr != kbd_store_ptr) | |
3195 { | |
3196 if (kbd_fetch_ptr == kbd_buffer + KBD_BUFFER_SIZE) | |
3197 kbd_fetch_ptr = kbd_buffer; | |
3198 if (kbd_fetch_ptr->kind == ascii_keystroke) | |
3199 stuff_char (XINT (kbd_fetch_ptr->code)); | |
3200 kbd_fetch_ptr++; | |
3201 } | |
3202 input_pending = 0; | |
3203 #endif | |
3204 #endif /* BSD and not BSD4_1 */ | |
3205 } | |
3206 | |
648 | 3207 set_waiting_for_input (time_to_clear) |
3208 EMACS_TIME *time_to_clear; | |
518 | 3209 { |
648 | 3210 input_available_clear_time = time_to_clear; |
518 | 3211 |
3212 /* Tell interrupt_signal to throw back to read_char, */ | |
3213 waiting_for_input = 1; | |
3214 | |
3215 /* If interrupt_signal was called before and buffered a C-g, | |
3216 make it run again now, to avoid timing error. */ | |
3217 if (!NILP (Vquit_flag)) | |
3218 quit_throw_to_read_char (); | |
3219 | |
3220 /* If alarm has gone off already, echo now. */ | |
3221 if (echo_flag) | |
3222 { | |
3223 echo (); | |
3224 echo_flag = 0; | |
3225 } | |
3226 } | |
3227 | |
3228 clear_waiting_for_input () | |
3229 { | |
3230 /* Tell interrupt_signal not to throw back to read_char, */ | |
3231 waiting_for_input = 0; | |
648 | 3232 input_available_clear_time = 0; |
518 | 3233 } |
3234 | |
3235 /* This routine is called at interrupt level in response to C-G. | |
3236 If interrupt_input, this is the handler for SIGINT. | |
3237 Otherwise, it is called from kbd_buffer_store_event, | |
3238 in handling SIGIO or SIGTINT. | |
3239 | |
3240 If `waiting_for_input' is non zero, then unless `echoing' is nonzero, | |
3241 immediately throw back to read_char. | |
3242 | |
3243 Otherwise it sets the Lisp variable quit-flag not-nil. | |
3244 This causes eval to throw, when it gets a chance. | |
3245 If quit-flag is already non-nil, it stops the job right away. */ | |
3246 | |
3247 SIGTYPE | |
3248 interrupt_signal () | |
3249 { | |
3250 char c; | |
3251 /* Must preserve main program's value of errno. */ | |
3252 int old_errno = errno; | |
3253 extern Lisp_Object Vwindow_system; | |
3254 | |
3255 #ifdef USG | |
3256 /* USG systems forget handlers when they are used; | |
3257 must reestablish each time */ | |
3258 signal (SIGINT, interrupt_signal); | |
3259 signal (SIGQUIT, interrupt_signal); | |
3260 #endif /* USG */ | |
3261 | |
3262 cancel_echoing (); | |
3263 | |
966
eb74884fc95a
* keyboard.c (Fsuspend_emacs): Call change_frame_size with the
Jim Blandy <jimb@redhat.com>
parents:
939
diff
changeset
|
3264 if (!NILP (Vquit_flag) && FRAME_TERMCAP_P (selected_frame)) |
518 | 3265 { |
3266 fflush (stdout); | |
3267 reset_sys_modes (); | |
3268 sigfree (); | |
3269 #ifdef SIGTSTP /* Support possible in later USG versions */ | |
3270 /* | |
3271 * On systems which can suspend the current process and return to the original | |
3272 * shell, this command causes the user to end up back at the shell. | |
3273 * The "Auto-save" and "Abort" questions are not asked until | |
3274 * the user elects to return to emacs, at which point he can save the current | |
3275 * job and either dump core or continue. | |
3276 */ | |
3277 sys_suspend (); | |
3278 #else | |
3279 #ifdef VMS | |
3280 if (sys_suspend () == -1) | |
3281 { | |
3282 printf ("Not running as a subprocess;\n"); | |
3283 printf ("you can continue or abort.\n"); | |
3284 } | |
3285 #else /* not VMS */ | |
3286 /* Perhaps should really fork an inferior shell? | |
3287 But that would not provide any way to get back | |
3288 to the original shell, ever. */ | |
3289 printf ("No support for stopping a process on this operating system;\n"); | |
3290 printf ("you can continue or abort.\n"); | |
3291 #endif /* not VMS */ | |
3292 #endif /* not SIGTSTP */ | |
3293 printf ("Auto-save? (y or n) "); | |
3294 fflush (stdout); | |
3295 if (((c = getchar ()) & ~040) == 'Y') | |
3296 Fdo_auto_save (Qnil, Qnil); | |
3297 while (c != '\n') c = getchar (); | |
3298 #ifdef VMS | |
3299 printf ("Abort (and enter debugger)? (y or n) "); | |
3300 #else /* not VMS */ | |
3301 printf ("Abort (and dump core)? (y or n) "); | |
3302 #endif /* not VMS */ | |
3303 fflush (stdout); | |
3304 if (((c = getchar ()) & ~040) == 'Y') | |
3305 abort (); | |
3306 while (c != '\n') c = getchar (); | |
3307 printf ("Continuing...\n"); | |
3308 fflush (stdout); | |
3309 init_sys_modes (); | |
3310 } | |
3311 else | |
3312 { | |
3313 /* If executing a function that wants to be interrupted out of | |
3314 and the user has not deferred quitting by binding `inhibit-quit' | |
3315 then quit right away. */ | |
3316 if (immediate_quit && NILP (Vinhibit_quit)) | |
3317 { | |
3318 immediate_quit = 0; | |
3319 sigfree (); | |
3320 Fsignal (Qquit, Qnil); | |
3321 } | |
3322 else | |
3323 /* Else request quit when it's safe */ | |
3324 Vquit_flag = Qt; | |
3325 } | |
3326 | |
3327 if (waiting_for_input && !echoing) | |
3328 quit_throw_to_read_char (); | |
3329 | |
3330 errno = old_errno; | |
3331 } | |
3332 | |
3333 /* Handle a C-g by making read_char return C-g. */ | |
3334 | |
3335 quit_throw_to_read_char () | |
3336 { | |
3337 quit_error_check (); | |
3338 sigfree (); | |
3339 /* Prevent another signal from doing this before we finish. */ | |
650 | 3340 clear_waiting_for_input (); |
518 | 3341 input_pending = 0; |
3342 | |
3343 unread_command_char = Qnil; | |
3344 | |
3345 _longjmp (getcjmp, 1); | |
3346 } | |
3347 | |
3348 DEFUN ("set-input-mode", Fset_input_mode, Sset_input_mode, 3, 4, 0, | |
3349 "Set mode of reading keyboard input.\n\ | |
695
e3fac20d3015
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
691
diff
changeset
|
3350 First arg INTERRUPT non-nil means use input interrupts;\n\ |
e3fac20d3015
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
691
diff
changeset
|
3351 nil means use CBREAK mode.\n\ |
e3fac20d3015
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
691
diff
changeset
|
3352 Second arg FLOW non-nil means use ^S/^Q flow control for output to terminal\n\ |
518 | 3353 (no effect except in CBREAK mode).\n\ |
695
e3fac20d3015
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
691
diff
changeset
|
3354 Third arg META non-nil means accept 8-bit input (for a Meta key).\n\ |
518 | 3355 Otherwise, the top bit is ignored, on the assumption it is parity.\n\ |
695
e3fac20d3015
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
691
diff
changeset
|
3356 Optional fourth arg QUIT if non-nil specifies character to use for quitting.") |
518 | 3357 (interrupt, flow, meta, quit) |
3358 Lisp_Object interrupt, flow, meta, quit; | |
3359 { | |
3360 if (!NILP (quit) | |
3361 && (XTYPE (quit) != Lisp_Int | |
3362 || XINT (quit) < 0 || XINT (quit) > 0400)) | |
3363 error ("set-input-mode: QUIT must be an ASCII character."); | |
3364 | |
3365 reset_sys_modes (); | |
3366 #ifdef SIGIO | |
3367 /* Note SIGIO has been undef'd if FIONREAD is missing. */ | |
3368 #ifdef NO_SOCK_SIGIO | |
3369 if (read_socket_hook) | |
3370 interrupt_input = 0; /* No interrupts if reading from a socket. */ | |
3371 else | |
3372 #endif /* NO_SOCK_SIGIO */ | |
3373 interrupt_input = !NILP (interrupt); | |
3374 #else /* not SIGIO */ | |
3375 interrupt_input = 0; | |
3376 #endif /* not SIGIO */ | |
3377 /* Our VMS input only works by interrupts, as of now. */ | |
3378 #ifdef VMS | |
3379 interrupt_input = 1; | |
3380 #endif | |
3381 flow_control = !NILP (flow); | |
3382 meta_key = !NILP (meta); | |
3383 if (!NILP (quit)) | |
3384 /* Don't let this value be out of range. */ | |
3385 quit_char = XINT (quit) & (meta_key ? 0377 : 0177); | |
3386 | |
3387 init_sys_modes (); | |
3388 return Qnil; | |
3389 } | |
3390 | |
3391 init_keyboard () | |
3392 { | |
3393 this_command_keys_size = 40; | |
3394 this_command_keys = | |
3395 (Lisp_Object *) xmalloc (this_command_keys_size * sizeof (Lisp_Object)); | |
3396 | |
3397 /* This is correct before outermost invocation of the editor loop */ | |
3398 command_loop_level = -1; | |
3399 immediate_quit = 0; | |
3400 quit_char = Ctl ('g'); | |
3401 unread_command_char = Qnil; | |
3402 recent_keys_index = 0; | |
3403 total_keys = 0; | |
3404 kbd_fetch_ptr = kbd_buffer; | |
3405 kbd_store_ptr = kbd_buffer; | |
3406 do_mouse_tracking = 0; | |
3407 input_pending = 0; | |
3408 | |
3409 if (!noninteractive) | |
3410 { | |
3411 signal (SIGINT, interrupt_signal); | |
3412 #ifdef HAVE_TERMIO | |
3413 /* For systems with SysV TERMIO, C-g is set up for both SIGINT and | |
3414 SIGQUIT and we can't tell which one it will give us. */ | |
3415 signal (SIGQUIT, interrupt_signal); | |
3416 #endif /* HAVE_TERMIO */ | |
3417 /* Note SIGIO has been undef'd if FIONREAD is missing. */ | |
3418 #ifdef SIGIO | |
3419 signal (SIGIO, input_available_signal); | |
1008
f1df63f98e5c
* keyboard.c (init_keyboard): Changed "#endif SIGIO" to
Jim Blandy <jimb@redhat.com>
parents:
985
diff
changeset
|
3420 #endif /* SIGIO */ |
518 | 3421 } |
3422 | |
3423 /* Use interrupt input by default, if it works and noninterrupt input | |
3424 has deficiencies. */ | |
3425 | |
3426 #ifdef INTERRUPT_INPUT | |
3427 interrupt_input = 1; | |
3428 #else | |
3429 interrupt_input = 0; | |
3430 #endif | |
3431 | |
3432 /* Our VMS input only works by interrupts, as of now. */ | |
3433 #ifdef VMS | |
3434 interrupt_input = 1; | |
3435 #endif | |
3436 | |
3437 sigfree (); | |
3438 dribble = 0; | |
3439 | |
3440 if (keyboard_init_hook) | |
3441 (*keyboard_init_hook) (); | |
3442 | |
3443 #ifdef POLL_FOR_INPUT | |
3444 poll_suppress_count = 1; | |
3445 start_polling (); | |
3446 #endif | |
3447 } | |
3448 | |
3449 /* This type's only use is in syms_of_keyboard, to initialize the | |
3450 event header symbols and put properties on them. */ | |
3451 struct event_head { | |
3452 Lisp_Object *var; | |
3453 char *name; | |
3454 Lisp_Object *kind; | |
3455 }; | |
3456 | |
3457 struct event_head head_table[] = { | |
3458 &Qmouse_movement, "mouse-movement", &Qmouse_movement, | |
3459 &Qvscrollbar_part, "vscrollbar-part", &Qscrollbar_click, | |
3460 &Qvslider_part, "vslider-part", &Qscrollbar_click, | |
3461 &Qvthumbup_part, "vthumbup-part", &Qscrollbar_click, | |
3462 &Qvthumbdown_part, "vthumbdown-part", &Qscrollbar_click, | |
3463 &Qhscrollbar_part, "hscrollbar-part", &Qscrollbar_click, | |
3464 &Qhslider_part, "hslider-part", &Qscrollbar_click, | |
3465 &Qhthumbleft_part, "hthumbleft-part", &Qscrollbar_click, | |
3466 &Qhthumbright_part,"hthumbright-part", &Qscrollbar_click | |
3467 }; | |
3468 | |
3469 syms_of_keyboard () | |
3470 { | |
3471 Qself_insert_command = intern ("self-insert-command"); | |
3472 staticpro (&Qself_insert_command); | |
3473 | |
3474 Qforward_char = intern ("forward-char"); | |
3475 staticpro (&Qforward_char); | |
3476 | |
3477 Qbackward_char = intern ("backward-char"); | |
3478 staticpro (&Qbackward_char); | |
3479 | |
3480 Qdisabled = intern ("disabled"); | |
3481 staticpro (&Qdisabled); | |
3482 | |
3483 Qfunction_key = intern ("function-key"); | |
3484 staticpro (&Qfunction_key); | |
3485 Qmouse_movement = intern ("mouse-click"); | |
3486 staticpro (&Qmouse_click); | |
3487 Qmouse_movement = intern ("scrollbar-click"); | |
3488 staticpro (&Qmouse_movement); | |
3489 | |
3490 Qmode_line = intern ("mode-line"); | |
3491 staticpro (&Qmode_line); | |
732 | 3492 Qvertical_line = intern ("vertical-line"); |
3493 staticpro (&Qvertical_line); | |
518 | 3494 |
3495 Qevent_kind = intern ("event-type"); | |
3496 staticpro (&Qevent_kind); | |
3497 Qevent_unmodified = intern ("event-unmodified"); | |
3498 staticpro (&Qevent_unmodified); | |
3499 | |
3500 { | |
3501 struct event_head *p; | |
3502 | |
3503 for (p = head_table; | |
3504 p < head_table + (sizeof (head_table) / sizeof (head_table[0])); | |
3505 p++) | |
3506 { | |
3507 *p->var = intern (p->name); | |
3508 staticpro (p->var); | |
3509 Fput (*p->var, Qevent_kind, *p->kind); | |
3510 Fput (*p->var, Qevent_unmodified, *p->var); | |
3511 } | |
3512 } | |
3513 | |
3514 func_key_syms = Qnil; | |
3515 staticpro (&func_key_syms); | |
3516 | |
3517 mouse_syms = Qnil; | |
3518 staticpro (&mouse_syms); | |
3519 | |
3520 defsubr (&Sread_key_sequence); | |
3521 defsubr (&Srecursive_edit); | |
3522 defsubr (&Strack_mouse); | |
3523 defsubr (&Smouse_click_p); | |
3524 defsubr (&Sinput_pending_p); | |
3525 defsubr (&Scommand_execute); | |
3526 defsubr (&Srecent_keys); | |
3527 defsubr (&Sthis_command_keys); | |
3528 defsubr (&Ssuspend_emacs); | |
3529 defsubr (&Sabort_recursive_edit); | |
3530 defsubr (&Sexit_recursive_edit); | |
3531 defsubr (&Srecursion_depth); | |
3532 defsubr (&Stop_level); | |
3533 defsubr (&Sdiscard_input); | |
3534 defsubr (&Sopen_dribble_file); | |
3535 defsubr (&Sset_input_mode); | |
3536 defsubr (&Sexecute_extended_command); | |
3537 | |
3538 DEFVAR_LISP ("disabled-command-hook", &Vdisabled_command_hook, | |
3539 "Value is called instead of any command that is disabled\n\ | |
1083
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
3540 \(has a non-nil `disabled' property)."); |
518 | 3541 |
3542 DEFVAR_LISP ("last-command-char", &last_command_char, | |
3543 "Last terminal input key that was part of a command."); | |
3544 | |
1083
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
3545 DEFVAR_LISP ("last-nonmenu-event", &last_nonmenu_event, |
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
3546 "Last terminal input key in a command, except for mouse menus.\n\ |
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
3547 Mouse menus give back keys that don't look like mouse events;\n\ |
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
3548 this variable holds the actual mouse event that led to the menu,\n\ |
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
3549 so that you can determine whether the command was run by mouse or not."); |
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
3550 |
518 | 3551 DEFVAR_LISP ("last-input-char", &last_input_char, |
3552 "Last terminal input key."); | |
3553 | |
3554 DEFVAR_LISP ("unread-command-char", &unread_command_char, | |
3555 "Object to be read as next input from input stream, or nil if none."); | |
3556 | |
3557 DEFVAR_LISP ("meta-prefix-char", &meta_prefix_char, | |
3558 "Meta-prefix character code. Meta-foo as command input\n\ | |
3559 turns into this character followed by foo."); | |
3560 XSET (meta_prefix_char, Lisp_Int, 033); | |
3561 | |
3562 DEFVAR_LISP ("last-command", &last_command, | |
3563 "The last command executed. Normally a symbol with a function definition,\n\ | |
3564 but can be whatever was found in the keymap, or whatever the variable\n\ | |
3565 `this-command' was set to by that command."); | |
3566 last_command = Qnil; | |
3567 | |
3568 DEFVAR_LISP ("this-command", &this_command, | |
3569 "The command now being executed.\n\ | |
3570 The command can set this variable; whatever is put here\n\ | |
3571 will be in `last-command' during the following command."); | |
3572 this_command = Qnil; | |
3573 | |
3574 DEFVAR_INT ("auto-save-interval", &auto_save_interval, | |
3575 "*Number of keyboard input characters between auto-saves.\n\ | |
3576 Zero means disable autosaving due to number of characters typed."); | |
3577 auto_save_interval = 300; | |
3578 | |
3579 DEFVAR_LISP ("auto-save-timeout", &Vauto_save_timeout, | |
3580 "*Number of seconds idle time before auto-save.\n\ | |
687
e2b747dd6a6e
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
682
diff
changeset
|
3581 Zero or nil means disable auto-saving due to idleness.\n\ |
e2b747dd6a6e
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
682
diff
changeset
|
3582 After auto-saving due to this many seconds of idle time,\n\ |
701 | 3583 Emacs also does a garbage collection if that seems to be warranted."); |
518 | 3584 XFASTINT (Vauto_save_timeout) = 30; |
3585 | |
3586 DEFVAR_INT ("echo-keystrokes", &echo_keystrokes, | |
3587 "*Nonzero means echo unfinished commands after this many seconds of pause."); | |
3588 echo_keystrokes = 1; | |
3589 | |
3590 DEFVAR_INT ("polling-period", &polling_period, | |
3591 "*Interval between polling for input during Lisp execution.\n\ | |
3592 The reason for polling is to make C-g work to stop a running program.\n\ | |
3593 Polling is needed only when using X windows and SIGIO does not work.\n\ | |
3594 Polling is automatically disabled in all other cases."); | |
3595 polling_period = 2; | |
3596 | |
3597 DEFVAR_INT ("num-input-keys", &num_input_keys, | |
3598 "*Number of complete keys read from the keyboard so far."); | |
3599 num_input_keys = 0; | |
3600 | |
985
952aa214a3d0
* keyboard.c (Fexecute_mouse_event): dyked-out function deleted.
Jim Blandy <jimb@redhat.com>
parents:
966
diff
changeset
|
3601 #ifdef MULTI_FRAME |
765 | 3602 DEFVAR_LISP ("last-event-frame", &Vlast_event_frame, |
3603 "*The frame in which the most recently read event occurred."); | |
3604 Vlast_event_frame = Qnil; | |
985
952aa214a3d0
* keyboard.c (Fexecute_mouse_event): dyked-out function deleted.
Jim Blandy <jimb@redhat.com>
parents:
966
diff
changeset
|
3605 #endif |
518 | 3606 |
3607 DEFVAR_LISP ("help-char", &help_char, | |
3608 "Character to recognize as meaning Help.\n\ | |
3609 When it is read, do `(eval help-form)', and display result if it's a string.\n\ | |
3610 If the value of `help-form' is nil, this char can be read normally."); | |
3611 XSET (help_char, Lisp_Int, Ctl ('H')); | |
3612 | |
3613 DEFVAR_LISP ("help-form", &Vhelp_form, | |
3614 "Form to execute when character help-char is read.\n\ | |
3615 If the form returns a string, that string is displayed.\n\ | |
3616 If `help-form' is nil, the help char is not recognized."); | |
3617 Vhelp_form = Qnil; | |
3618 | |
3619 DEFVAR_LISP ("top-level", &Vtop_level, | |
3620 "Form to evaluate when Emacs starts up.\n\ | |
3621 Useful to set before you dump a modified Emacs."); | |
3622 Vtop_level = Qnil; | |
3623 | |
3624 DEFVAR_LISP ("keyboard-translate-table", &Vkeyboard_translate_table, | |
3625 "String used as translate table for keyboard input, or nil.\n\ | |
3626 Each character is looked up in this string and the contents used instead.\n\ | |
3627 If string is of length N, character codes N and up are untranslated."); | |
3628 Vkeyboard_translate_table = Qnil; | |
3629 | |
3630 DEFVAR_BOOL ("menu-prompting", &menu_prompting, | |
1083
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
3631 "Non-nil means prompt with menus when appropriate.\n\ |
518 | 3632 This is done when reading from a keymap that has a prompt string,\n\ |
1083
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
3633 for elements that have prompt strings.\n\ |
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
3634 The menu is displayed on the screen\n\ |
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
3635 if X menus were enabled at configuration\n\ |
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
3636 time and the previous event was a mouse click prefix key.\n\ |
cbbbe0a96ecc
(last_nonmenu_event): New var.
Richard M. Stallman <rms@gnu.org>
parents:
1046
diff
changeset
|
3637 Otherwise, menu prompting uses the echo area."); |
518 | 3638 menu_prompting = 1; |
3639 | |
3640 DEFVAR_LISP ("menu-prompt-more-char", &menu_prompt_more_char, | |
3641 "Character to see next line of menu prompt.\n\ | |
3642 Type this character while in a menu prompt to rotate around the lines of it."); | |
3643 XSET (menu_prompt_more_char, Lisp_Int, ' '); | |
3644 } | |
3645 | |
3646 keys_of_keyboard () | |
3647 { | |
3648 initial_define_key (global_map, Ctl ('Z'), "suspend-emacs"); | |
3649 initial_define_key (control_x_map, Ctl ('Z'), "suspend-emacs"); | |
3650 initial_define_key (meta_map, Ctl ('C'), "exit-recursive-edit"); | |
3651 initial_define_key (global_map, Ctl (']'), "abort-recursive-edit"); | |
3652 initial_define_key (meta_map, 'x', "execute-extended-command"); | |
3653 } |