428
|
1 /* Editor command loop.
|
|
2 Copyright (C) 1992, 1993, 1994 Free Software Foundation, Inc.
|
853
|
3 Copyright (C) 1995, 1996, 2001, 2002 Ben Wing.
|
428
|
4
|
|
5 This file is part of XEmacs.
|
|
6
|
|
7 XEmacs is free software; you can redistribute it and/or modify it
|
|
8 under the terms of the GNU General Public License as published by the
|
|
9 Free Software Foundation; either version 2, or (at your option) any
|
|
10 later version.
|
|
11
|
|
12 XEmacs is distributed in the hope that it will be useful, but WITHOUT
|
|
13 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
|
14 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
|
15 for more details.
|
|
16
|
|
17 You should have received a copy of the GNU General Public License
|
|
18 along with XEmacs; see the file COPYING. If not, write to
|
|
19 the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
|
|
20 Boston, MA 02111-1307, USA. */
|
|
21
|
|
22 /* Synched up with: Mule 2.0. Not synched with FSF.
|
|
23 This was renamed from keyboard.c. However, it only contains the
|
|
24 command-loop stuff from FSF's keyboard.c; all the rest is in
|
|
25 event*.c, console.c, or signal.c. */
|
|
26
|
|
27 /* #### This module purports to separate out the command-loop stuff
|
|
28 from event-stream.c, but it doesn't really. Perhaps this file
|
|
29 should just be merged into event-stream.c, given its shortness. */
|
|
30
|
|
31 #include <config.h>
|
|
32 #include "lisp.h"
|
|
33
|
|
34 #include "buffer.h"
|
872
|
35 #include "console-impl.h"
|
800
|
36 #include "device.h"
|
428
|
37 #include "commands.h"
|
|
38 #include "frame.h"
|
|
39 #include "events.h"
|
|
40 #include "window.h"
|
|
41
|
872
|
42 #ifdef HAVE_MS_WINDOWS
|
|
43 #include "console-msw.h"
|
|
44 #endif
|
|
45
|
428
|
46 /* Current depth in recursive edits. */
|
458
|
47 Fixnum command_loop_level;
|
428
|
48
|
|
49 #ifndef LISP_COMMAND_LOOP
|
|
50 /* Form to evaluate (if non-nil) when Emacs is started. */
|
|
51 Lisp_Object Vtop_level;
|
|
52 #else
|
|
53 /* Function to call to evaluate to read and process events. */
|
|
54 Lisp_Object Vcommand_loop;
|
|
55 #endif /* LISP_COMMAND_LOOP */
|
|
56
|
|
57 Lisp_Object Venter_window_hook, Vleave_window_hook;
|
|
58
|
733
|
59 Lisp_Object Qdisabled_command_hook, Vdisabled_command_hook;
|
|
60
|
428
|
61 /* The error handler. */
|
|
62 Lisp_Object Qcommand_error;
|
|
63
|
|
64 /* The emergency error handler, before we're ready. */
|
|
65 Lisp_Object Qreally_early_error_handler;
|
|
66
|
|
67 /* Variable defined in Lisp. */
|
|
68 Lisp_Object Qerrors_deactivate_region;
|
|
69
|
|
70 Lisp_Object Qtop_level;
|
|
71
|
|
72 static Lisp_Object command_loop_1 (Lisp_Object dummy);
|
|
73 EXFUN (Fcommand_loop_1, 0);
|
|
74
|
|
75 /* There are two possible command loops -- one written entirely in
|
|
76 C and one written mostly in Lisp, except stuff written in C for
|
|
77 speed. The advantage of the Lisp command loop is that the user
|
|
78 can specify their own command loop to use by changing the variable
|
|
79 `command-loop'. Its disadvantage is that it's slow. */
|
|
80
|
|
81 static Lisp_Object
|
|
82 default_error_handler (Lisp_Object data)
|
|
83 {
|
|
84 int speccount = specpdl_depth ();
|
|
85
|
|
86 /* None of this is invoked, normally. This code is almost identical
|
|
87 to the `command-error' function, except `command-error' does cool
|
|
88 tricks with sounds. This function is a fallback, invoked if
|
|
89 command-error is unavailable. */
|
|
90
|
|
91 Fding (Qnil, Qnil, Qnil);
|
|
92
|
|
93 if (!NILP (Fboundp (Qerrors_deactivate_region))
|
|
94 && !NILP (Fsymbol_value (Qerrors_deactivate_region)))
|
|
95 zmacs_deactivate_region ();
|
|
96 Fdiscard_input ();
|
|
97 specbind (Qinhibit_quit, Qt);
|
|
98 Vstandard_output = Qt;
|
|
99 Vstandard_input = Qt;
|
|
100 Vexecuting_macro = Qnil;
|
|
101 Fset (intern ("last-error"), data);
|
|
102 clear_echo_area (selected_frame (), Qnil, 0);
|
|
103 Fdisplay_error (data, Qt);
|
|
104 check_quit (); /* make Vquit_flag accurate */
|
|
105 Vquit_flag = Qnil;
|
771
|
106 return (unbind_to_1 (speccount, Qt));
|
428
|
107 }
|
|
108
|
|
109 DEFUN ("really-early-error-handler", Freally_early_error_handler, 1, 1, 0, /*
|
|
110 You should almost certainly not be using this.
|
|
111 */
|
|
112 (x))
|
|
113 {
|
|
114 /* This is an error handler used when we're running temacs and when
|
|
115 we're in the early stages of XEmacs. No errors ought to be
|
|
116 occurring in those cases (or they ought to be trapped and
|
|
117 dealt with elsewhere), but if an error slips through, we need
|
|
118 to deal with it. We could write this function in Lisp (and it
|
|
119 used to be this way, at the beginning of loadup.el), but we do
|
|
120 it this way in case an error occurs before we get to loading
|
|
121 loadup.el. Note that there is also an `early-error-handler',
|
|
122 used in startup.el to catch more reasonable errors that
|
|
123 might occur during startup if the sysadmin or whoever fucked
|
|
124 up. This function is more conservative in what it does
|
|
125 and is used only as a last resort, indicating that the
|
|
126 programmer himself fucked up somewhere. */
|
|
127 stderr_out ("*** Error in XEmacs initialization");
|
|
128 Fprint (x, Qexternal_debugging_output);
|
|
129 stderr_out ("*** Backtrace\n");
|
|
130 Fbacktrace (Qexternal_debugging_output, Qt);
|
|
131 stderr_out ("*** Killing XEmacs\n");
|
442
|
132 #ifdef HAVE_MS_WINDOWS
|
771
|
133 Fmswindows_message_box (build_msg_string ("Initialization error"),
|
442
|
134 Qnil, Qnil);
|
|
135 #endif
|
428
|
136 return Fkill_emacs (make_int (-1));
|
|
137 }
|
|
138
|
|
139
|
|
140 /**********************************************************************/
|
|
141 /* Command-loop (in C) */
|
|
142 /**********************************************************************/
|
|
143
|
|
144 #ifndef LISP_COMMAND_LOOP
|
|
145
|
|
146 /* The guts of the command loop are in command_loop_1(). This function
|
|
147 doesn't catch errors, though -- that's the job of command_loop_2(),
|
|
148 which is a condition-case wrapper around command_loop_1().
|
|
149 command_loop_1() never returns, but may get thrown out of.
|
|
150
|
|
151 When an error occurs, cmd_error() is called, which usually
|
|
152 invokes the Lisp error handler in `command-error'; however,
|
|
153 a default error handler is provided if `command-error' is nil
|
|
154 (e.g. during startup). The purpose of the error handler is
|
|
155 simply to display the error message and do associated cleanup;
|
|
156 it does not need to throw anywhere. When the error handler
|
|
157 finishes, the condition-case in command_loop_2() will finish and
|
|
158 command_loop_2() will reinvoke command_loop_1().
|
|
159
|
|
160 command_loop_2() is invoked from three places: from
|
|
161 initial_command_loop() (called from main() at the end of
|
|
162 internal initialization), from the Lisp function `recursive-edit',
|
|
163 and from call_command_loop().
|
|
164
|
|
165 call_command_loop() is called when a macro is started and when the
|
|
166 minibuffer is entered; normal termination of the macro or
|
|
167 minibuffer causes a throw out of the recursive command loop. (To
|
|
168 'execute-kbd-macro for macros and 'exit for minibuffers. Note also
|
|
169 that the low-level minibuffer-entering function,
|
|
170 `read-minibuffer-internal', provides its own error handling and
|
|
171 does not need command_loop_2()'s error encapsulation; so it tells
|
|
172 call_command_loop() to invoke command_loop_1() directly.)
|
|
173
|
|
174 Note that both read-minibuffer-internal and recursive-edit set
|
|
175 up a catch for 'exit; this is why `abort-recursive-edit', which
|
|
176 throws to this catch, exits out of either one.
|
|
177
|
|
178 initial_command_loop(), called from main(), sets up a catch
|
|
179 for 'top-level when invoking command_loop_2(), allowing functions
|
|
180 to throw all the way to the top level if they really need to.
|
|
181 Before invoking command_loop_2(), initial_command_loop() calls
|
|
182 top_level_1(), which handles all of the startup stuff (creating
|
|
183 the initial frame, handling the command-line options, loading
|
|
184 the user's .emacs file, etc.). The function that actually does this
|
|
185 is in Lisp and is pointed to by the variable `top-level';
|
|
186 normally this function is `normal-top-level'. top_level_1() is
|
|
187 just an error-handling wrapper similar to command_loop_2().
|
|
188 Note also that initial_command_loop() sets up a catch for 'top-level
|
|
189 when invoking top_level_1(), just like when it invokes
|
|
190 command_loop_2(). */
|
|
191
|
|
192
|
|
193 static Lisp_Object
|
|
194 cmd_error (Lisp_Object data, Lisp_Object dummy)
|
|
195 {
|
|
196 /* This function can GC */
|
|
197 check_quit (); /* make Vquit_flag accurate */
|
|
198 Vquit_flag = Qnil;
|
|
199
|
|
200 any_console_state ();
|
|
201
|
|
202 if (!NILP (Ffboundp (Qcommand_error)))
|
|
203 return call1 (Qcommand_error, data);
|
|
204
|
|
205 return default_error_handler (data);
|
|
206 }
|
|
207
|
|
208 static Lisp_Object
|
|
209 top_level_1 (Lisp_Object dummy)
|
|
210 {
|
|
211 /* This function can GC */
|
|
212 /* On entry to the outer level, run the startup file */
|
|
213 if (!NILP (Vtop_level))
|
|
214 condition_case_1 (Qerror, Feval, Vtop_level, cmd_error, Qnil);
|
|
215 #if 1
|
|
216 else
|
|
217 {
|
|
218 message ("\ntemacs can only be run in -batch mode.");
|
|
219 noninteractive = 1; /* prevent things under kill-emacs from blowing up */
|
|
220 Fkill_emacs (make_int (-1));
|
|
221 }
|
|
222 #else
|
|
223 else if (purify_flag)
|
|
224 message ("Bare impure Emacs (standard Lisp code not loaded)");
|
|
225 else
|
|
226 message ("Bare Emacs (standard Lisp code not loaded)");
|
|
227 #endif
|
|
228
|
|
229 return Qnil;
|
|
230 }
|
|
231
|
|
232 /* Here we catch errors in execution of commands within the
|
|
233 editing loop, and reenter the editing loop.
|
|
234 When there is an error, cmd_error runs and the call
|
|
235 to condition_case_1() returns. */
|
|
236
|
|
237 /* Avoid confusing the compiler. A helper function for command_loop_2 */
|
|
238 static DOESNT_RETURN
|
|
239 command_loop_3 (void)
|
|
240 {
|
|
241 /*
|
1268
|
242 * If we are inside of a menu callback we cannot reenter the command loop
|
|
243 * because we will deadlock, as no input is allowed.
|
428
|
244 */
|
1268
|
245 if (in_modal_loop)
|
|
246 invalid_operation ("Attempt to enter command loop inside menu callback",
|
|
247 Qunbound);
|
428
|
248 /* This function can GC */
|
|
249 for (;;)
|
|
250 {
|
|
251 condition_case_1 (Qerror, command_loop_1, Qnil, cmd_error, Qnil);
|
|
252 /* #### wrong with selected-console? */
|
|
253 /* See command in initial_command_loop about why this value
|
|
254 is 0. */
|
|
255 reset_this_command_keys (Vselected_console, 0);
|
|
256 }
|
|
257 }
|
|
258
|
|
259 static Lisp_Object
|
|
260 command_loop_2 (Lisp_Object dummy)
|
|
261 {
|
|
262 command_loop_3(); /* doesn't return */
|
|
263 return Qnil;
|
|
264 }
|
|
265
|
|
266 /* This is called from emacs.c when it's done with initialization. */
|
|
267
|
|
268 DOESNT_RETURN
|
|
269 initial_command_loop (Lisp_Object load_me)
|
|
270 {
|
|
271 /* This function can GC */
|
|
272 if (!NILP (load_me))
|
|
273 Vtop_level = list2 (Qload, load_me);
|
|
274
|
|
275 /* First deal with startup and command-line arguments. A throw
|
|
276 to 'top-level gets us back here directly (does this ever happen?).
|
|
277 Otherwise, this function will return normally when all command-
|
|
278 line arguments have been processed, the user's initialization
|
|
279 file has been read in, and the first frame has been created. */
|
853
|
280 internal_catch (Qtop_level, top_level_1, Qnil, 0, 0);
|
428
|
281
|
|
282 /* If an error occurred during startup and the initial console
|
|
283 wasn't created, then die now (the error was already printed out
|
|
284 on the terminal device). */
|
|
285 if (!noninteractive &&
|
|
286 (!CONSOLEP (Vselected_console) ||
|
|
287 CONSOLE_STREAM_P (XCONSOLE (Vselected_console))))
|
|
288 Fkill_emacs (make_int (-1));
|
|
289
|
|
290 /* End of -batch run causes exit here. */
|
|
291 if (noninteractive)
|
|
292 Fkill_emacs (Qt);
|
|
293
|
|
294 for (;;)
|
|
295 {
|
|
296 command_loop_level = 0;
|
|
297 MARK_MODELINE_CHANGED;
|
|
298 /* Now invoke the command loop. It never returns; however, a
|
|
299 throw to 'top-level will place us at the end of this loop. */
|
853
|
300 internal_catch (Qtop_level, command_loop_2, Qnil, 0, 0);
|
428
|
301 /* #### wrong with selected-console? */
|
|
302 /* We don't actually call clear_echo_area() here, partially
|
|
303 at least because that runs Lisp code and it may be unsafe
|
|
304 to do so -- we are outside of the normal catches for
|
|
305 errors and such. */
|
|
306 reset_this_command_keys (Vselected_console, 0);
|
|
307 }
|
|
308 }
|
|
309
|
|
310 /* This function is invoked when a macro or minibuffer starts up.
|
|
311 Normal termination of the macro or minibuffer causes a throw past us.
|
|
312 See the comment above.
|
|
313
|
|
314 Note that this function never returns (but may be thrown out of). */
|
|
315
|
|
316 Lisp_Object
|
|
317 call_command_loop (Lisp_Object catch_errors)
|
|
318 {
|
|
319 /* This function can GC */
|
|
320 if (NILP (catch_errors))
|
|
321 return (command_loop_1 (Qnil));
|
|
322 else
|
|
323 return (command_loop_2 (Qnil));
|
|
324 }
|
|
325
|
|
326 static Lisp_Object
|
|
327 recursive_edit_unwind (Lisp_Object buffer)
|
|
328 {
|
|
329 if (!NILP (buffer))
|
|
330 Fset_buffer (buffer);
|
|
331
|
|
332 command_loop_level--;
|
|
333 MARK_MODELINE_CHANGED;
|
|
334
|
|
335 return Qnil;
|
|
336 }
|
|
337
|
|
338 DEFUN ("recursive-edit", Frecursive_edit, 0, 0, "", /*
|
|
339 Invoke the editor command loop recursively.
|
|
340 To get out of the recursive edit, a command can do `(throw 'exit nil)';
|
|
341 that tells this function to return.
|
|
342 Alternately, `(throw 'exit t)' makes this function signal an error.
|
|
343 */
|
|
344 ())
|
|
345 {
|
|
346 /* This function can GC */
|
|
347 Lisp_Object val;
|
|
348 int speccount = specpdl_depth ();
|
|
349
|
|
350 command_loop_level++;
|
|
351 MARK_MODELINE_CHANGED;
|
|
352
|
|
353 record_unwind_protect (recursive_edit_unwind,
|
872
|
354 current_buffer
|
|
355 != XWINDOW_XBUFFER (Fselected_window (Qnil))
|
428
|
356 ? Fcurrent_buffer ()
|
872
|
357 : Qnil);
|
428
|
358
|
|
359 specbind (Qstandard_output, Qt);
|
|
360 specbind (Qstandard_input, Qt);
|
|
361
|
853
|
362 val = internal_catch (Qexit, command_loop_2, Qnil, 0, 0);
|
428
|
363
|
|
364 if (EQ (val, Qt))
|
|
365 /* Turn abort-recursive-edit into a quit. */
|
|
366 Fsignal (Qquit, Qnil);
|
|
367
|
771
|
368 return unbind_to (speccount);
|
428
|
369 }
|
|
370
|
|
371 #endif /* !LISP_COMMAND_LOOP */
|
|
372
|
|
373
|
|
374 /**********************************************************************/
|
|
375 /* Alternate command-loop (largely in Lisp) */
|
|
376 /**********************************************************************/
|
|
377
|
|
378 #ifdef LISP_COMMAND_LOOP
|
|
379
|
|
380 static Lisp_Object
|
|
381 load1 (Lisp_Object name)
|
|
382 {
|
|
383 /* This function can GC */
|
|
384 call4 (Qload, name, Qnil, Qt, Qnil);
|
|
385 return (Qnil);
|
|
386 }
|
|
387
|
|
388 /* emergency backups for cold-load-stream use */
|
|
389 static Lisp_Object
|
|
390 cold_load_command_error (Lisp_Object datum, Lisp_Object ignored)
|
|
391 {
|
|
392 /* This function can GC */
|
|
393 check_quit (); /* make Vquit_flag accurate */
|
|
394 Vquit_flag = Qnil;
|
|
395
|
|
396 return default_error_handler (datum);
|
|
397 }
|
|
398
|
|
399 static Lisp_Object
|
|
400 cold_load_command_loop (Lisp_Object dummy)
|
|
401 {
|
|
402 /* This function can GC */
|
|
403 return (condition_case_1 (Qt,
|
|
404 command_loop_1, Qnil,
|
|
405 cold_load_command_error, Qnil));
|
|
406 }
|
|
407
|
|
408 Lisp_Object
|
|
409 call_command_loop (Lisp_Object catch_errors)
|
|
410 {
|
|
411 /* This function can GC */
|
479
|
412 reset_this_command_keys (Vselected_console, 0); /* #### bleagh */
|
428
|
413
|
|
414 loop:
|
|
415 for (;;)
|
|
416 {
|
|
417 if (NILP (Vcommand_loop))
|
|
418 break;
|
|
419 call1 (Vcommand_loop, catch_errors);
|
|
420 }
|
|
421
|
|
422 /* This isn't a "correct" definition, but you're pretty hosed if
|
|
423 you broke "command-loop" anyway */
|
|
424 /* #### not correct with Vselected_console */
|
|
425 XCONSOLE (Vselected_console)->prefix_arg = Qnil;
|
|
426 if (NILP (catch_errors))
|
|
427 Fcommand_loop_1 ();
|
|
428 else
|
|
429 internal_catch (Qtop_level,
|
853
|
430 cold_load_command_loop, Qnil, 0, 0);
|
428
|
431 goto loop;
|
|
432 return Qnil;
|
|
433 }
|
|
434
|
|
435 static Lisp_Object
|
|
436 initial_error_handler (Lisp_Object datum, Lisp_Object ignored)
|
|
437 {
|
|
438 /* This function can GC */
|
|
439 Vcommand_loop = Qnil;
|
|
440 Fding (Qnil, Qnil, Qnil);
|
|
441
|
|
442 if (CONSP (datum) && EQ (XCAR (datum), Qquit))
|
|
443 /* Don't bother with the message */
|
|
444 return (Qt);
|
|
445
|
|
446 message ("Error in command-loop!!");
|
|
447 Fset (intern ("last-error"), datum); /* #### Better/different name? */
|
|
448 Fsit_for (make_int (2), Qnil);
|
|
449 cold_load_command_error (datum, Qnil);
|
|
450 return (Qt);
|
|
451 }
|
|
452
|
|
453 DOESNT_RETURN
|
|
454 initial_command_loop (Lisp_Object load_me)
|
|
455 {
|
|
456 /* This function can GC */
|
|
457 if (!NILP (load_me))
|
|
458 {
|
|
459 if (!NILP (condition_case_1 (Qt, load1, load_me,
|
|
460 initial_error_handler, Qnil)))
|
|
461 Fkill_emacs (make_int (-1));
|
|
462 }
|
|
463
|
|
464 for (;;)
|
|
465 {
|
|
466 command_loop_level = 0;
|
|
467 MARK_MODELINE_CHANGED;
|
|
468
|
|
469 condition_case_1 (Qt,
|
|
470 call_command_loop, Qtop_level,
|
|
471 initial_error_handler, Qnil);
|
|
472 }
|
|
473 }
|
|
474
|
|
475 #endif /* LISP_COMMAND_LOOP */
|
|
476
|
|
477
|
|
478 /**********************************************************************/
|
|
479 /* Guts of command loop */
|
|
480 /**********************************************************************/
|
|
481
|
|
482 static Lisp_Object
|
|
483 command_loop_1 (Lisp_Object dummy)
|
|
484 {
|
|
485 /* This function can GC */
|
|
486 /* #### not correct with Vselected_console */
|
|
487 XCONSOLE (Vselected_console)->prefix_arg = Qnil;
|
|
488 return (Fcommand_loop_1 ());
|
|
489 }
|
|
490
|
|
491 /* This is the actual command reading loop, sans error-handling
|
|
492 encapsulation. This is used for both the C and Lisp command
|
|
493 loops. Originally this function was written in Lisp when
|
|
494 the Lisp command loop was used, but it was too slow that way.
|
|
495
|
|
496 Under the C command loop, this function will never return
|
|
497 (although someone might throw past it). Under the Lisp
|
|
498 command loop, this will return only when the user specifies
|
|
499 a new command loop by changing the command-loop variable. */
|
|
500
|
|
501 DEFUN ("command-loop-1", Fcommand_loop_1, 0, 0, 0, /*
|
|
502 Invoke the internals of the canonical editor command loop.
|
|
503 Don't call this unless you know what you're doing.
|
|
504 */
|
|
505 ())
|
|
506 {
|
|
507 /* This function can GC */
|
|
508 Lisp_Object event = Fmake_event (Qnil, Qnil);
|
|
509 Lisp_Object old_loop = Qnil;
|
|
510 struct gcpro gcpro1, gcpro2;
|
|
511 int was_locked = in_single_console_state ();
|
|
512 GCPRO2 (event, old_loop);
|
|
513
|
|
514 /* cancel_echoing (); */
|
|
515 /* This magically makes single character keyboard macros work just
|
|
516 like the real thing. This is slightly bogus, but it's in here for
|
|
517 compatibility with Emacs 18. It's not even clear what the "right
|
|
518 thing" is. */
|
434
|
519 if (!((STRINGP (Vexecuting_macro) || VECTORP (Vexecuting_macro))
|
|
520 && XINT (Flength (Vexecuting_macro)) == 1))
|
428
|
521 Vlast_command = Qt;
|
|
522
|
|
523 #ifndef LISP_COMMAND_LOOP
|
|
524 while (1)
|
|
525 #else
|
|
526 old_loop = Vcommand_loop;
|
|
527 while (EQ (Vcommand_loop, old_loop))
|
|
528 #endif /* LISP_COMMAND_LOOP */
|
|
529 {
|
|
530 /* If focus_follows_mouse, make sure the frame with window manager
|
|
531 focus is selected. */
|
|
532 if (focus_follows_mouse)
|
|
533 investigate_frame_change ();
|
434
|
534
|
428
|
535 /* Make sure the current window's buffer is selected. */
|
|
536 {
|
|
537 Lisp_Object selected_window = Fselected_window (Qnil);
|
|
538
|
|
539 if (!NILP (selected_window) &&
|
872
|
540 XWINDOW_XBUFFER (selected_window) != current_buffer)
|
428
|
541 {
|
872
|
542 set_buffer_internal (XWINDOW_XBUFFER (selected_window));
|
428
|
543 }
|
|
544 }
|
|
545
|
444
|
546 #if 0 /* What's wrong with going through ordinary procedure of quit?
|
|
547 quitting here leaves overriding-terminal-local-map
|
|
548 when you type C-u C-u C-g. */
|
428
|
549 /* If ^G was typed before we got here (that is, before emacs was
|
|
550 idle and waiting for input) then we treat that as an interrupt. */
|
|
551 QUIT;
|
444
|
552 #endif
|
428
|
553
|
|
554 /* If minibuffer on and echo area in use, wait 2 sec and redraw
|
|
555 minibuffer. Treat a ^G here as a command, not an interrupt.
|
|
556 */
|
|
557 if (minibuf_level > 0 && echo_area_active (selected_frame ()))
|
|
558 {
|
|
559 /* Bind dont_check_for_quit to 1 so that C-g gets read in
|
|
560 rather than quitting back to the minibuffer. */
|
771
|
561 int count = begin_dont_check_for_quit ();
|
428
|
562 Fsit_for (make_int (2), Qnil);
|
|
563 clear_echo_area (selected_frame (), Qnil, 0);
|
853
|
564 Vquit_flag = Qnil; /* see begin_dont_check_for_quit() */
|
771
|
565 unbind_to (count);
|
428
|
566 }
|
|
567
|
|
568 Fnext_event (event, Qnil);
|
|
569 Fdispatch_event (event);
|
|
570
|
|
571 if (!was_locked)
|
|
572 any_console_state ();
|
1204
|
573
|
|
574 DO_NOTHING_DISABLING_NO_RETURN_WARNINGS;
|
428
|
575 }
|
|
576 #ifdef LISP_COMMAND_LOOP
|
|
577 UNGCPRO;
|
|
578 return Qnil;
|
1204
|
579 #else
|
|
580 RETURN_NOT_REACHED (Qnil);
|
428
|
581 #endif
|
|
582 }
|
|
583
|
|
584
|
|
585 /**********************************************************************/
|
|
586 /* Initialization */
|
|
587 /**********************************************************************/
|
|
588
|
|
589 void
|
|
590 syms_of_cmdloop (void)
|
|
591 {
|
733
|
592 DEFSYMBOL (Qdisabled_command_hook);
|
563
|
593 DEFSYMBOL (Qcommand_error);
|
|
594 DEFSYMBOL (Qreally_early_error_handler);
|
|
595 DEFSYMBOL (Qtop_level);
|
|
596 DEFSYMBOL (Qerrors_deactivate_region);
|
428
|
597
|
|
598 #ifndef LISP_COMMAND_LOOP
|
|
599 DEFSUBR (Frecursive_edit);
|
|
600 #endif
|
|
601 DEFSUBR (Freally_early_error_handler);
|
|
602 DEFSUBR (Fcommand_loop_1);
|
|
603 }
|
|
604
|
|
605 void
|
|
606 vars_of_cmdloop (void)
|
|
607 {
|
|
608 DEFVAR_INT ("command-loop-level", &command_loop_level /*
|
|
609 Number of recursive edits in progress.
|
|
610 */ );
|
|
611 command_loop_level = 0;
|
|
612
|
|
613 DEFVAR_LISP ("disabled-command-hook", &Vdisabled_command_hook /*
|
|
614 Value is called instead of any command that is disabled,
|
|
615 i.e. has a non-nil `disabled' property.
|
|
616 */ );
|
|
617 Vdisabled_command_hook = intern ("disabled-command-hook");
|
|
618
|
|
619 DEFVAR_LISP ("leave-window-hook", &Vleave_window_hook /*
|
|
620 Not yet implemented.
|
|
621 */ );
|
|
622 Vleave_window_hook = Qnil;
|
|
623
|
|
624 DEFVAR_LISP ("enter-window-hook", &Venter_window_hook /*
|
|
625 Not yet implemented.
|
|
626 */ );
|
|
627 Venter_window_hook = Qnil;
|
|
628
|
|
629 #ifndef LISP_COMMAND_LOOP
|
|
630 DEFVAR_LISP ("top-level", &Vtop_level /*
|
|
631 Form to evaluate when Emacs starts up.
|
|
632 Useful to set before you dump a modified Emacs.
|
|
633 */ );
|
|
634 Vtop_level = Qnil;
|
|
635 #else
|
|
636 DEFVAR_LISP ("command-loop", &Vcommand_loop /*
|
|
637 Function or one argument to call to read and process keyboard commands.
|
|
638 The passed argument specifies whether or not to handle errors.
|
|
639 */ );
|
|
640 Vcommand_loop = Qnil;
|
|
641 #endif /* LISP_COMMAND_LOOP */
|
|
642 }
|