*** empty log message ***
[emacs.git] / src / emacs.c
blob2c6fd44e97cd71a95a0d455b6706f50b31943d86
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"
55 #ifdef HAVE_SETLOCALE
56 #include <locale.h>
57 #endif
59 #ifdef HAVE_SETRLIMIT
60 #include <sys/time.h>
61 #include <sys/resource.h>
62 #endif
64 #ifndef O_RDWR
65 #define O_RDWR 2
66 #endif
68 #ifdef HAVE_SETPGID
69 #if !defined (USG) || defined (BSD_PGRPS)
70 #undef setpgrp
71 #define setpgrp setpgid
72 #endif
73 #endif
75 extern void malloc_warning P_ ((char *));
76 extern void set_time_zone_rule P_ ((char *));
77 #ifdef HAVE_INDEX
78 extern char *index P_ ((const char *, int));
79 #endif
81 /* Make these values available in GDB, which doesn't see macros. */
83 EMACS_INT gdb_valbits = VALBITS;
84 EMACS_INT gdb_gctypebits = GCTYPEBITS;
85 EMACS_INT gdb_emacs_intbits = sizeof (EMACS_INT) * BITS_PER_CHAR;
86 #ifdef DATA_SEG_BITS
87 EMACS_INT gdb_data_seg_bits = DATA_SEG_BITS;
88 #else
89 EMACS_INT gdb_data_seg_bits = 0;
90 #endif
91 EMACS_INT PVEC_FLAG = PSEUDOVECTOR_FLAG;
93 /* Command line args from shell, as list of strings */
94 Lisp_Object Vcommand_line_args;
96 /* The name under which Emacs was invoked, with any leading directory
97 names discarded. */
98 Lisp_Object Vinvocation_name;
100 /* The directory name from which Emacs was invoked. */
101 Lisp_Object Vinvocation_directory;
103 /* The directory name in which to find subdirs such as lisp and etc.
104 nil means get them only from PATH_LOADSEARCH. */
105 Lisp_Object Vinstallation_directory;
107 /* Hook run by `kill-emacs' before it does really anything. */
108 Lisp_Object Vkill_emacs_hook;
110 #ifdef SIGUSR1
111 /* Hooks for signal USR1 and USR2 handing */
112 Lisp_Object Vsignal_USR1_hook;
113 #ifdef SIGUSR2
114 Lisp_Object Vsignal_USR2_hook;
115 #endif
116 #endif
118 /* Search path separator. */
119 Lisp_Object Vpath_separator;
121 /* Set nonzero after Emacs has started up the first time.
122 Prevents reinitialization of the Lisp world and keymaps
123 on subsequent starts. */
124 int initialized;
126 #ifdef DOUG_LEA_MALLOC
127 /* Preserves a pointer to the memory allocated that copies that
128 static data inside glibc's malloc. */
129 void *malloc_state_ptr;
130 /* From glibc, a routine that returns a copy of the malloc internal state. */
131 extern void *malloc_get_state ();
132 /* From glibc, a routine that overwrites the malloc internal state. */
133 extern void malloc_set_state ();
134 /* Non-zero if the MALLOC_CHECK_ enviroment variable was set while
135 dumping. Used to work around a bug in glibc's malloc. */
136 int malloc_using_checking;
137 #endif
139 /* Variable whose value is symbol giving operating system type. */
140 Lisp_Object Vsystem_type;
142 /* Variable whose value is string giving configuration built for. */
143 Lisp_Object Vsystem_configuration;
145 /* Variable whose value is string giving configuration options,
146 for use when reporting bugs. */
147 Lisp_Object Vsystem_configuration_options;
149 Lisp_Object Qfile_name_handler_alist;
151 /* Current and previous system locales for messages and time. */
152 Lisp_Object Vsystem_messages_locale;
153 Lisp_Object Vprevious_system_messages_locale;
154 Lisp_Object Vsystem_time_locale;
155 Lisp_Object Vprevious_system_time_locale;
157 /* If non-zero, emacs should not attempt to use an window-specific code,
158 but instead should use the virtual terminal under which it was started */
159 int inhibit_window_system;
161 /* If nonzero, set Emacs to run at this priority. This is also used
162 in child_setup and sys_suspend to make sure subshells run at normal
163 priority; Those functions have their own extern declaration. */
164 int emacs_priority;
166 /* If non-zero a filter or a sentinel is running. Tested to save the match
167 data on the first attempt to change it inside asynchronous code. */
168 int running_asynch_code;
170 #ifdef BSD_PGRPS
171 /* See sysdep.c. */
172 extern int inherited_pgroup;
173 #endif
175 #ifdef HAVE_X_WINDOWS
176 /* If non-zero, -d was specified, meaning we're using some window system. */
177 int display_arg;
178 #endif
180 /* An address near the bottom of the stack.
181 Tells GC how to save a copy of the stack. */
182 char *stack_bottom;
184 #ifdef HAVE_WINDOW_SYSTEM
185 extern Lisp_Object Vwindow_system;
186 #endif /* HAVE_WINDOW_SYSTEM */
188 extern Lisp_Object Vauto_save_list_file_name;
190 #ifdef USG_SHARED_LIBRARIES
191 /* If nonzero, this is the place to put the end of the writable segment
192 at startup. */
194 unsigned int bss_end = 0;
195 #endif
197 /* Nonzero means running Emacs without interactive terminal. */
199 int noninteractive;
201 /* Value of Lisp variable `noninteractive'.
202 Normally same as C variable `noninteractive'
203 but nothing terrible happens if user sets this one. */
205 int noninteractive1;
207 /* Save argv and argc. */
208 char **initial_argv;
209 int initial_argc;
211 static void sort_args ();
212 void syms_of_emacs ();
214 #define USAGE1 "\
215 Usage: %s [OPTION-OR-FILENAME]...\n\
217 Run Emacs, the extensible, customizable, self-documenting real-time\n\
218 display editor. The recommended way to start Emacs for normal editing\n\
219 is with no options at all.\n\
221 Run M-x info RET m emacs RET m command arguments RET inside Emacs to\n\
222 read the main documentation for these command-line arguments.\n\
224 Initialization options:\n\
226 --batch do not do interactive display; implies -q\n\
227 --debug-init enable Emacs Lisp debugger during init file\n\
228 --help display this help message and exit\n\
229 --multibyte, --no-unibyte run Emacs in multibyte mode\n\
230 --no-init-file, -q load neither ~/.emacs nor default.el\n\
231 --no-shared-memory, -nl do not use shared memory\n\
232 --no-site-file do not load site-start.el\n\
233 --no-windows, -nw don't communicate with X, ignoring $DISPLAY\n\
234 --terminal, -t DEVICE use DEVICE for terminal I/O\n\
235 --unibyte, --no-multibyte run Emacs in unibyte mode\n\
236 --user, -u USER load ~USER/.emacs instead of your own\n\
237 --version display version information and exit\n\
239 Action options:\n\
241 FILE visit FILE using find-file\n\
242 +LINE FILE visit FILE using find-file, then go to line LINE\n\
243 +LINE:COLUMN FILE visit FILE using find-file, then go to line LINE,\n\
244 column COLUMN\n\
245 --directory, -L DIR add DIR to variable load-path\n\
246 --eval EXPR evaluate Emacs Lisp expression EXPR\n\
247 --execute EXPR evaluate Emacs Lisp expression EXPR\n\
248 --find-file FILE visit FILE\n\
249 --funcall, -f FUNC call Emacs function FUNC with no arguments\n\
250 --insert FILE insert contents of FILE into current buffer\n\
251 --kill exit without asking for confirmation\n\
252 --load, -l FILE load FILE of Emacs Lisp code using the load function\n\
253 --visit FILE visit FILE\n\
256 #define USAGE2 "\
257 Display options:\n\
259 --background-color, -bg COLOR window background color\n\
260 --border-color, -bd COLOR main border color\n\
261 --border-width, -bw WIDTH width of main border\n\
262 --cursor-color, -cr COLOR color of the Emacs cursor indicating point\n\
263 --display, -d DISPLAY use X server DISPLAY\n\
264 --font, -fn FONT default font; must be fixed-width\n\
265 --foreground-color, -fg COLOR window foreground color\n\
266 --geometry, -g GEOMETRY window geometry\n\
267 --iconic start Emacs in iconified state\n\
268 --icon-type, -i use picture of gnu for Emacs icon\n\
269 --internal-border, -ib WIDTH width between text and main border\n\
270 --line-spacing, -lsp PIXELS additional space to put between lines\n\
271 --mouse-color, -ms COLOR mouse cursor color in Emacs window\n\
272 --name NAME title of main Emacs window\n\
273 --reverse-video, -r, -rv switch foreground and background\n\
274 --title, -T, -wn TITLE title for Emacs windows\n\
275 --vertical-scroll-bars, -vb enable vertical scroll bars\n\
276 --xrm XRESOURCES set additional X resources\n\
278 You can generally also specify long option names with a single -; for\n\
279 example, -batch as well as --batch. You can use any unambiguous\n\
280 abbreviation for a --option.\n\
282 Various environment variables and window system resources also affect\n\
283 Emacs' operation. See the main documentation.\n\
285 Report bugs to bug-gnu-emacs@gnu.org. First, please see the Bugs\n\
286 section of the Emacs manual or the file BUGS.\n"
289 /* Signal code for the fatal signal that was received */
290 int fatal_error_code;
292 /* Nonzero if handling a fatal error already */
293 int fatal_error_in_progress;
295 #ifdef SIGUSR1
296 SIGTYPE
297 handle_USR1_signal (sig)
298 int sig;
300 struct input_event buf;
302 bzero (&buf, sizeof buf);
303 buf.kind = USER_SIGNAL_EVENT;
304 buf.frame_or_window = selected_frame;
306 kbd_buffer_store_event (&buf);
308 #endif /* SIGUSR1 */
310 #ifdef SIGUSR2
311 SIGTYPE
312 handle_USR2_signal (sig)
313 int sig;
315 struct input_event buf;
317 bzero (&buf, sizeof buf);
318 buf.kind = USER_SIGNAL_EVENT;
319 buf.code = 1;
320 buf.frame_or_window = selected_frame;
322 kbd_buffer_store_event (&buf);
324 #endif /* SIGUSR2 */
326 /* Handle bus errors, invalid instruction, etc. */
327 SIGTYPE
328 fatal_error_signal (sig)
329 int sig;
331 fatal_error_code = sig;
332 signal (sig, SIG_DFL);
334 TOTALLY_UNBLOCK_INPUT;
336 /* If fatal error occurs in code below, avoid infinite recursion. */
337 if (! fatal_error_in_progress)
339 fatal_error_in_progress = 1;
341 shut_down_emacs (sig, 0, Qnil);
344 #ifdef VMS
345 LIB$STOP (SS$_ABORT);
346 #else
347 /* Signal the same code; this time it will really be fatal.
348 Remember that since we're in a signal handler, the signal we're
349 going to send is probably blocked, so we have to unblock it if we
350 want to really receive it. */
351 #ifndef MSDOS
352 sigunblock (sigmask (fatal_error_code));
353 #endif
354 kill (getpid (), fatal_error_code);
355 #endif /* not VMS */
358 #ifdef SIGDANGER
360 /* Handler for SIGDANGER. */
361 SIGTYPE
362 memory_warning_signal (sig)
363 int sig;
365 signal (sig, memory_warning_signal);
367 malloc_warning ("Operating system warns that virtual memory is running low.\n");
369 /* It might be unsafe to call do_auto_save now. */
370 force_auto_save_soon ();
372 #endif
374 /* We define abort, rather than using it from the library,
375 so that GDB can return from a breakpoint here.
376 MSDOS has its own definition on msdos.c */
378 #if ! defined (DOS_NT) && ! defined (NO_ABORT)
380 #ifndef ABORT_RETURN_TYPE
381 #define ABORT_RETURN_TYPE void
382 #endif
384 ABORT_RETURN_TYPE
385 abort ()
387 kill (getpid (), SIGABRT);
388 /* This shouldn't be executed, but it prevents a warning. */
389 exit (1);
391 #endif
394 /* Code for dealing with Lisp access to the Unix command line */
396 static void
397 init_cmdargs (argc, argv, skip_args)
398 int argc;
399 char **argv;
400 int skip_args;
402 register int i;
403 Lisp_Object name, dir, tem;
404 int count = specpdl_ptr - specpdl;
405 Lisp_Object raw_name;
407 initial_argv = argv;
408 initial_argc = argc;
410 raw_name = build_string (argv[0]);
412 /* Add /: to the front of the name
413 if it would otherwise be treated as magic. */
414 tem = Ffind_file_name_handler (raw_name, Qt);
415 if (! NILP (tem))
416 raw_name = concat2 (build_string ("/:"), raw_name);
418 Vinvocation_name = Ffile_name_nondirectory (raw_name);
419 Vinvocation_directory = Ffile_name_directory (raw_name);
421 /* If we got no directory in argv[0], search PATH to find where
422 Emacs actually came from. */
423 if (NILP (Vinvocation_directory))
425 Lisp_Object found;
426 int yes = openp (Vexec_path, Vinvocation_name,
427 EXEC_SUFFIXES, &found, 1);
428 if (yes == 1)
430 /* Add /: to the front of the name
431 if it would otherwise be treated as magic. */
432 tem = Ffind_file_name_handler (found, Qt);
433 if (! NILP (tem))
434 found = concat2 (build_string ("/:"), found);
435 Vinvocation_directory = Ffile_name_directory (found);
439 if (!NILP (Vinvocation_directory)
440 && NILP (Ffile_name_absolute_p (Vinvocation_directory)))
441 /* Emacs was started with relative path, like ./emacs.
442 Make it absolute. */
443 Vinvocation_directory = Fexpand_file_name (Vinvocation_directory, Qnil);
445 Vinstallation_directory = Qnil;
447 if (!NILP (Vinvocation_directory))
449 dir = Vinvocation_directory;
450 name = Fexpand_file_name (Vinvocation_name, dir);
451 while (1)
453 Lisp_Object tem, lib_src_exists;
454 Lisp_Object etc_exists, info_exists;
456 /* See if dir contains subdirs for use by Emacs.
457 Check for the ones that would exist in a build directory,
458 not including lisp and info. */
459 tem = Fexpand_file_name (build_string ("lib-src"), dir);
460 lib_src_exists = Ffile_exists_p (tem);
462 #ifdef MSDOS
463 /* MSDOS installations frequently remove lib-src, but we still
464 must set installation-directory, or else info won't find
465 its files (it uses the value of installation-directory). */
466 tem = Fexpand_file_name (build_string ("info"), dir);
467 info_exists = Ffile_exists_p (tem);
468 #else
469 info_exists = Qnil;
470 #endif
472 if (!NILP (lib_src_exists) || !NILP (info_exists))
474 tem = Fexpand_file_name (build_string ("etc"), dir);
475 etc_exists = Ffile_exists_p (tem);
476 if (!NILP (etc_exists))
478 Vinstallation_directory
479 = Ffile_name_as_directory (dir);
480 break;
484 /* See if dir's parent contains those subdirs. */
485 tem = Fexpand_file_name (build_string ("../lib-src"), dir);
486 lib_src_exists = Ffile_exists_p (tem);
489 #ifdef MSDOS
490 /* See the MSDOS commentary above. */
491 tem = Fexpand_file_name (build_string ("../info"), dir);
492 info_exists = Ffile_exists_p (tem);
493 #else
494 info_exists = Qnil;
495 #endif
497 if (!NILP (lib_src_exists) || !NILP (info_exists))
499 tem = Fexpand_file_name (build_string ("../etc"), dir);
500 etc_exists = Ffile_exists_p (tem);
501 if (!NILP (etc_exists))
503 tem = Fexpand_file_name (build_string (".."), dir);
504 Vinstallation_directory
505 = Ffile_name_as_directory (tem);
506 break;
510 /* If the Emacs executable is actually a link,
511 next try the dir that the link points into. */
512 tem = Ffile_symlink_p (name);
513 if (!NILP (tem))
515 name = Fexpand_file_name (tem, dir);
516 dir = Ffile_name_directory (name);
518 else
519 break;
523 Vcommand_line_args = Qnil;
525 for (i = argc - 1; i >= 0; i--)
527 if (i == 0 || i > skip_args)
528 Vcommand_line_args
529 = Fcons (build_string (argv[i]), Vcommand_line_args);
532 unbind_to (count, Qnil);
535 DEFUN ("invocation-name", Finvocation_name, Sinvocation_name, 0, 0, 0,
536 "Return the program name that was used to run Emacs.\n\
537 Any directory names are omitted.")
540 return Fcopy_sequence (Vinvocation_name);
543 DEFUN ("invocation-directory", Finvocation_directory, Sinvocation_directory,
544 0, 0, 0,
545 "Return the directory name in which the Emacs executable was located.")
548 return Fcopy_sequence (Vinvocation_directory);
552 #ifdef VMS
553 #ifdef LINK_CRTL_SHARE
554 #ifdef SHARABLE_LIB_BUG
555 extern noshare char **environ;
556 #endif /* SHARABLE_LIB_BUG */
557 #endif /* LINK_CRTL_SHARE */
558 #endif /* VMS */
560 #ifdef HAVE_TZSET
561 /* A valid but unlikely value for the TZ environment value.
562 It is OK (though a bit slower) if the user actually chooses this value. */
563 static char dump_tz[] = "UtC0";
564 #endif
566 #ifndef ORDINARY_LINK
567 /* We don't include crtbegin.o and crtend.o in the link,
568 so these functions and variables might be missed.
569 Provide dummy definitions to avoid error.
570 (We don't have any real constructors or destructors.) */
571 #ifdef __GNUC__
572 #ifndef GCC_CTORS_IN_LIBC
573 void __do_global_ctors ()
575 void __do_global_ctors_aux ()
577 void __do_global_dtors ()
579 /* Linux has a bug in its library; avoid an error. */
580 #ifndef LINUX
581 char * __CTOR_LIST__[2] = { (char *) (-1), 0 };
582 #endif
583 char * __DTOR_LIST__[2] = { (char *) (-1), 0 };
584 #endif /* GCC_CTORS_IN_LIBC */
585 void __main ()
587 #endif /* __GNUC__ */
588 #endif /* ORDINARY_LINK */
590 /* Test whether the next argument in ARGV matches SSTR or a prefix of
591 LSTR (at least MINLEN characters). If so, then if VALPTR is non-null
592 (the argument is supposed to have a value) store in *VALPTR either
593 the next argument or the portion of this one after the equal sign.
594 ARGV is read starting at position *SKIPPTR; this index is advanced
595 by the number of arguments used.
597 Too bad we can't just use getopt for all of this, but we don't have
598 enough information to do it right. */
600 static int
601 argmatch (argv, argc, sstr, lstr, minlen, valptr, skipptr)
602 char **argv;
603 int argc;
604 char *sstr;
605 char *lstr;
606 int minlen;
607 char **valptr;
608 int *skipptr;
610 char *p = NULL;
611 int arglen;
612 char *arg;
614 /* Don't access argv[argc]; give up in advance. */
615 if (argc <= *skipptr + 1)
616 return 0;
618 arg = argv[*skipptr+1];
619 if (arg == NULL)
620 return 0;
621 if (strcmp (arg, sstr) == 0)
623 if (valptr != NULL)
625 *valptr = argv[*skipptr+2];
626 *skipptr += 2;
628 else
629 *skipptr += 1;
630 return 1;
632 arglen = (valptr != NULL && (p = index (arg, '=')) != NULL
633 ? p - arg : strlen (arg));
634 if (lstr == 0 || arglen < minlen || strncmp (arg, lstr, arglen) != 0)
635 return 0;
636 else if (valptr == NULL)
638 *skipptr += 1;
639 return 1;
641 else if (p != NULL)
643 *valptr = p+1;
644 *skipptr += 1;
645 return 1;
647 else if (argv[*skipptr+2] != NULL)
649 *valptr = argv[*skipptr+2];
650 *skipptr += 2;
651 return 1;
653 else
655 return 0;
659 #ifdef DOUG_LEA_MALLOC
661 /* malloc can be invoked even before main (e.g. by the dynamic
662 linker), so the dumped malloc state must be restored as early as
663 possible using this special hook. */
665 static void
666 malloc_initialize_hook ()
668 #ifndef USE_CRT_DLL
669 extern char **environ;
670 #endif
672 if (initialized)
674 if (!malloc_using_checking)
675 /* Work around a bug in glibc's malloc. MALLOC_CHECK_ must be
676 ignored if the heap to be restored was constructed without
677 malloc checking. Can't use unsetenv, since that calls malloc. */
679 char **p;
681 for (p = environ; p && *p; p++)
682 if (strncmp (*p, "MALLOC_CHECK_=", 14) == 0)
685 *p = p[1];
686 while (*++p);
687 break;
691 malloc_set_state (malloc_state_ptr);
692 free (malloc_state_ptr);
694 else
695 malloc_using_checking = getenv ("MALLOC_CHECK_") != NULL;
698 void (*__malloc_initialize_hook) () = malloc_initialize_hook;
700 #endif /* DOUG_LEA_MALLOC */
702 /* ARGSUSED */
704 main (argc, argv, envp)
705 int argc;
706 char **argv;
707 char **envp;
709 #if GC_MARK_STACK
710 Lisp_Object dummy;
711 #endif
712 char stack_bottom_variable;
713 int do_initial_setlocale;
714 int skip_args = 0;
715 #ifndef USE_CRT_DLL
716 extern int errno;
717 #endif
718 #ifdef HAVE_SETRLIMIT
719 struct rlimit rlim;
720 #endif
721 int no_loadup = 0;
723 #if GC_MARK_STACK
724 extern Lisp_Object *stack_base;
725 stack_base = &dummy;
726 #endif
728 #ifdef LINUX_SBRK_BUG
729 __sbrk (1);
730 #endif
732 #ifdef RUN_TIME_REMAP
733 if (initialized)
734 run_time_remap (argv[0]);
735 #endif
737 sort_args (argc, argv);
738 argc = 0;
739 while (argv[argc]) argc++;
741 if (argmatch (argv, argc, "-version", "--version", 3, NULL, &skip_args)
742 /* We don't know the version number unless this is a dumped Emacs.
743 So ignore --version otherwise. */
744 && initialized)
746 Lisp_Object tem;
747 tem = Fsymbol_value (intern ("emacs-version"));
748 if (!STRINGP (tem))
750 fprintf (stderr, "Invalid value of `emacs-version'\n");
751 exit (1);
753 else
755 printf ("GNU Emacs %s\n", XSTRING (tem)->data);
756 printf ("Copyright (C) 2001 Free Software Foundation, Inc.\n");
757 printf ("GNU Emacs comes with ABSOLUTELY NO WARRANTY.\n");
758 printf ("You may redistribute copies of Emacs\n");
759 printf ("under the terms of the GNU General Public License.\n");
760 printf ("For more information about these matters, ");
761 printf ("see the file named COPYING.\n");
762 exit (0);
766 /* Map in shared memory, if we are using that. */
767 #ifdef HAVE_SHM
768 if (argmatch (argv, argc, "-nl", "--no-shared-memory", 6, NULL, &skip_args))
770 map_in_data (0);
771 /* The shared memory was just restored, which clobbered this. */
772 skip_args = 1;
774 else
776 map_in_data (1);
777 /* The shared memory was just restored, which clobbered this. */
778 skip_args = 0;
780 #endif
782 #ifdef NeXT
784 extern int malloc_cookie;
785 /* This helps out unexnext.c. */
786 if (initialized)
787 if (malloc_jumpstart (malloc_cookie) != 0)
788 printf ("malloc jumpstart failed!\n");
790 #endif /* NeXT */
792 #ifdef VMS
793 /* If -map specified, map the data file in */
795 char *file;
796 if (argmatch (argv, argc, "-map", "--map-data", 3, &file, &skip_args))
797 mapin_data (file);
800 #ifdef LINK_CRTL_SHARE
801 #ifdef SHARABLE_LIB_BUG
802 /* Bletcherous shared libraries! */
803 if (!stdin)
804 stdin = fdopen (0, "r");
805 if (!stdout)
806 stdout = fdopen (1, "w");
807 if (!stderr)
808 stderr = fdopen (2, "w");
809 if (!environ)
810 environ = envp;
811 #endif /* SHARABLE_LIB_BUG */
812 #endif /* LINK_CRTL_SHARE */
813 #endif /* VMS */
815 #if defined (HAVE_SETRLIMIT) && defined (RLIMIT_STACK)
816 /* Extend the stack space available.
817 Don't do that if dumping, since some systems (e.g. DJGPP)
818 might define a smaller stack limit at that time. */
819 if (1
820 #ifndef CANNOT_DUMP
821 && (!noninteractive || initialized)
822 #endif
823 && !getrlimit (RLIMIT_STACK, &rlim))
825 long newlim;
826 extern int re_max_failures;
827 /* Approximate the amount regex.c needs per unit of re_max_failures. */
828 int ratio = 20 * sizeof (char *);
829 /* Then add 33% to cover the size of the smaller stacks that regex.c
830 successively allocates and discards, on its way to the maximum. */
831 ratio += ratio / 3;
832 /* Add in some extra to cover
833 what we're likely to use for other reasons. */
834 newlim = re_max_failures * ratio + 200000;
835 #ifdef __NetBSD__
836 /* NetBSD (at least NetBSD 1.2G and former) has a bug in its
837 stack allocation routine for new process that the allocation
838 fails if stack limit is not on page boundary. So, round up the
839 new limit to page boundary. */
840 newlim = (newlim + getpagesize () - 1) / getpagesize () * getpagesize();
841 #endif
842 if (newlim > rlim.rlim_max)
844 newlim = rlim.rlim_max;
845 /* Don't let regex.c overflow the stack we have. */
846 re_max_failures = (newlim - 200000) / ratio;
848 if (rlim.rlim_cur < newlim)
849 rlim.rlim_cur = newlim;
851 setrlimit (RLIMIT_STACK, &rlim);
853 #endif /* HAVE_SETRLIMIT and RLIMIT_STACK */
855 /* Record (approximately) where the stack begins. */
856 stack_bottom = &stack_bottom_variable;
858 #ifdef USG_SHARED_LIBRARIES
859 if (bss_end)
860 brk ((void *)bss_end);
861 #endif
863 clearerr (stdin);
865 #ifndef SYSTEM_MALLOC
866 /* Arrange to get warning messages as memory fills up. */
867 memory_warnings (0, malloc_warning);
869 /* Call malloc at least once, to run the initial __malloc_hook.
870 Also call realloc and free for consistency. */
871 free (realloc (malloc (4), 4));
873 /* Arrange to disable interrupt input inside malloc etc. */
874 uninterrupt_malloc ();
875 #endif /* not SYSTEM_MALLOC */
877 #ifdef MSDOS
878 /* We do all file input/output as binary files. When we need to translate
879 newlines, we do that manually. */
880 _fmode = O_BINARY;
882 #if __DJGPP__ >= 2
883 if (!isatty (fileno (stdin)))
884 setmode (fileno (stdin), O_BINARY);
885 if (!isatty (fileno (stdout)))
887 fflush (stdout);
888 setmode (fileno (stdout), O_BINARY);
890 #else /* not __DJGPP__ >= 2 */
891 (stdin)->_flag &= ~_IOTEXT;
892 (stdout)->_flag &= ~_IOTEXT;
893 (stderr)->_flag &= ~_IOTEXT;
894 #endif /* not __DJGPP__ >= 2 */
895 #endif /* MSDOS */
897 #ifdef SET_EMACS_PRIORITY
898 if (emacs_priority)
899 nice (emacs_priority);
900 setuid (getuid ());
901 #endif /* SET_EMACS_PRIORITY */
903 /* Skip initial setlocale if LC_ALL is "C", as it's not needed in that case.
904 The build procedure uses this while dumping, to ensure that the
905 dumped Emacs does not have its system locale tables initialized,
906 as that might cause screwups when the dumped Emacs starts up. */
908 char *lc_all = getenv ("LC_ALL");
909 do_initial_setlocale = ! lc_all || strcmp (lc_all, "C");
912 /* Set locale now, so that initial error messages are localized properly.
913 fixup_locale must wait until later, since it builds strings. */
914 if (do_initial_setlocale)
915 setlocale (LC_ALL, "");
917 #ifdef EXTRA_INITIALIZE
918 EXTRA_INITIALIZE;
919 #endif
921 inhibit_window_system = 0;
923 /* Handle the -t switch, which specifies filename to use as terminal */
924 while (1)
926 char *term;
927 if (argmatch (argv, argc, "-t", "--terminal", 4, &term, &skip_args))
929 int result;
930 emacs_close (0);
931 emacs_close (1);
932 result = emacs_open (term, O_RDWR, 0);
933 if (result < 0)
935 char *errstring = strerror (errno);
936 fprintf (stderr, "emacs: %s: %s\n", term, errstring);
937 exit (1);
939 dup (0);
940 if (! isatty (0))
942 fprintf (stderr, "emacs: %s: not a tty\n", term);
943 exit (1);
945 fprintf (stderr, "Using %s\n", term);
946 #ifdef HAVE_WINDOW_SYSTEM
947 inhibit_window_system = 1; /* -t => -nw */
948 #endif
950 else
951 break;
954 if (argmatch (argv, argc, "-nw", "--no-windows", 6, NULL, &skip_args))
955 inhibit_window_system = 1;
957 /* Handle the -batch switch, which means don't do interactive display. */
958 noninteractive = 0;
959 if (argmatch (argv, argc, "-batch", "--batch", 5, NULL, &skip_args))
960 noninteractive = 1;
962 /* Handle the --help option, which gives a usage message.. */
963 if (argmatch (argv, argc, "-help", "--help", 3, NULL, &skip_args))
965 printf (USAGE1, argv[0]);
966 printf (USAGE2);
967 exit (0);
970 if (! noninteractive)
972 #ifdef BSD_PGRPS
973 if (initialized)
975 inherited_pgroup = EMACS_GETPGRP (0);
976 setpgrp (0, getpid ());
978 #else
979 #if defined (USG5) && defined (INTERRUPT_INPUT)
980 setpgrp ();
981 #endif
982 #endif
985 init_signals ();
987 /* Don't catch SIGHUP if dumping. */
988 if (1
989 #ifndef CANNOT_DUMP
990 && initialized
991 #endif
994 sigblock (sigmask (SIGHUP));
995 /* In --batch mode, don't catch SIGHUP if already ignored.
996 That makes nohup work. */
997 if (! noninteractive
998 || signal (SIGHUP, SIG_IGN) != SIG_IGN)
999 signal (SIGHUP, fatal_error_signal);
1000 sigunblock (sigmask (SIGHUP));
1003 if (
1004 #ifndef CANNOT_DUMP
1005 ! noninteractive || initialized
1006 #else
1008 #endif
1011 /* Don't catch these signals in batch mode if dumping.
1012 On some machines, this sets static data that would make
1013 signal fail to work right when the dumped Emacs is run. */
1014 signal (SIGQUIT, fatal_error_signal);
1015 signal (SIGILL, fatal_error_signal);
1016 signal (SIGTRAP, fatal_error_signal);
1017 #ifdef SIGUSR1
1018 signal (SIGUSR1, handle_USR1_signal);
1019 #ifdef SIGUSR2
1020 signal (SIGUSR2, handle_USR2_signal);
1021 #endif
1022 #endif
1023 #ifdef SIGABRT
1024 signal (SIGABRT, fatal_error_signal);
1025 #endif
1026 #ifdef SIGHWE
1027 signal (SIGHWE, fatal_error_signal);
1028 #endif
1029 #ifdef SIGPRE
1030 signal (SIGPRE, fatal_error_signal);
1031 #endif
1032 #ifdef SIGORE
1033 signal (SIGORE, fatal_error_signal);
1034 #endif
1035 #ifdef SIGUME
1036 signal (SIGUME, fatal_error_signal);
1037 #endif
1038 #ifdef SIGDLK
1039 signal (SIGDLK, fatal_error_signal);
1040 #endif
1041 #ifdef SIGCPULIM
1042 signal (SIGCPULIM, fatal_error_signal);
1043 #endif
1044 #ifdef SIGIOT
1045 /* This is missing on some systems - OS/2, for example. */
1046 signal (SIGIOT, fatal_error_signal);
1047 #endif
1048 #ifdef SIGEMT
1049 signal (SIGEMT, fatal_error_signal);
1050 #endif
1051 signal (SIGFPE, fatal_error_signal);
1052 #ifdef SIGBUS
1053 signal (SIGBUS, fatal_error_signal);
1054 #endif
1055 signal (SIGSEGV, fatal_error_signal);
1056 #ifdef SIGSYS
1057 signal (SIGSYS, fatal_error_signal);
1058 #endif
1059 signal (SIGTERM, fatal_error_signal);
1060 #ifdef SIGXCPU
1061 signal (SIGXCPU, fatal_error_signal);
1062 #endif
1063 #ifdef SIGXFSZ
1064 signal (SIGXFSZ, fatal_error_signal);
1065 #endif /* SIGXFSZ */
1067 #ifdef SIGDANGER
1068 /* This just means available memory is getting low. */
1069 signal (SIGDANGER, memory_warning_signal);
1070 #endif
1072 #ifdef AIX
1073 /* 20 is SIGCHLD, 21 is SIGTTIN, 22 is SIGTTOU. */
1074 signal (SIGXCPU, fatal_error_signal);
1075 #ifndef _I386
1076 signal (SIGIOINT, fatal_error_signal);
1077 #endif
1078 signal (SIGGRANT, fatal_error_signal);
1079 signal (SIGRETRACT, fatal_error_signal);
1080 signal (SIGSOUND, fatal_error_signal);
1081 signal (SIGMSG, fatal_error_signal);
1082 #endif /* AIX */
1085 noninteractive1 = noninteractive;
1087 /* Perform basic initializations (not merely interning symbols) */
1089 if (!initialized)
1091 init_alloc_once ();
1092 init_obarray ();
1093 init_eval_once ();
1094 init_charset_once ();
1095 init_coding_once ();
1096 init_syntax_once (); /* Create standard syntax table. */
1097 init_category_once (); /* Create standard category table. */
1098 /* Must be done before init_buffer */
1099 init_casetab_once ();
1100 init_buffer_once (); /* Create buffer table and some buffers */
1101 init_minibuf_once (); /* Create list of minibuffers */
1102 /* Must precede init_window_once */
1104 /* Call syms_of_xfaces before init_window_once because that
1105 function creates Vterminal_frame. Termcap frames now use
1106 faces, and the face implementation uses some symbols as
1107 face names. */
1108 syms_of_xfaces ();
1109 /* Call syms_of_keyboard before init_window_once because
1110 keyboard sets up symbols that include some face names that
1111 the X support will want to use. This can happen when
1112 CANNOT_DUMP is defined. */
1113 syms_of_keyboard ();
1115 #ifdef macintosh
1116 /* init_window_once calls make_terminal_frame which on Mac OS
1117 creates a full-fledge output_mac type frame. This does not
1118 work correctly before syms_of_textprop, syms_of_macfns,
1119 syms_of_ccl, syms_of_fontset, syms_of_xterm, syms_of_search,
1120 syms_of_frame, x_term_init, and init_keyboard have already
1121 been called. */
1122 syms_of_textprop ();
1123 syms_of_macfns ();
1124 syms_of_ccl ();
1125 syms_of_fontset ();
1126 syms_of_macterm ();
1127 syms_of_macmenu ();
1128 syms_of_data ();
1129 syms_of_search ();
1130 syms_of_frame ();
1132 x_term_init ();
1133 init_keyboard ();
1134 #endif
1136 init_window_once (); /* Init the window system */
1137 init_fileio_once (); /* Must precede any path manipulation. */
1140 init_alloc ();
1142 if (do_initial_setlocale)
1144 fixup_locale ();
1145 Vsystem_messages_locale = Vprevious_system_messages_locale;
1146 Vsystem_time_locale = Vprevious_system_time_locale;
1149 init_eval ();
1150 init_data ();
1151 #ifdef CLASH_DETECTION
1152 init_filelock ();;
1153 #endif
1154 init_atimer ();
1155 running_asynch_code = 0;
1157 /* Handle --unibyte and the EMACS_UNIBYTE envvar,
1158 but not while dumping. */
1159 if (
1160 #ifndef CANNOT_DUMP
1161 ! noninteractive || initialized
1162 #else
1164 #endif
1167 int inhibit_unibyte = 0;
1169 /* --multibyte overrides EMACS_UNIBYTE. */
1170 if (argmatch (argv, argc, "-no-unibyte", "--no-unibyte", 4, NULL, &skip_args)
1171 || argmatch (argv, argc, "-multibyte", "--multibyte", 4, NULL, &skip_args))
1172 inhibit_unibyte = 1;
1174 /* --unibyte requests that we set up to do everything with single-byte
1175 buffers and strings. We need to handle this before calling
1176 init_lread, init_editfns and other places that generate Lisp strings
1177 from text in the environment. */
1178 /* Actually this shouldn't be needed as of 20.4 in a generally
1179 unibyte environment. As handa says, environment values
1180 aren't now decoded; also existing buffers are now made
1181 unibyte during startup if .emacs sets unibyte. Tested with
1182 8-bit data in environment variables and /etc/passwd, setting
1183 unibyte and Latin-1 in .emacs. -- Dave Love */
1184 if (argmatch (argv, argc, "-unibyte", "--unibyte", 4, NULL, &skip_args)
1185 || argmatch (argv, argc, "-no-multibyte", "--no-multibyte", 4, NULL, &skip_args)
1186 || (getenv ("EMACS_UNIBYTE") && !inhibit_unibyte))
1188 Lisp_Object old_log_max;
1189 Lisp_Object symbol, tail;
1191 symbol = intern ("default-enable-multibyte-characters");
1192 Fset (symbol, Qnil);
1194 if (initialized)
1196 /* Erase pre-dump messages in *Messages* now so no abort. */
1197 old_log_max = Vmessage_log_max;
1198 XSETFASTINT (Vmessage_log_max, 0);
1199 message_dolog ("", 0, 1, 0);
1200 Vmessage_log_max = old_log_max;
1203 for (tail = Vbuffer_alist; CONSP (tail);
1204 tail = XCDR (tail))
1206 Lisp_Object buffer;
1208 buffer = Fcdr (XCAR (tail));
1209 /* Verify that all buffers are empty now, as they
1210 ought to be. */
1211 if (BUF_Z (XBUFFER (buffer)) > BUF_BEG (XBUFFER (buffer)))
1212 abort ();
1213 /* It is safe to do this crudely in an empty buffer. */
1214 XBUFFER (buffer)->enable_multibyte_characters = Qnil;
1219 no_loadup
1220 = argmatch (argv, argc, "-nl", "--no-loadup", 6, NULL, &skip_args);
1223 #ifdef HAVE_X_WINDOWS
1224 /* Stupid kludge to catch command-line display spec. We can't
1225 handle this argument entirely in window system dependent code
1226 because we don't even know which window system dependent code
1227 to run until we've recognized this argument. */
1229 char *displayname = 0;
1230 int count_before = skip_args;
1232 /* Skip any number of -d options, but only use the last one. */
1233 while (1)
1235 int count_before_this = skip_args;
1237 if (argmatch (argv, argc, "-d", "--display", 3, &displayname, &skip_args))
1238 display_arg = 1;
1239 else if (argmatch (argv, argc, "-display", 0, 3, &displayname, &skip_args))
1240 display_arg = 1;
1241 else
1242 break;
1244 count_before = count_before_this;
1247 /* If we have the form --display=NAME,
1248 convert it into -d name.
1249 This requires inserting a new element into argv. */
1250 if (displayname != 0 && skip_args - count_before == 1)
1252 char **new = (char **) xmalloc (sizeof (char *) * (argc + 2));
1253 int j;
1255 for (j = 0; j < count_before + 1; j++)
1256 new[j] = argv[j];
1257 new[count_before + 1] = "-d";
1258 new[count_before + 2] = displayname;
1259 for (j = count_before + 2; j <argc; j++)
1260 new[j + 1] = argv[j];
1261 argv = new;
1262 argc++;
1264 /* Change --display to -d, when its arg is separate. */
1265 else if (displayname != 0 && skip_args > count_before
1266 && argv[count_before + 1][1] == '-')
1267 argv[count_before + 1] = "-d";
1269 /* Don't actually discard this arg. */
1270 skip_args = count_before;
1272 #endif
1274 /* argmatch must not be used after here,
1275 except when bulding temacs
1276 because the -d argument has not been skipped in skip_args. */
1278 #ifdef MSDOS
1279 /* Call early 'cause init_environment needs it. */
1280 init_dosfns ();
1281 /* Set defaults for several environment variables. */
1282 if (initialized)
1283 init_environment (argc, argv, skip_args);
1284 else
1285 tzset ();
1286 #endif /* MSDOS */
1288 #ifdef WINDOWSNT
1289 /* Initialize environment from registry settings. */
1290 init_environment (argv);
1291 init_ntproc (); /* must precede init_editfns */
1292 #endif
1294 /* egetenv is a pretty low-level facility, which may get called in
1295 many circumstances; it seems flimsy to put off initializing it
1296 until calling init_callproc. */
1297 set_process_environment ();
1298 /* AIX crashes are reported in system versions 3.2.3 and 3.2.4
1299 if this is not done. Do it after set_process_environment so that we
1300 don't pollute Vprocess_environment. */
1301 /* Setting LANG here will defeat the startup locale processing... */
1302 #ifdef AIX3_2
1303 putenv ("LANG=C");
1304 #endif
1306 init_buffer (); /* Init default directory of main buffer */
1308 init_callproc_1 (); /* Must precede init_cmdargs and init_sys_modes. */
1309 init_cmdargs (argc, argv, skip_args); /* Must precede init_lread. */
1311 if (initialized)
1313 /* Erase any pre-dump messages in the message log, to avoid confusion */
1314 Lisp_Object old_log_max;
1315 old_log_max = Vmessage_log_max;
1316 XSETFASTINT (Vmessage_log_max, 0);
1317 message_dolog ("", 0, 1, 0);
1318 Vmessage_log_max = old_log_max;
1321 init_callproc (); /* Must follow init_cmdargs but not init_sys_modes. */
1322 init_lread ();
1324 /* Intern the names of all standard functions and variables;
1325 define standard keys. */
1327 if (!initialized)
1329 /* The basic levels of Lisp must come first */
1330 /* And data must come first of all
1331 for the sake of symbols like error-message */
1332 #ifndef macintosh
1333 /* Called before init_window_once for Mac OS. */
1334 syms_of_data ();
1335 #endif
1336 syms_of_alloc ();
1337 syms_of_lread ();
1338 syms_of_print ();
1339 syms_of_eval ();
1340 syms_of_fns ();
1341 syms_of_floatfns ();
1343 syms_of_abbrev ();
1344 syms_of_buffer ();
1345 syms_of_bytecode ();
1346 syms_of_callint ();
1347 syms_of_casefiddle ();
1348 syms_of_casetab ();
1349 syms_of_callproc ();
1350 syms_of_category ();
1351 #ifndef macintosh
1352 /* Called before init_window_once for Mac OS. */
1353 syms_of_ccl ();
1354 #endif
1355 syms_of_charset ();
1356 syms_of_cmds ();
1357 #ifndef NO_DIR_LIBRARY
1358 syms_of_dired ();
1359 #endif /* not NO_DIR_LIBRARY */
1360 syms_of_display ();
1361 syms_of_doc ();
1362 syms_of_editfns ();
1363 syms_of_emacs ();
1364 syms_of_fileio ();
1365 syms_of_coding (); /* This should be after syms_of_fileio. */
1366 #ifdef CLASH_DETECTION
1367 syms_of_filelock ();
1368 #endif /* CLASH_DETECTION */
1369 syms_of_indent ();
1370 syms_of_insdel ();
1371 syms_of_keymap ();
1372 syms_of_macros ();
1373 syms_of_marker ();
1374 syms_of_minibuf ();
1375 syms_of_mocklisp ();
1376 syms_of_process ();
1377 #ifndef macintosh
1378 /* Called before init_window_once for Mac OS. */
1379 syms_of_search ();
1380 syms_of_frame ();
1381 #endif
1382 syms_of_syntax ();
1383 syms_of_term ();
1384 syms_of_undo ();
1385 #ifdef HAVE_SOUND
1386 syms_of_sound ();
1387 #endif
1388 #ifndef macintosh
1389 /* Called before init_window_once for Mac OS. */
1390 syms_of_textprop ();
1391 #endif
1392 syms_of_composite ();
1393 #ifdef VMS
1394 syms_of_vmsproc ();
1395 #endif /* VMS */
1396 #ifdef WINDOWSNT
1397 syms_of_ntproc ();
1398 #endif /* WINDOWSNT */
1399 syms_of_window ();
1400 syms_of_xdisp ();
1401 #ifdef HAVE_X_WINDOWS
1402 syms_of_xterm ();
1403 syms_of_xfns ();
1404 syms_of_fontset ();
1405 #ifdef HAVE_X11
1406 syms_of_xselect ();
1407 #endif
1408 #endif /* HAVE_X_WINDOWS */
1410 #ifndef HAVE_NTGUI
1411 #ifndef macintosh
1412 syms_of_xmenu ();
1413 #endif
1414 #endif
1416 #ifdef HAVE_NTGUI
1417 syms_of_w32term ();
1418 syms_of_w32fns ();
1419 syms_of_w32select ();
1420 syms_of_w32menu ();
1421 syms_of_fontset ();
1422 #endif /* HAVE_NTGUI */
1424 #ifdef SYMS_SYSTEM
1425 SYMS_SYSTEM;
1426 #endif
1428 #ifdef SYMS_MACHINE
1429 SYMS_MACHINE;
1430 #endif
1432 keys_of_casefiddle ();
1433 keys_of_cmds ();
1434 keys_of_buffer ();
1435 keys_of_keyboard ();
1436 keys_of_keymap ();
1437 keys_of_macros ();
1438 keys_of_minibuf ();
1439 keys_of_window ();
1440 keys_of_frame ();
1443 if (!noninteractive)
1445 #ifdef VMS
1446 init_vms_input ();/* init_display calls get_frame_size, that needs this */
1447 #endif /* VMS */
1448 init_display (); /* Determine terminal type. init_sys_modes uses results */
1450 #ifndef macintosh
1451 /* Called before init_window_once for Mac OS. */
1452 init_keyboard (); /* This too must precede init_sys_modes */
1453 #endif
1454 #ifdef VMS
1455 init_vmsproc (); /* And this too. */
1456 #endif /* VMS */
1457 init_sys_modes (); /* Init system terminal modes (RAW or CBREAK, etc.) */
1458 #ifdef HAVE_X_WINDOWS
1459 init_xfns ();
1460 #endif /* HAVE_X_WINDOWS */
1461 init_fns ();
1462 init_xdisp ();
1463 init_macros ();
1464 init_editfns ();
1465 init_floatfns ();
1466 #ifdef VMS
1467 init_vmsfns ();
1468 #endif /* VMS */
1469 init_process ();
1470 #ifdef HAVE_SOUND
1471 init_sound ();
1472 #endif
1473 init_window ();
1475 if (!initialized)
1477 char *file;
1478 /* Handle -l loadup, args passed by Makefile. */
1479 if (argmatch (argv, argc, "-l", "--load", 3, &file, &skip_args))
1480 Vtop_level = Fcons (intern ("load"),
1481 Fcons (build_string (file), Qnil));
1482 #ifdef CANNOT_DUMP
1483 /* Unless next switch is -nl, load "loadup.el" first thing. */
1484 if (! no_loadup)
1485 Vtop_level = Fcons (intern ("load"),
1486 Fcons (build_string ("loadup.el"), Qnil));
1487 #endif /* CANNOT_DUMP */
1490 if (initialized)
1492 #ifdef HAVE_TZSET
1494 /* If the execution TZ happens to be the same as the dump TZ,
1495 change it to some other value and then change it back,
1496 to force the underlying implementation to reload the TZ info.
1497 This is needed on implementations that load TZ info from files,
1498 since the TZ file contents may differ between dump and execution. */
1499 char *tz = getenv ("TZ");
1500 if (tz && !strcmp (tz, dump_tz))
1502 ++*tz;
1503 tzset ();
1504 --*tz;
1507 #endif
1510 /* Set up for profiling. This is known to work on FreeBSD and
1511 GNU/Linux. It might work on some other systems too. Give it a
1512 try and tell us if it works on your system. To compile for
1513 profiling use something like `make CFLAGS="-pg -g -O -DPROFILING=1'. */
1514 #if defined (__FreeBSD__) || defined (__linux)
1515 #ifdef PROFILING
1516 if (initialized)
1518 extern void _mcleanup ();
1519 extern char etext;
1520 extern void safe_bcopy ();
1521 extern void dump_opcode_frequencies ();
1523 atexit (_mcleanup);
1524 /* This uses safe_bcopy because that function comes first in the
1525 Emacs executable. It might be better to use something that
1526 gives the start of the text segment, but start_of_text is not
1527 defined on all systems now. */
1528 monstartup (safe_bcopy, &etext);
1530 else
1531 moncontrol (0);
1532 #endif
1533 #endif
1535 initialized = 1;
1537 #ifdef LOCALTIME_CACHE
1538 /* Some versions of localtime have a bug. They cache the value of the time
1539 zone rather than looking it up every time. Since localtime() is
1540 called to bolt the undumping time into the undumped emacs, this
1541 results in localtime ignoring the TZ environment variable.
1542 This flushes the new TZ value into localtime. */
1543 tzset ();
1544 #endif /* defined (LOCALTIME_CACHE) */
1546 /* Enter editor command loop. This never returns. */
1547 Frecursive_edit ();
1548 /* NOTREACHED */
1549 return 0;
1552 /* Sort the args so we can find the most important ones
1553 at the beginning of argv. */
1555 /* First, here's a table of all the standard options. */
1557 struct standard_args
1559 char *name;
1560 char *longname;
1561 int priority;
1562 int nargs;
1565 struct standard_args standard_args[] =
1567 { "-version", "--version", 150, 0 },
1568 #ifdef HAVE_SHM
1569 { "-nl", "--no-shared-memory", 140, 0 },
1570 #endif
1571 #ifdef VMS
1572 { "-map", "--map-data", 130, 0 },
1573 #endif
1574 { "-t", "--terminal", 120, 1 },
1575 { "-nw", "--no-windows", 110, 0 },
1576 { "-batch", "--batch", 100, 0 },
1577 { "-help", "--help", 90, 0 },
1578 { "-no-unibyte", "--no-unibyte", 83, 0 },
1579 { "-multibyte", "--multibyte", 82, 0 },
1580 { "-unibyte", "--unibyte", 81, 0 },
1581 { "-no-multibyte", "--no-multibyte", 80, 0 },
1582 #ifdef CANNOT_DUMP
1583 { "-nl", "--no-loadup", 70, 0 },
1584 #endif
1585 /* -d must come last before the options handled in startup.el. */
1586 { "-d", "--display", 60, 1 },
1587 { "-display", 0, 60, 1 },
1588 /* Now for the options handled in startup.el. */
1589 { "-q", "--no-init-file", 50, 0 },
1590 { "-no-init-file", 0, 50, 0 },
1591 { "-no-site-file", "--no-site-file", 40, 0 },
1592 { "-u", "--user", 30, 1 },
1593 { "-user", 0, 30, 1 },
1594 { "-debug-init", "--debug-init", 20, 0 },
1595 { "-i", "--icon-type", 15, 0 },
1596 { "-itype", 0, 15, 0 },
1597 { "-iconic", "--iconic", 15, 0 },
1598 { "-bg", "--background-color", 10, 1 },
1599 { "-background", 0, 10, 1 },
1600 { "-fg", "--foreground-color", 10, 1 },
1601 { "-foreground", 0, 10, 1 },
1602 { "-bd", "--border-color", 10, 1 },
1603 { "-bw", "--border-width", 10, 1 },
1604 { "-ib", "--internal-border", 10, 1 },
1605 { "-ms", "--mouse-color", 10, 1 },
1606 { "-cr", "--cursor-color", 10, 1 },
1607 { "-fn", "--font", 10, 1 },
1608 { "-font", 0, 10, 1 },
1609 { "-g", "--geometry", 10, 1 },
1610 { "-geometry", 0, 10, 1 },
1611 { "-T", "--title", 10, 1 },
1612 { "-title", 0, 10, 1 },
1613 { "-name", "--name", 10, 1 },
1614 { "-xrm", "--xrm", 10, 1 },
1615 { "-r", "--reverse-video", 5, 0 },
1616 { "-rv", 0, 5, 0 },
1617 { "-reverse", 0, 5, 0 },
1618 { "-hb", "--horizontal-scroll-bars", 5, 0 },
1619 { "-vb", "--vertical-scroll-bars", 5, 0 },
1620 /* These have the same priority as ordinary file name args,
1621 so they are not reordered with respect to those. */
1622 { "-L", "--directory", 0, 1 },
1623 { "-directory", 0, 0, 1 },
1624 { "-l", "--load", 0, 1 },
1625 { "-load", 0, 0, 1 },
1626 { "-f", "--funcall", 0, 1 },
1627 { "-funcall", 0, 0, 1 },
1628 { "-eval", "--eval", 0, 1 },
1629 { "-execute", "--execute", 0, 1 },
1630 { "-find-file", "--find-file", 0, 1 },
1631 { "-visit", "--visit", 0, 1 },
1632 { "-file", "--file", 0, 1 },
1633 { "-insert", "--insert", 0, 1 },
1634 /* This should be processed after ordinary file name args and the like. */
1635 { "-kill", "--kill", -10, 0 },
1638 /* Reorder the elements of ARGV (assumed to have ARGC elements)
1639 so that the highest priority ones come first.
1640 Do not change the order of elements of equal priority.
1641 If an option takes an argument, keep it and its argument together.
1643 If an option that takes no argument appears more
1644 than once, eliminate all but one copy of it. */
1646 static void
1647 sort_args (argc, argv)
1648 int argc;
1649 char **argv;
1651 char **new = (char **) xmalloc (sizeof (char *) * argc);
1652 /* For each element of argv,
1653 the corresponding element of options is:
1654 0 for an option that takes no arguments,
1655 1 for an option that takes one argument, etc.
1656 -1 for an ordinary non-option argument. */
1657 int *options = (int *) xmalloc (sizeof (int) * argc);
1658 int *priority = (int *) xmalloc (sizeof (int) * argc);
1659 int to = 1;
1660 int incoming_used = 1;
1661 int from;
1662 int i;
1664 /* Categorize all the options,
1665 and figure out which argv elts are option arguments. */
1666 for (from = 1; from < argc; from++)
1668 options[from] = -1;
1669 priority[from] = 0;
1670 if (argv[from][0] == '-')
1672 int match, thislen;
1673 char *equals;
1675 /* If we have found "--", don't consider
1676 any more arguments as options. */
1677 if (argv[from][1] == '-' && argv[from][2] == 0)
1679 /* Leave the "--", and everything following it, at the end. */
1680 for (; from < argc; from++)
1682 priority[from] = -100;
1683 options[from] = -1;
1685 break;
1688 /* Look for a match with a known old-fashioned option. */
1689 for (i = 0; i < sizeof (standard_args) / sizeof (standard_args[0]); i++)
1690 if (!strcmp (argv[from], standard_args[i].name))
1692 options[from] = standard_args[i].nargs;
1693 priority[from] = standard_args[i].priority;
1694 if (from + standard_args[i].nargs >= argc)
1695 fatal ("Option `%s' requires an argument\n", argv[from]);
1696 from += standard_args[i].nargs;
1697 goto done;
1700 /* Look for a match with a known long option.
1701 MATCH is -1 if no match so far, -2 if two or more matches so far,
1702 >= 0 (the table index of the match) if just one match so far. */
1703 if (argv[from][1] == '-')
1705 match = -1;
1706 thislen = strlen (argv[from]);
1707 equals = index (argv[from], '=');
1708 if (equals != 0)
1709 thislen = equals - argv[from];
1711 for (i = 0;
1712 i < sizeof (standard_args) / sizeof (standard_args[0]); i++)
1713 if (standard_args[i].longname
1714 && !strncmp (argv[from], standard_args[i].longname,
1715 thislen))
1717 if (match == -1)
1718 match = i;
1719 else
1720 match = -2;
1723 /* If we found exactly one match, use that. */
1724 if (match >= 0)
1726 options[from] = standard_args[match].nargs;
1727 priority[from] = standard_args[match].priority;
1728 /* If --OPTION=VALUE syntax is used,
1729 this option uses just one argv element. */
1730 if (equals != 0)
1731 options[from] = 0;
1732 if (from + options[from] >= argc)
1733 fatal ("Option `%s' requires an argument\n", argv[from]);
1734 from += options[from];
1737 done: ;
1741 /* Copy the arguments, in order of decreasing priority, to NEW. */
1742 new[0] = argv[0];
1743 while (incoming_used < argc)
1745 int best = -1;
1746 int best_priority = -9999;
1748 /* Find the highest priority remaining option.
1749 If several have equal priority, take the first of them. */
1750 for (from = 1; from < argc; from++)
1752 if (argv[from] != 0 && priority[from] > best_priority)
1754 best_priority = priority[from];
1755 best = from;
1757 /* Skip option arguments--they are tied to the options. */
1758 if (options[from] > 0)
1759 from += options[from];
1762 if (best < 0)
1763 abort ();
1765 /* Copy the highest priority remaining option, with its args, to NEW.
1766 Unless it is a duplicate of the previous one. */
1767 if (! (options[best] == 0
1768 && ! strcmp (new[to - 1], argv[best])))
1770 new[to++] = argv[best];
1771 for (i = 0; i < options[best]; i++)
1772 new[to++] = argv[best + i + 1];
1775 incoming_used += 1 + (options[best] > 0 ? options[best] : 0);
1777 /* Clear out this option in ARGV. */
1778 argv[best] = 0;
1779 for (i = 0; i < options[best]; i++)
1780 argv[best + i + 1] = 0;
1783 /* If duplicate options were deleted, fill up extra space with null ptrs. */
1784 while (to < argc)
1785 new[to++] = 0;
1787 bcopy (new, argv, sizeof (char *) * argc);
1789 free (options);
1790 free (new);
1791 free (priority);
1794 DEFUN ("kill-emacs", Fkill_emacs, Skill_emacs, 0, 1, "P",
1795 "Exit the Emacs job and kill it.\n\
1796 If ARG is an integer, return ARG as the exit program code.\n\
1797 If ARG is a string, stuff it as keyboard input.\n\n\
1798 The value of `kill-emacs-hook', if not void,\n\
1799 is a list of functions (of no args),\n\
1800 all of which are called before Emacs is actually killed.")
1801 (arg)
1802 Lisp_Object arg;
1804 struct gcpro gcpro1;
1806 GCPRO1 (arg);
1808 if (feof (stdin))
1809 arg = Qt;
1811 if (!NILP (Vrun_hooks) && !noninteractive)
1812 call1 (Vrun_hooks, intern ("kill-emacs-hook"));
1814 UNGCPRO;
1816 /* Is it really necessary to do this deassign
1817 when we are going to exit anyway? */
1818 /* #ifdef VMS
1819 stop_vms_input ();
1820 #endif */
1822 shut_down_emacs (0, 0, STRINGP (arg) ? arg : Qnil);
1824 /* If we have an auto-save list file,
1825 kill it because we are exiting Emacs deliberately (not crashing).
1826 Do it after shut_down_emacs, which does an auto-save. */
1827 if (STRINGP (Vauto_save_list_file_name))
1828 unlink (XSTRING (Vauto_save_list_file_name)->data);
1830 exit (INTEGERP (arg) ? XINT (arg) : EXIT_SUCCESS);
1831 /* NOTREACHED */
1832 return 0;
1836 /* Perform an orderly shutdown of Emacs. Autosave any modified
1837 buffers, kill any child processes, clean up the terminal modes (if
1838 we're in the foreground), and other stuff like that. Don't perform
1839 any redisplay; this may be called when Emacs is shutting down in
1840 the background, or after its X connection has died.
1842 If SIG is a signal number, print a message for it.
1844 This is called by fatal signal handlers, X protocol error handlers,
1845 and Fkill_emacs. */
1847 void
1848 shut_down_emacs (sig, no_x, stuff)
1849 int sig, no_x;
1850 Lisp_Object stuff;
1852 /* Prevent running of hooks from now on. */
1853 Vrun_hooks = Qnil;
1855 /* If we are controlling the terminal, reset terminal modes */
1856 #ifdef EMACS_HAVE_TTY_PGRP
1858 int pgrp = EMACS_GETPGRP (0);
1860 int tpgrp;
1861 if (EMACS_GET_TTY_PGRP (0, &tpgrp) != -1
1862 && tpgrp == pgrp)
1864 fflush (stdout);
1865 reset_sys_modes ();
1866 if (sig && sig != SIGTERM)
1867 fprintf (stderr, "Fatal error (%d).", sig);
1870 #else
1871 fflush (stdout);
1872 reset_sys_modes ();
1873 #endif
1875 stuff_buffered_input (stuff);
1877 kill_buffer_processes (Qnil);
1878 Fdo_auto_save (Qt, Qnil);
1880 #ifdef CLASH_DETECTION
1881 unlock_all_files ();
1882 #endif
1884 #ifdef VMS
1885 kill_vms_processes ();
1886 #endif
1888 #if 0 /* This triggers a bug in XCloseDisplay and is not needed. */
1889 #ifdef HAVE_X_WINDOWS
1890 /* It's not safe to call intern here. Maybe we are crashing. */
1891 if (!noninteractive && SYMBOLP (Vwindow_system)
1892 && XSYMBOL (Vwindow_system)->name->size == 1
1893 && XSYMBOL (Vwindow_system)->name->data[0] == 'x'
1894 && ! no_x)
1895 Fx_close_current_connection ();
1896 #endif /* HAVE_X_WINDOWS */
1897 #endif
1899 #ifdef SIGIO
1900 /* There is a tendency for a SIGIO signal to arrive within exit,
1901 and cause a SIGHUP because the input descriptor is already closed. */
1902 unrequest_sigio ();
1903 signal (SIGIO, SIG_IGN);
1904 #endif
1906 #ifdef WINDOWSNT
1907 term_ntproc ();
1908 #endif
1910 /* Do this only if terminating normally, we want glyph matrices
1911 etc. in a core dump. */
1912 if (sig == 0 || sig == SIGTERM)
1914 check_glyph_memory ();
1915 check_message_stack ();
1918 #ifdef MSDOS
1919 dos_cleanup ();
1920 #endif
1925 #ifndef CANNOT_DUMP
1927 #ifdef HAVE_SHM
1929 DEFUN ("dump-emacs-data", Fdump_emacs_data, Sdump_emacs_data, 1, 1, 0,
1930 "Dump current state of Emacs into data file FILENAME.\n\
1931 This function exists on systems that use HAVE_SHM.")
1932 (filename)
1933 Lisp_Object filename;
1935 extern char my_edata[];
1936 Lisp_Object tem;
1938 CHECK_STRING (filename, 0);
1939 filename = Fexpand_file_name (filename, Qnil);
1941 tem = Vpurify_flag;
1942 Vpurify_flag = Qnil;
1944 fflush (stdout);
1945 /* Tell malloc where start of impure now is */
1946 /* Also arrange for warnings when nearly out of space. */
1947 #ifndef SYSTEM_MALLOC
1948 memory_warnings (my_edata, malloc_warning);
1949 #endif
1950 map_out_data (XSTRING (filename)->data);
1952 Vpurify_flag = tem;
1954 return Qnil;
1957 #else /* not HAVE_SHM */
1959 DEFUN ("dump-emacs", Fdump_emacs, Sdump_emacs, 2, 2, 0,
1960 "Dump current state of Emacs into executable file FILENAME.\n\
1961 Take symbols from SYMFILE (presumably the file you executed to run Emacs).\n\
1962 This is used in the file `loadup.el' when building Emacs.\n\
1964 You must run Emacs in batch mode in order to dump it.")
1965 (filename, symfile)
1966 Lisp_Object filename, symfile;
1968 extern char my_edata[];
1969 Lisp_Object tem;
1970 Lisp_Object symbol;
1971 int count = specpdl_ptr - specpdl;
1973 if (! noninteractive)
1974 error ("Dumping Emacs works only in batch mode");
1976 /* Bind `command-line-processed' to nil before dumping,
1977 so that the dumped Emacs will process its command line
1978 and set up to work with X windows if appropriate. */
1979 symbol = intern ("command-line-process");
1980 specbind (symbol, Qnil);
1982 CHECK_STRING (filename, 0);
1983 filename = Fexpand_file_name (filename, Qnil);
1984 if (!NILP (symfile))
1986 CHECK_STRING (symfile, 0);
1987 if (XSTRING (symfile)->size)
1988 symfile = Fexpand_file_name (symfile, Qnil);
1991 tem = Vpurify_flag;
1992 Vpurify_flag = Qnil;
1994 #ifdef HAVE_TZSET
1995 set_time_zone_rule (dump_tz);
1996 #ifndef LOCALTIME_CACHE
1997 /* Force a tz reload, since set_time_zone_rule doesn't. */
1998 tzset ();
1999 #endif
2000 #endif
2002 fflush (stdout);
2003 #ifdef VMS
2004 mapout_data (XSTRING (filename)->data);
2005 #else
2006 /* Tell malloc where start of impure now is */
2007 /* Also arrange for warnings when nearly out of space. */
2008 #ifndef SYSTEM_MALLOC
2009 #ifndef WINDOWSNT
2010 /* On Windows, this was done before dumping, and that once suffices.
2011 Meanwhile, my_edata is not valid on Windows. */
2012 memory_warnings (my_edata, malloc_warning);
2013 #endif /* not WINDOWSNT */
2014 #endif
2015 #ifdef DOUG_LEA_MALLOC
2016 malloc_state_ptr = malloc_get_state ();
2017 #endif
2019 #ifdef USE_MMAP_FOR_BUFFERS
2020 mmap_set_vars (0);
2021 #endif
2022 unexec (XSTRING (filename)->data,
2023 !NILP (symfile) ? XSTRING (symfile)->data : 0, my_edata, 0, 0);
2024 #ifdef USE_MMAP_FOR_BUFFERS
2025 mmap_set_vars (1);
2026 #endif
2027 #ifdef DOUG_LEA_MALLOC
2028 free (malloc_state_ptr);
2029 #endif
2030 #endif /* not VMS */
2032 Vpurify_flag = tem;
2034 return unbind_to (count, Qnil);
2037 #endif /* not HAVE_SHM */
2039 #endif /* not CANNOT_DUMP */
2041 #if HAVE_SETLOCALE
2042 /* Recover from setlocale (LC_ALL, ""). */
2043 void
2044 fixup_locale ()
2046 /* The Emacs Lisp reader needs LC_NUMERIC to be "C",
2047 so that numbers are read and printed properly for Emacs Lisp. */
2048 setlocale (LC_NUMERIC, "C");
2051 /* Set system locale CATEGORY, with previous locale *PLOCALE, to
2052 DESIRED_LOCALE. */
2053 static void
2054 synchronize_locale (category, plocale, desired_locale)
2055 int category;
2056 Lisp_Object *plocale;
2057 Lisp_Object desired_locale;
2059 if (! EQ (*plocale, desired_locale))
2061 *plocale = desired_locale;
2062 setlocale (category, (STRINGP (desired_locale)
2063 ? (char *)(XSTRING (desired_locale)->data)
2064 : ""));
2068 /* Set system time locale to match Vsystem_time_locale, if possible. */
2069 void
2070 synchronize_system_time_locale ()
2072 synchronize_locale (LC_TIME, &Vprevious_system_time_locale,
2073 Vsystem_time_locale);
2076 /* Set system messages locale to match Vsystem_messages_locale, if
2077 possible. */
2078 void
2079 synchronize_system_messages_locale ()
2081 #ifdef LC_MESSAGES
2082 synchronize_locale (LC_MESSAGES, &Vprevious_system_messages_locale,
2083 Vsystem_messages_locale);
2084 #endif
2086 #endif /* HAVE_SETLOCALE */
2088 #ifndef SEPCHAR
2089 #define SEPCHAR ':'
2090 #endif
2092 Lisp_Object
2093 decode_env_path (evarname, defalt)
2094 char *evarname, *defalt;
2096 register char *path, *p;
2097 Lisp_Object lpath, element, tem;
2099 /* It's okay to use getenv here, because this function is only used
2100 to initialize variables when Emacs starts up, and isn't called
2101 after that. */
2102 if (evarname != 0)
2103 path = (char *) getenv (evarname);
2104 else
2105 path = 0;
2106 if (!path)
2107 path = defalt;
2108 #ifdef DOS_NT
2109 /* Ensure values from the environment use the proper directory separator. */
2110 if (path)
2112 p = alloca (strlen (path) + 1);
2113 strcpy (p, path);
2114 path = p;
2116 if ('/' == DIRECTORY_SEP)
2117 dostounix_filename (path);
2118 else
2119 unixtodos_filename (path);
2121 #endif
2122 lpath = Qnil;
2123 while (1)
2125 p = index (path, SEPCHAR);
2126 if (!p) p = path + strlen (path);
2127 element = (p - path ? make_string (path, p - path)
2128 : build_string ("."));
2130 /* Add /: to the front of the name
2131 if it would otherwise be treated as magic. */
2132 tem = Ffind_file_name_handler (element, Qt);
2133 if (! NILP (tem))
2134 element = concat2 (build_string ("/:"), element);
2136 lpath = Fcons (element, lpath);
2137 if (*p)
2138 path = p + 1;
2139 else
2140 break;
2142 return Fnreverse (lpath);
2145 void
2146 syms_of_emacs ()
2148 Qfile_name_handler_alist = intern ("file-name-handler-alist");
2149 staticpro (&Qfile_name_handler_alist);
2151 #ifndef CANNOT_DUMP
2152 #ifdef HAVE_SHM
2153 defsubr (&Sdump_emacs_data);
2154 #else
2155 defsubr (&Sdump_emacs);
2156 #endif
2157 #endif
2159 defsubr (&Skill_emacs);
2161 defsubr (&Sinvocation_name);
2162 defsubr (&Sinvocation_directory);
2164 DEFVAR_LISP ("command-line-args", &Vcommand_line_args,
2165 "Args passed by shell to Emacs, as a list of strings.");
2167 DEFVAR_LISP ("system-type", &Vsystem_type,
2168 "Value is symbol indicating type of operating system you are using.");
2169 Vsystem_type = intern (SYSTEM_TYPE);
2171 DEFVAR_LISP ("system-configuration", &Vsystem_configuration,
2172 "Value is string indicating configuration Emacs was built for.\n\
2173 On MS-Windows, the value reflects the OS flavor and version on which\n\
2174 Emacs is running.");
2175 Vsystem_configuration = build_string (EMACS_CONFIGURATION);
2177 DEFVAR_LISP ("system-configuration-options", &Vsystem_configuration_options,
2178 "String containing the configuration options Emacs was built with.");
2179 Vsystem_configuration_options = build_string (EMACS_CONFIG_OPTIONS);
2181 DEFVAR_BOOL ("noninteractive", &noninteractive1,
2182 "Non-nil means Emacs is running without interactive terminal.");
2184 DEFVAR_LISP ("kill-emacs-hook", &Vkill_emacs_hook,
2185 "Hook to be run whenever kill-emacs is called.\n\
2186 Since kill-emacs may be invoked when the terminal is disconnected (or\n\
2187 in other similar situations), functions placed on this hook should not\n\
2188 expect to be able to interact with the user. To ask for confirmation,\n\
2189 see `kill-emacs-query-functions' instead.");
2190 Vkill_emacs_hook = Qnil;
2192 #ifdef SIGUSR1
2193 DEFVAR_LISP ("signal-USR1-hook", &Vsignal_USR1_hook,
2194 "Hook to be run whenever emacs receives a USR1 signal");
2195 Vsignal_USR1_hook = Qnil;
2196 #ifdef SIGUSR2
2197 DEFVAR_LISP ("signal-USR2-hook", &Vsignal_USR2_hook,
2198 "Hook to be run whenever emacs receives a USR2 signal");
2199 Vsignal_USR2_hook = Qnil;
2200 #endif
2201 #endif
2204 DEFVAR_INT ("emacs-priority", &emacs_priority,
2205 "Priority for Emacs to run at.\n\
2206 This value is effective only if set before Emacs is dumped,\n\
2207 and only if the Emacs executable is installed with setuid to permit\n\
2208 it to change priority. (Emacs sets its uid back to the real uid.)\n\
2209 Currently, you need to define SET_EMACS_PRIORITY in `config.h'\n\
2210 before you compile Emacs, to enable the code for this feature.");
2211 emacs_priority = 0;
2213 DEFVAR_LISP ("path-separator", &Vpath_separator,
2214 "The directory separator in search paths, as a string.");
2216 char c = SEPCHAR;
2217 Vpath_separator = make_string (&c, 1);
2220 DEFVAR_LISP ("invocation-name", &Vinvocation_name,
2221 "The program name that was used to run Emacs.\n\
2222 Any directory names are omitted.");
2224 DEFVAR_LISP ("invocation-directory", &Vinvocation_directory,
2225 "The directory in which the Emacs executable was found, to run it.\n\
2226 The value is nil if that directory's name is not known.");
2228 DEFVAR_LISP ("installation-directory", &Vinstallation_directory,
2229 "A directory within which to look for the `lib-src' and `etc' directories.\n\
2230 This is non-nil when we can't find those directories in their standard\n\
2231 installed locations, but we can find them\n\
2232 near where the Emacs executable was found.");
2233 Vinstallation_directory = Qnil;
2235 DEFVAR_LISP ("system-messages-locale", &Vsystem_messages_locale,
2236 "System locale for messages.");
2237 Vsystem_messages_locale = Qnil;
2239 DEFVAR_LISP ("previous-system-messages-locale",
2240 &Vprevious_system_messages_locale,
2241 "Most recently used system locale for messages.");
2242 Vprevious_system_messages_locale = Qnil;
2244 DEFVAR_LISP ("system-time-locale", &Vsystem_time_locale,
2245 "System locale for time.");
2246 Vsystem_time_locale = Qnil;
2248 DEFVAR_LISP ("previous-system-time-locale", &Vprevious_system_time_locale,
2249 "Most recently used system locale for time.");
2250 Vprevious_system_time_locale = Qnil;