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