Mercurial > emacs
annotate src/emacs.c @ 1934:458a1fceb462
* xrdb.c (getuid): Remove declaration.
author | Jim Blandy <jimb@redhat.com> |
---|---|
date | Mon, 22 Feb 1993 15:10:16 +0000 |
parents | 2ed00cbd9e53 |
children | b07c27b4dca7 |
rev | line source |
---|---|
284 | 1 /* Fully extensible Emacs, running on Unix, intended for GNU. |
1774
04cd18603ec5
* emacs.c (shut_down_emacs): New function.
Jim Blandy <jimb@redhat.com>
parents:
1472
diff
changeset
|
2 Copyright (C) 1985, 1986, 1987, 1992, 1993 Free Software Foundation, Inc. |
284 | 3 |
4 This file is part of GNU Emacs. | |
5 | |
6 GNU Emacs is free software; you can redistribute it and/or modify | |
7 it under the terms of the GNU General Public License as published by | |
1774
04cd18603ec5
* emacs.c (shut_down_emacs): New function.
Jim Blandy <jimb@redhat.com>
parents:
1472
diff
changeset
|
8 the Free Software Foundation; either version 2, or (at your option) |
284 | 9 any later version. |
10 | |
11 GNU Emacs is distributed in the hope that it will be useful, | |
12 but WITHOUT ANY WARRANTY; without even the implied warranty of | |
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
14 GNU General Public License for more details. | |
15 | |
16 You should have received a copy of the GNU General Public License | |
17 along with GNU Emacs; see the file COPYING. If not, write to | |
18 the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ | |
19 | |
20 | |
21 #include <signal.h> | |
22 #include <errno.h> | |
23 | |
24 #include "config.h" | |
25 #include <stdio.h> | |
26 | |
27 #include <sys/types.h> | |
28 #include <sys/file.h> | |
29 | |
30 #ifdef VMS | |
31 #include <ssdef.h> | |
32 #endif | |
33 | |
34 #ifdef BSD | |
35 #include <sys/ioctl.h> | |
36 #endif | |
37 | |
505 | 38 #ifdef HAVE_TERMIOS |
39 #include <termios.h> | |
40 #endif | |
41 | |
284 | 42 #ifdef APOLLO |
43 #ifndef APOLLO_SR10 | |
44 #include <default_acl.h> | |
45 #endif | |
46 #endif | |
47 | |
48 #include "lisp.h" | |
49 #include "commands.h" | |
1284 | 50 #include "intervals.h" |
284 | 51 |
1043
ee6f647ac103
* emacs.c: Incude "systty.h", not "systerm.h".
Jim Blandy <jimb@redhat.com>
parents:
1004
diff
changeset
|
52 #include "systty.h" |
554 | 53 |
284 | 54 #ifndef O_RDWR |
55 #define O_RDWR 2 | |
56 #endif | |
57 | |
58 #define PRIO_PROCESS 0 | |
59 | |
60 /* Command line args from shell, as list of strings */ | |
61 Lisp_Object Vcommand_line_args; | |
62 | |
732 | 63 /* Hook run by `kill-emacs' before it does really anything. */ |
64 Lisp_Object Vkill_emacs_hook; | |
65 | |
284 | 66 /* Set nonzero after Emacs has started up the first time. |
67 Prevents reinitialization of the Lisp world and keymaps | |
68 on subsequent starts. */ | |
69 int initialized; | |
70 | |
71 /* Variable whose value is symbol giving operating system type */ | |
72 Lisp_Object Vsystem_type; | |
73 | |
74 /* If non-zero, emacs should not attempt to use an window-specific code, | |
75 but instead should use the virtual terminal under which it was started */ | |
76 int inhibit_window_system; | |
77 | |
1202
3d1bf36f0896
* emacs.c (emacs_priority): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1141
diff
changeset
|
78 /* If nonzero, set Emacs to run at this priority. This is also used |
3d1bf36f0896
* emacs.c (emacs_priority): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1141
diff
changeset
|
79 in child_setup and sys_suspend to make sure subshells run at normal |
3d1bf36f0896
* emacs.c (emacs_priority): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1141
diff
changeset
|
80 priority; Those functions have their own extern declaration. */ |
1141
d4f6d7467916
(main): Use X menu code if HAVE_X_WINDOWS and not NO_X_MENU.
Richard M. Stallman <rms@gnu.org>
parents:
1074
diff
changeset
|
81 int emacs_priority; |
d4f6d7467916
(main): Use X menu code if HAVE_X_WINDOWS and not NO_X_MENU.
Richard M. Stallman <rms@gnu.org>
parents:
1074
diff
changeset
|
82 |
284 | 83 #ifdef HAVE_X_WINDOWS |
84 /* If non-zero, -d was specified, meaning we're using some window system. */ | |
85 int display_arg; | |
86 #endif | |
87 | |
88 /* An address near the bottom of the stack. | |
89 Tells GC how to save a copy of the stack. */ | |
90 char *stack_bottom; | |
91 | |
92 #ifdef HAVE_X_WINDOWS | |
93 extern Lisp_Object Vwindow_system; | |
94 #endif /* HAVE_X_WINDOWS */ | |
95 | |
96 #ifdef USG_SHARED_LIBRARIES | |
97 /* If nonzero, this is the place to put the end of the writable segment | |
98 at startup. */ | |
99 | |
100 unsigned int bss_end = 0; | |
101 #endif | |
102 | |
103 /* Nonzero means running Emacs without interactive terminal. */ | |
104 | |
105 int noninteractive; | |
106 | |
107 /* Value of Lisp variable `noninteractive'. | |
108 Normally same as C variable `noninteractive' | |
109 but nothing terrible happens if user sets this one. */ | |
110 | |
111 int noninteractive1; | |
112 | |
113 /* Signal code for the fatal signal that was received */ | |
114 int fatal_error_code; | |
115 | |
116 /* Nonzero if handling a fatal error already */ | |
117 int fatal_error_in_progress; | |
118 | |
119 /* Handle bus errors, illegal instruction, etc. */ | |
505 | 120 SIGTYPE |
284 | 121 fatal_error_signal (sig) |
122 int sig; | |
123 { | |
124 fatal_error_code = sig; | |
125 signal (sig, SIG_DFL); | |
126 | |
127 /* If fatal error occurs in code below, avoid infinite recursion. */ | |
128 if (fatal_error_in_progress) | |
129 kill (getpid (), fatal_error_code); | |
130 | |
131 fatal_error_in_progress = 1; | |
132 | |
1774
04cd18603ec5
* emacs.c (shut_down_emacs): New function.
Jim Blandy <jimb@redhat.com>
parents:
1472
diff
changeset
|
133 shut_down_emacs (sig); |
284 | 134 |
135 #ifdef VMS | |
136 LIB$STOP (SS$_ABORT); | |
137 #else | |
138 /* Signal the same code; this time it will really be fatal. */ | |
139 kill (getpid (), fatal_error_code); | |
140 #endif /* not VMS */ | |
141 } | |
142 | |
143 /* Code for dealing with Lisp access to the Unix command line */ | |
144 | |
145 static | |
146 init_cmdargs (argc, argv, skip_args) | |
147 int argc; | |
148 char **argv; | |
149 int skip_args; | |
150 { | |
151 register int i; | |
152 | |
153 Vcommand_line_args = Qnil; | |
154 | |
155 for (i = argc - 1; i >= 0; i--) | |
156 { | |
157 if (i == 0 || i > skip_args) | |
158 Vcommand_line_args | |
159 = Fcons (build_string (argv[i]), Vcommand_line_args); | |
160 } | |
161 } | |
162 | |
163 #ifdef VMS | |
164 #ifdef LINK_CRTL_SHARE | |
165 #ifdef SHAREABLE_LIB_BUG | |
166 extern noshare char **environ; | |
167 #endif /* SHAREABLE_LIB_BUG */ | |
168 #endif /* LINK_CRTL_SHARE */ | |
169 #endif /* VMS */ | |
170 | |
1061
06b98c795200
(__do_global_ctors, __do_global_ctors_aux): New dummy fns.
Richard M. Stallman <rms@gnu.org>
parents:
1043
diff
changeset
|
171 /* We don't include crtbegin.o and crtend.o in the link, |
06b98c795200
(__do_global_ctors, __do_global_ctors_aux): New dummy fns.
Richard M. Stallman <rms@gnu.org>
parents:
1043
diff
changeset
|
172 so these functions and variables might be missed. |
06b98c795200
(__do_global_ctors, __do_global_ctors_aux): New dummy fns.
Richard M. Stallman <rms@gnu.org>
parents:
1043
diff
changeset
|
173 Provide dummy definitions to avoid error. |
06b98c795200
(__do_global_ctors, __do_global_ctors_aux): New dummy fns.
Richard M. Stallman <rms@gnu.org>
parents:
1043
diff
changeset
|
174 (We don't have any real constructors or destructors.) */ |
06b98c795200
(__do_global_ctors, __do_global_ctors_aux): New dummy fns.
Richard M. Stallman <rms@gnu.org>
parents:
1043
diff
changeset
|
175 #ifdef __GNUC__ |
1070
b0f508376593
(__main): New dummy function.
Richard M. Stallman <rms@gnu.org>
parents:
1061
diff
changeset
|
176 __do_global_ctors () |
b0f508376593
(__main): New dummy function.
Richard M. Stallman <rms@gnu.org>
parents:
1061
diff
changeset
|
177 {} |
b0f508376593
(__main): New dummy function.
Richard M. Stallman <rms@gnu.org>
parents:
1061
diff
changeset
|
178 __do_global_ctors_aux () |
1061
06b98c795200
(__do_global_ctors, __do_global_ctors_aux): New dummy fns.
Richard M. Stallman <rms@gnu.org>
parents:
1043
diff
changeset
|
179 {} |
1074
ab1964dc212c
(__do_global_dtors): New dummy function.
Richard M. Stallman <rms@gnu.org>
parents:
1070
diff
changeset
|
180 __do_global_dtors () |
ab1964dc212c
(__do_global_dtors): New dummy function.
Richard M. Stallman <rms@gnu.org>
parents:
1070
diff
changeset
|
181 {} |
1070
b0f508376593
(__main): New dummy function.
Richard M. Stallman <rms@gnu.org>
parents:
1061
diff
changeset
|
182 char * __CTOR_LIST__[2] = { (char *) (-1), 0 }; |
b0f508376593
(__main): New dummy function.
Richard M. Stallman <rms@gnu.org>
parents:
1061
diff
changeset
|
183 char * __DTOR_LIST__[2] = { (char *) (-1), 0 }; |
b0f508376593
(__main): New dummy function.
Richard M. Stallman <rms@gnu.org>
parents:
1061
diff
changeset
|
184 __main () |
1061
06b98c795200
(__do_global_ctors, __do_global_ctors_aux): New dummy fns.
Richard M. Stallman <rms@gnu.org>
parents:
1043
diff
changeset
|
185 {} |
06b98c795200
(__do_global_ctors, __do_global_ctors_aux): New dummy fns.
Richard M. Stallman <rms@gnu.org>
parents:
1043
diff
changeset
|
186 #endif /* __GNUC__ */ |
06b98c795200
(__do_global_ctors, __do_global_ctors_aux): New dummy fns.
Richard M. Stallman <rms@gnu.org>
parents:
1043
diff
changeset
|
187 |
284 | 188 /* ARGSUSED */ |
189 main (argc, argv, envp) | |
190 int argc; | |
191 char **argv; | |
192 char **envp; | |
193 { | |
194 char stack_bottom_variable; | |
195 int skip_args = 0; | |
196 extern int errno; | |
197 extern sys_nerr; | |
198 extern char *sys_errlist[]; | |
199 extern void malloc_warning (); | |
200 | |
201 /* Map in shared memory, if we are using that. */ | |
202 #ifdef HAVE_SHM | |
203 if (argc > 1 && !strcmp (argv[1], "-nl")) | |
204 { | |
205 map_in_data (0); | |
206 /* The shared memory was just restored, which clobbered this. */ | |
207 skip_args = 1; | |
208 } | |
209 else | |
210 { | |
211 map_in_data (1); | |
212 /* The shared memory was just restored, which clobbered this. */ | |
213 skip_args = 0; | |
214 } | |
215 #endif | |
216 | |
1350
b74d9663f9a6
(main) [NeXT]: Call malloc_jumpstart.
Richard M. Stallman <rms@gnu.org>
parents:
1284
diff
changeset
|
217 #ifdef NeXT |
b74d9663f9a6
(main) [NeXT]: Call malloc_jumpstart.
Richard M. Stallman <rms@gnu.org>
parents:
1284
diff
changeset
|
218 static int malloc_cookie; |
b74d9663f9a6
(main) [NeXT]: Call malloc_jumpstart.
Richard M. Stallman <rms@gnu.org>
parents:
1284
diff
changeset
|
219 |
b74d9663f9a6
(main) [NeXT]: Call malloc_jumpstart.
Richard M. Stallman <rms@gnu.org>
parents:
1284
diff
changeset
|
220 /* This helps out unexnext.c. */ |
b74d9663f9a6
(main) [NeXT]: Call malloc_jumpstart.
Richard M. Stallman <rms@gnu.org>
parents:
1284
diff
changeset
|
221 if (initialized) |
b74d9663f9a6
(main) [NeXT]: Call malloc_jumpstart.
Richard M. Stallman <rms@gnu.org>
parents:
1284
diff
changeset
|
222 if (malloc_jumpstart (malloc_cookie) != 0) |
b74d9663f9a6
(main) [NeXT]: Call malloc_jumpstart.
Richard M. Stallman <rms@gnu.org>
parents:
1284
diff
changeset
|
223 printf ("malloc jumpstart failed!\n"); |
b74d9663f9a6
(main) [NeXT]: Call malloc_jumpstart.
Richard M. Stallman <rms@gnu.org>
parents:
1284
diff
changeset
|
224 #endif /* NeXT */ |
b74d9663f9a6
(main) [NeXT]: Call malloc_jumpstart.
Richard M. Stallman <rms@gnu.org>
parents:
1284
diff
changeset
|
225 |
284 | 226 #ifdef HAVE_X_WINDOWS |
348 | 227 /* Stupid kludge to catch command-line display spec. We can't |
228 handle this argument entirely in window system dependent code | |
229 because we don't even know which window system dependent code | |
230 to run until we've recognized this argument. */ | |
284 | 231 { |
232 int i; | |
233 | |
234 for (i = 1; (i < argc && ! display_arg); i++) | |
235 if (!strcmp (argv[i], "-d")) | |
236 display_arg = 1; | |
237 } | |
238 #endif | |
239 | |
240 #ifdef VMS | |
241 /* If -map specified, map the data file in */ | |
242 if (argc > 2 && ! strcmp (argv[1], "-map")) | |
243 { | |
244 skip_args = 2; | |
245 mapin_data (argv[2]); | |
246 } | |
247 | |
248 #ifdef LINK_CRTL_SHARE | |
249 #ifdef SHAREABLE_LIB_BUG | |
250 /* Bletcherous shared libraries! */ | |
251 if (!stdin) | |
252 stdin = fdopen (0, "r"); | |
253 if (!stdout) | |
254 stdout = fdopen (1, "w"); | |
255 if (!stderr) | |
256 stderr = fdopen (2, "w"); | |
257 if (!environ) | |
258 environ = envp; | |
259 #endif /* SHAREABLE_LIB_BUG */ | |
260 #endif /* LINK_CRTL_SHARE */ | |
261 #endif /* VMS */ | |
262 | |
263 /* Record (approximately) where the stack begins. */ | |
264 stack_bottom = &stack_bottom_variable; | |
265 | |
266 #ifdef RUN_TIME_REMAP | |
267 if (initialized) | |
268 run_time_remap (argv[0]); | |
269 #endif | |
270 | |
271 #ifdef USG_SHARED_LIBRARIES | |
272 if (bss_end) | |
273 brk (bss_end); | |
274 #endif | |
275 | |
276 clearerr (stdin); | |
277 #ifdef BSD | |
278 setpgrp (0, getpid ()); | |
279 #endif | |
280 | |
281 #ifdef APOLLO | |
282 #ifndef APOLLO_SR10 | |
283 /* If USE_DOMAIN_ACLS environment variable exists, | |
284 use ACLs rather than UNIX modes. */ | |
285 if (egetenv ("USE_DOMAIN_ACLS")) | |
286 default_acl (USE_DEFACL); | |
287 #endif | |
288 #endif /* APOLLO */ | |
289 | |
290 #ifndef SYSTEM_MALLOC | |
291 if (! initialized) | |
1391
cb0830eb1ce7
(Fdump_emacs, main): Use memory_warnings.
Richard M. Stallman <rms@gnu.org>
parents:
1384
diff
changeset
|
292 memory_warnings (0, malloc_warning); |
284 | 293 #endif /* not SYSTEM_MALLOC */ |
294 | |
1141
d4f6d7467916
(main): Use X menu code if HAVE_X_WINDOWS and not NO_X_MENU.
Richard M. Stallman <rms@gnu.org>
parents:
1074
diff
changeset
|
295 #ifdef PRIO_PROCESS |
d4f6d7467916
(main): Use X menu code if HAVE_X_WINDOWS and not NO_X_MENU.
Richard M. Stallman <rms@gnu.org>
parents:
1074
diff
changeset
|
296 if (emacs_priority) |
1202
3d1bf36f0896
* emacs.c (emacs_priority): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1141
diff
changeset
|
297 nice (emacs_priority); |
284 | 298 setuid (getuid ()); |
1141
d4f6d7467916
(main): Use X menu code if HAVE_X_WINDOWS and not NO_X_MENU.
Richard M. Stallman <rms@gnu.org>
parents:
1074
diff
changeset
|
299 #endif /* PRIO_PROCESS */ |
284 | 300 |
301 #ifdef BSD | |
302 /* interrupt_input has trouble if we aren't in a separate process group. */ | |
303 setpgrp (getpid (), getpid ()); | |
304 #endif | |
305 | |
306 inhibit_window_system = 0; | |
307 | |
420 | 308 /* Handle the -t switch, which specifies filename to use as terminal */ |
284 | 309 if (skip_args + 2 < argc && !strcmp (argv[skip_args + 1], "-t")) |
310 { | |
311 int result; | |
312 skip_args += 2; | |
313 close (0); | |
314 close (1); | |
315 result = open (argv[skip_args], O_RDWR, 2 ); | |
316 if (result < 0) | |
317 { | |
318 char *errstring; | |
319 | |
320 if (errno >= 0 && errno < sys_nerr) | |
321 errstring = sys_errlist[errno]; | |
322 else | |
323 errstring = "undocumented error code"; | |
324 fprintf (stderr, "emacs: %s: %s\n", argv[skip_args], errstring); | |
325 exit (1); | |
326 } | |
327 dup (0); | |
328 if (! isatty (0)) | |
329 { | |
330 fprintf (stderr, "emacs: %s: not a tty\n", argv[skip_args]); | |
331 exit (1); | |
332 } | |
333 fprintf (stderr, "Using %s\n", argv[skip_args]); | |
334 #ifdef HAVE_X_WINDOWS | |
335 inhibit_window_system = 1; /* -t => -nw */ | |
336 #endif | |
337 } | |
338 | |
339 if (skip_args + 1 < argc | |
340 && (!strcmp (argv[skip_args + 1], "-nw"))) | |
341 { | |
342 skip_args += 1; | |
343 inhibit_window_system = 1; | |
344 } | |
345 | |
346 /* Handle the -batch switch, which means don't do interactive display. */ | |
347 noninteractive = 0; | |
348 if (skip_args + 1 < argc && !strcmp (argv[skip_args + 1], "-batch")) | |
349 { | |
350 skip_args += 1; | |
351 noninteractive = 1; | |
352 } | |
353 | |
348 | 354 #ifdef POSIX_SIGNALS |
355 init_signals (); | |
356 #endif | |
357 | |
284 | 358 if ( |
359 #ifndef CANNOT_DUMP | |
360 ! noninteractive || initialized | |
361 #else | |
362 1 | |
363 #endif | |
364 ) | |
365 { | |
366 /* Don't catch these signals in batch mode if not initialized. | |
367 On some machines, this sets static data that would make | |
368 signal fail to work right when the dumped Emacs is run. */ | |
369 signal (SIGHUP, fatal_error_signal); | |
370 signal (SIGQUIT, fatal_error_signal); | |
371 signal (SIGILL, fatal_error_signal); | |
372 signal (SIGTRAP, fatal_error_signal); | |
373 signal (SIGIOT, fatal_error_signal); | |
374 #ifdef SIGEMT | |
375 signal (SIGEMT, fatal_error_signal); | |
376 #endif | |
377 signal (SIGFPE, fatal_error_signal); | |
378 signal (SIGBUS, fatal_error_signal); | |
379 signal (SIGSEGV, fatal_error_signal); | |
380 signal (SIGSYS, fatal_error_signal); | |
381 signal (SIGTERM, fatal_error_signal); | |
382 #ifdef SIGXCPU | |
383 signal (SIGXCPU, fatal_error_signal); | |
384 #endif | |
385 #ifdef SIGXFSZ | |
386 signal (SIGXFSZ, fatal_error_signal); | |
387 #endif /* SIGXFSZ */ | |
388 | |
389 #ifdef AIX | |
390 signal (SIGDANGER, fatal_error_signal); | |
391 signal (20, fatal_error_signal); | |
392 signal (21, fatal_error_signal); | |
393 signal (22, fatal_error_signal); | |
394 signal (23, fatal_error_signal); | |
395 signal (24, fatal_error_signal); | |
372 | 396 #ifdef SIGIO |
284 | 397 signal (SIGAIO, fatal_error_signal); |
398 signal (SIGPTY, fatal_error_signal); | |
372 | 399 #endif |
284 | 400 signal (SIGIOINT, fatal_error_signal); |
401 signal (SIGGRANT, fatal_error_signal); | |
402 signal (SIGRETRACT, fatal_error_signal); | |
403 signal (SIGSOUND, fatal_error_signal); | |
404 signal (SIGMSG, fatal_error_signal); | |
405 #endif /* AIX */ | |
406 } | |
407 | |
408 noninteractive1 = noninteractive; | |
409 | |
410 /* Perform basic initializations (not merely interning symbols) */ | |
411 | |
412 if (!initialized) | |
413 { | |
414 init_alloc_once (); | |
415 init_obarray (); | |
416 init_eval_once (); | |
417 init_syntax_once (); /* Create standard syntax table. */ | |
418 /* Must be done before init_buffer */ | |
419 init_casetab_once (); | |
420 init_buffer_once (); /* Create buffer table and some buffers */ | |
421 init_minibuf_once (); /* Create list of minibuffers */ | |
422 /* Must precede init_window_once */ | |
423 init_window_once (); /* Init the window system */ | |
424 } | |
425 | |
426 init_alloc (); | |
427 init_eval (); | |
428 init_data (); | |
1917
2ed00cbd9e53
* callproc.c (init_callproc): Move the initialization of
Jim Blandy <jimb@redhat.com>
parents:
1821
diff
changeset
|
429 |
2ed00cbd9e53
* callproc.c (init_callproc): Move the initialization of
Jim Blandy <jimb@redhat.com>
parents:
1821
diff
changeset
|
430 /* egetenv is a pretty low-level facility, which may get called in |
2ed00cbd9e53
* callproc.c (init_callproc): Move the initialization of
Jim Blandy <jimb@redhat.com>
parents:
1821
diff
changeset
|
431 many circumstances; it seems flimsy to put off initializing it |
2ed00cbd9e53
* callproc.c (init_callproc): Move the initialization of
Jim Blandy <jimb@redhat.com>
parents:
1821
diff
changeset
|
432 until calling init_callproc. */ |
2ed00cbd9e53
* callproc.c (init_callproc): Move the initialization of
Jim Blandy <jimb@redhat.com>
parents:
1821
diff
changeset
|
433 set_process_environment (); |
2ed00cbd9e53
* callproc.c (init_callproc): Move the initialization of
Jim Blandy <jimb@redhat.com>
parents:
1821
diff
changeset
|
434 |
348 | 435 init_lread (); |
284 | 436 |
437 init_cmdargs (argc, argv, skip_args); /* Create list Vcommand_line_args */ | |
438 init_buffer (); /* Init default directory of main buffer */ | |
439 if (!noninteractive) | |
440 { | |
441 #ifdef VMS | |
763 | 442 init_vms_input ();/* init_display calls get_frame_size, that needs this */ |
284 | 443 #endif /* VMS */ |
444 init_display (); /* Determine terminal type. init_sys_modes uses results */ | |
445 } | |
446 init_keyboard (); /* This too must precede init_sys_modes */ | |
447 init_callproc (); /* And this too. */ | |
448 #ifdef VMS | |
449 init_vmsproc (); /* And this too. */ | |
450 #endif /* VMS */ | |
451 init_sys_modes (); /* Init system terminal modes (RAW or CBREAK, etc.) */ | |
452 init_xdisp (); | |
453 init_macros (); | |
454 init_editfns (); | |
455 #ifdef LISP_FLOAT_TYPE | |
456 init_floatfns (); | |
457 #endif | |
458 #ifdef VMS | |
459 init_vmsfns (); | |
460 #endif /* VMS */ | |
461 init_process (); | |
624 | 462 #ifdef CLASH_DETECTION |
463 init_filelock (); | |
464 #endif /* CLASH_DETECTION */ | |
284 | 465 |
466 /* Intern the names of all standard functions and variables; define standard keys */ | |
467 | |
468 if (!initialized) | |
469 { | |
470 /* The basic levels of Lisp must come first */ | |
471 /* And data must come first of all | |
472 for the sake of symbols like error-message */ | |
473 syms_of_data (); | |
474 syms_of_alloc (); | |
348 | 475 syms_of_lread (); |
284 | 476 syms_of_print (); |
477 syms_of_eval (); | |
478 syms_of_fns (); | |
479 #ifdef LISP_FLOAT_TYPE | |
480 syms_of_floatfns (); | |
481 #endif | |
482 | |
483 syms_of_abbrev (); | |
484 syms_of_buffer (); | |
485 syms_of_bytecode (); | |
486 syms_of_callint (); | |
487 syms_of_casefiddle (); | |
488 syms_of_casetab (); | |
489 syms_of_callproc (); | |
490 syms_of_cmds (); | |
491 #ifndef NO_DIR_LIBRARY | |
492 syms_of_dired (); | |
493 #endif /* not NO_DIR_LIBRARY */ | |
494 syms_of_display (); | |
495 syms_of_doc (); | |
496 syms_of_editfns (); | |
497 syms_of_emacs (); | |
498 syms_of_fileio (); | |
499 #ifdef CLASH_DETECTION | |
500 syms_of_filelock (); | |
501 #endif /* CLASH_DETECTION */ | |
502 syms_of_indent (); | |
503 syms_of_keyboard (); | |
504 syms_of_keymap (); | |
505 syms_of_macros (); | |
506 syms_of_marker (); | |
507 syms_of_minibuf (); | |
508 syms_of_mocklisp (); | |
509 syms_of_process (); | |
510 syms_of_search (); | |
763 | 511 syms_of_frame (); |
284 | 512 syms_of_syntax (); |
513 syms_of_undo (); | |
1284 | 514 |
515 /* Only defined if Emacs is compiled with USE_TEXT_PROPERTIES */ | |
516 syms_of_textprop (); | |
284 | 517 #ifdef VMS |
518 syms_of_vmsproc (); | |
519 #endif /* VMS */ | |
520 syms_of_window (); | |
521 syms_of_xdisp (); | |
522 #ifdef HAVE_X_WINDOWS | |
375 | 523 syms_of_xterm (); |
284 | 524 syms_of_xfns (); |
375 | 525 #ifdef HAVE_X11 |
526 syms_of_xselect (); | |
527 #endif | |
1821
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1774
diff
changeset
|
528 #ifdef HAVE_X_MENU |
284 | 529 syms_of_xmenu (); |
530 #endif /* HAVE_X_MENU */ | |
531 #endif /* HAVE_X_WINDOWS */ | |
532 | |
533 #ifdef SYMS_SYSTEM | |
534 SYMS_SYSTEM; | |
535 #endif | |
536 | |
537 #ifdef SYMS_MACHINE | |
538 SYMS_MACHINE; | |
539 #endif | |
540 | |
541 keys_of_casefiddle (); | |
542 keys_of_cmds (); | |
543 keys_of_buffer (); | |
544 keys_of_keyboard (); | |
545 keys_of_keymap (); | |
546 keys_of_macros (); | |
547 keys_of_minibuf (); | |
548 keys_of_window (); | |
1384
416f7f33fe95
* emacs.c (main): Call keys_of_frame.
Jim Blandy <jimb@redhat.com>
parents:
1350
diff
changeset
|
549 keys_of_frame (); |
284 | 550 } |
551 | |
552 if (!initialized) | |
553 { | |
554 /* Handle -l loadup-and-dump, args passed by Makefile. */ | |
555 if (argc > 2 + skip_args && !strcmp (argv[1 + skip_args], "-l")) | |
556 Vtop_level = Fcons (intern ("load"), | |
557 Fcons (build_string (argv[2 + skip_args]), Qnil)); | |
558 #ifdef CANNOT_DUMP | |
559 /* Unless next switch is -nl, load "loadup.el" first thing. */ | |
560 if (!(argc > 1 + skip_args && !strcmp (argv[1 + skip_args], "-nl"))) | |
561 Vtop_level = Fcons (intern ("load"), | |
562 Fcons (build_string ("loadup.el"), Qnil)); | |
563 #endif /* CANNOT_DUMP */ | |
564 } | |
565 | |
566 initialized = 1; | |
567 | |
815 | 568 #ifdef sun |
569 /* sun's localtime() has a bug. it caches the value of the time | |
570 zone rather than looking it up every time. Since localtime() is | |
571 called to bolt the undumping time into the undumped emacs, this | |
572 results in localtime() ignoring the TZ environment variable. | |
573 This flushes the new TZ value into localtime(). */ | |
574 tzset(); | |
575 #endif /* sun */ | |
576 | |
284 | 577 /* Enter editor command loop. This never returns. */ |
578 Frecursive_edit (); | |
579 /* NOTREACHED */ | |
580 } | |
581 | |
582 DEFUN ("kill-emacs", Fkill_emacs, Skill_emacs, 0, 1, "P", | |
1043
ee6f647ac103
* emacs.c: Incude "systty.h", not "systerm.h".
Jim Blandy <jimb@redhat.com>
parents:
1004
diff
changeset
|
583 "Exit the Emacs job and kill it.\n\ |
284 | 584 If ARG is an integer, return ARG as the exit program code.\n\ |
585 If ARG is a string, stuff it as keyboard input.\n\n\ | |
586 The value of `kill-emacs-hook', if not void,\n\ | |
587 is a list of functions (of no args),\n\ | |
588 all of which are called before Emacs is actually killed.") | |
589 (arg) | |
590 Lisp_Object arg; | |
591 { | |
592 Lisp_Object hook, hook1; | |
593 int i; | |
594 struct gcpro gcpro1; | |
595 | |
596 GCPRO1 (arg); | |
597 | |
598 if (feof (stdin)) | |
599 arg = Qt; | |
600 | |
505 | 601 if (!NILP (Vrun_hooks) && !noninteractive) |
284 | 602 call1 (Vrun_hooks, intern ("kill-emacs-hook")); |
603 | |
604 #ifdef HAVE_X_WINDOWS | |
605 if (!noninteractive && EQ (Vwindow_system, intern ("x"))) | |
606 Fx_close_current_connection (); | |
607 #endif /* HAVE_X_WINDOWS */ | |
608 | |
609 UNGCPRO; | |
610 | |
611 /* Is it really necessary to do this deassign | |
612 when we are going to exit anyway? */ | |
613 /* #ifdef VMS | |
614 stop_vms_input (); | |
615 #endif */ | |
616 stuff_buffered_input (arg); | |
1774
04cd18603ec5
* emacs.c (shut_down_emacs): New function.
Jim Blandy <jimb@redhat.com>
parents:
1472
diff
changeset
|
617 |
04cd18603ec5
* emacs.c (shut_down_emacs): New function.
Jim Blandy <jimb@redhat.com>
parents:
1472
diff
changeset
|
618 shut_down_emacs (0); |
04cd18603ec5
* emacs.c (shut_down_emacs): New function.
Jim Blandy <jimb@redhat.com>
parents:
1472
diff
changeset
|
619 |
284 | 620 exit ((XTYPE (arg) == Lisp_Int) ? XINT (arg) |
621 #ifdef VMS | |
622 : 1 | |
623 #else | |
624 : 0 | |
625 #endif | |
626 ); | |
627 /* NOTREACHED */ | |
628 } | |
1774
04cd18603ec5
* emacs.c (shut_down_emacs): New function.
Jim Blandy <jimb@redhat.com>
parents:
1472
diff
changeset
|
629 |
04cd18603ec5
* emacs.c (shut_down_emacs): New function.
Jim Blandy <jimb@redhat.com>
parents:
1472
diff
changeset
|
630 |
04cd18603ec5
* emacs.c (shut_down_emacs): New function.
Jim Blandy <jimb@redhat.com>
parents:
1472
diff
changeset
|
631 /* Perform an orderly shutdown of Emacs. Autosave any modified |
04cd18603ec5
* emacs.c (shut_down_emacs): New function.
Jim Blandy <jimb@redhat.com>
parents:
1472
diff
changeset
|
632 buffers, kill any child processes, clean up the terminal modes (if |
04cd18603ec5
* emacs.c (shut_down_emacs): New function.
Jim Blandy <jimb@redhat.com>
parents:
1472
diff
changeset
|
633 we're in the foreground), and other stuff like that. Don't perform |
04cd18603ec5
* emacs.c (shut_down_emacs): New function.
Jim Blandy <jimb@redhat.com>
parents:
1472
diff
changeset
|
634 any redisplay; this may be called when Emacs is shutting down in |
04cd18603ec5
* emacs.c (shut_down_emacs): New function.
Jim Blandy <jimb@redhat.com>
parents:
1472
diff
changeset
|
635 the background, or after its X connection has died. |
04cd18603ec5
* emacs.c (shut_down_emacs): New function.
Jim Blandy <jimb@redhat.com>
parents:
1472
diff
changeset
|
636 |
04cd18603ec5
* emacs.c (shut_down_emacs): New function.
Jim Blandy <jimb@redhat.com>
parents:
1472
diff
changeset
|
637 If SIG is a signal number, print a message for it. |
04cd18603ec5
* emacs.c (shut_down_emacs): New function.
Jim Blandy <jimb@redhat.com>
parents:
1472
diff
changeset
|
638 |
04cd18603ec5
* emacs.c (shut_down_emacs): New function.
Jim Blandy <jimb@redhat.com>
parents:
1472
diff
changeset
|
639 This is called by fatal signal handlers, X protocol error handlers, |
04cd18603ec5
* emacs.c (shut_down_emacs): New function.
Jim Blandy <jimb@redhat.com>
parents:
1472
diff
changeset
|
640 and Fkill_emacs. */ |
04cd18603ec5
* emacs.c (shut_down_emacs): New function.
Jim Blandy <jimb@redhat.com>
parents:
1472
diff
changeset
|
641 void |
04cd18603ec5
* emacs.c (shut_down_emacs): New function.
Jim Blandy <jimb@redhat.com>
parents:
1472
diff
changeset
|
642 shut_down_emacs (sig) |
04cd18603ec5
* emacs.c (shut_down_emacs): New function.
Jim Blandy <jimb@redhat.com>
parents:
1472
diff
changeset
|
643 int sig; |
04cd18603ec5
* emacs.c (shut_down_emacs): New function.
Jim Blandy <jimb@redhat.com>
parents:
1472
diff
changeset
|
644 { |
04cd18603ec5
* emacs.c (shut_down_emacs): New function.
Jim Blandy <jimb@redhat.com>
parents:
1472
diff
changeset
|
645 /* If we are controlling the terminal, reset terminal modes */ |
04cd18603ec5
* emacs.c (shut_down_emacs): New function.
Jim Blandy <jimb@redhat.com>
parents:
1472
diff
changeset
|
646 #ifdef EMACS_HAVE_TTY_PGRP |
04cd18603ec5
* emacs.c (shut_down_emacs): New function.
Jim Blandy <jimb@redhat.com>
parents:
1472
diff
changeset
|
647 { |
04cd18603ec5
* emacs.c (shut_down_emacs): New function.
Jim Blandy <jimb@redhat.com>
parents:
1472
diff
changeset
|
648 int tpgrp; |
04cd18603ec5
* emacs.c (shut_down_emacs): New function.
Jim Blandy <jimb@redhat.com>
parents:
1472
diff
changeset
|
649 if (EMACS_GET_TTY_PGRP (0, &tpgrp) != -1 |
04cd18603ec5
* emacs.c (shut_down_emacs): New function.
Jim Blandy <jimb@redhat.com>
parents:
1472
diff
changeset
|
650 && tpgrp == getpgrp (0)) |
04cd18603ec5
* emacs.c (shut_down_emacs): New function.
Jim Blandy <jimb@redhat.com>
parents:
1472
diff
changeset
|
651 { |
04cd18603ec5
* emacs.c (shut_down_emacs): New function.
Jim Blandy <jimb@redhat.com>
parents:
1472
diff
changeset
|
652 fflush (stdout); |
04cd18603ec5
* emacs.c (shut_down_emacs): New function.
Jim Blandy <jimb@redhat.com>
parents:
1472
diff
changeset
|
653 reset_sys_modes (); |
04cd18603ec5
* emacs.c (shut_down_emacs): New function.
Jim Blandy <jimb@redhat.com>
parents:
1472
diff
changeset
|
654 if (sig && sig != SIGTERM) |
04cd18603ec5
* emacs.c (shut_down_emacs): New function.
Jim Blandy <jimb@redhat.com>
parents:
1472
diff
changeset
|
655 fprintf (stderr, "Fatal error (%d).", sig); |
04cd18603ec5
* emacs.c (shut_down_emacs): New function.
Jim Blandy <jimb@redhat.com>
parents:
1472
diff
changeset
|
656 } |
04cd18603ec5
* emacs.c (shut_down_emacs): New function.
Jim Blandy <jimb@redhat.com>
parents:
1472
diff
changeset
|
657 } |
04cd18603ec5
* emacs.c (shut_down_emacs): New function.
Jim Blandy <jimb@redhat.com>
parents:
1472
diff
changeset
|
658 #else |
04cd18603ec5
* emacs.c (shut_down_emacs): New function.
Jim Blandy <jimb@redhat.com>
parents:
1472
diff
changeset
|
659 fflush (stdout); |
04cd18603ec5
* emacs.c (shut_down_emacs): New function.
Jim Blandy <jimb@redhat.com>
parents:
1472
diff
changeset
|
660 reset_sys_modes (); |
04cd18603ec5
* emacs.c (shut_down_emacs): New function.
Jim Blandy <jimb@redhat.com>
parents:
1472
diff
changeset
|
661 #endif |
04cd18603ec5
* emacs.c (shut_down_emacs): New function.
Jim Blandy <jimb@redhat.com>
parents:
1472
diff
changeset
|
662 |
04cd18603ec5
* emacs.c (shut_down_emacs): New function.
Jim Blandy <jimb@redhat.com>
parents:
1472
diff
changeset
|
663 kill_buffer_processes (Qnil); |
04cd18603ec5
* emacs.c (shut_down_emacs): New function.
Jim Blandy <jimb@redhat.com>
parents:
1472
diff
changeset
|
664 Fdo_auto_save (Qt, Qnil); |
04cd18603ec5
* emacs.c (shut_down_emacs): New function.
Jim Blandy <jimb@redhat.com>
parents:
1472
diff
changeset
|
665 |
04cd18603ec5
* emacs.c (shut_down_emacs): New function.
Jim Blandy <jimb@redhat.com>
parents:
1472
diff
changeset
|
666 #ifdef CLASH_DETECTION |
04cd18603ec5
* emacs.c (shut_down_emacs): New function.
Jim Blandy <jimb@redhat.com>
parents:
1472
diff
changeset
|
667 unlock_all_files (); |
04cd18603ec5
* emacs.c (shut_down_emacs): New function.
Jim Blandy <jimb@redhat.com>
parents:
1472
diff
changeset
|
668 #endif |
04cd18603ec5
* emacs.c (shut_down_emacs): New function.
Jim Blandy <jimb@redhat.com>
parents:
1472
diff
changeset
|
669 |
04cd18603ec5
* emacs.c (shut_down_emacs): New function.
Jim Blandy <jimb@redhat.com>
parents:
1472
diff
changeset
|
670 #ifdef VMS |
04cd18603ec5
* emacs.c (shut_down_emacs): New function.
Jim Blandy <jimb@redhat.com>
parents:
1472
diff
changeset
|
671 kill_vms_processes (); |
04cd18603ec5
* emacs.c (shut_down_emacs): New function.
Jim Blandy <jimb@redhat.com>
parents:
1472
diff
changeset
|
672 #endif |
04cd18603ec5
* emacs.c (shut_down_emacs): New function.
Jim Blandy <jimb@redhat.com>
parents:
1472
diff
changeset
|
673 |
04cd18603ec5
* emacs.c (shut_down_emacs): New function.
Jim Blandy <jimb@redhat.com>
parents:
1472
diff
changeset
|
674 #ifdef SIGIO |
04cd18603ec5
* emacs.c (shut_down_emacs): New function.
Jim Blandy <jimb@redhat.com>
parents:
1472
diff
changeset
|
675 /* There is a tendency for a SIGIO signal to arrive within exit, |
04cd18603ec5
* emacs.c (shut_down_emacs): New function.
Jim Blandy <jimb@redhat.com>
parents:
1472
diff
changeset
|
676 and cause a SIGHUP because the input descriptor is already closed. */ |
04cd18603ec5
* emacs.c (shut_down_emacs): New function.
Jim Blandy <jimb@redhat.com>
parents:
1472
diff
changeset
|
677 unrequest_sigio (); |
04cd18603ec5
* emacs.c (shut_down_emacs): New function.
Jim Blandy <jimb@redhat.com>
parents:
1472
diff
changeset
|
678 signal (SIGIO, SIG_IGN); |
04cd18603ec5
* emacs.c (shut_down_emacs): New function.
Jim Blandy <jimb@redhat.com>
parents:
1472
diff
changeset
|
679 #endif |
04cd18603ec5
* emacs.c (shut_down_emacs): New function.
Jim Blandy <jimb@redhat.com>
parents:
1472
diff
changeset
|
680 } |
04cd18603ec5
* emacs.c (shut_down_emacs): New function.
Jim Blandy <jimb@redhat.com>
parents:
1472
diff
changeset
|
681 |
04cd18603ec5
* emacs.c (shut_down_emacs): New function.
Jim Blandy <jimb@redhat.com>
parents:
1472
diff
changeset
|
682 |
284 | 683 |
684 #ifndef CANNOT_DUMP | |
685 /* Nothing like this can be implemented on an Apollo. | |
686 What a loss! */ | |
687 | |
688 #ifdef HAVE_SHM | |
689 | |
690 DEFUN ("dump-emacs-data", Fdump_emacs_data, Sdump_emacs_data, 1, 1, 0, | |
691 "Dump current state of Emacs into data file FILENAME.\n\ | |
692 This function exists on systems that use HAVE_SHM.") | |
693 (intoname) | |
694 Lisp_Object intoname; | |
695 { | |
696 extern int my_edata; | |
697 Lisp_Object tem; | |
698 extern void malloc_warning (); | |
699 | |
700 CHECK_STRING (intoname, 0); | |
701 intoname = Fexpand_file_name (intoname, Qnil); | |
702 | |
703 tem = Vpurify_flag; | |
704 Vpurify_flag = Qnil; | |
705 | |
706 fflush (stdout); | |
707 /* Tell malloc where start of impure now is */ | |
708 /* Also arrange for warnings when nearly out of space. */ | |
709 #ifndef SYSTEM_MALLOC | |
1391
cb0830eb1ce7
(Fdump_emacs, main): Use memory_warnings.
Richard M. Stallman <rms@gnu.org>
parents:
1384
diff
changeset
|
710 memory_warnings (&my_edata, malloc_warning); |
284 | 711 #endif |
712 map_out_data (XSTRING (intoname)->data); | |
713 | |
714 Vpurify_flag = tem; | |
715 | |
716 return Qnil; | |
717 } | |
718 | |
719 #else /* not HAVE_SHM */ | |
720 | |
721 DEFUN ("dump-emacs", Fdump_emacs, Sdump_emacs, 2, 2, 0, | |
722 "Dump current state of Emacs into executable file FILENAME.\n\ | |
723 Take symbols from SYMFILE (presumably the file you executed to run Emacs).\n\ | |
724 This is used in the file `loadup.el' when building Emacs.\n\ | |
725 \n\ | |
726 Bind `command-line-processed' to nil before dumping,\n\ | |
727 if you want the dumped Emacs to process its command line\n\ | |
728 and announce itself normally when it is run.") | |
729 (intoname, symname) | |
730 Lisp_Object intoname, symname; | |
731 { | |
732 extern int my_edata; | |
733 Lisp_Object tem; | |
734 extern void malloc_warning (); | |
735 | |
736 CHECK_STRING (intoname, 0); | |
737 intoname = Fexpand_file_name (intoname, Qnil); | |
505 | 738 if (!NILP (symname)) |
284 | 739 { |
740 CHECK_STRING (symname, 0); | |
741 if (XSTRING (symname)->size) | |
742 symname = Fexpand_file_name (symname, Qnil); | |
743 } | |
744 | |
745 tem = Vpurify_flag; | |
746 Vpurify_flag = Qnil; | |
747 | |
748 fflush (stdout); | |
749 #ifdef VMS | |
750 mapout_data (XSTRING (intoname)->data); | |
751 #else | |
752 /* Tell malloc where start of impure now is */ | |
753 /* Also arrange for warnings when nearly out of space. */ | |
754 #ifndef SYSTEM_MALLOC | |
1391
cb0830eb1ce7
(Fdump_emacs, main): Use memory_warnings.
Richard M. Stallman <rms@gnu.org>
parents:
1384
diff
changeset
|
755 memory_warnings (&my_edata, malloc_warning); |
284 | 756 #endif |
757 unexec (XSTRING (intoname)->data, | |
505 | 758 !NILP (symname) ? XSTRING (symname)->data : 0, &my_edata, 0, 0); |
284 | 759 #endif /* not VMS */ |
760 | |
761 Vpurify_flag = tem; | |
762 | |
763 return Qnil; | |
764 } | |
765 | |
766 #endif /* not HAVE_SHM */ | |
767 | |
768 #endif /* not CANNOT_DUMP */ | |
769 | |
770 #ifdef VMS | |
771 #define SEPCHAR ',' | |
772 #else | |
773 #define SEPCHAR ':' | |
774 #endif | |
775 | |
776 Lisp_Object | |
777 decode_env_path (evarname, defalt) | |
778 char *evarname, *defalt; | |
779 { | |
780 register char *path, *p; | |
781 extern char *index (); | |
782 | |
783 Lisp_Object lpath; | |
784 | |
505 | 785 /* It's okay to use getenv here, because this function is only used |
786 to initialize variables when Emacs starts up, and isn't called | |
787 after that. */ | |
638 | 788 if (evarname != 0) |
789 path = (char *) getenv (evarname); | |
790 else | |
791 path = 0; | |
284 | 792 if (!path) |
793 path = defalt; | |
794 lpath = Qnil; | |
795 while (1) | |
796 { | |
797 p = index (path, SEPCHAR); | |
798 if (!p) p = path + strlen (path); | |
799 lpath = Fcons (p - path ? make_string (path, p - path) : Qnil, | |
800 lpath); | |
801 if (*p) | |
802 path = p + 1; | |
803 else | |
804 break; | |
805 } | |
806 return Fnreverse (lpath); | |
807 } | |
808 | |
809 syms_of_emacs () | |
810 { | |
811 #ifdef HAVE_SHM | |
812 defsubr (&Sdump_emacs_data); | |
813 #else | |
814 defsubr (&Sdump_emacs); | |
815 #endif | |
816 | |
817 defsubr (&Skill_emacs); | |
818 | |
819 DEFVAR_LISP ("command-line-args", &Vcommand_line_args, | |
820 "Args passed by shell to Emacs, as a list of strings."); | |
821 | |
822 DEFVAR_LISP ("system-type", &Vsystem_type, | |
823 "Value is symbol indicating type of operating system you are using."); | |
824 Vsystem_type = intern (SYSTEM_TYPE); | |
825 | |
826 DEFVAR_BOOL ("noninteractive", &noninteractive1, | |
827 "Non-nil means Emacs is running without interactive terminal."); | |
732 | 828 |
1043
ee6f647ac103
* emacs.c: Incude "systty.h", not "systerm.h".
Jim Blandy <jimb@redhat.com>
parents:
1004
diff
changeset
|
829 DEFVAR_LISP ("kill-emacs-hook", &Vkill_emacs_hook, |
ee6f647ac103
* emacs.c: Incude "systty.h", not "systerm.h".
Jim Blandy <jimb@redhat.com>
parents:
1004
diff
changeset
|
830 "Hook to be run whenever kill-emacs is called.\n\ |
ee6f647ac103
* emacs.c: Incude "systty.h", not "systerm.h".
Jim Blandy <jimb@redhat.com>
parents:
1004
diff
changeset
|
831 Since kill-emacs may be invoked when the terminal is disconnected (or\n\ |
ee6f647ac103
* emacs.c: Incude "systty.h", not "systerm.h".
Jim Blandy <jimb@redhat.com>
parents:
1004
diff
changeset
|
832 in other similar situations), functions placed on this hook should not\n\ |
ee6f647ac103
* emacs.c: Incude "systty.h", not "systerm.h".
Jim Blandy <jimb@redhat.com>
parents:
1004
diff
changeset
|
833 not expect to be able to interact with the user."); |
732 | 834 Vkill_emacs_hook = Qnil; |
1141
d4f6d7467916
(main): Use X menu code if HAVE_X_WINDOWS and not NO_X_MENU.
Richard M. Stallman <rms@gnu.org>
parents:
1074
diff
changeset
|
835 |
d4f6d7467916
(main): Use X menu code if HAVE_X_WINDOWS and not NO_X_MENU.
Richard M. Stallman <rms@gnu.org>
parents:
1074
diff
changeset
|
836 DEFVAR_INT ("emacs-priority", &emacs_priority, |
d4f6d7467916
(main): Use X menu code if HAVE_X_WINDOWS and not NO_X_MENU.
Richard M. Stallman <rms@gnu.org>
parents:
1074
diff
changeset
|
837 "Priority for Emacs to run at.\n\ |
d4f6d7467916
(main): Use X menu code if HAVE_X_WINDOWS and not NO_X_MENU.
Richard M. Stallman <rms@gnu.org>
parents:
1074
diff
changeset
|
838 This value is effective only if set before Emacs is dumped,\n\ |
d4f6d7467916
(main): Use X menu code if HAVE_X_WINDOWS and not NO_X_MENU.
Richard M. Stallman <rms@gnu.org>
parents:
1074
diff
changeset
|
839 and only if the Emacs executable is installed with setuid to permit\n\ |
d4f6d7467916
(main): Use X menu code if HAVE_X_WINDOWS and not NO_X_MENU.
Richard M. Stallman <rms@gnu.org>
parents:
1074
diff
changeset
|
840 it to change priority. (Emacs sets its uid back to the real uid.)"); |
d4f6d7467916
(main): Use X menu code if HAVE_X_WINDOWS and not NO_X_MENU.
Richard M. Stallman <rms@gnu.org>
parents:
1074
diff
changeset
|
841 emacs_priority = 0; |
284 | 842 } |