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