Use argv[0] instead of emacs when -t was specified.
[emacs/old-mirror.git] / src / emacs.c
blobf709cc9753fe62c4e13cb5e994d4174aef6d80cb
1 /* Fully extensible Emacs, running on Unix, intended for GNU.
2 Copyright (C) 1985,86,87,93,94,95,97,98,1999,2001
3 Free Software Foundation, Inc.
5 This file is part of GNU Emacs.
7 GNU Emacs is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 2, or (at your option)
10 any later version.
12 GNU Emacs is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
17 You should have received a copy of the GNU General Public License
18 along with GNU Emacs; see the file COPYING. If not, write to
19 the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
20 Boston, MA 02111-1307, USA. */
23 #include <config.h>
24 #include <signal.h>
25 #include <errno.h>
26 #include <stdio.h>
28 #include <sys/types.h>
29 #include <sys/file.h>
31 #ifdef VMS
32 #include <ssdef.h>
33 #endif
35 #ifdef HAVE_UNISTD_H
36 #include <unistd.h>
37 #endif
39 #ifdef BSD_SYSTEM
40 #include <sys/ioctl.h>
41 #endif
43 #include "lisp.h"
44 #include "commands.h"
45 #include "intervals.h"
46 #include "buffer.h"
48 #include "systty.h"
49 #include "blockinput.h"
50 #include "syssignal.h"
51 #include "process.h"
52 #include "termhooks.h"
53 #include "keyboard.h"
54 #include "keymap.h"
56 #ifdef HAVE_SETLOCALE
57 #include <locale.h>
58 #endif
60 #ifdef HAVE_SETRLIMIT
61 #include <sys/time.h>
62 #include <sys/resource.h>
63 #endif
65 #ifndef O_RDWR
66 #define O_RDWR 2
67 #endif
69 #ifdef HAVE_SETPGID
70 #if !defined (USG) || defined (BSD_PGRPS)
71 #undef setpgrp
72 #define setpgrp setpgid
73 #endif
74 #endif
76 extern void malloc_warning P_ ((char *));
77 extern void set_time_zone_rule P_ ((char *));
78 #ifdef HAVE_INDEX
79 extern char *index P_ ((const char *, int));
80 #endif
82 /* Make these values available in GDB, which doesn't see macros. */
84 EMACS_INT gdb_valbits = VALBITS;
85 EMACS_INT gdb_gctypebits = GCTYPEBITS;
86 EMACS_INT gdb_emacs_intbits = sizeof (EMACS_INT) * BITS_PER_CHAR;
87 #ifdef DATA_SEG_BITS
88 EMACS_INT gdb_data_seg_bits = DATA_SEG_BITS;
89 #else
90 EMACS_INT gdb_data_seg_bits = 0;
91 #endif
92 EMACS_INT PVEC_FLAG = PSEUDOVECTOR_FLAG;
94 /* Command line args from shell, as list of strings. */
95 Lisp_Object Vcommand_line_args;
97 /* The name under which Emacs was invoked, with any leading directory
98 names discarded. */
99 Lisp_Object Vinvocation_name;
101 /* The directory name from which Emacs was invoked. */
102 Lisp_Object Vinvocation_directory;
104 /* The directory name in which to find subdirs such as lisp and etc.
105 nil means get them only from PATH_LOADSEARCH. */
106 Lisp_Object Vinstallation_directory;
108 /* Hook run by `kill-emacs' before it does really anything. */
109 Lisp_Object Vkill_emacs_hook;
111 /* An empty lisp string. To avoid having to build any other. */
112 Lisp_Object empty_string;
114 #ifdef SIGUSR1
115 /* Hooks for signal USR1 and USR2 handling. */
116 Lisp_Object Vsignal_USR1_hook;
117 #ifdef SIGUSR2
118 Lisp_Object Vsignal_USR2_hook;
119 #endif
120 #endif
122 /* Search path separator. */
123 Lisp_Object Vpath_separator;
125 /* Set nonzero after Emacs has started up the first time.
126 Prevents reinitialization of the Lisp world and keymaps
127 on subsequent starts. */
128 int initialized;
130 #ifdef DOUG_LEA_MALLOC
131 /* Preserves a pointer to the memory allocated that copies that
132 static data inside glibc's malloc. */
133 void *malloc_state_ptr;
134 /* From glibc, a routine that returns a copy of the malloc internal state. */
135 extern void *malloc_get_state ();
136 /* From glibc, a routine that overwrites the malloc internal state. */
137 extern void malloc_set_state ();
138 /* Non-zero if the MALLOC_CHECK_ enviroment variable was set while
139 dumping. Used to work around a bug in glibc's malloc. */
140 int malloc_using_checking;
141 #endif
143 /* Variable whose value is symbol giving operating system type. */
144 Lisp_Object Vsystem_type;
146 /* Variable whose value is string giving configuration built for. */
147 Lisp_Object Vsystem_configuration;
149 /* Variable whose value is string giving configuration options,
150 for use when reporting bugs. */
151 Lisp_Object Vsystem_configuration_options;
153 Lisp_Object Qfile_name_handler_alist;
155 /* Current and previous system locales for messages and time. */
156 Lisp_Object Vsystem_messages_locale;
157 Lisp_Object Vprevious_system_messages_locale;
158 Lisp_Object Vsystem_time_locale;
159 Lisp_Object Vprevious_system_time_locale;
161 /* If non-zero, emacs should not attempt to use an window-specific code,
162 but instead should use the virtual terminal under which it was started. */
163 int inhibit_window_system;
165 /* If nonzero, set Emacs to run at this priority. This is also used
166 in child_setup and sys_suspend to make sure subshells run at normal
167 priority; those functions have their own extern declaration. */
168 int emacs_priority;
170 /* If non-zero, a filter or a sentinel is running. Tested to save the match
171 data on the first attempt to change it inside asynchronous code. */
172 int running_asynch_code;
174 #ifdef BSD_PGRPS
175 /* See sysdep.c. */
176 extern int inherited_pgroup;
177 #endif
179 #ifdef HAVE_X_WINDOWS
180 /* If non-zero, -d was specified, meaning we're using some window system. */
181 int display_arg;
182 #endif
184 /* An address near the bottom of the stack.
185 Tells GC how to save a copy of the stack. */
186 char *stack_bottom;
188 #ifdef HAVE_WINDOW_SYSTEM
189 extern Lisp_Object Vwindow_system;
190 #endif /* HAVE_WINDOW_SYSTEM */
192 extern Lisp_Object Vauto_save_list_file_name;
194 #ifdef USG_SHARED_LIBRARIES
195 /* If nonzero, this is the place to put the end of the writable segment
196 at startup. */
198 unsigned int bss_end = 0;
199 #endif
201 /* Nonzero means running Emacs without interactive terminal. */
203 int noninteractive;
205 /* Value of Lisp variable `noninteractive'.
206 Normally same as C variable `noninteractive'
207 but nothing terrible happens if user sets this one. */
209 int noninteractive1;
211 /* Save argv and argc. */
212 char **initial_argv;
213 int initial_argc;
215 static void sort_args ();
216 void syms_of_emacs ();
218 #define USAGE1 "\
219 Usage: %s [OPTION-OR-FILENAME]...\n\
221 Run Emacs, the extensible, customizable, self-documenting real-time\n\
222 display editor. The recommended way to start Emacs for normal editing\n\
223 is with no options at all.\n\
225 Run M-x info RET m emacs RET m command arguments RET inside Emacs to\n\
226 read the main documentation for these command-line arguments.\n\
228 Initialization options:\n\
230 --batch do not do interactive display; implies -q\n\
231 --debug-init enable Emacs Lisp debugger during init file\n\
232 --help display this help message and exit\n\
233 --multibyte, --no-unibyte run Emacs in multibyte mode\n\
234 --no-init-file, -q load neither ~/.emacs nor default.el\n\
235 --no-shared-memory, -nl do not use shared memory\n\
236 --no-site-file do not load site-start.el\n\
237 --no-windows, -nw don't communicate with X, ignoring $DISPLAY\n\
238 --terminal, -t DEVICE use DEVICE for terminal I/O\n\
239 --unibyte, --no-multibyte run Emacs in unibyte mode\n\
240 --user, -u USER load ~USER/.emacs instead of your own\n\
241 --version display version information and exit\n\
243 Action options:\n\
245 FILE visit FILE using find-file\n\
246 +LINE FILE visit FILE using find-file, then go to line LINE\n\
247 +LINE:COLUMN FILE visit FILE using find-file, then go to line LINE,\n\
248 column COLUMN\n\
249 --directory, -L DIR add DIR to variable load-path\n\
250 --eval EXPR evaluate Emacs Lisp expression EXPR\n\
251 --execute EXPR evaluate Emacs Lisp expression EXPR\n\
252 --find-file FILE visit FILE\n\
253 --funcall, -f FUNC call Emacs function FUNC with no arguments\n\
254 --insert FILE insert contents of FILE into current buffer\n\
255 --kill exit without asking for confirmation\n\
256 --load, -l FILE load FILE of Emacs Lisp code using the load function\n\
257 --visit FILE visit FILE\n\
260 #define USAGE2 "\
261 Display options:\n\
263 --background-color, -bg COLOR window background color\n\
264 --border-color, -bd COLOR main border color\n\
265 --border-width, -bw WIDTH width of main border\n\
266 --cursor-color, -cr COLOR color of the Emacs cursor indicating point\n\
267 --display, -d DISPLAY use X server DISPLAY\n\
268 --font, -fn FONT default font; must be fixed-width\n\
269 --foreground-color, -fg COLOR window foreground color\n\
270 --geometry, -g GEOMETRY window geometry\n\
271 --iconic start Emacs in iconified state\n\
272 --icon-type, -i use picture of gnu for Emacs icon\n\
273 --internal-border, -ib WIDTH width between text and main border\n\
274 --line-spacing, -lsp PIXELS additional space to put between lines\n\
275 --mouse-color, -ms COLOR mouse cursor color in Emacs window\n\
276 --name NAME title of main Emacs window\n\
277 --reverse-video, -r, -rv switch foreground and background\n\
278 --title, -T, -wn TITLE title for Emacs windows\n\
279 --vertical-scroll-bars, -vb enable vertical scroll bars\n\
280 --xrm XRESOURCES set additional X resources\n\
282 You can generally also specify long option names with a single -; for\n\
283 example, -batch as well as --batch. You can use any unambiguous\n\
284 abbreviation for a --option.\n\
286 Various environment variables and window system resources also affect\n\
287 Emacs' operation. See the main documentation.\n\
290 #define USAGE3 "\
291 Report bugs to %s. First, please see the Bugs\n\
292 section of the Emacs manual or the file BUGS.\n"
295 /* Signal code for the fatal signal that was received. */
296 int fatal_error_code;
298 /* Nonzero if handling a fatal error already. */
299 int fatal_error_in_progress;
301 /* If non-null, call this function from fatal_error_signal before
302 committing suicide. */
304 void (*fatal_error_signal_hook) P_ ((void));
307 #ifdef SIGUSR1
308 SIGTYPE
309 handle_USR1_signal (sig)
310 int sig;
312 struct input_event buf;
314 bzero (&buf, sizeof buf);
315 buf.kind = USER_SIGNAL_EVENT;
316 buf.frame_or_window = selected_frame;
318 kbd_buffer_store_event (&buf);
320 #endif /* SIGUSR1 */
322 #ifdef SIGUSR2
323 SIGTYPE
324 handle_USR2_signal (sig)
325 int sig;
327 struct input_event buf;
329 bzero (&buf, sizeof buf);
330 buf.kind = USER_SIGNAL_EVENT;
331 buf.code = 1;
332 buf.frame_or_window = selected_frame;
334 kbd_buffer_store_event (&buf);
336 #endif /* SIGUSR2 */
338 /* Handle bus errors, invalid instruction, etc. */
339 SIGTYPE
340 fatal_error_signal (sig)
341 int sig;
343 fatal_error_code = sig;
344 signal (sig, SIG_DFL);
346 TOTALLY_UNBLOCK_INPUT;
348 /* If fatal error occurs in code below, avoid infinite recursion. */
349 if (! fatal_error_in_progress)
351 fatal_error_in_progress = 1;
353 shut_down_emacs (sig, 0, Qnil);
356 #ifdef VMS
357 LIB$STOP (SS$_ABORT);
358 #else
359 /* Signal the same code; this time it will really be fatal.
360 Remember that since we're in a signal handler, the signal we're
361 going to send is probably blocked, so we have to unblock it if we
362 want to really receive it. */
363 #ifndef MSDOS
364 sigunblock (sigmask (fatal_error_code));
365 #endif
367 if (fatal_error_signal_hook)
368 fatal_error_signal_hook ();
370 kill (getpid (), fatal_error_code);
371 #endif /* not VMS */
374 #ifdef SIGDANGER
376 /* Handler for SIGDANGER. */
377 SIGTYPE
378 memory_warning_signal (sig)
379 int sig;
381 signal (sig, memory_warning_signal);
383 malloc_warning ("Operating system warns that virtual memory is running low.\n");
385 /* It might be unsafe to call do_auto_save now. */
386 force_auto_save_soon ();
388 #endif
390 /* We define abort, rather than using it from the library,
391 so that GDB can return from a breakpoint here.
392 MSDOS has its own definition in msdos.c. */
394 #if ! defined (DOS_NT) && ! defined (NO_ABORT)
396 #ifndef ABORT_RETURN_TYPE
397 #define ABORT_RETURN_TYPE void
398 #endif
400 ABORT_RETURN_TYPE
401 abort ()
403 kill (getpid (), SIGABRT);
404 /* This shouldn't be executed, but it prevents a warning. */
405 exit (1);
407 #endif
410 /* Code for dealing with Lisp access to the Unix command line. */
412 static void
413 init_cmdargs (argc, argv, skip_args)
414 int argc;
415 char **argv;
416 int skip_args;
418 register int i;
419 Lisp_Object name, dir, tem;
420 int count = specpdl_ptr - specpdl;
421 Lisp_Object raw_name;
423 initial_argv = argv;
424 initial_argc = argc;
426 raw_name = build_string (argv[0]);
428 /* Add /: to the front of the name
429 if it would otherwise be treated as magic. */
430 tem = Ffind_file_name_handler (raw_name, Qt);
431 if (! NILP (tem))
432 raw_name = concat2 (build_string ("/:"), raw_name);
434 Vinvocation_name = Ffile_name_nondirectory (raw_name);
435 Vinvocation_directory = Ffile_name_directory (raw_name);
437 /* If we got no directory in argv[0], search PATH to find where
438 Emacs actually came from. */
439 if (NILP (Vinvocation_directory))
441 Lisp_Object found;
442 int yes = openp (Vexec_path, Vinvocation_name,
443 Vexec_suffixes, &found, 1);
444 if (yes == 1)
446 /* Add /: to the front of the name
447 if it would otherwise be treated as magic. */
448 tem = Ffind_file_name_handler (found, Qt);
449 if (! NILP (tem))
450 found = concat2 (build_string ("/:"), found);
451 Vinvocation_directory = Ffile_name_directory (found);
455 if (!NILP (Vinvocation_directory)
456 && NILP (Ffile_name_absolute_p (Vinvocation_directory)))
457 /* Emacs was started with relative path, like ./emacs.
458 Make it absolute. */
459 Vinvocation_directory = Fexpand_file_name (Vinvocation_directory, Qnil);
461 Vinstallation_directory = Qnil;
463 if (!NILP (Vinvocation_directory))
465 dir = Vinvocation_directory;
466 name = Fexpand_file_name (Vinvocation_name, dir);
467 while (1)
469 Lisp_Object tem, lib_src_exists;
470 Lisp_Object etc_exists, info_exists;
472 /* See if dir contains subdirs for use by Emacs.
473 Check for the ones that would exist in a build directory,
474 not including lisp and info. */
475 tem = Fexpand_file_name (build_string ("lib-src"), dir);
476 lib_src_exists = Ffile_exists_p (tem);
478 #ifdef MSDOS
479 /* MSDOS installations frequently remove lib-src, but we still
480 must set installation-directory, or else info won't find
481 its files (it uses the value of installation-directory). */
482 tem = Fexpand_file_name (build_string ("info"), dir);
483 info_exists = Ffile_exists_p (tem);
484 #else
485 info_exists = Qnil;
486 #endif
488 if (!NILP (lib_src_exists) || !NILP (info_exists))
490 tem = Fexpand_file_name (build_string ("etc"), dir);
491 etc_exists = Ffile_exists_p (tem);
492 if (!NILP (etc_exists))
494 Vinstallation_directory
495 = Ffile_name_as_directory (dir);
496 break;
500 /* See if dir's parent contains those subdirs. */
501 tem = Fexpand_file_name (build_string ("../lib-src"), dir);
502 lib_src_exists = Ffile_exists_p (tem);
505 #ifdef MSDOS
506 /* See the MSDOS commentary above. */
507 tem = Fexpand_file_name (build_string ("../info"), dir);
508 info_exists = Ffile_exists_p (tem);
509 #else
510 info_exists = Qnil;
511 #endif
513 if (!NILP (lib_src_exists) || !NILP (info_exists))
515 tem = Fexpand_file_name (build_string ("../etc"), dir);
516 etc_exists = Ffile_exists_p (tem);
517 if (!NILP (etc_exists))
519 tem = Fexpand_file_name (build_string (".."), dir);
520 Vinstallation_directory
521 = Ffile_name_as_directory (tem);
522 break;
526 /* If the Emacs executable is actually a link,
527 next try the dir that the link points into. */
528 tem = Ffile_symlink_p (name);
529 if (!NILP (tem))
531 name = Fexpand_file_name (tem, dir);
532 dir = Ffile_name_directory (name);
534 else
535 break;
539 Vcommand_line_args = Qnil;
541 for (i = argc - 1; i >= 0; i--)
543 if (i == 0 || i > skip_args)
544 Vcommand_line_args
545 = Fcons (build_string (argv[i]), Vcommand_line_args);
548 unbind_to (count, Qnil);
551 DEFUN ("invocation-name", Finvocation_name, Sinvocation_name, 0, 0, 0,
552 doc: /* Return the program name that was used to run Emacs.
553 Any directory names are omitted. */)
556 return Fcopy_sequence (Vinvocation_name);
559 DEFUN ("invocation-directory", Finvocation_directory, Sinvocation_directory,
560 0, 0, 0,
561 doc: /* Return the directory name in which the Emacs executable was located. */)
564 return Fcopy_sequence (Vinvocation_directory);
568 #ifdef VMS
569 #ifdef LINK_CRTL_SHARE
570 #ifdef SHARABLE_LIB_BUG
571 extern noshare char **environ;
572 #endif /* SHARABLE_LIB_BUG */
573 #endif /* LINK_CRTL_SHARE */
574 #endif /* VMS */
576 #ifdef HAVE_TZSET
577 /* A valid but unlikely value for the TZ environment value.
578 It is OK (though a bit slower) if the user actually chooses this value. */
579 static char dump_tz[] = "UtC0";
580 #endif
582 #ifndef ORDINARY_LINK
583 /* We don't include crtbegin.o and crtend.o in the link,
584 so these functions and variables might be missed.
585 Provide dummy definitions to avoid error.
586 (We don't have any real constructors or destructors.) */
587 #ifdef __GNUC__
588 #ifndef GCC_CTORS_IN_LIBC
589 void __do_global_ctors ()
591 void __do_global_ctors_aux ()
593 void __do_global_dtors ()
595 /* Linux has a bug in its library; avoid an error. */
596 #ifndef LINUX
597 char * __CTOR_LIST__[2] = { (char *) (-1), 0 };
598 #endif
599 char * __DTOR_LIST__[2] = { (char *) (-1), 0 };
600 #endif /* GCC_CTORS_IN_LIBC */
601 void __main ()
603 #endif /* __GNUC__ */
604 #endif /* ORDINARY_LINK */
606 /* Test whether the next argument in ARGV matches SSTR or a prefix of
607 LSTR (at least MINLEN characters). If so, then if VALPTR is non-null
608 (the argument is supposed to have a value) store in *VALPTR either
609 the next argument or the portion of this one after the equal sign.
610 ARGV is read starting at position *SKIPPTR; this index is advanced
611 by the number of arguments used.
613 Too bad we can't just use getopt for all of this, but we don't have
614 enough information to do it right. */
616 static int
617 argmatch (argv, argc, sstr, lstr, minlen, valptr, skipptr)
618 char **argv;
619 int argc;
620 char *sstr;
621 char *lstr;
622 int minlen;
623 char **valptr;
624 int *skipptr;
626 char *p = NULL;
627 int arglen;
628 char *arg;
630 /* Don't access argv[argc]; give up in advance. */
631 if (argc <= *skipptr + 1)
632 return 0;
634 arg = argv[*skipptr+1];
635 if (arg == NULL)
636 return 0;
637 if (strcmp (arg, sstr) == 0)
639 if (valptr != NULL)
641 *valptr = argv[*skipptr+2];
642 *skipptr += 2;
644 else
645 *skipptr += 1;
646 return 1;
648 arglen = (valptr != NULL && (p = index (arg, '=')) != NULL
649 ? p - arg : strlen (arg));
650 if (lstr == 0 || arglen < minlen || strncmp (arg, lstr, arglen) != 0)
651 return 0;
652 else if (valptr == NULL)
654 *skipptr += 1;
655 return 1;
657 else if (p != NULL)
659 *valptr = p+1;
660 *skipptr += 1;
661 return 1;
663 else if (argv[*skipptr+2] != NULL)
665 *valptr = argv[*skipptr+2];
666 *skipptr += 2;
667 return 1;
669 else
671 return 0;
675 #ifdef DOUG_LEA_MALLOC
677 /* malloc can be invoked even before main (e.g. by the dynamic
678 linker), so the dumped malloc state must be restored as early as
679 possible using this special hook. */
681 static void
682 malloc_initialize_hook ()
684 #ifndef USE_CRT_DLL
685 extern char **environ;
686 #endif
688 if (initialized)
690 if (!malloc_using_checking)
691 /* Work around a bug in glibc's malloc. MALLOC_CHECK_ must be
692 ignored if the heap to be restored was constructed without
693 malloc checking. Can't use unsetenv, since that calls malloc. */
695 char **p;
697 for (p = environ; p && *p; p++)
698 if (strncmp (*p, "MALLOC_CHECK_=", 14) == 0)
701 *p = p[1];
702 while (*++p);
703 break;
707 malloc_set_state (malloc_state_ptr);
708 free (malloc_state_ptr);
710 else
711 malloc_using_checking = getenv ("MALLOC_CHECK_") != NULL;
714 void (*__malloc_initialize_hook) () = malloc_initialize_hook;
716 #endif /* DOUG_LEA_MALLOC */
719 #define REPORT_EMACS_BUG_ADDRESS "bug-gnu-emacs@gnu.org"
720 #define REPORT_EMACS_BUG_PRETEST_ADDRESS "emacs-pretest-bug@gnu.org"
722 /* This function is used to determine an address to which bug report should
723 be sent. */
725 char *bug_reporting_address ()
727 int count=0;
728 Lisp_Object temp;
729 char *string;
731 temp = Fsymbol_value (intern ("emacs-version"));
733 /* When `emacs-version' is invalid, use normal address. */
734 if (!STRINGP(temp))
735 return REPORT_EMACS_BUG_ADDRESS;
737 string = XSTRING (temp)->data;
739 do {
740 if (*string=='.')
741 count++;
742 } while (string++,*string);
744 /* When `emacs-version' has at least three dots, it is development or
745 pretest version of Emacs. */
746 return (count>=3) ? REPORT_EMACS_BUG_PRETEST_ADDRESS : REPORT_EMACS_BUG_ADDRESS;
750 /* ARGSUSED */
752 main (argc, argv, envp)
753 int argc;
754 char **argv;
755 char **envp;
757 #if GC_MARK_STACK
758 Lisp_Object dummy;
759 #endif
760 char stack_bottom_variable;
761 int do_initial_setlocale;
762 int skip_args = 0;
763 #ifndef USE_CRT_DLL
764 extern int errno;
765 #endif
766 #ifdef HAVE_SETRLIMIT
767 struct rlimit rlim;
768 #endif
769 int no_loadup = 0;
771 #if GC_MARK_STACK
772 extern Lisp_Object *stack_base;
773 stack_base = &dummy;
774 #endif
776 #ifdef LINUX_SBRK_BUG
777 __sbrk (1);
778 #endif
780 #ifdef RUN_TIME_REMAP
781 if (initialized)
782 run_time_remap (argv[0]);
783 #endif
785 sort_args (argc, argv);
786 argc = 0;
787 while (argv[argc]) argc++;
789 if (argmatch (argv, argc, "-version", "--version", 3, NULL, &skip_args)
790 /* We don't know the version number unless this is a dumped Emacs.
791 So ignore --version otherwise. */
792 && initialized)
794 Lisp_Object tem;
795 tem = Fsymbol_value (intern ("emacs-version"));
796 if (!STRINGP (tem))
798 fprintf (stderr, "Invalid value of `emacs-version'\n");
799 exit (1);
801 else
803 printf ("GNU Emacs %s\n", XSTRING (tem)->data);
804 printf ("Copyright (C) 2001 Free Software Foundation, Inc.\n");
805 printf ("GNU Emacs comes with ABSOLUTELY NO WARRANTY.\n");
806 printf ("You may redistribute copies of Emacs\n");
807 printf ("under the terms of the GNU General Public License.\n");
808 printf ("For more information about these matters, ");
809 printf ("see the file named COPYING.\n");
810 exit (0);
814 /* Map in shared memory, if we are using that. */
815 #ifdef HAVE_SHM
816 if (argmatch (argv, argc, "-nl", "--no-shared-memory", 6, NULL, &skip_args))
818 map_in_data (0);
819 /* The shared memory was just restored, which clobbered this. */
820 skip_args = 1;
822 else
824 map_in_data (1);
825 /* The shared memory was just restored, which clobbered this. */
826 skip_args = 0;
828 #endif
830 #ifdef NeXT
832 extern int malloc_cookie;
833 /* This helps out unexnext.c. */
834 if (initialized)
835 if (malloc_jumpstart (malloc_cookie) != 0)
836 printf ("malloc jumpstart failed!\n");
838 #endif /* NeXT */
840 #ifdef VMS
841 /* If -map specified, map the data file in. */
843 char *file;
844 if (argmatch (argv, argc, "-map", "--map-data", 3, &mapin_file, &skip_args))
845 mapin_data (file);
848 #ifdef LINK_CRTL_SHARE
849 #ifdef SHARABLE_LIB_BUG
850 /* Bletcherous shared libraries! */
851 if (!stdin)
852 stdin = fdopen (0, "r");
853 if (!stdout)
854 stdout = fdopen (1, "w");
855 if (!stderr)
856 stderr = fdopen (2, "w");
857 if (!environ)
858 environ = envp;
859 #endif /* SHARABLE_LIB_BUG */
860 #endif /* LINK_CRTL_SHARE */
861 #endif /* VMS */
863 #if defined (HAVE_SETRLIMIT) && defined (RLIMIT_STACK)
864 /* Extend the stack space available.
865 Don't do that if dumping, since some systems (e.g. DJGPP)
866 might define a smaller stack limit at that time. */
867 if (1
868 #ifndef CANNOT_DUMP
869 && (!noninteractive || initialized)
870 #endif
871 && !getrlimit (RLIMIT_STACK, &rlim))
873 long newlim;
874 extern int re_max_failures;
875 /* Approximate the amount regex.c needs per unit of re_max_failures. */
876 int ratio = 20 * sizeof (char *);
877 /* Then add 33% to cover the size of the smaller stacks that regex.c
878 successively allocates and discards, on its way to the maximum. */
879 ratio += ratio / 3;
880 /* Add in some extra to cover
881 what we're likely to use for other reasons. */
882 newlim = re_max_failures * ratio + 200000;
883 #ifdef __NetBSD__
884 /* NetBSD (at least NetBSD 1.2G and former) has a bug in its
885 stack allocation routine for new process that the allocation
886 fails if stack limit is not on page boundary. So, round up the
887 new limit to page boundary. */
888 newlim = (newlim + getpagesize () - 1) / getpagesize () * getpagesize();
889 #endif
890 if (newlim > rlim.rlim_max)
892 newlim = rlim.rlim_max;
893 /* Don't let regex.c overflow the stack we have. */
894 re_max_failures = (newlim - 200000) / ratio;
896 if (rlim.rlim_cur < newlim)
897 rlim.rlim_cur = newlim;
899 setrlimit (RLIMIT_STACK, &rlim);
901 #endif /* HAVE_SETRLIMIT and RLIMIT_STACK */
903 /* Record (approximately) where the stack begins. */
904 stack_bottom = &stack_bottom_variable;
906 #ifdef USG_SHARED_LIBRARIES
907 if (bss_end)
908 brk ((void *)bss_end);
909 #endif
911 clearerr (stdin);
913 #ifndef SYSTEM_MALLOC
914 /* Arrange to get warning messages as memory fills up. */
915 memory_warnings (0, malloc_warning);
917 /* Call malloc at least once, to run the initial __malloc_hook.
918 Also call realloc and free for consistency. */
919 free (realloc (malloc (4), 4));
921 /* Arrange to disable interrupt input inside malloc etc. */
922 uninterrupt_malloc ();
923 #endif /* not SYSTEM_MALLOC */
925 #ifdef MSDOS
926 /* We do all file input/output as binary files. When we need to translate
927 newlines, we do that manually. */
928 _fmode = O_BINARY;
930 #if __DJGPP__ >= 2
931 if (!isatty (fileno (stdin)))
932 setmode (fileno (stdin), O_BINARY);
933 if (!isatty (fileno (stdout)))
935 fflush (stdout);
936 setmode (fileno (stdout), O_BINARY);
938 #else /* not __DJGPP__ >= 2 */
939 (stdin)->_flag &= ~_IOTEXT;
940 (stdout)->_flag &= ~_IOTEXT;
941 (stderr)->_flag &= ~_IOTEXT;
942 #endif /* not __DJGPP__ >= 2 */
943 #endif /* MSDOS */
945 #ifdef SET_EMACS_PRIORITY
946 if (emacs_priority)
947 nice (emacs_priority);
948 setuid (getuid ());
949 #endif /* SET_EMACS_PRIORITY */
951 /* Skip initial setlocale if LC_ALL is "C", as it's not needed in that case.
952 The build procedure uses this while dumping, to ensure that the
953 dumped Emacs does not have its system locale tables initialized,
954 as that might cause screwups when the dumped Emacs starts up. */
956 char *lc_all = getenv ("LC_ALL");
957 do_initial_setlocale = ! lc_all || strcmp (lc_all, "C");
960 /* Set locale now, so that initial error messages are localized properly.
961 fixup_locale must wait until later, since it builds strings. */
962 if (do_initial_setlocale)
963 setlocale (LC_ALL, "");
965 #ifdef EXTRA_INITIALIZE
966 EXTRA_INITIALIZE;
967 #endif
969 inhibit_window_system = 0;
971 /* Handle the -t switch, which specifies filename to use as terminal. */
972 while (1)
974 char *term;
975 if (argmatch (argv, argc, "-t", "--terminal", 4, &term, &skip_args))
977 int result;
978 emacs_close (0);
979 emacs_close (1);
980 result = emacs_open (term, O_RDWR, 0);
981 if (result < 0)
983 char *errstring = strerror (errno);
984 fprintf (stderr, "%s: %s: %s\n", argv[0], term, errstring);
985 exit (1);
987 dup (0);
988 if (! isatty (0))
990 fprintf (stderr, "%s: %s: not a tty\n", argv[0], term);
991 exit (1);
993 fprintf (stderr, "Using %s\n", term);
994 #ifdef HAVE_WINDOW_SYSTEM
995 inhibit_window_system = 1; /* -t => -nw */
996 #endif
998 else
999 break;
1002 if (argmatch (argv, argc, "-nw", "--no-windows", 6, NULL, &skip_args))
1003 inhibit_window_system = 1;
1005 /* Handle the -batch switch, which means don't do interactive display. */
1006 noninteractive = 0;
1007 if (argmatch (argv, argc, "-batch", "--batch", 5, NULL, &skip_args))
1008 noninteractive = 1;
1010 /* Handle the --help option, which gives a usage message. */
1011 if (argmatch (argv, argc, "-help", "--help", 3, NULL, &skip_args))
1013 printf (USAGE1, argv[0]);
1014 printf (USAGE2);
1015 printf (USAGE3, bug_reporting_address());
1016 exit (0);
1019 if (! noninteractive)
1021 #ifdef BSD_PGRPS
1022 if (initialized)
1024 inherited_pgroup = EMACS_GETPGRP (0);
1025 setpgrp (0, getpid ());
1027 #else
1028 #if defined (USG5) && defined (INTERRUPT_INPUT)
1029 setpgrp ();
1030 #endif
1031 #endif
1034 init_signals ();
1036 /* Don't catch SIGHUP if dumping. */
1037 if (1
1038 #ifndef CANNOT_DUMP
1039 && initialized
1040 #endif
1043 sigblock (sigmask (SIGHUP));
1044 /* In --batch mode, don't catch SIGHUP if already ignored.
1045 That makes nohup work. */
1046 if (! noninteractive
1047 || signal (SIGHUP, SIG_IGN) != SIG_IGN)
1048 signal (SIGHUP, fatal_error_signal);
1049 sigunblock (sigmask (SIGHUP));
1052 if (
1053 #ifndef CANNOT_DUMP
1054 ! noninteractive || initialized
1055 #else
1057 #endif
1060 /* Don't catch these signals in batch mode if dumping.
1061 On some machines, this sets static data that would make
1062 signal fail to work right when the dumped Emacs is run. */
1063 signal (SIGQUIT, fatal_error_signal);
1064 signal (SIGILL, fatal_error_signal);
1065 signal (SIGTRAP, fatal_error_signal);
1066 #ifdef SIGUSR1
1067 signal (SIGUSR1, handle_USR1_signal);
1068 #ifdef SIGUSR2
1069 signal (SIGUSR2, handle_USR2_signal);
1070 #endif
1071 #endif
1072 #ifdef SIGABRT
1073 signal (SIGABRT, fatal_error_signal);
1074 #endif
1075 #ifdef SIGHWE
1076 signal (SIGHWE, fatal_error_signal);
1077 #endif
1078 #ifdef SIGPRE
1079 signal (SIGPRE, fatal_error_signal);
1080 #endif
1081 #ifdef SIGORE
1082 signal (SIGORE, fatal_error_signal);
1083 #endif
1084 #ifdef SIGUME
1085 signal (SIGUME, fatal_error_signal);
1086 #endif
1087 #ifdef SIGDLK
1088 signal (SIGDLK, fatal_error_signal);
1089 #endif
1090 #ifdef SIGCPULIM
1091 signal (SIGCPULIM, fatal_error_signal);
1092 #endif
1093 #ifdef SIGIOT
1094 /* This is missing on some systems - OS/2, for example. */
1095 signal (SIGIOT, fatal_error_signal);
1096 #endif
1097 #ifdef SIGEMT
1098 signal (SIGEMT, fatal_error_signal);
1099 #endif
1100 signal (SIGFPE, fatal_error_signal);
1101 #ifdef SIGBUS
1102 signal (SIGBUS, fatal_error_signal);
1103 #endif
1104 signal (SIGSEGV, fatal_error_signal);
1105 #ifdef SIGSYS
1106 signal (SIGSYS, fatal_error_signal);
1107 #endif
1108 signal (SIGTERM, fatal_error_signal);
1109 #ifdef SIGXCPU
1110 signal (SIGXCPU, fatal_error_signal);
1111 #endif
1112 #ifdef SIGXFSZ
1113 signal (SIGXFSZ, fatal_error_signal);
1114 #endif /* SIGXFSZ */
1116 #ifdef SIGDANGER
1117 /* This just means available memory is getting low. */
1118 signal (SIGDANGER, memory_warning_signal);
1119 #endif
1121 #ifdef AIX
1122 /* 20 is SIGCHLD, 21 is SIGTTIN, 22 is SIGTTOU. */
1123 signal (SIGXCPU, fatal_error_signal);
1124 #ifndef _I386
1125 signal (SIGIOINT, fatal_error_signal);
1126 #endif
1127 signal (SIGGRANT, fatal_error_signal);
1128 signal (SIGRETRACT, fatal_error_signal);
1129 signal (SIGSOUND, fatal_error_signal);
1130 signal (SIGMSG, fatal_error_signal);
1131 #endif /* AIX */
1134 noninteractive1 = noninteractive;
1136 /* Perform basic initializations (not merely interning symbols). */
1138 if (!initialized)
1140 init_alloc_once ();
1141 init_obarray ();
1142 init_eval_once ();
1143 init_charset_once ();
1144 init_coding_once ();
1145 init_syntax_once (); /* Create standard syntax table. */
1146 init_category_once (); /* Create standard category table. */
1147 /* Must be done before init_buffer. */
1148 init_casetab_once ();
1149 init_buffer_once (); /* Create buffer table and some buffers. */
1150 init_minibuf_once (); /* Create list of minibuffers. */
1151 /* Must precede init_window_once. */
1153 /* Call syms_of_xfaces before init_window_once because that
1154 function creates Vterminal_frame. Termcap frames now use
1155 faces, and the face implementation uses some symbols as
1156 face names. */
1157 syms_of_xfaces ();
1158 /* Call syms_of_keyboard before init_window_once because
1159 keyboard sets up symbols that include some face names that
1160 the X support will want to use. This can happen when
1161 CANNOT_DUMP is defined. */
1162 syms_of_keyboard ();
1164 #ifdef macintosh
1165 /* init_window_once calls make_terminal_frame which on Mac OS
1166 creates a full-fledge output_mac type frame. This does not
1167 work correctly before syms_of_textprop, syms_of_macfns,
1168 syms_of_ccl, syms_of_fontset, syms_of_xterm, syms_of_search,
1169 syms_of_frame, x_term_init, and init_keyboard have already
1170 been called. */
1171 syms_of_textprop ();
1172 syms_of_macfns ();
1173 syms_of_ccl ();
1174 syms_of_fontset ();
1175 syms_of_macterm ();
1176 syms_of_macmenu ();
1177 syms_of_data ();
1178 syms_of_search ();
1179 syms_of_frame ();
1181 x_term_init ();
1182 init_keyboard ();
1183 #endif
1185 init_window_once (); /* Init the window system. */
1186 init_fileio_once (); /* Must precede any path manipulation. */
1189 init_alloc ();
1191 if (do_initial_setlocale)
1193 fixup_locale ();
1194 Vsystem_messages_locale = Vprevious_system_messages_locale;
1195 Vsystem_time_locale = Vprevious_system_time_locale;
1198 init_eval ();
1199 init_data ();
1200 #ifdef CLASH_DETECTION
1201 init_filelock ();
1202 #endif
1203 init_atimer ();
1204 running_asynch_code = 0;
1206 /* Handle --unibyte and the EMACS_UNIBYTE envvar,
1207 but not while dumping. */
1208 if (
1209 #ifndef CANNOT_DUMP
1210 ! noninteractive || initialized
1211 #else
1213 #endif
1216 int inhibit_unibyte = 0;
1218 /* --multibyte overrides EMACS_UNIBYTE. */
1219 if (argmatch (argv, argc, "-no-unibyte", "--no-unibyte", 4, NULL, &skip_args)
1220 || argmatch (argv, argc, "-multibyte", "--multibyte", 4, NULL, &skip_args))
1221 inhibit_unibyte = 1;
1223 /* --unibyte requests that we set up to do everything with single-byte
1224 buffers and strings. We need to handle this before calling
1225 init_lread, init_editfns and other places that generate Lisp strings
1226 from text in the environment. */
1227 /* Actually this shouldn't be needed as of 20.4 in a generally
1228 unibyte environment. As handa says, environment values
1229 aren't now decoded; also existing buffers are now made
1230 unibyte during startup if .emacs sets unibyte. Tested with
1231 8-bit data in environment variables and /etc/passwd, setting
1232 unibyte and Latin-1 in .emacs. -- Dave Love */
1233 if (argmatch (argv, argc, "-unibyte", "--unibyte", 4, NULL, &skip_args)
1234 || argmatch (argv, argc, "-no-multibyte", "--no-multibyte", 4, NULL, &skip_args)
1235 || (getenv ("EMACS_UNIBYTE") && !inhibit_unibyte))
1237 Lisp_Object old_log_max;
1238 Lisp_Object symbol, tail;
1240 symbol = intern ("default-enable-multibyte-characters");
1241 Fset (symbol, Qnil);
1243 if (initialized)
1245 /* Erase pre-dump messages in *Messages* now so no abort. */
1246 old_log_max = Vmessage_log_max;
1247 XSETFASTINT (Vmessage_log_max, 0);
1248 message_dolog ("", 0, 1, 0);
1249 Vmessage_log_max = old_log_max;
1252 for (tail = Vbuffer_alist; CONSP (tail);
1253 tail = XCDR (tail))
1255 Lisp_Object buffer;
1257 buffer = Fcdr (XCAR (tail));
1258 /* Verify that all buffers are empty now, as they
1259 ought to be. */
1260 if (BUF_Z (XBUFFER (buffer)) > BUF_BEG (XBUFFER (buffer)))
1261 abort ();
1262 /* It is safe to do this crudely in an empty buffer. */
1263 XBUFFER (buffer)->enable_multibyte_characters = Qnil;
1268 no_loadup
1269 = argmatch (argv, argc, "-nl", "--no-loadup", 6, NULL, &skip_args);
1272 #ifdef HAVE_X_WINDOWS
1273 /* Stupid kludge to catch command-line display spec. We can't
1274 handle this argument entirely in window system dependent code
1275 because we don't even know which window system dependent code
1276 to run until we've recognized this argument. */
1278 char *displayname = 0;
1279 int count_before = skip_args;
1281 /* Skip any number of -d options, but only use the last one. */
1282 while (1)
1284 int count_before_this = skip_args;
1286 if (argmatch (argv, argc, "-d", "--display", 3, &displayname, &skip_args))
1287 display_arg = 1;
1288 else if (argmatch (argv, argc, "-display", 0, 3, &displayname, &skip_args))
1289 display_arg = 1;
1290 else
1291 break;
1293 count_before = count_before_this;
1296 /* If we have the form --display=NAME,
1297 convert it into -d name.
1298 This requires inserting a new element into argv. */
1299 if (displayname != 0 && skip_args - count_before == 1)
1301 char **new = (char **) xmalloc (sizeof (char *) * (argc + 2));
1302 int j;
1304 for (j = 0; j < count_before + 1; j++)
1305 new[j] = argv[j];
1306 new[count_before + 1] = "-d";
1307 new[count_before + 2] = displayname;
1308 for (j = count_before + 2; j <argc; j++)
1309 new[j + 1] = argv[j];
1310 argv = new;
1311 argc++;
1313 /* Change --display to -d, when its arg is separate. */
1314 else if (displayname != 0 && skip_args > count_before
1315 && argv[count_before + 1][1] == '-')
1316 argv[count_before + 1] = "-d";
1318 /* Don't actually discard this arg. */
1319 skip_args = count_before;
1321 #endif
1323 /* argmatch must not be used after here,
1324 except when bulding temacs
1325 because the -d argument has not been skipped in skip_args. */
1327 #ifdef MSDOS
1328 /* Call early 'cause init_environment needs it. */
1329 init_dosfns ();
1330 /* Set defaults for several environment variables. */
1331 if (initialized)
1332 init_environment (argc, argv, skip_args);
1333 else
1334 tzset ();
1335 #endif /* MSDOS */
1337 #ifdef WINDOWSNT
1338 /* Initialize environment from registry settings. */
1339 init_environment (argv);
1340 init_ntproc (); /* must precede init_editfns. */
1341 #endif
1343 /* egetenv is a pretty low-level facility, which may get called in
1344 many circumstances; it seems flimsy to put off initializing it
1345 until calling init_callproc. */
1346 set_process_environment ();
1347 /* AIX crashes are reported in system versions 3.2.3 and 3.2.4
1348 if this is not done. Do it after set_process_environment so that we
1349 don't pollute Vprocess_environment. */
1350 /* Setting LANG here will defeat the startup locale processing... */
1351 #ifdef AIX3_2
1352 putenv ("LANG=C");
1353 #endif
1355 init_buffer (); /* Init default directory of main buffer. */
1357 init_callproc_1 (); /* Must precede init_cmdargs and init_sys_modes. */
1358 init_cmdargs (argc, argv, skip_args); /* Must precede init_lread. */
1360 if (initialized)
1362 /* Erase any pre-dump messages in the message log, to avoid confusion. */
1363 Lisp_Object old_log_max;
1364 old_log_max = Vmessage_log_max;
1365 XSETFASTINT (Vmessage_log_max, 0);
1366 message_dolog ("", 0, 1, 0);
1367 Vmessage_log_max = old_log_max;
1370 init_callproc (); /* Must follow init_cmdargs but not init_sys_modes. */
1371 init_lread ();
1373 /* Intern the names of all standard functions and variables;
1374 define standard keys. */
1376 if (!initialized)
1378 /* The basic levels of Lisp must come first. */
1379 /* And data must come first of all
1380 for the sake of symbols like error-message. */
1381 #ifndef macintosh
1382 /* Called before init_window_once for Mac OS. */
1383 syms_of_data ();
1384 #endif
1385 syms_of_alloc ();
1386 syms_of_lread ();
1387 syms_of_print ();
1388 syms_of_eval ();
1389 syms_of_fns ();
1390 syms_of_floatfns ();
1392 syms_of_abbrev ();
1393 syms_of_buffer ();
1394 syms_of_bytecode ();
1395 syms_of_callint ();
1396 syms_of_casefiddle ();
1397 syms_of_casetab ();
1398 syms_of_callproc ();
1399 syms_of_category ();
1400 #ifndef macintosh
1401 /* Called before init_window_once for Mac OS. */
1402 syms_of_ccl ();
1403 #endif
1404 syms_of_charset ();
1405 syms_of_cmds ();
1406 #ifndef NO_DIR_LIBRARY
1407 syms_of_dired ();
1408 #endif /* not NO_DIR_LIBRARY */
1409 syms_of_display ();
1410 syms_of_doc ();
1411 syms_of_editfns ();
1412 syms_of_emacs ();
1413 syms_of_fileio ();
1414 syms_of_coding (); /* This should be after syms_of_fileio. */
1415 #ifdef CLASH_DETECTION
1416 syms_of_filelock ();
1417 #endif /* CLASH_DETECTION */
1418 syms_of_indent ();
1419 syms_of_insdel ();
1420 syms_of_keymap ();
1421 syms_of_macros ();
1422 syms_of_marker ();
1423 syms_of_minibuf ();
1424 syms_of_mocklisp ();
1425 syms_of_process ();
1426 #ifndef macintosh
1427 /* Called before init_window_once for Mac OS. */
1428 syms_of_search ();
1429 syms_of_frame ();
1430 #endif
1431 syms_of_syntax ();
1432 syms_of_term ();
1433 syms_of_undo ();
1434 #ifdef HAVE_SOUND
1435 syms_of_sound ();
1436 #endif
1437 #ifndef macintosh
1438 /* Called before init_window_once for Mac OS. */
1439 syms_of_textprop ();
1440 #endif
1441 syms_of_composite ();
1442 #ifdef VMS
1443 syms_of_vmsproc ();
1444 #endif /* VMS */
1445 #ifdef WINDOWSNT
1446 syms_of_ntproc ();
1447 #endif /* WINDOWSNT */
1448 syms_of_window ();
1449 syms_of_xdisp ();
1450 #ifdef HAVE_X_WINDOWS
1451 syms_of_xterm ();
1452 syms_of_xfns ();
1453 syms_of_fontset ();
1454 #ifdef HAVE_X11
1455 syms_of_xselect ();
1456 #endif
1457 #endif /* HAVE_X_WINDOWS */
1459 #ifndef HAVE_NTGUI
1460 #ifndef macintosh
1461 syms_of_xmenu ();
1462 #endif
1463 #endif
1465 #ifdef HAVE_NTGUI
1466 syms_of_w32term ();
1467 syms_of_w32fns ();
1468 syms_of_w32select ();
1469 syms_of_w32menu ();
1470 syms_of_fontset ();
1471 #endif /* HAVE_NTGUI */
1473 #ifdef SYMS_SYSTEM
1474 SYMS_SYSTEM;
1475 #endif
1477 #ifdef SYMS_MACHINE
1478 SYMS_MACHINE;
1479 #endif
1481 keys_of_casefiddle ();
1482 keys_of_cmds ();
1483 keys_of_buffer ();
1484 keys_of_keyboard ();
1485 keys_of_keymap ();
1486 keys_of_macros ();
1487 keys_of_minibuf ();
1488 keys_of_window ();
1489 keys_of_frame ();
1492 if (!noninteractive)
1494 #ifdef VMS
1495 init_vms_input ();/* init_display calls get_frame_size, that needs this. */
1496 #endif /* VMS */
1497 init_display (); /* Determine terminal type. init_sys_modes uses results. */
1499 #ifndef macintosh
1500 /* Called before init_window_once for Mac OS. */
1501 init_keyboard (); /* This too must precede init_sys_modes. */
1502 #endif
1503 #ifdef VMS
1504 init_vmsproc (); /* And this too. */
1505 #endif /* VMS */
1506 init_sys_modes (); /* Init system terminal modes (RAW or CBREAK, etc.). */
1507 #ifdef HAVE_X_WINDOWS
1508 init_xfns ();
1509 #endif /* HAVE_X_WINDOWS */
1510 init_fns ();
1511 init_xdisp ();
1512 init_macros ();
1513 init_editfns ();
1514 init_floatfns ();
1515 #ifdef VMS
1516 init_vmsfns ();
1517 #endif /* VMS */
1518 init_process ();
1519 #ifdef HAVE_SOUND
1520 init_sound ();
1521 #endif
1522 init_window ();
1524 if (!initialized)
1526 char *file;
1527 /* Handle -l loadup, args passed by Makefile. */
1528 if (argmatch (argv, argc, "-l", "--load", 3, &file, &skip_args))
1529 Vtop_level = Fcons (intern ("load"),
1530 Fcons (build_string (file), Qnil));
1531 #ifdef CANNOT_DUMP
1532 /* Unless next switch is -nl, load "loadup.el" first thing. */
1533 if (! no_loadup)
1534 Vtop_level = Fcons (intern ("load"),
1535 Fcons (build_string ("loadup.el"), Qnil));
1536 #endif /* CANNOT_DUMP */
1539 if (initialized)
1541 #ifdef HAVE_TZSET
1543 /* If the execution TZ happens to be the same as the dump TZ,
1544 change it to some other value and then change it back,
1545 to force the underlying implementation to reload the TZ info.
1546 This is needed on implementations that load TZ info from files,
1547 since the TZ file contents may differ between dump and execution. */
1548 char *tz = getenv ("TZ");
1549 if (tz && !strcmp (tz, dump_tz))
1551 ++*tz;
1552 tzset ();
1553 --*tz;
1556 #endif
1559 /* Set up for profiling. This is known to work on FreeBSD and
1560 GNU/Linux. It might work on some other systems too. Give it a
1561 try and tell us if it works on your system. To compile for
1562 profiling use something like `make CFLAGS="-pg -g -O -DPROFILING=1'. */
1563 #if defined (__FreeBSD__) || defined (__linux)
1564 #ifdef PROFILING
1565 if (initialized)
1567 extern void _mcleanup ();
1568 extern char etext;
1569 extern void safe_bcopy ();
1570 extern void dump_opcode_frequencies ();
1572 atexit (_mcleanup);
1573 /* This uses safe_bcopy because that function comes first in the
1574 Emacs executable. It might be better to use something that
1575 gives the start of the text segment, but start_of_text is not
1576 defined on all systems now. */
1577 monstartup (safe_bcopy, &etext);
1579 else
1580 moncontrol (0);
1581 #endif
1582 #endif
1584 initialized = 1;
1586 #ifdef LOCALTIME_CACHE
1587 /* Some versions of localtime have a bug. They cache the value of the time
1588 zone rather than looking it up every time. Since localtime() is
1589 called to bolt the undumping time into the undumped emacs, this
1590 results in localtime ignoring the TZ environment variable.
1591 This flushes the new TZ value into localtime. */
1592 tzset ();
1593 #endif /* defined (LOCALTIME_CACHE) */
1595 /* Enter editor command loop. This never returns. */
1596 Frecursive_edit ();
1597 /* NOTREACHED */
1598 return 0;
1601 /* Sort the args so we can find the most important ones
1602 at the beginning of argv. */
1604 /* First, here's a table of all the standard options. */
1606 struct standard_args
1608 char *name;
1609 char *longname;
1610 int priority;
1611 int nargs;
1614 struct standard_args standard_args[] =
1616 { "-version", "--version", 150, 0 },
1617 #ifdef HAVE_SHM
1618 { "-nl", "--no-shared-memory", 140, 0 },
1619 #endif
1620 #ifdef VMS
1621 { "-map", "--map-data", 130, 0 },
1622 #endif
1623 { "-t", "--terminal", 120, 1 },
1624 { "-nw", "--no-windows", 110, 0 },
1625 { "-batch", "--batch", 100, 0 },
1626 { "-help", "--help", 90, 0 },
1627 { "-no-unibyte", "--no-unibyte", 83, 0 },
1628 { "-multibyte", "--multibyte", 82, 0 },
1629 { "-unibyte", "--unibyte", 81, 0 },
1630 { "-no-multibyte", "--no-multibyte", 80, 0 },
1631 #ifdef CANNOT_DUMP
1632 { "-nl", "--no-loadup", 70, 0 },
1633 #endif
1634 /* -d must come last before the options handled in startup.el. */
1635 { "-d", "--display", 60, 1 },
1636 { "-display", 0, 60, 1 },
1637 /* Now for the options handled in startup.el. */
1638 { "-q", "--no-init-file", 50, 0 },
1639 { "-no-init-file", 0, 50, 0 },
1640 { "-no-site-file", "--no-site-file", 40, 0 },
1641 { "-u", "--user", 30, 1 },
1642 { "-user", 0, 30, 1 },
1643 { "-debug-init", "--debug-init", 20, 0 },
1644 { "-i", "--icon-type", 15, 0 },
1645 { "-itype", 0, 15, 0 },
1646 { "-iconic", "--iconic", 15, 0 },
1647 { "-bg", "--background-color", 10, 1 },
1648 { "-background", 0, 10, 1 },
1649 { "-fg", "--foreground-color", 10, 1 },
1650 { "-foreground", 0, 10, 1 },
1651 { "-bd", "--border-color", 10, 1 },
1652 { "-bw", "--border-width", 10, 1 },
1653 { "-ib", "--internal-border", 10, 1 },
1654 { "-ms", "--mouse-color", 10, 1 },
1655 { "-cr", "--cursor-color", 10, 1 },
1656 { "-fn", "--font", 10, 1 },
1657 { "-font", 0, 10, 1 },
1658 { "-g", "--geometry", 10, 1 },
1659 { "-geometry", 0, 10, 1 },
1660 { "-T", "--title", 10, 1 },
1661 { "-title", 0, 10, 1 },
1662 { "-name", "--name", 10, 1 },
1663 { "-xrm", "--xrm", 10, 1 },
1664 { "-r", "--reverse-video", 5, 0 },
1665 { "-rv", 0, 5, 0 },
1666 { "-reverse", 0, 5, 0 },
1667 { "-hb", "--horizontal-scroll-bars", 5, 0 },
1668 { "-vb", "--vertical-scroll-bars", 5, 0 },
1669 /* These have the same priority as ordinary file name args,
1670 so they are not reordered with respect to those. */
1671 { "-L", "--directory", 0, 1 },
1672 { "-directory", 0, 0, 1 },
1673 { "-l", "--load", 0, 1 },
1674 { "-load", 0, 0, 1 },
1675 { "-f", "--funcall", 0, 1 },
1676 { "-funcall", 0, 0, 1 },
1677 { "-eval", "--eval", 0, 1 },
1678 { "-execute", "--execute", 0, 1 },
1679 { "-find-file", "--find-file", 0, 1 },
1680 { "-visit", "--visit", 0, 1 },
1681 { "-file", "--file", 0, 1 },
1682 { "-insert", "--insert", 0, 1 },
1683 /* This should be processed after ordinary file name args and the like. */
1684 { "-kill", "--kill", -10, 0 },
1687 /* Reorder the elements of ARGV (assumed to have ARGC elements)
1688 so that the highest priority ones come first.
1689 Do not change the order of elements of equal priority.
1690 If an option takes an argument, keep it and its argument together.
1692 If an option that takes no argument appears more
1693 than once, eliminate all but one copy of it. */
1695 static void
1696 sort_args (argc, argv)
1697 int argc;
1698 char **argv;
1700 char **new = (char **) xmalloc (sizeof (char *) * argc);
1701 /* For each element of argv,
1702 the corresponding element of options is:
1703 0 for an option that takes no arguments,
1704 1 for an option that takes one argument, etc.
1705 -1 for an ordinary non-option argument. */
1706 int *options = (int *) xmalloc (sizeof (int) * argc);
1707 int *priority = (int *) xmalloc (sizeof (int) * argc);
1708 int to = 1;
1709 int incoming_used = 1;
1710 int from;
1711 int i;
1713 /* Categorize all the options,
1714 and figure out which argv elts are option arguments. */
1715 for (from = 1; from < argc; from++)
1717 options[from] = -1;
1718 priority[from] = 0;
1719 if (argv[from][0] == '-')
1721 int match, thislen;
1722 char *equals;
1724 /* If we have found "--", don't consider
1725 any more arguments as options. */
1726 if (argv[from][1] == '-' && argv[from][2] == 0)
1728 /* Leave the "--", and everything following it, at the end. */
1729 for (; from < argc; from++)
1731 priority[from] = -100;
1732 options[from] = -1;
1734 break;
1737 /* Look for a match with a known old-fashioned option. */
1738 for (i = 0; i < sizeof (standard_args) / sizeof (standard_args[0]); i++)
1739 if (!strcmp (argv[from], standard_args[i].name))
1741 options[from] = standard_args[i].nargs;
1742 priority[from] = standard_args[i].priority;
1743 if (from + standard_args[i].nargs >= argc)
1744 fatal ("Option `%s' requires an argument\n", argv[from]);
1745 from += standard_args[i].nargs;
1746 goto done;
1749 /* Look for a match with a known long option.
1750 MATCH is -1 if no match so far, -2 if two or more matches so far,
1751 >= 0 (the table index of the match) if just one match so far. */
1752 if (argv[from][1] == '-')
1754 match = -1;
1755 thislen = strlen (argv[from]);
1756 equals = index (argv[from], '=');
1757 if (equals != 0)
1758 thislen = equals - argv[from];
1760 for (i = 0;
1761 i < sizeof (standard_args) / sizeof (standard_args[0]); i++)
1762 if (standard_args[i].longname
1763 && !strncmp (argv[from], standard_args[i].longname,
1764 thislen))
1766 if (match == -1)
1767 match = i;
1768 else
1769 match = -2;
1772 /* If we found exactly one match, use that. */
1773 if (match >= 0)
1775 options[from] = standard_args[match].nargs;
1776 priority[from] = standard_args[match].priority;
1777 /* If --OPTION=VALUE syntax is used,
1778 this option uses just one argv element. */
1779 if (equals != 0)
1780 options[from] = 0;
1781 if (from + options[from] >= argc)
1782 fatal ("Option `%s' requires an argument\n", argv[from]);
1783 from += options[from];
1786 done: ;
1790 /* Copy the arguments, in order of decreasing priority, to NEW. */
1791 new[0] = argv[0];
1792 while (incoming_used < argc)
1794 int best = -1;
1795 int best_priority = -9999;
1797 /* Find the highest priority remaining option.
1798 If several have equal priority, take the first of them. */
1799 for (from = 1; from < argc; from++)
1801 if (argv[from] != 0 && priority[from] > best_priority)
1803 best_priority = priority[from];
1804 best = from;
1806 /* Skip option arguments--they are tied to the options. */
1807 if (options[from] > 0)
1808 from += options[from];
1811 if (best < 0)
1812 abort ();
1814 /* Copy the highest priority remaining option, with its args, to NEW.
1815 Unless it is a duplicate of the previous one. */
1816 if (! (options[best] == 0
1817 && ! strcmp (new[to - 1], argv[best])))
1819 new[to++] = argv[best];
1820 for (i = 0; i < options[best]; i++)
1821 new[to++] = argv[best + i + 1];
1824 incoming_used += 1 + (options[best] > 0 ? options[best] : 0);
1826 /* Clear out this option in ARGV. */
1827 argv[best] = 0;
1828 for (i = 0; i < options[best]; i++)
1829 argv[best + i + 1] = 0;
1832 /* If duplicate options were deleted, fill up extra space with null ptrs. */
1833 while (to < argc)
1834 new[to++] = 0;
1836 bcopy (new, argv, sizeof (char *) * argc);
1838 free (options);
1839 free (new);
1840 free (priority);
1843 DEFUN ("kill-emacs", Fkill_emacs, Skill_emacs, 0, 1, "P",
1844 doc: /* Exit the Emacs job and kill it.
1845 If ARG is an integer, return ARG as the exit program code.
1846 If ARG is a string, stuff it as keyboard input.
1848 The value of `kill-emacs-hook', if not void,
1849 is a list of functions (of no args),
1850 all of which are called before Emacs is actually killed. */)
1851 (arg)
1852 Lisp_Object arg;
1854 struct gcpro gcpro1;
1856 GCPRO1 (arg);
1858 if (feof (stdin))
1859 arg = Qt;
1861 if (!NILP (Vrun_hooks) && !noninteractive)
1862 call1 (Vrun_hooks, intern ("kill-emacs-hook"));
1864 UNGCPRO;
1866 /* Is it really necessary to do this deassign
1867 when we are going to exit anyway? */
1868 /* #ifdef VMS
1869 stop_vms_input ();
1870 #endif */
1872 shut_down_emacs (0, 0, STRINGP (arg) ? arg : Qnil);
1874 /* If we have an auto-save list file,
1875 kill it because we are exiting Emacs deliberately (not crashing).
1876 Do it after shut_down_emacs, which does an auto-save. */
1877 if (STRINGP (Vauto_save_list_file_name))
1878 unlink (XSTRING (Vauto_save_list_file_name)->data);
1880 exit (INTEGERP (arg) ? XINT (arg)
1881 #ifdef VMS
1883 #else
1885 #endif
1887 /* NOTREACHED */
1891 /* Perform an orderly shutdown of Emacs. Autosave any modified
1892 buffers, kill any child processes, clean up the terminal modes (if
1893 we're in the foreground), and other stuff like that. Don't perform
1894 any redisplay; this may be called when Emacs is shutting down in
1895 the background, or after its X connection has died.
1897 If SIG is a signal number, print a message for it.
1899 This is called by fatal signal handlers, X protocol error handlers,
1900 and Fkill_emacs. */
1902 void
1903 shut_down_emacs (sig, no_x, stuff)
1904 int sig, no_x;
1905 Lisp_Object stuff;
1907 /* Prevent running of hooks from now on. */
1908 Vrun_hooks = Qnil;
1910 /* If we are controlling the terminal, reset terminal modes. */
1911 #ifdef EMACS_HAVE_TTY_PGRP
1913 int pgrp = EMACS_GETPGRP (0);
1915 int tpgrp;
1916 if (EMACS_GET_TTY_PGRP (0, &tpgrp) != -1
1917 && tpgrp == pgrp)
1919 fflush (stdout);
1920 reset_sys_modes ();
1921 if (sig && sig != SIGTERM)
1922 fprintf (stderr, "Fatal error (%d).", sig);
1925 #else
1926 fflush (stdout);
1927 reset_sys_modes ();
1928 #endif
1930 stuff_buffered_input (stuff);
1932 kill_buffer_processes (Qnil);
1933 Fdo_auto_save (Qt, Qnil);
1935 #ifdef CLASH_DETECTION
1936 unlock_all_files ();
1937 #endif
1939 #ifdef VMS
1940 kill_vms_processes ();
1941 #endif
1943 #if 0 /* This triggers a bug in XCloseDisplay and is not needed. */
1944 #ifdef HAVE_X_WINDOWS
1945 /* It's not safe to call intern here. Maybe we are crashing. */
1946 if (!noninteractive && SYMBOLP (Vwindow_system)
1947 && XSYMBOL (Vwindow_system)->name->size == 1
1948 && XSYMBOL (Vwindow_system)->name->data[0] == 'x'
1949 && ! no_x)
1950 Fx_close_current_connection ();
1951 #endif /* HAVE_X_WINDOWS */
1952 #endif
1954 #ifdef SIGIO
1955 /* There is a tendency for a SIGIO signal to arrive within exit,
1956 and cause a SIGHUP because the input descriptor is already closed. */
1957 unrequest_sigio ();
1958 signal (SIGIO, SIG_IGN);
1959 #endif
1961 #ifdef WINDOWSNT
1962 term_ntproc ();
1963 #endif
1965 /* Do this only if terminating normally, we want glyph matrices
1966 etc. in a core dump. */
1967 if (sig == 0 || sig == SIGTERM)
1969 check_glyph_memory ();
1970 check_message_stack ();
1973 #ifdef MSDOS
1974 dos_cleanup ();
1975 #endif
1980 #ifndef CANNOT_DUMP
1982 #ifdef HAVE_SHM
1984 DEFUN ("dump-emacs-data", Fdump_emacs_data, Sdump_emacs_data, 1, 1, 0,
1985 doc: /* Dump current state of Emacs into data file FILENAME.
1986 This function exists on systems that use HAVE_SHM. */)
1987 (filename)
1988 Lisp_Object filename;
1990 extern char my_edata[];
1991 Lisp_Object tem;
1993 check_pure_size ();
1994 CHECK_STRING (filename, 0);
1995 filename = Fexpand_file_name (filename, Qnil);
1997 tem = Vpurify_flag;
1998 Vpurify_flag = Qnil;
2000 fflush (stdout);
2001 /* Tell malloc where start of impure now is. */
2002 /* Also arrange for warnings when nearly out of space. */
2003 #ifndef SYSTEM_MALLOC
2004 memory_warnings (my_edata, malloc_warning);
2005 #endif
2006 map_out_data (XSTRING (filename)->data);
2008 Vpurify_flag = tem;
2010 return Qnil;
2013 #else /* not HAVE_SHM */
2015 DEFUN ("dump-emacs", Fdump_emacs, Sdump_emacs, 2, 2, 0,
2016 doc: /* Dump current state of Emacs into executable file FILENAME.
2017 Take symbols from SYMFILE (presumably the file you executed to run Emacs).
2018 This is used in the file `loadup.el' when building Emacs.
2020 You must run Emacs in batch mode in order to dump it. */)
2021 (filename, symfile)
2022 Lisp_Object filename, symfile;
2024 extern char my_edata[];
2025 Lisp_Object tem;
2026 Lisp_Object symbol;
2027 int count = BINDING_STACK_SIZE ();
2029 check_pure_size ();
2031 if (! noninteractive)
2032 error ("Dumping Emacs works only in batch mode");
2034 /* Bind `command-line-processed' to nil before dumping,
2035 so that the dumped Emacs will process its command line
2036 and set up to work with X windows if appropriate. */
2037 symbol = intern ("command-line-process");
2038 specbind (symbol, Qnil);
2040 CHECK_STRING (filename, 0);
2041 filename = Fexpand_file_name (filename, Qnil);
2042 if (!NILP (symfile))
2044 CHECK_STRING (symfile, 0);
2045 if (XSTRING (symfile)->size)
2046 symfile = Fexpand_file_name (symfile, Qnil);
2049 tem = Vpurify_flag;
2050 Vpurify_flag = Qnil;
2052 #ifdef HAVE_TZSET
2053 set_time_zone_rule (dump_tz);
2054 #ifndef LOCALTIME_CACHE
2055 /* Force a tz reload, since set_time_zone_rule doesn't. */
2056 tzset ();
2057 #endif
2058 #endif
2060 fflush (stdout);
2061 #ifdef VMS
2062 mapout_data (XSTRING (filename)->data);
2063 #else
2064 /* Tell malloc where start of impure now is. */
2065 /* Also arrange for warnings when nearly out of space. */
2066 #ifndef SYSTEM_MALLOC
2067 #ifndef WINDOWSNT
2068 /* On Windows, this was done before dumping, and that once suffices.
2069 Meanwhile, my_edata is not valid on Windows. */
2070 memory_warnings (my_edata, malloc_warning);
2071 #endif /* not WINDOWSNT */
2072 #endif
2073 #ifdef DOUG_LEA_MALLOC
2074 malloc_state_ptr = malloc_get_state ();
2075 #endif
2077 #ifdef USE_MMAP_FOR_BUFFERS
2078 mmap_set_vars (0);
2079 #endif
2080 unexec (XSTRING (filename)->data,
2081 !NILP (symfile) ? XSTRING (symfile)->data : 0, my_edata, 0, 0);
2082 #ifdef USE_MMAP_FOR_BUFFERS
2083 mmap_set_vars (1);
2084 #endif
2085 #ifdef DOUG_LEA_MALLOC
2086 free (malloc_state_ptr);
2087 #endif
2088 #endif /* not VMS */
2090 Vpurify_flag = tem;
2092 return unbind_to (count, Qnil);
2095 #endif /* not HAVE_SHM */
2097 #endif /* not CANNOT_DUMP */
2099 #if HAVE_SETLOCALE
2100 /* Recover from setlocale (LC_ALL, ""). */
2101 void
2102 fixup_locale ()
2104 /* The Emacs Lisp reader needs LC_NUMERIC to be "C",
2105 so that numbers are read and printed properly for Emacs Lisp. */
2106 setlocale (LC_NUMERIC, "C");
2109 /* Set system locale CATEGORY, with previous locale *PLOCALE, to
2110 DESIRED_LOCALE. */
2111 static void
2112 synchronize_locale (category, plocale, desired_locale)
2113 int category;
2114 Lisp_Object *plocale;
2115 Lisp_Object desired_locale;
2117 if (! EQ (*plocale, desired_locale))
2119 *plocale = desired_locale;
2120 setlocale (category, (STRINGP (desired_locale)
2121 ? (char *)(XSTRING (desired_locale)->data)
2122 : ""));
2126 /* Set system time locale to match Vsystem_time_locale, if possible. */
2127 void
2128 synchronize_system_time_locale ()
2130 synchronize_locale (LC_TIME, &Vprevious_system_time_locale,
2131 Vsystem_time_locale);
2134 /* Set system messages locale to match Vsystem_messages_locale, if
2135 possible. */
2136 void
2137 synchronize_system_messages_locale ()
2139 #ifdef LC_MESSAGES
2140 synchronize_locale (LC_MESSAGES, &Vprevious_system_messages_locale,
2141 Vsystem_messages_locale);
2142 #endif
2144 #endif /* HAVE_SETLOCALE */
2146 #ifndef SEPCHAR
2147 #define SEPCHAR ':'
2148 #endif
2150 Lisp_Object
2151 decode_env_path (evarname, defalt)
2152 char *evarname, *defalt;
2154 register char *path, *p;
2155 Lisp_Object lpath, element, tem;
2157 /* It's okay to use getenv here, because this function is only used
2158 to initialize variables when Emacs starts up, and isn't called
2159 after that. */
2160 if (evarname != 0)
2161 path = (char *) getenv (evarname);
2162 else
2163 path = 0;
2164 if (!path)
2165 path = defalt;
2166 #ifdef DOS_NT
2167 /* Ensure values from the environment use the proper directory separator. */
2168 if (path)
2170 p = alloca (strlen (path) + 1);
2171 strcpy (p, path);
2172 path = p;
2174 if ('/' == DIRECTORY_SEP)
2175 dostounix_filename (path);
2176 else
2177 unixtodos_filename (path);
2179 #endif
2180 lpath = Qnil;
2181 while (1)
2183 p = index (path, SEPCHAR);
2184 if (!p) p = path + strlen (path);
2185 element = (p - path ? make_string (path, p - path)
2186 : build_string ("."));
2188 /* Add /: to the front of the name
2189 if it would otherwise be treated as magic. */
2190 tem = Ffind_file_name_handler (element, Qt);
2191 if (! NILP (tem))
2192 element = concat2 (build_string ("/:"), element);
2194 lpath = Fcons (element, lpath);
2195 if (*p)
2196 path = p + 1;
2197 else
2198 break;
2200 return Fnreverse (lpath);
2203 void
2204 syms_of_emacs ()
2206 Qfile_name_handler_alist = intern ("file-name-handler-alist");
2207 staticpro (&Qfile_name_handler_alist);
2209 #ifndef CANNOT_DUMP
2210 #ifdef HAVE_SHM
2211 defsubr (&Sdump_emacs_data);
2212 #else
2213 defsubr (&Sdump_emacs);
2214 #endif
2215 #endif
2217 defsubr (&Skill_emacs);
2219 defsubr (&Sinvocation_name);
2220 defsubr (&Sinvocation_directory);
2222 DEFVAR_LISP ("command-line-args", &Vcommand_line_args,
2223 doc: /* Args passed by shell to Emacs, as a list of strings. */);
2225 DEFVAR_LISP ("system-type", &Vsystem_type,
2226 doc: /* Value is symbol indicating type of operating system you are using. */);
2227 Vsystem_type = intern (SYSTEM_TYPE);
2229 DEFVAR_LISP ("system-configuration", &Vsystem_configuration,
2230 doc: /* Value is string indicating configuration Emacs was built for.
2231 On MS-Windows, the value reflects the OS flavor and version on which
2232 Emacs is running. */);
2233 Vsystem_configuration = build_string (EMACS_CONFIGURATION);
2235 DEFVAR_LISP ("system-configuration-options", &Vsystem_configuration_options,
2236 doc: /* String containing the configuration options Emacs was built with. */);
2237 Vsystem_configuration_options = build_string (EMACS_CONFIG_OPTIONS);
2239 DEFVAR_BOOL ("noninteractive", &noninteractive1,
2240 doc: /* Non-nil means Emacs is running without interactive terminal. */);
2242 DEFVAR_LISP ("kill-emacs-hook", &Vkill_emacs_hook,
2243 doc: /* Hook to be run whenever kill-emacs is called.
2244 Since kill-emacs may be invoked when the terminal is disconnected (or
2245 in other similar situations), functions placed on this hook should not
2246 expect to be able to interact with the user. To ask for confirmation,
2247 see `kill-emacs-query-functions' instead. */);
2248 Vkill_emacs_hook = Qnil;
2250 empty_string = build_string ("");
2251 staticpro (&empty_string);
2253 #ifdef SIGUSR1
2254 DEFVAR_LISP ("signal-USR1-hook", &Vsignal_USR1_hook,
2255 doc: /* Hook to be run whenever emacs receives a USR1 signal. */);
2256 Vsignal_USR1_hook = Qnil;
2257 #ifdef SIGUSR2
2258 DEFVAR_LISP ("signal-USR2-hook", &Vsignal_USR2_hook,
2259 doc: /* Hook to be run whenever emacs receives a USR2 signal. */);
2260 Vsignal_USR2_hook = Qnil;
2261 #endif
2262 #endif
2265 DEFVAR_INT ("emacs-priority", &emacs_priority,
2266 doc: /* Priority for Emacs to run at.
2267 This value is effective only if set before Emacs is dumped,
2268 and only if the Emacs executable is installed with setuid to permit
2269 it to change priority. (Emacs sets its uid back to the real uid.)
2270 Currently, you need to define SET_EMACS_PRIORITY in `config.h'
2271 before you compile Emacs, to enable the code for this feature. */);
2272 emacs_priority = 0;
2274 DEFVAR_LISP ("path-separator", &Vpath_separator,
2275 doc: /* The directory separator in search paths, as a string. */);
2277 char c = SEPCHAR;
2278 Vpath_separator = make_string (&c, 1);
2281 DEFVAR_LISP ("invocation-name", &Vinvocation_name,
2282 doc: /* The program name that was used to run Emacs.
2283 Any directory names are omitted. */);
2285 DEFVAR_LISP ("invocation-directory", &Vinvocation_directory,
2286 doc: /* The directory in which the Emacs executable was found, to run it.
2287 The value is nil if that directory's name is not known. */);
2289 DEFVAR_LISP ("installation-directory", &Vinstallation_directory,
2290 doc: /* A directory within which to look for the `lib-src' and `etc' directories.
2291 This is non-nil when we can't find those directories in their standard
2292 installed locations, but we can find them
2293 near where the Emacs executable was found. */);
2294 Vinstallation_directory = Qnil;
2296 DEFVAR_LISP ("system-messages-locale", &Vsystem_messages_locale,
2297 doc: /* System locale for messages. */);
2298 Vsystem_messages_locale = Qnil;
2300 DEFVAR_LISP ("previous-system-messages-locale",
2301 &Vprevious_system_messages_locale,
2302 doc: /* Most recently used system locale for messages. */);
2303 Vprevious_system_messages_locale = Qnil;
2305 DEFVAR_LISP ("system-time-locale", &Vsystem_time_locale,
2306 doc: /* System locale for time. */);
2307 Vsystem_time_locale = Qnil;
2309 DEFVAR_LISP ("previous-system-time-locale", &Vprevious_system_time_locale,
2310 doc: /* Most recently used system locale for time. */);
2311 Vprevious_system_time_locale = Qnil;