added a description of the new features in Ediff
[emacs.git] / src / emacs.c
blob1667ed1244289c4793a7a04cc11cf5c1e6eb55d9
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 EMACS_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-window-system, -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 --color=MODE color mode for character terminals;\n\
267 MODE defaults to `auto', and can also\n\
268 be `never', `auto', `always',\n\
269 or a mode name like `ansi8'\n\
270 --cursor-color, -cr COLOR color of the Emacs cursor indicating point\n\
271 --display, -d DISPLAY use X server DISPLAY\n\
272 --font, -fn FONT default font; must be fixed-width\n\
273 --foreground-color, -fg COLOR window foreground color\n\
274 --fullscreen, -fs make first frame fullscreen\n\
275 --fullwidth, -fw make the first frame wide as the screen\n\
276 --fullheight, -fh make the first frame high as the screen\n\
277 --geometry, -g GEOMETRY window geometry\n\
278 --iconic start Emacs in iconified state\n\
279 --icon-type, -i use picture of gnu for Emacs icon\n\
280 --internal-border, -ib WIDTH width between text and main border\n\
281 --line-spacing, -lsp PIXELS additional space to put between lines\n\
282 --mouse-color, -ms COLOR mouse cursor color in Emacs window\n\
283 --name NAME title of main Emacs window\n\
284 --reverse-video, -r, -rv switch foreground and background\n\
285 --title, -T, -wn TITLE title for Emacs windows\n\
286 --vertical-scroll-bars, -vb enable vertical scroll bars\n\
287 --xrm XRESOURCES set additional X resources\n\
289 You can generally also specify long option names with a single -; for\n\
290 example, -batch as well as --batch. You can use any unambiguous\n\
291 abbreviation for a --option.\n\
293 Various environment variables and window system resources also affect\n\
294 Emacs' operation. See the main documentation.\n\
297 #define USAGE3 "\
298 Report bugs to %s. First, please see the Bugs\n\
299 section of the Emacs manual or the file BUGS.\n"
302 /* Signal code for the fatal signal that was received. */
303 int fatal_error_code;
305 /* Nonzero if handling a fatal error already. */
306 int fatal_error_in_progress;
308 /* If non-null, call this function from fatal_error_signal before
309 committing suicide. */
311 void (*fatal_error_signal_hook) P_ ((void));
314 #ifdef SIGUSR1
315 SIGTYPE
316 handle_USR1_signal (sig)
317 int sig;
319 struct input_event buf;
321 bzero (&buf, sizeof buf);
322 buf.kind = USER_SIGNAL_EVENT;
323 buf.frame_or_window = selected_frame;
325 kbd_buffer_store_event (&buf);
327 #endif /* SIGUSR1 */
329 #ifdef SIGUSR2
330 SIGTYPE
331 handle_USR2_signal (sig)
332 int sig;
334 struct input_event buf;
336 bzero (&buf, sizeof buf);
337 buf.kind = USER_SIGNAL_EVENT;
338 buf.code = 1;
339 buf.frame_or_window = selected_frame;
341 kbd_buffer_store_event (&buf);
343 #endif /* SIGUSR2 */
345 /* Handle bus errors, invalid instruction, etc. */
346 SIGTYPE
347 fatal_error_signal (sig)
348 int sig;
350 fatal_error_code = sig;
351 signal (sig, SIG_DFL);
353 TOTALLY_UNBLOCK_INPUT;
355 /* If fatal error occurs in code below, avoid infinite recursion. */
356 if (! fatal_error_in_progress)
358 fatal_error_in_progress = 1;
360 shut_down_emacs (sig, 0, Qnil);
363 #ifdef VMS
364 LIB$STOP (SS$_ABORT);
365 #else
366 /* Signal the same code; this time it will really be fatal.
367 Remember that since we're in a signal handler, the signal we're
368 going to send is probably blocked, so we have to unblock it if we
369 want to really receive it. */
370 #ifndef MSDOS
371 sigunblock (sigmask (fatal_error_code));
372 #endif
374 if (fatal_error_signal_hook)
375 fatal_error_signal_hook ();
377 kill (getpid (), fatal_error_code);
378 #endif /* not VMS */
381 #ifdef SIGDANGER
383 /* Handler for SIGDANGER. */
384 SIGTYPE
385 memory_warning_signal (sig)
386 int sig;
388 signal (sig, memory_warning_signal);
390 malloc_warning ("Operating system warns that virtual memory is running low.\n");
392 /* It might be unsafe to call do_auto_save now. */
393 force_auto_save_soon ();
395 #endif
397 /* We define abort, rather than using it from the library,
398 so that GDB can return from a breakpoint here.
399 MSDOS has its own definition in msdos.c. */
401 #if ! defined (DOS_NT) && ! defined (NO_ABORT)
403 #ifndef ABORT_RETURN_TYPE
404 #define ABORT_RETURN_TYPE void
405 #endif
407 ABORT_RETURN_TYPE
408 abort ()
410 kill (getpid (), SIGABRT);
411 /* This shouldn't be executed, but it prevents a warning. */
412 exit (1);
414 #endif
417 /* Code for dealing with Lisp access to the Unix command line. */
419 static void
420 init_cmdargs (argc, argv, skip_args)
421 int argc;
422 char **argv;
423 int skip_args;
425 register int i;
426 Lisp_Object name, dir, tem;
427 int count = specpdl_ptr - specpdl;
428 Lisp_Object raw_name;
430 initial_argv = argv;
431 initial_argc = argc;
433 raw_name = build_string (argv[0]);
435 /* Add /: to the front of the name
436 if it would otherwise be treated as magic. */
437 tem = Ffind_file_name_handler (raw_name, Qt);
438 if (! NILP (tem))
439 raw_name = concat2 (build_string ("/:"), raw_name);
441 Vinvocation_name = Ffile_name_nondirectory (raw_name);
442 Vinvocation_directory = Ffile_name_directory (raw_name);
444 /* If we got no directory in argv[0], search PATH to find where
445 Emacs actually came from. */
446 if (NILP (Vinvocation_directory))
448 Lisp_Object found;
449 int yes = openp (Vexec_path, Vinvocation_name,
450 Vexec_suffixes, &found, 1);
451 if (yes == 1)
453 /* Add /: to the front of the name
454 if it would otherwise be treated as magic. */
455 tem = Ffind_file_name_handler (found, Qt);
456 if (! NILP (tem))
457 found = concat2 (build_string ("/:"), found);
458 Vinvocation_directory = Ffile_name_directory (found);
462 if (!NILP (Vinvocation_directory)
463 && NILP (Ffile_name_absolute_p (Vinvocation_directory)))
464 /* Emacs was started with relative path, like ./emacs.
465 Make it absolute. */
466 Vinvocation_directory = Fexpand_file_name (Vinvocation_directory, Qnil);
468 Vinstallation_directory = Qnil;
470 if (!NILP (Vinvocation_directory))
472 dir = Vinvocation_directory;
473 name = Fexpand_file_name (Vinvocation_name, dir);
474 while (1)
476 Lisp_Object tem, lib_src_exists;
477 Lisp_Object etc_exists, info_exists;
479 /* See if dir contains subdirs for use by Emacs.
480 Check for the ones that would exist in a build directory,
481 not including lisp and info. */
482 tem = Fexpand_file_name (build_string ("lib-src"), dir);
483 lib_src_exists = Ffile_exists_p (tem);
485 #ifdef MSDOS
486 /* MSDOS installations frequently remove lib-src, but we still
487 must set installation-directory, or else info won't find
488 its files (it uses the value of installation-directory). */
489 tem = Fexpand_file_name (build_string ("info"), dir);
490 info_exists = Ffile_exists_p (tem);
491 #else
492 info_exists = Qnil;
493 #endif
495 if (!NILP (lib_src_exists) || !NILP (info_exists))
497 tem = Fexpand_file_name (build_string ("etc"), dir);
498 etc_exists = Ffile_exists_p (tem);
499 if (!NILP (etc_exists))
501 Vinstallation_directory
502 = Ffile_name_as_directory (dir);
503 break;
507 /* See if dir's parent contains those subdirs. */
508 tem = Fexpand_file_name (build_string ("../lib-src"), dir);
509 lib_src_exists = Ffile_exists_p (tem);
512 #ifdef MSDOS
513 /* See the MSDOS commentary above. */
514 tem = Fexpand_file_name (build_string ("../info"), dir);
515 info_exists = Ffile_exists_p (tem);
516 #else
517 info_exists = Qnil;
518 #endif
520 if (!NILP (lib_src_exists) || !NILP (info_exists))
522 tem = Fexpand_file_name (build_string ("../etc"), dir);
523 etc_exists = Ffile_exists_p (tem);
524 if (!NILP (etc_exists))
526 tem = Fexpand_file_name (build_string (".."), dir);
527 Vinstallation_directory
528 = Ffile_name_as_directory (tem);
529 break;
533 /* If the Emacs executable is actually a link,
534 next try the dir that the link points into. */
535 tem = Ffile_symlink_p (name);
536 if (!NILP (tem))
538 name = Fexpand_file_name (tem, dir);
539 dir = Ffile_name_directory (name);
541 else
542 break;
546 Vcommand_line_args = Qnil;
548 for (i = argc - 1; i >= 0; i--)
550 if (i == 0 || i > skip_args)
551 Vcommand_line_args
552 = Fcons (build_string (argv[i]), Vcommand_line_args);
555 unbind_to (count, Qnil);
558 DEFUN ("invocation-name", Finvocation_name, Sinvocation_name, 0, 0, 0,
559 doc: /* Return the program name that was used to run Emacs.
560 Any directory names are omitted. */)
563 return Fcopy_sequence (Vinvocation_name);
566 DEFUN ("invocation-directory", Finvocation_directory, Sinvocation_directory,
567 0, 0, 0,
568 doc: /* Return the directory name in which the Emacs executable was located. */)
571 return Fcopy_sequence (Vinvocation_directory);
575 #ifdef VMS
576 #ifdef LINK_CRTL_SHARE
577 #ifdef SHARABLE_LIB_BUG
578 extern noshare char **environ;
579 #endif /* SHARABLE_LIB_BUG */
580 #endif /* LINK_CRTL_SHARE */
581 #endif /* VMS */
583 #ifdef HAVE_TZSET
584 /* A valid but unlikely value for the TZ environment value.
585 It is OK (though a bit slower) if the user actually chooses this value. */
586 static char dump_tz[] = "UtC0";
587 #endif
589 #ifndef ORDINARY_LINK
590 /* We don't include crtbegin.o and crtend.o in the link,
591 so these functions and variables might be missed.
592 Provide dummy definitions to avoid error.
593 (We don't have any real constructors or destructors.) */
594 #ifdef __GNUC__
595 #ifndef GCC_CTORS_IN_LIBC
596 void __do_global_ctors ()
598 void __do_global_ctors_aux ()
600 void __do_global_dtors ()
602 /* Linux has a bug in its library; avoid an error. */
603 #ifndef GNU_LINUX
604 char * __CTOR_LIST__[2] = { (char *) (-1), 0 };
605 #endif
606 char * __DTOR_LIST__[2] = { (char *) (-1), 0 };
607 #endif /* GCC_CTORS_IN_LIBC */
608 void __main ()
610 #endif /* __GNUC__ */
611 #endif /* ORDINARY_LINK */
613 /* Test whether the next argument in ARGV matches SSTR or a prefix of
614 LSTR (at least MINLEN characters). If so, then if VALPTR is non-null
615 (the argument is supposed to have a value) store in *VALPTR either
616 the next argument or the portion of this one after the equal sign.
617 ARGV is read starting at position *SKIPPTR; this index is advanced
618 by the number of arguments used.
620 Too bad we can't just use getopt for all of this, but we don't have
621 enough information to do it right. */
623 static int
624 argmatch (argv, argc, sstr, lstr, minlen, valptr, skipptr)
625 char **argv;
626 int argc;
627 char *sstr;
628 char *lstr;
629 int minlen;
630 char **valptr;
631 int *skipptr;
633 char *p = NULL;
634 int arglen;
635 char *arg;
637 /* Don't access argv[argc]; give up in advance. */
638 if (argc <= *skipptr + 1)
639 return 0;
641 arg = argv[*skipptr+1];
642 if (arg == NULL)
643 return 0;
644 if (strcmp (arg, sstr) == 0)
646 if (valptr != NULL)
648 *valptr = argv[*skipptr+2];
649 *skipptr += 2;
651 else
652 *skipptr += 1;
653 return 1;
655 arglen = (valptr != NULL && (p = index (arg, '=')) != NULL
656 ? p - arg : strlen (arg));
657 if (lstr == 0 || arglen < minlen || strncmp (arg, lstr, arglen) != 0)
658 return 0;
659 else if (valptr == NULL)
661 *skipptr += 1;
662 return 1;
664 else if (p != NULL)
666 *valptr = p+1;
667 *skipptr += 1;
668 return 1;
670 else if (argv[*skipptr+2] != NULL)
672 *valptr = argv[*skipptr+2];
673 *skipptr += 2;
674 return 1;
676 else
678 return 0;
682 #ifdef DOUG_LEA_MALLOC
684 /* malloc can be invoked even before main (e.g. by the dynamic
685 linker), so the dumped malloc state must be restored as early as
686 possible using this special hook. */
688 static void
689 malloc_initialize_hook ()
691 #ifndef USE_CRT_DLL
692 extern char **environ;
693 #endif
695 if (initialized)
697 if (!malloc_using_checking)
698 /* Work around a bug in glibc's malloc. MALLOC_CHECK_ must be
699 ignored if the heap to be restored was constructed without
700 malloc checking. Can't use unsetenv, since that calls malloc. */
702 char **p;
704 for (p = environ; p && *p; p++)
705 if (strncmp (*p, "MALLOC_CHECK_=", 14) == 0)
708 *p = p[1];
709 while (*++p);
710 break;
714 malloc_set_state (malloc_state_ptr);
715 free (malloc_state_ptr);
717 else
718 malloc_using_checking = getenv ("MALLOC_CHECK_") != NULL;
721 void (*__malloc_initialize_hook) () = malloc_initialize_hook;
723 #endif /* DOUG_LEA_MALLOC */
726 #define REPORT_EMACS_BUG_ADDRESS "bug-gnu-emacs@gnu.org"
727 #define REPORT_EMACS_BUG_PRETEST_ADDRESS "emacs-pretest-bug@gnu.org"
729 /* This function is used to determine an address to which bug report should
730 be sent. */
732 char *
733 bug_reporting_address ()
735 int count = 0;
736 Lisp_Object temp;
737 char *string;
739 temp = Fsymbol_value (intern ("emacs-version"));
741 /* When `emacs-version' is invalid, use normal address. */
742 if (!STRINGP(temp))
743 return REPORT_EMACS_BUG_ADDRESS;
745 string = XSTRING (temp)->data;
747 /* Count dots in `emacs-version'. */
748 while (*string)
750 if (*string == '.')
751 count++;
752 string++;
755 /* When `emacs-version' has at least three dots, it is development or
756 pretest version of Emacs. */
757 return count >= 3 ? REPORT_EMACS_BUG_PRETEST_ADDRESS : REPORT_EMACS_BUG_ADDRESS;
761 /* ARGSUSED */
763 main (argc, argv, envp)
764 int argc;
765 char **argv;
766 char **envp;
768 #if GC_MARK_STACK
769 Lisp_Object dummy;
770 #endif
771 char stack_bottom_variable;
772 int do_initial_setlocale;
773 int skip_args = 0;
774 #ifndef USE_CRT_DLL
775 extern int errno;
776 #endif
777 #ifdef HAVE_SETRLIMIT
778 struct rlimit rlim;
779 #endif
780 int no_loadup = 0;
782 #if GC_MARK_STACK
783 extern Lisp_Object *stack_base;
784 stack_base = &dummy;
785 #endif
787 #ifdef LINUX_SBRK_BUG
788 __sbrk (1);
789 #endif
791 #ifdef RUN_TIME_REMAP
792 if (initialized)
793 run_time_remap (argv[0]);
794 #endif
796 sort_args (argc, argv);
797 argc = 0;
798 while (argv[argc]) argc++;
800 if (argmatch (argv, argc, "-version", "--version", 3, NULL, &skip_args)
801 /* We don't know the version number unless this is a dumped Emacs.
802 So ignore --version otherwise. */
803 && initialized)
805 Lisp_Object tem;
806 tem = Fsymbol_value (intern ("emacs-version"));
807 if (!STRINGP (tem))
809 fprintf (stderr, "Invalid value of `emacs-version'\n");
810 exit (1);
812 else
814 printf ("GNU Emacs %s\n", XSTRING (tem)->data);
815 printf ("Copyright (C) 2001 Free Software Foundation, Inc.\n");
816 printf ("GNU Emacs comes with ABSOLUTELY NO WARRANTY.\n");
817 printf ("You may redistribute copies of Emacs\n");
818 printf ("under the terms of the GNU General Public License.\n");
819 printf ("For more information about these matters, ");
820 printf ("see the file named COPYING.\n");
821 exit (0);
825 /* Map in shared memory, if we are using that. */
826 #ifdef HAVE_SHM
827 if (argmatch (argv, argc, "-nl", "--no-shared-memory", 6, NULL, &skip_args))
829 map_in_data (0);
830 /* The shared memory was just restored, which clobbered this. */
831 skip_args = 1;
833 else
835 map_in_data (1);
836 /* The shared memory was just restored, which clobbered this. */
837 skip_args = 0;
839 #endif
841 #ifdef NeXT
843 extern int malloc_cookie;
844 /* This helps out unexnext.c. */
845 if (initialized)
846 if (malloc_jumpstart (malloc_cookie) != 0)
847 printf ("malloc jumpstart failed!\n");
849 #endif /* NeXT */
851 #ifdef VMS
852 /* If -map specified, map the data file in. */
854 char *file;
855 if (argmatch (argv, argc, "-map", "--map-data", 3, &mapin_file, &skip_args))
856 mapin_data (file);
859 #ifdef LINK_CRTL_SHARE
860 #ifdef SHARABLE_LIB_BUG
861 /* Bletcherous shared libraries! */
862 if (!stdin)
863 stdin = fdopen (0, "r");
864 if (!stdout)
865 stdout = fdopen (1, "w");
866 if (!stderr)
867 stderr = fdopen (2, "w");
868 if (!environ)
869 environ = envp;
870 #endif /* SHARABLE_LIB_BUG */
871 #endif /* LINK_CRTL_SHARE */
872 #endif /* VMS */
874 #if defined (HAVE_SETRLIMIT) && defined (RLIMIT_STACK)
875 /* Extend the stack space available.
876 Don't do that if dumping, since some systems (e.g. DJGPP)
877 might define a smaller stack limit at that time. */
878 if (1
879 #ifndef CANNOT_DUMP
880 && (!noninteractive || initialized)
881 #endif
882 && !getrlimit (RLIMIT_STACK, &rlim))
884 long newlim;
885 extern int re_max_failures;
886 /* Approximate the amount regex.c needs per unit of re_max_failures. */
887 int ratio = 20 * sizeof (char *);
888 /* Then add 33% to cover the size of the smaller stacks that regex.c
889 successively allocates and discards, on its way to the maximum. */
890 ratio += ratio / 3;
891 /* Add in some extra to cover
892 what we're likely to use for other reasons. */
893 newlim = re_max_failures * ratio + 200000;
894 #ifdef __NetBSD__
895 /* NetBSD (at least NetBSD 1.2G and former) has a bug in its
896 stack allocation routine for new process that the allocation
897 fails if stack limit is not on page boundary. So, round up the
898 new limit to page boundary. */
899 newlim = (newlim + getpagesize () - 1) / getpagesize () * getpagesize();
900 #endif
901 if (newlim > rlim.rlim_max)
903 newlim = rlim.rlim_max;
904 /* Don't let regex.c overflow the stack we have. */
905 re_max_failures = (newlim - 200000) / ratio;
907 if (rlim.rlim_cur < newlim)
908 rlim.rlim_cur = newlim;
910 setrlimit (RLIMIT_STACK, &rlim);
912 #endif /* HAVE_SETRLIMIT and RLIMIT_STACK */
914 /* Record (approximately) where the stack begins. */
915 stack_bottom = &stack_bottom_variable;
917 #ifdef USG_SHARED_LIBRARIES
918 if (bss_end)
919 brk ((void *)bss_end);
920 #endif
922 clearerr (stdin);
924 #ifndef SYSTEM_MALLOC
925 /* Arrange to get warning messages as memory fills up. */
926 memory_warnings (0, malloc_warning);
928 /* Call malloc at least once, to run the initial __malloc_hook.
929 Also call realloc and free for consistency. */
930 free (realloc (malloc (4), 4));
932 /* Arrange to disable interrupt input inside malloc etc. */
933 uninterrupt_malloc ();
934 #endif /* not SYSTEM_MALLOC */
936 #ifdef MSDOS
937 /* We do all file input/output as binary files. When we need to translate
938 newlines, we do that manually. */
939 _fmode = O_BINARY;
941 #if __DJGPP__ >= 2
942 if (!isatty (fileno (stdin)))
943 setmode (fileno (stdin), O_BINARY);
944 if (!isatty (fileno (stdout)))
946 fflush (stdout);
947 setmode (fileno (stdout), O_BINARY);
949 #else /* not __DJGPP__ >= 2 */
950 (stdin)->_flag &= ~_IOTEXT;
951 (stdout)->_flag &= ~_IOTEXT;
952 (stderr)->_flag &= ~_IOTEXT;
953 #endif /* not __DJGPP__ >= 2 */
954 #endif /* MSDOS */
956 #ifdef SET_EMACS_PRIORITY
957 if (emacs_priority)
958 nice (emacs_priority);
959 setuid (getuid ());
960 #endif /* SET_EMACS_PRIORITY */
962 /* Skip initial setlocale if LC_ALL is "C", as it's not needed in that case.
963 The build procedure uses this while dumping, to ensure that the
964 dumped Emacs does not have its system locale tables initialized,
965 as that might cause screwups when the dumped Emacs starts up. */
967 char *lc_all = getenv ("LC_ALL");
968 do_initial_setlocale = ! lc_all || strcmp (lc_all, "C");
971 /* Set locale now, so that initial error messages are localized properly.
972 fixup_locale must wait until later, since it builds strings. */
973 if (do_initial_setlocale)
974 setlocale (LC_ALL, "");
976 #ifdef EXTRA_INITIALIZE
977 EXTRA_INITIALIZE;
978 #endif
980 inhibit_window_system = 0;
982 /* Handle the -t switch, which specifies filename to use as terminal. */
983 while (1)
985 char *term;
986 if (argmatch (argv, argc, "-t", "--terminal", 4, &term, &skip_args))
988 int result;
989 emacs_close (0);
990 emacs_close (1);
991 result = emacs_open (term, O_RDWR, 0);
992 if (result < 0)
994 char *errstring = strerror (errno);
995 fprintf (stderr, "%s: %s: %s\n", argv[0], term, errstring);
996 exit (1);
998 dup (0);
999 if (! isatty (0))
1001 fprintf (stderr, "%s: %s: not a tty\n", argv[0], term);
1002 exit (1);
1004 fprintf (stderr, "Using %s\n", term);
1005 #ifdef HAVE_WINDOW_SYSTEM
1006 inhibit_window_system = 1; /* -t => -nw */
1007 #endif
1009 else
1010 break;
1013 /* Command line option --no-windows is deprecated and thus not mentioned
1014 in the manual and usage informations. */
1015 if (argmatch (argv, argc, "-nw", "--no-window-system", 6, NULL, &skip_args)
1016 || argmatch (argv, argc, "-nw", "--no-windows", 6, NULL, &skip_args))
1017 inhibit_window_system = 1;
1019 /* Handle the -batch switch, which means don't do interactive display. */
1020 noninteractive = 0;
1021 if (argmatch (argv, argc, "-batch", "--batch", 5, NULL, &skip_args))
1022 noninteractive = 1;
1024 /* Handle the --help option, which gives a usage message. */
1025 if (argmatch (argv, argc, "-help", "--help", 3, NULL, &skip_args))
1027 printf (USAGE1, argv[0]);
1028 printf (USAGE2);
1029 printf (USAGE3, bug_reporting_address ());
1030 exit (0);
1033 if (! noninteractive)
1035 #ifdef BSD_PGRPS
1036 if (initialized)
1038 inherited_pgroup = EMACS_GETPGRP (0);
1039 setpgrp (0, getpid ());
1041 #else
1042 #if defined (USG5) && defined (INTERRUPT_INPUT)
1043 setpgrp ();
1044 #endif
1045 #endif
1048 init_signals ();
1050 /* Don't catch SIGHUP if dumping. */
1051 if (1
1052 #ifndef CANNOT_DUMP
1053 && initialized
1054 #endif
1057 sigblock (sigmask (SIGHUP));
1058 /* In --batch mode, don't catch SIGHUP if already ignored.
1059 That makes nohup work. */
1060 if (! noninteractive
1061 || signal (SIGHUP, SIG_IGN) != SIG_IGN)
1062 signal (SIGHUP, fatal_error_signal);
1063 sigunblock (sigmask (SIGHUP));
1066 if (
1067 #ifndef CANNOT_DUMP
1068 ! noninteractive || initialized
1069 #else
1071 #endif
1074 /* Don't catch these signals in batch mode if dumping.
1075 On some machines, this sets static data that would make
1076 signal fail to work right when the dumped Emacs is run. */
1077 signal (SIGQUIT, fatal_error_signal);
1078 signal (SIGILL, fatal_error_signal);
1079 signal (SIGTRAP, fatal_error_signal);
1080 #ifdef SIGUSR1
1081 signal (SIGUSR1, handle_USR1_signal);
1082 #ifdef SIGUSR2
1083 signal (SIGUSR2, handle_USR2_signal);
1084 #endif
1085 #endif
1086 #ifdef SIGABRT
1087 signal (SIGABRT, fatal_error_signal);
1088 #endif
1089 #ifdef SIGHWE
1090 signal (SIGHWE, fatal_error_signal);
1091 #endif
1092 #ifdef SIGPRE
1093 signal (SIGPRE, fatal_error_signal);
1094 #endif
1095 #ifdef SIGORE
1096 signal (SIGORE, fatal_error_signal);
1097 #endif
1098 #ifdef SIGUME
1099 signal (SIGUME, fatal_error_signal);
1100 #endif
1101 #ifdef SIGDLK
1102 signal (SIGDLK, fatal_error_signal);
1103 #endif
1104 #ifdef SIGCPULIM
1105 signal (SIGCPULIM, fatal_error_signal);
1106 #endif
1107 #ifdef SIGIOT
1108 /* This is missing on some systems - OS/2, for example. */
1109 signal (SIGIOT, fatal_error_signal);
1110 #endif
1111 #ifdef SIGEMT
1112 signal (SIGEMT, fatal_error_signal);
1113 #endif
1114 signal (SIGFPE, fatal_error_signal);
1115 #ifdef SIGBUS
1116 signal (SIGBUS, fatal_error_signal);
1117 #endif
1118 signal (SIGSEGV, fatal_error_signal);
1119 #ifdef SIGSYS
1120 signal (SIGSYS, fatal_error_signal);
1121 #endif
1122 signal (SIGTERM, fatal_error_signal);
1123 #ifdef SIGXCPU
1124 signal (SIGXCPU, fatal_error_signal);
1125 #endif
1126 #ifdef SIGXFSZ
1127 signal (SIGXFSZ, fatal_error_signal);
1128 #endif /* SIGXFSZ */
1130 #ifdef SIGDANGER
1131 /* This just means available memory is getting low. */
1132 signal (SIGDANGER, memory_warning_signal);
1133 #endif
1135 #ifdef AIX
1136 /* 20 is SIGCHLD, 21 is SIGTTIN, 22 is SIGTTOU. */
1137 signal (SIGXCPU, fatal_error_signal);
1138 #ifndef _I386
1139 signal (SIGIOINT, fatal_error_signal);
1140 #endif
1141 signal (SIGGRANT, fatal_error_signal);
1142 signal (SIGRETRACT, fatal_error_signal);
1143 signal (SIGSOUND, fatal_error_signal);
1144 signal (SIGMSG, fatal_error_signal);
1145 #endif /* AIX */
1148 noninteractive1 = noninteractive;
1150 /* Perform basic initializations (not merely interning symbols). */
1152 if (!initialized)
1154 init_alloc_once ();
1155 init_obarray ();
1156 init_eval_once ();
1157 init_charset_once ();
1158 init_coding_once ();
1159 init_syntax_once (); /* Create standard syntax table. */
1160 init_category_once (); /* Create standard category table. */
1161 /* Must be done before init_buffer. */
1162 init_casetab_once ();
1163 init_buffer_once (); /* Create buffer table and some buffers. */
1164 init_minibuf_once (); /* Create list of minibuffers. */
1165 /* Must precede init_window_once. */
1167 /* Call syms_of_xfaces before init_window_once because that
1168 function creates Vterminal_frame. Termcap frames now use
1169 faces, and the face implementation uses some symbols as
1170 face names. */
1171 syms_of_xfaces ();
1172 /* Call syms_of_keyboard before init_window_once because
1173 keyboard sets up symbols that include some face names that
1174 the X support will want to use. This can happen when
1175 CANNOT_DUMP is defined. */
1176 syms_of_keyboard ();
1178 #ifdef macintosh
1179 /* init_window_once calls make_terminal_frame which on Mac OS
1180 creates a full-fledge output_mac type frame. This does not
1181 work correctly before syms_of_textprop, syms_of_macfns,
1182 syms_of_ccl, syms_of_fontset, syms_of_xterm, syms_of_search,
1183 syms_of_frame, x_term_init, and init_keyboard have already
1184 been called. */
1185 syms_of_textprop ();
1186 syms_of_macfns ();
1187 syms_of_ccl ();
1188 syms_of_fontset ();
1189 syms_of_macterm ();
1190 syms_of_macmenu ();
1191 syms_of_data ();
1192 syms_of_search ();
1193 syms_of_frame ();
1195 x_term_init ();
1196 init_keyboard ();
1197 #endif
1199 init_window_once (); /* Init the window system. */
1200 init_fileio_once (); /* Must precede any path manipulation. */
1203 init_alloc ();
1205 if (do_initial_setlocale)
1207 fixup_locale ();
1208 Vsystem_messages_locale = Vprevious_system_messages_locale;
1209 Vsystem_time_locale = Vprevious_system_time_locale;
1212 init_eval ();
1213 init_data ();
1214 #ifdef CLASH_DETECTION
1215 init_filelock ();
1216 #endif
1217 init_atimer ();
1218 running_asynch_code = 0;
1220 /* Handle --unibyte and the EMACS_UNIBYTE envvar,
1221 but not while dumping. */
1222 if (
1223 #ifndef CANNOT_DUMP
1224 ! noninteractive || initialized
1225 #else
1227 #endif
1230 int inhibit_unibyte = 0;
1232 /* --multibyte overrides EMACS_UNIBYTE. */
1233 if (argmatch (argv, argc, "-no-unibyte", "--no-unibyte", 4, NULL, &skip_args)
1234 || argmatch (argv, argc, "-multibyte", "--multibyte", 4, NULL, &skip_args))
1235 inhibit_unibyte = 1;
1237 /* --unibyte requests that we set up to do everything with single-byte
1238 buffers and strings. We need to handle this before calling
1239 init_lread, init_editfns and other places that generate Lisp strings
1240 from text in the environment. */
1241 /* Actually this shouldn't be needed as of 20.4 in a generally
1242 unibyte environment. As handa says, environment values
1243 aren't now decoded; also existing buffers are now made
1244 unibyte during startup if .emacs sets unibyte. Tested with
1245 8-bit data in environment variables and /etc/passwd, setting
1246 unibyte and Latin-1 in .emacs. -- Dave Love */
1247 if (argmatch (argv, argc, "-unibyte", "--unibyte", 4, NULL, &skip_args)
1248 || argmatch (argv, argc, "-no-multibyte", "--no-multibyte", 4, NULL, &skip_args)
1249 || (getenv ("EMACS_UNIBYTE") && !inhibit_unibyte))
1251 Lisp_Object old_log_max;
1252 Lisp_Object symbol, tail;
1254 symbol = intern ("default-enable-multibyte-characters");
1255 Fset (symbol, Qnil);
1257 if (initialized)
1259 /* Erase pre-dump messages in *Messages* now so no abort. */
1260 old_log_max = Vmessage_log_max;
1261 XSETFASTINT (Vmessage_log_max, 0);
1262 message_dolog ("", 0, 1, 0);
1263 Vmessage_log_max = old_log_max;
1266 for (tail = Vbuffer_alist; CONSP (tail);
1267 tail = XCDR (tail))
1269 Lisp_Object buffer;
1271 buffer = Fcdr (XCAR (tail));
1272 /* Verify that all buffers are empty now, as they
1273 ought to be. */
1274 if (BUF_Z (XBUFFER (buffer)) > BUF_BEG (XBUFFER (buffer)))
1275 abort ();
1276 /* It is safe to do this crudely in an empty buffer. */
1277 XBUFFER (buffer)->enable_multibyte_characters = Qnil;
1282 no_loadup
1283 = argmatch (argv, argc, "-nl", "--no-loadup", 6, NULL, &skip_args);
1286 #ifdef HAVE_X_WINDOWS
1287 /* Stupid kludge to catch command-line display spec. We can't
1288 handle this argument entirely in window system dependent code
1289 because we don't even know which window system dependent code
1290 to run until we've recognized this argument. */
1292 char *displayname = 0;
1293 int count_before = skip_args;
1295 /* Skip any number of -d options, but only use the last one. */
1296 while (1)
1298 int count_before_this = skip_args;
1300 if (argmatch (argv, argc, "-d", "--display", 3, &displayname, &skip_args))
1301 display_arg = 1;
1302 else if (argmatch (argv, argc, "-display", 0, 3, &displayname, &skip_args))
1303 display_arg = 1;
1304 else
1305 break;
1307 count_before = count_before_this;
1310 /* If we have the form --display=NAME,
1311 convert it into -d name.
1312 This requires inserting a new element into argv. */
1313 if (displayname != 0 && skip_args - count_before == 1)
1315 char **new = (char **) xmalloc (sizeof (char *) * (argc + 2));
1316 int j;
1318 for (j = 0; j < count_before + 1; j++)
1319 new[j] = argv[j];
1320 new[count_before + 1] = "-d";
1321 new[count_before + 2] = displayname;
1322 for (j = count_before + 2; j <argc; j++)
1323 new[j + 1] = argv[j];
1324 argv = new;
1325 argc++;
1327 /* Change --display to -d, when its arg is separate. */
1328 else if (displayname != 0 && skip_args > count_before
1329 && argv[count_before + 1][1] == '-')
1330 argv[count_before + 1] = "-d";
1332 /* Don't actually discard this arg. */
1333 skip_args = count_before;
1335 #endif
1337 /* argmatch must not be used after here,
1338 except when bulding temacs
1339 because the -d argument has not been skipped in skip_args. */
1341 #ifdef MSDOS
1342 /* Call early 'cause init_environment needs it. */
1343 init_dosfns ();
1344 /* Set defaults for several environment variables. */
1345 if (initialized)
1346 init_environment (argc, argv, skip_args);
1347 else
1348 tzset ();
1349 #endif /* MSDOS */
1351 #ifdef WINDOWSNT
1352 /* Initialize environment from registry settings. */
1353 init_environment (argv);
1354 init_ntproc (); /* must precede init_editfns. */
1355 #endif
1357 /* egetenv is a pretty low-level facility, which may get called in
1358 many circumstances; it seems flimsy to put off initializing it
1359 until calling init_callproc. */
1360 set_process_environment ();
1361 /* AIX crashes are reported in system versions 3.2.3 and 3.2.4
1362 if this is not done. Do it after set_process_environment so that we
1363 don't pollute Vprocess_environment. */
1364 /* Setting LANG here will defeat the startup locale processing... */
1365 #ifdef AIX3_2
1366 putenv ("LANG=C");
1367 #endif
1369 init_buffer (); /* Init default directory of main buffer. */
1371 init_callproc_1 (); /* Must precede init_cmdargs and init_sys_modes. */
1372 init_cmdargs (argc, argv, skip_args); /* Must precede init_lread. */
1374 if (initialized)
1376 /* Erase any pre-dump messages in the message log, to avoid confusion. */
1377 Lisp_Object old_log_max;
1378 old_log_max = Vmessage_log_max;
1379 XSETFASTINT (Vmessage_log_max, 0);
1380 message_dolog ("", 0, 1, 0);
1381 Vmessage_log_max = old_log_max;
1384 init_callproc (); /* Must follow init_cmdargs but not init_sys_modes. */
1385 init_lread ();
1387 /* Intern the names of all standard functions and variables;
1388 define standard keys. */
1390 if (!initialized)
1392 /* The basic levels of Lisp must come first. */
1393 /* And data must come first of all
1394 for the sake of symbols like error-message. */
1395 #ifndef macintosh
1396 /* Called before init_window_once for Mac OS. */
1397 syms_of_data ();
1398 #endif
1399 syms_of_alloc ();
1400 syms_of_lread ();
1401 syms_of_print ();
1402 syms_of_eval ();
1403 syms_of_fns ();
1404 syms_of_floatfns ();
1406 syms_of_abbrev ();
1407 syms_of_buffer ();
1408 syms_of_bytecode ();
1409 syms_of_callint ();
1410 syms_of_casefiddle ();
1411 syms_of_casetab ();
1412 syms_of_callproc ();
1413 syms_of_category ();
1414 #ifndef macintosh
1415 /* Called before init_window_once for Mac OS. */
1416 syms_of_ccl ();
1417 #endif
1418 syms_of_charset ();
1419 syms_of_cmds ();
1420 #ifndef NO_DIR_LIBRARY
1421 syms_of_dired ();
1422 #endif /* not NO_DIR_LIBRARY */
1423 syms_of_display ();
1424 syms_of_doc ();
1425 syms_of_editfns ();
1426 syms_of_emacs ();
1427 syms_of_fileio ();
1428 syms_of_coding (); /* This should be after syms_of_fileio. */
1429 #ifdef CLASH_DETECTION
1430 syms_of_filelock ();
1431 #endif /* CLASH_DETECTION */
1432 syms_of_indent ();
1433 syms_of_insdel ();
1434 syms_of_keymap ();
1435 syms_of_macros ();
1436 syms_of_marker ();
1437 syms_of_minibuf ();
1438 syms_of_process ();
1439 #ifndef macintosh
1440 /* Called before init_window_once for Mac OS. */
1441 syms_of_search ();
1442 syms_of_frame ();
1443 #endif
1444 syms_of_syntax ();
1445 syms_of_term ();
1446 syms_of_undo ();
1447 #ifdef HAVE_SOUND
1448 syms_of_sound ();
1449 #endif
1450 #ifndef macintosh
1451 /* Called before init_window_once for Mac OS. */
1452 syms_of_textprop ();
1453 #endif
1454 syms_of_composite ();
1455 #ifdef VMS
1456 syms_of_vmsproc ();
1457 #endif /* VMS */
1458 #ifdef WINDOWSNT
1459 syms_of_ntproc ();
1460 #endif /* WINDOWSNT */
1461 syms_of_window ();
1462 syms_of_xdisp ();
1463 #ifdef HAVE_X_WINDOWS
1464 syms_of_xterm ();
1465 syms_of_xfns ();
1466 syms_of_fontset ();
1467 #ifdef HAVE_X_SM
1468 syms_of_xsmfns ();
1469 #endif
1470 #ifdef HAVE_X11
1471 syms_of_xselect ();
1472 #endif
1473 #endif /* HAVE_X_WINDOWS */
1475 #ifndef HAVE_NTGUI
1476 #ifndef macintosh
1477 syms_of_xmenu ();
1478 #endif
1479 #endif
1481 #ifdef HAVE_NTGUI
1482 syms_of_w32term ();
1483 syms_of_w32fns ();
1484 syms_of_w32select ();
1485 syms_of_w32menu ();
1486 syms_of_fontset ();
1487 #endif /* HAVE_NTGUI */
1489 #ifdef SYMS_SYSTEM
1490 SYMS_SYSTEM;
1491 #endif
1493 #ifdef SYMS_MACHINE
1494 SYMS_MACHINE;
1495 #endif
1497 keys_of_casefiddle ();
1498 keys_of_cmds ();
1499 keys_of_buffer ();
1500 keys_of_keyboard ();
1501 keys_of_keymap ();
1502 keys_of_minibuf ();
1503 keys_of_window ();
1506 if (!noninteractive)
1508 #ifdef VMS
1509 init_vms_input ();/* init_display calls get_frame_size, that needs this. */
1510 #endif /* VMS */
1511 init_display (); /* Determine terminal type. init_sys_modes uses results. */
1513 #ifndef macintosh
1514 /* Called before init_window_once for Mac OS. */
1515 init_keyboard (); /* This too must precede init_sys_modes. */
1516 #endif
1517 #ifdef VMS
1518 init_vmsproc (); /* And this too. */
1519 #endif /* VMS */
1520 init_sys_modes (); /* Init system terminal modes (RAW or CBREAK, etc.). */
1521 #ifdef HAVE_X_WINDOWS
1522 init_xfns ();
1523 #endif /* HAVE_X_WINDOWS */
1524 init_fns ();
1525 init_xdisp ();
1526 init_macros ();
1527 init_editfns ();
1528 init_floatfns ();
1529 #ifdef VMS
1530 init_vmsfns ();
1531 #endif /* VMS */
1532 init_process ();
1533 #ifdef HAVE_SOUND
1534 init_sound ();
1535 #endif
1536 init_window ();
1538 if (!initialized)
1540 char *file;
1541 /* Handle -l loadup, args passed by Makefile. */
1542 if (argmatch (argv, argc, "-l", "--load", 3, &file, &skip_args))
1543 Vtop_level = Fcons (intern ("load"),
1544 Fcons (build_string (file), Qnil));
1545 #ifdef CANNOT_DUMP
1546 /* Unless next switch is -nl, load "loadup.el" first thing. */
1547 if (! no_loadup)
1548 Vtop_level = Fcons (intern ("load"),
1549 Fcons (build_string ("loadup.el"), Qnil));
1550 #endif /* CANNOT_DUMP */
1553 if (initialized)
1555 #ifdef HAVE_TZSET
1557 /* If the execution TZ happens to be the same as the dump TZ,
1558 change it to some other value and then change it back,
1559 to force the underlying implementation to reload the TZ info.
1560 This is needed on implementations that load TZ info from files,
1561 since the TZ file contents may differ between dump and execution. */
1562 char *tz = getenv ("TZ");
1563 if (tz && !strcmp (tz, dump_tz))
1565 ++*tz;
1566 tzset ();
1567 --*tz;
1570 #endif
1573 /* Set up for profiling. This is known to work on FreeBSD and
1574 GNU/Linux. It might work on some other systems too. Give it a
1575 try and tell us if it works on your system. To compile for
1576 profiling use something like `make CFLAGS="-pg -g -O -DPROFILING=1'. */
1577 #if defined (__FreeBSD__) || defined (__linux)
1578 #ifdef PROFILING
1579 if (initialized)
1581 extern void _mcleanup ();
1582 extern char etext;
1583 extern void safe_bcopy ();
1584 extern void dump_opcode_frequencies ();
1586 atexit (_mcleanup);
1587 /* This uses safe_bcopy because that function comes first in the
1588 Emacs executable. It might be better to use something that
1589 gives the start of the text segment, but start_of_text is not
1590 defined on all systems now. */
1591 monstartup (safe_bcopy, &etext);
1593 else
1594 moncontrol (0);
1595 #endif
1596 #endif
1598 initialized = 1;
1600 #ifdef LOCALTIME_CACHE
1601 /* Some versions of localtime have a bug. They cache the value of the time
1602 zone rather than looking it up every time. Since localtime() is
1603 called to bolt the undumping time into the undumped emacs, this
1604 results in localtime ignoring the TZ environment variable.
1605 This flushes the new TZ value into localtime. */
1606 tzset ();
1607 #endif /* defined (LOCALTIME_CACHE) */
1609 /* Enter editor command loop. This never returns. */
1610 Frecursive_edit ();
1611 /* NOTREACHED */
1612 return 0;
1615 /* Sort the args so we can find the most important ones
1616 at the beginning of argv. */
1618 /* First, here's a table of all the standard options. */
1620 struct standard_args
1622 char *name;
1623 char *longname;
1624 int priority;
1625 int nargs;
1628 struct standard_args standard_args[] =
1630 { "-version", "--version", 150, 0 },
1631 #ifdef HAVE_SHM
1632 { "-nl", "--no-shared-memory", 140, 0 },
1633 #endif
1634 #ifdef VMS
1635 { "-map", "--map-data", 130, 0 },
1636 #endif
1637 { "-t", "--terminal", 120, 1 },
1638 { "-nw", "--no-window-system", 110, 0 },
1639 { "-nw", "--no-windows", 110, 0 },
1640 { "-batch", "--batch", 100, 0 },
1641 { "-help", "--help", 90, 0 },
1642 { "-no-unibyte", "--no-unibyte", 83, 0 },
1643 { "-multibyte", "--multibyte", 82, 0 },
1644 { "-unibyte", "--unibyte", 81, 0 },
1645 { "-no-multibyte", "--no-multibyte", 80, 0 },
1646 #ifdef CANNOT_DUMP
1647 { "-nl", "--no-loadup", 70, 0 },
1648 #endif
1649 /* -d must come last before the options handled in startup.el. */
1650 { "-d", "--display", 60, 1 },
1651 { "-display", 0, 60, 1 },
1652 /* Now for the options handled in startup.el. */
1653 { "-q", "--no-init-file", 50, 0 },
1654 { "-no-init-file", 0, 50, 0 },
1655 { "-no-site-file", "--no-site-file", 40, 0 },
1656 { "-u", "--user", 30, 1 },
1657 { "-user", 0, 30, 1 },
1658 { "-debug-init", "--debug-init", 20, 0 },
1659 { "-i", "--icon-type", 15, 0 },
1660 { "-itype", 0, 15, 0 },
1661 { "-iconic", "--iconic", 15, 0 },
1662 { "-bg", "--background-color", 10, 1 },
1663 { "-background", 0, 10, 1 },
1664 { "-fg", "--foreground-color", 10, 1 },
1665 { "-foreground", 0, 10, 1 },
1666 { "-bd", "--border-color", 10, 1 },
1667 { "-bw", "--border-width", 10, 1 },
1668 { "-ib", "--internal-border", 10, 1 },
1669 { "-ms", "--mouse-color", 10, 1 },
1670 { "-cr", "--cursor-color", 10, 1 },
1671 { "-fn", "--font", 10, 1 },
1672 { "-font", 0, 10, 1 },
1673 { "-fs", "--fullscreen", 10, 0 },
1674 { "-fw", "--fullwidth", 10, 0 },
1675 { "-fh", "--fullheight", 10, 0 },
1676 { "-g", "--geometry", 10, 1 },
1677 { "-geometry", 0, 10, 1 },
1678 { "-T", "--title", 10, 1 },
1679 { "-title", 0, 10, 1 },
1680 { "-name", "--name", 10, 1 },
1681 { "-xrm", "--xrm", 10, 1 },
1682 { "-r", "--reverse-video", 5, 0 },
1683 { "-rv", 0, 5, 0 },
1684 { "-reverse", 0, 5, 0 },
1685 { "-hb", "--horizontal-scroll-bars", 5, 0 },
1686 { "-vb", "--vertical-scroll-bars", 5, 0 },
1687 { "-color", "--color", 5, 0},
1688 /* These have the same priority as ordinary file name args,
1689 so they are not reordered with respect to those. */
1690 { "-L", "--directory", 0, 1 },
1691 { "-directory", 0, 0, 1 },
1692 { "-l", "--load", 0, 1 },
1693 { "-load", 0, 0, 1 },
1694 { "-f", "--funcall", 0, 1 },
1695 { "-funcall", 0, 0, 1 },
1696 { "-eval", "--eval", 0, 1 },
1697 { "-execute", "--execute", 0, 1 },
1698 { "-find-file", "--find-file", 0, 1 },
1699 { "-visit", "--visit", 0, 1 },
1700 { "-file", "--file", 0, 1 },
1701 { "-insert", "--insert", 0, 1 },
1702 /* This should be processed after ordinary file name args and the like. */
1703 { "-kill", "--kill", -10, 0 },
1706 /* Reorder the elements of ARGV (assumed to have ARGC elements)
1707 so that the highest priority ones come first.
1708 Do not change the order of elements of equal priority.
1709 If an option takes an argument, keep it and its argument together.
1711 If an option that takes no argument appears more
1712 than once, eliminate all but one copy of it. */
1714 static void
1715 sort_args (argc, argv)
1716 int argc;
1717 char **argv;
1719 char **new = (char **) xmalloc (sizeof (char *) * argc);
1720 /* For each element of argv,
1721 the corresponding element of options is:
1722 0 for an option that takes no arguments,
1723 1 for an option that takes one argument, etc.
1724 -1 for an ordinary non-option argument. */
1725 int *options = (int *) xmalloc (sizeof (int) * argc);
1726 int *priority = (int *) xmalloc (sizeof (int) * argc);
1727 int to = 1;
1728 int incoming_used = 1;
1729 int from;
1730 int i;
1732 /* Categorize all the options,
1733 and figure out which argv elts are option arguments. */
1734 for (from = 1; from < argc; from++)
1736 options[from] = -1;
1737 priority[from] = 0;
1738 if (argv[from][0] == '-')
1740 int match, thislen;
1741 char *equals;
1743 /* If we have found "--", don't consider
1744 any more arguments as options. */
1745 if (argv[from][1] == '-' && argv[from][2] == 0)
1747 /* Leave the "--", and everything following it, at the end. */
1748 for (; from < argc; from++)
1750 priority[from] = -100;
1751 options[from] = -1;
1753 break;
1756 /* Look for a match with a known old-fashioned option. */
1757 for (i = 0; i < sizeof (standard_args) / sizeof (standard_args[0]); i++)
1758 if (!strcmp (argv[from], standard_args[i].name))
1760 options[from] = standard_args[i].nargs;
1761 priority[from] = standard_args[i].priority;
1762 if (from + standard_args[i].nargs >= argc)
1763 fatal ("Option `%s' requires an argument\n", argv[from]);
1764 from += standard_args[i].nargs;
1765 goto done;
1768 /* Look for a match with a known long option.
1769 MATCH is -1 if no match so far, -2 if two or more matches so far,
1770 >= 0 (the table index of the match) if just one match so far. */
1771 if (argv[from][1] == '-')
1773 match = -1;
1774 thislen = strlen (argv[from]);
1775 equals = index (argv[from], '=');
1776 if (equals != 0)
1777 thislen = equals - argv[from];
1779 for (i = 0;
1780 i < sizeof (standard_args) / sizeof (standard_args[0]); i++)
1781 if (standard_args[i].longname
1782 && !strncmp (argv[from], standard_args[i].longname,
1783 thislen))
1785 if (match == -1)
1786 match = i;
1787 else
1788 match = -2;
1791 /* If we found exactly one match, use that. */
1792 if (match >= 0)
1794 options[from] = standard_args[match].nargs;
1795 priority[from] = standard_args[match].priority;
1796 /* If --OPTION=VALUE syntax is used,
1797 this option uses just one argv element. */
1798 if (equals != 0)
1799 options[from] = 0;
1800 if (from + options[from] >= argc)
1801 fatal ("Option `%s' requires an argument\n", argv[from]);
1802 from += options[from];
1805 done: ;
1809 /* Copy the arguments, in order of decreasing priority, to NEW. */
1810 new[0] = argv[0];
1811 while (incoming_used < argc)
1813 int best = -1;
1814 int best_priority = -9999;
1816 /* Find the highest priority remaining option.
1817 If several have equal priority, take the first of them. */
1818 for (from = 1; from < argc; from++)
1820 if (argv[from] != 0 && priority[from] > best_priority)
1822 best_priority = priority[from];
1823 best = from;
1825 /* Skip option arguments--they are tied to the options. */
1826 if (options[from] > 0)
1827 from += options[from];
1830 if (best < 0)
1831 abort ();
1833 /* Copy the highest priority remaining option, with its args, to NEW.
1834 Unless it is a duplicate of the previous one. */
1835 if (! (options[best] == 0
1836 && ! strcmp (new[to - 1], argv[best])))
1838 new[to++] = argv[best];
1839 for (i = 0; i < options[best]; i++)
1840 new[to++] = argv[best + i + 1];
1843 incoming_used += 1 + (options[best] > 0 ? options[best] : 0);
1845 /* Clear out this option in ARGV. */
1846 argv[best] = 0;
1847 for (i = 0; i < options[best]; i++)
1848 argv[best + i + 1] = 0;
1851 /* If duplicate options were deleted, fill up extra space with null ptrs. */
1852 while (to < argc)
1853 new[to++] = 0;
1855 bcopy (new, argv, sizeof (char *) * argc);
1857 free (options);
1858 free (new);
1859 free (priority);
1862 DEFUN ("kill-emacs", Fkill_emacs, Skill_emacs, 0, 1, "P",
1863 doc: /* Exit the Emacs job and kill it.
1864 If ARG is an integer, return ARG as the exit program code.
1865 If ARG is a string, stuff it as keyboard input.
1867 The value of `kill-emacs-hook', if not void,
1868 is a list of functions (of no args),
1869 all of which are called before Emacs is actually killed. */)
1870 (arg)
1871 Lisp_Object arg;
1873 struct gcpro gcpro1;
1875 GCPRO1 (arg);
1877 if (feof (stdin))
1878 arg = Qt;
1880 if (!NILP (Vrun_hooks) && !noninteractive)
1881 call1 (Vrun_hooks, intern ("kill-emacs-hook"));
1883 UNGCPRO;
1885 /* Is it really necessary to do this deassign
1886 when we are going to exit anyway? */
1887 /* #ifdef VMS
1888 stop_vms_input ();
1889 #endif */
1891 shut_down_emacs (0, 0, STRINGP (arg) ? arg : Qnil);
1893 /* If we have an auto-save list file,
1894 kill it because we are exiting Emacs deliberately (not crashing).
1895 Do it after shut_down_emacs, which does an auto-save. */
1896 if (STRINGP (Vauto_save_list_file_name))
1897 unlink (XSTRING (Vauto_save_list_file_name)->data);
1899 exit (INTEGERP (arg) ? XINT (arg)
1900 #ifdef VMS
1902 #else
1904 #endif
1906 /* NOTREACHED */
1910 /* Perform an orderly shutdown of Emacs. Autosave any modified
1911 buffers, kill any child processes, clean up the terminal modes (if
1912 we're in the foreground), and other stuff like that. Don't perform
1913 any redisplay; this may be called when Emacs is shutting down in
1914 the background, or after its X connection has died.
1916 If SIG is a signal number, print a message for it.
1918 This is called by fatal signal handlers, X protocol error handlers,
1919 and Fkill_emacs. */
1921 void
1922 shut_down_emacs (sig, no_x, stuff)
1923 int sig, no_x;
1924 Lisp_Object stuff;
1926 /* Prevent running of hooks from now on. */
1927 Vrun_hooks = Qnil;
1929 /* If we are controlling the terminal, reset terminal modes. */
1930 #ifdef EMACS_HAVE_TTY_PGRP
1932 int pgrp = EMACS_GETPGRP (0);
1934 int tpgrp;
1935 if (EMACS_GET_TTY_PGRP (0, &tpgrp) != -1
1936 && tpgrp == pgrp)
1938 fflush (stdout);
1939 reset_sys_modes ();
1940 if (sig && sig != SIGTERM)
1941 fprintf (stderr, "Fatal error (%d).", sig);
1944 #else
1945 fflush (stdout);
1946 reset_sys_modes ();
1947 #endif
1949 stuff_buffered_input (stuff);
1951 kill_buffer_processes (Qnil);
1952 Fdo_auto_save (Qt, Qnil);
1954 #ifdef CLASH_DETECTION
1955 unlock_all_files ();
1956 #endif
1958 #ifdef VMS
1959 kill_vms_processes ();
1960 #endif
1962 #if 0 /* This triggers a bug in XCloseDisplay and is not needed. */
1963 #ifdef HAVE_X_WINDOWS
1964 /* It's not safe to call intern here. Maybe we are crashing. */
1965 if (!noninteractive && SYMBOLP (Vwindow_system)
1966 && XSYMBOL (Vwindow_system)->name->size == 1
1967 && XSYMBOL (Vwindow_system)->name->data[0] == 'x'
1968 && ! no_x)
1969 Fx_close_current_connection ();
1970 #endif /* HAVE_X_WINDOWS */
1971 #endif
1973 #ifdef SIGIO
1974 /* There is a tendency for a SIGIO signal to arrive within exit,
1975 and cause a SIGHUP because the input descriptor is already closed. */
1976 unrequest_sigio ();
1977 signal (SIGIO, SIG_IGN);
1978 #endif
1980 #ifdef WINDOWSNT
1981 term_ntproc ();
1982 #endif
1984 /* Do this only if terminating normally, we want glyph matrices
1985 etc. in a core dump. */
1986 if (sig == 0 || sig == SIGTERM)
1988 check_glyph_memory ();
1989 check_message_stack ();
1992 #ifdef MSDOS
1993 dos_cleanup ();
1994 #endif
1999 #ifndef CANNOT_DUMP
2001 #ifdef HAVE_SHM
2003 DEFUN ("dump-emacs-data", Fdump_emacs_data, Sdump_emacs_data, 1, 1, 0,
2004 doc: /* Dump current state of Emacs into data file FILENAME.
2005 This function exists on systems that use HAVE_SHM. */)
2006 (filename)
2007 Lisp_Object filename;
2009 extern char my_edata[];
2010 Lisp_Object tem;
2012 check_pure_size ();
2013 CHECK_STRING (filename);
2014 filename = Fexpand_file_name (filename, Qnil);
2016 tem = Vpurify_flag;
2017 Vpurify_flag = Qnil;
2019 fflush (stdout);
2020 /* Tell malloc where start of impure now is. */
2021 /* Also arrange for warnings when nearly out of space. */
2022 #ifndef SYSTEM_MALLOC
2023 memory_warnings (my_edata, malloc_warning);
2024 #endif
2025 map_out_data (XSTRING (filename)->data);
2027 Vpurify_flag = tem;
2029 return Qnil;
2032 #else /* not HAVE_SHM */
2034 DEFUN ("dump-emacs", Fdump_emacs, Sdump_emacs, 2, 2, 0,
2035 doc: /* Dump current state of Emacs into executable file FILENAME.
2036 Take symbols from SYMFILE (presumably the file you executed to run Emacs).
2037 This is used in the file `loadup.el' when building Emacs.
2039 You must run Emacs in batch mode in order to dump it. */)
2040 (filename, symfile)
2041 Lisp_Object filename, symfile;
2043 extern char my_edata[];
2044 Lisp_Object tem;
2045 Lisp_Object symbol;
2046 int count = BINDING_STACK_SIZE ();
2048 check_pure_size ();
2050 if (! noninteractive)
2051 error ("Dumping Emacs works only in batch mode");
2053 /* Bind `command-line-processed' to nil before dumping,
2054 so that the dumped Emacs will process its command line
2055 and set up to work with X windows if appropriate. */
2056 symbol = intern ("command-line-process");
2057 specbind (symbol, Qnil);
2059 CHECK_STRING (filename);
2060 filename = Fexpand_file_name (filename, Qnil);
2061 if (!NILP (symfile))
2063 CHECK_STRING (symfile);
2064 if (XSTRING (symfile)->size)
2065 symfile = Fexpand_file_name (symfile, Qnil);
2068 tem = Vpurify_flag;
2069 Vpurify_flag = Qnil;
2071 #ifdef HAVE_TZSET
2072 set_time_zone_rule (dump_tz);
2073 #ifndef LOCALTIME_CACHE
2074 /* Force a tz reload, since set_time_zone_rule doesn't. */
2075 tzset ();
2076 #endif
2077 #endif
2079 fflush (stdout);
2080 #ifdef VMS
2081 mapout_data (XSTRING (filename)->data);
2082 #else
2083 /* Tell malloc where start of impure now is. */
2084 /* Also arrange for warnings when nearly out of space. */
2085 #ifndef SYSTEM_MALLOC
2086 #ifndef WINDOWSNT
2087 /* On Windows, this was done before dumping, and that once suffices.
2088 Meanwhile, my_edata is not valid on Windows. */
2089 memory_warnings (my_edata, malloc_warning);
2090 #endif /* not WINDOWSNT */
2091 #endif
2092 #ifdef DOUG_LEA_MALLOC
2093 malloc_state_ptr = malloc_get_state ();
2094 #endif
2096 #ifdef USE_MMAP_FOR_BUFFERS
2097 mmap_set_vars (0);
2098 #endif
2099 unexec (XSTRING (filename)->data,
2100 !NILP (symfile) ? XSTRING (symfile)->data : 0, my_edata, 0, 0);
2101 #ifdef USE_MMAP_FOR_BUFFERS
2102 mmap_set_vars (1);
2103 #endif
2104 #ifdef DOUG_LEA_MALLOC
2105 free (malloc_state_ptr);
2106 #endif
2107 #endif /* not VMS */
2109 Vpurify_flag = tem;
2111 return unbind_to (count, Qnil);
2114 #endif /* not HAVE_SHM */
2116 #endif /* not CANNOT_DUMP */
2118 #if HAVE_SETLOCALE
2119 /* Recover from setlocale (LC_ALL, ""). */
2120 void
2121 fixup_locale ()
2123 /* The Emacs Lisp reader needs LC_NUMERIC to be "C",
2124 so that numbers are read and printed properly for Emacs Lisp. */
2125 setlocale (LC_NUMERIC, "C");
2128 /* Set system locale CATEGORY, with previous locale *PLOCALE, to
2129 DESIRED_LOCALE. */
2130 static void
2131 synchronize_locale (category, plocale, desired_locale)
2132 int category;
2133 Lisp_Object *plocale;
2134 Lisp_Object desired_locale;
2136 if (! EQ (*plocale, desired_locale))
2138 *plocale = desired_locale;
2139 setlocale (category, (STRINGP (desired_locale)
2140 ? (char *)(XSTRING (desired_locale)->data)
2141 : ""));
2145 /* Set system time locale to match Vsystem_time_locale, if possible. */
2146 void
2147 synchronize_system_time_locale ()
2149 synchronize_locale (LC_TIME, &Vprevious_system_time_locale,
2150 Vsystem_time_locale);
2153 /* Set system messages locale to match Vsystem_messages_locale, if
2154 possible. */
2155 void
2156 synchronize_system_messages_locale ()
2158 #ifdef LC_MESSAGES
2159 synchronize_locale (LC_MESSAGES, &Vprevious_system_messages_locale,
2160 Vsystem_messages_locale);
2161 #endif
2163 #endif /* HAVE_SETLOCALE */
2165 #ifndef SEPCHAR
2166 #define SEPCHAR ':'
2167 #endif
2169 Lisp_Object
2170 decode_env_path (evarname, defalt)
2171 char *evarname, *defalt;
2173 register char *path, *p;
2174 Lisp_Object lpath, element, tem;
2176 /* It's okay to use getenv here, because this function is only used
2177 to initialize variables when Emacs starts up, and isn't called
2178 after that. */
2179 if (evarname != 0)
2180 path = (char *) getenv (evarname);
2181 else
2182 path = 0;
2183 if (!path)
2184 path = defalt;
2185 #ifdef DOS_NT
2186 /* Ensure values from the environment use the proper directory separator. */
2187 if (path)
2189 p = alloca (strlen (path) + 1);
2190 strcpy (p, path);
2191 path = p;
2193 if ('/' == DIRECTORY_SEP)
2194 dostounix_filename (path);
2195 else
2196 unixtodos_filename (path);
2198 #endif
2199 lpath = Qnil;
2200 while (1)
2202 p = index (path, SEPCHAR);
2203 if (!p) p = path + strlen (path);
2204 element = (p - path ? make_string (path, p - path)
2205 : build_string ("."));
2207 /* Add /: to the front of the name
2208 if it would otherwise be treated as magic. */
2209 tem = Ffind_file_name_handler (element, Qt);
2210 if (! NILP (tem))
2211 element = concat2 (build_string ("/:"), element);
2213 lpath = Fcons (element, lpath);
2214 if (*p)
2215 path = p + 1;
2216 else
2217 break;
2219 return Fnreverse (lpath);
2222 void
2223 syms_of_emacs ()
2225 Qfile_name_handler_alist = intern ("file-name-handler-alist");
2226 staticpro (&Qfile_name_handler_alist);
2228 #ifndef CANNOT_DUMP
2229 #ifdef HAVE_SHM
2230 defsubr (&Sdump_emacs_data);
2231 #else
2232 defsubr (&Sdump_emacs);
2233 #endif
2234 #endif
2236 defsubr (&Skill_emacs);
2238 defsubr (&Sinvocation_name);
2239 defsubr (&Sinvocation_directory);
2241 DEFVAR_LISP ("command-line-args", &Vcommand_line_args,
2242 doc: /* Args passed by shell to Emacs, as a list of strings. */);
2244 DEFVAR_LISP ("system-type", &Vsystem_type,
2245 doc: /* Value is symbol indicating type of operating system you are using. */);
2246 Vsystem_type = intern (SYSTEM_TYPE);
2248 DEFVAR_LISP ("system-configuration", &Vsystem_configuration,
2249 doc: /* Value is string indicating configuration Emacs was built for.
2250 On MS-Windows, the value reflects the OS flavor and version on which
2251 Emacs is running. */);
2252 Vsystem_configuration = build_string (EMACS_CONFIGURATION);
2254 DEFVAR_LISP ("system-configuration-options", &Vsystem_configuration_options,
2255 doc: /* String containing the configuration options Emacs was built with. */);
2256 Vsystem_configuration_options = build_string (EMACS_CONFIG_OPTIONS);
2258 DEFVAR_BOOL ("noninteractive", &noninteractive1,
2259 doc: /* Non-nil means Emacs is running without interactive terminal. */);
2261 DEFVAR_LISP ("kill-emacs-hook", &Vkill_emacs_hook,
2262 doc: /* Hook to be run whenever kill-emacs is called.
2263 Since kill-emacs may be invoked when the terminal is disconnected (or
2264 in other similar situations), functions placed on this hook should not
2265 expect to be able to interact with the user. To ask for confirmation,
2266 see `kill-emacs-query-functions' instead. */);
2267 Vkill_emacs_hook = Qnil;
2269 empty_string = build_string ("");
2270 staticpro (&empty_string);
2272 #ifdef SIGUSR1
2273 DEFVAR_LISP ("signal-USR1-hook", &Vsignal_USR1_hook,
2274 doc: /* Hook to be run whenever emacs receives a USR1 signal. */);
2275 Vsignal_USR1_hook = Qnil;
2276 #ifdef SIGUSR2
2277 DEFVAR_LISP ("signal-USR2-hook", &Vsignal_USR2_hook,
2278 doc: /* Hook to be run whenever emacs receives a USR2 signal. */);
2279 Vsignal_USR2_hook = Qnil;
2280 #endif
2281 #endif
2284 DEFVAR_INT ("emacs-priority", &emacs_priority,
2285 doc: /* Priority for Emacs to run at.
2286 This value is effective only if set before Emacs is dumped,
2287 and only if the Emacs executable is installed with setuid to permit
2288 it to change priority. (Emacs sets its uid back to the real uid.)
2289 Currently, you need to define SET_EMACS_PRIORITY in `config.h'
2290 before you compile Emacs, to enable the code for this feature. */);
2291 emacs_priority = 0;
2293 DEFVAR_LISP ("path-separator", &Vpath_separator,
2294 doc: /* The directory separator in search paths, as a string. */);
2296 char c = SEPCHAR;
2297 Vpath_separator = make_string (&c, 1);
2300 DEFVAR_LISP ("invocation-name", &Vinvocation_name,
2301 doc: /* The program name that was used to run Emacs.
2302 Any directory names are omitted. */);
2304 DEFVAR_LISP ("invocation-directory", &Vinvocation_directory,
2305 doc: /* The directory in which the Emacs executable was found, to run it.
2306 The value is nil if that directory's name is not known. */);
2308 DEFVAR_LISP ("installation-directory", &Vinstallation_directory,
2309 doc: /* A directory within which to look for the `lib-src' and `etc' directories.
2310 This is non-nil when we can't find those directories in their standard
2311 installed locations, but we can find them
2312 near where the Emacs executable was found. */);
2313 Vinstallation_directory = Qnil;
2315 DEFVAR_LISP ("system-messages-locale", &Vsystem_messages_locale,
2316 doc: /* System locale for messages. */);
2317 Vsystem_messages_locale = Qnil;
2319 DEFVAR_LISP ("previous-system-messages-locale",
2320 &Vprevious_system_messages_locale,
2321 doc: /* Most recently used system locale for messages. */);
2322 Vprevious_system_messages_locale = Qnil;
2324 DEFVAR_LISP ("system-time-locale", &Vsystem_time_locale,
2325 doc: /* System locale for time. */);
2326 Vsystem_time_locale = Qnil;
2328 DEFVAR_LISP ("previous-system-time-locale", &Vprevious_system_time_locale,
2329 doc: /* Most recently used system locale for time. */);
2330 Vprevious_system_time_locale = Qnil;