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