]> code.delx.au - gnu-emacs/blob - src/emacs.c
(Vread_buffer_function): New var.
[gnu-emacs] / src / emacs.c
1 /* Fully extensible Emacs, running on Unix, intended for GNU.
2 Copyright (C) 1985, 86, 87, 93, 94, 95 Free Software Foundation, Inc.
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 2, 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, Inc., 59 Temple Place - Suite 330,
19 Boston, MA 02111-1307, USA. */
20
21
22 #include <signal.h>
23 #include <errno.h>
24
25 #include <config.h>
26 #include <stdio.h>
27
28 #include <sys/types.h>
29 #include <sys/file.h>
30
31 #ifdef VMS
32 #include <ssdef.h>
33 #endif
34
35 #ifdef BSD_SYSTEM
36 #include <sys/ioctl.h>
37 #endif
38
39 #include "lisp.h"
40 #include "commands.h"
41 #include "intervals.h"
42
43 #include "systty.h"
44 #include "blockinput.h"
45 #include "syssignal.h"
46 #include "process.h"
47
48 #ifdef HAVE_SETRLIMIT
49 #include <sys/time.h>
50 #include <sys/resource.h>
51 #endif
52
53 #ifndef O_RDWR
54 #define O_RDWR 2
55 #endif
56
57 extern void malloc_warning ();
58 extern void set_time_zone_rule ();
59 extern char *index ();
60 extern char *strerror ();
61
62 /* Command line args from shell, as list of strings */
63 Lisp_Object Vcommand_line_args;
64
65 /* The name under which Emacs was invoked, with any leading directory
66 names discarded. */
67 Lisp_Object Vinvocation_name;
68
69 /* The directory name from which Emacs was invoked. */
70 Lisp_Object Vinvocation_directory;
71
72 /* The directory name in which to find subdirs such as lisp and etc.
73 nil means get them only from PATH_LOADSEARCH. */
74 Lisp_Object Vinstallation_directory;
75
76 /* Hook run by `kill-emacs' before it does really anything. */
77 Lisp_Object Vkill_emacs_hook;
78
79 /* Set nonzero after Emacs has started up the first time.
80 Prevents reinitialization of the Lisp world and keymaps
81 on subsequent starts. */
82 int initialized;
83
84 #ifdef DOUG_LEA_MALLOC
85 /* Preserves a pointer to the memory allocated that copies that
86 static data inside glibc's malloc. */
87 void *malloc_state_ptr;
88 /* From glibc, a routine that returns a copy of the malloc internal state. */
89 extern void *malloc_get_state ();
90 /* From glibc, a routine that overwrites the malloc internal state. */
91 extern void malloc_set_state ();
92 #endif
93
94 /* Variable whose value is symbol giving operating system type. */
95 Lisp_Object Vsystem_type;
96
97 /* Variable whose value is string giving configuration built for. */
98 Lisp_Object Vsystem_configuration;
99
100 /* Variable whose value is string giving configuration options,
101 for use when reporting bugs. */
102 Lisp_Object Vsystem_configuration_options;
103
104 Lisp_Object Qfile_name_handler_alist;
105
106 /* If non-zero, emacs should not attempt to use an window-specific code,
107 but instead should use the virtual terminal under which it was started */
108 int inhibit_window_system;
109
110 /* If nonzero, set Emacs to run at this priority. This is also used
111 in child_setup and sys_suspend to make sure subshells run at normal
112 priority; Those functions have their own extern declaration. */
113 int emacs_priority;
114
115 /* If non-zero a filter or a sentinel is running. Tested to save the match
116 data on the first attempt to change it inside asynchronous code. */
117 int running_asynch_code;
118
119 #ifdef BSD_PGRPS
120 /* See sysdep.c. */
121 extern int inherited_pgroup;
122 #endif
123
124 #ifdef HAVE_X_WINDOWS
125 /* If non-zero, -d was specified, meaning we're using some window system. */
126 int display_arg;
127 #endif
128
129 /* An address near the bottom of the stack.
130 Tells GC how to save a copy of the stack. */
131 char *stack_bottom;
132
133 #ifdef HAVE_WINDOW_SYSTEM
134 extern Lisp_Object Vwindow_system;
135 #endif /* HAVE_WINDOW_SYSTEM */
136
137 extern Lisp_Object Vauto_save_list_file_name;
138
139 #ifdef USG_SHARED_LIBRARIES
140 /* If nonzero, this is the place to put the end of the writable segment
141 at startup. */
142
143 unsigned int bss_end = 0;
144 #endif
145
146 /* Nonzero means running Emacs without interactive terminal. */
147
148 int noninteractive;
149
150 /* Value of Lisp variable `noninteractive'.
151 Normally same as C variable `noninteractive'
152 but nothing terrible happens if user sets this one. */
153
154 int noninteractive1;
155
156 /* Save argv and argc. */
157 char **initial_argv;
158 int initial_argc;
159
160 static void sort_args ();
161 \f
162 /* Signal code for the fatal signal that was received */
163 int fatal_error_code;
164
165 /* Nonzero if handling a fatal error already */
166 int fatal_error_in_progress;
167
168 /* Handle bus errors, illegal instruction, etc. */
169 SIGTYPE
170 fatal_error_signal (sig)
171 int sig;
172 {
173 fatal_error_code = sig;
174 signal (sig, SIG_DFL);
175
176 TOTALLY_UNBLOCK_INPUT;
177
178 /* If fatal error occurs in code below, avoid infinite recursion. */
179 if (! fatal_error_in_progress)
180 {
181 fatal_error_in_progress = 1;
182
183 shut_down_emacs (sig, 0, Qnil);
184 }
185
186 #ifdef VMS
187 LIB$STOP (SS$_ABORT);
188 #else
189 /* Signal the same code; this time it will really be fatal.
190 Remember that since we're in a signal handler, the signal we're
191 going to send is probably blocked, so we have to unblock it if we
192 want to really receive it. */
193 #ifndef MSDOS
194 sigunblock (sigmask (fatal_error_code));
195 #endif
196 kill (getpid (), fatal_error_code);
197 #endif /* not VMS */
198 }
199
200 #ifdef SIGDANGER
201
202 /* Handler for SIGDANGER. */
203 SIGTYPE
204 memory_warning_signal (sig)
205 int sig;
206 {
207 signal (sig, memory_warning_signal);
208
209 malloc_warning ("Operating system warns that virtual memory is running low.\n");
210
211 /* It might be unsafe to call do_auto_save now. */
212 force_auto_save_soon ();
213 }
214 #endif
215 \f
216 /* Code for dealing with Lisp access to the Unix command line */
217
218 static
219 init_cmdargs (argc, argv, skip_args)
220 int argc;
221 char **argv;
222 int skip_args;
223 {
224 register int i;
225 Lisp_Object name, dir, tem;
226 int count = specpdl_ptr - specpdl;
227 Lisp_Object raw_name;
228
229 initial_argv = argv;
230 initial_argc = argc;
231
232 raw_name = build_string (argv[0]);
233
234 /* Add /: to the front of the name
235 if it would otherwise be treated as magic. */
236 tem = Ffind_file_name_handler (raw_name, Qt);
237 if (! NILP (tem))
238 raw_name = concat2 (build_string ("/:"), raw_name);
239
240 Vinvocation_name = Ffile_name_nondirectory (raw_name);
241 Vinvocation_directory = Ffile_name_directory (raw_name);
242
243 /* If we got no directory in argv[0], search PATH to find where
244 Emacs actually came from. */
245 if (NILP (Vinvocation_directory))
246 {
247 Lisp_Object found;
248 int yes = openp (Vexec_path, Vinvocation_name,
249 EXEC_SUFFIXES, &found, 1);
250 if (yes == 1)
251 {
252 /* Add /: to the front of the name
253 if it would otherwise be treated as magic. */
254 tem = Ffind_file_name_handler (found, Qt);
255 if (! NILP (tem))
256 found = concat2 (build_string ("/:"), found);
257 Vinvocation_directory = Ffile_name_directory (found);
258 }
259 }
260
261 if (!NILP (Vinvocation_directory)
262 && NILP (Ffile_name_absolute_p (Vinvocation_directory)))
263 /* Emacs was started with relative path, like ./emacs.
264 Make it absolute. */
265 Vinvocation_directory = Fexpand_file_name (Vinvocation_directory, Qnil);
266
267 Vinstallation_directory = Qnil;
268
269 if (!NILP (Vinvocation_directory))
270 {
271 dir = Vinvocation_directory;
272 name = Fexpand_file_name (Vinvocation_name, dir);
273 while (1)
274 {
275 Lisp_Object tem, lib_src_exists;
276 Lisp_Object etc_exists, info_exists;
277
278 /* See if dir contains subdirs for use by Emacs.
279 Check for the ones that would exist in a build directory,
280 not including lisp and info. */
281 tem = Fexpand_file_name (build_string ("lib-src"), dir);
282 lib_src_exists = Ffile_exists_p (tem);
283
284 #ifdef MSDOS
285 /* MSDOS installations frequently remove lib-src, but we still
286 must set installation-directory, or else info won't find
287 its files (it uses the value of installation-directory). */
288 tem = Fexpand_file_name (build_string ("info"), dir);
289 info_exists = Ffile_exists_p (tem);
290 #else
291 info_exists = Qnil;
292 #endif
293
294 if (!NILP (lib_src_exists) || !NILP (info_exists))
295 {
296 tem = Fexpand_file_name (build_string ("etc"), dir);
297 etc_exists = Ffile_exists_p (tem);
298 if (!NILP (etc_exists))
299 {
300 Vinstallation_directory
301 = Ffile_name_as_directory (dir);
302 break;
303 }
304 }
305
306 /* See if dir's parent contains those subdirs. */
307 tem = Fexpand_file_name (build_string ("../lib-src"), dir);
308 lib_src_exists = Ffile_exists_p (tem);
309
310
311 #ifdef MSDOS
312 /* See the MSDOS commentary above. */
313 tem = Fexpand_file_name (build_string ("../info"), dir);
314 info_exists = Ffile_exists_p (tem);
315 #else
316 info_exists = Qnil;
317 #endif
318
319 if (!NILP (lib_src_exists) || !NILP (info_exists))
320 {
321 tem = Fexpand_file_name (build_string ("../etc"), dir);
322 etc_exists = Ffile_exists_p (tem);
323 if (!NILP (etc_exists))
324 {
325 tem = Fexpand_file_name (build_string (".."), dir);
326 Vinstallation_directory
327 = Ffile_name_as_directory (tem);
328 break;
329 }
330 }
331
332 /* If the Emacs executable is actually a link,
333 next try the dir that the link points into. */
334 tem = Ffile_symlink_p (name);
335 if (!NILP (tem))
336 {
337 name = Fexpand_file_name (tem, dir);
338 dir = Ffile_name_directory (name);
339 }
340 else
341 break;
342 }
343 }
344
345 Vcommand_line_args = Qnil;
346
347 for (i = argc - 1; i >= 0; i--)
348 {
349 if (i == 0 || i > skip_args)
350 Vcommand_line_args
351 = Fcons (build_string (argv[i]), Vcommand_line_args);
352 }
353
354 unbind_to (count, Qnil);
355 }
356
357 DEFUN ("invocation-name", Finvocation_name, Sinvocation_name, 0, 0, 0,
358 "Return the program name that was used to run Emacs.\n\
359 Any directory names are omitted.")
360 ()
361 {
362 return Fcopy_sequence (Vinvocation_name);
363 }
364
365 DEFUN ("invocation-directory", Finvocation_directory, Sinvocation_directory,
366 0, 0, 0,
367 "Return the directory name in which the Emacs executable was located")
368 ()
369 {
370 return Fcopy_sequence (Vinvocation_directory);
371 }
372
373 \f
374 #ifdef VMS
375 #ifdef LINK_CRTL_SHARE
376 #ifdef SHARABLE_LIB_BUG
377 extern noshare char **environ;
378 #endif /* SHARABLE_LIB_BUG */
379 #endif /* LINK_CRTL_SHARE */
380 #endif /* VMS */
381
382 #ifdef HAVE_TZSET
383 /* A valid but unlikely value for the TZ environment value.
384 It is OK (though a bit slower) if the user actually chooses this value. */
385 static char dump_tz[] = "UtC0";
386 #endif
387
388 #ifndef ORDINARY_LINK
389 /* We don't include crtbegin.o and crtend.o in the link,
390 so these functions and variables might be missed.
391 Provide dummy definitions to avoid error.
392 (We don't have any real constructors or destructors.) */
393 #ifdef __GNUC__
394 #ifndef GCC_CTORS_IN_LIBC
395 __do_global_ctors ()
396 {}
397 __do_global_ctors_aux ()
398 {}
399 __do_global_dtors ()
400 {}
401 /* Linux has a bug in its library; avoid an error. */
402 #ifndef LINUX
403 char * __CTOR_LIST__[2] = { (char *) (-1), 0 };
404 #endif
405 char * __DTOR_LIST__[2] = { (char *) (-1), 0 };
406 #endif /* GCC_CTORS_IN_LIBC */
407 __main ()
408 {}
409 #endif /* __GNUC__ */
410 #endif /* ORDINARY_LINK */
411
412 /* Test whether the next argument in ARGV matches SSTR or a prefix of
413 LSTR (at least MINLEN characters). If so, then if VALPTR is non-null
414 (the argument is supposed to have a value) store in *VALPTR either
415 the next argument or the portion of this one after the equal sign.
416 ARGV is read starting at position *SKIPPTR; this index is advanced
417 by the number of arguments used.
418
419 Too bad we can't just use getopt for all of this, but we don't have
420 enough information to do it right. */
421
422 static int
423 argmatch (argv, argc, sstr, lstr, minlen, valptr, skipptr)
424 char **argv;
425 int argc;
426 char *sstr;
427 char *lstr;
428 int minlen;
429 char **valptr;
430 int *skipptr;
431 {
432 char *p;
433 int arglen;
434 char *arg;
435
436 /* Don't access argv[argc]; give up in advance. */
437 if (argc <= *skipptr + 1)
438 return 0;
439
440 arg = argv[*skipptr+1];
441 if (arg == NULL)
442 return 0;
443 if (strcmp (arg, sstr) == 0)
444 {
445 if (valptr != NULL)
446 {
447 *valptr = argv[*skipptr+2];
448 *skipptr += 2;
449 }
450 else
451 *skipptr += 1;
452 return 1;
453 }
454 arglen = (valptr != NULL && (p = index (arg, '=')) != NULL
455 ? p - arg : strlen (arg));
456 if (lstr == 0 || arglen < minlen || strncmp (arg, lstr, arglen) != 0)
457 return 0;
458 else if (valptr == NULL)
459 {
460 *skipptr += 1;
461 return 1;
462 }
463 else if (p != NULL)
464 {
465 *valptr = p+1;
466 *skipptr += 1;
467 return 1;
468 }
469 else if (argv[*skipptr+2] != NULL)
470 {
471 *valptr = argv[*skipptr+2];
472 *skipptr += 2;
473 return 1;
474 }
475 else
476 {
477 return 0;
478 }
479 }
480
481 /* ARGSUSED */
482 main (argc, argv, envp)
483 int argc;
484 char **argv;
485 char **envp;
486 {
487 char stack_bottom_variable;
488 int skip_args = 0;
489 extern int errno;
490 extern sys_nerr;
491 #ifdef HAVE_SETRLIMIT
492 struct rlimit rlim;
493 #endif
494
495 #ifdef LINUX_SBRK_BUG
496 __sbrk (1);
497 #endif
498
499 #ifdef DOUG_LEA_MALLOC
500 if (initialized)
501 {
502 malloc_set_state (malloc_state_ptr);
503 free (malloc_state_ptr);
504 r_alloc_reinit ();
505 }
506 #endif
507
508 #ifdef RUN_TIME_REMAP
509 if (initialized)
510 run_time_remap (argv[0]);
511 #endif
512
513 sort_args (argc, argv);
514
515 if (argmatch (argv, argc, "-version", "--version", 3, NULL, &skip_args))
516 {
517 Lisp_Object tem;
518 tem = Fsymbol_value (intern ("emacs-version"));
519 if (!STRINGP (tem))
520 {
521 fprintf (stderr, "Invalid value of `emacs-version'\n");
522 exit (1);
523 }
524 else
525 {
526 printf ("GNU Emacs %s\n", XSTRING (tem)->data);
527 printf ("Copyright (C) 1997 Free Software Foundation, Inc.\n");
528 printf ("GNU Emacs comes with ABSOLUTELY NO WARRANTY.\n");
529 printf ("You may redistribute copies of Emacs\n");
530 printf ("under the terms of the GNU General Public License.\n");
531 printf ("For more information about these matters, ");
532 printf ("see the files named COPYING.\n");
533 exit (0);
534 }
535 }
536
537 /* Map in shared memory, if we are using that. */
538 #ifdef HAVE_SHM
539 if (argmatch (argv, argc, "-nl", "--no-shared-memory", 6, NULL, &skip_args))
540 {
541 map_in_data (0);
542 /* The shared memory was just restored, which clobbered this. */
543 skip_args = 1;
544 }
545 else
546 {
547 map_in_data (1);
548 /* The shared memory was just restored, which clobbered this. */
549 skip_args = 0;
550 }
551 #endif
552
553 #ifdef NeXT
554 {
555 extern int malloc_cookie;
556 /* This helps out unexnext.c. */
557 if (initialized)
558 if (malloc_jumpstart (malloc_cookie) != 0)
559 printf ("malloc jumpstart failed!\n");
560 }
561 #endif /* NeXT */
562
563 #ifdef VMS
564 /* If -map specified, map the data file in */
565 {
566 char *file;
567 if (argmatch (argv, argc, "-map", "--map-data", 3, &mapin_file, &skip_args))
568 mapin_data (file);
569 }
570
571 #ifdef LINK_CRTL_SHARE
572 #ifdef SHARABLE_LIB_BUG
573 /* Bletcherous shared libraries! */
574 if (!stdin)
575 stdin = fdopen (0, "r");
576 if (!stdout)
577 stdout = fdopen (1, "w");
578 if (!stderr)
579 stderr = fdopen (2, "w");
580 if (!environ)
581 environ = envp;
582 #endif /* SHARABLE_LIB_BUG */
583 #endif /* LINK_CRTL_SHARE */
584 #endif /* VMS */
585
586 #if defined (HAVE_SETRLIMIT) && defined (RLIMIT_STACK)
587 /* Extend the stack space available.
588 Don't do that if dumping, since some systems (e.g. DJGPP)
589 might define a smaller stack limit at that time. */
590 if (1
591 #ifndef CANNOT_DUMP
592 && (!noninteractive || initialized)
593 #endif
594 && !getrlimit (RLIMIT_STACK, &rlim))
595 {
596 long newlim;
597 extern int re_max_failures;
598 /* Approximate the amount regex.c needs per unit of re_max_failures. */
599 int ratio = 20 * sizeof (char *);
600 /* Then add 33% to cover the size of the smaller stacks that regex.c
601 successively allocates and discards, on its way to the maximum. */
602 ratio += ratio / 3;
603 /* Add in some extra to cover
604 what we're likely to use for other reasons. */
605 newlim = re_max_failures * ratio + 200000;
606 #ifdef __NetBSD__
607 /* NetBSD (at least NetBSD 1.2G and former) has a bug in its
608 stack allocation routine for new process that the allocation
609 fails if stack limit is not on page boundary. So, round up the
610 new limit to page boundary. */
611 newlim = (newlim + getpagesize () - 1) / getpagesize () * getpagesize();
612 #endif
613 if (newlim > rlim.rlim_max)
614 {
615 newlim = rlim.rlim_max;
616 /* Don't let regex.c overflow the stack we have. */
617 re_max_failures = (newlim - 200000) / ratio;
618 }
619 if (rlim.rlim_cur < newlim)
620 rlim.rlim_cur = newlim;
621
622 setrlimit (RLIMIT_STACK, &rlim);
623 }
624 #endif /* HAVE_SETRLIMIT and RLIMIT_STACK */
625
626 /* Record (approximately) where the stack begins. */
627 stack_bottom = &stack_bottom_variable;
628
629 #ifdef USG_SHARED_LIBRARIES
630 if (bss_end)
631 brk ((void *)bss_end);
632 #endif
633
634 clearerr (stdin);
635
636 #ifndef SYSTEM_MALLOC
637 if (! initialized)
638 {
639 /* Arrange to get warning messages as memory fills up. */
640 memory_warnings (0, malloc_warning);
641
642 /* Arrange to disable interrupt input while malloc and friends are
643 running. */
644 uninterrupt_malloc ();
645 }
646 #endif /* not SYSTEM_MALLOC */
647
648 #ifdef MSDOS
649 /* We do all file input/output as binary files. When we need to translate
650 newlines, we do that manually. */
651 _fmode = O_BINARY;
652
653 #if __DJGPP__ >= 2
654 if (!isatty (fileno (stdin)))
655 setmode (fileno (stdin), O_BINARY);
656 if (!isatty (fileno (stdout)))
657 {
658 fflush (stdout);
659 setmode (fileno (stdout), O_BINARY);
660 }
661 #else /* not __DJGPP__ >= 2 */
662 (stdin)->_flag &= ~_IOTEXT;
663 (stdout)->_flag &= ~_IOTEXT;
664 (stderr)->_flag &= ~_IOTEXT;
665 #endif /* not __DJGPP__ >= 2 */
666 #endif /* MSDOS */
667
668 #ifdef SET_EMACS_PRIORITY
669 if (emacs_priority)
670 nice (emacs_priority);
671 setuid (getuid ());
672 #endif /* SET_EMACS_PRIORITY */
673
674 #ifdef EXTRA_INITIALIZE
675 EXTRA_INITIALIZE;
676 #endif
677
678 inhibit_window_system = 0;
679
680 /* Handle the -t switch, which specifies filename to use as terminal */
681 {
682 char *term;
683 if (argmatch (argv, argc, "-t", "--terminal", 4, &term, &skip_args))
684 {
685 int result;
686 close (0);
687 close (1);
688 result = open (term, O_RDWR, 2 );
689 if (result < 0)
690 {
691 char *errstring = strerror (errno);
692 fprintf (stderr, "emacs: %s: %s\n", term, errstring);
693 exit (1);
694 }
695 dup (0);
696 if (! isatty (0))
697 {
698 fprintf (stderr, "emacs: %s: not a tty\n", term);
699 exit (1);
700 }
701 fprintf (stderr, "Using %s\n", term);
702 #ifdef HAVE_WINDOW_SYSTEM
703 inhibit_window_system = 1; /* -t => -nw */
704 #endif
705 }
706 }
707 if (argmatch (argv, argc, "-nw", "--no-windows", 6, NULL, &skip_args))
708 inhibit_window_system = 1;
709
710 /* Handle the -batch switch, which means don't do interactive display. */
711 noninteractive = 0;
712 if (argmatch (argv, argc, "-batch", "--batch", 5, NULL, &skip_args))
713 noninteractive = 1;
714
715 /* Handle the --help option, which gives a usage message.. */
716 if (argmatch (argv, argc, "-help", "--help", 3, NULL, &skip_args))
717 {
718 printf ("\
719 Usage: %s [-t term] [--terminal term] [-nw] [--no-windows] [--batch]\n\
720 [-q] [--no-init-file] [-u user] [--user user] [--debug-init]\n\
721 [--version] [--no-site-file]\n\
722 [-f func] [--funcall func] [-l file] [--load file] [--insert file]\n\
723 [+linenum] file-to-visit [--kill]\n\
724 Report bugs to bug-gnu-emacs@prep.ai.mit.edu. First, please see\n\
725 the Bugs section of the Emacs manual or the file BUGS.\n", argv[0]);
726 exit (0);
727 }
728
729 #ifdef HAVE_X_WINDOWS
730 /* Stupid kludge to catch command-line display spec. We can't
731 handle this argument entirely in window system dependent code
732 because we don't even know which window system dependent code
733 to run until we've recognized this argument. */
734 {
735 char *displayname = 0;
736 int i;
737 int count_before = skip_args;
738
739 if (argmatch (argv, argc, "-d", "--display", 3, &displayname, &skip_args))
740 display_arg = 1;
741 else if (argmatch (argv, argc, "-display", 0, 3, &displayname, &skip_args))
742 display_arg = 1;
743
744 /* If we have the form --display=NAME,
745 convert it into -d name.
746 This requires inserting a new element into argv. */
747 if (displayname != 0 && skip_args - count_before == 1)
748 {
749 char **new = (char **) xmalloc (sizeof (char *) * (argc + 2));
750 int j;
751
752 for (j = 0; j < count_before + 1; j++)
753 new[j] = argv[j];
754 new[count_before + 1] = "-d";
755 new[count_before + 2] = displayname;
756 for (j = count_before + 2; j <argc; j++)
757 new[j + 1] = argv[j];
758 argv = new;
759 argc++;
760 }
761 /* Change --display to -d, when its arg is separate. */
762 else if (displayname != 0 && skip_args > count_before
763 && argv[count_before + 1][1] == '-')
764 argv[count_before + 1] = "-d";
765
766 /* Don't actually discard this arg. */
767 skip_args = count_before;
768 }
769 #endif
770
771 if (! noninteractive)
772 {
773 #ifdef BSD_PGRPS
774 if (initialized)
775 {
776 inherited_pgroup = EMACS_GETPGRP (0);
777 setpgrp (0, getpid ());
778 }
779 #else
780 #if defined (USG5) && defined (INTERRUPT_INPUT)
781 setpgrp ();
782 #endif
783 #endif
784 }
785
786 #ifdef POSIX_SIGNALS
787 init_signals ();
788 #endif
789
790 /* Don't catch SIGHUP if dumping. */
791 if (1
792 #ifndef CANNOT_DUMP
793 && initialized
794 #endif
795 )
796 {
797 sigblock (sigmask (SIGHUP));
798 /* In --batch mode, don't catch SIGHUP if already ignored.
799 That makes nohup work. */
800 if (! noninteractive
801 || signal (SIGHUP, SIG_IGN) != SIG_IGN)
802 signal (SIGHUP, fatal_error_signal);
803 sigunblock (sigmask (SIGHUP));
804 }
805
806 if (
807 #ifndef CANNOT_DUMP
808 ! noninteractive || initialized
809 #else
810 1
811 #endif
812 )
813 {
814 /* Don't catch these signals in batch mode if dumping.
815 On some machines, this sets static data that would make
816 signal fail to work right when the dumped Emacs is run. */
817 signal (SIGQUIT, fatal_error_signal);
818 signal (SIGILL, fatal_error_signal);
819 signal (SIGTRAP, fatal_error_signal);
820 #ifdef SIGABRT
821 signal (SIGABRT, fatal_error_signal);
822 #endif
823 #ifdef SIGHWE
824 signal (SIGHWE, fatal_error_signal);
825 #endif
826 #ifdef SIGPRE
827 signal (SIGPRE, fatal_error_signal);
828 #endif
829 #ifdef SIGORE
830 signal (SIGORE, fatal_error_signal);
831 #endif
832 #ifdef SIGUME
833 signal (SIGUME, fatal_error_signal);
834 #endif
835 #ifdef SIGDLK
836 signal (SIGDLK, fatal_error_signal);
837 #endif
838 #ifdef SIGCPULIM
839 signal (SIGCPULIM, fatal_error_signal);
840 #endif
841 #ifdef SIGIOT
842 /* This is missing on some systems - OS/2, for example. */
843 signal (SIGIOT, fatal_error_signal);
844 #endif
845 #ifdef SIGEMT
846 signal (SIGEMT, fatal_error_signal);
847 #endif
848 signal (SIGFPE, fatal_error_signal);
849 #ifdef SIGBUS
850 signal (SIGBUS, fatal_error_signal);
851 #endif
852 signal (SIGSEGV, fatal_error_signal);
853 #ifdef SIGSYS
854 signal (SIGSYS, fatal_error_signal);
855 #endif
856 signal (SIGTERM, fatal_error_signal);
857 #ifdef SIGXCPU
858 signal (SIGXCPU, fatal_error_signal);
859 #endif
860 #ifdef SIGXFSZ
861 signal (SIGXFSZ, fatal_error_signal);
862 #endif /* SIGXFSZ */
863
864 #ifdef SIGDANGER
865 /* This just means available memory is getting low. */
866 signal (SIGDANGER, memory_warning_signal);
867 #endif
868
869 #ifdef AIX
870 /* 20 is SIGCHLD, 21 is SIGTTIN, 22 is SIGTTOU. */
871 signal (SIGXCPU, fatal_error_signal);
872 #ifndef _I386
873 signal (SIGIOINT, fatal_error_signal);
874 #endif
875 signal (SIGGRANT, fatal_error_signal);
876 signal (SIGRETRACT, fatal_error_signal);
877 signal (SIGSOUND, fatal_error_signal);
878 signal (SIGMSG, fatal_error_signal);
879 #endif /* AIX */
880 }
881
882 noninteractive1 = noninteractive;
883
884 /* Perform basic initializations (not merely interning symbols) */
885
886 if (!initialized)
887 {
888 init_alloc_once ();
889 init_obarray ();
890 init_eval_once ();
891 init_charset_once ();
892 init_coding_once ();
893 init_syntax_once (); /* Create standard syntax table. */
894 init_category_once (); /* Create standard category table. */
895 /* Must be done before init_buffer */
896 init_casetab_once ();
897 init_buffer_once (); /* Create buffer table and some buffers */
898 init_minibuf_once (); /* Create list of minibuffers */
899 /* Must precede init_window_once */
900 init_window_once (); /* Init the window system */
901 }
902
903 init_alloc ();
904 init_eval ();
905 init_data ();
906 running_asynch_code = 0;
907
908 #ifdef MSDOS
909 /* Call early 'cause init_environment needs it. */
910 init_dosfns ();
911 /* Set defaults for several environment variables. */
912 if (initialized)
913 init_environment (argc, argv, skip_args);
914 else
915 tzset ();
916 #endif /* MSDOS */
917
918 #ifdef WINDOWSNT
919 /* Initialize environment from registry settings. */
920 init_environment ();
921 init_ntproc (); /* must precede init_editfns */
922 #endif
923
924 /* egetenv is a pretty low-level facility, which may get called in
925 many circumstances; it seems flimsy to put off initializing it
926 until calling init_callproc. */
927 set_process_environment ();
928 /* AIX crashes are reported in system versions 3.2.3 and 3.2.4
929 if this is not done. Do it after set_process_environment so that we
930 don't pollute Vprocess_environment. */
931 #ifdef AIX
932 putenv ("LANG=C");
933 #endif
934
935 init_buffer (); /* Init default directory of main buffer */
936
937 init_callproc_1 (); /* Must precede init_cmdargs and init_sys_modes. */
938 init_cmdargs (argc, argv, skip_args); /* Must precede init_lread. */
939
940 if (initialized)
941 {
942 /* Erase any pre-dump messages in the message log, to avoid confusion */
943 Lisp_Object old_log_max;
944 old_log_max = Vmessage_log_max;
945 XSETFASTINT (Vmessage_log_max, 0);
946 message_dolog ("", 0, 1);
947 Vmessage_log_max = old_log_max;
948 }
949
950 init_callproc (); /* Must follow init_cmdargs but not init_sys_modes. */
951 init_lread ();
952
953 if (!noninteractive)
954 {
955 #ifdef VMS
956 init_vms_input ();/* init_display calls get_frame_size, that needs this */
957 #endif /* VMS */
958 init_display (); /* Determine terminal type. init_sys_modes uses results */
959 }
960 init_keyboard (); /* This too must precede init_sys_modes */
961 #ifdef VMS
962 init_vmsproc (); /* And this too. */
963 #endif /* VMS */
964 init_sys_modes (); /* Init system terminal modes (RAW or CBREAK, etc.) */
965 init_xdisp ();
966 init_macros ();
967 init_editfns ();
968 #ifdef LISP_FLOAT_TYPE
969 init_floatfns ();
970 #endif
971 #ifdef VMS
972 init_vmsfns ();
973 #endif /* VMS */
974 init_process ();
975
976 /* Intern the names of all standard functions and variables; define standard keys */
977
978 if (!initialized)
979 {
980 /* The basic levels of Lisp must come first */
981 /* And data must come first of all
982 for the sake of symbols like error-message */
983 syms_of_data ();
984 syms_of_alloc ();
985 syms_of_lread ();
986 syms_of_print ();
987 syms_of_eval ();
988 syms_of_fns ();
989 syms_of_floatfns ();
990
991 syms_of_abbrev ();
992 syms_of_buffer ();
993 syms_of_bytecode ();
994 syms_of_callint ();
995 syms_of_casefiddle ();
996 syms_of_casetab ();
997 syms_of_callproc ();
998 syms_of_category ();
999 syms_of_ccl ();
1000 syms_of_charset ();
1001 syms_of_cmds ();
1002 #ifndef NO_DIR_LIBRARY
1003 syms_of_dired ();
1004 #endif /* not NO_DIR_LIBRARY */
1005 syms_of_display ();
1006 syms_of_doc ();
1007 syms_of_editfns ();
1008 syms_of_emacs ();
1009 syms_of_fileio ();
1010 syms_of_coding (); /* This should be after syms_of_fileio. */
1011 #ifdef CLASH_DETECTION
1012 syms_of_filelock ();
1013 #endif /* CLASH_DETECTION */
1014 syms_of_indent ();
1015 syms_of_insdel ();
1016 syms_of_keyboard ();
1017 syms_of_keymap ();
1018 syms_of_macros ();
1019 syms_of_marker ();
1020 syms_of_minibuf ();
1021 syms_of_mocklisp ();
1022 syms_of_process ();
1023 syms_of_search ();
1024 syms_of_frame ();
1025 syms_of_syntax ();
1026 syms_of_term ();
1027 syms_of_undo ();
1028
1029 /* Only defined if Emacs is compiled with USE_TEXT_PROPERTIES */
1030 syms_of_textprop ();
1031 #ifdef VMS
1032 syms_of_vmsproc ();
1033 #endif /* VMS */
1034 #ifdef WINDOWSNT
1035 syms_of_ntproc ();
1036 #endif /* WINDOWSNT */
1037 syms_of_window ();
1038 syms_of_xdisp ();
1039 #ifdef HAVE_X_WINDOWS
1040 syms_of_xterm ();
1041 syms_of_xfns ();
1042 syms_of_fontset ();
1043 #ifdef HAVE_X11
1044 syms_of_xselect ();
1045 #endif
1046 #endif /* HAVE_X_WINDOWS */
1047
1048 #ifndef HAVE_NTGUI
1049 syms_of_xfaces ();
1050 syms_of_xmenu ();
1051 #endif
1052
1053 #ifdef HAVE_NTGUI
1054 syms_of_w32term ();
1055 syms_of_w32fns ();
1056 syms_of_w32faces ();
1057 syms_of_w32select ();
1058 syms_of_w32menu ();
1059 #endif /* HAVE_NTGUI */
1060
1061 #ifdef SYMS_SYSTEM
1062 SYMS_SYSTEM;
1063 #endif
1064
1065 #ifdef SYMS_MACHINE
1066 SYMS_MACHINE;
1067 #endif
1068
1069 keys_of_casefiddle ();
1070 keys_of_cmds ();
1071 keys_of_buffer ();
1072 keys_of_keyboard ();
1073 keys_of_keymap ();
1074 keys_of_macros ();
1075 keys_of_minibuf ();
1076 keys_of_window ();
1077 keys_of_frame ();
1078 }
1079
1080 if (!initialized)
1081 {
1082 char *file;
1083 /* Handle -l loadup-and-dump, args passed by Makefile. */
1084 if (argmatch (argv, argc, "-l", "--load", 3, &file, &skip_args))
1085 Vtop_level = Fcons (intern ("load"),
1086 Fcons (build_string (file), Qnil));
1087 #ifdef CANNOT_DUMP
1088 /* Unless next switch is -nl, load "loadup.el" first thing. */
1089 if (!argmatch (argv, argc, "-nl", "--no-loadup", 6, NULL, &skip_args))
1090 Vtop_level = Fcons (intern ("load"),
1091 Fcons (build_string ("loadup.el"), Qnil));
1092 #endif /* CANNOT_DUMP */
1093 }
1094
1095 if (initialized)
1096 {
1097 #ifdef HAVE_TZSET
1098 {
1099 /* If the execution TZ happens to be the same as the dump TZ,
1100 change it to some other value and then change it back,
1101 to force the underlying implementation to reload the TZ info.
1102 This is needed on implementations that load TZ info from files,
1103 since the TZ file contents may differ between dump and execution. */
1104 char *tz = getenv ("TZ");
1105 if (tz && !strcmp (tz, dump_tz))
1106 {
1107 ++*tz;
1108 tzset ();
1109 --*tz;
1110 }
1111 }
1112 #endif
1113 }
1114
1115 /* Gerd Moellmann <gerd@acm.org> says this makes profiling work on
1116 FreeBSD. It might work on some other systems too.
1117 Give it a try and tell me if it works on your system. */
1118 #ifdef __FreeBSD__
1119 #ifdef PROFILING
1120 if (initialized)
1121 {
1122 extern void _mcleanup ();
1123 extern char etext;
1124 extern Lisp_Object Fredraw_frame ();
1125 atexit (_mcleanup);
1126 /* This uses Fredraw_frame because that function
1127 comes first in the Emacs executable.
1128 It might be better to use something that gives
1129 the start of the text segment, but start_of_text
1130 is not defined on all systems now. */
1131 monstartup (Fredraw_frame, &etext);
1132 }
1133 else
1134 moncontrol (0);
1135 #endif
1136 #endif
1137
1138 initialized = 1;
1139
1140 #ifdef LOCALTIME_CACHE
1141 /* Some versions of localtime have a bug. They cache the value of the time
1142 zone rather than looking it up every time. Since localtime() is
1143 called to bolt the undumping time into the undumped emacs, this
1144 results in localtime ignoring the TZ environment variable.
1145 This flushes the new TZ value into localtime. */
1146 tzset ();
1147 #endif /* defined (LOCALTIME_CACHE) */
1148
1149 /* Enter editor command loop. This never returns. */
1150 Frecursive_edit ();
1151 /* NOTREACHED */
1152 }
1153 \f
1154 /* Sort the args so we can find the most important ones
1155 at the beginning of argv. */
1156
1157 /* First, here's a table of all the standard options. */
1158
1159 struct standard_args
1160 {
1161 char *name;
1162 char *longname;
1163 int priority;
1164 int nargs;
1165 };
1166
1167 struct standard_args standard_args[] =
1168 {
1169 { "-version", "--version", 110, 0 },
1170 { "-help", "--help", 110, 0 },
1171 { "-nl", "--no-shared-memory", 100, 0 },
1172 #ifdef VMS
1173 { "-map", "--map-data", 100, 0 },
1174 #endif
1175 { "-t", "--terminal", 90, 1 },
1176 { "-d", "--display", 80, 1 },
1177 { "-display", 0, 80, 1 },
1178 { "-nw", "--no-windows", 70, 0 },
1179 { "-batch", "--batch", 60, 0 },
1180 { "-q", "--no-init-file", 50, 0 },
1181 { "-no-init-file", 0, 50, 0 },
1182 { "-no-site-file", "--no-site-file", 40, 0 },
1183 { "-u", "--user", 30, 1 },
1184 { "-user", 0, 30, 1 },
1185 { "-debug-init", "--debug-init", 20, 0 },
1186 { "-i", "--icon-type", 15, 0 },
1187 { "-itype", 0, 15, 0 },
1188 { "-iconic", "--iconic", 15, 0 },
1189 { "-bg", "--background-color", 10, 1 },
1190 { "-background", 0, 10, 1 },
1191 { "-fg", "--foreground-color", 10, 1 },
1192 { "-foreground", 0, 10, 1 },
1193 { "-bd", "--border-color", 10, 1 },
1194 { "-bw", "--border-width", 10, 1 },
1195 { "-ib", "--internal-border", 10, 1 },
1196 { "-ms", "--mouse-color", 10, 1 },
1197 { "-cr", "--cursor-color", 10, 1 },
1198 { "-fn", "--font", 10, 1 },
1199 { "-font", 0, 10, 1 },
1200 { "-g", "--geometry", 10, 1 },
1201 { "-geometry", 0, 10, 1 },
1202 { "-T", "--title", 10, 1 },
1203 { "-title", 0, 10, 1 },
1204 { "-name", "--name", 10, 1 },
1205 { "-xrm", "--xrm", 10, 1 },
1206 { "-r", "--reverse-video", 5, 0 },
1207 { "-rv", 0, 5, 0 },
1208 { "-reverse", 0, 5, 0 },
1209 { "-hb", "--horizontal-scroll-bars", 5, 0 },
1210 { "-vb", "--vertical-scroll-bars", 5, 0 },
1211 /* These have the same priority as ordinary file name args,
1212 so they are not reordered with respect to those. */
1213 { "-L", "--directory", 0, 1 },
1214 { "-directory", 0, 0, 1 },
1215 { "-l", "--load", 0, 1 },
1216 { "-load", 0, 0, 1 },
1217 { "-f", "--funcall", 0, 1 },
1218 { "-funcall", 0, 0, 1 },
1219 { "-eval", "--eval", 0, 1 },
1220 { "-find-file", "--find-file", 0, 1 },
1221 { "-visit", "--visit", 0, 1 },
1222 { "-insert", "--insert", 0, 1 },
1223 /* This should be processed after ordinary file name args and the like. */
1224 { "-kill", "--kill", -10, 0 },
1225 };
1226
1227 /* Reorder the elements of ARGV (assumed to have ARGC elements)
1228 so that the highest priority ones come first.
1229 Do not change the order of elements of equal priority.
1230 If an option takes an argument, keep it and its argument together. */
1231
1232 static void
1233 sort_args (argc, argv)
1234 int argc;
1235 char **argv;
1236 {
1237 char **new = (char **) xmalloc (sizeof (char *) * argc);
1238 /* For each element of argv,
1239 the corresponding element of options is:
1240 0 for an option that takes no arguments,
1241 1 for an option that takes one argument, etc.
1242 -1 for an ordinary non-option argument. */
1243 int *options = (int *) xmalloc (sizeof (int) * argc);
1244 int *priority = (int *) xmalloc (sizeof (int) * argc);
1245 int to = 1;
1246 int from;
1247 int i;
1248 int end_of_options = argc;
1249
1250 /* Categorize all the options,
1251 and figure out which argv elts are option arguments. */
1252 for (from = 1; from < argc; from++)
1253 {
1254 options[from] = -1;
1255 priority[from] = 0;
1256 if (argv[from][0] == '-')
1257 {
1258 int match, thislen;
1259 char *equals;
1260
1261 /* If we have found "--", don't consider
1262 any more arguments as options. */
1263 if (argv[from][1] == '-' && argv[from][2] == 0)
1264 {
1265 /* Leave the "--", and everything following it, at the end. */
1266 for (; from < argc; from++)
1267 {
1268 priority[from] = -100;
1269 options[from] = -1;
1270 }
1271 break;
1272 }
1273
1274 /* Look for a match with a known old-fashioned option. */
1275 for (i = 0; i < sizeof (standard_args) / sizeof (standard_args[0]); i++)
1276 if (!strcmp (argv[from], standard_args[i].name))
1277 {
1278 options[from] = standard_args[i].nargs;
1279 priority[from] = standard_args[i].priority;
1280 if (from + standard_args[i].nargs >= argc)
1281 fatal ("Option `%s' requires an argument\n", argv[from]);
1282 from += standard_args[i].nargs;
1283 goto done;
1284 }
1285
1286 /* Look for a match with a known long option.
1287 MATCH is -1 if no match so far, -2 if two or more matches so far,
1288 >= 0 (the table index of the match) if just one match so far. */
1289 if (argv[from][1] == '-')
1290 {
1291 match = -1;
1292 thislen = strlen (argv[from]);
1293 equals = index (argv[from], '=');
1294 if (equals != 0)
1295 thislen = equals - argv[from];
1296
1297 for (i = 0;
1298 i < sizeof (standard_args) / sizeof (standard_args[0]); i++)
1299 if (standard_args[i].longname
1300 && !strncmp (argv[from], standard_args[i].longname,
1301 thislen))
1302 {
1303 if (match == -1)
1304 match = i;
1305 else
1306 match = -2;
1307 }
1308
1309 /* If we found exactly one match, use that. */
1310 if (match >= 0)
1311 {
1312 options[from] = standard_args[match].nargs;
1313 priority[from] = standard_args[match].priority;
1314 /* If --OPTION=VALUE syntax is used,
1315 this option uses just one argv element. */
1316 if (equals != 0)
1317 options[from] = 0;
1318 if (from + options[from] >= argc)
1319 fatal ("Option `%s' requires an argument\n", argv[from]);
1320 from += options[from];
1321 }
1322 }
1323 done: ;
1324 }
1325 }
1326
1327 /* Copy the arguments, in order of decreasing priority, to NEW. */
1328 new[0] = argv[0];
1329 while (to < argc)
1330 {
1331 int best = -1;
1332 int best_priority = -9999;
1333
1334 /* Find the highest priority remaining option.
1335 If several have equal priority, take the first of them. */
1336 for (from = 1; from < argc; from++)
1337 {
1338 if (argv[from] != 0 && priority[from] > best_priority)
1339 {
1340 best_priority = priority[from];
1341 best = from;
1342 }
1343 /* Skip option arguments--they are tied to the options. */
1344 if (options[from] > 0)
1345 from += options[from];
1346 }
1347
1348 if (best < 0)
1349 abort ();
1350
1351 /* Copy the highest priority remaining option, with its args, to NEW. */
1352 new[to++] = argv[best];
1353 for (i = 0; i < options[best]; i++)
1354 new[to++] = argv[best + i + 1];
1355
1356 /* Clear out this option in ARGV. */
1357 argv[best] = 0;
1358 for (i = 0; i < options[best]; i++)
1359 argv[best + i + 1] = 0;
1360 }
1361
1362 bcopy (new, argv, sizeof (char *) * argc);
1363
1364 free (options);
1365 free (new);
1366 free (priority);
1367 }
1368 \f
1369 DEFUN ("kill-emacs", Fkill_emacs, Skill_emacs, 0, 1, "P",
1370 "Exit the Emacs job and kill it.\n\
1371 If ARG is an integer, return ARG as the exit program code.\n\
1372 If ARG is a string, stuff it as keyboard input.\n\n\
1373 The value of `kill-emacs-hook', if not void,\n\
1374 is a list of functions (of no args),\n\
1375 all of which are called before Emacs is actually killed.")
1376 (arg)
1377 Lisp_Object arg;
1378 {
1379 Lisp_Object hook, hook1;
1380 int i;
1381 struct gcpro gcpro1;
1382
1383 GCPRO1 (arg);
1384
1385 if (feof (stdin))
1386 arg = Qt;
1387
1388 if (!NILP (Vrun_hooks) && !noninteractive)
1389 call1 (Vrun_hooks, intern ("kill-emacs-hook"));
1390
1391 UNGCPRO;
1392
1393 /* Is it really necessary to do this deassign
1394 when we are going to exit anyway? */
1395 /* #ifdef VMS
1396 stop_vms_input ();
1397 #endif */
1398
1399 shut_down_emacs (0, 0, STRINGP (arg) ? arg : Qnil);
1400
1401 /* If we have an auto-save list file,
1402 kill it because we are exiting Emacs deliberately (not crashing).
1403 Do it after shut_down_emacs, which does an auto-save. */
1404 if (STRINGP (Vauto_save_list_file_name))
1405 unlink (XSTRING (Vauto_save_list_file_name)->data);
1406
1407 exit (INTEGERP (arg) ? XINT (arg)
1408 #ifdef VMS
1409 : 1
1410 #else
1411 : 0
1412 #endif
1413 );
1414 /* NOTREACHED */
1415 }
1416
1417
1418 /* Perform an orderly shutdown of Emacs. Autosave any modified
1419 buffers, kill any child processes, clean up the terminal modes (if
1420 we're in the foreground), and other stuff like that. Don't perform
1421 any redisplay; this may be called when Emacs is shutting down in
1422 the background, or after its X connection has died.
1423
1424 If SIG is a signal number, print a message for it.
1425
1426 This is called by fatal signal handlers, X protocol error handlers,
1427 and Fkill_emacs. */
1428
1429 void
1430 shut_down_emacs (sig, no_x, stuff)
1431 int sig, no_x;
1432 Lisp_Object stuff;
1433 {
1434 /* Prevent running of hooks from now on. */
1435 Vrun_hooks = Qnil;
1436
1437 /* If we are controlling the terminal, reset terminal modes */
1438 #ifdef EMACS_HAVE_TTY_PGRP
1439 {
1440 int pgrp = EMACS_GETPGRP (0);
1441
1442 int tpgrp;
1443 if (EMACS_GET_TTY_PGRP (0, &tpgrp) != -1
1444 && tpgrp == pgrp)
1445 {
1446 fflush (stdout);
1447 reset_sys_modes ();
1448 if (sig && sig != SIGTERM)
1449 fprintf (stderr, "Fatal error (%d).", sig);
1450 }
1451 }
1452 #else
1453 fflush (stdout);
1454 reset_sys_modes ();
1455 #endif
1456
1457 stuff_buffered_input (stuff);
1458
1459 kill_buffer_processes (Qnil);
1460 Fdo_auto_save (Qt, Qnil);
1461
1462 #ifdef CLASH_DETECTION
1463 unlock_all_files ();
1464 #endif
1465
1466 #ifdef VMS
1467 kill_vms_processes ();
1468 #endif
1469
1470 #if 0 /* This triggers a bug in XCloseDisplay and is not needed. */
1471 #ifdef HAVE_X_WINDOWS
1472 /* It's not safe to call intern here. Maybe we are crashing. */
1473 if (!noninteractive && SYMBOLP (Vwindow_system)
1474 && XSYMBOL (Vwindow_system)->name->size == 1
1475 && XSYMBOL (Vwindow_system)->name->data[0] == 'x'
1476 && ! no_x)
1477 Fx_close_current_connection ();
1478 #endif /* HAVE_X_WINDOWS */
1479 #endif
1480
1481 #ifdef SIGIO
1482 /* There is a tendency for a SIGIO signal to arrive within exit,
1483 and cause a SIGHUP because the input descriptor is already closed. */
1484 unrequest_sigio ();
1485 signal (SIGIO, SIG_IGN);
1486 #endif
1487
1488 #ifdef WINDOWSNT
1489 term_ntproc ();
1490 #endif
1491
1492 #ifdef MSDOS
1493 dos_cleanup ();
1494 #endif
1495 }
1496
1497
1498 \f
1499 #ifndef CANNOT_DUMP
1500
1501 #ifdef HAVE_SHM
1502
1503 DEFUN ("dump-emacs-data", Fdump_emacs_data, Sdump_emacs_data, 1, 1, 0,
1504 "Dump current state of Emacs into data file FILENAME.\n\
1505 This function exists on systems that use HAVE_SHM.")
1506 (filename)
1507 Lisp_Object filename;
1508 {
1509 extern char my_edata[];
1510 Lisp_Object tem;
1511
1512 CHECK_STRING (filename, 0);
1513 filename = Fexpand_file_name (filename, Qnil);
1514
1515 tem = Vpurify_flag;
1516 Vpurify_flag = Qnil;
1517
1518 fflush (stdout);
1519 /* Tell malloc where start of impure now is */
1520 /* Also arrange for warnings when nearly out of space. */
1521 #ifndef SYSTEM_MALLOC
1522 memory_warnings (my_edata, malloc_warning);
1523 #endif
1524 map_out_data (XSTRING (filename)->data);
1525
1526 Vpurify_flag = tem;
1527
1528 return Qnil;
1529 }
1530
1531 #else /* not HAVE_SHM */
1532
1533 DEFUN ("dump-emacs", Fdump_emacs, Sdump_emacs, 2, 2, 0,
1534 "Dump current state of Emacs into executable file FILENAME.\n\
1535 Take symbols from SYMFILE (presumably the file you executed to run Emacs).\n\
1536 This is used in the file `loadup.el' when building Emacs.\n\
1537 \n\
1538 You must run Emacs in batch mode in order to dump it.")
1539 (filename, symfile)
1540 Lisp_Object filename, symfile;
1541 {
1542 extern char my_edata[];
1543 Lisp_Object tem;
1544 Lisp_Object symbol;
1545 int count = specpdl_ptr - specpdl;
1546
1547 if (! noninteractive)
1548 error ("Dumping Emacs works only in batch mode");
1549
1550 /* Bind `command-line-processed' to nil before dumping,
1551 so that the dumped Emacs will process its command line
1552 and set up to work with X windows if appropriate. */
1553 symbol = intern ("command-line-process");
1554 specbind (symbol, Qnil);
1555
1556 CHECK_STRING (filename, 0);
1557 filename = Fexpand_file_name (filename, Qnil);
1558 if (!NILP (symfile))
1559 {
1560 CHECK_STRING (symfile, 0);
1561 if (XSTRING (symfile)->size)
1562 symfile = Fexpand_file_name (symfile, Qnil);
1563 }
1564
1565 tem = Vpurify_flag;
1566 Vpurify_flag = Qnil;
1567
1568 #ifdef HAVE_TZSET
1569 set_time_zone_rule (dump_tz);
1570 #ifndef LOCALTIME_CACHE
1571 /* Force a tz reload, since set_time_zone_rule doesn't. */
1572 tzset ();
1573 #endif
1574 #endif
1575
1576 fflush (stdout);
1577 #ifdef VMS
1578 mapout_data (XSTRING (filename)->data);
1579 #else
1580 /* Tell malloc where start of impure now is */
1581 /* Also arrange for warnings when nearly out of space. */
1582 #ifndef SYSTEM_MALLOC
1583 #ifndef WINDOWSNT
1584 /* On Windows, this was done before dumping, and that once suffices.
1585 Meanwhile, my_edata is not valid on Windows. */
1586 memory_warnings (my_edata, malloc_warning);
1587 #endif /* not WINDOWSNT */
1588 #endif
1589 #ifdef DOUG_LEA_MALLOC
1590 malloc_state_ptr = malloc_get_state ();
1591 #endif
1592 unexec (XSTRING (filename)->data,
1593 !NILP (symfile) ? XSTRING (symfile)->data : 0, my_edata, 0, 0);
1594 #ifdef DOUG_LEA_MALLOC
1595 free (malloc_state_ptr);
1596 #endif
1597 #endif /* not VMS */
1598
1599 Vpurify_flag = tem;
1600
1601 return unbind_to (count, Qnil);
1602 }
1603
1604 #endif /* not HAVE_SHM */
1605
1606 #endif /* not CANNOT_DUMP */
1607 \f
1608 #ifndef SEPCHAR
1609 #define SEPCHAR ':'
1610 #endif
1611
1612 Lisp_Object
1613 decode_env_path (evarname, defalt)
1614 char *evarname, *defalt;
1615 {
1616 register char *path, *p;
1617 Lisp_Object lpath, element, tem;
1618
1619 /* It's okay to use getenv here, because this function is only used
1620 to initialize variables when Emacs starts up, and isn't called
1621 after that. */
1622 if (evarname != 0)
1623 path = (char *) getenv (evarname);
1624 else
1625 path = 0;
1626 if (!path)
1627 path = defalt;
1628 #ifdef DOS_NT
1629 /* Ensure values from the environment use the proper directory separator. */
1630 if (path)
1631 {
1632 p = alloca (strlen (path) + 1);
1633 strcpy (p, path);
1634 path = p;
1635
1636 if ('/' == DIRECTORY_SEP)
1637 dostounix_filename (path);
1638 else
1639 unixtodos_filename (path);
1640 }
1641 #endif
1642 lpath = Qnil;
1643 while (1)
1644 {
1645 p = index (path, SEPCHAR);
1646 if (!p) p = path + strlen (path);
1647 element = (p - path ? make_string (path, p - path)
1648 : build_string ("."));
1649
1650 /* Add /: to the front of the name
1651 if it would otherwise be treated as magic. */
1652 tem = Ffind_file_name_handler (element, Qt);
1653 if (! NILP (tem))
1654 element = concat2 (build_string ("/:"), element);
1655
1656 lpath = Fcons (element, lpath);
1657 if (*p)
1658 path = p + 1;
1659 else
1660 break;
1661 }
1662 return Fnreverse (lpath);
1663 }
1664
1665 syms_of_emacs ()
1666 {
1667 Qfile_name_handler_alist = intern ("file-name-handler-alist");
1668 staticpro (&Qfile_name_handler_alist);
1669
1670 #ifndef CANNOT_DUMP
1671 #ifdef HAVE_SHM
1672 defsubr (&Sdump_emacs_data);
1673 #else
1674 defsubr (&Sdump_emacs);
1675 #endif
1676 #endif
1677
1678 defsubr (&Skill_emacs);
1679
1680 defsubr (&Sinvocation_name);
1681 defsubr (&Sinvocation_directory);
1682
1683 DEFVAR_LISP ("command-line-args", &Vcommand_line_args,
1684 "Args passed by shell to Emacs, as a list of strings.");
1685
1686 DEFVAR_LISP ("system-type", &Vsystem_type,
1687 "Value is symbol indicating type of operating system you are using.");
1688 Vsystem_type = intern (SYSTEM_TYPE);
1689
1690 DEFVAR_LISP ("system-configuration", &Vsystem_configuration,
1691 "Value is string indicating configuration Emacs was built for.");
1692 Vsystem_configuration = build_string (EMACS_CONFIGURATION);
1693
1694 DEFVAR_LISP ("system-configuration-options", &Vsystem_configuration_options,
1695 "String containing the configuration options Emacs was built with.");
1696 Vsystem_configuration_options = build_string (EMACS_CONFIG_OPTIONS);
1697
1698 DEFVAR_BOOL ("noninteractive", &noninteractive1,
1699 "Non-nil means Emacs is running without interactive terminal.");
1700
1701 DEFVAR_LISP ("kill-emacs-hook", &Vkill_emacs_hook,
1702 "Hook to be run whenever kill-emacs is called.\n\
1703 Since kill-emacs may be invoked when the terminal is disconnected (or\n\
1704 in other similar situations), functions placed on this hook should not\n\
1705 expect to be able to interact with the user. To ask for confirmation,\n\
1706 see `kill-emacs-query-functions' instead.");
1707 Vkill_emacs_hook = Qnil;
1708
1709 DEFVAR_INT ("emacs-priority", &emacs_priority,
1710 "Priority for Emacs to run at.\n\
1711 This value is effective only if set before Emacs is dumped,\n\
1712 and only if the Emacs executable is installed with setuid to permit\n\
1713 it to change priority. (Emacs sets its uid back to the real uid.)\n\
1714 Currently, you need to define SET_EMACS_PRIORITY in `config.h'\n\
1715 before you compile Emacs, to enable the code for this feature.");
1716 emacs_priority = 0;
1717
1718 DEFVAR_LISP ("invocation-name", &Vinvocation_name,
1719 "The program name that was used to run Emacs.\n\
1720 Any directory names are omitted.");
1721
1722 DEFVAR_LISP ("invocation-directory", &Vinvocation_directory,
1723 "The directory in which the Emacs executable was found, to run it.\n\
1724 The value is nil if that directory's name is not known.");
1725
1726 DEFVAR_LISP ("installation-directory", &Vinstallation_directory,
1727 "A directory within which to look for the `lib-src' and `etc' directories.\n\
1728 This is non-nil when we can't find those directories in their standard\n\
1729 installed locations, but we can find them\n\
1730 near where the Emacs executable was found.");
1731 Vinstallation_directory = Qnil;
1732 }