428
|
1 /* The console object.
|
|
2 Copyright (C) 1992, 1993, 1994 Free Software Foundation, Inc.
|
800
|
3 Copyright (C) 1996, 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: Not in FSF. */
|
|
23
|
|
24 /* Written by Ben Wing. */
|
|
25
|
|
26 #include <config.h>
|
|
27 #include "lisp.h"
|
|
28
|
|
29 #include "buffer.h"
|
800
|
30 #include "device.h"
|
428
|
31 #include "events.h"
|
|
32 #include "frame.h"
|
|
33 #include "redisplay.h"
|
|
34 #include "sysdep.h"
|
|
35 #include "window.h"
|
|
36
|
800
|
37 #include "console-tty.h"
|
|
38
|
428
|
39 Lisp_Object Vconsole_list, Vselected_console;
|
|
40
|
|
41 Lisp_Object Vcreate_console_hook, Vdelete_console_hook;
|
|
42
|
|
43 Lisp_Object Qconsolep, Qconsole_live_p;
|
|
44 Lisp_Object Qcreate_console_hook;
|
|
45 Lisp_Object Qdelete_console_hook;
|
|
46
|
|
47 Lisp_Object Qsuspend_hook;
|
|
48 Lisp_Object Qsuspend_resume_hook;
|
|
49
|
|
50 /* This structure holds the default values of the console-local
|
|
51 variables defined with DEFVAR_CONSOLE_LOCAL, that have special
|
|
52 slots in each console. The default value occupies the same slot
|
|
53 in this structure as an individual console's value occupies in
|
|
54 that console. Setting the default value also goes through the
|
|
55 list of consoles and stores into each console that does not say
|
|
56 it has a local value. */
|
|
57 Lisp_Object Vconsole_defaults;
|
|
58 static void *console_defaults_saved_slots;
|
|
59
|
|
60 /* This structure marks which slots in a console have corresponding
|
|
61 default values in console_defaults.
|
|
62 Each such slot has a nonzero value in this structure.
|
|
63 The value has only one nonzero bit.
|
|
64
|
|
65 When a console has its own local value for a slot,
|
|
66 the bit for that slot (found in the same slot in this structure)
|
|
67 is turned on in the console's local_var_flags slot.
|
|
68
|
|
69 If a slot in this structure is 0, then there is a DEFVAR_CONSOLE_LOCAL
|
|
70 for the slot, but there is no default value for it; the corresponding
|
|
71 slot in console_defaults is not used except to initialize newly-created
|
|
72 consoles.
|
|
73
|
|
74 If a slot is -1, then there is a DEFVAR_CONSOLE_LOCAL for it
|
|
75 as well as a default value which is used to initialize newly-created
|
|
76 consoles and as a reset-value when local-vars are killed.
|
|
77
|
|
78 If a slot is -2, there is no DEFVAR_CONSOLE_LOCAL for it.
|
|
79 (The slot is always local, but there's no lisp variable for it.)
|
|
80 The default value is only used to initialize newly-creation consoles.
|
|
81
|
|
82 If a slot is -3, then there is no DEFVAR_CONSOLE_LOCAL for it but
|
|
83 there is a default which is used to initialize newly-creation
|
|
84 consoles and as a reset-value when local-vars are killed.
|
|
85
|
|
86
|
|
87 */
|
|
88 struct console console_local_flags;
|
|
89
|
|
90 /* This structure holds the names of symbols whose values may be
|
|
91 console-local. It is indexed and accessed in the same way as the above. */
|
|
92 static Lisp_Object Vconsole_local_symbols;
|
|
93 static void *console_local_symbols_saved_slots;
|
|
94
|
|
95 DEFINE_CONSOLE_TYPE (dead);
|
|
96
|
|
97 Lisp_Object Vconsole_type_list;
|
|
98
|
|
99 console_type_entry_dynarr *the_console_type_entry_dynarr;
|
|
100
|
|
101
|
|
102 static Lisp_Object
|
|
103 mark_console (Lisp_Object obj)
|
|
104 {
|
|
105 struct console *con = XCONSOLE (obj);
|
|
106
|
|
107 #define MARKED_SLOT(x) mark_object (con->x)
|
|
108 #include "conslots.h"
|
|
109
|
|
110 /* Can be zero for Vconsole_defaults, Vconsole_local_symbols */
|
|
111 if (con->conmeths)
|
|
112 {
|
|
113 mark_object (con->conmeths->symbol);
|
|
114 MAYBE_CONMETH (con, mark_console, (con));
|
|
115 }
|
|
116
|
|
117 return Qnil;
|
|
118 }
|
|
119
|
|
120 static void
|
|
121 print_console (Lisp_Object obj, Lisp_Object printcharfun, int escapeflag)
|
|
122 {
|
|
123 struct console *con = XCONSOLE (obj);
|
|
124
|
|
125 if (print_readably)
|
563
|
126 printing_unreadable_object ("#<console %s 0x%x>",
|
|
127 XSTRING_DATA (con->name), con->header.uid);
|
428
|
128
|
800
|
129 write_fmt_string (printcharfun, "#<%s-console",
|
|
130 !CONSOLE_LIVE_P (con) ? "dead" : CONSOLE_TYPE_NAME (con));
|
440
|
131 if (CONSOLE_LIVE_P (con) && !NILP (CONSOLE_CONNECTION (con)))
|
800
|
132 write_fmt_string_lisp (printcharfun, " on %S", 1,
|
|
133 CONSOLE_CONNECTION (con));
|
|
134 write_fmt_string (printcharfun, " 0x%x>", con->header.uid);
|
428
|
135 }
|
|
136
|
|
137 DEFINE_LRECORD_IMPLEMENTATION ("console", console,
|
|
138 mark_console, print_console, 0, 0, 0, 0,
|
|
139 struct console);
|
|
140
|
|
141 static struct console *
|
|
142 allocate_console (void)
|
|
143 {
|
|
144 Lisp_Object console;
|
|
145 struct console *con = alloc_lcrecord_type (struct console, &lrecord_console);
|
|
146 struct gcpro gcpro1;
|
|
147
|
|
148 copy_lcrecord (con, XCONSOLE (Vconsole_defaults));
|
|
149
|
793
|
150 console = wrap_console (con);
|
428
|
151 GCPRO1 (console);
|
|
152
|
|
153 con->quit_char = 7; /* C-g */
|
771
|
154 con->command_builder = allocate_command_builder (console, 1);
|
428
|
155 con->function_key_map = Fmake_sparse_keymap (Qnil);
|
|
156
|
|
157 UNGCPRO;
|
|
158 return con;
|
|
159 }
|
|
160
|
|
161 struct console *
|
|
162 decode_console (Lisp_Object console)
|
|
163 {
|
|
164 if (NILP (console))
|
|
165 console = Fselected_console ();
|
|
166 /* quietly accept devices and frames for the console arg */
|
|
167 if (DEVICEP (console) || FRAMEP (console))
|
|
168 console = DEVICE_CONSOLE (decode_device (console));
|
|
169 CHECK_LIVE_CONSOLE (console);
|
|
170 return XCONSOLE (console);
|
|
171 }
|
|
172
|
|
173
|
|
174 struct console_methods *
|
578
|
175 decode_console_type (Lisp_Object type, Error_Behavior errb)
|
428
|
176 {
|
|
177 int i;
|
|
178
|
|
179 for (i = 0; i < Dynarr_length (the_console_type_entry_dynarr); i++)
|
|
180 if (EQ (type, Dynarr_at (the_console_type_entry_dynarr, i).symbol))
|
|
181 return Dynarr_at (the_console_type_entry_dynarr, i).meths;
|
|
182
|
563
|
183 maybe_invalid_constant ("Invalid console type", type, Qconsole, errb);
|
428
|
184
|
|
185 return 0;
|
|
186 }
|
|
187
|
|
188 int
|
|
189 valid_console_type_p (Lisp_Object type)
|
|
190 {
|
|
191 return decode_console_type (type, ERROR_ME_NOT) != 0;
|
|
192 }
|
|
193
|
|
194 DEFUN ("valid-console-type-p", Fvalid_console_type_p, 1, 1, 0, /*
|
444
|
195 Return t if CONSOLE-TYPE is a valid console type.
|
428
|
196 Valid types are 'x, 'tty, and 'stream.
|
|
197 */
|
|
198 (console_type))
|
|
199 {
|
|
200 return valid_console_type_p (console_type) ? Qt : Qnil;
|
|
201 }
|
|
202
|
|
203 DEFUN ("console-type-list", Fconsole_type_list, 0, 0, 0, /*
|
|
204 Return a list of valid console types.
|
|
205 */
|
|
206 ())
|
|
207 {
|
|
208 return Fcopy_sequence (Vconsole_type_list);
|
|
209 }
|
|
210
|
|
211 DEFUN ("cdfw-console", Fcdfw_console, 1, 1, 0, /*
|
|
212 Given a console, device, frame, or window, return the associated console.
|
|
213 Return nil otherwise.
|
|
214 */
|
444
|
215 (object))
|
428
|
216 {
|
444
|
217 return CDFW_CONSOLE (object);
|
428
|
218 }
|
|
219
|
|
220
|
|
221 DEFUN ("selected-console", Fselected_console, 0, 0, 0, /*
|
|
222 Return the console which is currently active.
|
|
223 */
|
|
224 ())
|
|
225 {
|
|
226 return Vselected_console;
|
|
227 }
|
|
228
|
|
229 /* Called from selected_device_1(), called from selected_frame_1(),
|
|
230 called from Fselect_window() */
|
|
231 void
|
|
232 select_console_1 (Lisp_Object console)
|
|
233 {
|
|
234 /* perhaps this should do something more complicated */
|
|
235 Vselected_console = console;
|
|
236
|
|
237 /* #### Schedule this to be removed in 19.14 */
|
|
238 #ifdef HAVE_X_WINDOWS
|
|
239 if (CONSOLE_X_P (XCONSOLE (console)))
|
|
240 Vwindow_system = Qx;
|
|
241 else
|
|
242 #endif
|
462
|
243 #ifdef HAVE_GTK
|
|
244 if (CONSOLE_GTK_P (XCONSOLE (console)))
|
|
245 Vwindow_system = Qgtk;
|
|
246 else
|
|
247 #endif
|
428
|
248 #ifdef HAVE_MS_WINDOWS
|
|
249 if (CONSOLE_MSWINDOWS_P (XCONSOLE (console)))
|
|
250 Vwindow_system = Qmswindows;
|
|
251 else
|
|
252 #endif
|
|
253 Vwindow_system = Qnil;
|
|
254 }
|
|
255
|
|
256 DEFUN ("select-console", Fselect_console, 1, 1, 0, /*
|
|
257 Select the console CONSOLE.
|
|
258 Subsequent editing commands apply to its selected device, selected frame,
|
|
259 and selected window. The selection of CONSOLE lasts until the next time
|
|
260 the user does something to select a different console, or until the next
|
|
261 time this function is called.
|
|
262 */
|
|
263 (console))
|
|
264 {
|
|
265 Lisp_Object device;
|
|
266
|
|
267 CHECK_LIVE_CONSOLE (console);
|
|
268
|
|
269 device = CONSOLE_SELECTED_DEVICE (XCONSOLE (console));
|
|
270 if (!NILP (device))
|
|
271 {
|
|
272 struct device *d = XDEVICE (device);
|
|
273 Lisp_Object frame = DEVICE_SELECTED_FRAME (d);
|
|
274 if (!NILP (frame))
|
|
275 {
|
|
276 struct frame *f = XFRAME(frame);
|
|
277 Fselect_window (FRAME_SELECTED_WINDOW (f), Qnil);
|
|
278 }
|
|
279 else
|
563
|
280 invalid_operation ("Can't select console with no frames", Qunbound);
|
428
|
281 }
|
|
282 else
|
563
|
283 invalid_operation ("Can't select a console with no devices", Qunbound);
|
428
|
284 return Qnil;
|
|
285 }
|
|
286
|
|
287 void
|
|
288 set_console_last_nonminibuf_frame (struct console *con,
|
|
289 Lisp_Object frame)
|
|
290 {
|
|
291 con->last_nonminibuf_frame = frame;
|
|
292 }
|
|
293
|
|
294 DEFUN ("consolep", Fconsolep, 1, 1, 0, /*
|
|
295 Return non-nil if OBJECT is a console.
|
|
296 */
|
|
297 (object))
|
|
298 {
|
|
299 return CONSOLEP (object) ? Qt : Qnil;
|
|
300 }
|
|
301
|
|
302 DEFUN ("console-live-p", Fconsole_live_p, 1, 1, 0, /*
|
|
303 Return non-nil if OBJECT is a console that has not been deleted.
|
|
304 */
|
|
305 (object))
|
|
306 {
|
|
307 return CONSOLEP (object) && CONSOLE_LIVE_P (XCONSOLE (object)) ? Qt : Qnil;
|
|
308 }
|
|
309
|
|
310 DEFUN ("console-type", Fconsole_type, 0, 1, 0, /*
|
444
|
311 Return the console type (e.g. `x' or `tty') of CONSOLE.
|
428
|
312 Value is `tty' for a tty console (a character-only terminal),
|
|
313 `x' for a console that is an X display,
|
|
314 `mswindows' for a console that is a Windows NT/95/97 connection,
|
|
315 `pc' for a console that is a direct-write MS-DOS connection (not yet
|
|
316 implemented),
|
|
317 `stream' for a stream console (which acts like a stdio stream), and
|
|
318 `dead' for a deleted console.
|
|
319 */
|
|
320 (console))
|
|
321 {
|
|
322 /* don't call decode_console() because we want to allow for dead
|
|
323 consoles. */
|
|
324 if (NILP (console))
|
|
325 console = Fselected_console ();
|
|
326 CHECK_CONSOLE (console);
|
|
327 return CONSOLE_TYPE (XCONSOLE (console));
|
|
328 }
|
|
329
|
|
330 DEFUN ("console-name", Fconsole_name, 0, 1, 0, /*
|
444
|
331 Return the name of CONSOLE.
|
428
|
332 */
|
|
333 (console))
|
|
334 {
|
|
335 return CONSOLE_NAME (decode_console (console));
|
|
336 }
|
|
337
|
|
338 DEFUN ("console-connection", Fconsole_connection, 0, 1, 0, /*
|
|
339 Return the connection of the specified console.
|
|
340 CONSOLE defaults to the selected console if omitted.
|
|
341 */
|
|
342 (console))
|
|
343 {
|
|
344 return CONSOLE_CONNECTION (decode_console (console));
|
|
345 }
|
|
346
|
|
347 static Lisp_Object
|
|
348 semi_canonicalize_console_connection (struct console_methods *meths,
|
578
|
349 Lisp_Object name, Error_Behavior errb)
|
428
|
350 {
|
440
|
351 if (HAS_CONTYPE_METH_P (meths, semi_canonicalize_console_connection))
|
|
352 return CONTYPE_METH (meths, semi_canonicalize_console_connection,
|
|
353 (name, errb));
|
|
354 else
|
|
355 return CONTYPE_METH_OR_GIVEN (meths, canonicalize_console_connection,
|
|
356 (name, errb), name);
|
428
|
357 }
|
|
358
|
|
359 static Lisp_Object
|
|
360 canonicalize_console_connection (struct console_methods *meths,
|
578
|
361 Lisp_Object name, Error_Behavior errb)
|
428
|
362 {
|
440
|
363 if (HAS_CONTYPE_METH_P (meths, canonicalize_console_connection))
|
|
364 return CONTYPE_METH (meths, canonicalize_console_connection,
|
|
365 (name, errb));
|
|
366 else
|
|
367 return CONTYPE_METH_OR_GIVEN (meths, semi_canonicalize_console_connection,
|
|
368 (name, errb), name);
|
428
|
369 }
|
|
370
|
|
371 static Lisp_Object
|
|
372 find_console_of_type (struct console_methods *meths, Lisp_Object canon)
|
|
373 {
|
|
374 Lisp_Object concons;
|
|
375
|
|
376 CONSOLE_LOOP (concons)
|
|
377 {
|
|
378 Lisp_Object console = XCAR (concons);
|
|
379
|
|
380 if (EQ (CONMETH_TYPE (meths), CONSOLE_TYPE (XCONSOLE (console)))
|
|
381 && internal_equal (CONSOLE_CANON_CONNECTION (XCONSOLE (console)),
|
|
382 canon, 0))
|
|
383 return console;
|
|
384 }
|
|
385
|
|
386 return Qnil;
|
|
387 }
|
|
388
|
|
389 DEFUN ("find-console", Ffind_console, 1, 2, 0, /*
|
|
390 Look for an existing console attached to connection CONNECTION.
|
|
391 Return the console if found; otherwise, return nil.
|
|
392
|
|
393 If TYPE is specified, only return consoles of that type; otherwise,
|
|
394 return consoles of any type. (It is possible, although unlikely,
|
|
395 that two consoles of different types could have the same connection
|
|
396 name; in such a case, the first console found is returned.)
|
|
397 */
|
|
398 (connection, type))
|
|
399 {
|
|
400 Lisp_Object canon = Qnil;
|
|
401 struct gcpro gcpro1;
|
|
402
|
|
403 GCPRO1 (canon);
|
|
404
|
|
405 if (!NILP (type))
|
|
406 {
|
|
407 struct console_methods *conmeths = decode_console_type (type, ERROR_ME);
|
|
408 canon = canonicalize_console_connection (conmeths, connection,
|
|
409 ERROR_ME_NOT);
|
|
410 if (UNBOUNDP (canon))
|
|
411 RETURN_UNGCPRO (Qnil);
|
|
412
|
|
413 RETURN_UNGCPRO (find_console_of_type (conmeths, canon));
|
|
414 }
|
|
415 else
|
|
416 {
|
|
417 int i;
|
|
418
|
|
419 for (i = 0; i < Dynarr_length (the_console_type_entry_dynarr); i++)
|
|
420 {
|
|
421 struct console_methods *conmeths =
|
|
422 Dynarr_at (the_console_type_entry_dynarr, i).meths;
|
|
423 canon = canonicalize_console_connection (conmeths, connection,
|
|
424 ERROR_ME_NOT);
|
|
425 if (!UNBOUNDP (canon))
|
|
426 {
|
|
427 Lisp_Object console = find_console_of_type (conmeths, canon);
|
|
428 if (!NILP (console))
|
|
429 RETURN_UNGCPRO (console);
|
|
430 }
|
|
431 }
|
|
432
|
|
433 RETURN_UNGCPRO (Qnil);
|
|
434 }
|
|
435 }
|
|
436
|
|
437 DEFUN ("get-console", Fget_console, 1, 2, 0, /*
|
|
438 Look for an existing console attached to connection CONNECTION.
|
|
439 Return the console if found; otherwise, signal an error.
|
|
440
|
|
441 If TYPE is specified, only return consoles of that type; otherwise,
|
|
442 return consoles of any type. (It is possible, although unlikely,
|
|
443 that two consoles of different types could have the same connection
|
|
444 name; in such a case, the first console found is returned.)
|
|
445 */
|
|
446 (connection, type))
|
|
447 {
|
|
448 Lisp_Object console = Ffind_console (connection, type);
|
|
449 if (NILP (console))
|
|
450 {
|
|
451 if (NILP (type))
|
563
|
452 invalid_argument ("No such console", connection);
|
428
|
453 else
|
563
|
454 invalid_argument_2 ("No such console", type, connection);
|
428
|
455 }
|
|
456 return console;
|
|
457 }
|
|
458
|
|
459 Lisp_Object
|
|
460 create_console (Lisp_Object name, Lisp_Object type, Lisp_Object connection,
|
|
461 Lisp_Object props)
|
|
462 {
|
|
463 /* This function can GC */
|
|
464 struct console *con;
|
|
465 Lisp_Object console;
|
|
466 struct gcpro gcpro1;
|
|
467
|
|
468 console = Ffind_console (connection, type);
|
|
469 if (!NILP (console))
|
|
470 return console;
|
|
471
|
|
472 con = allocate_console ();
|
793
|
473 console = wrap_console (con);
|
428
|
474
|
|
475 GCPRO1 (console);
|
|
476
|
|
477 con->conmeths = decode_console_type (type, ERROR_ME);
|
|
478
|
|
479 CONSOLE_NAME (con) = name;
|
|
480 CONSOLE_CONNECTION (con) =
|
|
481 semi_canonicalize_console_connection (con->conmeths, connection,
|
|
482 ERROR_ME);
|
|
483 CONSOLE_CANON_CONNECTION (con) =
|
|
484 canonicalize_console_connection (con->conmeths, connection,
|
|
485 ERROR_ME);
|
|
486
|
|
487 MAYBE_CONMETH (con, init_console, (con, props));
|
|
488
|
|
489 /* Do it this way so that the console list is in order of creation */
|
|
490 Vconsole_list = nconc2 (Vconsole_list, Fcons (console, Qnil));
|
|
491
|
440
|
492 if (CONMETH_OR_GIVEN (con, initially_selected_for_input, (con), 0))
|
428
|
493 event_stream_select_console (con);
|
|
494
|
|
495 UNGCPRO;
|
|
496 return console;
|
|
497 }
|
|
498
|
|
499 void
|
|
500 add_entry_to_console_type_list (Lisp_Object symbol,
|
|
501 struct console_methods *meths)
|
|
502 {
|
|
503 struct console_type_entry entry;
|
|
504
|
|
505 entry.symbol = symbol;
|
|
506 entry.meths = meths;
|
|
507 Dynarr_add (the_console_type_entry_dynarr, entry);
|
|
508 Vconsole_type_list = Fcons (symbol, Vconsole_type_list);
|
|
509 }
|
|
510
|
|
511 /* find a console other than the selected one. Prefer non-stream
|
|
512 consoles over stream consoles. */
|
|
513
|
|
514 static Lisp_Object
|
|
515 find_other_console (Lisp_Object console)
|
|
516 {
|
|
517 Lisp_Object concons;
|
|
518
|
|
519 /* look for a non-stream console */
|
|
520 CONSOLE_LOOP (concons)
|
|
521 {
|
|
522 Lisp_Object con = XCAR (concons);
|
|
523 if (!CONSOLE_STREAM_P (XCONSOLE (con))
|
|
524 && !EQ (con, console)
|
|
525 && !NILP (CONSOLE_SELECTED_DEVICE (XCONSOLE (con)))
|
|
526 && !NILP (DEVICE_SELECTED_FRAME
|
|
527 (XDEVICE (CONSOLE_SELECTED_DEVICE (XCONSOLE (con))))))
|
|
528 break;
|
|
529 }
|
|
530 if (!NILP (concons))
|
|
531 return XCAR (concons);
|
|
532
|
|
533 /* OK, now look for a stream console */
|
|
534 CONSOLE_LOOP (concons)
|
|
535 {
|
|
536 Lisp_Object con = XCAR (concons);
|
|
537 if (!EQ (con, console)
|
|
538 && !NILP (CONSOLE_SELECTED_DEVICE (XCONSOLE (con)))
|
|
539 && !NILP (DEVICE_SELECTED_FRAME
|
|
540 (XDEVICE (CONSOLE_SELECTED_DEVICE (XCONSOLE (con))))))
|
|
541 break;
|
|
542 }
|
|
543 if (!NILP (concons))
|
|
544 return XCAR (concons);
|
|
545
|
|
546 /* Sorry, there ain't none */
|
|
547 return Qnil;
|
|
548 }
|
|
549
|
|
550 static int
|
|
551 find_nonminibuffer_frame_not_on_console_predicate (Lisp_Object frame,
|
|
552 void *closure)
|
|
553 {
|
|
554 Lisp_Object console;
|
|
555
|
826
|
556 console = VOID_TO_LISP (closure);
|
428
|
557 if (FRAME_MINIBUF_ONLY_P (XFRAME (frame)))
|
|
558 return 0;
|
|
559 if (EQ (console, FRAME_CONSOLE (XFRAME (frame))))
|
|
560 return 0;
|
|
561 return 1;
|
|
562 }
|
|
563
|
|
564 static Lisp_Object
|
|
565 find_nonminibuffer_frame_not_on_console (Lisp_Object console)
|
|
566 {
|
|
567 return find_some_frame (find_nonminibuffer_frame_not_on_console_predicate,
|
|
568 LISP_TO_VOID (console));
|
|
569 }
|
|
570
|
617
|
571 static void
|
|
572 nuke_all_console_slots (struct console *con, Lisp_Object zap)
|
|
573 {
|
|
574 zero_lcrecord (con);
|
|
575
|
|
576 #define MARKED_SLOT(x) con->x = zap
|
|
577 #include "conslots.h"
|
|
578 }
|
|
579
|
428
|
580 /* Delete console CON.
|
|
581
|
|
582 If FORCE is non-zero, allow deletion of the only frame.
|
|
583
|
|
584 If CALLED_FROM_KILL_EMACS is non-zero, then, if
|
|
585 deleting the last console, just delete it,
|
|
586 instead of calling `save-buffers-kill-emacs'.
|
|
587
|
|
588 If FROM_IO_ERROR is non-zero, then the console is gone due
|
|
589 to an I/O error. This affects what happens if we exit
|
|
590 (we do an emergency exit instead of `save-buffers-kill-emacs'.)
|
|
591 */
|
|
592
|
|
593 void
|
|
594 delete_console_internal (struct console *con, int force,
|
|
595 int called_from_kill_emacs, int from_io_error)
|
|
596 {
|
|
597 /* This function can GC */
|
|
598 Lisp_Object console;
|
|
599 struct gcpro gcpro1;
|
|
600
|
|
601 /* OK to delete an already-deleted console. */
|
|
602 if (!CONSOLE_LIVE_P (con))
|
|
603 return;
|
|
604
|
793
|
605 console = wrap_console (con);
|
428
|
606 GCPRO1 (console);
|
|
607
|
|
608 if (!called_from_kill_emacs)
|
|
609 {
|
|
610 int down_we_go = 0;
|
|
611
|
|
612 if ((XINT (Flength (Vconsole_list)) == 1)
|
|
613 /* if we just created the console, it might not be listed,
|
|
614 or something ... */
|
|
615 && !NILP (memq_no_quit (console, Vconsole_list)))
|
|
616 down_we_go = 1;
|
|
617 /* If there aren't any nonminibuffer frames that would
|
|
618 be left, then exit. */
|
|
619 else if (NILP (find_nonminibuffer_frame_not_on_console (console)))
|
|
620 down_we_go = 1;
|
|
621
|
|
622 if (down_we_go)
|
|
623 {
|
|
624 if (!force)
|
563
|
625 invalid_operation ("Attempt to delete the only frame", Qunbound);
|
428
|
626 else if (from_io_error)
|
|
627 {
|
|
628 /* Mayday mayday! We're going down! */
|
|
629 stderr_out (" Autosaving and exiting...\n");
|
|
630 Vwindow_system = Qnil; /* let it lie! */
|
|
631 preparing_for_armageddon = 1;
|
|
632 Fkill_emacs (make_int (70));
|
|
633 }
|
|
634 else
|
|
635 {
|
|
636 call0 (Qsave_buffers_kill_emacs);
|
|
637 UNGCPRO;
|
|
638 /* If we get here, the user said they didn't want
|
|
639 to exit, so don't. */
|
|
640 return;
|
|
641 }
|
|
642 }
|
|
643 }
|
|
644
|
|
645 /* Breathe a sigh of relief. We're still alive. */
|
|
646
|
|
647 {
|
|
648 Lisp_Object frmcons, devcons;
|
|
649
|
|
650 /* First delete all frames without their own minibuffers,
|
|
651 to avoid errors coming from attempting to delete a frame
|
|
652 that is a surrogate for another frame.
|
|
653
|
|
654 We don't set "called_from_delete_console" because we want the
|
|
655 device to go ahead and get deleted if we delete the last frame
|
|
656 on a device. We won't run into trouble here because for any
|
|
657 frame without a minibuffer, there has to be another one on
|
|
658 the same console with a minibuffer, and we're not deleting that,
|
|
659 so delete_console_internal() won't get recursively called.
|
|
660
|
|
661 WRONG! With surrogate minibuffers this isn't true. Frames
|
|
662 with only a minibuffer are not enough to prevent
|
|
663 delete_frame_internal from triggering a device deletion. */
|
|
664 CONSOLE_FRAME_LOOP_NO_BREAK (frmcons, devcons, con)
|
|
665 {
|
|
666 struct frame *f = XFRAME (XCAR (frmcons));
|
|
667 /* delete_frame_internal() might do anything such as run hooks,
|
|
668 so be defensive. */
|
|
669 if (FRAME_LIVE_P (f) && !FRAME_HAS_MINIBUF_P (f))
|
|
670 delete_frame_internal (f, 1, 1, from_io_error);
|
|
671
|
|
672 if (!CONSOLE_LIVE_P (con)) /* make sure the delete-*-hook didn't
|
|
673 go ahead and delete anything */
|
|
674 {
|
|
675 UNGCPRO;
|
|
676 return;
|
|
677 }
|
|
678 }
|
|
679
|
|
680 CONSOLE_DEVICE_LOOP (devcons, con)
|
|
681 {
|
|
682 struct device *d = XDEVICE (XCAR (devcons));
|
|
683 /* delete_device_internal() might do anything such as run hooks,
|
|
684 so be defensive. */
|
|
685 if (DEVICE_LIVE_P (d))
|
|
686 delete_device_internal (d, 1, 1, from_io_error);
|
|
687 if (!CONSOLE_LIVE_P (con)) /* make sure the delete-*-hook didn't
|
|
688 go ahead and delete anything */
|
|
689 {
|
|
690 UNGCPRO;
|
|
691 return;
|
|
692 }
|
|
693 }
|
|
694 }
|
|
695
|
|
696 CONSOLE_SELECTED_DEVICE (con) = Qnil;
|
|
697
|
|
698 /* try to select another console */
|
|
699
|
|
700 if (EQ (console, Fselected_console ()))
|
|
701 {
|
|
702 Lisp_Object other_dev = find_other_console (console);
|
|
703 if (!NILP (other_dev))
|
|
704 Fselect_console (other_dev);
|
|
705 else
|
|
706 {
|
|
707 /* necessary? */
|
|
708 Vselected_console = Qnil;
|
|
709 Vwindow_system = Qnil;
|
|
710 }
|
|
711 }
|
|
712
|
|
713 if (con->input_enabled)
|
|
714 event_stream_unselect_console (con);
|
|
715
|
|
716 MAYBE_CONMETH (con, delete_console, (con));
|
|
717
|
|
718 Vconsole_list = delq_no_quit (console, Vconsole_list);
|
617
|
719
|
428
|
720 RESET_CHANGED_SET_FLAGS;
|
617
|
721
|
|
722 /* Nobody should be accessing anything in this object any more, and
|
|
723 making all Lisp_Objects Qnil allows for better GC'ing in case a
|
|
724 pointer to the dead console continues to hang around. Zero all
|
|
725 other structs in case someone tries to access something through
|
|
726 them. */
|
|
727 nuke_all_console_slots (con, Qnil);
|
428
|
728 con->conmeths = dead_console_methods;
|
|
729
|
|
730 UNGCPRO;
|
|
731 }
|
|
732
|
|
733 void
|
|
734 io_error_delete_console (Lisp_Object console)
|
|
735 {
|
|
736 delete_console_internal (XCONSOLE (console), 1, 0, 1);
|
|
737 }
|
|
738
|
|
739 DEFUN ("delete-console", Fdelete_console, 1, 2, 0, /*
|
|
740 Delete CONSOLE, permanently eliminating it from use.
|
|
741 Normally, you cannot delete the last non-minibuffer-only frame (you must
|
|
742 use `save-buffers-kill-emacs' or `kill-emacs'). However, if optional
|
|
743 second argument FORCE is non-nil, you can delete the last frame. (This
|
|
744 will automatically call `save-buffers-kill-emacs'.)
|
|
745 */
|
|
746 (console, force))
|
|
747 {
|
|
748 CHECK_CONSOLE (console);
|
|
749 delete_console_internal (XCONSOLE (console), !NILP (force), 0, 0);
|
|
750 return Qnil;
|
|
751 }
|
|
752
|
|
753 DEFUN ("console-list", Fconsole_list, 0, 0, 0, /*
|
|
754 Return a list of all consoles.
|
|
755 */
|
|
756 ())
|
|
757 {
|
|
758 return Fcopy_sequence (Vconsole_list);
|
|
759 }
|
|
760
|
|
761 DEFUN ("console-device-list", Fconsole_device_list, 0, 1, 0, /*
|
|
762 Return a list of all devices on CONSOLE.
|
444
|
763 If CONSOLE is nil, the selected console is used.
|
428
|
764 */
|
|
765 (console))
|
|
766 {
|
|
767 return Fcopy_sequence (CONSOLE_DEVICE_LIST (decode_console (console)));
|
|
768 }
|
|
769
|
|
770 DEFUN ("console-enable-input", Fconsole_enable_input, 1, 1, 0, /*
|
|
771 Enable input on console CONSOLE.
|
|
772 */
|
|
773 (console))
|
|
774 {
|
|
775 struct console *con = decode_console (console);
|
|
776 if (!con->input_enabled)
|
|
777 event_stream_select_console (con);
|
|
778 return Qnil;
|
|
779 }
|
|
780
|
|
781 DEFUN ("console-disable-input", Fconsole_disable_input, 1, 1, 0, /*
|
|
782 Disable input on console CONSOLE.
|
|
783 */
|
|
784 (console))
|
|
785 {
|
|
786 struct console *con = decode_console (console);
|
|
787 if (con->input_enabled)
|
|
788 event_stream_unselect_console (con);
|
|
789 return Qnil;
|
|
790 }
|
|
791
|
|
792 DEFUN ("console-on-window-system-p", Fconsole_on_window_system_p, 0, 1, 0, /*
|
444
|
793 Return t if CONSOLE is on a window system.
|
|
794 If CONSOLE is nil, the selected console is used.
|
428
|
795 This generally means that there is support for the mouse, the menubar,
|
|
796 the toolbar, glyphs, etc.
|
|
797 */
|
|
798 (console))
|
|
799 {
|
|
800 Lisp_Object type = CONSOLE_TYPE (decode_console (console));
|
|
801
|
|
802 return !EQ (type, Qtty) && !EQ (type, Qstream) ? Qt : Qnil;
|
|
803 }
|
|
804
|
|
805
|
|
806
|
|
807 /**********************************************************************/
|
|
808 /* Miscellaneous low-level functions */
|
|
809 /**********************************************************************/
|
|
810
|
|
811 static Lisp_Object
|
|
812 unwind_init_sys_modes (Lisp_Object console)
|
|
813 {
|
|
814 reinit_initial_console ();
|
|
815
|
|
816 if (!no_redraw_on_reenter &&
|
|
817 CONSOLEP (console) &&
|
|
818 CONSOLE_LIVE_P (XCONSOLE (console)))
|
|
819 {
|
|
820 struct frame *f =
|
|
821 XFRAME (DEVICE_SELECTED_FRAME
|
|
822 (XDEVICE (CONSOLE_SELECTED_DEVICE (XCONSOLE (console)))));
|
|
823 MARK_FRAME_CHANGED (f);
|
|
824 }
|
|
825 return Qnil;
|
|
826 }
|
|
827
|
|
828 DEFUN ("suspend-emacs", Fsuspend_emacs, 0, 1, "", /*
|
|
829 Stop Emacs and return to superior process. You can resume later.
|
|
830 On systems that don't have job control, run a subshell instead.
|
|
831
|
|
832 If optional arg STUFFSTRING is non-nil, its characters are stuffed
|
|
833 to be read as terminal input by Emacs's superior shell.
|
|
834
|
|
835 Before suspending, run the normal hook `suspend-hook'.
|
|
836 After resumption run the normal hook `suspend-resume-hook'.
|
|
837
|
|
838 Some operating systems cannot stop the Emacs process and resume it later.
|
|
839 On such systems, Emacs will start a subshell and wait for it to exit.
|
|
840 */
|
|
841 (stuffstring))
|
|
842 {
|
|
843 int speccount = specpdl_depth ();
|
|
844 struct gcpro gcpro1;
|
|
845
|
|
846 if (!NILP (stuffstring))
|
|
847 CHECK_STRING (stuffstring);
|
|
848 GCPRO1 (stuffstring);
|
|
849
|
|
850 /* There used to be a check that the initial console is TTY.
|
|
851 This is bogus. Even checking to see whether any console
|
|
852 is a controlling terminal is not correct -- maybe
|
|
853 the user used the -t option or something. If we want to
|
|
854 suspend, then we suspend. Period. */
|
|
855
|
|
856 /* Call value of suspend-hook. */
|
|
857 run_hook (Qsuspend_hook);
|
|
858
|
|
859 reset_initial_console ();
|
|
860 /* sys_suspend can get an error if it tries to fork a subshell
|
|
861 and the system resources aren't available for that. */
|
|
862 record_unwind_protect (unwind_init_sys_modes, Vcontrolling_terminal);
|
|
863 stuff_buffered_input (stuffstring);
|
|
864 sys_suspend ();
|
|
865 /* the console is un-reset inside of the unwind-protect. */
|
771
|
866 unbind_to (speccount);
|
428
|
867
|
|
868 #ifdef SIGWINCH
|
|
869 /* It is possible that a size change occurred while we were
|
|
870 suspended. Assume one did just to be safe. It won't hurt
|
|
871 anything if one didn't. */
|
|
872 asynch_device_change_pending++;
|
|
873 #endif
|
|
874
|
|
875 /* Call value of suspend-resume-hook
|
|
876 if it is bound and value is non-nil. */
|
|
877 run_hook (Qsuspend_resume_hook);
|
|
878
|
|
879 UNGCPRO;
|
|
880 return Qnil;
|
|
881 }
|
|
882
|
|
883 /* If STUFFSTRING is a string, stuff its contents as pending terminal input.
|
|
884 Then in any case stuff anything Emacs has read ahead and not used. */
|
|
885
|
|
886 void
|
|
887 stuff_buffered_input (Lisp_Object stuffstring)
|
|
888 {
|
|
889 /* stuff_char works only in BSD, versions 4.2 and up. */
|
|
890 #if defined (BSD)
|
|
891 if (!CONSOLEP (Vcontrolling_terminal) ||
|
|
892 !CONSOLE_LIVE_P (XCONSOLE (Vcontrolling_terminal)))
|
|
893 return;
|
|
894
|
|
895 if (STRINGP (stuffstring))
|
|
896 {
|
665
|
897 Bytecount count;
|
428
|
898 Extbyte *p;
|
|
899
|
440
|
900 TO_EXTERNAL_FORMAT (LISP_STRING, stuffstring,
|
|
901 ALLOCA, (p, count),
|
|
902 Qkeyboard);
|
428
|
903 while (count-- > 0)
|
|
904 stuff_char (XCONSOLE (Vcontrolling_terminal), *p++);
|
|
905 stuff_char (XCONSOLE (Vcontrolling_terminal), '\n');
|
|
906 }
|
|
907 /* Anything we have read ahead, put back for the shell to read. */
|
|
908 # if 0 /* oh, who cares about this silliness */
|
|
909 while (kbd_fetch_ptr != kbd_store_ptr)
|
|
910 {
|
|
911 if (kbd_fetch_ptr == kbd_buffer + KBD_BUFFER_SIZE)
|
|
912 kbd_fetch_ptr = kbd_buffer;
|
|
913 stuff_char (XCONSOLE (Vcontrolling_terminal), *kbd_fetch_ptr++);
|
|
914 }
|
|
915 # endif
|
|
916 #endif /* BSD */
|
|
917 }
|
|
918
|
|
919 DEFUN ("suspend-console", Fsuspend_console, 0, 1, "", /*
|
|
920 Suspend a console. For tty consoles, it sends a signal to suspend
|
|
921 the process in charge of the tty, and removes the devices and
|
|
922 frames of that console from the display.
|
|
923
|
|
924 If optional arg CONSOLE is non-nil, it is the console to be suspended.
|
|
925 Otherwise it is assumed to be the selected console.
|
|
926
|
|
927 Some operating systems cannot stop processes and resume them later.
|
|
928 On such systems, who knows what will happen.
|
|
929 */
|
|
930 (console))
|
|
931 {
|
|
932 #ifdef HAVE_TTY
|
|
933 struct console *con = decode_console (console);
|
|
934
|
|
935 if (CONSOLE_TTY_P (con))
|
|
936 {
|
|
937 /*
|
|
938 * hide all the unhidden frames so the display code won't update
|
|
939 * them while the console is suspended.
|
|
940 */
|
|
941 Lisp_Object device = CONSOLE_SELECTED_DEVICE (con);
|
|
942 if (!NILP (device))
|
|
943 {
|
|
944 struct device *d = XDEVICE (device);
|
|
945 Lisp_Object frame_list = DEVICE_FRAME_LIST (d);
|
|
946 while (CONSP (frame_list))
|
|
947 {
|
|
948 struct frame *f = XFRAME (XCAR (frame_list));
|
|
949 if (FRAME_REPAINT_P (f))
|
|
950 f->visible = -1;
|
|
951 frame_list = XCDR (frame_list);
|
|
952 }
|
|
953 }
|
|
954 reset_one_console (con);
|
|
955 event_stream_unselect_console (con);
|
|
956 sys_suspend_process (XINT (Fconsole_tty_controlling_process (console)));
|
|
957 }
|
|
958 #endif /* HAVE_TTY */
|
|
959
|
|
960 return Qnil;
|
|
961 }
|
|
962
|
|
963 DEFUN ("resume-console", Fresume_console, 1, 1, "", /*
|
|
964 Re-initialize a previously suspended console.
|
|
965 For tty consoles, do stuff to the tty to make it sane again.
|
|
966 */
|
|
967 (console))
|
|
968 {
|
|
969 #ifdef HAVE_TTY
|
|
970 struct console *con = decode_console (console);
|
|
971
|
|
972 if (CONSOLE_TTY_P (con))
|
|
973 {
|
|
974 /* raise the selected frame */
|
|
975 Lisp_Object device = CONSOLE_SELECTED_DEVICE (con);
|
|
976 if (!NILP (device))
|
|
977 {
|
|
978 struct device *d = XDEVICE (device);
|
|
979 Lisp_Object frame = DEVICE_SELECTED_FRAME (d);
|
|
980 if (!NILP (frame))
|
|
981 {
|
|
982 /* force the frame to be cleared */
|
|
983 SET_FRAME_CLEAR (XFRAME (frame));
|
|
984 Fraise_frame (frame);
|
|
985 }
|
|
986 }
|
|
987 init_one_console (con);
|
|
988 event_stream_select_console (con);
|
|
989 #ifdef SIGWINCH
|
|
990 /* The same as in Fsuspend_emacs: it is possible that a size
|
|
991 change occurred while we were suspended. Assume one did just
|
|
992 to be safe. It won't hurt anything if one didn't. */
|
|
993 asynch_device_change_pending++;
|
|
994 #endif
|
|
995 }
|
|
996 #endif /* HAVE_TTY */
|
|
997
|
|
998 return Qnil;
|
|
999 }
|
|
1000
|
|
1001 DEFUN ("set-input-mode", Fset_input_mode, 3, 5, 0, /*
|
|
1002 Set mode of reading keyboard input.
|
|
1003 First arg is ignored, for backward compatibility.
|
|
1004 Second arg FLOW non-nil means use ^S/^Q flow control for output to terminal
|
|
1005 (no effect except in CBREAK mode).
|
|
1006 Third arg META t means accept 8-bit input (for a Meta key).
|
|
1007 META nil means ignore the top bit, on the assumption it is parity.
|
|
1008 Otherwise, accept 8-bit input and don't use the top bit for Meta.
|
|
1009 First three arguments only apply to TTY consoles.
|
|
1010 Optional fourth arg QUIT if non-nil specifies character to use for quitting.
|
|
1011 Optional fifth arg CONSOLE specifies console to make changes to; nil means
|
|
1012 the selected console.
|
|
1013 See also `current-input-mode'.
|
|
1014 */
|
|
1015 (ignored, flow, meta, quit, console))
|
|
1016 {
|
|
1017 struct console *con = decode_console (console);
|
|
1018 int meta_key = (!CONSOLE_TTY_P (con) ? 1 :
|
|
1019 EQ (meta, Qnil) ? 0 :
|
|
1020 EQ (meta, Qt) ? 1 :
|
|
1021 2);
|
|
1022
|
|
1023 if (!NILP (quit))
|
|
1024 {
|
|
1025 CHECK_CHAR_COERCE_INT (quit);
|
|
1026 CONSOLE_QUIT_CHAR (con) =
|
|
1027 ((unsigned int) XCHAR (quit)) & (meta_key ? 0377 : 0177);
|
|
1028 }
|
|
1029
|
|
1030 #ifdef HAVE_TTY
|
|
1031 if (CONSOLE_TTY_P (con))
|
|
1032 {
|
|
1033 reset_one_console (con);
|
|
1034 TTY_FLAGS (con).flow_control = !NILP (flow);
|
|
1035 TTY_FLAGS (con).meta_key = meta_key;
|
|
1036 init_one_console (con);
|
444
|
1037 MARK_FRAME_CHANGED (XFRAME (CONSOLE_SELECTED_FRAME (con)));
|
428
|
1038 }
|
|
1039 #endif
|
|
1040
|
|
1041 return Qnil;
|
|
1042 }
|
|
1043
|
|
1044 DEFUN ("current-input-mode", Fcurrent_input_mode, 0, 1, 0, /*
|
|
1045 Return information about the way Emacs currently reads keyboard input.
|
|
1046 Optional arg CONSOLE specifies console to return information about; nil means
|
|
1047 the selected console.
|
|
1048 The value is a list of the form (nil FLOW META QUIT), where
|
|
1049 FLOW is non-nil if Emacs uses ^S/^Q flow control for output to the
|
|
1050 terminal; this does not apply if Emacs uses interrupt-driven input.
|
|
1051 META is t if accepting 8-bit input with 8th bit as Meta flag.
|
|
1052 META nil means ignoring the top bit, on the assumption it is parity.
|
|
1053 META is neither t nor nil if accepting 8-bit input and using
|
|
1054 all 8 bits as the character code.
|
|
1055 QUIT is the character Emacs currently uses to quit.
|
|
1056 FLOW, and META are only meaningful for TTY consoles.
|
|
1057 The elements of this list correspond to the arguments of
|
|
1058 `set-input-mode'.
|
|
1059 */
|
|
1060 (console))
|
|
1061 {
|
|
1062 struct console *con = decode_console (console);
|
|
1063 Lisp_Object flow, meta, quit;
|
|
1064
|
|
1065 #ifdef HAVE_TTY
|
|
1066 flow = CONSOLE_TTY_P (con) && TTY_FLAGS (con).flow_control ? Qt : Qnil;
|
|
1067 meta = (!CONSOLE_TTY_P (con) ? Qt :
|
|
1068 TTY_FLAGS (con).meta_key == 1 ? Qt :
|
|
1069 TTY_FLAGS (con).meta_key == 2 ? Qzero :
|
|
1070 Qnil);
|
|
1071 #else
|
|
1072 flow = Qnil;
|
|
1073 meta = Qt;
|
|
1074 #endif
|
|
1075 quit = make_char (CONSOLE_QUIT_CHAR (con));
|
|
1076
|
|
1077 return list4 (Qnil, flow, meta, quit);
|
|
1078 }
|
|
1079
|
|
1080
|
|
1081 /************************************************************************/
|
|
1082 /* initialization */
|
|
1083 /************************************************************************/
|
|
1084
|
|
1085 void
|
|
1086 syms_of_console (void)
|
|
1087 {
|
442
|
1088 INIT_LRECORD_IMPLEMENTATION (console);
|
|
1089
|
428
|
1090 DEFSUBR (Fvalid_console_type_p);
|
|
1091 DEFSUBR (Fconsole_type_list);
|
|
1092 DEFSUBR (Fcdfw_console);
|
|
1093 DEFSUBR (Fselected_console);
|
|
1094 DEFSUBR (Fselect_console);
|
|
1095 DEFSUBR (Fconsolep);
|
|
1096 DEFSUBR (Fconsole_live_p);
|
|
1097 DEFSUBR (Fconsole_type);
|
|
1098 DEFSUBR (Fconsole_name);
|
|
1099 DEFSUBR (Fconsole_connection);
|
|
1100 DEFSUBR (Ffind_console);
|
|
1101 DEFSUBR (Fget_console);
|
|
1102 DEFSUBR (Fdelete_console);
|
|
1103 DEFSUBR (Fconsole_list);
|
|
1104 DEFSUBR (Fconsole_device_list);
|
|
1105 DEFSUBR (Fconsole_enable_input);
|
|
1106 DEFSUBR (Fconsole_disable_input);
|
|
1107 DEFSUBR (Fconsole_on_window_system_p);
|
|
1108 DEFSUBR (Fsuspend_console);
|
|
1109 DEFSUBR (Fresume_console);
|
|
1110
|
|
1111 DEFSUBR (Fsuspend_emacs);
|
|
1112 DEFSUBR (Fset_input_mode);
|
|
1113 DEFSUBR (Fcurrent_input_mode);
|
|
1114
|
563
|
1115 DEFSYMBOL (Qconsolep);
|
|
1116 DEFSYMBOL (Qconsole_live_p);
|
428
|
1117
|
563
|
1118 DEFSYMBOL (Qcreate_console_hook);
|
|
1119 DEFSYMBOL (Qdelete_console_hook);
|
428
|
1120
|
563
|
1121 DEFSYMBOL (Qsuspend_hook);
|
|
1122 DEFSYMBOL (Qsuspend_resume_hook);
|
428
|
1123 }
|
|
1124
|
|
1125 static const struct lrecord_description cte_description_1[] = {
|
440
|
1126 { XD_LISP_OBJECT, offsetof (console_type_entry, symbol) },
|
|
1127 { XD_STRUCT_PTR, offsetof (console_type_entry, meths), 1, &console_methods_description },
|
428
|
1128 { XD_END }
|
|
1129 };
|
|
1130
|
|
1131 static const struct struct_description cte_description = {
|
440
|
1132 sizeof (console_type_entry),
|
428
|
1133 cte_description_1
|
|
1134 };
|
|
1135
|
|
1136 static const struct lrecord_description cted_description_1[] = {
|
440
|
1137 XD_DYNARR_DESC (console_type_entry_dynarr, &cte_description),
|
428
|
1138 { XD_END }
|
|
1139 };
|
|
1140
|
|
1141 const struct struct_description cted_description = {
|
440
|
1142 sizeof (console_type_entry_dynarr),
|
428
|
1143 cted_description_1
|
|
1144 };
|
|
1145
|
|
1146 static const struct lrecord_description console_methods_description_1[] = {
|
440
|
1147 { XD_LISP_OBJECT, offsetof (struct console_methods, symbol) },
|
|
1148 { XD_LISP_OBJECT, offsetof (struct console_methods, predicate_symbol) },
|
|
1149 { XD_LISP_OBJECT, offsetof (struct console_methods, image_conversion_list) },
|
428
|
1150 { XD_END }
|
|
1151 };
|
|
1152
|
|
1153 const struct struct_description console_methods_description = {
|
440
|
1154 sizeof (struct console_methods),
|
428
|
1155 console_methods_description_1
|
|
1156 };
|
|
1157
|
|
1158
|
|
1159 void
|
|
1160 console_type_create (void)
|
|
1161 {
|
|
1162 the_console_type_entry_dynarr = Dynarr_new (console_type_entry);
|
452
|
1163 dump_add_root_struct_ptr (&the_console_type_entry_dynarr, &cted_description);
|
428
|
1164
|
|
1165 Vconsole_type_list = Qnil;
|
|
1166 staticpro (&Vconsole_type_list);
|
|
1167
|
|
1168 /* Initialize the dead console type */
|
|
1169 INITIALIZE_CONSOLE_TYPE (dead, "dead", "console-dead-p");
|
|
1170
|
|
1171 /* then reset the console-type lists, because `dead' is not really
|
|
1172 a valid console type */
|
|
1173 Dynarr_reset (the_console_type_entry_dynarr);
|
|
1174 Vconsole_type_list = Qnil;
|
|
1175 }
|
|
1176
|
|
1177 void
|
|
1178 reinit_vars_of_console (void)
|
|
1179 {
|
|
1180 staticpro_nodump (&Vconsole_list);
|
|
1181 Vconsole_list = Qnil;
|
|
1182 staticpro_nodump (&Vselected_console);
|
|
1183 Vselected_console = Qnil;
|
|
1184 }
|
|
1185
|
|
1186 void
|
|
1187 vars_of_console (void)
|
|
1188 {
|
|
1189 reinit_vars_of_console ();
|
|
1190
|
|
1191 DEFVAR_LISP ("create-console-hook", &Vcreate_console_hook /*
|
|
1192 Function or functions to call when a console is created.
|
|
1193 One argument, the newly-created console.
|
|
1194 This is called after the first frame has been created, but before
|
|
1195 calling the `create-device-hook' or `create-frame-hook'.
|
|
1196 Note that in general the console will not be selected.
|
|
1197 */ );
|
|
1198 Vcreate_console_hook = Qnil;
|
|
1199
|
|
1200 DEFVAR_LISP ("delete-console-hook", &Vdelete_console_hook /*
|
|
1201 Function or functions to call when a console is deleted.
|
|
1202 One argument, the to-be-deleted console.
|
|
1203 */ );
|
|
1204 Vdelete_console_hook = Qnil;
|
|
1205
|
|
1206 #ifdef HAVE_WINDOW_SYSTEM
|
|
1207 Fprovide (intern ("window-system"));
|
|
1208 #endif
|
|
1209 }
|
|
1210
|
643
|
1211 /* The docstrings for DEFVAR_* are recorded externally by make-docfile. */
|
617
|
1212 #define DEFVAR_CONSOLE_LOCAL_1(lname, field_name, forward_type, magicfun) \
|
|
1213 do { \
|
|
1214 static const struct symbol_value_forward I_hate_C = \
|
|
1215 { /* struct symbol_value_forward */ \
|
|
1216 { /* struct symbol_value_magic */ \
|
|
1217 { /* struct lcrecord_header */ \
|
|
1218 { /* struct lrecord_header */ \
|
|
1219 lrecord_type_symbol_value_forward, /* lrecord_type_index */ \
|
|
1220 1, /* mark bit */ \
|
|
1221 1, /* c_readonly bit */ \
|
|
1222 1 /* lisp_readonly bit */ \
|
|
1223 }, \
|
|
1224 0, /* next */ \
|
|
1225 0, /* uid */ \
|
|
1226 0 /* free */ \
|
|
1227 }, \
|
|
1228 &(console_local_flags.field_name), \
|
|
1229 forward_type \
|
|
1230 }, \
|
|
1231 magicfun \
|
|
1232 }; \
|
|
1233 \
|
|
1234 { \
|
|
1235 int offset = ((char *)symbol_value_forward_forward (&I_hate_C) \
|
|
1236 - (char *)&console_local_flags); \
|
|
1237 \
|
|
1238 defvar_magic (lname, &I_hate_C); \
|
|
1239 \
|
|
1240 *((Lisp_Object *)(offset + (char *)XCONSOLE (Vconsole_local_symbols))) \
|
|
1241 = intern (lname); \
|
|
1242 } \
|
428
|
1243 } while (0)
|
|
1244
|
|
1245 #define DEFVAR_CONSOLE_LOCAL_MAGIC(lname, field_name, magicfun) \
|
|
1246 DEFVAR_CONSOLE_LOCAL_1 (lname, field_name, \
|
|
1247 SYMVAL_SELECTED_CONSOLE_FORWARD, magicfun)
|
|
1248 #define DEFVAR_CONSOLE_LOCAL(lname, field_name) \
|
|
1249 DEFVAR_CONSOLE_LOCAL_MAGIC (lname, field_name, 0)
|
|
1250 #define DEFVAR_CONST_CONSOLE_LOCAL_MAGIC(lname, field_name, magicfun) \
|
|
1251 DEFVAR_CONSOLE_LOCAL_1 (lname, field_name, \
|
|
1252 SYMVAL_CONST_SELECTED_CONSOLE_FORWARD, magicfun)
|
|
1253 #define DEFVAR_CONST_CONSOLE_LOCAL(lname, field_name) \
|
|
1254 DEFVAR_CONST_CONSOLE_LOCAL_MAGIC (lname, field_name, 0)
|
|
1255
|
|
1256 #define DEFVAR_CONSOLE_DEFAULTS_MAGIC(lname, field_name, magicfun) \
|
|
1257 DEFVAR_SYMVAL_FWD(lname, &(console_local_flags.field_name), \
|
|
1258 SYMVAL_DEFAULT_CONSOLE_FORWARD, magicfun)
|
|
1259 #define DEFVAR_CONSOLE_DEFAULTS(lname, field_name) \
|
|
1260 DEFVAR_CONSOLE_DEFAULTS_MAGIC (lname, field_name, 0)
|
|
1261
|
|
1262 static void
|
|
1263 common_init_complex_vars_of_console (void)
|
|
1264 {
|
|
1265 /* Make sure all markable slots in console_defaults
|
|
1266 are initialized reasonably, so mark_console won't choke.
|
|
1267 */
|
|
1268 struct console *defs = alloc_lcrecord_type (struct console, &lrecord_console);
|
|
1269 struct console *syms = alloc_lcrecord_type (struct console, &lrecord_console);
|
|
1270
|
|
1271 staticpro_nodump (&Vconsole_defaults);
|
|
1272 staticpro_nodump (&Vconsole_local_symbols);
|
793
|
1273 Vconsole_defaults = wrap_console (defs);
|
|
1274 Vconsole_local_symbols = wrap_console (syms);
|
428
|
1275
|
|
1276 nuke_all_console_slots (syms, Qnil);
|
|
1277 nuke_all_console_slots (defs, Qnil);
|
|
1278
|
|
1279 /* Set up the non-nil default values of various console slots.
|
|
1280 Must do these before making the first console.
|
|
1281 */
|
|
1282 /* #### Anything needed here? */
|
|
1283
|
|
1284 {
|
|
1285 /* 0 means var is always local. Default used only at creation.
|
|
1286 * -1 means var is always local. Default used only at reset and
|
|
1287 * creation.
|
|
1288 * -2 means there's no lisp variable corresponding to this slot
|
|
1289 * and the default is only used at creation.
|
|
1290 * -3 means no Lisp variable. Default used only at reset and creation.
|
|
1291 * >0 is mask. Var is local if ((console->local_var_flags & mask) != 0)
|
|
1292 * Otherwise default is used.
|
|
1293 *
|
|
1294 * #### We don't currently ever reset console variables, so there
|
|
1295 * is no current distinction between 0 and -1, and between -2 and -3.
|
|
1296 */
|
|
1297 Lisp_Object always_local_resettable = make_int (-1);
|
|
1298
|
|
1299 #if 0 /* not used */
|
|
1300 Lisp_Object always_local_no_default = make_int (0);
|
|
1301 Lisp_Object resettable = make_int (-3);
|
|
1302 #endif
|
|
1303
|
|
1304 /* Assign the local-flags to the slots that have default values.
|
|
1305 The local flag is a bit that is used in the console
|
|
1306 to say that it has its own local value for the slot.
|
|
1307 The local flag bits are in the local_var_flags slot of the
|
|
1308 console. */
|
|
1309
|
|
1310 nuke_all_console_slots (&console_local_flags, make_int (-2));
|
|
1311 console_local_flags.defining_kbd_macro = always_local_resettable;
|
|
1312 console_local_flags.last_kbd_macro = always_local_resettable;
|
|
1313 console_local_flags.prefix_arg = always_local_resettable;
|
|
1314 console_local_flags.default_minibuffer_frame = always_local_resettable;
|
|
1315 console_local_flags.overriding_terminal_local_map =
|
|
1316 always_local_resettable;
|
|
1317 #ifdef HAVE_TTY
|
|
1318 console_local_flags.tty_erase_char = always_local_resettable;
|
|
1319 #endif
|
|
1320
|
|
1321 console_local_flags.function_key_map = make_int (1);
|
|
1322
|
|
1323 /* #### Warning, 0x4000000 (that's six zeroes) is the largest number
|
|
1324 currently allowable due to the XINT() handling of this value.
|
|
1325 With some rearrangement you can get 4 more bits. */
|
|
1326 }
|
|
1327 }
|
|
1328
|
|
1329
|
|
1330 #define CONSOLE_SLOTS_SIZE (offsetof (struct console, CONSOLE_SLOTS_LAST_NAME) - offsetof (struct console, CONSOLE_SLOTS_FIRST_NAME) + sizeof (Lisp_Object))
|
|
1331 #define CONSOLE_SLOTS_COUNT (CONSOLE_SLOTS_SIZE / sizeof (Lisp_Object))
|
|
1332
|
|
1333 void
|
771
|
1334 reinit_complex_vars_of_console_runtime_only (void)
|
428
|
1335 {
|
|
1336 struct console *defs, *syms;
|
|
1337
|
|
1338 common_init_complex_vars_of_console ();
|
|
1339
|
|
1340 defs = XCONSOLE (Vconsole_defaults);
|
|
1341 syms = XCONSOLE (Vconsole_local_symbols);
|
|
1342 memcpy (&defs->CONSOLE_SLOTS_FIRST_NAME,
|
|
1343 console_defaults_saved_slots,
|
|
1344 CONSOLE_SLOTS_SIZE);
|
|
1345 memcpy (&syms->CONSOLE_SLOTS_FIRST_NAME,
|
|
1346 console_local_symbols_saved_slots,
|
|
1347 CONSOLE_SLOTS_SIZE);
|
|
1348 }
|
|
1349
|
|
1350
|
|
1351 static const struct lrecord_description console_slots_description_1[] = {
|
440
|
1352 { XD_LISP_OBJECT_ARRAY, 0, CONSOLE_SLOTS_COUNT },
|
428
|
1353 { XD_END }
|
|
1354 };
|
|
1355
|
|
1356 static const struct struct_description console_slots_description = {
|
|
1357 CONSOLE_SLOTS_SIZE,
|
|
1358 console_slots_description_1
|
|
1359 };
|
|
1360
|
|
1361 void
|
|
1362 complex_vars_of_console (void)
|
|
1363 {
|
|
1364 struct console *defs, *syms;
|
|
1365
|
|
1366 common_init_complex_vars_of_console ();
|
|
1367
|
|
1368 defs = XCONSOLE (Vconsole_defaults);
|
|
1369 syms = XCONSOLE (Vconsole_local_symbols);
|
|
1370 console_defaults_saved_slots = &defs->CONSOLE_SLOTS_FIRST_NAME;
|
|
1371 console_local_symbols_saved_slots = &syms->CONSOLE_SLOTS_FIRST_NAME;
|
452
|
1372 dump_add_root_struct_ptr (&console_defaults_saved_slots, &console_slots_description);
|
|
1373 dump_add_root_struct_ptr (&console_local_symbols_saved_slots, &console_slots_description);
|
428
|
1374
|
|
1375 DEFVAR_CONSOLE_DEFAULTS ("default-function-key-map", function_key_map /*
|
|
1376 Default value of `function-key-map' for consoles that don't override it.
|
|
1377 This is the same as (default-value 'function-key-map).
|
|
1378 */ );
|
|
1379
|
|
1380 DEFVAR_CONSOLE_LOCAL ("function-key-map", function_key_map /*
|
|
1381 Keymap mapping ASCII function key sequences onto their preferred forms.
|
|
1382 This allows Emacs to recognize function keys sent from ASCII
|
|
1383 terminals at any point in a key sequence.
|
|
1384
|
|
1385 The `read-key-sequence' function replaces any subsequence bound by
|
|
1386 `function-key-map' with its binding. More precisely, when the active
|
|
1387 keymaps have no binding for the current key sequence but
|
|
1388 `function-key-map' binds a suffix of the sequence to a vector or string,
|
|
1389 `read-key-sequence' replaces the matching suffix with its binding, and
|
|
1390 continues with the new sequence.
|
|
1391
|
|
1392 The events that come from bindings in `function-key-map' are not
|
|
1393 themselves looked up in `function-key-map'.
|
|
1394
|
|
1395 For example, suppose `function-key-map' binds `ESC O P' to [f1].
|
|
1396 Typing `ESC O P' to `read-key-sequence' would return
|
|
1397 \[#<keypress-event f1>]. Typing `C-x ESC O P' would return
|
|
1398 \[#<keypress-event control-X> #<keypress-event f1>]. If [f1]
|
|
1399 were a prefix key, typing `ESC O P x' would return
|
|
1400 \[#<keypress-event f1> #<keypress-event x>].
|
|
1401 */ );
|
|
1402
|
|
1403 #ifdef HAVE_TTY
|
440
|
1404 /* #### Should this somehow go to TTY data? How do we make it
|
428
|
1405 accessible from Lisp, then? */
|
|
1406 DEFVAR_CONSOLE_LOCAL ("tty-erase-char", tty_erase_char /*
|
|
1407 The ERASE character as set by the user with stty.
|
|
1408 When this value cannot be determined or would be meaningless (on non-TTY
|
|
1409 consoles, for example), it is set to nil.
|
|
1410 */ );
|
|
1411 #endif
|
|
1412
|
442
|
1413 /* While this should be const it can't be because some things
|
428
|
1414 (i.e. edebug) do manipulate it. */
|
|
1415 DEFVAR_CONSOLE_LOCAL ("defining-kbd-macro", defining_kbd_macro /*
|
442
|
1416 Non-nil while a keyboard macro is being defined. Don't set this!
|
428
|
1417 */ );
|
|
1418
|
|
1419 DEFVAR_CONSOLE_LOCAL ("last-kbd-macro", last_kbd_macro /*
|
442
|
1420 Last keyboard macro defined, as a vector of events; nil if none defined.
|
428
|
1421 */ );
|
|
1422
|
|
1423 DEFVAR_CONSOLE_LOCAL ("prefix-arg", prefix_arg /*
|
|
1424 The value of the prefix argument for the next editing command.
|
|
1425 It may be a number, or the symbol `-' for just a minus sign as arg,
|
|
1426 or a list whose car is a number for just one or more C-U's
|
|
1427 or nil if no argument has been specified.
|
|
1428
|
|
1429 You cannot examine this variable to find the argument for this command
|
|
1430 since it has been set to nil by the time you can look.
|
|
1431 Instead, you should use the variable `current-prefix-arg', although
|
|
1432 normally commands can get this prefix argument with (interactive "P").
|
|
1433 */ );
|
|
1434
|
|
1435 DEFVAR_CONSOLE_LOCAL ("default-minibuffer-frame",
|
|
1436 default_minibuffer_frame /*
|
|
1437 Minibufferless frames use this frame's minibuffer.
|
|
1438
|
|
1439 Emacs cannot create minibufferless frames unless this is set to an
|
|
1440 appropriate surrogate.
|
|
1441
|
|
1442 XEmacs consults this variable only when creating minibufferless
|
|
1443 frames; once the frame is created, it sticks with its assigned
|
|
1444 minibuffer, no matter what this variable is set to. This means that
|
|
1445 this variable doesn't necessarily say anything meaningful about the
|
|
1446 current set of frames, or where the minibuffer is currently being
|
|
1447 displayed.
|
|
1448 */ );
|
|
1449
|
|
1450 DEFVAR_CONSOLE_LOCAL ("overriding-terminal-local-map",
|
|
1451 overriding_terminal_local_map /*
|
|
1452 Keymap that overrides all other local keymaps, for the selected console only.
|
|
1453 If this variable is non-nil, it is used as a keymap instead of the
|
|
1454 buffer's local map, and the minor mode keymaps and text property keymaps.
|
|
1455 */ );
|
|
1456
|
|
1457 /* Check for DEFVAR_CONSOLE_LOCAL without initializing the corresponding
|
|
1458 slot of console_local_flags and vice-versa. Must be done after all
|
|
1459 DEFVAR_CONSOLE_LOCAL() calls. */
|
|
1460 #define MARKED_SLOT(slot) \
|
|
1461 if ((XINT (console_local_flags.slot) != -2 && \
|
|
1462 XINT (console_local_flags.slot) != -3) \
|
|
1463 != !(NILP (XCONSOLE (Vconsole_local_symbols)->slot))) \
|
|
1464 abort ()
|
|
1465 #include "conslots.h"
|
|
1466 }
|