0
|
1 /* The portable interface to event streams.
|
|
2 Copyright (C) 1991, 1992, 1993, 1994, 1995 Free Software Foundation, Inc.
|
|
3 Copyright (C) 1995 Board of Trustees, University of Illinois.
|
|
4 Copyright (C) 1995 Sun Microsystems, Inc.
|
|
5 Copyright (C) 1995, 1996 Ben Wing.
|
|
6
|
|
7 This file is part of XEmacs.
|
|
8
|
|
9 XEmacs is free software; you can redistribute it and/or modify it
|
|
10 under the terms of the GNU General Public License as published by the
|
|
11 Free Software Foundation; either version 2, or (at your option) any
|
|
12 later version.
|
|
13
|
|
14 XEmacs is distributed in the hope that it will be useful, but WITHOUT
|
|
15 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
|
16 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
|
17 for more details.
|
|
18
|
|
19 You should have received a copy of the GNU General Public License
|
|
20 along with XEmacs; see the file COPYING. If not, write to
|
|
21 the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
|
|
22 Boston, MA 02111-1307, USA. */
|
|
23
|
|
24 /* Synched up with: Not in FSF. */
|
|
25
|
|
26 /* This file has been Mule-ized. */
|
|
27
|
|
28 /*
|
|
29 * DANGER!!
|
|
30 *
|
|
31 * If you ever change ANYTHING in this file, you MUST run the
|
|
32 * testcases at the end to make sure that you haven't changed
|
|
33 * the semantics of recent-keys, last-input-char, or keyboard
|
|
34 * macros. You'd be surprised how easy it is to break this.
|
|
35 *
|
|
36 */
|
|
37
|
|
38 #include <config.h>
|
|
39 #include "lisp.h"
|
|
40
|
|
41 #include "buffer.h"
|
|
42 #include "commands.h"
|
|
43 #include "device.h"
|
|
44 #include "elhash.h"
|
|
45 #include "events.h"
|
|
46 #include "frame.h"
|
|
47 #include "insdel.h" /* for buffer_reset_changes */
|
|
48 #include "keymap.h"
|
|
49 #include "lstream.h"
|
|
50 #include "macros.h" /* for defining_keyboard_macro */
|
|
51 #include "opaque.h"
|
|
52 #include "process.h"
|
|
53 #include "window.h"
|
|
54
|
|
55 #include "sysdep.h" /* init_poll_for_quit() */
|
|
56 #include "syssignal.h" /* SIGCHLD, etc. */
|
|
57 #include "systime.h" /* to set Vlast_input_time */
|
|
58
|
70
|
59 #ifdef MULE
|
|
60 #include "mule-coding.h"
|
|
61 #endif
|
|
62
|
0
|
63 #include <errno.h>
|
|
64
|
|
65 /* The number of keystrokes between auto-saves. */
|
|
66 static int auto_save_interval;
|
|
67
|
|
68 Lisp_Object Qundefined_keystroke_sequence;
|
|
69
|
|
70 Lisp_Object Qcommand_execute;
|
|
71
|
|
72 Lisp_Object Qcommand_event_p;
|
|
73
|
|
74 /* Hooks to run before and after each command. */
|
|
75 Lisp_Object Vpre_command_hook, Vpost_command_hook;
|
|
76 Lisp_Object Qpre_command_hook, Qpost_command_hook;
|
|
77
|
|
78 /* Hook run when XEmacs is about to be idle. */
|
|
79 Lisp_Object Qpre_idle_hook, Vpre_idle_hook;
|
|
80
|
72
|
81 /* Control gratuitous keyboard focus throwing. */
|
|
82 int focus_follows_mouse;
|
|
83
|
0
|
84 #ifdef ILL_CONCEIVED_HOOK
|
|
85 /* Hook run after a command if there's no more input soon. */
|
|
86 Lisp_Object Qpost_command_idle_hook, Vpost_command_idle_hook;
|
|
87
|
|
88 /* Delay time in microseconds before running post-command-idle-hook. */
|
|
89 int post_command_idle_delay;
|
|
90 #endif /* ILL_CONCEIVED_HOOK */
|
|
91
|
|
92 #ifdef DEFERRED_ACTION_CRAP
|
|
93 /* List of deferred actions to be performed at a later time.
|
|
94 The precise format isn't relevant here; we just check whether it is nil. */
|
|
95 Lisp_Object Vdeferred_action_list;
|
|
96
|
|
97 /* Function to call to handle deferred actions, when there are any. */
|
|
98 Lisp_Object Vdeferred_action_function;
|
|
99 Lisp_Object Qdeferred_action_function;
|
|
100 #endif /* DEFERRED_ACTION_CRAP */
|
|
101
|
|
102 /* Non-nil disable property on a command means
|
|
103 do not execute it; call disabled-command-hook's value instead. */
|
|
104 Lisp_Object Qdisabled, Vdisabled_command_hook;
|
|
105
|
|
106 static void pre_command_hook (void);
|
|
107 static void post_command_hook (void);
|
|
108
|
|
109 /* Last keyboard or mouse input event read as a command. */
|
|
110 Lisp_Object Vlast_command_event;
|
|
111
|
|
112 /* The nearest ASCII equivalent of the above. */
|
|
113 Lisp_Object Vlast_command_char;
|
|
114
|
|
115 /* Last keyboard or mouse event read for any purpose. */
|
|
116 Lisp_Object Vlast_input_event;
|
|
117
|
|
118 /* The nearest ASCII equivalent of the above. */
|
|
119 Lisp_Object Vlast_input_char;
|
|
120
|
|
121 Lisp_Object Vcurrent_mouse_event;
|
|
122
|
|
123 /* If not Qnil, event objects to be read as the next command input */
|
|
124 Lisp_Object Vunread_command_events;
|
|
125 Lisp_Object Vunread_command_event; /* obsoleteness support */
|
|
126
|
|
127 static Lisp_Object Qunread_command_events, Qunread_command_event;
|
|
128
|
|
129 /* Previous command, represented by a Lisp object.
|
|
130 Does not include prefix commands and arg setting commands */
|
|
131 Lisp_Object Vlast_command;
|
|
132
|
|
133 /* If a command sets this, the value goes into
|
|
134 previous-command for the next command. */
|
|
135 Lisp_Object Vthis_command;
|
|
136
|
|
137 /* The value of point when the last command was executed. */
|
|
138 Bufpos last_point_position;
|
|
139
|
|
140 /* The frame that was current when the last command was started. */
|
|
141 Lisp_Object Vlast_selected_frame;
|
|
142
|
|
143 /* The buffer that was current when the last command was started. */
|
|
144 Lisp_Object last_point_position_buffer;
|
|
145
|
|
146 /* A (16bit . 16bit) representation of the time of the last-command-event.
|
|
147 */
|
|
148 Lisp_Object Vlast_input_time;
|
|
149
|
|
150 /* Character to recognize as the help char. */
|
|
151 Lisp_Object Vhelp_char;
|
|
152
|
|
153 /* Form to execute when help char is typed. */
|
|
154 Lisp_Object Vhelp_form;
|
|
155
|
|
156 /* Flag to tell QUIT that some interesting occurrence (e.g. a keypress)
|
|
157 may have happened. */
|
|
158 volatile int something_happened;
|
|
159
|
|
160 /* Command to run when the help character follows a prefix key. */
|
|
161 Lisp_Object Vprefix_help_command;
|
|
162
|
|
163 /* Hash table to translate keysyms through */
|
|
164 Lisp_Object Vkeyboard_translate_table;
|
|
165
|
|
166 /* If control-meta-super-shift-X is undefined, try control-meta-super-x */
|
|
167 Lisp_Object Vretry_undefined_key_binding_unshifted;
|
|
168 Lisp_Object Qretry_undefined_key_binding_unshifted;
|
|
169
|
70
|
170 #ifdef HAVE_XIM
|
|
171 /* If composed input is undefined, use self-insert-char */
|
|
172 Lisp_Object Vcomposed_character_default_binding;
|
|
173 #endif /* HAVE_XIM */
|
|
174
|
0
|
175 /* Console that corresponds to our controlling terminal */
|
|
176 Lisp_Object Vcontrolling_terminal;
|
|
177
|
|
178 /* An event (actually an event chain linked through event_next) or Qnil.
|
|
179 */
|
|
180 Lisp_Object Vthis_command_keys;
|
|
181 Lisp_Object Vthis_command_keys_tail;
|
|
182
|
|
183 /* #### kludge! */
|
|
184 Lisp_Object Qauto_show_make_point_visible;
|
|
185
|
|
186 /* File in which we write all commands we read; an lstream */
|
|
187 static Lisp_Object Vdribble_file;
|
|
188
|
|
189 #ifdef DEBUG_XEMACS
|
|
190 int debug_emacs_events;
|
|
191 #endif
|
|
192
|
|
193
|
|
194 /* The callback routines for the window system or terminal driver */
|
|
195 struct event_stream *event_stream;
|
|
196
|
|
197 /* This structure is what we use to excapsulate the state of a command sequence
|
|
198 being composed; key events are executed by adding themselves to the command
|
|
199 builder; if the command builder is then complete (does not still represent
|
|
200 a prefix key sequence) it executes the corresponding command.
|
|
201 */
|
|
202 struct command_builder
|
|
203 {
|
|
204 struct lcrecord_header header;
|
|
205 Lisp_Object console; /* back pointer to the console this command
|
|
206 builder is for */
|
|
207 /* Qnil, or a Lisp_Event representing the first event read
|
|
208 * after the last command completed. Threaded. */
|
|
209 /* #### NYI */
|
|
210 Lisp_Object prefix_events;
|
|
211 /* Qnil, or a Lisp_Event representing event in the current
|
|
212 * keymap-lookup sequence. Subsequent events are threaded via
|
|
213 * the event's next slot */
|
|
214 Lisp_Object current_events;
|
|
215 /* Last elt of above */
|
|
216 Lisp_Object most_current_event;
|
|
217 /* Last elt before function map code took over.
|
|
218 What this means is: All prefixes up to (but not including)
|
|
219 this event have non-nil bindings, but the prefix including
|
|
220 this event has a nil binding. Any events in the chain after
|
|
221 this one were read solely because we're part of a possible
|
|
222 function key. If we end up with something that's not part
|
|
223 of a possible function key, we have to unread all of those
|
|
224 events. */
|
|
225 Lisp_Object last_non_munged_event;
|
|
226 /* One set of values for function-key-map, one for key-translation-map */
|
|
227 struct munging_key_translation
|
|
228 {
|
|
229 /* First event that can begin a possible function key sequence
|
|
230 (to be translated according to function-key-map). Normally
|
|
231 this is the first event in the chain. However, once we've
|
|
232 translated a sequence through function-key-map, this will
|
|
233 point to the first event after the translated sequence:
|
|
234 we don't ever want to translate any events twice through
|
|
235 function-key-map, or things could get really screwed up
|
|
236 (e.g. if the user created a translation loop). If this
|
|
237 is nil, then the next-read event is the first that can
|
|
238 begin a function key sequence. */
|
|
239 Lisp_Object first_mungeable_event;
|
|
240 } munge_me[2];
|
|
241
|
|
242 Bufbyte *echo_buf;
|
|
243 Bytecount echo_buf_length; /* size of echo_buf */
|
|
244 Bytecount echo_buf_index; /* index into echo_buf
|
|
245 * -1 before doing echoing for new cmd */
|
|
246 /* Self-insert-command is magic in that it doesn't always push an undo-
|
|
247 boundary: up to 20 consecutive self-inserts can happen before an undo-
|
|
248 boundary is pushed. This variable is that counter.
|
|
249 */
|
|
250 int self_insert_countdown;
|
|
251 };
|
|
252
|
|
253 static void echo_key_event (struct command_builder *, Lisp_Object event);
|
|
254 static void maybe_kbd_translate (Lisp_Object event);
|
|
255
|
|
256 /* This structure is basically a typeahead queue: things like
|
|
257 wait-reading-process-output will delay the execution of
|
|
258 keyboard and mouse events by pushing them here.
|
|
259
|
|
260 Chained through event_next()
|
|
261 command_event_queue_tail is a pointer to the last-added element.
|
|
262 */
|
86
|
263 static Lisp_Object process_event_queue;
|
|
264 static Lisp_Object process_event_queue_tail;
|
0
|
265 static Lisp_Object command_event_queue;
|
|
266 static Lisp_Object command_event_queue_tail;
|
|
267
|
|
268 /* Nonzero means echo unfinished commands after this many seconds of pause. */
|
|
269 static int echo_keystrokes;
|
|
270
|
|
271 /* The number of keystrokes since the last auto-save. */
|
|
272 static int keystrokes_since_auto_save;
|
|
273
|
|
274 /* Used by the C-g signal handler so that it will never "hard quit"
|
|
275 when waiting for an event. Otherwise holding down C-g could
|
|
276 cause a suspension back to the shell, which is generally
|
|
277 undesirable. (#### This doesn't fully work.) */
|
|
278
|
|
279 int emacs_is_blocking;
|
|
280
|
|
281
|
|
282 /**********************************************************************/
|
|
283 /* Command-builder object */
|
|
284 /**********************************************************************/
|
|
285
|
|
286 #define XCOMMAND_BUILDER(x) \
|
|
287 XRECORD (x, command_builder, struct command_builder)
|
|
288 #define XSETCOMMAND_BUILDER(x, p) XSETRECORD (x, p, command_builder)
|
|
289 #define COMMAND_BUILDERP(x) RECORDP (x, command_builder)
|
|
290 #define GC_COMMAND_BUILDERP(x) GC_RECORDP (x, command_builder)
|
|
291 #define CHECK_COMMAND_BUILDER(x) CHECK_RECORD (x, command_builder)
|
|
292
|
|
293 static Lisp_Object mark_command_builder (Lisp_Object obj,
|
|
294 void (*markobj) (Lisp_Object));
|
|
295 static void finalize_command_builder (void *header, int for_disksave);
|
|
296 DEFINE_LRECORD_IMPLEMENTATION ("command-builder", command_builder,
|
|
297 mark_command_builder, internal_object_printer,
|
|
298 finalize_command_builder, 0, 0,
|
|
299 struct command_builder);
|
|
300
|
|
301 static Lisp_Object
|
|
302 mark_command_builder (Lisp_Object obj, void (*markobj) (Lisp_Object))
|
|
303 {
|
|
304 struct command_builder *builder = XCOMMAND_BUILDER (obj);
|
|
305 (markobj) (builder->prefix_events);
|
|
306 (markobj) (builder->current_events);
|
|
307 (markobj) (builder->most_current_event);
|
|
308 (markobj) (builder->last_non_munged_event);
|
|
309 (markobj) (builder->munge_me[0].first_mungeable_event);
|
|
310 (markobj) (builder->munge_me[1].first_mungeable_event);
|
|
311 return builder->console;
|
|
312 }
|
|
313
|
|
314 static void
|
|
315 finalize_command_builder (void *header, int for_disksave)
|
|
316 {
|
|
317 struct command_builder *c = (struct command_builder *) header;
|
|
318
|
|
319 if (!for_disksave)
|
|
320 {
|
|
321 xfree (c->echo_buf);
|
|
322 c->echo_buf = 0;
|
|
323 }
|
|
324 }
|
|
325
|
|
326 static void
|
|
327 reset_command_builder_event_chain (struct command_builder *builder)
|
|
328 {
|
|
329 builder->prefix_events = Qnil;
|
|
330 builder->current_events = Qnil;
|
|
331 builder->most_current_event = Qnil;
|
|
332 builder->last_non_munged_event = Qnil;
|
|
333 builder->munge_me[0].first_mungeable_event = Qnil;
|
|
334 builder->munge_me[1].first_mungeable_event = Qnil;
|
|
335 }
|
|
336
|
|
337 Lisp_Object
|
|
338 allocate_command_builder (Lisp_Object console)
|
|
339 {
|
|
340 Lisp_Object builder_obj = Qnil;
|
|
341 struct command_builder *builder =
|
|
342 alloc_lcrecord (sizeof (struct command_builder),
|
|
343 lrecord_command_builder);
|
|
344
|
|
345 builder->console = console;
|
|
346 reset_command_builder_event_chain (builder);
|
|
347 builder->echo_buf_length = 300; /* #### Kludge */
|
|
348 builder->echo_buf =
|
|
349 (Bufbyte *) xmalloc (builder->echo_buf_length);
|
|
350 builder->echo_buf[0] = 0;
|
|
351 builder->echo_buf_index = -1;
|
|
352 builder->echo_buf_index = -1;
|
|
353 builder->self_insert_countdown = 0;
|
|
354
|
|
355 XSETCOMMAND_BUILDER (builder_obj, builder);
|
|
356 return builder_obj;
|
|
357 }
|
|
358
|
|
359 static void
|
|
360 command_builder_append_event (struct command_builder *builder,
|
|
361 Lisp_Object event)
|
|
362 {
|
|
363 assert (EVENTP (event));
|
|
364
|
|
365 if (EVENTP (builder->most_current_event))
|
|
366 XSET_EVENT_NEXT (builder->most_current_event, event);
|
|
367 else
|
|
368 builder->current_events = event;
|
|
369
|
|
370 builder->most_current_event = event;
|
|
371 if (NILP (builder->munge_me[0].first_mungeable_event))
|
|
372 builder->munge_me[0].first_mungeable_event = event;
|
|
373 if (NILP (builder->munge_me[1].first_mungeable_event))
|
|
374 builder->munge_me[1].first_mungeable_event = event;
|
|
375 }
|
|
376
|
|
377
|
|
378 /**********************************************************************/
|
|
379 /* Low-level interfaces onto event methods */
|
|
380 /**********************************************************************/
|
|
381
|
|
382 enum event_stream_operation
|
|
383 {
|
|
384 EVENT_STREAM_PROCESS,
|
|
385 EVENT_STREAM_TIMEOUT,
|
|
386 EVENT_STREAM_CONSOLE,
|
|
387 EVENT_STREAM_READ
|
|
388 };
|
|
389
|
|
390 static void
|
|
391 check_event_stream_ok (enum event_stream_operation op)
|
|
392 {
|
|
393 if (!event_stream && noninteractive)
|
|
394 {
|
|
395 switch (op)
|
|
396 {
|
|
397 case EVENT_STREAM_PROCESS:
|
|
398 error ("Can't start subprocesses in -batch mode");
|
|
399 case EVENT_STREAM_TIMEOUT:
|
|
400 error ("Can't add timeouts in -batch mode");
|
|
401 case EVENT_STREAM_CONSOLE:
|
|
402 error ("Can't add consoles in -batch mode");
|
|
403 case EVENT_STREAM_READ:
|
|
404 error ("Can't read events in -batch mode");
|
|
405 default:
|
|
406 abort ();
|
|
407 }
|
|
408 }
|
|
409 else if (!event_stream)
|
|
410 {
|
|
411 error ("event-stream callbacks not initialized (internal error?)");
|
|
412 }
|
|
413 }
|
|
414
|
|
415 int
|
|
416 event_stream_event_pending_p (int user)
|
|
417 {
|
|
418 if (!event_stream)
|
|
419 return 0;
|
|
420 return event_stream->event_pending_p (user);
|
|
421 }
|
|
422
|
|
423 static int
|
|
424 maybe_read_quit_event (struct Lisp_Event *event)
|
|
425 {
|
|
426 /* A C-g that came from `sigint_happened' will always come from the
|
|
427 controlling terminal. If that doesn't exist, however, then the
|
|
428 user manually sent us a SIGINT, and we pretend the C-g came from
|
|
429 the selected console. */
|
|
430 struct console *con;
|
|
431
|
|
432 if (CONSOLEP (Vcontrolling_terminal) &&
|
|
433 CONSOLE_LIVE_P (XCONSOLE (Vcontrolling_terminal)))
|
|
434 con = XCONSOLE (Vcontrolling_terminal);
|
|
435 else
|
|
436 con = XCONSOLE (Fselected_console ());
|
|
437
|
|
438 if (sigint_happened)
|
|
439 {
|
|
440 int ch = CONSOLE_QUIT_CHAR (con);
|
|
441 sigint_happened = 0;
|
|
442 Vquit_flag = Qnil;
|
|
443 character_to_event (ch, event, con, 1);
|
|
444 event->channel = make_console (con);
|
|
445 return 1;
|
|
446 }
|
|
447 return 0;
|
|
448 }
|
|
449
|
|
450 void
|
|
451 event_stream_next_event (struct Lisp_Event *event)
|
|
452 {
|
|
453 Lisp_Object event_obj = Qnil;
|
|
454
|
|
455 check_event_stream_ok (EVENT_STREAM_READ);
|
|
456
|
|
457 XSETEVENT (event_obj, event);
|
|
458 zero_event (event);
|
|
459 /* If C-g was pressed, treat it as a character to be read.
|
|
460 Note that if C-g was pressed while we were blocking,
|
|
461 the SIGINT signal handler will be called. It will
|
|
462 set Vquit_flag and write a byte on our "fake pipe",
|
|
463 which will unblock us. */
|
|
464 if (maybe_read_quit_event (event))
|
|
465 {
|
|
466 #ifdef DEBUG_XEMACS
|
|
467 if (debug_emacs_events)
|
|
468 {
|
|
469 write_c_string ("(SIGINT) ",
|
|
470 Qexternal_debugging_output);
|
|
471 print_internal (event_obj, Qexternal_debugging_output, 1);
|
|
472 write_c_string ("\n", Qexternal_debugging_output);
|
|
473 }
|
|
474 #endif
|
|
475 return;
|
|
476 }
|
|
477
|
|
478 /* If a longjmp() happens in the callback, we're screwed.
|
|
479 Let's hope it doesn't. I think the code here is fairly
|
|
480 clean and doesn't do this. */
|
|
481 emacs_is_blocking = 1;
|
|
482 #if 0
|
|
483 /* Do this if the poll-for-quit timer seems to be taking too
|
|
484 much CPU time when idle ... */
|
|
485 reset_poll_for_quit ();
|
|
486 #endif
|
|
487 event_stream->next_event_cb (event);
|
|
488 #if 0
|
|
489 init_poll_for_quit ();
|
|
490 #endif
|
|
491 emacs_is_blocking = 0;
|
|
492
|
|
493 #ifdef DEBUG_XEMACS
|
|
494 if (debug_emacs_events)
|
|
495 {
|
|
496 write_c_string ("(real) ",
|
|
497 Qexternal_debugging_output);
|
|
498 /* timeout events have more info set later, so
|
|
499 print the event out in next_event_internal(). */
|
|
500 if (event->event_type != timeout_event)
|
|
501 {
|
|
502 print_internal (event_obj, Qexternal_debugging_output, 1);
|
|
503 write_c_string ("\n", Qexternal_debugging_output);
|
|
504 }
|
|
505 }
|
|
506 #endif
|
|
507 maybe_kbd_translate (event_obj);
|
|
508 }
|
|
509
|
|
510 void
|
|
511 event_stream_handle_magic_event (struct Lisp_Event *event)
|
|
512 {
|
|
513 check_event_stream_ok (EVENT_STREAM_READ);
|
|
514 event_stream->handle_magic_event_cb (event);
|
|
515 }
|
|
516
|
|
517 static int
|
|
518 event_stream_add_timeout (EMACS_TIME timeout)
|
|
519 {
|
|
520 check_event_stream_ok (EVENT_STREAM_TIMEOUT);
|
|
521 return event_stream->add_timeout_cb (timeout);
|
|
522 }
|
|
523
|
|
524 static void
|
|
525 event_stream_remove_timeout (int id)
|
|
526 {
|
|
527 check_event_stream_ok (EVENT_STREAM_TIMEOUT);
|
|
528 event_stream->remove_timeout_cb (id);
|
|
529 }
|
|
530
|
|
531 void
|
|
532 event_stream_select_console (struct console *con)
|
|
533 {
|
|
534 check_event_stream_ok (EVENT_STREAM_CONSOLE);
|
|
535 if (!con->input_enabled)
|
|
536 {
|
|
537 event_stream->select_console_cb (con);
|
|
538 con->input_enabled = 1;
|
|
539 }
|
|
540 }
|
|
541
|
|
542 void
|
|
543 event_stream_unselect_console (struct console *con)
|
|
544 {
|
|
545 check_event_stream_ok (EVENT_STREAM_CONSOLE);
|
|
546 if (con->input_enabled)
|
|
547 {
|
|
548 event_stream->unselect_console_cb (con);
|
|
549 con->input_enabled = 0;
|
|
550 }
|
|
551 }
|
|
552
|
|
553 void
|
|
554 event_stream_select_process (struct Lisp_Process *proc)
|
|
555 {
|
|
556 check_event_stream_ok (EVENT_STREAM_PROCESS);
|
|
557 if (!get_process_selected_p (proc))
|
|
558 {
|
|
559 event_stream->select_process_cb (proc);
|
|
560 set_process_selected_p (proc, 1);
|
|
561 }
|
|
562 }
|
|
563
|
|
564 void
|
|
565 event_stream_unselect_process (struct Lisp_Process *proc)
|
|
566 {
|
|
567 check_event_stream_ok (EVENT_STREAM_PROCESS);
|
|
568 if (get_process_selected_p (proc))
|
|
569 {
|
|
570 event_stream->unselect_process_cb (proc);
|
|
571 set_process_selected_p (proc, 0);
|
|
572 }
|
|
573 }
|
|
574
|
|
575 void
|
|
576 event_stream_quit_p (void)
|
|
577 {
|
|
578 if (event_stream)
|
|
579 event_stream->quit_p_cb ();
|
|
580 }
|
|
581
|
|
582
|
|
583
|
|
584 /**********************************************************************/
|
|
585 /* Character prompting */
|
|
586 /**********************************************************************/
|
|
587
|
|
588 static void
|
|
589 echo_key_event (struct command_builder *command_builder,
|
|
590 Lisp_Object event)
|
|
591 {
|
|
592 /* This function can GC */
|
|
593 char buf[255];
|
|
594 Bytecount buf_index = command_builder->echo_buf_index;
|
|
595 Bufbyte *e;
|
|
596 Bytecount len;
|
|
597
|
|
598 if (buf_index < 0)
|
|
599 {
|
|
600 buf_index = 0; /* We're echoing now */
|
|
601 clear_echo_area (selected_frame (), Qnil, 0);
|
|
602 }
|
|
603
|
|
604 format_event_object (buf, XEVENT (event), 1);
|
|
605 len = strlen (buf);
|
|
606
|
|
607 if (len + buf_index + 4 > command_builder->echo_buf_length)
|
|
608 return;
|
|
609 e = command_builder->echo_buf + buf_index;
|
|
610 memcpy (e, buf, len);
|
|
611 e += len;
|
|
612
|
|
613 e[0] = ' ';
|
|
614 e[1] = '-';
|
|
615 e[2] = ' ';
|
|
616 e[3] = 0;
|
|
617
|
|
618 command_builder->echo_buf_index = buf_index + len + 1;
|
|
619 }
|
|
620
|
|
621 static void
|
|
622 regenerate_echo_keys_from_this_command_keys (struct command_builder *
|
|
623 builder)
|
|
624 {
|
|
625 Lisp_Object event;
|
|
626
|
|
627 builder->echo_buf_index = 0;
|
|
628
|
|
629 EVENT_CHAIN_LOOP (event, Vthis_command_keys)
|
|
630 echo_key_event (builder, event);
|
|
631 }
|
|
632
|
|
633 static void
|
|
634 maybe_echo_keys (struct command_builder *command_builder, int no_snooze)
|
|
635 {
|
|
636 /* This function can GC */
|
|
637 struct frame *f = selected_frame ();
|
|
638 /* Message turns off echoing unless more keystrokes turn it on again. */
|
|
639 if (echo_area_active (f) && !EQ (Qcommand, echo_area_status (f)))
|
|
640 return;
|
|
641
|
|
642 if (minibuf_level == 0
|
|
643 && echo_keystrokes > 0)
|
|
644 {
|
|
645 if (!no_snooze)
|
|
646 {
|
|
647 /* #### C-g here will cause QUIT. Setting dont_check_for_quit
|
|
648 doesn't work. See check_quit. */
|
|
649 if (NILP (Fsit_for (make_int (echo_keystrokes), Qnil)))
|
|
650 /* input came in, so don't echo. */
|
|
651 return;
|
|
652 }
|
|
653
|
|
654 echo_area_message (f, command_builder->echo_buf, Qnil, 0,
|
|
655 /* not echo_buf_index. That doesn't include
|
|
656 the terminating " - ". */
|
|
657 strlen ((char *) command_builder->echo_buf),
|
|
658 Qcommand);
|
|
659 }
|
|
660 }
|
|
661
|
|
662 static void
|
|
663 reset_key_echo (struct command_builder *command_builder,
|
|
664 int remove_echo_area_echo)
|
|
665 {
|
|
666 /* This function can GC */
|
|
667 struct frame *f = selected_frame ();
|
|
668
|
|
669 command_builder->echo_buf_index = -1;
|
|
670
|
|
671 if (remove_echo_area_echo)
|
|
672 clear_echo_area (f, Qcommand, 0);
|
|
673 }
|
|
674
|
|
675
|
|
676 /**********************************************************************/
|
|
677 /* random junk */
|
|
678 /**********************************************************************/
|
|
679
|
|
680 static void
|
|
681 maybe_kbd_translate (Lisp_Object event)
|
|
682 {
|
|
683 Emchar c;
|
|
684 int did_translate = 0;
|
|
685
|
|
686 if (XEVENT_TYPE (event) != key_press_event)
|
|
687 return;
|
|
688 if (!HASHTABLEP (Vkeyboard_translate_table))
|
|
689 return;
|
|
690 if (EQ (Fhashtable_fullness (Vkeyboard_translate_table), Qzero))
|
|
691 return;
|
|
692
|
|
693 c = event_to_character (XEVENT (event), 0, 0, 0);
|
|
694 if (c != -1)
|
|
695 {
|
|
696 Lisp_Object traduit = Fgethash (make_char (c), Vkeyboard_translate_table,
|
|
697 Qnil);
|
|
698 if (!NILP (traduit) && SYMBOLP (traduit))
|
|
699 {
|
|
700 XEVENT (event)->event.key.keysym = traduit;
|
|
701 XEVENT (event)->event.key.modifiers = 0;
|
|
702 did_translate = 1;
|
|
703 }
|
|
704 else if (CHARP (traduit))
|
|
705 {
|
|
706 struct Lisp_Event ev2;
|
|
707
|
|
708 /* This used to call Fcharacter_to_event() directly into EVENT,
|
|
709 but that can eradicate timestamps and other such stuff.
|
|
710 This way is safer. */
|
|
711 zero_event (&ev2);
|
|
712 character_to_event (XCHAR (traduit), &ev2,
|
|
713 XCONSOLE (EVENT_CHANNEL (XEVENT (event))), 1);
|
|
714 XEVENT (event)->event.key.keysym = ev2.event.key.keysym;
|
|
715 XEVENT (event)->event.key.modifiers = ev2.event.key.modifiers;
|
|
716 did_translate = 1;
|
|
717 }
|
|
718 }
|
|
719
|
|
720 if (!did_translate)
|
|
721 {
|
|
722 Lisp_Object traduit = Fgethash (XEVENT (event)->event.key.keysym,
|
|
723 Vkeyboard_translate_table, Qnil);
|
|
724 if (!NILP (traduit) && SYMBOLP (traduit))
|
|
725 {
|
|
726 XEVENT (event)->event.key.keysym = traduit;
|
|
727 did_translate = 1;
|
|
728 }
|
|
729 }
|
|
730
|
|
731 #ifdef DEBUG_XEMACS
|
|
732 if (did_translate && debug_emacs_events)
|
|
733 {
|
|
734 write_c_string ("(->keyboard-translate-table) ",
|
|
735 Qexternal_debugging_output);
|
|
736 print_internal (event, Qexternal_debugging_output, 1);
|
|
737 write_c_string ("\n", Qexternal_debugging_output);
|
|
738 }
|
|
739 #endif
|
|
740 }
|
|
741
|
|
742 /* NB: The following auto-save stuff is in keyboard.c in FSFmacs, and
|
|
743 keystrokes_since_auto_save is equivalent to the difference between
|
|
744 num_nonmacro_input_chars and last_auto_save. */
|
|
745
|
|
746 /* When an auto-save happens, record the "time", and don't do again soon. */
|
|
747
|
|
748 void
|
|
749 record_auto_save (void)
|
|
750 {
|
|
751 keystrokes_since_auto_save = 0;
|
|
752 }
|
|
753
|
|
754 /* Make an auto save happen as soon as possible at command level. */
|
|
755
|
|
756 void
|
|
757 force_auto_save_soon (void)
|
|
758 {
|
|
759 keystrokes_since_auto_save = 1 + max (auto_save_interval, 20);
|
|
760
|
|
761 #if 0 /* FSFmacs */
|
|
762 record_asynch_buffer_change ();
|
|
763 #endif
|
|
764 }
|
|
765
|
|
766 static void
|
|
767 maybe_do_auto_save (void)
|
|
768 {
|
70
|
769 /* This function can GC */
|
0
|
770 keystrokes_since_auto_save++;
|
|
771 if (auto_save_interval > 0 &&
|
|
772 keystrokes_since_auto_save > max (auto_save_interval, 20) &&
|
|
773 !detect_input_pending ())
|
|
774 {
|
|
775 Fdo_auto_save (Qnil, Qnil);
|
|
776 record_auto_save ();
|
|
777 }
|
|
778 }
|
|
779
|
|
780 static Lisp_Object
|
|
781 print_help (Lisp_Object object)
|
|
782 {
|
|
783 Fprinc (object, Qnil);
|
|
784 return Qnil;
|
|
785 }
|
|
786
|
|
787 static void
|
|
788 execute_help_form (struct command_builder *command_builder,
|
|
789 Lisp_Object event)
|
|
790 {
|
|
791 /* This function can GC */
|
|
792 Lisp_Object help = Qnil;
|
|
793 int speccount = specpdl_depth ();
|
|
794 Bytecount buf_index = command_builder->echo_buf_index;
|
|
795 Lisp_Object echo = ((buf_index <= 0)
|
|
796 ? Qnil
|
|
797 : make_string (command_builder->echo_buf,
|
|
798 buf_index));
|
|
799 struct gcpro gcpro1, gcpro2;
|
|
800 GCPRO2 (echo, help);
|
|
801
|
|
802 record_unwind_protect (save_window_excursion_unwind,
|
|
803 Fcurrent_window_configuration (Qnil));
|
|
804 reset_key_echo (command_builder, 1);
|
|
805
|
|
806 help = Feval (Vhelp_form);
|
|
807 if (STRINGP (help))
|
|
808 internal_with_output_to_temp_buffer ("*Help*",
|
|
809 print_help, help, Qnil);
|
|
810 Fnext_command_event (event, Qnil);
|
|
811 /* Remove the help from the frame */
|
|
812 unbind_to (speccount, Qnil);
|
|
813 /* Hmmmm. Tricky. The unbind restores an old window configuration,
|
|
814 apparently bypassing any setting of windows_structure_changed.
|
|
815 So we need to set it so that things get redrawn properly. */
|
|
816 /* #### This is massive overkill. Look at doing it better once the
|
|
817 new redisplay is fully in place. */
|
|
818 {
|
|
819 Lisp_Object frmcons, devcons, concons;
|
|
820 FRAME_LOOP_NO_BREAK (frmcons, devcons, concons)
|
|
821 {
|
|
822 MARK_FRAME_WINDOWS_STRUCTURE_CHANGED (XFRAME (XCAR (frmcons)));
|
|
823 }
|
|
824 }
|
|
825
|
|
826 redisplay ();
|
|
827 if (event_matches_key_specifier_p (XEVENT (event), make_char (' ')))
|
|
828 {
|
2
|
829 /* Discard next key if it is a space */
|
0
|
830 reset_key_echo (command_builder, 1);
|
|
831 Fnext_command_event (event, Qnil);
|
|
832 }
|
|
833
|
|
834 command_builder->echo_buf_index = buf_index;
|
|
835 if (buf_index > 0)
|
|
836 memcpy (command_builder->echo_buf,
|
14
|
837 XSTRING_DATA (echo), buf_index + 1); /* terminating 0 */
|
0
|
838 UNGCPRO;
|
|
839 }
|
|
840
|
|
841
|
|
842 /**********************************************************************/
|
|
843 /* input pending */
|
|
844 /**********************************************************************/
|
|
845
|
|
846 int
|
|
847 detect_input_pending (void)
|
|
848 {
|
|
849 /* Always call the event_pending_p hook even if there's an unread
|
|
850 character, because that might do some needed ^G detection (on
|
|
851 systems without SIGIO, for example).
|
|
852 */
|
|
853 if (event_stream_event_pending_p (1))
|
|
854 return 1;
|
|
855 if (!NILP (Vunread_command_events) || !NILP (Vunread_command_event))
|
|
856 return 1;
|
|
857 if (!NILP (command_event_queue))
|
|
858 {
|
|
859 Lisp_Object event;
|
|
860
|
|
861 EVENT_CHAIN_LOOP (event, command_event_queue)
|
|
862 {
|
|
863 if (XEVENT_TYPE (event) != eval_event
|
|
864 && XEVENT_TYPE (event) != magic_eval_event)
|
|
865 return (1);
|
|
866 }
|
|
867 }
|
|
868 return 0;
|
|
869 }
|
|
870
|
20
|
871 DEFUN ("input-pending-p", Finput_pending_p, 0, 0, 0, /*
|
0
|
872 T if command input is currently available with no waiting.
|
|
873 Actually, the value is nil only if we can be sure that no input is available.
|
20
|
874 */
|
70
|
875 ())
|
0
|
876 {
|
|
877 return ((detect_input_pending ()) ? Qt : Qnil);
|
|
878 }
|
|
879
|
|
880
|
|
881 /**********************************************************************/
|
|
882 /* timeouts */
|
|
883 /**********************************************************************/
|
|
884
|
|
885 /**** Low-level timeout functions. ****
|
|
886
|
|
887 These functions maintain a sorted list of one-shot timeouts (where
|
|
888 the timeouts are in absolute time). They are intended for use by
|
|
889 functions that need to convert a list of absolute timeouts into a
|
|
890 series of intervals to wait for. */
|
|
891
|
|
892 /* We ensure that 0 is never a valid ID, so that a value of 0 can be
|
|
893 used to indicate an absence of a timer. */
|
|
894 static int low_level_timeout_id_tick;
|
|
895
|
|
896 struct low_level_timeout_blocktype
|
|
897 {
|
|
898 Blocktype_declare (struct low_level_timeout);
|
|
899 } *the_low_level_timeout_blocktype;
|
|
900
|
|
901 /* Add a one-shot timeout at time TIME to TIMEOUT_LIST. Return
|
|
902 a unique ID identifying the timeout. */
|
|
903
|
|
904 int
|
|
905 add_low_level_timeout (struct low_level_timeout **timeout_list,
|
|
906 EMACS_TIME thyme)
|
|
907 {
|
|
908 struct low_level_timeout *tm;
|
|
909 struct low_level_timeout *t, **tt;
|
|
910
|
|
911 /* Allocate a new time struct. */
|
|
912
|
|
913 tm = Blocktype_alloc (the_low_level_timeout_blocktype);
|
|
914 tm->next = NULL;
|
|
915 if (low_level_timeout_id_tick == 0)
|
|
916 low_level_timeout_id_tick++;
|
|
917 tm->id = low_level_timeout_id_tick++;
|
|
918 tm->time = thyme;
|
|
919
|
|
920 /* Add it to the queue. */
|
|
921
|
|
922 tt = timeout_list;
|
|
923 t = *tt;
|
|
924 while (t && EMACS_TIME_EQUAL_OR_GREATER (tm->time, t->time))
|
|
925 {
|
|
926 tt = &t->next;
|
|
927 t = *tt;
|
|
928 }
|
|
929 tm->next = t;
|
|
930 *tt = tm;
|
|
931
|
|
932 return tm->id;
|
|
933 }
|
|
934
|
|
935 /* Remove the low-level timeout identified by ID from TIMEOUT_LIST.
|
|
936 If the timeout is not there, do nothing. */
|
|
937
|
|
938 void
|
|
939 remove_low_level_timeout (struct low_level_timeout **timeout_list, int id)
|
|
940 {
|
|
941 struct low_level_timeout *t, *prev;
|
|
942
|
|
943 /* find it */
|
|
944
|
|
945 for (t = *timeout_list, prev = NULL; t && t->id != id; t = t->next)
|
|
946 prev = t;
|
|
947
|
|
948 if (!t)
|
|
949 return; /* couldn't find it */
|
|
950
|
|
951 if (!prev)
|
|
952 *timeout_list = t->next;
|
|
953 else prev->next = t->next;
|
|
954
|
|
955 Blocktype_free (the_low_level_timeout_blocktype, t);
|
|
956 }
|
|
957
|
|
958 /* If there are timeouts on TIMEOUT_LIST, store the relative time
|
|
959 interval to the first timeout on the list into INTERVAL and
|
|
960 return 1. Otherwise, return 0. */
|
|
961
|
|
962 int
|
|
963 get_low_level_timeout_interval (struct low_level_timeout *timeout_list,
|
|
964 EMACS_TIME *interval)
|
|
965 {
|
|
966 if (!timeout_list) /* no timer events; block indefinitely */
|
|
967 return 0;
|
|
968 else
|
|
969 {
|
|
970 EMACS_TIME current_time;
|
|
971
|
|
972 /* The time to block is the difference between the first
|
|
973 (earliest) timer on the queue and the current time.
|
|
974 If that is negative, then the timer will fire immediately
|
|
975 but we still have to call select(), with a zero-valued
|
|
976 timeout: user events must have precedence over timer events. */
|
|
977 EMACS_GET_TIME (current_time);
|
|
978 if (EMACS_TIME_GREATER (timeout_list->time, current_time))
|
|
979 EMACS_SUB_TIME (*interval, timeout_list->time,
|
|
980 current_time);
|
|
981 else
|
|
982 EMACS_SET_SECS_USECS (*interval, 0, 0);
|
|
983 return 1;
|
|
984 }
|
|
985 }
|
|
986
|
|
987 /* Pop the first (i.e. soonest) timeout off of TIMEOUT_LIST and return
|
|
988 its ID. Also, if TIME_OUT is not 0, store the absolute time of the
|
|
989 timeout into TIME_OUT. */
|
|
990
|
|
991 int
|
|
992 pop_low_level_timeout (struct low_level_timeout **timeout_list,
|
|
993 EMACS_TIME *time_out)
|
|
994 {
|
|
995 struct low_level_timeout *tm = *timeout_list;
|
|
996 int id;
|
|
997
|
|
998 assert (tm);
|
|
999 id = tm->id;
|
|
1000 if (time_out)
|
|
1001 *time_out = tm->time;
|
|
1002 *timeout_list = tm->next;
|
|
1003 Blocktype_free (the_low_level_timeout_blocktype, tm);
|
|
1004 return id;
|
|
1005 }
|
|
1006
|
|
1007
|
|
1008 /**** High-level timeout functions. ****/
|
|
1009
|
|
1010 static int timeout_id_tick;
|
|
1011
|
|
1012 /* Since timeout structures contain Lisp_Objects, they need to be GC'd
|
|
1013 properly. The opaque data type provides a convenient way of doing
|
|
1014 this without having to create a new Lisp object, since we can
|
|
1015 provide our own mark function. */
|
|
1016
|
|
1017 struct timeout
|
|
1018 {
|
|
1019 int id; /* Id we use to identify the timeout over its lifetime */
|
|
1020 int interval_id; /* Id for this particular interval; this may
|
|
1021 be different each time the timeout is
|
|
1022 signalled.*/
|
|
1023 Lisp_Object function, object; /* Function and object associated
|
|
1024 with timeout. */
|
|
1025 EMACS_TIME next_signal_time; /* Absolute time when the timeout
|
|
1026 is next going to be signalled. */
|
|
1027 unsigned int resignal_msecs; /* How far after the next timeout
|
|
1028 should the one after that
|
|
1029 occur? */
|
|
1030 };
|
|
1031
|
|
1032 static Lisp_Object pending_timeout_list, pending_async_timeout_list;
|
|
1033
|
|
1034 static Lisp_Object Vtimeout_free_list;
|
|
1035
|
|
1036 static Lisp_Object
|
|
1037 mark_timeout (Lisp_Object obj, void (*markobj) (Lisp_Object))
|
|
1038 {
|
|
1039 struct timeout *tm = (struct timeout *) XOPAQUE_DATA (obj);
|
|
1040 (markobj) (tm->function);
|
|
1041 return tm->object;
|
|
1042 }
|
|
1043
|
|
1044 /* Generate a timeout and return its ID. */
|
|
1045
|
|
1046 int
|
|
1047 event_stream_generate_wakeup (unsigned int milliseconds,
|
|
1048 unsigned int vanilliseconds,
|
|
1049 Lisp_Object function, Lisp_Object object,
|
|
1050 int async_p)
|
|
1051 {
|
|
1052 Lisp_Object op = allocate_managed_opaque (Vtimeout_free_list, 0);
|
|
1053 struct timeout *timeout = (struct timeout *) XOPAQUE_DATA (op);
|
|
1054 EMACS_TIME current_time;
|
|
1055 EMACS_TIME interval;
|
|
1056
|
|
1057 timeout->id = timeout_id_tick++;
|
|
1058 timeout->resignal_msecs = vanilliseconds;
|
|
1059 timeout->function = function;
|
|
1060 timeout->object = object;
|
|
1061
|
|
1062 EMACS_GET_TIME (current_time);
|
|
1063 EMACS_SET_SECS_USECS (interval, milliseconds / 1000,
|
|
1064 1000 * (milliseconds % 1000));
|
|
1065 EMACS_ADD_TIME (timeout->next_signal_time, current_time, interval);
|
|
1066
|
|
1067 if (async_p)
|
|
1068 {
|
|
1069 timeout->interval_id =
|
|
1070 event_stream_add_async_timeout (timeout->next_signal_time);
|
|
1071 pending_async_timeout_list = noseeum_cons (op,
|
|
1072 pending_async_timeout_list);
|
|
1073 }
|
|
1074 else
|
|
1075 {
|
|
1076 timeout->interval_id =
|
|
1077 event_stream_add_timeout (timeout->next_signal_time);
|
|
1078 pending_timeout_list = noseeum_cons (op, pending_timeout_list);
|
|
1079 }
|
|
1080 return timeout->id;
|
|
1081 }
|
|
1082
|
|
1083 /* Given the INTERVAL-ID of a timeout just signalled, resignal the timeout
|
|
1084 as necessary and return the timeout's ID and function and object slots.
|
|
1085
|
|
1086 This should be called as a result of receiving notice that a timeout
|
|
1087 has fired. INTERVAL-ID is *not* the timeout's ID, but is the ID that
|
|
1088 identifies this particular firing of the timeout. INTERVAL-ID's and
|
|
1089 timeout ID's are in separate number spaces and bear no relation to
|
|
1090 each other. The INTERVAL-ID is all that the event callback routines
|
|
1091 work with: they work only with one-shot intervals, not with timeouts
|
|
1092 that may fire repeatedly.
|
|
1093
|
|
1094 NOTE: The returned FUNCTION and OBJECT are *not* GC-protected at all.
|
|
1095 */
|
|
1096
|
|
1097 static int
|
|
1098 event_stream_resignal_wakeup (int interval_id, int async_p,
|
|
1099 Lisp_Object *function, Lisp_Object *object)
|
|
1100 {
|
|
1101 Lisp_Object op = Qnil, rest;
|
|
1102 struct timeout *timeout;
|
|
1103 Lisp_Object *timeout_list;
|
|
1104 struct gcpro gcpro1;
|
|
1105 int id;
|
|
1106
|
|
1107 GCPRO1 (op); /* just in case ... because it's removed from the list
|
|
1108 for awhile. */
|
|
1109
|
|
1110 if (async_p)
|
|
1111 timeout_list = &pending_async_timeout_list;
|
|
1112 else
|
|
1113 timeout_list = &pending_timeout_list;
|
|
1114
|
|
1115 /* Find the timeout on the list of pending ones. */
|
|
1116 LIST_LOOP (rest, *timeout_list)
|
|
1117 {
|
|
1118 timeout = (struct timeout *) XOPAQUE_DATA (XCAR (rest));
|
|
1119 if (timeout->interval_id == interval_id)
|
|
1120 break;
|
|
1121 }
|
|
1122
|
|
1123 assert (!NILP (rest));
|
|
1124 op = XCAR (rest);
|
|
1125 timeout = (struct timeout *) XOPAQUE_DATA (op);
|
|
1126 /* We make sure to snarf the data out of the timeout object before
|
|
1127 we free it with free_managed_opaque(). */
|
|
1128 id = timeout->id;
|
|
1129 *function = timeout->function;
|
|
1130 *object = timeout->object;
|
|
1131
|
|
1132 /* Remove this one from the list of pending timeouts */
|
|
1133 *timeout_list = delq_no_quit_and_free_cons (op, *timeout_list);
|
|
1134
|
|
1135 /* If this timeout wants to be resignalled, do it now. */
|
|
1136 if (timeout->resignal_msecs)
|
|
1137 {
|
|
1138 EMACS_TIME current_time;
|
|
1139 EMACS_TIME interval;
|
|
1140
|
|
1141 /* Determine the time that the next resignalling should occur.
|
|
1142 We do that by adding the interval time to the last signalled
|
|
1143 time until we get a time that's current.
|
|
1144
|
|
1145 (This way, it doesn't matter if the timeout was signalled
|
|
1146 exactly when we asked for it, or at some time later.)
|
|
1147 */
|
|
1148 EMACS_GET_TIME (current_time);
|
|
1149 EMACS_SET_SECS_USECS (interval, timeout->resignal_msecs / 1000,
|
|
1150 1000 * (timeout->resignal_msecs % 1000));
|
|
1151 do
|
|
1152 {
|
|
1153 EMACS_ADD_TIME (timeout->next_signal_time, timeout->next_signal_time,
|
|
1154 interval);
|
|
1155 } while (EMACS_TIME_GREATER (current_time, timeout->next_signal_time));
|
|
1156
|
|
1157 if (async_p)
|
|
1158 timeout->interval_id =
|
|
1159 event_stream_add_async_timeout (timeout->next_signal_time);
|
|
1160 else
|
|
1161 timeout->interval_id =
|
|
1162 event_stream_add_timeout (timeout->next_signal_time);
|
|
1163 /* Add back onto the list. Note that the effect of this
|
|
1164 is to move frequently-hit timeouts to the front of the
|
|
1165 list, which is a good thing. */
|
|
1166 *timeout_list = noseeum_cons (op, *timeout_list);
|
|
1167 }
|
|
1168 else
|
|
1169 free_managed_opaque (Vtimeout_free_list, op);
|
|
1170
|
|
1171 UNGCPRO;
|
|
1172 return id;
|
|
1173 }
|
|
1174
|
|
1175 void
|
|
1176 event_stream_disable_wakeup (int id, int async_p)
|
|
1177 {
|
|
1178 struct timeout *timeout = 0;
|
|
1179 Lisp_Object rest = Qnil;
|
|
1180 Lisp_Object *timeout_list;
|
|
1181
|
|
1182 if (async_p)
|
|
1183 timeout_list = &pending_async_timeout_list;
|
|
1184 else
|
|
1185 timeout_list = &pending_timeout_list;
|
|
1186
|
|
1187 /* Find the timeout on the list of pending ones, if it's still there. */
|
|
1188 LIST_LOOP (rest, *timeout_list)
|
|
1189 {
|
|
1190 timeout = (struct timeout *) XOPAQUE_DATA (XCAR (rest));
|
|
1191 if (timeout->id == id)
|
|
1192 break;
|
|
1193 }
|
|
1194
|
|
1195 /* If we found it, remove it from the list and disable the pending
|
|
1196 one-shot. */
|
|
1197 if (!NILP (rest))
|
|
1198 {
|
|
1199 Lisp_Object op = XCAR (rest);
|
|
1200 *timeout_list =
|
|
1201 delq_no_quit_and_free_cons (op, *timeout_list);
|
|
1202 if (async_p)
|
|
1203 event_stream_remove_async_timeout (timeout->interval_id);
|
|
1204 else
|
|
1205 event_stream_remove_timeout (timeout->interval_id);
|
|
1206 free_managed_opaque (Vtimeout_free_list, op);
|
|
1207 }
|
|
1208 }
|
|
1209
|
74
|
1210 int
|
|
1211 event_stream_wakeup_pending_p (int id, int async_p)
|
|
1212 {
|
|
1213 struct timeout *timeout;
|
|
1214 Lisp_Object rest = Qnil;
|
|
1215 Lisp_Object timeout_list;
|
|
1216 int found = 0;
|
|
1217
|
|
1218
|
|
1219 if (async_p)
|
|
1220 timeout_list = pending_async_timeout_list;
|
|
1221 else
|
|
1222 timeout_list = pending_timeout_list;
|
|
1223
|
|
1224 /* Find the element on the list of pending ones, if it's still there. */
|
|
1225 LIST_LOOP (rest, timeout_list)
|
|
1226 {
|
|
1227 timeout = (struct timeout *) XOPAQUE_DATA (XCAR (rest));
|
|
1228 if (timeout->id == id)
|
|
1229 {
|
|
1230 found = 1;
|
|
1231 break;
|
|
1232 }
|
|
1233 }
|
|
1234
|
|
1235 return found;
|
|
1236 }
|
|
1237
|
0
|
1238
|
|
1239 /**** Asynch. timeout functions (see also signal.c) ****/
|
|
1240
|
|
1241 #if !defined (SIGIO) && !defined (DONT_POLL_FOR_QUIT)
|
|
1242 extern int poll_for_quit_id;
|
|
1243 #endif
|
|
1244
|
|
1245 #ifndef SIGCHLD
|
|
1246 extern int poll_for_sigchld_id;
|
|
1247 #endif
|
|
1248
|
|
1249 void
|
|
1250 event_stream_deal_with_async_timeout (int interval_id)
|
|
1251 {
|
|
1252 /* This function can GC */
|
|
1253 Lisp_Object humpty, dumpty;
|
|
1254 #if (!defined (SIGIO) && !defined (DONT_POLL_FOR_QUIT)) || !defined (SIGCHLD)
|
|
1255 int id =
|
|
1256 #endif
|
|
1257 event_stream_resignal_wakeup (interval_id, 1, &humpty, &dumpty);
|
|
1258
|
|
1259 #if !defined (SIGIO) && !defined (DONT_POLL_FOR_QUIT)
|
|
1260 if (id == poll_for_quit_id)
|
|
1261 {
|
|
1262 quit_check_signal_happened = 1;
|
|
1263 quit_check_signal_tick_count++;
|
|
1264 return;
|
|
1265 }
|
|
1266 #endif
|
|
1267
|
|
1268 #if !defined (SIGCHLD)
|
|
1269 if (id == poll_for_sigchld_id)
|
|
1270 {
|
|
1271 kick_status_notify ();
|
|
1272 return;
|
|
1273 }
|
|
1274 #endif
|
|
1275
|
|
1276 /* call1 GC-protects its arguments */
|
|
1277 call1_trapping_errors ("Error in asynchronous timeout callback",
|
|
1278 humpty, dumpty);
|
|
1279 }
|
|
1280
|
|
1281
|
|
1282 /**** Lisp-level timeout functions. ****/
|
|
1283
|
|
1284 static unsigned long
|
|
1285 lisp_number_to_milliseconds (Lisp_Object secs, int allow_0)
|
|
1286 {
|
|
1287 unsigned long msecs;
|
|
1288 #ifdef LISP_FLOAT_TYPE
|
|
1289 double fsecs;
|
|
1290 CHECK_INT_OR_FLOAT (secs);
|
|
1291 fsecs = XFLOATINT (secs);
|
|
1292 #else
|
|
1293 long fsecs;
|
|
1294 CHECK_INT_OR_FLOAT (secs);
|
|
1295 fsecs = XINT (secs);
|
|
1296 #endif
|
|
1297 msecs = 1000 * fsecs;
|
|
1298 if (fsecs < 0)
|
|
1299 signal_simple_error ("timeout is negative", secs);
|
|
1300 if (!allow_0 && fsecs == 0)
|
|
1301 signal_simple_error ("timeout is non-positive", secs);
|
|
1302 if (fsecs >= (((unsigned int) 0xFFFFFFFF) / 1000))
|
|
1303 signal_simple_error
|
|
1304 ("timeout would exceed 32 bits when represented in milliseconds", secs);
|
|
1305 return msecs;
|
|
1306 }
|
|
1307
|
20
|
1308 DEFUN ("add-timeout", Fadd_timeout, 3, 4, 0, /*
|
0
|
1309 Add a timeout, to be signaled after the timeout period has elapsed.
|
|
1310 SECS is a number of seconds, expressed as an integer or a float.
|
|
1311 FUNCTION will be called after that many seconds have elapsed, with one
|
|
1312 argument, the given OBJECT. If the optional RESIGNAL argument is provided,
|
|
1313 then after this timeout expires, `add-timeout' will automatically be called
|
|
1314 again with RESIGNAL as the first argument.
|
|
1315
|
|
1316 This function returns an object which is the id number of this particular
|
|
1317 timeout. You can pass that object to `disable-timeout' to turn off the
|
|
1318 timeout before it has been signalled.
|
|
1319
|
|
1320 NOTE: Id numbers as returned by this function are in a distinct namespace
|
|
1321 from those returned by `add-async-timeout'. This means that the same id
|
|
1322 number could refer to a pending synchronous timeout and a different pending
|
|
1323 asynchronous timeout, and that you cannot pass an id from `add-timeout'
|
|
1324 to `disable-async-timeout', or vice-versa.
|
|
1325
|
|
1326 The number of seconds may be expressed as a floating-point number, in which
|
|
1327 case some fractional part of a second will be used. Caveat: the usable
|
|
1328 timeout granularity will vary from system to system.
|
|
1329
|
|
1330 Adding a timeout causes a timeout event to be returned by `next-event', and
|
|
1331 the function will be invoked by `dispatch-event,' so if emacs is in a tight
|
|
1332 loop, the function will not be invoked until the next call to sit-for or
|
|
1333 until the return to top-level (the same is true of process filters).
|
|
1334
|
|
1335 If you need to have a timeout executed even when XEmacs is in the midst of
|
|
1336 running Lisp code, use `add-async-timeout'.
|
|
1337
|
|
1338 WARNING: if you are thinking of calling add-timeout from inside of a
|
|
1339 callback function as a way of resignalling a timeout, think again. There
|
|
1340 is a race condition. That's why the RESIGNAL argument exists.
|
20
|
1341 */
|
|
1342 (secs, function, object, resignal))
|
0
|
1343 {
|
|
1344 unsigned long msecs = lisp_number_to_milliseconds (secs, 0);
|
|
1345 unsigned long msecs2 = (NILP (resignal) ? 0 :
|
|
1346 lisp_number_to_milliseconds (resignal, 0));
|
|
1347 int id;
|
|
1348 Lisp_Object lid;
|
|
1349 id = event_stream_generate_wakeup (msecs, msecs2, function, object, 0);
|
|
1350 lid = make_int (id);
|
|
1351 if (id != XINT (lid)) abort ();
|
|
1352 return lid;
|
|
1353 }
|
|
1354
|
20
|
1355 DEFUN ("disable-timeout", Fdisable_timeout, 1, 1, 0, /*
|
0
|
1356 Disable a timeout from signalling any more.
|
|
1357 ID should be a timeout id number as returned by `add-timeout'. If ID
|
|
1358 corresponds to a one-shot timeout that has already signalled, nothing
|
|
1359 will happen.
|
|
1360
|
|
1361 It will not work to call this function on an id number returned by
|
|
1362 `add-async-timeout'. Use `disable-async-timeout' for that.
|
20
|
1363 */
|
|
1364 (id))
|
0
|
1365 {
|
|
1366 CHECK_INT (id);
|
|
1367 event_stream_disable_wakeup (XINT (id), 0);
|
|
1368 return Qnil;
|
|
1369 }
|
|
1370
|
20
|
1371 DEFUN ("add-async-timeout", Fadd_async_timeout, 3, 4, 0, /*
|
0
|
1372 Add an asynchronous timeout, to be signaled after an interval has elapsed.
|
|
1373 SECS is a number of seconds, expressed as an integer or a float.
|
|
1374 FUNCTION will be called after that many seconds have elapsed, with one
|
|
1375 argument, the given OBJECT. If the optional RESIGNAL argument is provided,
|
|
1376 then after this timeout expires, `add-async-timeout' will automatically be
|
|
1377 called again with RESIGNAL as the first argument.
|
|
1378
|
|
1379 This function returns an object which is the id number of this particular
|
|
1380 timeout. You can pass that object to `disable-async-timeout' to turn off
|
|
1381 the timeout before it has been signalled.
|
|
1382
|
|
1383 NOTE: Id numbers as returned by this function are in a distinct namespace
|
|
1384 from those returned by `add-timeout'. This means that the same id number
|
|
1385 could refer to a pending synchronous timeout and a different pending
|
|
1386 asynchronous timeout, and that you cannot pass an id from
|
|
1387 `add-async-timeout' to `disable-timeout', or vice-versa.
|
|
1388
|
|
1389 The number of seconds may be expressed as a floating-point number, in which
|
|
1390 case some fractional part of a second will be used. Caveat: the usable
|
|
1391 timeout granularity will vary from system to system.
|
|
1392
|
|
1393 Adding an asynchronous timeout causes the function to be invoked as soon
|
|
1394 as the timeout occurs, even if XEmacs is in the midst of executing some
|
|
1395 other code. (This is unlike the synchronous timeouts added with
|
|
1396 `add-timeout', where the timeout will only be signalled when XEmacs is
|
|
1397 waiting for events, i.e. the next return to top-level or invocation of
|
|
1398 `sit-for' or related functions.) This means that the function that is
|
|
1399 called *must* not signal an error or change any global state (e.g. switch
|
|
1400 buffers or windows) except when locking code is in place to make sure
|
|
1401 that race conditions don't occur in the interaction between the
|
|
1402 asynchronous timeout function and other code.
|
|
1403
|
|
1404 Under most circumstances, you should use `add-timeout' instead, as it is
|
|
1405 much safer. Asynchronous timeouts should only be used when such behavior
|
|
1406 is really necessary.
|
|
1407
|
|
1408 Asynchronous timeouts are blocked and will not occur when `inhibit-quit'
|
|
1409 is non-nil. As soon as `inhibit-quit' becomes nil again, any pending
|
|
1410 asynchronous timeouts will get called immediately. (Multiple occurrences
|
|
1411 of the same asynchronous timeout are not queued, however.) While the
|
|
1412 callback function of an asynchronous timeout is invoked, `inhibit-quit'
|
|
1413 is automatically bound to non-nil, and thus other asynchronous timeouts
|
|
1414 will be blocked unless the callback function explicitly sets `inhibit-quit'
|
|
1415 to nil.
|
|
1416
|
|
1417 WARNING: if you are thinking of calling `add-async-timeout' from inside of a
|
|
1418 callback function as a way of resignalling a timeout, think again. There
|
|
1419 is a race condition. That's why the RESIGNAL argument exists.
|
20
|
1420 */
|
70
|
1421 (secs, function, object, resignal))
|
0
|
1422 {
|
|
1423 unsigned long msecs = lisp_number_to_milliseconds (secs, 0);
|
|
1424 unsigned long msecs2 = (NILP (resignal) ? 0 :
|
|
1425 lisp_number_to_milliseconds (resignal, 0));
|
|
1426 int id;
|
|
1427 Lisp_Object lid;
|
|
1428 id = event_stream_generate_wakeup (msecs, msecs2, function, object, 1);
|
|
1429 lid = make_int (id);
|
|
1430 if (id != XINT (lid)) abort ();
|
|
1431 return lid;
|
|
1432 }
|
|
1433
|
20
|
1434 DEFUN ("disable-async-timeout", Fdisable_async_timeout, 1, 1, 0, /*
|
0
|
1435 Disable an asynchronous timeout from signalling any more.
|
|
1436 ID should be a timeout id number as returned by `add-async-timeout'. If ID
|
|
1437 corresponds to a one-shot timeout that has already signalled, nothing
|
|
1438 will happen.
|
|
1439
|
|
1440 It will not work to call this function on an id number returned by
|
|
1441 `add-timeout'. Use `disable-timeout' for that.
|
20
|
1442 */
|
|
1443 (id))
|
0
|
1444 {
|
|
1445 CHECK_INT (id);
|
|
1446 event_stream_disable_wakeup (XINT (id), 1);
|
|
1447 return Qnil;
|
|
1448 }
|
|
1449
|
|
1450
|
|
1451 /**********************************************************************/
|
|
1452 /* enqueuing and dequeuing events */
|
|
1453 /**********************************************************************/
|
|
1454
|
86
|
1455 /* Add an event to the back of the process_event_queue */
|
|
1456 void
|
|
1457 enqueue_process_event (Lisp_Object event)
|
|
1458 {
|
|
1459 enqueue_event (event, &process_event_queue, &process_event_queue_tail);
|
|
1460 }
|
|
1461
|
|
1462 Lisp_Object
|
|
1463 dequeue_process_event (void)
|
|
1464 {
|
|
1465 return dequeue_event (&process_event_queue, &process_event_queue_tail);
|
|
1466 }
|
|
1467
|
0
|
1468 /* Add an event to the back of the command-event queue: it will be the next
|
|
1469 event read after all pending events. This only works on keyboard,
|
|
1470 mouse-click, misc-user, and eval events.
|
|
1471 */
|
|
1472 void
|
|
1473 enqueue_command_event (Lisp_Object event)
|
|
1474 {
|
|
1475 enqueue_event (event, &command_event_queue, &command_event_queue_tail);
|
|
1476 }
|
|
1477
|
|
1478 Lisp_Object
|
|
1479 dequeue_command_event (void)
|
|
1480 {
|
|
1481 return dequeue_event (&command_event_queue, &command_event_queue_tail);
|
|
1482 }
|
|
1483
|
|
1484 /* put the event on the typeahead queue, unless
|
|
1485 the event is the quit char, in which case the `QUIT'
|
|
1486 which will occur on the next trip through this loop is
|
|
1487 all the processing we should do - leaving it on the queue
|
|
1488 would cause the quit to be processed twice.
|
|
1489 */
|
|
1490 static void
|
|
1491 enqueue_command_event_1 (Lisp_Object event_to_copy)
|
|
1492 {
|
|
1493 /* do not call check_quit() here. Vquit_flag was set in
|
|
1494 next_event_internal. */
|
|
1495 if (NILP (Vquit_flag))
|
|
1496 enqueue_command_event (Fcopy_event (event_to_copy, Qnil));
|
|
1497 }
|
|
1498
|
|
1499 void
|
|
1500 enqueue_magic_eval_event (void (*fun) (Lisp_Object), Lisp_Object object)
|
|
1501 {
|
|
1502 Lisp_Object event;
|
|
1503
|
|
1504 event = Fmake_event ();
|
|
1505
|
|
1506 XEVENT (event)->event_type = magic_eval_event;
|
|
1507 /* channel for magic_eval events is nil */
|
|
1508 XEVENT (event)->event.magic_eval.internal_function = fun;
|
|
1509 XEVENT (event)->event.magic_eval.object = object;
|
|
1510 enqueue_command_event (event);
|
|
1511 }
|
|
1512
|
20
|
1513 DEFUN ("enqueue-eval-event", Fenqueue_eval_event, 2, 2, 0, /*
|
0
|
1514 Add an eval event to the back of the eval event queue.
|
|
1515 When this event is dispatched, FUNCTION (which should be a function
|
|
1516 of one argument) will be called with OBJECT as its argument.
|
|
1517 See `next-event' for a description of event types and how events
|
|
1518 are received.
|
20
|
1519 */
|
|
1520 (function, object))
|
0
|
1521 {
|
|
1522 Lisp_Object event;
|
|
1523
|
|
1524 event = Fmake_event ();
|
|
1525
|
|
1526 XEVENT (event)->event_type = eval_event;
|
|
1527 /* channel for eval events is nil */
|
|
1528 XEVENT (event)->event.eval.function = function;
|
|
1529 XEVENT (event)->event.eval.object = object;
|
|
1530 enqueue_command_event (event);
|
|
1531
|
|
1532 return event;
|
|
1533 }
|
|
1534
|
|
1535 Lisp_Object
|
|
1536 enqueue_misc_user_event (Lisp_Object channel, Lisp_Object function,
|
|
1537 Lisp_Object object)
|
|
1538 {
|
|
1539 Lisp_Object event;
|
|
1540
|
|
1541 event = Fmake_event ();
|
|
1542
|
|
1543 XEVENT (event)->event_type = misc_user_event;
|
|
1544 XEVENT (event)->channel = channel;
|
|
1545 XEVENT (event)->event.eval.function = function;
|
|
1546 XEVENT (event)->event.eval.object = object;
|
|
1547 enqueue_command_event (event);
|
|
1548
|
|
1549 return event;
|
|
1550 }
|
|
1551
|
|
1552
|
|
1553 /**********************************************************************/
|
|
1554 /* focus-event handling */
|
|
1555 /**********************************************************************/
|
|
1556
|
|
1557 /*
|
|
1558
|
|
1559 Ben's capsule lecture on focus:
|
|
1560
|
|
1561 In FSFmacs `select-frame' never changes the window-manager frame
|
|
1562 focus. All it does is change the "selected frame". This is similar
|
|
1563 to what happens when we call `select-device' or `select-console'.
|
|
1564 Whenever an event comes in (including a keyboard event), its frame is
|
|
1565 selected; therefore, evaluating `select-frame' in *scratch* won't
|
|
1566 cause any effects because the next received event (in the same frame)
|
|
1567 will cause a switch back to the frame displaying *scratch*.
|
|
1568
|
|
1569 Whenever a focus-change event is received from the window manager, it
|
|
1570 generates a `switch-frame' event, which causes the Lisp function
|
|
1571 `handle-switch-frame' to get run. This basically just runs
|
|
1572 `select-frame' (see below, however).
|
|
1573
|
|
1574 In FSFmacs, if you want to have an operation run when a frame is
|
|
1575 selected, you supply an event binding for `switch-frame' (and then
|
|
1576 maybe call `handle-switch-frame', or something ...).
|
|
1577
|
|
1578 In XEmacs, we *do* change the window-manager frame focus as a result
|
|
1579 of `select-frame', but not until the next time an event is received,
|
|
1580 so that a function that momentarily changes the selected frame won't
|
|
1581 cause WM focus flashing. (#### There's something not quite right here;
|
|
1582 this is causing the wrong-cursor-focus problems that you occasionally
|
|
1583 see. But the general idea is correct.) This approach is winning for
|
|
1584 people who use the explicit-focus model, but is trickier to implement.
|
|
1585
|
|
1586 We also don't make the `switch-frame' event visible but instead have
|
|
1587 `select-frame-hook', which is a better approach.
|
|
1588
|
|
1589 There is the problem of surrogate minibuffers, where when we enter the
|
|
1590 minibuffer, you essentially want to temporarily switch the WM focus to
|
|
1591 the frame with the minibuffer, and switch it back when you exit the
|
|
1592 minibuffer.
|
|
1593
|
|
1594 FSFmacs solves this with the crockish `redirect-frame-focus', which
|
|
1595 says "for keyboard events received from FRAME, act like they're
|
|
1596 coming from FOCUS-FRAME". I think what this means is that, when
|
|
1597 a keyboard event comes in and the event manager is about to select the
|
|
1598 event's frame, if that frame has its focus redirected, the redirected-to
|
|
1599 frame is selected instead. That way, if you're in a minibufferless
|
|
1600 frame and enter the minibuffer, then all Lisp functions that run see
|
|
1601 the selected frame as the minibuffer's frame rather than the minibufferless
|
|
1602 frame you came from, so that (e.g.) your typing actually appears in
|
|
1603 the minibuffer's frame and things behave sanely.
|
|
1604
|
|
1605 There's also some weird logic that switches the redirected frame focus
|
|
1606 from one frame to another if Lisp code explicitly calls `select-frame'
|
|
1607 \(but not if `handle-switch-frame' is called), and saves and restores
|
|
1608 the frame focus in window configurations, etc. etc. All of this logic
|
|
1609 is heavily #if 0'd, with lots of comments saying "No, this approach
|
|
1610 doesn't seem to work, so I'm trying this ... is it reasonable?
|
|
1611 Well, I'm not sure ..." that are a red flag indicating crockishness.
|
|
1612
|
|
1613 Because of our way of doing things, we can avoid all this crock.
|
|
1614 Keyboard events never cause a select-frame (who cares what frame
|
|
1615 they're associated with? They come from a console, only). We change
|
|
1616 the actual WM focus to a surrogate minibuffer frame, so we don't have
|
|
1617 to do any internal redirection. In order to get the focus back,
|
|
1618 I took the approach in minibuf.el of just checking to see if the
|
|
1619 frame we moved to is still the selected frame, and move back to the
|
|
1620 old one if so. Conceivably we might have to do the weird "tracking"
|
|
1621 that FSFmacs does when `select-frame' is called, but I don't think
|
|
1622 so. If the selected frame moved from the minibuffer frame, then
|
|
1623 we just leave it there, figuring that someone knows what they're
|
|
1624 doing. Because we don't have any redirection recorded anywhere,
|
|
1625 it's safe to do this, and we don't end up with unwanted redirection.
|
|
1626
|
|
1627 */
|
|
1628
|
|
1629 static void
|
|
1630 run_select_frame_hook (void)
|
|
1631 {
|
|
1632 run_hook (Qselect_frame_hook);
|
|
1633 }
|
|
1634
|
|
1635 static void
|
|
1636 run_deselect_frame_hook (void)
|
|
1637 {
|
|
1638 #if 0 /* unclean! FSF calls this at all sorts of random places,
|
|
1639 including a bunch of places in their mouse.el. If this
|
|
1640 is implemented, it has to be done cleanly. */
|
|
1641 run_hook (Qmouse_leave_buffer_hook); /* #### Correct? It's also
|
|
1642 called in `call-interactively'.
|
|
1643 Does this mean it will be
|
|
1644 called twice? Oh well, FSF
|
|
1645 bug -- FSF calls it in
|
|
1646 `handle-switch-frame',
|
|
1647 which is approximately the
|
|
1648 same as the caller of this
|
|
1649 function. */
|
|
1650 #endif
|
|
1651 run_hook (Qdeselect_frame_hook);
|
|
1652 }
|
|
1653
|
|
1654 /* When select-frame is called, we want to tell the window system that
|
|
1655 the focus should be changed to point to the new frame. However,
|
|
1656 sometimes Lisp functions will temporarily change the selected frame
|
|
1657 (e.g. to call a function that operates on the selected frame),
|
|
1658 and it's annoying if this focus-change happens exactly when
|
|
1659 select-frame is called, because then you get some flickering of the
|
|
1660 window-manager border and perhaps other undesirable results. We
|
|
1661 really only want to change the focus when we're about to retrieve
|
|
1662 an event from the user. To do this, we keep track of the frame
|
|
1663 where the window-manager focus lies on, and just before waiting
|
|
1664 for user events, check the currently selected frame and change
|
|
1665 the focus as necessary. */
|
|
1666
|
|
1667 static void
|
|
1668 investigate_frame_change (void)
|
|
1669 {
|
|
1670 Lisp_Object devcons, concons;
|
|
1671
|
|
1672 /* if the selected frame was changed, change the window-system
|
|
1673 focus to the new frame. We don't do it when select-frame was
|
|
1674 called, to avoid flickering and other unwanted side effects when
|
|
1675 the frame is just changed temporarily. */
|
|
1676 DEVICE_LOOP_NO_BREAK (devcons, concons)
|
|
1677 {
|
|
1678 struct device *d = XDEVICE (XCAR (devcons));
|
|
1679 Lisp_Object sel_frame = DEVICE_SELECTED_FRAME (d);
|
|
1680
|
|
1681 /* You'd think that maybe we should use FRAME_WITH_FOCUS_REAL,
|
|
1682 but that can cause us to end up in an infinite loop focussing
|
|
1683 between two frames. It seems that since the call to `select-frame'
|
|
1684 in emacs_handle_focus_change_final() is based on the _FOR_HOOKS
|
|
1685 value, we need to do so too. */
|
|
1686 if (!NILP (sel_frame) &&
|
72
|
1687 !focus_follows_mouse &&
|
0
|
1688 !EQ (DEVICE_FRAME_THAT_OUGHT_TO_HAVE_FOCUS (d), sel_frame) &&
|
|
1689 !NILP (DEVICE_FRAME_WITH_FOCUS_FOR_HOOKS (d)) &&
|
|
1690 !EQ (DEVICE_FRAME_WITH_FOCUS_FOR_HOOKS (d), sel_frame))
|
|
1691 {
|
|
1692 /* prevent us from issuing the same request more than once */
|
|
1693 DEVICE_FRAME_THAT_OUGHT_TO_HAVE_FOCUS (d) = sel_frame;
|
|
1694 MAYBE_DEVMETH (d, focus_on_frame, (XFRAME (sel_frame)));
|
|
1695 }
|
|
1696 }
|
|
1697 }
|
|
1698
|
|
1699 static Lisp_Object
|
|
1700 cleanup_after_missed_defocusing (Lisp_Object frame)
|
|
1701 {
|
|
1702 if (FRAMEP (frame) && FRAME_LIVE_P (XFRAME (frame)))
|
|
1703 Fselect_frame (frame);
|
|
1704 return Qnil;
|
|
1705 }
|
|
1706
|
|
1707 void
|
|
1708 emacs_handle_focus_change_preliminary (Lisp_Object frame_inp_and_dev)
|
|
1709 {
|
|
1710 Lisp_Object frame = Fcar (frame_inp_and_dev);
|
|
1711 Lisp_Object device = Fcar (Fcdr (frame_inp_and_dev));
|
|
1712 int in_p = !NILP (Fcdr (Fcdr (frame_inp_and_dev)));
|
|
1713 struct device *d;
|
|
1714
|
|
1715 if (!DEVICE_LIVE_P (XDEVICE (device)))
|
|
1716 return;
|
|
1717 else
|
|
1718 d = XDEVICE (device);
|
|
1719
|
|
1720 /* Any received focus-change notifications render invalid any
|
|
1721 pending focus-change requests. */
|
|
1722 DEVICE_FRAME_THAT_OUGHT_TO_HAVE_FOCUS (d) = Qnil;
|
|
1723 if (in_p)
|
|
1724 {
|
|
1725 Lisp_Object focus_frame;
|
|
1726
|
|
1727 if (!FRAME_LIVE_P (XFRAME (frame)))
|
|
1728 return;
|
|
1729 else
|
|
1730 focus_frame = DEVICE_FRAME_WITH_FOCUS_REAL (d);
|
|
1731
|
|
1732 /* Mark the minibuffer as changed to make sure it gets updated
|
|
1733 properly if the echo area is active. */
|
|
1734 MARK_WINDOWS_CHANGED (XWINDOW (FRAME_MINIBUF_WINDOW (XFRAME (frame))));
|
|
1735
|
|
1736 if (FRAMEP (focus_frame) && !EQ (frame, focus_frame))
|
|
1737 {
|
|
1738 /* Oops, we missed a focus-out event. */
|
|
1739 DEVICE_FRAME_WITH_FOCUS_REAL (d) = Qnil;
|
|
1740 redisplay_redraw_cursor (XFRAME (focus_frame), 1);
|
|
1741 }
|
|
1742 DEVICE_FRAME_WITH_FOCUS_REAL (d) = frame;
|
|
1743 if (!EQ (frame, focus_frame))
|
|
1744 {
|
|
1745 redisplay_redraw_cursor (XFRAME (frame), 1);
|
|
1746 }
|
|
1747 }
|
|
1748 else
|
|
1749 {
|
|
1750 /* We ignore the frame reported in the event. If it's different
|
|
1751 from where we think the focus was, oh well -- we messed up.
|
|
1752 Nonetheless, we pretend we were right, for sensible behavior. */
|
|
1753 frame = DEVICE_FRAME_WITH_FOCUS_REAL (d);
|
|
1754 if (!NILP (frame))
|
|
1755 {
|
|
1756 DEVICE_FRAME_WITH_FOCUS_REAL (d) = Qnil;
|
|
1757
|
|
1758 if (FRAME_LIVE_P (XFRAME (frame)))
|
|
1759 redisplay_redraw_cursor (XFRAME (frame), 1);
|
|
1760 }
|
|
1761 }
|
|
1762 }
|
|
1763
|
|
1764 /* Called from the window-system-specific code when we receive a
|
|
1765 notification that the focus lies on a particular frame.
|
|
1766 Argument is a cons: (frame . (device . in-p)) where in-p is non-nil
|
|
1767 for focus-in.
|
|
1768 */
|
|
1769 void
|
|
1770 emacs_handle_focus_change_final (Lisp_Object frame_inp_and_dev)
|
|
1771 {
|
|
1772 Lisp_Object frame = Fcar (frame_inp_and_dev);
|
|
1773 Lisp_Object device = Fcar (Fcdr (frame_inp_and_dev));
|
|
1774 int in_p = !NILP (Fcdr (Fcdr (frame_inp_and_dev)));
|
|
1775 struct device *d;
|
|
1776 int count;
|
|
1777
|
|
1778 if (!DEVICE_LIVE_P (XDEVICE (device)))
|
|
1779 return;
|
|
1780 else
|
|
1781 d = XDEVICE (device);
|
|
1782
|
|
1783 if (in_p)
|
|
1784 {
|
|
1785 Lisp_Object focus_frame;
|
|
1786
|
|
1787 if (!FRAME_LIVE_P (XFRAME (frame)))
|
|
1788 return;
|
|
1789 else
|
|
1790 focus_frame = DEVICE_FRAME_WITH_FOCUS_FOR_HOOKS (d);
|
|
1791
|
|
1792 DEVICE_FRAME_WITH_FOCUS_FOR_HOOKS (d) = frame;
|
|
1793 if (FRAMEP (focus_frame) && !EQ (frame, focus_frame))
|
|
1794 {
|
|
1795 /* Oops, we missed a focus-out event. */
|
|
1796 Fselect_frame (focus_frame);
|
|
1797 /* Do an unwind-protect in case an error occurs in
|
|
1798 the deselect-frame-hook */
|
|
1799 count = specpdl_depth ();
|
|
1800 record_unwind_protect (cleanup_after_missed_defocusing, frame);
|
|
1801 run_deselect_frame_hook ();
|
|
1802 unbind_to (count, Qnil);
|
|
1803 /* the cleanup method changed the focus frame to nil, so
|
|
1804 we need to reflect this */
|
|
1805 focus_frame = Qnil;
|
|
1806 }
|
|
1807 else
|
|
1808 Fselect_frame (frame);
|
|
1809 if (!EQ (frame, focus_frame))
|
|
1810 run_select_frame_hook ();
|
|
1811 }
|
|
1812 else
|
|
1813 {
|
|
1814 /* We ignore the frame reported in the event. If it's different
|
|
1815 from where we think the focus was, oh well -- we messed up.
|
|
1816 Nonetheless, we pretend we were right, for sensible behavior. */
|
|
1817 frame = DEVICE_FRAME_WITH_FOCUS_FOR_HOOKS (d);
|
|
1818 if (!NILP (frame))
|
|
1819 {
|
|
1820 DEVICE_FRAME_WITH_FOCUS_FOR_HOOKS (d) = Qnil;
|
|
1821 run_deselect_frame_hook ();
|
|
1822 }
|
|
1823 }
|
|
1824 }
|
|
1825
|
|
1826
|
|
1827 /**********************************************************************/
|
|
1828 /* retrieving the next event */
|
|
1829 /**********************************************************************/
|
|
1830
|
|
1831 static int in_single_console;
|
|
1832
|
|
1833 /* #### These functions don't currently do anything. */
|
|
1834 void
|
|
1835 single_console_state (void)
|
|
1836 {
|
|
1837 in_single_console = 1;
|
|
1838 }
|
|
1839
|
|
1840 void
|
|
1841 any_console_state (void)
|
|
1842 {
|
|
1843 in_single_console = 0;
|
|
1844 }
|
|
1845
|
|
1846 int
|
|
1847 in_single_console_state (void)
|
|
1848 {
|
|
1849 return in_single_console;
|
|
1850 }
|
|
1851
|
|
1852 /* the number of keyboard characters read. callint.c wants this.
|
|
1853 */
|
|
1854 Charcount num_input_chars;
|
|
1855
|
|
1856 static void
|
86
|
1857 next_event_internal (Lisp_Object target_event, int allow_queued,
|
|
1858 int allow_deferred)
|
0
|
1859 {
|
|
1860 struct gcpro gcpro1;
|
|
1861 /* QUIT; This is incorrect - the caller must do this because some
|
|
1862 callers (ie, Fnext_event()) do not want to QUIT. */
|
|
1863
|
|
1864 assert (NILP (XEVENT_NEXT (target_event)));
|
|
1865
|
|
1866 GCPRO1 (target_event);
|
|
1867 investigate_frame_change ();
|
|
1868
|
|
1869 if (allow_queued && !NILP (command_event_queue))
|
|
1870 {
|
|
1871 Lisp_Object event = dequeue_command_event ();
|
|
1872 Fcopy_event (event, target_event);
|
|
1873 Fdeallocate_event (event);
|
|
1874 #ifdef DEBUG_XEMACS
|
|
1875 if (debug_emacs_events)
|
|
1876 {
|
|
1877 write_c_string ("(command event queue) ",
|
|
1878 Qexternal_debugging_output);
|
|
1879 print_internal (target_event, Qexternal_debugging_output, 1);
|
|
1880 write_c_string ("\n", Qexternal_debugging_output);
|
|
1881 }
|
|
1882 #endif
|
|
1883 }
|
86
|
1884 else if (allow_deferred && !NILP (process_event_queue))
|
|
1885 {
|
|
1886 Lisp_Object event = dequeue_process_event ();
|
|
1887 Fcopy_event (event, target_event);
|
|
1888 Fdeallocate_event (event);
|
|
1889 #ifdef DEBUG_EMACS
|
|
1890 if (debug_emacs_events)
|
|
1891 {
|
|
1892 write_c_string ("(process event queue) ",
|
|
1893 Qexternal_debugging_output);
|
|
1894 print_internal (target_event, Qexternal_debugging_output, 1);
|
|
1895 write_c_string ("\n", Qexternal_debugging_output);
|
|
1896 }
|
|
1897 #endif
|
|
1898 }
|
0
|
1899 else
|
|
1900 {
|
|
1901 struct Lisp_Event *e = XEVENT (target_event);
|
|
1902
|
|
1903 /* The command_event_queue was empty. Wait for an event. */
|
|
1904 event_stream_next_event (e);
|
|
1905 /* If this was a timeout, then we need to extract some data
|
|
1906 out of the returned closure and might need to resignal
|
|
1907 it. */
|
|
1908 if (e->event_type == timeout_event)
|
|
1909 {
|
|
1910 Lisp_Object tristan, isolde;
|
|
1911
|
|
1912 e->event.timeout.id_number =
|
|
1913 event_stream_resignal_wakeup (e->event.timeout.interval_id, 0,
|
|
1914 &tristan, &isolde);
|
|
1915
|
|
1916 e->event.timeout.function = tristan;
|
|
1917 e->event.timeout.object = isolde;
|
|
1918 #ifdef DEBUG_XEMACS
|
|
1919 /* next_event_internal() doesn't print out timeout events
|
|
1920 because of the extra info we just set. */
|
|
1921 if (debug_emacs_events)
|
|
1922 {
|
|
1923 print_internal (target_event, Qexternal_debugging_output, 1);
|
|
1924 write_c_string ("\n", Qexternal_debugging_output);
|
|
1925 }
|
|
1926 #endif
|
|
1927 }
|
|
1928
|
|
1929 /* If we read a ^G, then set quit-flag but do not discard the ^G.
|
|
1930 The callers of next_event_internal() will do one of two things:
|
|
1931
|
|
1932 -- set Vquit_flag to Qnil. (next-event does this.) This will
|
|
1933 cause the ^G to be treated as a normal keystroke.
|
|
1934 -- not change Vquit_flag but attempt to enqueue the ^G, at
|
|
1935 which point it will be discarded. The next time QUIT is
|
|
1936 called, it will notice that Vquit_flag was set.
|
|
1937
|
|
1938 */
|
|
1939 if (e->event_type == key_press_event &&
|
|
1940 event_matches_key_specifier_p
|
|
1941 (e, make_char (CONSOLE_QUIT_CHAR (XCONSOLE (EVENT_CHANNEL (e))))))
|
|
1942 {
|
|
1943 Vquit_flag = Qt;
|
|
1944 }
|
|
1945 }
|
|
1946
|
|
1947 UNGCPRO;
|
|
1948 }
|
|
1949
|
|
1950 static void
|
|
1951 run_pre_idle_hook (void)
|
|
1952 {
|
|
1953 if (!NILP (Vpre_idle_hook)
|
|
1954 && !detect_input_pending ())
|
|
1955 safe_run_hook_trapping_errors
|
|
1956 ("Error in `pre-idle-hook' (setting hook to nil)",
|
|
1957 Qpre_idle_hook, 1);
|
|
1958 }
|
|
1959
|
|
1960 static void push_this_command_keys (Lisp_Object event);
|
|
1961 static void push_recent_keys (Lisp_Object event);
|
|
1962 static void dribble_out_event (Lisp_Object event);
|
|
1963 static void execute_internal_event (Lisp_Object event);
|
|
1964
|
20
|
1965 DEFUN ("next-event", Fnext_event, 0, 2, 0, /*
|
0
|
1966 Return the next available event.
|
|
1967 Pass this object to `dispatch-event' to handle it.
|
|
1968 In most cases, you will want to use `next-command-event', which returns
|
|
1969 the next available \"user\" event (i.e. keypress, button-press,
|
|
1970 button-release, or menu selection) instead of this function.
|
|
1971
|
|
1972 If EVENT is non-nil, it should be an event object and will be filled in
|
|
1973 and returned; otherwise a new event object will be created and returned.
|
|
1974 If PROMPT is non-nil, it should be a string and will be displayed in the
|
|
1975 echo area while this function is waiting for an event.
|
|
1976
|
|
1977 The next available event will be
|
|
1978
|
|
1979 -- any events in `unread-command-events' or `unread-command-event'; else
|
|
1980 -- the next event in the currently executing keyboard macro, if any; else
|
|
1981 -- an event queued by `enqueue-eval-event', if any; else
|
|
1982 -- the next available event from the window system or terminal driver.
|
|
1983
|
|
1984 In the last case, this function will block until an event is available.
|
|
1985
|
|
1986 The returned event will be one of the following types:
|
|
1987
|
|
1988 -- a key-press event.
|
|
1989 -- a button-press or button-release event.
|
|
1990 -- a misc-user-event, meaning the user selected an item on a menu or used
|
|
1991 the scrollbar.
|
|
1992 -- a process event, meaning that output from a subprocess is available.
|
|
1993 -- a timeout event, meaning that a timeout has elapsed.
|
|
1994 -- an eval event, which simply causes a function to be executed when the
|
|
1995 event is dispatched. Eval events are generated by `enqueue-eval-event'
|
|
1996 or by certain other conditions happening.
|
|
1997 -- a magic event, indicating that some window-system-specific event
|
|
1998 happened (such as an focus-change notification) that must be handled
|
|
1999 synchronously with other events. `dispatch-event' knows what to do with
|
|
2000 these events.
|
20
|
2001 */
|
|
2002 (event, prompt))
|
0
|
2003 {
|
70
|
2004 /* This function can GC */
|
0
|
2005 /* #### We start out using the selected console before an event
|
|
2006 is received, for echoing the partially completed command.
|
|
2007 This is most definitely wrong -- there needs to be a separate
|
|
2008 echo area for each console! */
|
|
2009 struct console *con = XCONSOLE (Vselected_console);
|
|
2010 struct command_builder *command_builder =
|
|
2011 XCOMMAND_BUILDER (con->command_builder);
|
|
2012 int store_this_key = 0;
|
|
2013 struct gcpro gcpro1;
|
|
2014 GCPRO1 (event);
|
70
|
2015
|
0
|
2016 /* DO NOT do QUIT anywhere within this function or the functions it calls.
|
|
2017 We want to read the ^G as an event. */
|
|
2018
|
|
2019 if (NILP (event))
|
|
2020 event = Fmake_event ();
|
|
2021 else
|
|
2022 CHECK_LIVE_EVENT (event);
|
|
2023
|
|
2024 if (!NILP (prompt))
|
|
2025 {
|
|
2026 Bytecount len;
|
|
2027 CHECK_STRING (prompt);
|
|
2028
|
14
|
2029 len = XSTRING_LENGTH (prompt);
|
0
|
2030 if (command_builder->echo_buf_length < len)
|
|
2031 len = command_builder->echo_buf_length - 1;
|
14
|
2032 memcpy (command_builder->echo_buf, XSTRING_DATA (prompt), len);
|
0
|
2033 command_builder->echo_buf[len] = 0;
|
|
2034 command_builder->echo_buf_index = len;
|
|
2035 echo_area_message (XFRAME (CONSOLE_SELECTED_FRAME (con)),
|
|
2036 command_builder->echo_buf,
|
|
2037 Qnil, 0,
|
|
2038 command_builder->echo_buf_index,
|
|
2039 Qcommand);
|
|
2040 }
|
|
2041
|
|
2042 start_over_and_avoid_hosage:
|
|
2043
|
|
2044 /* If there is something in unread-command-events, simply return it.
|
|
2045 But do some error checking to make sure the user hasn't put something
|
|
2046 in the unread-command-events that they shouldn't have.
|
|
2047 This does not update this-command-keys and recent-keys.
|
|
2048 */
|
|
2049 if (!NILP (Vunread_command_events))
|
|
2050 {
|
|
2051 if (!CONSP (Vunread_command_events))
|
|
2052 {
|
|
2053 Vunread_command_events = Qnil;
|
|
2054 signal_error (Qwrong_type_argument,
|
|
2055 list3 (Qconsp, Vunread_command_events,
|
|
2056 Qunread_command_events));
|
|
2057 }
|
|
2058 else
|
|
2059 {
|
|
2060 Lisp_Object e = XCAR (Vunread_command_events);
|
|
2061 Vunread_command_events = XCDR (Vunread_command_events);
|
|
2062 if (!EVENTP (e) || !command_event_p (e))
|
|
2063 signal_error (Qwrong_type_argument,
|
|
2064 list3 (Qcommand_event_p, e, Qunread_command_events));
|
|
2065 redisplay ();
|
|
2066 if (!EQ (e, event))
|
|
2067 Fcopy_event (e, event);
|
|
2068 #ifdef DEBUG_XEMACS
|
|
2069 if (debug_emacs_events)
|
|
2070 {
|
|
2071 write_c_string ("(unread-command-events) ",
|
|
2072 Qexternal_debugging_output);
|
|
2073 print_internal (event, Qexternal_debugging_output, 1);
|
|
2074 write_c_string ("\n", Qexternal_debugging_output);
|
|
2075 }
|
|
2076 #endif
|
|
2077 }
|
|
2078 }
|
|
2079
|
|
2080 /* Do similar for unread-command-event (obsoleteness support).
|
|
2081 */
|
|
2082 else if (!NILP (Vunread_command_event))
|
|
2083 {
|
|
2084 Lisp_Object e = Vunread_command_event;
|
|
2085 Vunread_command_event = Qnil;
|
|
2086
|
|
2087 if (!EVENTP (e) || !command_event_p (e))
|
|
2088 {
|
|
2089 signal_error (Qwrong_type_argument,
|
|
2090 list3 (Qeventp, e, Qunread_command_event));
|
|
2091 }
|
|
2092 if (!EQ (e, event))
|
|
2093 Fcopy_event (e, event);
|
|
2094 redisplay ();
|
|
2095 #ifdef DEBUG_XEMACS
|
|
2096 if (debug_emacs_events)
|
|
2097 {
|
|
2098 write_c_string ("(unread-command-event) ",
|
|
2099 Qexternal_debugging_output);
|
|
2100 print_internal (event, Qexternal_debugging_output, 1);
|
|
2101 write_c_string ("\n", Qexternal_debugging_output);
|
|
2102 }
|
|
2103 #endif
|
|
2104 }
|
|
2105
|
|
2106 /* If we're executing a keyboard macro, take the next event from that,
|
|
2107 and update this-command-keys and recent-keys.
|
|
2108 Note that the unread-command-events take precedence over kbd macros.
|
|
2109 */
|
|
2110 else
|
|
2111 {
|
|
2112 if (!NILP (Vexecuting_macro))
|
|
2113 {
|
|
2114 redisplay ();
|
|
2115 pop_kbd_macro_event (event); /* This throws past us at
|
|
2116 end-of-macro. */
|
|
2117 store_this_key = 1;
|
|
2118 #ifdef DEBUG_XEMACS
|
|
2119 if (debug_emacs_events)
|
|
2120 {
|
|
2121 write_c_string ("(keyboard macro) ",
|
|
2122 Qexternal_debugging_output);
|
|
2123 print_internal (event, Qexternal_debugging_output, 1);
|
|
2124 write_c_string ("\n", Qexternal_debugging_output);
|
|
2125 }
|
|
2126 #endif
|
|
2127 }
|
|
2128 /* Otherwise, read a real event, possibly from the
|
|
2129 command_event_queue, and update this-command-keys and
|
|
2130 recent-keys. */
|
|
2131 else
|
|
2132 {
|
|
2133 run_pre_idle_hook ();
|
|
2134 redisplay ();
|
86
|
2135 next_event_internal (event, 1, 1);
|
0
|
2136 Vquit_flag = Qnil; /* Read C-g as an event. */
|
|
2137 store_this_key = 1;
|
|
2138 }
|
|
2139 }
|
|
2140
|
|
2141 status_notify (); /* Notice process change */
|
|
2142
|
|
2143 #ifdef C_ALLOCA
|
|
2144 alloca (0); /* Cause a garbage collection now */
|
|
2145 /* Since we can free the most stuff here
|
|
2146 * (since this is typically called from
|
|
2147 * the command-loop top-level). */
|
|
2148 #endif /* C_ALLOCA */
|
|
2149
|
|
2150 if (object_dead_p (XEVENT (event)->channel))
|
|
2151 /* event_console_or_selected may crash if the channel is dead.
|
|
2152 Best just to eat it and get the next event. */
|
|
2153 goto start_over_and_avoid_hosage;
|
|
2154
|
|
2155 /* OK, now we can stop the selected-console kludge and use the
|
|
2156 actual console from the event. */
|
|
2157 con = event_console_or_selected (event);
|
|
2158 command_builder = XCOMMAND_BUILDER (con->command_builder);
|
|
2159
|
|
2160 switch (XEVENT_TYPE (event))
|
|
2161 {
|
|
2162 default:
|
|
2163 goto RETURN;
|
|
2164 case button_release_event:
|
|
2165 case misc_user_event:
|
|
2166 goto EXECUTE_KEY;
|
|
2167 case button_press_event: /* key or mouse input can trigger prompting */
|
|
2168 goto STORE_AND_EXECUTE_KEY;
|
|
2169 case key_press_event: /* any key input can trigger autosave */
|
|
2170 break;
|
|
2171 }
|
|
2172
|
|
2173 maybe_do_auto_save ();
|
|
2174 num_input_chars++;
|
|
2175 STORE_AND_EXECUTE_KEY:
|
|
2176 if (store_this_key)
|
|
2177 {
|
|
2178 echo_key_event (command_builder, event);
|
|
2179 }
|
|
2180
|
|
2181 EXECUTE_KEY:
|
|
2182 /* Store the last-input-event. The semantics of this is that it is
|
|
2183 the thing most recently returned by next-command-event. It need
|
|
2184 not have come from the keyboard or a keyboard macro, it may have
|
|
2185 come from unread-command-events. It's always a command-event (a
|
|
2186 key, click, or menu selection), never a motion or process event.
|
|
2187 */
|
|
2188 if (!EVENTP (Vlast_input_event))
|
|
2189 Vlast_input_event = Fmake_event ();
|
|
2190 if (XEVENT_TYPE (Vlast_input_event) == dead_event)
|
|
2191 {
|
|
2192 Vlast_input_event = Fmake_event ();
|
|
2193 error ("Someone deallocated last-input-event!");
|
|
2194 }
|
|
2195 if (! EQ (event, Vlast_input_event))
|
|
2196 Fcopy_event (event, Vlast_input_event);
|
|
2197
|
|
2198 /* last-input-char and last-input-time are derived from
|
|
2199 last-input-event.
|
|
2200 Note that last-input-char will never have its high-bit set, in an
|
|
2201 effort to sidestep the ambiguity between M-x and oslash.
|
|
2202 */
|
|
2203 Vlast_input_char = Fevent_to_character (Vlast_input_event,
|
|
2204 Qnil, Qnil, Qnil);
|
|
2205 {
|
|
2206 EMACS_TIME t;
|
|
2207 EMACS_GET_TIME (t);
|
|
2208 if (!CONSP (Vlast_input_time))
|
|
2209 Vlast_input_time = Fcons (Qnil, Qnil);
|
|
2210 XCAR (Vlast_input_time)
|
|
2211 = make_int ((EMACS_SECS (t) >> 16) & 0xffff);
|
|
2212 XCDR (Vlast_input_time)
|
|
2213 = make_int ((EMACS_SECS (t) >> 0) & 0xffff);
|
|
2214 }
|
|
2215
|
|
2216 /* If this key came from the keyboard or from a keyboard macro, then
|
|
2217 it goes into the recent-keys and this-command-keys vectors.
|
|
2218 If this key came from the keyboard, and we're defining a keyboard
|
|
2219 macro, then it goes into the macro.
|
|
2220 */
|
|
2221 if (store_this_key)
|
|
2222 {
|
|
2223 push_this_command_keys (event);
|
|
2224 push_recent_keys (event);
|
|
2225 dribble_out_event (event);
|
|
2226 if (!NILP (con->defining_kbd_macro) && NILP (Vexecuting_macro))
|
|
2227 {
|
|
2228 if (!EVENTP (command_builder->current_events))
|
|
2229 finalize_kbd_macro_chars (con);
|
|
2230 store_kbd_macro_event (event);
|
|
2231 }
|
|
2232 }
|
|
2233 /* If this is the help char and there is a help form, then execute the
|
|
2234 help form and swallow this character. This is the only place where
|
|
2235 calling Fnext_event() can cause arbitrary lisp code to run. Note
|
|
2236 that execute_help_form() calls Fnext_command_event(), which calls
|
|
2237 this function, as well as Fdispatch_event.
|
|
2238 */
|
|
2239 if (!NILP (Vhelp_form) &&
|
|
2240 event_matches_key_specifier_p (XEVENT (event), Vhelp_char))
|
|
2241 execute_help_form (command_builder, event);
|
|
2242
|
|
2243 RETURN:
|
|
2244 UNGCPRO;
|
|
2245 return (event);
|
|
2246 }
|
|
2247
|
20
|
2248 DEFUN ("next-command-event", Fnext_command_event, 0, 2, 0, /*
|
0
|
2249 Return the next available \"user\" event.
|
|
2250 Pass this object to `dispatch-event' to handle it.
|
|
2251
|
|
2252 If EVENT is non-nil, it should be an event object and will be filled in
|
|
2253 and returned; otherwise a new event object will be created and returned.
|
|
2254 If PROMPT is non-nil, it should be a string and will be displayed in the
|
|
2255 echo area while this function is waiting for an event.
|
|
2256
|
|
2257 The event returned will be a keyboard, mouse press, or mouse release event.
|
|
2258 If there are non-command events available (mouse motion, sub-process output,
|
|
2259 etc) then these will be executed (with `dispatch-event') and discarded. This
|
|
2260 function is provided as a convenience; it is equivalent to the lisp code
|
|
2261
|
|
2262 (while (progn
|
|
2263 (next-event event prompt)
|
|
2264 (not (or (key-press-event-p event)
|
|
2265 (button-press-event-p event)
|
|
2266 (button-release-event-p event)
|
|
2267 (misc-user-event-p event))))
|
|
2268 (dispatch-event event))
|
|
2269
|
20
|
2270 */
|
|
2271 (event, prompt))
|
0
|
2272 {
|
|
2273 /* This function can GC */
|
|
2274 struct gcpro gcpro1;
|
|
2275 GCPRO1 (event);
|
|
2276 maybe_echo_keys (XCOMMAND_BUILDER
|
|
2277 (XCONSOLE (Vselected_console)->
|
|
2278 command_builder), 0); /* #### This sucks bigtime */
|
|
2279 for (;;)
|
|
2280 {
|
|
2281 event = Fnext_event (event, prompt);
|
|
2282 if (command_event_p (event))
|
|
2283 break;
|
|
2284 else
|
|
2285 execute_internal_event (event);
|
|
2286 }
|
|
2287 UNGCPRO;
|
|
2288 return (event);
|
|
2289 }
|
|
2290
|
|
2291 static void
|
|
2292 reset_current_events (struct command_builder *command_builder)
|
|
2293 {
|
|
2294 Lisp_Object event = command_builder->current_events;
|
|
2295 reset_command_builder_event_chain (command_builder);
|
|
2296 if (EVENTP (event))
|
|
2297 deallocate_event_chain (event);
|
|
2298 }
|
|
2299
|
20
|
2300 DEFUN ("discard-input", Fdiscard_input, 0, 0, 0, /*
|
0
|
2301 Discard any pending \"user\" events.
|
|
2302 Also cancel any kbd macro being defined.
|
|
2303 A user event is a key press, button press, button release, or
|
|
2304 \"other-user\" event (menu selection or scrollbar action).
|
20
|
2305 */
|
|
2306 ())
|
0
|
2307 {
|
|
2308 /* This throws away user-input on the queue, but doesn't process any
|
|
2309 events. Calling dispatch_event() here leads to a race condition.
|
|
2310 */
|
|
2311 Lisp_Object event = Fmake_event ();
|
|
2312 Lisp_Object head = Qnil, tail = Qnil;
|
|
2313 Lisp_Object oiq = Vinhibit_quit;
|
|
2314 struct gcpro gcpro1, gcpro2;
|
|
2315 /* #### not correct here with Vselected_console? Should
|
|
2316 discard-input take a console argument, or maybe map over
|
|
2317 all consoles? */
|
|
2318 struct console *con = XCONSOLE (Vselected_console);
|
|
2319
|
|
2320 /* next_event_internal() can cause arbitrary Lisp code to be evalled */
|
|
2321 GCPRO2 (event, oiq);
|
|
2322 Vinhibit_quit = Qt;
|
|
2323 /* If a macro was being defined then we have to mark the modeline
|
|
2324 has changed to ensure that it gets updated correctly. */
|
|
2325 if (!NILP (con->defining_kbd_macro))
|
|
2326 MARK_MODELINE_CHANGED;
|
|
2327 con->defining_kbd_macro = Qnil;
|
|
2328 reset_current_events (XCOMMAND_BUILDER (con->command_builder));
|
|
2329
|
|
2330 while (!NILP (command_event_queue)
|
|
2331 || event_stream_event_pending_p (1))
|
|
2332 {
|
|
2333 /* This will take stuff off the command_event_queue, or read it
|
|
2334 from the event_stream, but it will not block.
|
|
2335 */
|
86
|
2336 next_event_internal (event, 1, 1);
|
0
|
2337 Vquit_flag = Qnil; /* Treat C-g as a user event (ignore it).
|
|
2338 It is vitally important that we reset
|
|
2339 Vquit_flag here. Otherwise, if we're
|
|
2340 reading from a TTY console,
|
|
2341 maybe_read_quit_event() will notice
|
|
2342 that C-g has been set and send us
|
|
2343 another C-g. That will cause us
|
|
2344 to get right back here, and read
|
|
2345 another C-g, ad infinitum ... */
|
|
2346
|
|
2347 /* If the event is a user event, ignore it. */
|
|
2348 if (!command_event_p (event))
|
|
2349 {
|
|
2350 /* Otherwise, chain the event onto our list of events not to ignore,
|
|
2351 and keep reading until the queue is empty. This does not mean
|
|
2352 that if a subprocess is generating an infinite amount of output,
|
|
2353 we will never terminate (*provided* that the behavior of
|
|
2354 next_event_cb() is correct -- see the comment in events.h),
|
|
2355 because this loop ends as soon as there are no more user events
|
|
2356 on the command_event_queue or event_stream.
|
|
2357 */
|
|
2358 enqueue_event (Fcopy_event (event, Qnil), &head, &tail);
|
|
2359 }
|
|
2360 }
|
|
2361
|
|
2362 if (!NILP (command_event_queue) || !NILP (command_event_queue_tail))
|
|
2363 abort ();
|
|
2364
|
|
2365 /* Now tack our chain of events back on to the front of the queue.
|
|
2366 Actually, since the queue is now drained, we can just replace it.
|
|
2367 The effect of this will be that we have deleted all user events
|
|
2368 from the input stream without changing the relative ordering of
|
|
2369 any other events. (Some events may have been taken from the
|
|
2370 event_stream and added to the command_event_queue, however.)
|
|
2371
|
|
2372 At this time, the command_event_queue will contain only eval_events.
|
|
2373 */
|
|
2374
|
|
2375 command_event_queue = head;
|
|
2376 command_event_queue_tail = tail;
|
|
2377
|
|
2378 Fdeallocate_event (event);
|
|
2379 UNGCPRO;
|
|
2380
|
|
2381 Vinhibit_quit = oiq;
|
|
2382 return Qnil;
|
|
2383 }
|
|
2384
|
|
2385
|
|
2386 /**********************************************************************/
|
|
2387 /* pausing until an action occurs */
|
|
2388 /**********************************************************************/
|
|
2389
|
|
2390 /* #### Is (accept-process-output nil 3) supposed to be like (sleep-for 3)?
|
|
2391 */
|
|
2392
|
20
|
2393 DEFUN ("accept-process-output", Faccept_process_output, 0, 3, 0, /*
|
0
|
2394 Allow any pending output from subprocesses to be read by Emacs.
|
|
2395 It is read into the process' buffers or given to their filter functions.
|
|
2396 Non-nil arg PROCESS means do not return until some output has been received
|
86
|
2397 from PROCESS. Nil arg PROCESS means do not return until some output has
|
|
2398 been received from any process.
|
0
|
2399 If the second arg is non-nil, it is the maximum number of seconds to wait:
|
|
2400 this function will return after that much time even if no input has arrived
|
|
2401 from PROCESS. This argument may be a float, meaning wait some fractional
|
|
2402 part of a second.
|
|
2403 If the third arg is non-nil, it is a number of milliseconds that is added
|
|
2404 to the second arg. (This exists only for compatibility.)
|
|
2405 Return non-nil iff we received any output before the timeout expired.
|
20
|
2406 */
|
|
2407 (process, timeout_secs, timeout_msecs))
|
0
|
2408 {
|
|
2409 /* This function can GC */
|
|
2410 struct gcpro gcpro1, gcpro2;
|
|
2411 Lisp_Object event = Qnil;
|
|
2412 Lisp_Object result = Qnil;
|
|
2413 int timeout_id;
|
|
2414 int timeout_enabled = 0;
|
86
|
2415 int done = 0;
|
0
|
2416 struct buffer *old_buffer = current_buffer;
|
30
|
2417
|
0
|
2418 /* We preserve the current buffer but nothing else. If a focus
|
|
2419 change alters the selected window then the top level event loop
|
|
2420 will eventually alter current_buffer to match. In the mean time
|
|
2421 we don't want to mess up whatever called this function. */
|
|
2422
|
|
2423 if (!NILP (process))
|
|
2424 CHECK_PROCESS (process);
|
|
2425
|
|
2426 GCPRO2 (event, process);
|
|
2427
|
86
|
2428 if (!NILP (timeout_secs) || !NILP (timeout_msecs))
|
0
|
2429 {
|
|
2430 unsigned long msecs = 0;
|
|
2431 if (!NILP (timeout_secs))
|
|
2432 msecs = lisp_number_to_milliseconds (timeout_secs, 1);
|
|
2433 if (!NILP (timeout_msecs))
|
|
2434 {
|
|
2435 CHECK_NATNUM (timeout_msecs);
|
|
2436 msecs += XINT (timeout_msecs);
|
|
2437 }
|
|
2438 if (msecs)
|
|
2439 {
|
|
2440 timeout_id = event_stream_generate_wakeup (msecs, 0, Qnil, Qnil, 0);
|
|
2441 timeout_enabled = 1;
|
|
2442 }
|
|
2443 }
|
|
2444
|
|
2445 event = Fmake_event ();
|
|
2446
|
86
|
2447 while (!done &&
|
|
2448 ((NILP (process) && timeout_enabled) ||
|
|
2449 (NILP (process) && event_stream_event_pending_p (0)) ||
|
|
2450 (!NILP (process))))
|
0
|
2451 /* Calling detect_input_pending() is the wrong thing here, because
|
|
2452 that considers the Vunread_command_events and command_event_queue.
|
|
2453 We don't need to look at the command_event_queue because we are
|
|
2454 only interested in process events, which don't go on that. In
|
|
2455 fact, we can't read from it anyway, because we put stuff on it.
|
|
2456
|
|
2457 Note that event_stream->event_pending_p must be called in such
|
|
2458 a way that it says whether any events *of any kind* are ready,
|
|
2459 not just user events, or (accept-process-output nil) will fail
|
|
2460 to dispatch any process events that may be on the queue. It is
|
|
2461 not clear to me that this is important, because the top-level
|
|
2462 loop will process it, and I don't think that there is ever a
|
|
2463 time when one calls accept-process-output with a nil argument
|
|
2464 and really need the processes to be handled. */
|
|
2465 {
|
74
|
2466 /* If our timeout has arrived, we move along. */
|
82
|
2467 if (timeout_enabled && !event_stream_wakeup_pending_p (timeout_id, 0))
|
74
|
2468 {
|
|
2469 timeout_enabled = 0;
|
86
|
2470 done = 1; /* We're done. */
|
|
2471 continue; /* Don't call next_event_internal */
|
74
|
2472 }
|
|
2473
|
0
|
2474 QUIT; /* next_event_internal() does not QUIT, so check for ^G
|
|
2475 before reading output from the process - this makes it
|
|
2476 less likely that the filter will actually be aborted.
|
|
2477 */
|
|
2478
|
86
|
2479 next_event_internal (event, 0, 1);
|
0
|
2480 /* If C-g was pressed while we were waiting, Vquit_flag got
|
|
2481 set and next_event_internal() also returns C-g. When
|
|
2482 we enqueue the C-g below, it will get discarded. The
|
|
2483 next time through, QUIT will be called and will signal a quit. */
|
|
2484 switch (XEVENT_TYPE (event))
|
|
2485 {
|
|
2486 case process_event:
|
|
2487 {
|
86
|
2488 if (NILP (process) ||
|
|
2489 EQ (XEVENT (event)->event.process.process, process))
|
0
|
2490 {
|
86
|
2491 done = 1;
|
0
|
2492 /* RMS's version always returns nil when proc is nil,
|
|
2493 and only returns t if input ever arrived on proc. */
|
|
2494 result = Qt;
|
|
2495 }
|
|
2496
|
|
2497 execute_internal_event (event);
|
|
2498 break;
|
|
2499 }
|
|
2500 case timeout_event:
|
74
|
2501 /* We execute the event even if it's ours, and notice that it's
|
|
2502 happened above. */
|
0
|
2503 case pointer_motion_event:
|
|
2504 case magic_event:
|
|
2505 {
|
20
|
2506 EXECUTE_INTERNAL:
|
0
|
2507 execute_internal_event (event);
|
|
2508 break;
|
|
2509 }
|
|
2510 default:
|
|
2511 {
|
|
2512 enqueue_command_event_1 (event);
|
|
2513 break;
|
|
2514 }
|
|
2515 }
|
|
2516 }
|
|
2517
|
70
|
2518 /* If our timeout has not been signalled yet, disable it. */
|
|
2519 if (timeout_enabled)
|
|
2520 event_stream_disable_wakeup (timeout_id, 0);
|
0
|
2521
|
|
2522 Fdeallocate_event (event);
|
|
2523 UNGCPRO;
|
|
2524 current_buffer = old_buffer;
|
|
2525 return result;
|
|
2526 }
|
|
2527
|
20
|
2528 DEFUN ("sleep-for", Fsleep_for, 1, 1, 0, /*
|
0
|
2529 Pause, without updating display, for ARG seconds.
|
|
2530 ARG may be a float, meaning pause for some fractional part of a second.
|
20
|
2531 */
|
|
2532 (seconds))
|
0
|
2533 {
|
|
2534 /* This function can GC */
|
|
2535 unsigned long msecs = lisp_number_to_milliseconds (seconds, 1);
|
|
2536 int id;
|
|
2537 Lisp_Object event = Qnil;
|
|
2538 struct gcpro gcpro1;
|
|
2539
|
|
2540 GCPRO1 (event);
|
|
2541
|
|
2542 id = event_stream_generate_wakeup (msecs, 0, Qnil, Qnil, 0);
|
|
2543 event = Fmake_event ();
|
|
2544 while (1)
|
|
2545 {
|
74
|
2546 /* If our timeout has arrived, we move along. */
|
|
2547 if (!event_stream_wakeup_pending_p (id, 0))
|
|
2548 goto DONE_LABEL;
|
|
2549
|
0
|
2550 QUIT; /* next_event_internal() does not QUIT, so check for ^G
|
|
2551 before reading output from the process - this makes it
|
|
2552 less likely that the filter will actually be aborted.
|
|
2553 */
|
|
2554 /* We're a generator of the command_event_queue, so we can't be a
|
|
2555 consumer as well. We don't care about command and eval-events
|
|
2556 anyway.
|
|
2557 */
|
86
|
2558 next_event_internal (event, 0, 0); /* blocks */
|
0
|
2559 /* See the comment in accept-process-output about Vquit_flag */
|
|
2560 switch (XEVENT_TYPE (event))
|
|
2561 {
|
86
|
2562 case process_event:
|
|
2563 {
|
|
2564 /* Avoid calling filter functions recursively by squirreling
|
|
2565 away process events */
|
|
2566 enqueue_process_event (Fcopy_event (event, Qnil));
|
|
2567 goto DONE_LABEL;
|
|
2568 }
|
|
2569
|
0
|
2570 case timeout_event:
|
74
|
2571 /* We execute the event even if it's ours, and notice that it's
|
|
2572 happened above. */
|
0
|
2573 case pointer_motion_event:
|
|
2574 case magic_event:
|
|
2575 {
|
|
2576 EXECUTE_INTERNAL:
|
|
2577 execute_internal_event (event);
|
|
2578 break;
|
|
2579 }
|
|
2580 default:
|
|
2581 {
|
|
2582 enqueue_command_event_1 (event);
|
|
2583 break;
|
|
2584 }
|
|
2585 }
|
|
2586 }
|
|
2587 DONE_LABEL:
|
|
2588 Fdeallocate_event (event);
|
|
2589 UNGCPRO;
|
|
2590 return Qnil;
|
|
2591 }
|
|
2592
|
20
|
2593 DEFUN ("sit-for", Fsit_for, 1, 2, 0, /*
|
0
|
2594 Perform redisplay, then wait ARG seconds or until user input is available.
|
|
2595 ARG may be a float, meaning a fractional part of a second.
|
|
2596 Optional second arg non-nil means don't redisplay, just wait for input.
|
|
2597 Redisplay is preempted as always if user input arrives, and does not
|
70
|
2598 happen if input is available before it starts.
|
0
|
2599 Value is t if waited the full time with no input arriving.
|
20
|
2600 */
|
|
2601 (seconds, nodisplay))
|
0
|
2602 {
|
|
2603 /* This function can GC */
|
|
2604 unsigned long msecs = lisp_number_to_milliseconds (seconds, 1);
|
|
2605 Lisp_Object event, result;
|
|
2606 struct gcpro gcpro1;
|
|
2607 int id;
|
30
|
2608
|
0
|
2609 /* The unread-command-events count as pending input */
|
|
2610 if (!NILP (Vunread_command_events) || !NILP (Vunread_command_event))
|
|
2611 return Qnil;
|
|
2612
|
|
2613 /* If the command-builder already has user-input on it (not eval events)
|
|
2614 then that means we're done too.
|
|
2615 */
|
|
2616 if (!NILP (command_event_queue))
|
|
2617 {
|
|
2618 EVENT_CHAIN_LOOP (event, command_event_queue)
|
|
2619 {
|
|
2620 if (command_event_p (event))
|
|
2621 return (Qnil);
|
|
2622 }
|
|
2623 }
|
|
2624
|
|
2625 /* If we're in a macro, or noninteractive, or early in temacs, then
|
|
2626 don't wait. */
|
|
2627 if (noninteractive || !NILP (Vexecuting_macro))
|
|
2628 return (Qnil);
|
|
2629
|
|
2630 /* Otherwise, start reading events from the event_stream.
|
|
2631 Do this loop at least once even if (sit-for 0) so that we
|
|
2632 redisplay when no input pending.
|
|
2633 */
|
70
|
2634 event = Fmake_event ();
|
30
|
2635 GCPRO1 (event);
|
0
|
2636
|
|
2637 /* Generate the wakeup even if MSECS is 0, so that existing timeout/etc.
|
|
2638 events get processed. The old (pre-19.12) code special-cased this
|
|
2639 and didn't generate a wakeup, but the resulting behavior was less than
|
|
2640 ideal; viz. the occurrence of (sit-for 0.001) scattered throughout
|
|
2641 the E-Lisp universe. */
|
|
2642
|
|
2643 id = event_stream_generate_wakeup (msecs, 0, Qnil, Qnil, 0);
|
|
2644
|
|
2645 while (1)
|
|
2646 {
|
|
2647 /* If there is no user input pending, then redisplay.
|
|
2648 */
|
|
2649 if (!event_stream_event_pending_p (1) && NILP (nodisplay))
|
|
2650 {
|
|
2651 run_pre_idle_hook ();
|
|
2652 redisplay ();
|
|
2653 }
|
|
2654
|
74
|
2655 /* If our timeout has arrived, we move along. */
|
|
2656 if (!event_stream_wakeup_pending_p (id, 0))
|
0
|
2657 {
|
|
2658 result = Qt;
|
|
2659 goto DONE_LABEL;
|
|
2660 }
|
|
2661
|
|
2662 QUIT; /* next_event_internal() does not QUIT, so check for ^G
|
|
2663 before reading output from the process - this makes it
|
|
2664 less likely that the filter will actually be aborted.
|
|
2665 */
|
|
2666 /* We're a generator of the command_event_queue, so we can't be a
|
|
2667 consumer as well. In fact, we know there's nothing on the
|
|
2668 command_event_queue that we didn't just put there.
|
|
2669 */
|
86
|
2670 next_event_internal (event, 0, 0); /* blocks */
|
0
|
2671 /* See the comment in accept-process-output about Vquit_flag */
|
|
2672
|
|
2673 if (command_event_p (event))
|
|
2674 {
|
|
2675 result = Qnil;
|
|
2676 goto DONE_LABEL;
|
|
2677 }
|
|
2678 switch (XEVENT_TYPE (event))
|
|
2679 {
|
|
2680 case eval_event:
|
|
2681 {
|
|
2682 /* eval-events get delayed until later. */
|
|
2683 enqueue_command_event (Fcopy_event (event, Qnil));
|
|
2684 break;
|
|
2685 }
|
86
|
2686
|
|
2687 case process_event:
|
|
2688 {
|
|
2689 /* Avoid recursive calls to process filters */
|
|
2690 enqueue_process_event (Fcopy_event (event, Qnil));
|
|
2691 break;
|
|
2692 }
|
|
2693
|
0
|
2694 case timeout_event:
|
74
|
2695 /* We execute the event even if it's ours, and notice that it's
|
|
2696 happened above. */
|
|
2697 default:
|
0
|
2698 {
|
|
2699 EXECUTE_INTERNAL:
|
|
2700 execute_internal_event (event);
|
|
2701 break;
|
|
2702 }
|
|
2703 }
|
|
2704 }
|
|
2705
|
|
2706 DONE_LABEL:
|
70
|
2707 /* If our timeout has not been signalled yet, disable it. */
|
74
|
2708 if (NILP (result))
|
70
|
2709 event_stream_disable_wakeup (id, 0);
|
0
|
2710
|
|
2711 /* Put back the event (if any) that made Fsit_for() exit before the
|
|
2712 timeout. Note that it is being added to the back of the queue, which
|
|
2713 would be inappropriate if there were any user events on the queue
|
|
2714 already: we would be misordering them. But we know that there are
|
|
2715 no user-events on the queue, or else we would not have reached this
|
|
2716 point at all.
|
|
2717 */
|
|
2718 if (NILP (result))
|
|
2719 enqueue_command_event (event);
|
|
2720 else
|
|
2721 Fdeallocate_event (event);
|
|
2722
|
|
2723 UNGCPRO;
|
|
2724 return (result);
|
|
2725 }
|
|
2726
|
|
2727 /* This handy little function is used by xselect.c and energize.c to
|
|
2728 wait for replies from processes that aren't really processes (that is,
|
|
2729 the X server and the Energize server).
|
|
2730 */
|
|
2731 void
|
|
2732 wait_delaying_user_input (int (*predicate) (void *arg), void *predicate_arg)
|
|
2733 {
|
|
2734 /* This function can GC */
|
|
2735 Lisp_Object event = Fmake_event ();
|
|
2736 struct gcpro gcpro1;
|
|
2737 GCPRO1 (event);
|
|
2738
|
|
2739 while (!(*predicate) (predicate_arg))
|
|
2740 {
|
|
2741 QUIT; /* next_event_internal() does not QUIT. */
|
|
2742
|
|
2743 /* We're a generator of the command_event_queue, so we can't be a
|
|
2744 consumer as well. Also, we have no reason to consult the
|
|
2745 command_event_queue; there are only user and eval-events there,
|
|
2746 and we'd just have to put them back anyway.
|
|
2747 */
|
86
|
2748 next_event_internal (event, 0, 1);
|
0
|
2749 /* See the comment in accept-process-output about Vquit_flag */
|
|
2750 if (command_event_p (event)
|
|
2751 || (XEVENT_TYPE (event) == eval_event)
|
|
2752 || (XEVENT_TYPE (event) == magic_eval_event))
|
|
2753 enqueue_command_event_1 (event);
|
|
2754 else
|
|
2755 execute_internal_event (event);
|
|
2756 }
|
|
2757 UNGCPRO;
|
|
2758 }
|
|
2759
|
|
2760
|
|
2761 /**********************************************************************/
|
|
2762 /* dispatching events; command builder */
|
|
2763 /**********************************************************************/
|
|
2764
|
|
2765 static void
|
|
2766 execute_internal_event (Lisp_Object event)
|
|
2767 {
|
|
2768 /* events on dead channels get silently eaten */
|
|
2769 if (object_dead_p (XEVENT (event)->channel))
|
|
2770 return;
|
|
2771
|
|
2772 /* This function can GC */
|
|
2773 switch (XEVENT_TYPE (event))
|
|
2774 {
|
|
2775 case empty_event:
|
|
2776 return;
|
|
2777
|
|
2778 case eval_event:
|
|
2779 {
|
|
2780 call1 (XEVENT (event)->event.eval.function,
|
|
2781 XEVENT (event)->event.eval.object);
|
|
2782 return;
|
|
2783 }
|
|
2784
|
|
2785 case magic_eval_event:
|
|
2786 {
|
|
2787 (XEVENT (event)->event.magic_eval.internal_function)
|
|
2788 (XEVENT (event)->event.magic_eval.object);
|
|
2789 return;
|
|
2790 }
|
|
2791
|
|
2792 case pointer_motion_event:
|
|
2793 {
|
|
2794 if (!NILP (Vmouse_motion_handler))
|
|
2795 call1 (Vmouse_motion_handler, event);
|
|
2796 return;
|
|
2797 }
|
|
2798
|
|
2799 case process_event:
|
|
2800 {
|
|
2801 Lisp_Object p = XEVENT (event)->event.process.process;
|
|
2802 Charcount readstatus;
|
|
2803
|
|
2804 assert (PROCESSP (p));
|
|
2805 while ((readstatus = read_process_output (p)) > 0)
|
|
2806 ;
|
|
2807 if (readstatus > 0)
|
|
2808 ; /* this clauses never gets executed but allows the #ifdefs
|
|
2809 to work cleanly. */
|
|
2810 #ifdef EWOULDBLOCK
|
|
2811 else if (readstatus == -1 && errno == EWOULDBLOCK)
|
|
2812 ;
|
|
2813 #endif /* EWOULDBLOCK */
|
|
2814 #ifdef EAGAIN
|
|
2815 else if (readstatus == -1 && errno == EAGAIN)
|
|
2816 ;
|
|
2817 #endif /* EAGAIN */
|
|
2818 else if ((readstatus == 0 &&
|
|
2819 /* Note that we cannot distinguish between no input
|
|
2820 available now and a closed pipe.
|
|
2821 With luck, a closed pipe will be accompanied by
|
|
2822 subprocess termination and SIGCHLD. */
|
|
2823 (!network_connection_p (p) ||
|
|
2824 /*
|
|
2825 When connected to ToolTalk (i.e.
|
|
2826 connected_via_filedesc_p()), it's not possible to
|
|
2827 reliably determine whether there is a message
|
|
2828 waiting for ToolTalk to receive. ToolTalk expects
|
|
2829 to have tt_message_receive() called exactly once
|
|
2830 every time the file descriptor becomes active, so
|
|
2831 the filter function forces this by returning 0.
|
|
2832 Emacs must not interpret this as a closed pipe. */
|
|
2833 connected_via_filedesc_p (XPROCESS (p))))
|
|
2834 #ifdef HAVE_PTYS
|
|
2835 /* On some OSs with ptys, when the process on one end of
|
|
2836 a pty exits, the other end gets an error reading with
|
|
2837 errno = EIO instead of getting an EOF (0 bytes read).
|
|
2838 Therefore, if we get an error reading and errno =
|
|
2839 EIO, just continue, because the child process has
|
|
2840 exited and should clean itself up soon (e.g. when we
|
|
2841 get a SIGCHLD). */
|
|
2842 || (readstatus == -1 && errno == EIO)
|
|
2843 #endif
|
|
2844 )
|
|
2845 {
|
80
|
2846 /* Currently, we rely on SIGCHLD to indicate that the
|
|
2847 process has terminated. Unfortunately, on some systems
|
|
2848 the SIGCHLD gets missed some of the time. So we put an
|
|
2849 additional check in status_notify() to see whether a
|
|
2850 process has terminated. We must tell status_notify()
|
|
2851 to enable that check, and we do so now. */
|
0
|
2852 kick_status_notify ();
|
|
2853 }
|
|
2854 else
|
|
2855 {
|
|
2856 /* Deactivate network connection */
|
|
2857 Lisp_Object status = Fprocess_status (p);
|
|
2858 if (EQ (status, Qopen)
|
|
2859 /* In case somebody changes the theory of whether to
|
|
2860 return open as opposed to run for network connection
|
|
2861 "processes"... */
|
|
2862 || EQ (status, Qrun))
|
|
2863 update_process_status (p, Qexit, 256, 0);
|
|
2864 deactivate_process (p);
|
|
2865 }
|
|
2866
|
|
2867 /* We must call status_notify here to allow the
|
|
2868 event_stream->unselect_process_cb to be run if appropriate.
|
|
2869 Otherwise, dead fds may be selected for, and we will get a
|
|
2870 continuous stream of process events for them. Since we don't
|
|
2871 return until all process events have been flushed, we would
|
|
2872 get stuck here, processing events on a process whose status
|
|
2873 was 'exit. Call this after dispatch-event, or the fds will
|
|
2874 have been closed before we read the last data from them.
|
|
2875 It's safe for the filter to signal an error because
|
|
2876 status_notify() will be called on return to top-level.
|
|
2877 */
|
|
2878 status_notify ();
|
|
2879 return;
|
|
2880 }
|
|
2881
|
|
2882 case timeout_event:
|
|
2883 {
|
|
2884 struct Lisp_Event *e = XEVENT (event);
|
|
2885 if (!NILP (e->event.timeout.function))
|
|
2886 call1 (e->event.timeout.function,
|
|
2887 e->event.timeout.object);
|
|
2888 return;
|
|
2889 }
|
|
2890 case magic_event:
|
|
2891 {
|
|
2892 event_stream_handle_magic_event (XEVENT (event));
|
|
2893 return;
|
|
2894 }
|
|
2895 default:
|
|
2896 abort ();
|
|
2897 }
|
|
2898 }
|
|
2899
|
|
2900
|
|
2901
|
|
2902 static void
|
|
2903 this_command_keys_replace_suffix (Lisp_Object suffix, Lisp_Object chain)
|
|
2904 {
|
|
2905 Lisp_Object first_before_suffix =
|
|
2906 event_chain_find_previous (Vthis_command_keys, suffix);
|
|
2907
|
|
2908 if (NILP (first_before_suffix))
|
|
2909 Vthis_command_keys = chain;
|
|
2910 else
|
|
2911 XSET_EVENT_NEXT (first_before_suffix, chain);
|
|
2912 deallocate_event_chain (suffix);
|
|
2913 Vthis_command_keys_tail = event_chain_tail (chain);
|
|
2914 }
|
|
2915
|
|
2916 static void
|
|
2917 command_builder_replace_suffix (struct command_builder *builder,
|
|
2918 Lisp_Object suffix, Lisp_Object chain)
|
|
2919 {
|
|
2920 Lisp_Object first_before_suffix =
|
|
2921 event_chain_find_previous (builder->current_events, suffix);
|
|
2922
|
|
2923 if (NILP (first_before_suffix))
|
|
2924 builder->current_events = chain;
|
|
2925 else
|
|
2926 XSET_EVENT_NEXT (first_before_suffix, chain);
|
|
2927 deallocate_event_chain (suffix);
|
|
2928 builder->most_current_event = event_chain_tail (chain);
|
|
2929 }
|
|
2930
|
|
2931 static Lisp_Object
|
|
2932 command_builder_find_leaf_1 (struct command_builder *builder)
|
|
2933 {
|
|
2934 Lisp_Object event0 = builder->current_events;
|
|
2935
|
|
2936 if (NILP (event0))
|
|
2937 return (Qnil);
|
|
2938
|
|
2939 return event_binding (event0, 1);
|
|
2940 }
|
|
2941
|
|
2942 /* See if we can do function-key-map or key-translation-map translation
|
|
2943 on the current events in the command builder. If so, do this, and
|
|
2944 return the resulting binding, if any. */
|
|
2945
|
|
2946 static Lisp_Object
|
|
2947 munge_keymap_translate (struct command_builder *builder,
|
|
2948 enum munge_me_out_the_door munge,
|
|
2949 int has_normal_binding_p)
|
|
2950 {
|
|
2951 Lisp_Object suffix;
|
|
2952
|
|
2953 EVENT_CHAIN_LOOP (suffix, builder->munge_me[munge].first_mungeable_event)
|
|
2954 {
|
|
2955 Lisp_Object result = munging_key_map_event_binding (suffix, munge);
|
|
2956
|
|
2957 if (!NILP (result))
|
|
2958 {
|
|
2959 if (KEYMAPP (result))
|
|
2960 {
|
|
2961 if (NILP (builder->last_non_munged_event)
|
|
2962 && !has_normal_binding_p)
|
|
2963 builder->last_non_munged_event =
|
|
2964 builder->most_current_event;
|
|
2965 }
|
|
2966 else
|
|
2967 builder->last_non_munged_event = Qnil;
|
|
2968
|
|
2969 if (!KEYMAPP (result) && !VECTORP (result)
|
|
2970 && !STRINGP (result))
|
|
2971 {
|
|
2972 struct gcpro gcpro1;
|
|
2973 GCPRO1 (suffix);
|
|
2974 result = call1 (result, Qnil);
|
|
2975 UNGCPRO;
|
|
2976 }
|
|
2977
|
|
2978 if (KEYMAPP (result))
|
|
2979 return result;
|
|
2980
|
|
2981 if (VECTORP (result) || STRINGP (result))
|
|
2982 {
|
|
2983 Lisp_Object new_chain =
|
|
2984 key_sequence_to_event_chain (result);
|
|
2985 Lisp_Object tempev;
|
|
2986 int n, tckn;
|
|
2987
|
|
2988 /* If the first_mungeable_event of the other munger
|
|
2989 is within the events we're munging, then it will
|
|
2990 point to deallocated events afterwards, which is
|
|
2991 bad -- so make it point at the beginning of the
|
|
2992 munged events. */
|
|
2993 EVENT_CHAIN_LOOP (tempev, suffix)
|
|
2994 {
|
|
2995 if (EQ (tempev, builder->munge_me[1 - munge].
|
|
2996 first_mungeable_event))
|
|
2997 {
|
|
2998 builder->munge_me[1 - munge].first_mungeable_event =
|
|
2999 new_chain;
|
|
3000 break;
|
|
3001 }
|
|
3002 }
|
|
3003
|
|
3004 n = event_chain_count (suffix);
|
|
3005 command_builder_replace_suffix (builder, suffix, new_chain);
|
|
3006 builder->munge_me[munge].first_mungeable_event = Qnil;
|
|
3007 /* Now hork this-command-keys as well. */
|
|
3008
|
|
3009 /* We just assume that the events we just replaced
|
|
3010 are sitting in copied form at the end of this-command-keys.
|
|
3011 If the user did weird things with `dispatch-event'
|
|
3012 this may not be the case, but at least we make
|
|
3013 sure we won't crash. */
|
|
3014 new_chain = copy_event_chain (new_chain);
|
|
3015 tckn = event_chain_count (Vthis_command_keys);
|
|
3016 if (tckn >= n)
|
|
3017 {
|
|
3018 this_command_keys_replace_suffix
|
|
3019 (event_chain_nth (Vthis_command_keys, tckn - n),
|
|
3020 new_chain);
|
|
3021 }
|
|
3022
|
|
3023 result = command_builder_find_leaf_1 (builder);
|
|
3024 return result;
|
|
3025 }
|
|
3026
|
|
3027 if (munge == MUNGE_ME_FUNCTION_KEY)
|
|
3028 signal_simple_error ("Invalid binding in function-key-map",
|
|
3029 result);
|
|
3030 else
|
|
3031 signal_simple_error ("Invalid binding in key-translation-map",
|
|
3032 result);
|
|
3033 }
|
|
3034 }
|
|
3035
|
|
3036 return Qnil;
|
|
3037 }
|
|
3038
|
|
3039 /* Compare the current state of the command builder against the local and
|
|
3040 global keymaps, and return the binding. If there is no match, try again,
|
2
|
3041 case-insensitively. The return value will be one of:
|
0
|
3042 -- nil (there is no binding)
|
|
3043 -- a keymap (part of a command has been specified)
|
|
3044 -- a command (anything that satisfies `commandp'; this includes
|
|
3045 some symbols, lists, subrs, strings, vectors, and
|
|
3046 compiled-function objects)
|
|
3047 */
|
|
3048 static Lisp_Object
|
|
3049 command_builder_find_leaf (struct command_builder *builder,
|
|
3050 int allow_misc_user_events_p)
|
|
3051 {
|
|
3052 /* This function can GC */
|
|
3053 Lisp_Object result;
|
|
3054 Lisp_Object evee = builder->current_events;
|
|
3055
|
|
3056 if (allow_misc_user_events_p
|
|
3057 && (NILP (XEVENT_NEXT (evee)))
|
|
3058 && (XEVENT_TYPE (evee) == misc_user_event))
|
|
3059 {
|
2
|
3060 Lisp_Object fn = XEVENT (evee)->event.eval.function;
|
0
|
3061 Lisp_Object arg = XEVENT (evee)->event.eval.object;
|
|
3062 return (list2 (fn, arg));
|
|
3063 }
|
|
3064
|
|
3065 else if (XEVENT_TYPE (evee) == misc_user_event)
|
|
3066 return Qnil;
|
|
3067
|
|
3068 result = command_builder_find_leaf_1 (builder);
|
|
3069
|
|
3070 /* Check to see if we have a potential function-key-map match. */
|
|
3071 if (NILP (result))
|
|
3072 {
|
|
3073 result = munge_keymap_translate (builder, MUNGE_ME_FUNCTION_KEY, 0);
|
|
3074 regenerate_echo_keys_from_this_command_keys (builder);
|
|
3075 }
|
|
3076 /* Check to see if we have a potential key-translation-map match. */
|
|
3077 {
|
|
3078 Lisp_Object key_translate_result =
|
|
3079 munge_keymap_translate (builder, MUNGE_ME_KEY_TRANSLATION,
|
|
3080 !NILP (result));
|
|
3081 if (!NILP (key_translate_result))
|
|
3082 {
|
|
3083 result = key_translate_result;
|
|
3084 regenerate_echo_keys_from_this_command_keys (builder);
|
|
3085 }
|
|
3086 }
|
|
3087
|
|
3088 if (!NILP (result))
|
|
3089 return result;
|
|
3090
|
|
3091 /* If key-sequence wasn't bound, we'll try some fallbacks. */
|
|
3092
|
|
3093 /* If we didn't find a binding, and the last event in the sequence is
|
|
3094 a shifted character, then try again with the lowercase version. */
|
|
3095
|
2
|
3096 if (XEVENT_TYPE (builder->most_current_event) == key_press_event
|
|
3097 && !NILP (Vretry_undefined_key_binding_unshifted))
|
|
3098 {
|
|
3099 Lisp_Object terminal = builder->most_current_event;
|
|
3100 struct key_data* key = & XEVENT (terminal)->event.key;
|
|
3101 Emchar c;
|
|
3102 if ((key->modifiers & MOD_SHIFT)
|
|
3103 || (CHAR_OR_CHAR_INTP (key->keysym)
|
|
3104 && ((c = XCHAR_OR_CHAR_INT (key->keysym)), c >= 'A' && c <= 'Z')))
|
|
3105 {
|
|
3106 struct Lisp_Event terminal_copy;
|
|
3107 terminal_copy = *XEVENT (terminal);
|
|
3108
|
|
3109 if (key->modifiers & MOD_SHIFT)
|
|
3110 key->modifiers &= (~ MOD_SHIFT);
|
|
3111 else
|
|
3112 key->keysym = make_char (c + 'a' - 'A');
|
|
3113
|
|
3114 result = command_builder_find_leaf (builder, allow_misc_user_events_p);
|
|
3115 if (!NILP (result))
|
|
3116 return (result);
|
|
3117 /* If there was no match with the lower-case version either,
|
|
3118 then put back the upper-case event for the error
|
|
3119 message. But make sure that function-key-map didn't
|
|
3120 change things out from under us. */
|
|
3121 if (EQ (terminal, builder->most_current_event))
|
|
3122 *XEVENT (terminal) = terminal_copy;
|
|
3123 }
|
|
3124 }
|
|
3125
|
|
3126 /* help-char is `auto-bound' in every keymap */
|
0
|
3127 if (!NILP (Vprefix_help_command) &&
|
|
3128 event_matches_key_specifier_p (XEVENT (builder->most_current_event),
|
|
3129 Vhelp_char))
|
|
3130 return (Vprefix_help_command);
|
|
3131
|
70
|
3132 #ifdef HAVE_XIM
|
|
3133 /* If keysym is a non-ASCII char, bind it to self-insert-char by default. */
|
|
3134 if (XEVENT_TYPE (builder->most_current_event) == key_press_event
|
|
3135 && !NILP (Vcomposed_character_default_binding))
|
|
3136 {
|
|
3137 Lisp_Object keysym = XEVENT (builder->most_current_event)->event.key.keysym;
|
|
3138 if (CHARP (keysym) && !CHAR_ASCII_P (XCHAR (keysym)))
|
|
3139 return Vcomposed_character_default_binding;
|
|
3140 }
|
|
3141 #endif /* HAVE_XIM */
|
|
3142
|
0
|
3143 /* If we read extra events attempting to match a function key but end
|
|
3144 up failing, then we release those events back to the command loop
|
|
3145 and fail on the original lookup. The released events will then be
|
|
3146 reprocessed in the context of the first part having failed. */
|
|
3147 if (!NILP (builder->last_non_munged_event))
|
|
3148 {
|
|
3149 Lisp_Object event0 = builder->last_non_munged_event;
|
|
3150
|
|
3151 /* Put the commands back on the event queue. */
|
|
3152 enqueue_event_chain (XEVENT_NEXT (event0),
|
|
3153 &command_event_queue,
|
|
3154 &command_event_queue_tail);
|
|
3155
|
|
3156 /* Then remove them from the command builder. */
|
|
3157 XSET_EVENT_NEXT (event0, Qnil);
|
|
3158 builder->most_current_event = event0;
|
|
3159 builder->last_non_munged_event = Qnil;
|
|
3160 }
|
|
3161
|
|
3162 return Qnil;
|
|
3163 }
|
|
3164
|
|
3165
|
|
3166 /* Every time a command-event (a key, button, or menu selection) is read by
|
|
3167 Fnext_event(), it is stored in the recent_keys_ring, in Vlast_input_event,
|
|
3168 and in Vthis_command_keys. (Eval-events are not stored there.)
|
|
3169
|
|
3170 Every time a command is invoked, Vlast_command_event is set to the last
|
|
3171 event in the sequence.
|
|
3172
|
|
3173 This means that Vthis_command_keys is really about "input read since the
|
|
3174 last command was executed" rather than about "what keys invoked this
|
|
3175 command." This is a little counterintuitive, but that's the way it
|
|
3176 has always worked.
|
|
3177
|
|
3178 As an extra kink, the function read-key-sequence resets/updates the
|
|
3179 last-command-event and this-command-keys. It doesn't append to the
|
|
3180 command-keys as read-char does. Such are the pitfalls of having to
|
|
3181 maintain compatibility with a program for which the only specification
|
|
3182 is the code itself.
|
|
3183
|
|
3184 (We could implement recent_keys_ring and Vthis_command_keys as the same
|
|
3185 data structure.)
|
|
3186 */
|
|
3187
|
|
3188 #define RECENT_KEYS_SIZE 100
|
|
3189 Lisp_Object recent_keys_ring;
|
|
3190 int recent_keys_ring_index;
|
|
3191
|
20
|
3192 DEFUN ("recent-keys", Frecent_keys, 0, 0, 0, /*
|
0
|
3193 Return vector of last 100 or so keyboard or mouse button events read.
|
|
3194 This copies the event objects into a new vector; it is safe to keep and
|
|
3195 modify them.
|
20
|
3196 */
|
|
3197 ())
|
0
|
3198 {
|
|
3199 struct gcpro gcpro1;
|
|
3200 Lisp_Object val = Qnil;
|
|
3201 int size = XVECTOR (recent_keys_ring)->size;
|
|
3202 int start, nkeys, i, j;
|
|
3203 GCPRO1 (val);
|
|
3204
|
|
3205 if (NILP (vector_data (XVECTOR (recent_keys_ring))[recent_keys_ring_index]))
|
|
3206 /* This means the vector has not yet wrapped */
|
|
3207 {
|
|
3208 nkeys = recent_keys_ring_index;
|
|
3209 start = 0;
|
|
3210 }
|
|
3211 else
|
|
3212 {
|
|
3213 nkeys = size;
|
|
3214 start = ((recent_keys_ring_index == size) ? 0 : recent_keys_ring_index);
|
|
3215 }
|
|
3216
|
|
3217 val = make_vector (nkeys, Qnil);
|
|
3218
|
|
3219 for (i = 0, j = start; i < nkeys; i++)
|
|
3220 {
|
|
3221 Lisp_Object e = vector_data (XVECTOR (recent_keys_ring))[j];
|
|
3222
|
|
3223 if (NILP (e))
|
|
3224 abort ();
|
|
3225 vector_data (XVECTOR (val))[i] = Fcopy_event (e, Qnil);
|
|
3226 if (++j >= size)
|
|
3227 j = 0;
|
|
3228 }
|
|
3229 UNGCPRO;
|
|
3230 return (val);
|
|
3231 }
|
|
3232
|
|
3233 /* Vthis_command_keys having value Qnil means that the next time
|
|
3234 push_this_command_keys is called, it should start over.
|
2
|
3235 The times at which the command-keys are reset
|
0
|
3236 (instead of merely being augmented) are pretty conterintuitive.
|
|
3237 (More specifically:
|
|
3238
|
|
3239 -- We do not reset this-command-keys when we finish reading a
|
|
3240 command. This is because some commands (e.g. C-u) act
|
|
3241 like command prefixes; they signal this by setting prefix-arg
|
|
3242 to non-nil.
|
|
3243 -- Therefore, we reset this-command-keys when we finish
|
70
|
3244 executing a comand, unless prefix-arg is set.
|
0
|
3245 -- However, if we ever do a non-local exit out of a command
|
|
3246 loop (e.g. an error in a command), we need to reset
|
|
3247 this-command-keys. We do this by calling reset_this_command_keys()
|
|
3248 from cmdloop.c, whenever an error causes an invocation of the
|
|
3249 default error handler, and whenever there's a throw to top-level.)
|
|
3250 */
|
|
3251
|
|
3252 void
|
|
3253 reset_this_command_keys (Lisp_Object console, int clear_echo_area_p)
|
|
3254 {
|
|
3255 struct command_builder *command_builder =
|
|
3256 XCOMMAND_BUILDER (XCONSOLE (console)->command_builder);
|
|
3257
|
|
3258 reset_key_echo (command_builder, clear_echo_area_p);
|
|
3259
|
|
3260 deallocate_event_chain (Vthis_command_keys);
|
|
3261 Vthis_command_keys = Qnil;
|
|
3262 Vthis_command_keys_tail = Qnil;
|
|
3263
|
|
3264 reset_current_events (command_builder);
|
|
3265 }
|
|
3266
|
|
3267 static void
|
|
3268 push_this_command_keys (Lisp_Object event)
|
|
3269 {
|
|
3270 Lisp_Object new = Fmake_event ();
|
|
3271
|
|
3272 Fcopy_event (event, new);
|
|
3273 enqueue_event (new, &Vthis_command_keys, &Vthis_command_keys_tail);
|
|
3274 }
|
|
3275
|
|
3276 /* The following two functions are used in call-interactively,
|
|
3277 for the @ and e specifications. We used to just use
|
70
|
3278 `current-mouse-event' (i.e. the last mouse event in this-comand-keys),
|
0
|
3279 but FSF does it more generally so we follow their lead. */
|
|
3280
|
|
3281 Lisp_Object
|
|
3282 extract_this_command_keys_nth_mouse_event (int n)
|
|
3283 {
|
|
3284 Lisp_Object event;
|
|
3285
|
|
3286 EVENT_CHAIN_LOOP (event, Vthis_command_keys)
|
|
3287 {
|
|
3288 if (EVENTP (event)
|
|
3289 && (XEVENT_TYPE (event) == button_press_event
|
|
3290 || XEVENT_TYPE (event) == button_release_event
|
|
3291 || XEVENT_TYPE (event) == misc_user_event))
|
|
3292 {
|
|
3293 if (!n)
|
|
3294 {
|
|
3295 /* must copy to avoid an abort() in next_event_internal() */
|
|
3296 if (!NILP (XEVENT_NEXT (event)))
|
|
3297 return Fcopy_event (event, Qnil);
|
|
3298 else
|
|
3299 return event;
|
|
3300 }
|
|
3301 n--;
|
|
3302 }
|
|
3303 }
|
|
3304
|
|
3305 return Qnil;
|
|
3306 }
|
|
3307
|
|
3308 Lisp_Object
|
|
3309 extract_vector_nth_mouse_event (Lisp_Object vector, int n)
|
|
3310 {
|
|
3311 int i;
|
|
3312
|
|
3313 for (i = 0; i < vector_length (XVECTOR (vector)); i++)
|
|
3314 {
|
|
3315 Lisp_Object event = vector_data (XVECTOR (vector))[i];
|
|
3316 if (EVENTP (event)
|
|
3317 && (XEVENT_TYPE (event) == button_press_event
|
|
3318 || XEVENT_TYPE (event) == button_release_event
|
|
3319 || XEVENT_TYPE (event) == misc_user_event))
|
|
3320 {
|
|
3321 if (!n)
|
|
3322 return event;
|
|
3323 n--;
|
|
3324 }
|
|
3325 }
|
|
3326
|
|
3327 return Qnil;
|
|
3328 }
|
|
3329
|
|
3330 static void
|
|
3331 push_recent_keys (Lisp_Object event)
|
|
3332 {
|
|
3333 Lisp_Object e
|
|
3334 = vector_data (XVECTOR (recent_keys_ring)) [recent_keys_ring_index];
|
|
3335
|
|
3336 if (NILP (e))
|
|
3337 {
|
|
3338 e = Fmake_event ();
|
|
3339 vector_data (XVECTOR (recent_keys_ring)) [recent_keys_ring_index] = e;
|
|
3340 }
|
|
3341 Fcopy_event (event, e);
|
|
3342 if (++recent_keys_ring_index == XVECTOR (recent_keys_ring)->size)
|
|
3343 recent_keys_ring_index = 0;
|
|
3344 }
|
|
3345
|
|
3346
|
|
3347 static Lisp_Object
|
|
3348 current_events_into_vector (struct command_builder *command_builder)
|
|
3349 {
|
|
3350 Lisp_Object vector;
|
|
3351 Lisp_Object event;
|
|
3352 int n = event_chain_count (command_builder->current_events);
|
|
3353
|
|
3354 /* Copy the vector and the events in it. */
|
|
3355 /* No need to copy the events, since they're already copies, and
|
|
3356 nobody other than the command-builder has pointers to them */
|
|
3357 vector = make_vector (n, Qnil);
|
|
3358 n = 0;
|
|
3359 EVENT_CHAIN_LOOP (event, command_builder->current_events)
|
|
3360 vector_data (XVECTOR (vector))[n++] = event;
|
|
3361 reset_command_builder_event_chain (command_builder);
|
|
3362 return (vector);
|
|
3363 }
|
|
3364
|
|
3365
|
|
3366 /*
|
|
3367 Given the current state of the command builder and a new command event
|
|
3368 that has just been dispatched:
|
|
3369
|
|
3370 -- add the event to the event chain forming the current command
|
|
3371 (doing meta-translation as necessary)
|
2
|
3372 -- return the binding of this event chain; this will be one of:
|
0
|
3373 -- nil (there is no binding)
|
|
3374 -- a keymap (part of a command has been specified)
|
|
3375 -- a command (anything that satisfies `commandp'; this includes
|
|
3376 some symbols, lists, subrs, strings, vectors, and
|
|
3377 compiled-function objects)
|
|
3378 */
|
|
3379 static Lisp_Object
|
|
3380 lookup_command_event (struct command_builder *command_builder,
|
|
3381 Lisp_Object event, int allow_misc_user_events_p)
|
|
3382 {
|
|
3383 /* This function can GC */
|
|
3384 struct frame *f = selected_frame ();
|
|
3385 /* Clear output from previous command execution */
|
|
3386 if (!EQ (Qcommand, echo_area_status (f))
|
|
3387 /* but don't let mouse-up clear what mouse-down just printed */
|
|
3388 && (XEVENT (event)->event_type != button_release_event))
|
|
3389 clear_echo_area (f, Qnil, 0);
|
|
3390
|
|
3391 /* Add the given event to the command builder.
|
|
3392 Extra hack: this also updates the recent_keys_ring and Vthis_command_keys
|
|
3393 vectors to translate "ESC x" to "M-x" (for any "x" of course).
|
|
3394 */
|
|
3395 {
|
|
3396 Lisp_Object recent = command_builder->most_current_event;
|
|
3397
|
|
3398 if (EVENTP (recent)
|
|
3399 && event_matches_key_specifier_p (XEVENT (recent), Vmeta_prefix_char))
|
|
3400 {
|
|
3401 struct Lisp_Event *e;
|
|
3402 /* When we see a sequence like "ESC x", pretend we really saw "M-x".
|
|
3403 DoubleThink the recent-keys and this-command-keys as well. */
|
|
3404
|
|
3405 /* Modify the previous most-recently-pushed event on the command
|
|
3406 builder to be a copy of this one with the meta-bit set instead of
|
|
3407 pushing a new event.
|
|
3408 */
|
|
3409 Fcopy_event (event, recent);
|
|
3410 e = XEVENT (recent);
|
|
3411 if (e->event_type == key_press_event)
|
|
3412 e->event.key.modifiers |= MOD_META;
|
|
3413 else if (e->event_type == button_press_event
|
|
3414 || e->event_type == button_release_event)
|
|
3415 e->event.button.modifiers |= MOD_META;
|
|
3416 else
|
|
3417 abort ();
|
|
3418
|
|
3419 {
|
|
3420 int tckn = event_chain_count (Vthis_command_keys);
|
|
3421 if (tckn >= 2)
|
|
3422 /* ??? very strange if it's < 2. */
|
|
3423 this_command_keys_replace_suffix
|
|
3424 (event_chain_nth (Vthis_command_keys, tckn - 2),
|
|
3425 Fcopy_event (recent, Qnil));
|
|
3426 }
|
|
3427
|
|
3428 regenerate_echo_keys_from_this_command_keys (command_builder);
|
|
3429 }
|
|
3430 else
|
|
3431 {
|
|
3432 event = Fcopy_event (event, Fmake_event ());
|
|
3433
|
|
3434 command_builder_append_event (command_builder, event);
|
|
3435 }
|
|
3436 }
|
|
3437
|
|
3438 {
|
|
3439 Lisp_Object leaf = command_builder_find_leaf (command_builder,
|
|
3440 allow_misc_user_events_p);
|
|
3441 struct gcpro gcpro1;
|
|
3442 GCPRO1 (leaf);
|
|
3443
|
|
3444 if (KEYMAPP (leaf))
|
|
3445 {
|
|
3446 Lisp_Object prompt = Fkeymap_prompt (leaf, Qt);
|
|
3447 if (STRINGP (prompt))
|
|
3448 {
|
|
3449 /* Append keymap prompt to key echo buffer */
|
|
3450 int buf_index = command_builder->echo_buf_index;
|
14
|
3451 Bytecount len = XSTRING_LENGTH (prompt);
|
0
|
3452
|
|
3453 if (len + buf_index + 1 <= command_builder->echo_buf_length)
|
|
3454 {
|
|
3455 Bufbyte *echo = command_builder->echo_buf + buf_index;
|
14
|
3456 memcpy (echo, XSTRING_DATA (prompt), len);
|
0
|
3457 echo[len] = 0;
|
|
3458 }
|
|
3459 maybe_echo_keys (command_builder, 1);
|
|
3460 }
|
|
3461 else
|
|
3462 maybe_echo_keys (command_builder, 0);
|
|
3463 }
|
|
3464 else if (!NILP (leaf))
|
|
3465 {
|
|
3466 if (EQ (Qcommand, echo_area_status (f))
|
|
3467 && command_builder->echo_buf_index > 0)
|
|
3468 {
|
|
3469 /* If we had been echoing keys, echo the last one (without
|
|
3470 the trailing dash) and redisplay before executing the
|
|
3471 command. */
|
|
3472 command_builder->echo_buf[command_builder->echo_buf_index] = 0;
|
|
3473 maybe_echo_keys (command_builder, 1);
|
|
3474 Fsit_for (Qzero, Qt);
|
|
3475 }
|
|
3476 }
|
|
3477 RETURN_UNGCPRO (leaf);
|
|
3478 }
|
|
3479 }
|
|
3480
|
|
3481 static void
|
|
3482 execute_command_event (struct command_builder *command_builder,
|
|
3483 Lisp_Object event)
|
|
3484 {
|
|
3485 /* This function can GC */
|
|
3486 struct console *con = XCONSOLE (command_builder->console);
|
|
3487 struct gcpro gcpro1;
|
|
3488
|
|
3489 GCPRO1 (event); /* event may be freshly created */
|
|
3490 reset_current_events (command_builder);
|
|
3491
|
|
3492 if (XEVENT (event)->event_type == key_press_event)
|
|
3493 Vcurrent_mouse_event = Qnil;
|
|
3494 else if (XEVENT (event)->event_type == button_press_event
|
|
3495 || XEVENT (event)->event_type == button_release_event
|
|
3496 || XEVENT (event)->event_type == misc_user_event)
|
|
3497 Vcurrent_mouse_event = Fcopy_event (event, Qnil);
|
|
3498
|
|
3499 /* Store the last-command-event. The semantics of this is that it is
|
|
3500 the last event most recently involved in command-lookup.
|
|
3501 */
|
|
3502 if (!EVENTP (Vlast_command_event))
|
|
3503 Vlast_command_event = Fmake_event ();
|
|
3504 if (XEVENT (Vlast_command_event)->event_type == dead_event)
|
|
3505 {
|
|
3506 Vlast_command_event = Fmake_event ();
|
|
3507 error ("Someone deallocated the last-command-event!");
|
|
3508 }
|
|
3509
|
|
3510 if (! EQ (event, Vlast_command_event))
|
|
3511 Fcopy_event (event, Vlast_command_event);
|
|
3512
|
|
3513 /* Note that last-command-char will never have its high-bit set, in
|
|
3514 an effort to sidestep the ambiguity between M-x and oslash.
|
|
3515 */
|
|
3516 Vlast_command_char = Fevent_to_character (Vlast_command_event,
|
|
3517 Qnil, Qnil, Qnil);
|
|
3518
|
|
3519 /* Actually call the command, with all sorts of hair to preserve or clear
|
|
3520 the echo-area and region as appropriate and call the pre- and post-
|
|
3521 command-hooks.
|
|
3522 */
|
|
3523 {
|
|
3524 int old_kbd_macro = con->kbd_macro_end;
|
|
3525 struct window *w;
|
|
3526
|
|
3527 w = XWINDOW (Fselected_window (Qnil));
|
|
3528
|
2
|
3529 /* We're executing a new command, so the old value is irrelevant. */
|
0
|
3530 zmacs_region_stays = 0;
|
|
3531
|
|
3532 /* If the previous command tried to force a specific window-start,
|
|
3533 reset the flag in case this command moves point far away from
|
|
3534 that position. Also, reset the window's buffer's change
|
|
3535 information so that we don't trigger an incremental update. */
|
|
3536 if (w->force_start)
|
|
3537 {
|
|
3538 w->force_start = 0;
|
|
3539 buffer_reset_changes (XBUFFER (w->buffer));
|
|
3540 }
|
|
3541
|
|
3542 pre_command_hook ();
|
|
3543
|
|
3544 if (XEVENT (event)->event_type == misc_user_event)
|
|
3545 {
|
|
3546 call1 (XEVENT (event)->event.eval.function,
|
|
3547 XEVENT (event)->event.eval.object);
|
|
3548 }
|
|
3549 else
|
|
3550 {
|
|
3551 #if 0
|
|
3552 call3 (Qcommand_execute, Vthis_command, Qnil, Qnil);
|
|
3553 #else
|
|
3554 Fcommand_execute (Vthis_command, Qnil, Qnil);
|
|
3555 #endif
|
|
3556 }
|
|
3557
|
|
3558 post_command_hook ();
|
|
3559
|
|
3560 if (!NILP (con->prefix_arg))
|
|
3561 {
|
|
3562 /* Commands that set the prefix arg don't update last-command, don't
|
|
3563 reset the echoing state, and don't go into keyboard macros unless
|
|
3564 followed by another command.
|
|
3565 */
|
|
3566 maybe_echo_keys (command_builder, 0);
|
|
3567
|
|
3568 /* If we're recording a keyboard macro, and the last command
|
|
3569 executed set a prefix argument, then decrement the pointer to
|
|
3570 the "last character really in the macro" to be just before this
|
|
3571 command. This is so that the ^U in "^U ^X )" doesn't go onto
|
|
3572 the end of macro.
|
|
3573 */
|
|
3574 if (!NILP (con->defining_kbd_macro))
|
|
3575 con->kbd_macro_end = old_kbd_macro;
|
|
3576 }
|
|
3577 else
|
|
3578 {
|
|
3579 /* Start a new command next time */
|
|
3580 Vlast_command = Vthis_command;
|
|
3581 /* Emacs 18 doesn't unconditionally clear the echoed keystrokes,
|
|
3582 so we don't either */
|
|
3583 reset_this_command_keys (make_console (con), 0);
|
|
3584 }
|
|
3585 }
|
|
3586
|
|
3587 UNGCPRO;
|
|
3588 }
|
|
3589
|
|
3590 /* Run the pre command hook. */
|
|
3591
|
|
3592 static void
|
|
3593 pre_command_hook (void)
|
|
3594 {
|
|
3595 last_point_position = BUF_PT (current_buffer);
|
|
3596 XSETBUFFER (last_point_position_buffer, current_buffer);
|
|
3597 /* This function can GC */
|
|
3598 safe_run_hook_trapping_errors
|
|
3599 ("Error in `pre-command-hook' (setting hook to nil)",
|
|
3600 Qpre_command_hook, 1);
|
|
3601 }
|
|
3602
|
|
3603 /* Run the post command hook. */
|
|
3604
|
|
3605 static void
|
|
3606 post_command_hook (void)
|
|
3607 {
|
|
3608 /* This function can GC */
|
|
3609 /* Turn off region highlighting unless this command requested that
|
|
3610 it be left on, or we're in the minibuffer. We don't turn it off
|
|
3611 when we're in the minibuffer so that things like M-x write-region
|
|
3612 still work!
|
|
3613
|
|
3614 This could be done via a function on the post-command-hook, but
|
|
3615 we don't want the user to accidentally remove it.
|
|
3616 */
|
2
|
3617
|
|
3618 Lisp_Object win = Fselected_window (Qnil);
|
|
3619
|
|
3620 #if 0
|
|
3621 /* If the last command deleted the frame, `win' might be nil.
|
|
3622 It seems safest to do nothing in this case. */
|
|
3623 /* ### This doesn't really fix the problem,
|
|
3624 if delete-frame is called by some hook */
|
|
3625 if (NILP (win))
|
|
3626 return;
|
|
3627 #endif
|
|
3628
|
0
|
3629 if (! zmacs_region_stays
|
2
|
3630 && (!MINI_WINDOW_P (XWINDOW (win))
|
|
3631 || EQ (zmacs_region_buffer (), WINDOW_BUFFER (XWINDOW (win)))))
|
0
|
3632 zmacs_deactivate_region ();
|
|
3633 else
|
|
3634 zmacs_update_region ();
|
|
3635
|
|
3636 safe_run_hook_trapping_errors
|
|
3637 ("Error in `post-command-hook' (setting hook to nil)",
|
|
3638 Qpost_command_hook, 1);
|
|
3639
|
|
3640 #ifdef DEFERRED_ACTION_CRAP
|
|
3641 if (!NILP (Vdeferred_action_list))
|
|
3642 call0 (Vdeferred_action_function);
|
|
3643 #endif
|
|
3644
|
|
3645 #ifdef ILL_CONCEIVED_HOOK
|
|
3646 if (NILP (Vunread_command_events)
|
|
3647 && NILP (Vexecuting_macro)
|
|
3648 && !NILP (Vpost_command_idle_hook)
|
|
3649 && !NILP (Fsit_for (make_float ((double) post_command_idle_delay
|
|
3650 / 1000000), Qnil)))
|
|
3651 safe_run_hook_trapping_errors
|
|
3652 ("Error in `post-command-idle-hook' (setting hook to nil)",
|
|
3653 Qpost_command_idle_hook, 1);
|
|
3654 #endif
|
|
3655
|
|
3656 #if 0 /* FSFmacs */
|
|
3657 if (!NILP (current_buffer->mark_active))
|
|
3658 {
|
|
3659 if (!NILP (Vdeactivate_mark) && !NILP (Vtransient_mark_mode))
|
|
3660 {
|
|
3661 current_buffer->mark_active = Qnil;
|
|
3662 run_hook (intern ("deactivate-mark-hook"));
|
|
3663 }
|
|
3664 else if (current_buffer != prev_buffer ||
|
|
3665 BUF_MODIFF (current_buffer) != prev_modiff)
|
|
3666 run_hook (intern ("activate-mark-hook"));
|
|
3667 }
|
|
3668 #endif /* FSFmacs */
|
|
3669
|
|
3670 /* #### Kludge!!! This is necessary to make sure that things
|
|
3671 are properly positioned even if post-command-hook moves point.
|
|
3672 #### There should be a cleaner way of handling this. */
|
|
3673 call0 (Qauto_show_make_point_visible);
|
|
3674 }
|
|
3675
|
|
3676
|
20
|
3677 DEFUN ("dispatch-event", Fdispatch_event, 1, 1, 0, /*
|
0
|
3678 Given an event object as returned by `next-event', execute it.
|
|
3679
|
|
3680 Key-press, button-press, and button-release events get accumulated
|
|
3681 until a complete key sequence (see `read-key-sequence') is reached,
|
|
3682 at which point the sequence is looked up in the current keymaps and
|
|
3683 acted upon.
|
|
3684
|
|
3685 Mouse motion events cause the low-level handling function stored in
|
|
3686 `mouse-motion-handler' to be called. (There are very few circumstances
|
|
3687 under which you should change this handler. Use `mode-motion-hook'
|
|
3688 instead.)
|
|
3689
|
|
3690 Menu, timeout, and eval events cause the associated function or handler
|
|
3691 to be called.
|
|
3692
|
|
3693 Process events cause the subprocess's output to be read and acted upon
|
|
3694 appropriately (see `start-process').
|
|
3695
|
|
3696 Magic events are handled as necessary.
|
20
|
3697 */
|
|
3698 (event))
|
0
|
3699 {
|
|
3700 /* This function can GC */
|
|
3701 struct command_builder *command_builder;
|
|
3702 struct Lisp_Event *ev;
|
|
3703 Lisp_Object console;
|
|
3704 Lisp_Object channel;
|
|
3705
|
|
3706 CHECK_LIVE_EVENT (event);
|
|
3707 ev = XEVENT (event);
|
|
3708
|
|
3709 /* events on dead channels get silently eaten */
|
|
3710 channel = EVENT_CHANNEL (ev);
|
|
3711 if (object_dead_p (channel))
|
|
3712 return Qnil;
|
|
3713
|
|
3714 /* Some events don't have channels (e.g. eval events). */
|
|
3715 console = CDFW_CONSOLE (channel);
|
|
3716 if (NILP (console))
|
|
3717 console = Vselected_console;
|
|
3718 else if (!EQ (console, Vselected_console))
|
|
3719 Fselect_console (console);
|
|
3720
|
|
3721 command_builder = XCOMMAND_BUILDER (XCONSOLE (console)->command_builder);
|
|
3722 switch (XEVENT (event)->event_type)
|
|
3723 {
|
|
3724 case button_press_event:
|
|
3725 case button_release_event:
|
|
3726 case key_press_event:
|
|
3727 {
|
|
3728 Lisp_Object leaf;
|
|
3729
|
|
3730 leaf = lookup_command_event (command_builder, event, 1);
|
|
3731 if (KEYMAPP (leaf))
|
|
3732 /* Incomplete key sequence */
|
|
3733 break;
|
|
3734 if (NILP (leaf))
|
|
3735 {
|
|
3736 /* At this point, we know that the sequence is not bound to a
|
|
3737 command. Normally, we beep and print a message informing the
|
|
3738 user of this. But we do not beep or print a message when:
|
|
3739
|
|
3740 o the last event in this sequence is a mouse-up event; or
|
|
3741 o the last event in this sequence is a mouse-down event and
|
|
3742 there is a binding for the mouse-up version.
|
|
3743
|
|
3744 That is, if the sequence ``C-x button1'' is typed, and is not
|
|
3745 bound to a command, but the sequence ``C-x button1up'' is bound
|
|
3746 to a command, we do not complain about the ``C-x button1''
|
|
3747 sequence. If neither ``C-x button1'' nor ``C-x button1up'' is
|
|
3748 bound to a command, then we complain about the ``C-x button1''
|
|
3749 sequence, but later will *not* complain about the
|
|
3750 ``C-x button1up'' sequence, which would be redundant.
|
|
3751
|
|
3752 This is pretty hairy, but I think it's the most intuitive
|
|
3753 behavior.
|
|
3754 */
|
|
3755 Lisp_Object terminal = command_builder->most_current_event;
|
|
3756
|
|
3757 if (XEVENT_TYPE (terminal) == button_press_event)
|
|
3758 {
|
|
3759 int no_bitching;
|
|
3760 /* Temporarily pretend the last event was an "up" instead of a
|
|
3761 "down", and look up its binding. */
|
|
3762 XEVENT_TYPE (terminal) = button_release_event;
|
|
3763 /* If the "up" version is bound, don't complain. */
|
|
3764 no_bitching
|
|
3765 = !NILP (command_builder_find_leaf
|
|
3766 (command_builder, 0));
|
|
3767 /* Undo the temporary changes we just made. */
|
|
3768 XEVENT_TYPE (terminal) = button_press_event;
|
|
3769 if (no_bitching)
|
|
3770 {
|
|
3771 /* Pretend this press was not seen (treat as a prefix) */
|
|
3772 if (EQ (command_builder->current_events, terminal))
|
|
3773 {
|
|
3774 reset_current_events (command_builder);
|
|
3775 }
|
|
3776 else
|
|
3777 {
|
|
3778 Lisp_Object eve;
|
|
3779
|
|
3780 EVENT_CHAIN_LOOP (eve, command_builder->current_events)
|
|
3781 if (EQ (XEVENT_NEXT (eve), terminal))
|
|
3782 break;
|
|
3783
|
|
3784 Fdeallocate_event (command_builder->
|
|
3785 most_current_event);
|
|
3786 XSET_EVENT_NEXT (eve, Qnil);
|
|
3787 command_builder->most_current_event = eve;
|
|
3788 }
|
|
3789 maybe_echo_keys (command_builder, 1);
|
|
3790 break;
|
|
3791 }
|
|
3792 }
|
|
3793
|
|
3794 /* Complain that the typed sequence is not defined, if this is the
|
|
3795 kind of sequence that warrants a complaint.
|
|
3796 */
|
|
3797 XCONSOLE (console)->defining_kbd_macro = Qnil;
|
|
3798 XCONSOLE (console)->prefix_arg = Qnil;
|
|
3799 /* Don't complain about undefined button-release events */
|
|
3800 if (XEVENT_TYPE (terminal) != button_release_event)
|
|
3801 {
|
|
3802 Lisp_Object keys =
|
|
3803 current_events_into_vector (command_builder);
|
|
3804 struct gcpro gcpro1;
|
|
3805
|
|
3806 /* Run the pre-command-hook before barfing about an undefined
|
|
3807 key. */
|
|
3808 Vthis_command = Qnil;
|
|
3809 GCPRO1 (keys);
|
|
3810 pre_command_hook ();
|
|
3811 UNGCPRO;
|
|
3812 /* The post-command-hook doesn't run. */
|
|
3813 Fsignal (Qundefined_keystroke_sequence, list1 (keys));
|
|
3814 }
|
|
3815 /* Reset the command builder for reading the next sequence. */
|
|
3816 reset_this_command_keys (console, 1);
|
|
3817 }
|
2
|
3818 else /* key sequence is bound to a command */
|
0
|
3819 {
|
|
3820 Vthis_command = leaf;
|
|
3821 /* Don't push an undo boundary if the command set the prefix arg,
|
|
3822 or if we are executing a keyboard macro, or if in the
|
|
3823 minibuffer. If the command we are about to execute is
|
|
3824 self-insert, it's tricky: up to 20 consecutive self-inserts may
|
|
3825 be done without an undo boundary. This counter is reset as
|
|
3826 soon as a command other than self-insert-command is executed.
|
|
3827 */
|
|
3828 if (! EQ (leaf, Qself_insert_command))
|
|
3829 command_builder->self_insert_countdown = 0;
|
|
3830 if (NILP (XCONSOLE (console)->prefix_arg)
|
|
3831 && NILP (Vexecuting_macro)
|
|
3832 #if 0
|
|
3833 /* This was done in the days when there was no undo
|
|
3834 in the minibuffer. If we don't disable this code,
|
|
3835 then each instance of "undo" undoes everything in
|
|
3836 the minibuffer. */
|
|
3837 && !EQ (minibuf_window, Fselected_window (Qnil))
|
|
3838 #endif
|
|
3839 && command_builder->self_insert_countdown == 0)
|
|
3840 Fundo_boundary ();
|
|
3841
|
|
3842 if (EQ (leaf, Qself_insert_command))
|
|
3843 {
|
|
3844 if (--command_builder->self_insert_countdown < 0)
|
|
3845 command_builder->self_insert_countdown = 20;
|
|
3846 }
|
2
|
3847 execute_command_event
|
|
3848 (command_builder,
|
|
3849 !NILP (Fequal (event, command_builder-> most_current_event))
|
|
3850 ? event
|
|
3851 /* Use the translated event that was most recently seen.
|
|
3852 This way, last-command-event becomes f1 instead of
|
|
3853 the P from ESC O P. But we must copy it, else we'll
|
|
3854 lose when the command-builder events are deallocated. */
|
|
3855 : Fcopy_event (command_builder-> most_current_event, Qnil));
|
0
|
3856 }
|
|
3857 break;
|
|
3858 }
|
|
3859 case misc_user_event:
|
|
3860 {
|
|
3861 /* Jamie said:
|
|
3862
|
|
3863 We could just always use the menu item entry, whatever it is, but
|
|
3864 this might break some Lisp code that expects `this-command' to
|
|
3865 always contain a symbol. So only store it if this is a simple
|
|
3866 `call-interactively' sort of menu item.
|
|
3867
|
|
3868 But this is bogus. `this-command' could be a string or vector
|
|
3869 anyway (for keyboard macros). There's even one instance
|
|
3870 (in pending-del.el) of `this-command' getting set to a cons
|
|
3871 (a lambda expression). So in the `eval' case I'll just
|
|
3872 convert it into a lambda expression.
|
|
3873 */
|
|
3874 if (EQ (XEVENT (event)->event.eval.function, Qcall_interactively)
|
|
3875 && SYMBOLP (XEVENT (event)->event.eval.object))
|
|
3876 Vthis_command = XEVENT (event)->event.eval.object;
|
|
3877 else if (EQ (XEVENT (event)->event.eval.function, Qeval))
|
|
3878 Vthis_command =
|
|
3879 Fcons (Qlambda, Fcons (Qnil, XEVENT (event)->event.eval.object));
|
|
3880 else if (SYMBOLP (XEVENT (event)->event.eval.function))
|
|
3881 /* A scrollbar command or the like. */
|
|
3882 Vthis_command = XEVENT (event)->event.eval.function;
|
|
3883 else
|
|
3884 /* Huh? */
|
|
3885 Vthis_command = Qnil;
|
|
3886
|
|
3887 command_builder->self_insert_countdown = 0;
|
|
3888 if (NILP (XCONSOLE (console)->prefix_arg)
|
|
3889 && NILP (Vexecuting_macro)
|
|
3890 && !EQ (minibuf_window, Fselected_window (Qnil)))
|
|
3891 Fundo_boundary ();
|
|
3892 execute_command_event (command_builder, event);
|
|
3893 break;
|
|
3894 }
|
|
3895 default:
|
|
3896 {
|
|
3897 execute_internal_event (event);
|
|
3898 break;
|
|
3899 }
|
|
3900 }
|
|
3901 return (Qnil);
|
|
3902 }
|
|
3903
|
20
|
3904 DEFUN ("read-key-sequence", Fread_key_sequence, 1, 3, 0, /*
|
0
|
3905 Read a sequence of keystrokes or mouse clicks.
|
|
3906 Returns a vector of the event objects read. The vector and the event
|
|
3907 objects it contains are freshly created (and will not be side-effected
|
|
3908 by subsequent calls to this function).
|
|
3909
|
|
3910 The sequence read is sufficient to specify a non-prefix command starting
|
|
3911 from the current local and global keymaps. A C-g typed while in this
|
|
3912 function is treated like any other character, and `quit-flag' is not set.
|
|
3913
|
|
3914 First arg PROMPT is a prompt string. If nil, do not prompt specially.
|
|
3915 Second (optional) arg CONTINUE-ECHO, if non-nil, means this key echos
|
|
3916 as a continuation of the previous key.
|
|
3917
|
|
3918 The third (optional) arg DONT-DOWNCASE-LAST, if non-nil, means do not
|
|
3919 convert the last event to lower case. (Normally any upper case event
|
|
3920 is converted to lower case if the original event is undefined and the lower
|
|
3921 case equivalent is defined.) This argument is provided mostly for
|
|
3922 FSF compatibility; the equivalent effect can be achieved more generally
|
|
3923 by binding `retry-undefined-key-binding-unshifted' to nil around the
|
|
3924 call to `read-key-sequence'.
|
|
3925
|
|
3926 A C-g typed while in this function is treated like any other character,
|
|
3927 and `quit-flag' is not set.
|
|
3928
|
|
3929 If the user selects a menu item while we are prompting for a key-sequence,
|
|
3930 the returned value will be a vector of a single menu-selection event.
|
|
3931 An error will be signalled if you pass this value to `lookup-key' or a
|
|
3932 related function.
|
|
3933
|
|
3934 `read-key-sequence' checks `function-key-map' for function key
|
|
3935 sequences, where they wouldn't conflict with ordinary bindings. See
|
|
3936 `function-key-map' for more details.
|
20
|
3937 */
|
|
3938 (prompt, continue_echo, dont_downcase_last))
|
0
|
3939 {
|
|
3940 /* This function can GC */
|
|
3941 struct console *con = XCONSOLE (Vselected_console); /* #### correct?
|
|
3942 Probably not -- see
|
|
3943 comment in
|
|
3944 next-event */
|
|
3945 struct command_builder *command_builder =
|
|
3946 XCOMMAND_BUILDER (con->command_builder);
|
|
3947 Lisp_Object result;
|
|
3948 Lisp_Object event = Fmake_event ();
|
|
3949 int speccount = specpdl_depth ();
|
|
3950 struct gcpro gcpro1;
|
|
3951 GCPRO1 (event);
|
|
3952
|
|
3953 if (!NILP (prompt))
|
|
3954 CHECK_STRING (prompt);
|
|
3955 /* else prompt = Fkeymap_prompt (current_buffer->keymap); may GC */
|
|
3956 QUIT;
|
|
3957
|
|
3958 if (NILP (continue_echo))
|
|
3959 reset_this_command_keys (make_console (con), 1);
|
|
3960
|
|
3961 specbind (Qinhibit_quit, Qt);
|
|
3962
|
|
3963 if (!NILP (dont_downcase_last))
|
|
3964 specbind (Qretry_undefined_key_binding_unshifted, Qnil);
|
|
3965
|
|
3966 for (;;)
|
|
3967 {
|
|
3968 Fnext_event (event, prompt);
|
|
3969 /* restore the selected-console damage */
|
|
3970 con = event_console_or_selected (event);
|
|
3971 command_builder = XCOMMAND_BUILDER (con->command_builder);
|
|
3972 if (! command_event_p (event))
|
|
3973 execute_internal_event (event);
|
|
3974 else
|
|
3975 {
|
|
3976 if (XEVENT (event)->event_type == misc_user_event)
|
|
3977 reset_current_events (command_builder);
|
|
3978 result = lookup_command_event (command_builder, event, 1);
|
|
3979 if (!KEYMAPP (result))
|
|
3980 {
|
|
3981 result = current_events_into_vector (command_builder);
|
|
3982 reset_key_echo (command_builder, 0);
|
|
3983 break;
|
|
3984 }
|
|
3985 prompt = Qnil;
|
|
3986 }
|
|
3987 }
|
|
3988
|
|
3989 Vquit_flag = Qnil; /* In case we read a ^G; do not call check_quit() here */
|
|
3990 Fdeallocate_event (event);
|
|
3991 RETURN_UNGCPRO (unbind_to (speccount, result));
|
|
3992 }
|
|
3993
|
20
|
3994 DEFUN ("this-command-keys", Fthis_command_keys, 0, 0, 0, /*
|
0
|
3995 Return a vector of the keyboard or mouse button events that were used
|
|
3996 to invoke this command. This copies the vector and the events; it is safe
|
|
3997 to keep and modify them.
|
20
|
3998 */
|
|
3999 ())
|
0
|
4000 {
|
|
4001 Lisp_Object event;
|
|
4002 Lisp_Object result;
|
|
4003 int len;
|
|
4004
|
|
4005 if (NILP (Vthis_command_keys))
|
|
4006 return (make_vector (0, Qnil));
|
|
4007
|
|
4008 len = event_chain_count (Vthis_command_keys);
|
|
4009
|
|
4010 result = make_vector (len, Qnil);
|
|
4011 len = 0;
|
|
4012 EVENT_CHAIN_LOOP (event, Vthis_command_keys)
|
|
4013 vector_data (XVECTOR (result))[len++] = Fcopy_event (event, Qnil);
|
|
4014 return (result);
|
|
4015 }
|
|
4016
|
20
|
4017 DEFUN ("reset-this-command-lengths", Freset_this_command_lengths, 0, 0, 0, /*
|
0
|
4018 Used for complicated reasons in `universal-argument-other-key'.
|
|
4019
|
|
4020 `universal-argument-other-key' rereads the event just typed.
|
|
4021 It then gets translated through `function-key-map'.
|
|
4022 The translated event gets included in the echo area and in
|
|
4023 the value of `this-command-keys' in addition to the raw original event.
|
|
4024 That is not right.
|
|
4025
|
|
4026 Calling this function directs the translated event to replace
|
|
4027 the original event, so that only one version of the event actually
|
|
4028 appears in the echo area and in the value of `this-command-keys.'.
|
20
|
4029 */
|
|
4030 ())
|
0
|
4031 {
|
|
4032 /* #### I don't understand this at all, so currently it does nothing.
|
|
4033 If there is ever a problem, maybe someone should investigate. */
|
|
4034 return Qnil;
|
|
4035 }
|
|
4036
|
|
4037
|
|
4038 static void
|
|
4039 dribble_out_event (Lisp_Object event)
|
|
4040 {
|
|
4041 if (NILP (Vdribble_file))
|
|
4042 return;
|
|
4043
|
|
4044 if (XEVENT (event)->event_type == key_press_event &&
|
|
4045 !XEVENT (event)->event.key.modifiers)
|
|
4046 {
|
|
4047 Lisp_Object keysym = XEVENT (event)->event.key.keysym;
|
|
4048 if (CHARP (XEVENT (event)->event.key.keysym))
|
|
4049 {
|
|
4050 Emchar ch = XCHAR (keysym);
|
|
4051 Bufbyte str[MAX_EMCHAR_LEN];
|
|
4052 Bytecount len;
|
|
4053
|
|
4054 len = set_charptr_emchar (str, ch);
|
|
4055 Lstream_write (XLSTREAM (Vdribble_file), str, len);
|
|
4056 }
|
|
4057 else if (string_char_length (XSYMBOL (keysym)->name) == 1)
|
|
4058 /* one-char key events are printed with just the key name */
|
|
4059 Fprinc (keysym, Vdribble_file);
|
|
4060 else if (EQ (keysym, Qreturn))
|
|
4061 Lstream_putc (XLSTREAM (Vdribble_file), '\n');
|
|
4062 else if (EQ (keysym, Qspace))
|
|
4063 Lstream_putc (XLSTREAM (Vdribble_file), ' ');
|
|
4064 else
|
|
4065 Fprinc (event, Vdribble_file);
|
|
4066 }
|
|
4067 else
|
|
4068 Fprinc (event, Vdribble_file);
|
|
4069 Lstream_flush (XLSTREAM (Vdribble_file));
|
|
4070 }
|
|
4071
|
20
|
4072 DEFUN ("open-dribble-file", Fopen_dribble_file, 1, 1,
|
|
4073 "FOpen dribble file: ", /*
|
0
|
4074 Start writing all keyboard characters to a dribble file called FILE.
|
|
4075 If FILE is nil, close any open dribble file.
|
20
|
4076 */
|
|
4077 (file))
|
0
|
4078 {
|
|
4079 /* This function can GC */
|
|
4080 /* XEmacs change: always close existing dribble file. */
|
|
4081 /* FSFmacs uses FILE *'s here. With lstreams, that's unnecessary. */
|
|
4082 if (!NILP (Vdribble_file))
|
|
4083 {
|
|
4084 Lstream_close (XLSTREAM (Vdribble_file));
|
|
4085 Vdribble_file = Qnil;
|
|
4086 }
|
|
4087 if (!NILP (file))
|
|
4088 {
|
|
4089 int fd;
|
|
4090
|
|
4091 file = Fexpand_file_name (file, Qnil);
|
14
|
4092 fd = creat ((char *) XSTRING_DATA (file), 0666);
|
0
|
4093 if (fd < 0)
|
|
4094 error ("Unable to create dribble file");
|
|
4095 Vdribble_file = make_filedesc_output_stream (fd, 0, 0, LSTR_CLOSING);
|
70
|
4096 #ifdef MULE
|
|
4097 Vdribble_file =
|
|
4098 make_encoding_output_stream (XLSTREAM (Vdribble_file),
|
|
4099 Fget_coding_system (Qescape_quoted));
|
|
4100 #endif
|
0
|
4101 }
|
|
4102 return Qnil;
|
|
4103 }
|
|
4104
|
|
4105
|
|
4106 /************************************************************************/
|
|
4107 /* initialization */
|
|
4108 /************************************************************************/
|
|
4109
|
|
4110 void
|
|
4111 syms_of_event_stream (void)
|
|
4112 {
|
|
4113 defsymbol (&Qdisabled, "disabled");
|
|
4114 defsymbol (&Qcommand_event_p, "command-event-p");
|
|
4115
|
|
4116 deferror (&Qundefined_keystroke_sequence, "undefined-keystroke-sequence",
|
|
4117 "Undefined keystroke sequence", Qerror);
|
|
4118 defsymbol (&Qcommand_execute, "command-execute");
|
|
4119
|
20
|
4120 DEFSUBR (Frecent_keys);
|
|
4121 DEFSUBR (Finput_pending_p);
|
|
4122 DEFSUBR (Fenqueue_eval_event);
|
|
4123 DEFSUBR (Fnext_event);
|
|
4124 DEFSUBR (Fnext_command_event);
|
|
4125 DEFSUBR (Fdiscard_input);
|
|
4126 DEFSUBR (Fsit_for);
|
|
4127 DEFSUBR (Fsleep_for);
|
|
4128 DEFSUBR (Faccept_process_output);
|
|
4129 DEFSUBR (Fadd_timeout);
|
|
4130 DEFSUBR (Fdisable_timeout);
|
|
4131 DEFSUBR (Fadd_async_timeout);
|
|
4132 DEFSUBR (Fdisable_async_timeout);
|
|
4133 DEFSUBR (Fdispatch_event);
|
|
4134 DEFSUBR (Fread_key_sequence);
|
|
4135 DEFSUBR (Fthis_command_keys);
|
|
4136 DEFSUBR (Freset_this_command_lengths);
|
|
4137 DEFSUBR (Fopen_dribble_file);
|
0
|
4138
|
|
4139 defsymbol (&Qpre_command_hook, "pre-command-hook");
|
|
4140 defsymbol (&Qpost_command_hook, "post-command-hook");
|
|
4141 defsymbol (&Qunread_command_events, "unread-command-events");
|
|
4142 defsymbol (&Qunread_command_event, "unread-command-event");
|
|
4143 defsymbol (&Qpre_idle_hook, "pre-idle-hook");
|
|
4144 #ifdef ILL_CONCEIVED_HOOK
|
|
4145 defsymbol (&Qpost_command_idle_hook, "post-command-idle-hook");
|
|
4146 #endif
|
|
4147 #ifdef DEFERRED_ACTION_CRAP
|
|
4148 defsymbol (&Qdeferred_action_function, "deferred-action-function");
|
|
4149 #endif
|
|
4150 defsymbol (&Qretry_undefined_key_binding_unshifted,
|
|
4151 "retry-undefined-key-binding-unshifted");
|
|
4152 defsymbol (&Qauto_show_make_point_visible,
|
|
4153 "auto-show-make-point-visible");
|
|
4154 }
|
|
4155
|
|
4156 void
|
|
4157 vars_of_event_stream (void)
|
|
4158 {
|
|
4159 #ifdef HAVE_X_WINDOWS
|
|
4160 vars_of_event_Xt ();
|
|
4161 #endif
|
|
4162 #if defined (DEBUG_TTY_EVENT_STREAM) || !defined (HAVE_X_WINDOWS)
|
|
4163 vars_of_event_tty ();
|
|
4164 #endif
|
|
4165 #ifdef HAVE_NEXTSTEP
|
|
4166 vars_of_event_ns ();
|
|
4167 #endif
|
|
4168
|
|
4169
|
|
4170 recent_keys_ring_index = 0;
|
|
4171 recent_keys_ring = make_vector (RECENT_KEYS_SIZE, Qnil);
|
|
4172 staticpro (&recent_keys_ring);
|
|
4173
|
|
4174 Vthis_command_keys = Qnil;
|
|
4175 staticpro (&Vthis_command_keys);
|
|
4176 Vthis_command_keys_tail = Qnil;
|
|
4177
|
|
4178 num_input_chars = 0;
|
|
4179
|
|
4180 command_event_queue = Qnil;
|
|
4181 staticpro (&command_event_queue);
|
|
4182 command_event_queue_tail = Qnil;
|
|
4183
|
86
|
4184 process_event_queue = Qnil;
|
|
4185 staticpro (&process_event_queue);
|
|
4186 process_event_queue_tail = Qnil;
|
|
4187
|
0
|
4188 Vlast_selected_frame = Qnil;
|
|
4189 staticpro (&Vlast_selected_frame);
|
|
4190
|
|
4191 pending_timeout_list = Qnil;
|
|
4192 staticpro (&pending_timeout_list);
|
|
4193
|
|
4194 pending_async_timeout_list = Qnil;
|
|
4195 staticpro (&pending_async_timeout_list);
|
|
4196
|
|
4197 Vtimeout_free_list = make_opaque_list (sizeof (struct timeout),
|
|
4198 mark_timeout);
|
|
4199 staticpro (&Vtimeout_free_list);
|
|
4200
|
|
4201 the_low_level_timeout_blocktype =
|
|
4202 Blocktype_new (struct low_level_timeout_blocktype);
|
|
4203
|
|
4204 something_happened = 0;
|
|
4205
|
|
4206 last_point_position_buffer = Qnil;
|
|
4207 staticpro (&last_point_position_buffer);
|
|
4208
|
|
4209 DEFVAR_INT ("echo-keystrokes", &echo_keystrokes /*
|
|
4210 *Nonzero means echo unfinished commands after this many seconds of pause.
|
|
4211 */ );
|
|
4212 echo_keystrokes = 1;
|
|
4213
|
|
4214 DEFVAR_INT ("auto-save-interval", &auto_save_interval /*
|
|
4215 *Number of keyboard input characters between auto-saves.
|
|
4216 Zero means disable autosaving due to number of characters typed.
|
|
4217 See also the variable `auto-save-timeout'.
|
|
4218 */ );
|
|
4219 auto_save_interval = 300;
|
|
4220
|
|
4221 DEFVAR_LISP ("pre-command-hook", &Vpre_command_hook /*
|
|
4222 Function or functions to run before every command.
|
|
4223 This may examine the `this-command' variable to find out what command
|
|
4224 is about to be run, or may change it to cause a different command to run.
|
|
4225 Function on this hook must be careful to avoid signalling errors!
|
|
4226 */ );
|
|
4227 Vpre_command_hook = Qnil;
|
|
4228
|
|
4229 DEFVAR_LISP ("post-command-hook", &Vpost_command_hook /*
|
|
4230 Function or functions to run after every command.
|
|
4231 This may examine the `this-command' variable to find out what command
|
|
4232 was just executed.
|
|
4233 */ );
|
|
4234 Vpost_command_hook = Qnil;
|
|
4235
|
|
4236 DEFVAR_LISP ("pre-idle-hook", &Vpre_idle_hook /*
|
|
4237 Normal hook run when XEmacs it about to be idle.
|
|
4238 This occurs whenever it is going to block, waiting for an event.
|
|
4239 This generally happens as a result of a call to `next-event',
|
|
4240 `next-command-event', `sit-for', `sleep-for', `accept-process-output',
|
|
4241 `x-get-selection', or various Energize-specific commands.
|
|
4242 Errors running the hook are caught and ignored.
|
|
4243 */ );
|
|
4244 Vpre_idle_hook = Qnil;
|
|
4245
|
72
|
4246 DEFVAR_BOOL ("focus-follows-mouse", &focus_follows_mouse /*
|
|
4247 Variable to control XEmacs behavior with respect to focus changing.
|
|
4248 If this variable is set to t, then XEmacs will not gratuitously change
|
|
4249 the keyboard focus.
|
|
4250 */ );
|
|
4251 focus_follows_mouse = 0;
|
|
4252
|
0
|
4253 #ifdef ILL_CONCEIVED_HOOK
|
|
4254 /* Ill-conceived because it's not run in all sorts of cases
|
|
4255 where XEmacs is blocking. That's what `pre-idle-hook'
|
|
4256 is designed to solve. */
|
|
4257 xxDEFVAR_LISP ("post-command-idle-hook", &Vpost_command_idle_hook /*
|
|
4258 Normal hook run after each command is executed, if idle.
|
|
4259 `post-command-idle-delay' specifies a time in microseconds that XEmacs
|
|
4260 must be idle for in order for the functions on this hook to be called.
|
|
4261 Errors running the hook are caught and ignored.
|
|
4262 */ );
|
|
4263 Vpost_command_idle_hook = Qnil;
|
|
4264
|
|
4265 xxDEFVAR_INT ("post-command-idle-delay", &post_command_idle_delay /*
|
|
4266 Delay time before running `post-command-idle-hook'.
|
|
4267 This is measured in microseconds.
|
|
4268 */ );
|
|
4269 post_command_idle_delay = 5000;
|
|
4270 #endif /* ILL_CONCEIVED_HOOK */
|
|
4271
|
|
4272 #ifdef DEFERRED_ACTION_CRAP
|
|
4273 /* Random FSFmacs crap. There is absolutely nothing to gain,
|
|
4274 and a great deal to lose, in using this in place of just
|
|
4275 setting `post-command-hook'. */
|
|
4276 xxDEFVAR_LISP ("deferred-action-list", &Vdeferred_action_list /*
|
|
4277 List of deferred actions to be performed at a later time.
|
|
4278 The precise format isn't relevant here; we just check whether it is nil.
|
|
4279 */ );
|
|
4280 Vdeferred_action_list = Qnil;
|
|
4281
|
|
4282 xxDEFVAR_LISP ("deferred-action-function", &Vdeferred_action_function /*
|
|
4283 Function to call to handle deferred actions, after each command.
|
|
4284 This function is called with no arguments after each command
|
|
4285 whenever `deferred-action-list' is non-nil.
|
|
4286 */ );
|
|
4287 Vdeferred_action_function = Qnil;
|
|
4288 #endif /* DEFERRED_ACTION_CRAP */
|
|
4289
|
|
4290 DEFVAR_LISP ("last-command-event", &Vlast_command_event /*
|
|
4291 Last keyboard or mouse button event that was part of a command. This
|
|
4292 variable is off limits: you may not set its value or modify the event that
|
|
4293 is its value, as it is destructively modified by `read-key-sequence'. If
|
|
4294 you want to keep a pointer to this value, you must use `copy-event'.
|
|
4295 */ );
|
|
4296 Vlast_command_event = Qnil;
|
|
4297
|
|
4298 DEFVAR_LISP ("last-command-char", &Vlast_command_char /*
|
|
4299 If the value of `last-command-event' is a keyboard event, then
|
2
|
4300 this is the nearest ASCII equivalent to it. This is the value that
|
0
|
4301 `self-insert-command' will put in the buffer. Remember that there is
|
|
4302 NOT a 1:1 mapping between keyboard events and ASCII characters: the set
|
|
4303 of keyboard events is much larger, so writing code that examines this
|
|
4304 variable to determine what key has been typed is bad practice, unless
|
|
4305 you are certain that it will be one of a small set of characters.
|
|
4306 */ );
|
|
4307 Vlast_command_char = Qnil;
|
|
4308
|
|
4309 DEFVAR_LISP ("last-input-event", &Vlast_input_event /*
|
|
4310 Last keyboard or mouse button event received. This variable is off
|
|
4311 limits: you may not set its value or modify the event that is its value, as
|
|
4312 it is destructively modified by `next-event'. If you want to keep a pointer
|
|
4313 to this value, you must use `copy-event'.
|
|
4314 */ );
|
|
4315 Vlast_input_event = Qnil;
|
|
4316
|
|
4317 DEFVAR_LISP ("current-mouse-event", &Vcurrent_mouse_event /*
|
|
4318 The mouse-button event which invoked this command, or nil.
|
|
4319 This is usually what `(interactive \"e\")' returns.
|
|
4320 */ );
|
|
4321 Vcurrent_mouse_event = Qnil;
|
|
4322
|
|
4323 DEFVAR_LISP ("last-input-char", &Vlast_input_char /*
|
|
4324 If the value of `last-input-event' is a keyboard event, then
|
|
4325 this is the nearest ASCII equivalent to it. Remember that there is
|
|
4326 NOT a 1:1 mapping between keyboard events and ASCII characters: the set
|
|
4327 of keyboard events is much larger, so writing code that examines this
|
|
4328 variable to determine what key has been typed is bad practice, unless
|
|
4329 you are certain that it will be one of a small set of characters.
|
|
4330 */ );
|
|
4331 Vlast_input_char = Qnil;
|
|
4332
|
|
4333 DEFVAR_LISP ("last-input-time", &Vlast_input_time /*
|
|
4334 The time (in seconds since Jan 1, 1970) of the last-command-event,
|
|
4335 represented as a cons of two 16-bit integers. This is destructively
|
|
4336 modified, so copy it if you want to keep it.
|
|
4337 */ );
|
|
4338 Vlast_input_time = Qnil;
|
|
4339
|
|
4340 DEFVAR_LISP ("unread-command-events", &Vunread_command_events /*
|
|
4341 List of event objects to be read as next command input events.
|
|
4342 This can be used to simulate the receipt of events from the user.
|
|
4343 Normally this is nil.
|
|
4344 Events are removed from the front of this list.
|
|
4345 */ );
|
|
4346 Vunread_command_events = Qnil;
|
|
4347
|
|
4348 DEFVAR_LISP ("unread-command-event", &Vunread_command_event /*
|
|
4349 Obsolete. Use `unread-command-events' instead.
|
|
4350 */ );
|
|
4351 Vunread_command_event = Qnil;
|
|
4352
|
|
4353 DEFVAR_LISP ("last-command", &Vlast_command /*
|
|
4354 The last command executed. Normally a symbol with a function definition,
|
|
4355 but can be whatever was found in the keymap, or whatever the variable
|
|
4356 `this-command' was set to by that command.
|
|
4357 */ );
|
|
4358 Vlast_command = Qnil;
|
|
4359
|
|
4360 DEFVAR_LISP ("this-command", &Vthis_command /*
|
|
4361 The command now being executed.
|
|
4362 The command can set this variable; whatever is put here
|
|
4363 will be in `last-command' during the following command.
|
|
4364 */ );
|
|
4365 Vthis_command = Qnil;
|
|
4366
|
|
4367 DEFVAR_LISP ("help-char", &Vhelp_char /*
|
|
4368 Character to recognize as meaning Help.
|
|
4369 When it is read, do `(eval help-form)', and display result if it's a string.
|
|
4370 If the value of `help-form' is nil, this char can be read normally.
|
|
4371 This can be any form recognized as a single key specifier.
|
|
4372 To disable the help-char, set it to a negative number.
|
|
4373 */ );
|
|
4374 Vhelp_char = make_char (8); /* C-h */
|
|
4375
|
|
4376 DEFVAR_LISP ("help-form", &Vhelp_form /*
|
|
4377 Form to execute when character help-char is read.
|
|
4378 If the form returns a string, that string is displayed.
|
|
4379 If `help-form' is nil, the help char is not recognized.
|
|
4380 */ );
|
|
4381 Vhelp_form = Qnil;
|
|
4382
|
|
4383 DEFVAR_LISP ("prefix-help-command", &Vprefix_help_command /*
|
|
4384 Command to run when `help-char' character follows a prefix key.
|
|
4385 This command is used only when there is no actual binding
|
|
4386 for that character after that prefix key.
|
|
4387 */ );
|
|
4388 Vprefix_help_command = Qnil;
|
|
4389
|
|
4390 DEFVAR_CONST_LISP ("keyboard-translate-table", &Vkeyboard_translate_table /*
|
|
4391 Hash table used as translate table for keyboard input.
|
|
4392 Use `keyboard-translate' to portably add entries to this table.
|
|
4393 Each key-press event is looked up in this table as follows:
|
|
4394
|
|
4395 -- If an entry maps a symbol to a symbol, then a key-press event whose
|
|
4396 keysym is the former symbol (with any modifiers at all) gets its
|
|
4397 keysym changed and its modifiers left alone. This is useful for
|
|
4398 dealing with non-standard X keyboards, such as the grievous damage
|
|
4399 that Sun has inflicted upon the world.
|
|
4400 -- If an entry maps a character to a character, then a key-press event
|
|
4401 matching the former character gets converted to a key-press event
|
|
4402 matching the latter character. This is useful on ASCII terminals
|
|
4403 for (e.g.) making C-\\ look like C-s, to get around flow-control
|
|
4404 problems.
|
|
4405 -- If an entry maps a character to a symbol, then a key-press event
|
|
4406 matching the character gets converted to a key-press event whose
|
|
4407 keysym is the given symbol and which has no modifiers.
|
|
4408 */ );
|
|
4409
|
|
4410 DEFVAR_LISP ("retry-undefined-key-binding-unshifted",
|
|
4411 &Vretry_undefined_key_binding_unshifted /*
|
|
4412 If a key-sequence which ends with a shifted keystroke is undefined
|
|
4413 and this variable is non-nil then the command lookup is retried again
|
|
4414 with the last key unshifted. (e.g. C-X C-F would be retried as C-X C-f.)
|
|
4415 If lookup still fails, a normal error is signalled. In general,
|
|
4416 you should *bind* this, not set it.
|
|
4417 */ );
|
|
4418 Vretry_undefined_key_binding_unshifted = Qt;
|
|
4419
|
70
|
4420 #ifdef HAVE_XIM
|
|
4421 DEFVAR_LISP ("Vcomposed_character_default_binding",
|
|
4422 &Vretry_undefined_key_binding_unshifted /*
|
|
4423 The default keybinding to use for key events from composed input.
|
|
4424 Window systems frequently have ways to allow the user to compose
|
|
4425 single characters in a language using multiple keystrokes.
|
|
4426 XEmacs sees these as single character keypress events.
|
|
4427 */ );
|
|
4428 Vcomposed_character_default_binding = Qself_insert_command;
|
|
4429 #endif /* HAVE_XIM */
|
|
4430
|
0
|
4431 Vcontrolling_terminal = Qnil;
|
|
4432 staticpro (&Vcontrolling_terminal);
|
|
4433
|
|
4434 Vdribble_file = Qnil;
|
|
4435 staticpro (&Vdribble_file);
|
|
4436
|
2
|
4437
|
0
|
4438 #ifdef DEBUG_XEMACS
|
|
4439 DEFVAR_INT ("debug-emacs-events", &debug_emacs_events /*
|
|
4440 If non-zero, display debug information about Emacs events that XEmacs sees.
|
|
4441 Information is displayed on stderr.
|
|
4442
|
|
4443 Before the event, the source of the event is displayed in parentheses,
|
|
4444 and is one of the following:
|
|
4445
|
|
4446 \(real) A real event from the window system or
|
|
4447 terminal driver, as far as XEmacs can tell.
|
|
4448
|
|
4449 \(keyboard macro) An event generated from a keyboard macro.
|
|
4450
|
|
4451 \(unread-command-events) An event taken from `unread-command-events'.
|
|
4452
|
|
4453 \(unread-command-event) An event taken from `unread-command-event'.
|
|
4454
|
|
4455 \(command event queue) An event taken from an internal queue.
|
|
4456 Events end up on this queue when
|
|
4457 `enqueue-eval-event' is called or when
|
|
4458 user or eval events are received while
|
|
4459 XEmacs is blocking (e.g. in `sit-for',
|
|
4460 `sleep-for', or `accept-process-output',
|
|
4461 or while waiting for the reply to an
|
|
4462 X selection).
|
|
4463
|
|
4464 \(->keyboard-translate-table) The result of an event translated through
|
|
4465 keyboard-translate-table. Note that in
|
|
4466 this case, two events are printed even
|
|
4467 though only one is really generated.
|
|
4468
|
|
4469 \(SIGINT) A faked C-g resulting when XEmacs receives
|
|
4470 a SIGINT (e.g. C-c was pressed in XEmacs'
|
|
4471 controlling terminal or the signal was
|
|
4472 explicitly sent to the XEmacs process).
|
|
4473 */ );
|
|
4474 debug_emacs_events = 0;
|
|
4475 #endif
|
|
4476 }
|
|
4477
|
|
4478 void
|
|
4479 complex_vars_of_event_stream (void)
|
|
4480 {
|
|
4481 Vkeyboard_translate_table = Fmake_hashtable (make_int (100), Qnil);
|
|
4482 }
|
|
4483
|
|
4484 void
|
|
4485 init_event_stream (void)
|
|
4486 {
|
|
4487 if (initialized)
|
|
4488 {
|
|
4489 #ifdef HAVE_UNIXOID_EVENT_LOOP
|
|
4490 init_event_unixoid ();
|
|
4491 #endif
|
|
4492
|
|
4493 #ifdef HAVE_X_WINDOWS
|
|
4494 if (!strcmp (display_use, "x"))
|
|
4495 init_event_Xt_late ();
|
|
4496 else
|
|
4497 #endif
|
|
4498 #ifdef HAVE_NEXTSTEP
|
|
4499 if (!strcmp (display_use, "ns"))
|
|
4500 init_event_ns_late ();
|
|
4501 else
|
|
4502 #endif
|
|
4503 {
|
|
4504 /* For TTY's, use the Xt event loop if we can; it allows
|
|
4505 us to later open an X connection. */
|
|
4506 #if defined (HAVE_X_WINDOWS) && !defined (DEBUG_TTY_EVENT_STREAM)
|
|
4507 init_event_Xt_late ();
|
|
4508 #else
|
|
4509 init_event_tty_late ();
|
|
4510 #endif
|
|
4511 }
|
|
4512 init_interrupts_late ();
|
|
4513 }
|
|
4514 }
|
|
4515
|
|
4516
|
|
4517 /*
|
|
4518 useful testcases for v18/v19 compatibility:
|
|
4519
|
|
4520 (defun foo ()
|
|
4521 (interactive)
|
|
4522 (setq unread-command-event (character-to-event ?A (allocate-event)))
|
|
4523 (setq x (list (read-char)
|
|
4524 ; (read-key-sequence "") ; try it with and without this
|
|
4525 last-command-char last-input-char
|
|
4526 (recent-keys) (this-command-keys))))
|
|
4527 (global-set-key "\^Q" 'foo)
|
|
4528
|
|
4529 without the read-key-sequence:
|
|
4530 ^Q ==> (65 17 65 [... ^Q] [^Q])
|
|
4531 ^U^U^Q ==> (65 17 65 [... ^U ^U ^Q] [^U ^U ^Q])
|
|
4532 ^U^U^U^G^Q ==> (65 17 65 [... ^U ^U ^U ^G ^Q] [^Q])
|
|
4533
|
|
4534 with the read-key-sequence:
|
|
4535 ^Qb ==> (65 [b] 17 98 [... ^Q b] [b])
|
|
4536 ^U^U^Qb ==> (65 [b] 17 98 [... ^U ^U ^Q b] [b])
|
|
4537 ^U^U^U^G^Qb ==> (65 [b] 17 98 [... ^U ^U ^U ^G ^Q b] [b])
|
|
4538
|
|
4539 ;the evi-mode command "4dlj.j.j.j.j.j." is also a good testcase (gag)
|
|
4540
|
|
4541 ;(setq x (list (read-char) quit-flag))^J^G
|
|
4542 ;(let ((inhibit-quit t)) (setq x (list (read-char) quit-flag)))^J^G
|
|
4543 ;for BOTH, x should get set to (7 t), but no result should be printed.
|
|
4544
|
|
4545 ;also do this: make two frames, one viewing "*scratch*", the other "foo".
|
|
4546 ;in *scratch*, type (sit-for 20)^J
|
|
4547 ;wait a couple of seconds, move cursor to foo, type "a"
|
|
4548 ;a should be inserted in foo. Cursor highlighting should not change in
|
|
4549 ;the meantime.
|
|
4550
|
|
4551 ;do it with sleep-for. move cursor into foo, then back into *scratch*
|
|
4552 ;before typing.
|
70
|
4553
|
|
4554 ;make sure ^G aborts both sit-for and sleep-for.
|
0
|
4555
|
|
4556 (defun tst ()
|
|
4557 (list (condition-case c
|
|
4558 (sleep-for 20)
|
|
4559 (quit c))
|
|
4560 (read-char)))
|
|
4561
|
|
4562 (tst)^Ja^G ==> ((quit) 97) with no signal
|
|
4563 (tst)^J^Ga ==> ((quit) 97) with no signal
|
|
4564 (tst)^Jabc^G ==> ((quit) 97) with no signal, and "bc" inserted in buffer
|
|
4565
|
|
4566 Do this:
|
|
4567 (setq enable-recursive-minibuffers t
|
|
4568 minibuffer-max-depth nil)
|
|
4569 ESC ESC ESC ESC - there are now two minibuffers active
|
|
4570 C-g C-g C-g - there should be active 0, not 1
|
|
4571 Similarly:
|
|
4572 C-x C-f ~ / ? - wait for "Making completion list..." to display
|
|
4573 C-g - wait for "Quit" to display
|
|
4574 C-g - minibuffer should not be active
|
|
4575 however C-g before "Quit" is displayed should leave minibuffer active.
|
|
4576
|
|
4577 ;do it all in both v18 and v19 and make sure all results are the same.
|
|
4578 ;all of these cases matter a lot, but some in quite subtle ways.
|
|
4579 */
|