annotate src/console.c @ 0:376386a54a3c r19-14

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