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