Mercurial > emacs
annotate src/emacs.c @ 1878:1c26d0049d4f
(search_command): #if 0 previous change.
author | Richard M. Stallman <rms@gnu.org> |
---|---|
date | Mon, 15 Feb 1993 05:55:45 +0000 |
parents | 04fb1d3d6992 |
children | 2ed00cbd9e53 |
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 (); | |
348 | 429 init_lread (); |
284 | 430 |
431 init_cmdargs (argc, argv, skip_args); /* Create list Vcommand_line_args */ | |
432 init_buffer (); /* Init default directory of main buffer */ | |
433 if (!noninteractive) | |
434 { | |
435 #ifdef VMS | |
763 | 436 init_vms_input ();/* init_display calls get_frame_size, that needs this */ |
284 | 437 #endif /* VMS */ |
438 init_display (); /* Determine terminal type. init_sys_modes uses results */ | |
439 } | |
440 init_keyboard (); /* This too must precede init_sys_modes */ | |
441 init_callproc (); /* And this too. */ | |
442 #ifdef VMS | |
443 init_vmsproc (); /* And this too. */ | |
444 #endif /* VMS */ | |
445 init_sys_modes (); /* Init system terminal modes (RAW or CBREAK, etc.) */ | |
446 init_xdisp (); | |
447 init_macros (); | |
448 init_editfns (); | |
449 #ifdef LISP_FLOAT_TYPE | |
450 init_floatfns (); | |
451 #endif | |
452 #ifdef VMS | |
453 init_vmsfns (); | |
454 #endif /* VMS */ | |
455 init_process (); | |
624 | 456 #ifdef CLASH_DETECTION |
457 init_filelock (); | |
458 #endif /* CLASH_DETECTION */ | |
284 | 459 |
460 /* Intern the names of all standard functions and variables; define standard keys */ | |
461 | |
462 if (!initialized) | |
463 { | |
464 /* The basic levels of Lisp must come first */ | |
465 /* And data must come first of all | |
466 for the sake of symbols like error-message */ | |
467 syms_of_data (); | |
468 syms_of_alloc (); | |
348 | 469 syms_of_lread (); |
284 | 470 syms_of_print (); |
471 syms_of_eval (); | |
472 syms_of_fns (); | |
473 #ifdef LISP_FLOAT_TYPE | |
474 syms_of_floatfns (); | |
475 #endif | |
476 | |
477 syms_of_abbrev (); | |
478 syms_of_buffer (); | |
479 syms_of_bytecode (); | |
480 syms_of_callint (); | |
481 syms_of_casefiddle (); | |
482 syms_of_casetab (); | |
483 syms_of_callproc (); | |
484 syms_of_cmds (); | |
485 #ifndef NO_DIR_LIBRARY | |
486 syms_of_dired (); | |
487 #endif /* not NO_DIR_LIBRARY */ | |
488 syms_of_display (); | |
489 syms_of_doc (); | |
490 syms_of_editfns (); | |
491 syms_of_emacs (); | |
492 syms_of_fileio (); | |
493 #ifdef CLASH_DETECTION | |
494 syms_of_filelock (); | |
495 #endif /* CLASH_DETECTION */ | |
496 syms_of_indent (); | |
497 syms_of_keyboard (); | |
498 syms_of_keymap (); | |
499 syms_of_macros (); | |
500 syms_of_marker (); | |
501 syms_of_minibuf (); | |
502 syms_of_mocklisp (); | |
503 syms_of_process (); | |
504 syms_of_search (); | |
763 | 505 syms_of_frame (); |
284 | 506 syms_of_syntax (); |
507 syms_of_undo (); | |
1284 | 508 |
509 /* Only defined if Emacs is compiled with USE_TEXT_PROPERTIES */ | |
510 syms_of_textprop (); | |
284 | 511 #ifdef VMS |
512 syms_of_vmsproc (); | |
513 #endif /* VMS */ | |
514 syms_of_window (); | |
515 syms_of_xdisp (); | |
516 #ifdef HAVE_X_WINDOWS | |
375 | 517 syms_of_xterm (); |
284 | 518 syms_of_xfns (); |
375 | 519 #ifdef HAVE_X11 |
520 syms_of_xselect (); | |
521 #endif | |
1821
04fb1d3d6992
JimB's changes since January 18th
Jim Blandy <jimb@redhat.com>
parents:
1774
diff
changeset
|
522 #ifdef HAVE_X_MENU |
284 | 523 syms_of_xmenu (); |
524 #endif /* HAVE_X_MENU */ | |
525 #endif /* HAVE_X_WINDOWS */ | |
526 | |
527 #ifdef SYMS_SYSTEM | |
528 SYMS_SYSTEM; | |
529 #endif | |
530 | |
531 #ifdef SYMS_MACHINE | |
532 SYMS_MACHINE; | |
533 #endif | |
534 | |
535 keys_of_casefiddle (); | |
536 keys_of_cmds (); | |
537 keys_of_buffer (); | |
538 keys_of_keyboard (); | |
539 keys_of_keymap (); | |
540 keys_of_macros (); | |
541 keys_of_minibuf (); | |
542 keys_of_window (); | |
1384
416f7f33fe95
* emacs.c (main): Call keys_of_frame.
Jim Blandy <jimb@redhat.com>
parents:
1350
diff
changeset
|
543 keys_of_frame (); |
284 | 544 } |
545 | |
546 if (!initialized) | |
547 { | |
548 /* Handle -l loadup-and-dump, args passed by Makefile. */ | |
549 if (argc > 2 + skip_args && !strcmp (argv[1 + skip_args], "-l")) | |
550 Vtop_level = Fcons (intern ("load"), | |
551 Fcons (build_string (argv[2 + skip_args]), Qnil)); | |
552 #ifdef CANNOT_DUMP | |
553 /* Unless next switch is -nl, load "loadup.el" first thing. */ | |
554 if (!(argc > 1 + skip_args && !strcmp (argv[1 + skip_args], "-nl"))) | |
555 Vtop_level = Fcons (intern ("load"), | |
556 Fcons (build_string ("loadup.el"), Qnil)); | |
557 #endif /* CANNOT_DUMP */ | |
558 } | |
559 | |
560 initialized = 1; | |
561 | |
815 | 562 #ifdef sun |
563 /* sun's localtime() has a bug. it caches the value of the time | |
564 zone rather than looking it up every time. Since localtime() is | |
565 called to bolt the undumping time into the undumped emacs, this | |
566 results in localtime() ignoring the TZ environment variable. | |
567 This flushes the new TZ value into localtime(). */ | |
568 tzset(); | |
569 #endif /* sun */ | |
570 | |
284 | 571 /* Enter editor command loop. This never returns. */ |
572 Frecursive_edit (); | |
573 /* NOTREACHED */ | |
574 } | |
575 | |
576 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
|
577 "Exit the Emacs job and kill it.\n\ |
284 | 578 If ARG is an integer, return ARG as the exit program code.\n\ |
579 If ARG is a string, stuff it as keyboard input.\n\n\ | |
580 The value of `kill-emacs-hook', if not void,\n\ | |
581 is a list of functions (of no args),\n\ | |
582 all of which are called before Emacs is actually killed.") | |
583 (arg) | |
584 Lisp_Object arg; | |
585 { | |
586 Lisp_Object hook, hook1; | |
587 int i; | |
588 struct gcpro gcpro1; | |
589 | |
590 GCPRO1 (arg); | |
591 | |
592 if (feof (stdin)) | |
593 arg = Qt; | |
594 | |
505 | 595 if (!NILP (Vrun_hooks) && !noninteractive) |
284 | 596 call1 (Vrun_hooks, intern ("kill-emacs-hook")); |
597 | |
598 #ifdef HAVE_X_WINDOWS | |
599 if (!noninteractive && EQ (Vwindow_system, intern ("x"))) | |
600 Fx_close_current_connection (); | |
601 #endif /* HAVE_X_WINDOWS */ | |
602 | |
603 UNGCPRO; | |
604 | |
605 /* Is it really necessary to do this deassign | |
606 when we are going to exit anyway? */ | |
607 /* #ifdef VMS | |
608 stop_vms_input (); | |
609 #endif */ | |
610 stuff_buffered_input (arg); | |
1774
04cd18603ec5
* emacs.c (shut_down_emacs): New function.
Jim Blandy <jimb@redhat.com>
parents:
1472
diff
changeset
|
611 |
04cd18603ec5
* emacs.c (shut_down_emacs): New function.
Jim Blandy <jimb@redhat.com>
parents:
1472
diff
changeset
|
612 shut_down_emacs (0); |
04cd18603ec5
* emacs.c (shut_down_emacs): New function.
Jim Blandy <jimb@redhat.com>
parents:
1472
diff
changeset
|
613 |
284 | 614 exit ((XTYPE (arg) == Lisp_Int) ? XINT (arg) |
615 #ifdef VMS | |
616 : 1 | |
617 #else | |
618 : 0 | |
619 #endif | |
620 ); | |
621 /* NOTREACHED */ | |
622 } | |
1774
04cd18603ec5
* emacs.c (shut_down_emacs): New function.
Jim Blandy <jimb@redhat.com>
parents:
1472
diff
changeset
|
623 |
04cd18603ec5
* emacs.c (shut_down_emacs): New function.
Jim Blandy <jimb@redhat.com>
parents:
1472
diff
changeset
|
624 |
04cd18603ec5
* emacs.c (shut_down_emacs): New function.
Jim Blandy <jimb@redhat.com>
parents:
1472
diff
changeset
|
625 /* 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
|
626 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
|
627 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
|
628 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
|
629 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
|
630 |
04cd18603ec5
* emacs.c (shut_down_emacs): New function.
Jim Blandy <jimb@redhat.com>
parents:
1472
diff
changeset
|
631 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
|
632 |
04cd18603ec5
* emacs.c (shut_down_emacs): New function.
Jim Blandy <jimb@redhat.com>
parents:
1472
diff
changeset
|
633 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
|
634 and Fkill_emacs. */ |
04cd18603ec5
* emacs.c (shut_down_emacs): New function.
Jim Blandy <jimb@redhat.com>
parents:
1472
diff
changeset
|
635 void |
04cd18603ec5
* emacs.c (shut_down_emacs): New function.
Jim Blandy <jimb@redhat.com>
parents:
1472
diff
changeset
|
636 shut_down_emacs (sig) |
04cd18603ec5
* emacs.c (shut_down_emacs): New function.
Jim Blandy <jimb@redhat.com>
parents:
1472
diff
changeset
|
637 int sig; |
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 /* 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
|
640 #ifdef EMACS_HAVE_TTY_PGRP |
04cd18603ec5
* emacs.c (shut_down_emacs): New function.
Jim Blandy <jimb@redhat.com>
parents:
1472
diff
changeset
|
641 { |
04cd18603ec5
* emacs.c (shut_down_emacs): New function.
Jim Blandy <jimb@redhat.com>
parents:
1472
diff
changeset
|
642 int tpgrp; |
04cd18603ec5
* emacs.c (shut_down_emacs): New function.
Jim Blandy <jimb@redhat.com>
parents:
1472
diff
changeset
|
643 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
|
644 && tpgrp == getpgrp (0)) |
04cd18603ec5
* emacs.c (shut_down_emacs): New function.
Jim Blandy <jimb@redhat.com>
parents:
1472
diff
changeset
|
645 { |
04cd18603ec5
* emacs.c (shut_down_emacs): New function.
Jim Blandy <jimb@redhat.com>
parents:
1472
diff
changeset
|
646 fflush (stdout); |
04cd18603ec5
* emacs.c (shut_down_emacs): New function.
Jim Blandy <jimb@redhat.com>
parents:
1472
diff
changeset
|
647 reset_sys_modes (); |
04cd18603ec5
* emacs.c (shut_down_emacs): New function.
Jim Blandy <jimb@redhat.com>
parents:
1472
diff
changeset
|
648 if (sig && sig != SIGTERM) |
04cd18603ec5
* emacs.c (shut_down_emacs): New function.
Jim Blandy <jimb@redhat.com>
parents:
1472
diff
changeset
|
649 fprintf (stderr, "Fatal error (%d).", sig); |
04cd18603ec5
* emacs.c (shut_down_emacs): New function.
Jim Blandy <jimb@redhat.com>
parents:
1472
diff
changeset
|
650 } |
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 #else |
04cd18603ec5
* emacs.c (shut_down_emacs): New function.
Jim Blandy <jimb@redhat.com>
parents:
1472
diff
changeset
|
653 fflush (stdout); |
04cd18603ec5
* emacs.c (shut_down_emacs): New function.
Jim Blandy <jimb@redhat.com>
parents:
1472
diff
changeset
|
654 reset_sys_modes (); |
04cd18603ec5
* emacs.c (shut_down_emacs): New function.
Jim Blandy <jimb@redhat.com>
parents:
1472
diff
changeset
|
655 #endif |
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 kill_buffer_processes (Qnil); |
04cd18603ec5
* emacs.c (shut_down_emacs): New function.
Jim Blandy <jimb@redhat.com>
parents:
1472
diff
changeset
|
658 Fdo_auto_save (Qt, Qnil); |
04cd18603ec5
* emacs.c (shut_down_emacs): New function.
Jim Blandy <jimb@redhat.com>
parents:
1472
diff
changeset
|
659 |
04cd18603ec5
* emacs.c (shut_down_emacs): New function.
Jim Blandy <jimb@redhat.com>
parents:
1472
diff
changeset
|
660 #ifdef CLASH_DETECTION |
04cd18603ec5
* emacs.c (shut_down_emacs): New function.
Jim Blandy <jimb@redhat.com>
parents:
1472
diff
changeset
|
661 unlock_all_files (); |
04cd18603ec5
* emacs.c (shut_down_emacs): New function.
Jim Blandy <jimb@redhat.com>
parents:
1472
diff
changeset
|
662 #endif |
04cd18603ec5
* emacs.c (shut_down_emacs): New function.
Jim Blandy <jimb@redhat.com>
parents:
1472
diff
changeset
|
663 |
04cd18603ec5
* emacs.c (shut_down_emacs): New function.
Jim Blandy <jimb@redhat.com>
parents:
1472
diff
changeset
|
664 #ifdef VMS |
04cd18603ec5
* emacs.c (shut_down_emacs): New function.
Jim Blandy <jimb@redhat.com>
parents:
1472
diff
changeset
|
665 kill_vms_processes (); |
04cd18603ec5
* emacs.c (shut_down_emacs): New function.
Jim Blandy <jimb@redhat.com>
parents:
1472
diff
changeset
|
666 #endif |
04cd18603ec5
* emacs.c (shut_down_emacs): New function.
Jim Blandy <jimb@redhat.com>
parents:
1472
diff
changeset
|
667 |
04cd18603ec5
* emacs.c (shut_down_emacs): New function.
Jim Blandy <jimb@redhat.com>
parents:
1472
diff
changeset
|
668 #ifdef SIGIO |
04cd18603ec5
* emacs.c (shut_down_emacs): New function.
Jim Blandy <jimb@redhat.com>
parents:
1472
diff
changeset
|
669 /* 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
|
670 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
|
671 unrequest_sigio (); |
04cd18603ec5
* emacs.c (shut_down_emacs): New function.
Jim Blandy <jimb@redhat.com>
parents:
1472
diff
changeset
|
672 signal (SIGIO, SIG_IGN); |
04cd18603ec5
* emacs.c (shut_down_emacs): New function.
Jim Blandy <jimb@redhat.com>
parents:
1472
diff
changeset
|
673 #endif |
04cd18603ec5
* emacs.c (shut_down_emacs): New function.
Jim Blandy <jimb@redhat.com>
parents:
1472
diff
changeset
|
674 } |
04cd18603ec5
* emacs.c (shut_down_emacs): New function.
Jim Blandy <jimb@redhat.com>
parents:
1472
diff
changeset
|
675 |
04cd18603ec5
* emacs.c (shut_down_emacs): New function.
Jim Blandy <jimb@redhat.com>
parents:
1472
diff
changeset
|
676 |
284 | 677 |
678 #ifndef CANNOT_DUMP | |
679 /* Nothing like this can be implemented on an Apollo. | |
680 What a loss! */ | |
681 | |
682 #ifdef HAVE_SHM | |
683 | |
684 DEFUN ("dump-emacs-data", Fdump_emacs_data, Sdump_emacs_data, 1, 1, 0, | |
685 "Dump current state of Emacs into data file FILENAME.\n\ | |
686 This function exists on systems that use HAVE_SHM.") | |
687 (intoname) | |
688 Lisp_Object intoname; | |
689 { | |
690 extern int my_edata; | |
691 Lisp_Object tem; | |
692 extern void malloc_warning (); | |
693 | |
694 CHECK_STRING (intoname, 0); | |
695 intoname = Fexpand_file_name (intoname, Qnil); | |
696 | |
697 tem = Vpurify_flag; | |
698 Vpurify_flag = Qnil; | |
699 | |
700 fflush (stdout); | |
701 /* Tell malloc where start of impure now is */ | |
702 /* Also arrange for warnings when nearly out of space. */ | |
703 #ifndef SYSTEM_MALLOC | |
1391
cb0830eb1ce7
(Fdump_emacs, main): Use memory_warnings.
Richard M. Stallman <rms@gnu.org>
parents:
1384
diff
changeset
|
704 memory_warnings (&my_edata, malloc_warning); |
284 | 705 #endif |
706 map_out_data (XSTRING (intoname)->data); | |
707 | |
708 Vpurify_flag = tem; | |
709 | |
710 return Qnil; | |
711 } | |
712 | |
713 #else /* not HAVE_SHM */ | |
714 | |
715 DEFUN ("dump-emacs", Fdump_emacs, Sdump_emacs, 2, 2, 0, | |
716 "Dump current state of Emacs into executable file FILENAME.\n\ | |
717 Take symbols from SYMFILE (presumably the file you executed to run Emacs).\n\ | |
718 This is used in the file `loadup.el' when building Emacs.\n\ | |
719 \n\ | |
720 Bind `command-line-processed' to nil before dumping,\n\ | |
721 if you want the dumped Emacs to process its command line\n\ | |
722 and announce itself normally when it is run.") | |
723 (intoname, symname) | |
724 Lisp_Object intoname, symname; | |
725 { | |
726 extern int my_edata; | |
727 Lisp_Object tem; | |
728 extern void malloc_warning (); | |
729 | |
730 CHECK_STRING (intoname, 0); | |
731 intoname = Fexpand_file_name (intoname, Qnil); | |
505 | 732 if (!NILP (symname)) |
284 | 733 { |
734 CHECK_STRING (symname, 0); | |
735 if (XSTRING (symname)->size) | |
736 symname = Fexpand_file_name (symname, Qnil); | |
737 } | |
738 | |
739 tem = Vpurify_flag; | |
740 Vpurify_flag = Qnil; | |
741 | |
742 fflush (stdout); | |
743 #ifdef VMS | |
744 mapout_data (XSTRING (intoname)->data); | |
745 #else | |
746 /* Tell malloc where start of impure now is */ | |
747 /* Also arrange for warnings when nearly out of space. */ | |
748 #ifndef SYSTEM_MALLOC | |
1391
cb0830eb1ce7
(Fdump_emacs, main): Use memory_warnings.
Richard M. Stallman <rms@gnu.org>
parents:
1384
diff
changeset
|
749 memory_warnings (&my_edata, malloc_warning); |
284 | 750 #endif |
751 unexec (XSTRING (intoname)->data, | |
505 | 752 !NILP (symname) ? XSTRING (symname)->data : 0, &my_edata, 0, 0); |
284 | 753 #endif /* not VMS */ |
754 | |
755 Vpurify_flag = tem; | |
756 | |
757 return Qnil; | |
758 } | |
759 | |
760 #endif /* not HAVE_SHM */ | |
761 | |
762 #endif /* not CANNOT_DUMP */ | |
763 | |
764 #ifdef VMS | |
765 #define SEPCHAR ',' | |
766 #else | |
767 #define SEPCHAR ':' | |
768 #endif | |
769 | |
770 Lisp_Object | |
771 decode_env_path (evarname, defalt) | |
772 char *evarname, *defalt; | |
773 { | |
774 register char *path, *p; | |
775 extern char *index (); | |
776 | |
777 Lisp_Object lpath; | |
778 | |
505 | 779 /* It's okay to use getenv here, because this function is only used |
780 to initialize variables when Emacs starts up, and isn't called | |
781 after that. */ | |
638 | 782 if (evarname != 0) |
783 path = (char *) getenv (evarname); | |
784 else | |
785 path = 0; | |
284 | 786 if (!path) |
787 path = defalt; | |
788 lpath = Qnil; | |
789 while (1) | |
790 { | |
791 p = index (path, SEPCHAR); | |
792 if (!p) p = path + strlen (path); | |
793 lpath = Fcons (p - path ? make_string (path, p - path) : Qnil, | |
794 lpath); | |
795 if (*p) | |
796 path = p + 1; | |
797 else | |
798 break; | |
799 } | |
800 return Fnreverse (lpath); | |
801 } | |
802 | |
803 syms_of_emacs () | |
804 { | |
805 #ifdef HAVE_SHM | |
806 defsubr (&Sdump_emacs_data); | |
807 #else | |
808 defsubr (&Sdump_emacs); | |
809 #endif | |
810 | |
811 defsubr (&Skill_emacs); | |
812 | |
813 DEFVAR_LISP ("command-line-args", &Vcommand_line_args, | |
814 "Args passed by shell to Emacs, as a list of strings."); | |
815 | |
816 DEFVAR_LISP ("system-type", &Vsystem_type, | |
817 "Value is symbol indicating type of operating system you are using."); | |
818 Vsystem_type = intern (SYSTEM_TYPE); | |
819 | |
820 DEFVAR_BOOL ("noninteractive", &noninteractive1, | |
821 "Non-nil means Emacs is running without interactive terminal."); | |
732 | 822 |
1043
ee6f647ac103
* emacs.c: Incude "systty.h", not "systerm.h".
Jim Blandy <jimb@redhat.com>
parents:
1004
diff
changeset
|
823 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
|
824 "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
|
825 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
|
826 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
|
827 not expect to be able to interact with the user."); |
732 | 828 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
|
829 |
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
|
830 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
|
831 "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
|
832 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
|
833 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
|
834 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
|
835 emacs_priority = 0; |
284 | 836 } |