add version to obsolete variables.
[bpt/emacs.git] / src / emacs.c
CommitLineData
f927c5ae 1/* Fully extensible Emacs, running on Unix, intended for GNU.
68c45bf0 2 Copyright (C) 1985,86,87,93,94,95,97,98,1999 Free Software Foundation, Inc.
f927c5ae
JB
3
4This file is part of GNU Emacs.
5
6GNU Emacs is free software; you can redistribute it and/or modify
7it under the terms of the GNU General Public License as published by
40be253a 8the Free Software Foundation; either version 2, or (at your option)
f927c5ae
JB
9any later version.
10
11GNU Emacs is distributed in the hope that it will be useful,
12but WITHOUT ANY WARRANTY; without even the implied warranty of
13MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14GNU General Public License for more details.
15
16You should have received a copy of the GNU General Public License
17along with GNU Emacs; see the file COPYING. If not, write to
5a7670bf
RS
18the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
19Boston, MA 02111-1307, USA. */
f927c5ae
JB
20
21
68c45bf0 22#include <config.h>
f927c5ae
JB
23#include <signal.h>
24#include <errno.h>
f927c5ae
JB
25#include <stdio.h>
26
27#include <sys/types.h>
28#include <sys/file.h>
29
30#ifdef VMS
31#include <ssdef.h>
32#endif
33
cda4a5fd
GM
34#ifdef HAVE_UNISTD_H
35#include <unistd.h>
36#endif
37
488b7cb3 38#ifdef BSD_SYSTEM
f927c5ae
JB
39#include <sys/ioctl.h>
40#endif
41
f927c5ae
JB
42#include "lisp.h"
43#include "commands.h"
bef79ee4 44#include "intervals.h"
a08a816a 45#include "buffer.h"
f927c5ae 46
edc8ae07 47#include "systty.h"
6c3a4e9d 48#include "blockinput.h"
8090eb09 49#include "syssignal.h"
6c362a8b 50#include "process.h"
5bda49c6 51#include "termhooks.h"
dfcf069d 52#include "keyboard.h"
a41f8bed 53
68c45bf0
PE
54#ifdef HAVE_SETLOCALE
55#include <locale.h>
56#endif
57
53c58b5d
RS
58#ifdef HAVE_SETRLIMIT
59#include <sys/time.h>
60#include <sys/resource.h>
61#endif
62
f927c5ae
JB
63#ifndef O_RDWR
64#define O_RDWR 2
65#endif
66
f95c3f91 67#ifdef HAVE_SETPGID
2b7e8799 68#if !defined (USG) || defined (BSD_PGRPS)
90553aa3 69#undef setpgrp
f95c3f91
GM
70#define setpgrp setpgid
71#endif
2b7e8799 72#endif
f95c3f91 73
90553aa3
DL
74extern void malloc_warning P_ ((char *));
75extern void set_time_zone_rule P_ ((char *));
8892f40b
GM
76#ifdef HAVE_INDEX
77extern char *index P_ ((const char *, int));
78#endif
43165242 79
30aa3f19
GM
80/* Make these values available in GDB, which doesn't see macros. */
81
82EMACS_INT gdb_valbits = VALBITS;
83EMACS_INT gdb_gctypebits = GCTYPEBITS;
84EMACS_INT gdb_emacs_intbits = sizeof (EMACS_INT) * BITS_PER_CHAR;
85#ifdef DATA_SEG_BITS
86EMACS_INT gdb_data_seg_bits = DATA_SEG_BITS;
87#else
88EMACS_INT gdb_data_seg_bits = 0;
89#endif
00da0e4a 90EMACS_INT PVEC_FLAG = PSEUDOVECTOR_FLAG;
30aa3f19 91
f927c5ae
JB
92/* Command line args from shell, as list of strings */
93Lisp_Object Vcommand_line_args;
94
59653951
JB
95/* The name under which Emacs was invoked, with any leading directory
96 names discarded. */
97Lisp_Object Vinvocation_name;
98
ace40a69
RS
99/* The directory name from which Emacs was invoked. */
100Lisp_Object Vinvocation_directory;
101
07f4d123
RS
102/* The directory name in which to find subdirs such as lisp and etc.
103 nil means get them only from PATH_LOADSEARCH. */
104Lisp_Object Vinstallation_directory;
105
e5d77022
JB
106/* Hook run by `kill-emacs' before it does really anything. */
107Lisp_Object Vkill_emacs_hook;
108
7317d9e8
RS
109#ifdef SIGUSR1
110/* Hooks for signal USR1 and USR2 handing */
111Lisp_Object Vsignal_USR1_hook;
112#ifdef SIGUSR2
113Lisp_Object Vsignal_USR2_hook;
114#endif
115#endif
116
074a066b
GV
117/* Search path separator. */
118Lisp_Object Vpath_separator;
119
f927c5ae
JB
120/* Set nonzero after Emacs has started up the first time.
121 Prevents reinitialization of the Lisp world and keymaps
122 on subsequent starts. */
123int initialized;
124
15aaf1b5
RS
125#ifdef DOUG_LEA_MALLOC
126/* Preserves a pointer to the memory allocated that copies that
127 static data inside glibc's malloc. */
128void *malloc_state_ptr;
129/* From glibc, a routine that returns a copy of the malloc internal state. */
130extern void *malloc_get_state ();
131/* From glibc, a routine that overwrites the malloc internal state. */
132extern void malloc_set_state ();
7c9cd446
AS
133/* Non-zero if the MALLOC_CHECK_ enviroment variable was set while
134 dumping. Used to work around a bug in glibc's malloc. */
135int malloc_using_checking;
15aaf1b5
RS
136#endif
137
271c7b7c 138/* Variable whose value is symbol giving operating system type. */
f927c5ae 139Lisp_Object Vsystem_type;
271c7b7c
RS
140
141/* Variable whose value is string giving configuration built for. */
142Lisp_Object Vsystem_configuration;
f0fc0b1a
KH
143
144/* Variable whose value is string giving configuration options,
145 for use when reporting bugs. */
146Lisp_Object Vsystem_configuration_options;
147
213d0b1f
RS
148Lisp_Object Qfile_name_handler_alist;
149
68c45bf0 150/* Current and previous system locales for messages and time. */
ca9c0567
PE
151Lisp_Object Vsystem_messages_locale;
152Lisp_Object Vprevious_system_messages_locale;
153Lisp_Object Vsystem_time_locale;
154Lisp_Object Vprevious_system_time_locale;
68c45bf0 155
f927c5ae
JB
156/* If non-zero, emacs should not attempt to use an window-specific code,
157 but instead should use the virtual terminal under which it was started */
158int inhibit_window_system;
159
5aa7f46a
JB
160/* If nonzero, set Emacs to run at this priority. This is also used
161 in child_setup and sys_suspend to make sure subshells run at normal
162 priority; Those functions have their own extern declaration. */
3005da00
RS
163int emacs_priority;
164
7074fde6
FP
165/* If non-zero a filter or a sentinel is running. Tested to save the match
166 data on the first attempt to change it inside asynchronous code. */
167int running_asynch_code;
168
647cec74 169#ifdef BSD_PGRPS
9ae8f997
JB
170/* See sysdep.c. */
171extern int inherited_pgroup;
172#endif
173
f927c5ae
JB
174#ifdef HAVE_X_WINDOWS
175/* If non-zero, -d was specified, meaning we're using some window system. */
176int display_arg;
177#endif
178
179/* An address near the bottom of the stack.
180 Tells GC how to save a copy of the stack. */
181char *stack_bottom;
182
8ba50e1a 183#ifdef HAVE_WINDOW_SYSTEM
f927c5ae 184extern Lisp_Object Vwindow_system;
8ba50e1a 185#endif /* HAVE_WINDOW_SYSTEM */
f927c5ae 186
1090a161
RS
187extern Lisp_Object Vauto_save_list_file_name;
188
f927c5ae
JB
189#ifdef USG_SHARED_LIBRARIES
190/* If nonzero, this is the place to put the end of the writable segment
191 at startup. */
192
193unsigned int bss_end = 0;
194#endif
195
196/* Nonzero means running Emacs without interactive terminal. */
197
198int noninteractive;
199
200/* Value of Lisp variable `noninteractive'.
201 Normally same as C variable `noninteractive'
202 but nothing terrible happens if user sets this one. */
203
204int noninteractive1;
e29f86e4
RS
205
206/* Save argv and argc. */
207char **initial_argv;
208int initial_argc;
081bef73
RS
209
210static void sort_args ();
dfcf069d 211void syms_of_emacs ();
bd4590ba 212
73ebcd25 213#define USAGE1 "\
bd4590ba
GM
214Usage: %s [OPTION-OR-FILENAME]...\n\
215\n\
216Run Emacs, the extensible, customizable, self-documenting real-time\n\
217display editor. The recommended way to start Emacs for normal editing\n\
218is with no options at all.\n\
219\n\
220Run M-x info RET m emacs RET m command arguments RET inside Emacs to\n\
221read the main documentation for these command-line arguments.\n\
222\n\
223Initialization options:\n\
224\n\
225--batch do not do interactive display; implies -q\n\
226--debug-init enable Emacs Lisp debugger during init file\n\
227--help display this help message and exit\n\
228--multibyte, --no-unibyte run Emacs in multibyte mode\n\
229--no-init-file, -q load neither ~/.emacs nor default.el\n\
230--no-shared-memory, -nl do not use shared memory\n\
231--no-site-file do not load site-start.el\n\
232--no-windows, -nw don't communicate with X, ignoring $DISPLAY\n\
233--terminal, -t DEVICE use DEVICE for terminal I/O\n\
234--unibyte, --no-multibyte run Emacs in unibyte mode\n\
235--user, -u USER load ~USER/.emacs instead of your own\n\
236--version display version information and exit\n\
237\n\
238Action options:\n\
239\n\
240FILE visit FILE using find-file\n\
241+LINENUM FILE visit FILE using find-file, then go to line LINENUM\n\
242--directory, -L DIR add DIR to variable load-path\n\
243--eval EXPR evaluate Emacs Lisp expression EXPR\n\
244--execute EXPR evaluate Emacs Lisp expression EXPR\n\
245--find-file FILE visit FILE\n\
246--funcall, -f FUNC call Emacs function FUNC with no arguments\n\
247--insert FILE insert contents of FILE into current buffer\n\
248--kill exit without asking for confirmation\n\
249--load, -l FILE load FILE of Emacs Lisp code using the load function\n\
250--visit FILE visit FILE\n\
73ebcd25
AI
251\n"
252
253#define USAGE2 "\
5b2ca26b 254Display options:\n\
bd4590ba
GM
255\n\
256--background-color, -bg COLOR window background color\n\
257--border-color, -bd COLOR main border color\n\
258--border-width, -bw WIDTH width of main border\n\
259--cursor-color, -cr COLOR color of the Emacs cursor indicating point\n\
260--display, -d DISPLAY use X server DISPLAY\n\
261--font, -fn FONT default font; must be fixed-widthp\n\
262--foreground-color, -fg COLOR window foreground color\n\
263--geometry, -g GEOMETRY window geometry\n\
264--iconic start Emacs in iconified state\n\
265--icon-type, -i use picture of gnu for Emacs icon\n\
266--internal-border, -ib WIDTH width between text and main border\n\
ecb5709c 267--line-spacing, -lsp PIXELS additional space to put between lines\n\
bd4590ba
GM
268--mouse-color, -ms COLOR mouse cursor color in Emacs window\n\
269--name NAME title of main Emacs window\n\
270--reverse-video, -r, -rv switch foreground and background\n\
271--title, -T, -wn, TITLE title for Emacs windows\n\
272--vertical-scroll-bars, -vb enable vertical scroll bars\n\
273--xrm XRESOURCES set additional X resources\n\
274\n\
275You can generally also specify long option names with a single -; for\n\
276example, -batch as well as --batch. You can use any unambiguous\n\
277abbreviation for a --option.\n\
278\n\
279Various environment variables and window system resources also affect\n\
280Emacs' operation. See the main documentation.\n\
281\n\
282Report bugs to bug-gnu-emacs@gnu.org. First, please see the Bugs\n\
283section of the Emacs manual or the file BUGS.\n"
284
f927c5ae
JB
285\f
286/* Signal code for the fatal signal that was received */
287int fatal_error_code;
288
289/* Nonzero if handling a fatal error already */
290int fatal_error_in_progress;
291
7317d9e8 292#ifdef SIGUSR1
7317d9e8
RS
293SIGTYPE
294handle_USR1_signal (sig)
295 int sig;
296{
5bda49c6
RS
297 struct input_event buf;
298
75816372 299 bzero (&buf, sizeof buf);
5b50dae1 300 buf.kind = USER_SIGNAL_EVENT;
74c2d1c6 301 buf.frame_or_window = selected_frame;
5bda49c6
RS
302
303 kbd_buffer_store_event (&buf);
7317d9e8 304}
5bda49c6 305#endif /* SIGUSR1 */
fcf01ad3 306
7317d9e8 307#ifdef SIGUSR2
7317d9e8
RS
308SIGTYPE
309handle_USR2_signal (sig)
310 int sig;
311{
5bda49c6
RS
312 struct input_event buf;
313
75816372 314 bzero (&buf, sizeof buf);
5b50dae1 315 buf.kind = USER_SIGNAL_EVENT;
e2fa15ff 316 buf.code = 1;
74c2d1c6 317 buf.frame_or_window = selected_frame;
5bda49c6
RS
318
319 kbd_buffer_store_event (&buf);
7317d9e8 320}
5bda49c6 321#endif /* SIGUSR2 */
7317d9e8 322
9ab8560d 323/* Handle bus errors, invalid instruction, etc. */
2447c626 324SIGTYPE
f927c5ae
JB
325fatal_error_signal (sig)
326 int sig;
327{
f927c5ae
JB
328 fatal_error_code = sig;
329 signal (sig, SIG_DFL);
330
061b7f94
RS
331 TOTALLY_UNBLOCK_INPUT;
332
f927c5ae 333 /* If fatal error occurs in code below, avoid infinite recursion. */
8090eb09
JB
334 if (! fatal_error_in_progress)
335 {
336 fatal_error_in_progress = 1;
f927c5ae 337
f7ab4e3d 338 shut_down_emacs (sig, 0, Qnil);
8090eb09 339 }
f927c5ae
JB
340
341#ifdef VMS
f927c5ae
JB
342 LIB$STOP (SS$_ABORT);
343#else
8090eb09
JB
344 /* Signal the same code; this time it will really be fatal.
345 Remember that since we're in a signal handler, the signal we're
346 going to send is probably blocked, so we have to unblock it if we
347 want to really receive it. */
29b89fe0 348#ifndef MSDOS
a90538cb 349 sigunblock (sigmask (fatal_error_code));
29b89fe0 350#endif
f927c5ae
JB
351 kill (getpid (), fatal_error_code);
352#endif /* not VMS */
353}
271c7b7c
RS
354
355#ifdef SIGDANGER
356
16c323ee 357/* Handler for SIGDANGER. */
271c7b7c
RS
358SIGTYPE
359memory_warning_signal (sig)
360 int sig;
361{
362 signal (sig, memory_warning_signal);
363
364 malloc_warning ("Operating system warns that virtual memory is running low.\n");
55796183
RS
365
366 /* It might be unsafe to call do_auto_save now. */
367 force_auto_save_soon ();
271c7b7c
RS
368}
369#endif
fcf01ad3
RS
370
371/* We define abort, rather than using it from the library,
c9fe9cce
KH
372 so that GDB can return from a breakpoint here.
373 MSDOS has its own definition on msdos.c */
fcf01ad3 374
37e2fdd2 375#if ! defined (DOS_NT) && ! defined (NO_ABORT)
ca9c0567
PE
376
377#ifndef ABORT_RETURN_TYPE
378#define ABORT_RETURN_TYPE void
379#endif
380
381ABORT_RETURN_TYPE
fcf01ad3
RS
382abort ()
383{
384 kill (getpid (), SIGABRT);
37e2fdd2
RS
385 /* This shouldn't be executed, but it prevents a warning. */
386 exit (1);
fcf01ad3 387}
c9fe9cce 388#endif
fcf01ad3 389
f927c5ae
JB
390\f
391/* Code for dealing with Lisp access to the Unix command line */
392
dfcf069d 393static void
f927c5ae
JB
394init_cmdargs (argc, argv, skip_args)
395 int argc;
396 char **argv;
397 int skip_args;
398{
399 register int i;
213d0b1f
RS
400 Lisp_Object name, dir, tem;
401 int count = specpdl_ptr - specpdl;
402 Lisp_Object raw_name;
f927c5ae 403
e29f86e4
RS
404 initial_argv = argv;
405 initial_argc = argc;
406
213d0b1f
RS
407 raw_name = build_string (argv[0]);
408
409 /* Add /: to the front of the name
410 if it would otherwise be treated as magic. */
411 tem = Ffind_file_name_handler (raw_name, Qt);
412 if (! NILP (tem))
413 raw_name = concat2 (build_string ("/:"), raw_name);
414
415 Vinvocation_name = Ffile_name_nondirectory (raw_name);
416 Vinvocation_directory = Ffile_name_directory (raw_name);
417
ace40a69
RS
418 /* If we got no directory in argv[0], search PATH to find where
419 Emacs actually came from. */
420 if (NILP (Vinvocation_directory))
421 {
422 Lisp_Object found;
423 int yes = openp (Vexec_path, Vinvocation_name,
6c362a8b 424 EXEC_SUFFIXES, &found, 1);
e443f843 425 if (yes == 1)
213d0b1f
RS
426 {
427 /* Add /: to the front of the name
428 if it would otherwise be treated as magic. */
429 tem = Ffind_file_name_handler (found, Qt);
430 if (! NILP (tem))
431 found = concat2 (build_string ("/:"), found);
432 Vinvocation_directory = Ffile_name_directory (found);
433 }
ace40a69 434 }
59653951 435
4133b300
RS
436 if (!NILP (Vinvocation_directory)
437 && NILP (Ffile_name_absolute_p (Vinvocation_directory)))
213d0b1f
RS
438 /* Emacs was started with relative path, like ./emacs.
439 Make it absolute. */
4133b300
RS
440 Vinvocation_directory = Fexpand_file_name (Vinvocation_directory, Qnil);
441
07f4d123
RS
442 Vinstallation_directory = Qnil;
443
444 if (!NILP (Vinvocation_directory))
445 {
446 dir = Vinvocation_directory;
447 name = Fexpand_file_name (Vinvocation_name, dir);
448 while (1)
449 {
f5ab9736 450 Lisp_Object tem, lib_src_exists;
07f4d123
RS
451 Lisp_Object etc_exists, info_exists;
452
f5ab9736
RS
453 /* See if dir contains subdirs for use by Emacs.
454 Check for the ones that would exist in a build directory,
455 not including lisp and info. */
456 tem = Fexpand_file_name (build_string ("lib-src"), dir);
457 lib_src_exists = Ffile_exists_p (tem);
de004cc6 458
70344b34 459#ifdef MSDOS
de004cc6
RS
460 /* MSDOS installations frequently remove lib-src, but we still
461 must set installation-directory, or else info won't find
462 its files (it uses the value of installation-directory). */
463 tem = Fexpand_file_name (build_string ("info"), dir);
464 info_exists = Ffile_exists_p (tem);
70344b34
EZ
465#else
466 info_exists = Qnil;
467#endif
de004cc6
RS
468
469 if (!NILP (lib_src_exists) || !NILP (info_exists))
07f4d123 470 {
f5ab9736
RS
471 tem = Fexpand_file_name (build_string ("etc"), dir);
472 etc_exists = Ffile_exists_p (tem);
473 if (!NILP (etc_exists))
07f4d123 474 {
f5ab9736
RS
475 Vinstallation_directory
476 = Ffile_name_as_directory (dir);
477 break;
07f4d123
RS
478 }
479 }
480
481 /* See if dir's parent contains those subdirs. */
f5ab9736
RS
482 tem = Fexpand_file_name (build_string ("../lib-src"), dir);
483 lib_src_exists = Ffile_exists_p (tem);
de004cc6 484
70344b34
EZ
485
486#ifdef MSDOS
487 /* See the MSDOS commentary above. */
de004cc6
RS
488 tem = Fexpand_file_name (build_string ("../info"), dir);
489 info_exists = Ffile_exists_p (tem);
70344b34
EZ
490#else
491 info_exists = Qnil;
492#endif
de004cc6
RS
493
494 if (!NILP (lib_src_exists) || !NILP (info_exists))
07f4d123 495 {
f5ab9736
RS
496 tem = Fexpand_file_name (build_string ("../etc"), dir);
497 etc_exists = Ffile_exists_p (tem);
498 if (!NILP (etc_exists))
07f4d123 499 {
f5ab9736
RS
500 tem = Fexpand_file_name (build_string (".."), dir);
501 Vinstallation_directory
502 = Ffile_name_as_directory (tem);
503 break;
07f4d123
RS
504 }
505 }
506
507 /* If the Emacs executable is actually a link,
508 next try the dir that the link points into. */
509 tem = Ffile_symlink_p (name);
510 if (!NILP (tem))
511 {
260ec24d 512 name = Fexpand_file_name (tem, dir);
07f4d123
RS
513 dir = Ffile_name_directory (name);
514 }
515 else
516 break;
517 }
518 }
519
f927c5ae
JB
520 Vcommand_line_args = Qnil;
521
522 for (i = argc - 1; i >= 0; i--)
523 {
524 if (i == 0 || i > skip_args)
525 Vcommand_line_args
526 = Fcons (build_string (argv[i]), Vcommand_line_args);
527 }
213d0b1f
RS
528
529 unbind_to (count, Qnil);
f927c5ae 530}
59653951
JB
531
532DEFUN ("invocation-name", Finvocation_name, Sinvocation_name, 0, 0, 0,
533 "Return the program name that was used to run Emacs.\n\
534Any directory names are omitted.")
535 ()
536{
537 return Fcopy_sequence (Vinvocation_name);
538}
539
ace40a69
RS
540DEFUN ("invocation-directory", Finvocation_directory, Sinvocation_directory,
541 0, 0, 0,
542 "Return the directory name in which the Emacs executable was located")
543 ()
544{
545 return Fcopy_sequence (Vinvocation_directory);
546}
547
f927c5ae
JB
548\f
549#ifdef VMS
550#ifdef LINK_CRTL_SHARE
34035df3 551#ifdef SHARABLE_LIB_BUG
f927c5ae 552extern noshare char **environ;
34035df3 553#endif /* SHARABLE_LIB_BUG */
f927c5ae
JB
554#endif /* LINK_CRTL_SHARE */
555#endif /* VMS */
556
0269dedb
RS
557#ifdef HAVE_TZSET
558/* A valid but unlikely value for the TZ environment value.
559 It is OK (though a bit slower) if the user actually chooses this value. */
560static char dump_tz[] = "UtC0";
561#endif
562
a90538cb 563#ifndef ORDINARY_LINK
efd241cc
RS
564/* We don't include crtbegin.o and crtend.o in the link,
565 so these functions and variables might be missed.
566 Provide dummy definitions to avoid error.
567 (We don't have any real constructors or destructors.) */
568#ifdef __GNUC__
46e65b73 569#ifndef GCC_CTORS_IN_LIBC
dfcf069d 570void __do_global_ctors ()
efd241cc 571{}
dfcf069d 572void __do_global_ctors_aux ()
c83a7064 573{}
dfcf069d 574void __do_global_dtors ()
33143604 575{}
64c1864a
RS
576/* Linux has a bug in its library; avoid an error. */
577#ifndef LINUX
c83a7064 578char * __CTOR_LIST__[2] = { (char *) (-1), 0 };
64c1864a 579#endif
c83a7064 580char * __DTOR_LIST__[2] = { (char *) (-1), 0 };
46e65b73 581#endif /* GCC_CTORS_IN_LIBC */
dfcf069d 582void __main ()
efd241cc 583{}
efd241cc 584#endif /* __GNUC__ */
a90538cb 585#endif /* ORDINARY_LINK */
efd241cc 586
e2925360
KH
587/* Test whether the next argument in ARGV matches SSTR or a prefix of
588 LSTR (at least MINLEN characters). If so, then if VALPTR is non-null
589 (the argument is supposed to have a value) store in *VALPTR either
590 the next argument or the portion of this one after the equal sign.
591 ARGV is read starting at position *SKIPPTR; this index is advanced
592 by the number of arguments used.
593
594 Too bad we can't just use getopt for all of this, but we don't have
595 enough information to do it right. */
081bef73 596
e2925360 597static int
df6530f8 598argmatch (argv, argc, sstr, lstr, minlen, valptr, skipptr)
e2925360 599 char **argv;
df6530f8 600 int argc;
e2925360
KH
601 char *sstr;
602 char *lstr;
603 int minlen;
604 char **valptr;
605 int *skipptr;
606{
6bbd7a29 607 char *p = NULL;
e2925360 608 int arglen;
df6530f8
RS
609 char *arg;
610
611 /* Don't access argv[argc]; give up in advance. */
612 if (argc <= *skipptr + 1)
613 return 0;
614
615 arg = argv[*skipptr+1];
e2925360
KH
616 if (arg == NULL)
617 return 0;
618 if (strcmp (arg, sstr) == 0)
619 {
620 if (valptr != NULL)
621 {
622 *valptr = argv[*skipptr+2];
623 *skipptr += 2;
624 }
625 else
626 *skipptr += 1;
627 return 1;
628 }
629 arglen = (valptr != NULL && (p = index (arg, '=')) != NULL
630 ? p - arg : strlen (arg));
c03e1113 631 if (lstr == 0 || arglen < minlen || strncmp (arg, lstr, arglen) != 0)
e2925360
KH
632 return 0;
633 else if (valptr == NULL)
634 {
635 *skipptr += 1;
636 return 1;
637 }
638 else if (p != NULL)
639 {
640 *valptr = p+1;
641 *skipptr += 1;
642 return 1;
643 }
644 else if (argv[*skipptr+2] != NULL)
645 {
646 *valptr = argv[*skipptr+2];
647 *skipptr += 2;
648 return 1;
649 }
650 else
651 {
652 return 0;
653 }
654}
655
b6779252 656#ifdef DOUG_LEA_MALLOC
f927c5ae 657
b6779252
KH
658/* malloc can be invoked even before main (e.g. by the dynamic
659 linker), so the dumped malloc state must be restored as early as
660 possible using this special hook. */
661
662static void
663malloc_initialize_hook ()
664{
1f9c3929 665#ifndef USE_CRT_DLL
b6779252 666 extern char **environ;
1f9c3929 667#endif
6000fe37 668
15aaf1b5
RS
669 if (initialized)
670 {
7c9cd446
AS
671 if (!malloc_using_checking)
672 /* Work around a bug in glibc's malloc. MALLOC_CHECK_ must be
673 ignored if the heap to be restored was constructed without
d942e12a
AS
674 malloc checking. Can't use unsetenv, since that calls malloc. */
675 {
676 char **p;
677
b6779252 678 for (p = environ; *p; p++)
d942e12a
AS
679 if (strncmp (*p, "MALLOC_CHECK_=", 14) == 0)
680 {
681 do
682 *p = p[1];
683 while (*++p);
684 break;
685 }
686 }
b6779252 687
15aaf1b5
RS
688 malloc_set_state (malloc_state_ptr);
689 free (malloc_state_ptr);
690 }
7c9cd446
AS
691 else
692 malloc_using_checking = getenv ("MALLOC_CHECK_") != NULL;
b6779252
KH
693}
694
695void (*__malloc_initialize_hook) () = malloc_initialize_hook;
696
697#endif /* DOUG_LEA_MALLOC */
698
699/* ARGSUSED */
700int
701main (argc, argv, envp)
702 int argc;
703 char **argv;
704 char **envp;
705{
2313132f 706#if GC_MARK_STACK
39ec21ea
GM
707 Lisp_Object dummy;
708#endif
b6779252 709 char stack_bottom_variable;
68c45bf0 710 int do_initial_setlocale;
b6779252 711 int skip_args = 0;
1f9c3929 712#ifndef USE_CRT_DLL
b6779252
KH
713 extern int errno;
714 extern int sys_nerr;
1f9c3929 715#endif
b6779252
KH
716#ifdef HAVE_SETRLIMIT
717 struct rlimit rlim;
718#endif
719 int no_loadup = 0;
720
2313132f 721#if GC_MARK_STACK
39ec21ea
GM
722 extern Lisp_Object *stack_base;
723 stack_base = &dummy;
724#endif
725
b6779252
KH
726#ifdef LINUX_SBRK_BUG
727 __sbrk (1);
15aaf1b5
RS
728#endif
729
d785cf9e
RS
730#ifdef RUN_TIME_REMAP
731 if (initialized)
732 run_time_remap (argv[0]);
733#endif
734
081bef73 735 sort_args (argc, argv);
956e3c7e
RS
736 argc = 0;
737 while (argv[argc]) argc++;
081bef73 738
3270ae6e
KH
739 if (argmatch (argv, argc, "-version", "--version", 3, NULL, &skip_args)
740 /* We don't know the version number unless this is a dumped Emacs.
741 So ignore --version otherwise. */
742 && initialized)
1702afef
RS
743 {
744 Lisp_Object tem;
745 tem = Fsymbol_value (intern ("emacs-version"));
746 if (!STRINGP (tem))
747 {
748 fprintf (stderr, "Invalid value of `emacs-version'\n");
749 exit (1);
750 }
751 else
752 {
30ce1583 753 printf ("GNU Emacs %s\n", XSTRING (tem)->data);
7e8e59d0 754 printf ("Copyright (C) 1999 Free Software Foundation, Inc.\n");
b455c665
RS
755 printf ("GNU Emacs comes with ABSOLUTELY NO WARRANTY.\n");
756 printf ("You may redistribute copies of Emacs\n");
757 printf ("under the terms of the GNU General Public License.\n");
758 printf ("For more information about these matters, ");
94487c4e 759 printf ("see the file named COPYING.\n");
1702afef
RS
760 exit (0);
761 }
762 }
763
f927c5ae
JB
764/* Map in shared memory, if we are using that. */
765#ifdef HAVE_SHM
df6530f8 766 if (argmatch (argv, argc, "-nl", "--no-shared-memory", 6, NULL, &skip_args))
f927c5ae
JB
767 {
768 map_in_data (0);
769 /* The shared memory was just restored, which clobbered this. */
770 skip_args = 1;
771 }
772 else
773 {
774 map_in_data (1);
775 /* The shared memory was just restored, which clobbered this. */
776 skip_args = 0;
777 }
778#endif
779
19a36ec6 780#ifdef NeXT
b9df9faa
KH
781 {
782 extern int malloc_cookie;
783 /* This helps out unexnext.c. */
784 if (initialized)
785 if (malloc_jumpstart (malloc_cookie) != 0)
786 printf ("malloc jumpstart failed!\n");
787 }
19a36ec6
RS
788#endif /* NeXT */
789
f927c5ae
JB
790#ifdef VMS
791 /* If -map specified, map the data file in */
e2925360
KH
792 {
793 char *file;
df6530f8 794 if (argmatch (argv, argc, "-map", "--map-data", 3, &mapin_file, &skip_args))
e2925360
KH
795 mapin_data (file);
796 }
f927c5ae
JB
797
798#ifdef LINK_CRTL_SHARE
34035df3 799#ifdef SHARABLE_LIB_BUG
f927c5ae
JB
800 /* Bletcherous shared libraries! */
801 if (!stdin)
802 stdin = fdopen (0, "r");
803 if (!stdout)
804 stdout = fdopen (1, "w");
805 if (!stderr)
806 stderr = fdopen (2, "w");
807 if (!environ)
808 environ = envp;
34035df3 809#endif /* SHARABLE_LIB_BUG */
f927c5ae
JB
810#endif /* LINK_CRTL_SHARE */
811#endif /* VMS */
812
ea2acec5 813#if defined (HAVE_SETRLIMIT) && defined (RLIMIT_STACK)
6c2935e9
RS
814 /* Extend the stack space available.
815 Don't do that if dumping, since some systems (e.g. DJGPP)
816 might define a smaller stack limit at that time. */
817 if (1
818#ifndef CANNOT_DUMP
819 && (!noninteractive || initialized)
820#endif
821 && !getrlimit (RLIMIT_STACK, &rlim))
53c58b5d 822 {
509a8fcd 823 long newlim;
6c2935e9 824 extern int re_max_failures;
03effc23
KH
825 /* Approximate the amount regex.c needs per unit of re_max_failures. */
826 int ratio = 20 * sizeof (char *);
827 /* Then add 33% to cover the size of the smaller stacks that regex.c
828 successively allocates and discards, on its way to the maximum. */
829 ratio += ratio / 3;
830 /* Add in some extra to cover
831 what we're likely to use for other reasons. */
832 newlim = re_max_failures * ratio + 200000;
d0381a7f
RS
833#ifdef __NetBSD__
834 /* NetBSD (at least NetBSD 1.2G and former) has a bug in its
835 stack allocation routine for new process that the allocation
836 fails if stack limit is not on page boundary. So, round up the
837 new limit to page boundary. */
838 newlim = (newlim + getpagesize () - 1) / getpagesize () * getpagesize();
839#endif
509a8fcd 840 if (newlim > rlim.rlim_max)
6c2935e9
RS
841 {
842 newlim = rlim.rlim_max;
03effc23
KH
843 /* Don't let regex.c overflow the stack we have. */
844 re_max_failures = (newlim - 200000) / ratio;
6c2935e9 845 }
509a8fcd
RS
846 if (rlim.rlim_cur < newlim)
847 rlim.rlim_cur = newlim;
848
53c58b5d
RS
849 setrlimit (RLIMIT_STACK, &rlim);
850 }
ea2acec5 851#endif /* HAVE_SETRLIMIT and RLIMIT_STACK */
53c58b5d 852
f927c5ae
JB
853 /* Record (approximately) where the stack begins. */
854 stack_bottom = &stack_bottom_variable;
855
f927c5ae
JB
856#ifdef USG_SHARED_LIBRARIES
857 if (bss_end)
1d233b80 858 brk ((void *)bss_end);
f927c5ae
JB
859#endif
860
861 clearerr (stdin);
9ae8f997 862
f927c5ae 863#ifndef SYSTEM_MALLOC
bf7f4e90
RS
864 /* Arrange to get warning messages as memory fills up. */
865 memory_warnings (0, malloc_warning);
9ac0d9e0 866
f5a3c8c4
AI
867 /* Call malloc at least once, to run the initial __malloc_hook.
868 Also call realloc and free for consistency. */
869 free (realloc (malloc (4), 4));
bf7f4e90
RS
870
871 /* Arrange to disable interrupt input inside malloc etc. */
872 uninterrupt_malloc ();
f927c5ae
JB
873#endif /* not SYSTEM_MALLOC */
874
29b89fe0
RS
875#ifdef MSDOS
876 /* We do all file input/output as binary files. When we need to translate
877 newlines, we do that manually. */
878 _fmode = O_BINARY;
18198bb2
RS
879
880#if __DJGPP__ >= 2
881 if (!isatty (fileno (stdin)))
882 setmode (fileno (stdin), O_BINARY);
883 if (!isatty (fileno (stdout)))
884 {
885 fflush (stdout);
886 setmode (fileno (stdout), O_BINARY);
887 }
888#else /* not __DJGPP__ >= 2 */
29b89fe0
RS
889 (stdin)->_flag &= ~_IOTEXT;
890 (stdout)->_flag &= ~_IOTEXT;
891 (stderr)->_flag &= ~_IOTEXT;
18198bb2 892#endif /* not __DJGPP__ >= 2 */
29b89fe0
RS
893#endif /* MSDOS */
894
a422068f 895#ifdef SET_EMACS_PRIORITY
3005da00 896 if (emacs_priority)
5aa7f46a 897 nice (emacs_priority);
f927c5ae 898 setuid (getuid ());
a422068f 899#endif /* SET_EMACS_PRIORITY */
f927c5ae 900
68c45bf0
PE
901 /* Skip initial setlocale if LC_ALL is "C", as it's not needed in that case.
902 The build procedure uses this while dumping, to ensure that the
903 dumped Emacs does not have its system locale tables initialized,
904 as that might cause screwups when the dumped Emacs starts up. */
905 {
906 char *lc_all = getenv ("LC_ALL");
907 do_initial_setlocale = ! lc_all || strcmp (lc_all, "C");
908 }
909
910 /* Set locale now, so that initial error messages are localized properly.
911 fixup_locale must wait until later, since it builds strings. */
912 if (do_initial_setlocale)
913 setlocale (LC_ALL, "");
914
d8b3a65d 915#ifdef EXTRA_INITIALIZE
a9260219 916 EXTRA_INITIALIZE;
d8b3a65d
RS
917#endif
918
f927c5ae
JB
919 inhibit_window_system = 0;
920
4fc0b45b 921 /* Handle the -t switch, which specifies filename to use as terminal */
956e3c7e
RS
922 while (1)
923 {
924 char *term;
925 if (argmatch (argv, argc, "-t", "--terminal", 4, &term, &skip_args))
926 {
927 int result;
68c45bf0
PE
928 emacs_close (0);
929 emacs_close (1);
930 result = emacs_open (term, O_RDWR, 0);
956e3c7e
RS
931 if (result < 0)
932 {
933 char *errstring = strerror (errno);
934 fprintf (stderr, "emacs: %s: %s\n", term, errstring);
935 exit (1);
936 }
937 dup (0);
938 if (! isatty (0))
939 {
940 fprintf (stderr, "emacs: %s: not a tty\n", term);
941 exit (1);
942 }
943 fprintf (stderr, "Using %s\n", term);
8ba50e1a 944#ifdef HAVE_WINDOW_SYSTEM
956e3c7e 945 inhibit_window_system = 1; /* -t => -nw */
f927c5ae 946#endif
956e3c7e
RS
947 }
948 else
949 break;
950 }
951
df6530f8 952 if (argmatch (argv, argc, "-nw", "--no-windows", 6, NULL, &skip_args))
e2925360 953 inhibit_window_system = 1;
f927c5ae 954
e2925360 955 /* Handle the -batch switch, which means don't do interactive display. */
f927c5ae 956 noninteractive = 0;
df6530f8 957 if (argmatch (argv, argc, "-batch", "--batch", 5, NULL, &skip_args))
e2925360
KH
958 noninteractive = 1;
959
960 /* Handle the --help option, which gives a usage message.. */
df6530f8 961 if (argmatch (argv, argc, "-help", "--help", 3, NULL, &skip_args))
f927c5ae 962 {
73ebcd25
AI
963 printf (USAGE1, argv[0]);
964 printf (USAGE2);
e2925360 965 exit (0);
f927c5ae
JB
966 }
967
edb85f59
RS
968 if (! noninteractive)
969 {
970#ifdef BSD_PGRPS
971 if (initialized)
972 {
973 inherited_pgroup = EMACS_GETPGRP (0);
974 setpgrp (0, getpid ());
975 }
976#else
977#if defined (USG5) && defined (INTERRUPT_INPUT)
978 setpgrp ();
979#endif
980#endif
981 }
982
fb8e9847 983 init_signals ();
fb8e9847 984
1efa2983
KH
985 /* Don't catch SIGHUP if dumping. */
986 if (1
987#ifndef CANNOT_DUMP
988 && initialized
989#endif
990 )
991 {
57e3d22a 992 sigblock (sigmask (SIGHUP));
1efa2983
KH
993 /* In --batch mode, don't catch SIGHUP if already ignored.
994 That makes nohup work. */
995 if (! noninteractive
996 || signal (SIGHUP, SIG_IGN) != SIG_IGN)
997 signal (SIGHUP, fatal_error_signal);
57e3d22a 998 sigunblock (sigmask (SIGHUP));
1efa2983
KH
999 }
1000
f927c5ae
JB
1001 if (
1002#ifndef CANNOT_DUMP
1003 ! noninteractive || initialized
1004#else
1005 1
1006#endif
1007 )
1008 {
1efa2983 1009 /* Don't catch these signals in batch mode if dumping.
f927c5ae
JB
1010 On some machines, this sets static data that would make
1011 signal fail to work right when the dumped Emacs is run. */
f927c5ae
JB
1012 signal (SIGQUIT, fatal_error_signal);
1013 signal (SIGILL, fatal_error_signal);
1014 signal (SIGTRAP, fatal_error_signal);
7317d9e8
RS
1015#ifdef SIGUSR1
1016 signal (SIGUSR1, handle_USR1_signal);
1017#ifdef SIGUSR2
1018 signal (SIGUSR2, handle_USR2_signal);
1019#endif
1020#endif
99e372cd
RS
1021#ifdef SIGABRT
1022 signal (SIGABRT, fatal_error_signal);
1023#endif
1024#ifdef SIGHWE
1025 signal (SIGHWE, fatal_error_signal);
1026#endif
1027#ifdef SIGPRE
1028 signal (SIGPRE, fatal_error_signal);
1029#endif
1030#ifdef SIGORE
1031 signal (SIGORE, fatal_error_signal);
1032#endif
1033#ifdef SIGUME
1034 signal (SIGUME, fatal_error_signal);
1035#endif
1036#ifdef SIGDLK
1037 signal (SIGDLK, fatal_error_signal);
1038#endif
1039#ifdef SIGCPULIM
1040 signal (SIGCPULIM, fatal_error_signal);
1041#endif
a90538cb
JB
1042#ifdef SIGIOT
1043 /* This is missing on some systems - OS/2, for example. */
f927c5ae 1044 signal (SIGIOT, fatal_error_signal);
a90538cb 1045#endif
f927c5ae
JB
1046#ifdef SIGEMT
1047 signal (SIGEMT, fatal_error_signal);
1048#endif
1049 signal (SIGFPE, fatal_error_signal);
00eaaa32 1050#ifdef SIGBUS
f927c5ae 1051 signal (SIGBUS, fatal_error_signal);
00eaaa32 1052#endif
f927c5ae 1053 signal (SIGSEGV, fatal_error_signal);
00eaaa32 1054#ifdef SIGSYS
f927c5ae 1055 signal (SIGSYS, fatal_error_signal);
00eaaa32 1056#endif
f927c5ae
JB
1057 signal (SIGTERM, fatal_error_signal);
1058#ifdef SIGXCPU
1059 signal (SIGXCPU, fatal_error_signal);
1060#endif
1061#ifdef SIGXFSZ
1062 signal (SIGXFSZ, fatal_error_signal);
1063#endif /* SIGXFSZ */
1064
271c7b7c
RS
1065#ifdef SIGDANGER
1066 /* This just means available memory is getting low. */
1067 signal (SIGDANGER, memory_warning_signal);
1068#endif
1069
f927c5ae 1070#ifdef AIX
56e034fa
RS
1071/* 20 is SIGCHLD, 21 is SIGTTIN, 22 is SIGTTOU. */
1072 signal (SIGXCPU, fatal_error_signal);
0aef8561 1073#ifndef _I386
f927c5ae 1074 signal (SIGIOINT, fatal_error_signal);
0aef8561 1075#endif
f927c5ae
JB
1076 signal (SIGGRANT, fatal_error_signal);
1077 signal (SIGRETRACT, fatal_error_signal);
1078 signal (SIGSOUND, fatal_error_signal);
1079 signal (SIGMSG, fatal_error_signal);
1080#endif /* AIX */
1081 }
1082
1083 noninteractive1 = noninteractive;
1084
1085/* Perform basic initializations (not merely interning symbols) */
1086
1087 if (!initialized)
1088 {
1089 init_alloc_once ();
1090 init_obarray ();
1091 init_eval_once ();
270ce821
KH
1092 init_charset_once ();
1093 init_coding_once ();
f927c5ae 1094 init_syntax_once (); /* Create standard syntax table. */
270ce821 1095 init_category_once (); /* Create standard category table. */
f927c5ae
JB
1096 /* Must be done before init_buffer */
1097 init_casetab_once ();
1098 init_buffer_once (); /* Create buffer table and some buffers */
1099 init_minibuf_once (); /* Create list of minibuffers */
90d920b6
GM
1100 /* Must precede init_window_once */
1101
1102 /* Call syms_of_xfaces before init_window_once because that
1103 function creates Vterminal_frame. Termcap frames now use
1104 faces, and the face implementation uses some symbols as
1105 face names. */
90d920b6 1106 syms_of_xfaces ();
7a18af49
KR
1107 /* Call syms_of_keyboard before init_window_once because
1108 keyboard sets up symbols that include some face names that
1109 the X support will want to use. This can happen when
1110 CANNOT_DUMP is defined. */
1111 syms_of_keyboard ();
90d920b6 1112
1a578e9b
AC
1113#ifdef macintosh
1114 /* init_window_once calls make_terminal_frame which on Mac OS creates
1115 a full-fledge output_mac type frame. This does not work correctly
1116 before syms_of_textprop, syms_of_macfns, syms_of_ccl,
1117 syms_of_fontset, syms_of_xterm, syms_of_search, x_term_init, and
1118 init_keyboard have already been called. */
1119 syms_of_textprop ();
1120 syms_of_macfns ();
1121 syms_of_ccl ();
1122 syms_of_fontset ();
1123 syms_of_macterm ();
1124 syms_of_macmenu ();
1125 syms_of_data ();
1126 syms_of_search ();
1127
1128 x_term_init ();
1129 init_keyboard ();
1130#endif
1131
f927c5ae 1132 init_window_once (); /* Init the window system */
680256a8 1133 init_fileio_once (); /* Must precede any path manipulation. */
f927c5ae
JB
1134 }
1135
1136 init_alloc ();
68c45bf0
PE
1137
1138 if (do_initial_setlocale)
1139 {
1140 fixup_locale ();
ca9c0567
PE
1141 Vsystem_messages_locale = Vprevious_system_messages_locale;
1142 Vsystem_time_locale = Vprevious_system_time_locale;
68c45bf0
PE
1143 }
1144
f927c5ae
JB
1145 init_eval ();
1146 init_data ();
ad067ea6
KH
1147#ifdef CLASH_DETECTION
1148 init_filelock ();;
1149#endif
ab5d0358 1150 init_atimer ();
7074fde6 1151 running_asynch_code = 0;
0e956009 1152
a08a816a
RS
1153 /* Handle --unibyte and the EMACS_UNIBYTE envvar,
1154 but not while dumping. */
1155 if (
1156#ifndef CANNOT_DUMP
1157 ! noninteractive || initialized
1158#else
1159 1
1160#endif
1161 )
1162 {
1163 int inhibit_unibyte = 0;
1164
1165 /* --multibyte overrides EMACS_UNIBYTE. */
1166 if (argmatch (argv, argc, "-no-unibyte", "--no-unibyte", 4, NULL, &skip_args)
1167 || argmatch (argv, argc, "-multibyte", "--multibyte", 4, NULL, &skip_args))
1168 inhibit_unibyte = 1;
1169
1170 /* --unibyte requests that we set up to do everything with single-byte
1171 buffers and strings. We need to handle this before calling
1172 init_lread, init_editfns and other places that generate Lisp strings
1173 from text in the environment. */
c0218e1b
DL
1174 /* Actually this shouldn't be needed as of 20.4 in a generally
1175 unibyte environment. As handa says, environment values
1176 aren't now decoded; also existing buffers are now made
1177 unibyte during startup if .emacs sets unibyte. Tested with
1178 8-bit data in environment variables and /etc/passwd, setting
1179 unibyte and Latin-1 in .emacs. -- Dave Love */
a08a816a
RS
1180 if (argmatch (argv, argc, "-unibyte", "--unibyte", 4, NULL, &skip_args)
1181 || argmatch (argv, argc, "-no-multibyte", "--no-multibyte", 4, NULL, &skip_args)
1182 || (getenv ("EMACS_UNIBYTE") && !inhibit_unibyte))
1183 {
1184 Lisp_Object old_log_max;
1185 Lisp_Object symbol, tail;
1186
1187 symbol = intern ("default-enable-multibyte-characters");
1188 Fset (symbol, Qnil);
1189
6524291c
KH
1190 if (initialized)
1191 {
1192 /* Erase pre-dump messages in *Messages* now so no abort. */
1193 old_log_max = Vmessage_log_max;
1194 XSETFASTINT (Vmessage_log_max, 0);
1195 message_dolog ("", 0, 1, 0);
1196 Vmessage_log_max = old_log_max;
1197 }
a08a816a 1198
3e75bb9e 1199 for (tail = Vbuffer_alist; CONSP (tail);
7539e11f 1200 tail = XCDR (tail))
a08a816a
RS
1201 {
1202 Lisp_Object buffer;
1203
7539e11f 1204 buffer = Fcdr (XCAR (tail));
a08a816a
RS
1205 /* Verify that all buffers are empty now, as they
1206 ought to be. */
1207 if (BUF_Z (XBUFFER (buffer)) > BUF_BEG (XBUFFER (buffer)))
1208 abort ();
1209 /* It is safe to do this crudely in an empty buffer. */
1210 XBUFFER (buffer)->enable_multibyte_characters = Qnil;
1211 }
1212 }
1213 }
1214
956e3c7e 1215 no_loadup
b96f9fb7 1216 = argmatch (argv, argc, "-nl", "--no-loadup", 6, NULL, &skip_args);
956e3c7e
RS
1217
1218
1219#ifdef HAVE_X_WINDOWS
1220 /* Stupid kludge to catch command-line display spec. We can't
1221 handle this argument entirely in window system dependent code
1222 because we don't even know which window system dependent code
1223 to run until we've recognized this argument. */
1224 {
1225 char *displayname = 0;
956e3c7e
RS
1226 int count_before = skip_args;
1227
1228 /* Skip any number of -d options, but only use the last one. */
1229 while (1)
1230 {
1231 int count_before_this = skip_args;
1232
1233 if (argmatch (argv, argc, "-d", "--display", 3, &displayname, &skip_args))
1234 display_arg = 1;
1235 else if (argmatch (argv, argc, "-display", 0, 3, &displayname, &skip_args))
1236 display_arg = 1;
1237 else
1238 break;
1239
1240 count_before = count_before_this;
1241 }
1242
1243 /* If we have the form --display=NAME,
1244 convert it into -d name.
1245 This requires inserting a new element into argv. */
1246 if (displayname != 0 && skip_args - count_before == 1)
1247 {
1248 char **new = (char **) xmalloc (sizeof (char *) * (argc + 2));
1249 int j;
1250
1251 for (j = 0; j < count_before + 1; j++)
1252 new[j] = argv[j];
1253 new[count_before + 1] = "-d";
1254 new[count_before + 2] = displayname;
1255 for (j = count_before + 2; j <argc; j++)
1256 new[j + 1] = argv[j];
1257 argv = new;
1258 argc++;
1259 }
1260 /* Change --display to -d, when its arg is separate. */
1261 else if (displayname != 0 && skip_args > count_before
1262 && argv[count_before + 1][1] == '-')
1263 argv[count_before + 1] = "-d";
1264
1265 /* Don't actually discard this arg. */
1266 skip_args = count_before;
1267 }
1268#endif
1269
1270 /* argmatch must not be used after here,
1271 except when bulding temacs
1272 because the -d argument has not been skipped in skip_args. */
1273
29b89fe0
RS
1274#ifdef MSDOS
1275 /* Call early 'cause init_environment needs it. */
1276 init_dosfns ();
1277 /* Set defaults for several environment variables. */
18198bb2
RS
1278 if (initialized)
1279 init_environment (argc, argv, skip_args);
1280 else
d1fc6752 1281 tzset ();
18198bb2 1282#endif /* MSDOS */
29b89fe0 1283
8ba50e1a
GV
1284#ifdef WINDOWSNT
1285 /* Initialize environment from registry settings. */
a3a58294 1286 init_environment (argv);
41f339d4 1287 init_ntproc (); /* must precede init_editfns */
8ba50e1a
GV
1288#endif
1289
0e956009
JB
1290 /* egetenv is a pretty low-level facility, which may get called in
1291 many circumstances; it seems flimsy to put off initializing it
1292 until calling init_callproc. */
1293 set_process_environment ();
93aed04d
RS
1294 /* AIX crashes are reported in system versions 3.2.3 and 3.2.4
1295 if this is not done. Do it after set_process_environment so that we
1296 don't pollute Vprocess_environment. */
fa09a82d
DL
1297 /* Setting LANG here will defeat the startup locale processing... */
1298#ifdef AIX3_2
93aed04d
RS
1299 putenv ("LANG=C");
1300#endif
0e956009 1301
ace40a69
RS
1302 init_buffer (); /* Init default directory of main buffer */
1303
7928f0b5 1304 init_callproc_1 (); /* Must precede init_cmdargs and init_sys_modes. */
ace40a69 1305 init_cmdargs (argc, argv, skip_args); /* Must precede init_lread. */
380e25b8
RS
1306
1307 if (initialized)
1308 {
1309 /* Erase any pre-dump messages in the message log, to avoid confusion */
1310 Lisp_Object old_log_max;
1311 old_log_max = Vmessage_log_max;
1312 XSETFASTINT (Vmessage_log_max, 0);
f6fe7bb5 1313 message_dolog ("", 0, 1, 0);
380e25b8
RS
1314 Vmessage_log_max = old_log_max;
1315 }
1316
7928f0b5 1317 init_callproc (); /* Must follow init_cmdargs but not init_sys_modes. */
fb8e9847 1318 init_lread ();
f927c5ae 1319
8bb697c0
RS
1320 /* Intern the names of all standard functions and variables;
1321 define standard keys. */
f927c5ae
JB
1322
1323 if (!initialized)
1324 {
1325 /* The basic levels of Lisp must come first */
1326 /* And data must come first of all
1327 for the sake of symbols like error-message */
1a578e9b
AC
1328#ifndef macintosh
1329 /* Called before init_window_once for Mac OS. */
f927c5ae 1330 syms_of_data ();
1a578e9b 1331#endif
f927c5ae 1332 syms_of_alloc ();
fb8e9847 1333 syms_of_lread ();
f927c5ae
JB
1334 syms_of_print ();
1335 syms_of_eval ();
1336 syms_of_fns ();
f927c5ae 1337 syms_of_floatfns ();
f927c5ae
JB
1338
1339 syms_of_abbrev ();
1340 syms_of_buffer ();
1341 syms_of_bytecode ();
1342 syms_of_callint ();
1343 syms_of_casefiddle ();
1344 syms_of_casetab ();
1345 syms_of_callproc ();
270ce821 1346 syms_of_category ();
1a578e9b
AC
1347#ifndef macintosh
1348 /* Called before init_window_once for Mac OS. */
270ce821 1349 syms_of_ccl ();
1a578e9b 1350#endif
270ce821 1351 syms_of_charset ();
f927c5ae
JB
1352 syms_of_cmds ();
1353#ifndef NO_DIR_LIBRARY
1354 syms_of_dired ();
1355#endif /* not NO_DIR_LIBRARY */
1356 syms_of_display ();
1357 syms_of_doc ();
1358 syms_of_editfns ();
1359 syms_of_emacs ();
1360 syms_of_fileio ();
270ce821 1361 syms_of_coding (); /* This should be after syms_of_fileio. */
f927c5ae
JB
1362#ifdef CLASH_DETECTION
1363 syms_of_filelock ();
1364#endif /* CLASH_DETECTION */
1365 syms_of_indent ();
c2c5ed2c 1366 syms_of_insdel ();
f927c5ae
JB
1367 syms_of_keymap ();
1368 syms_of_macros ();
1369 syms_of_marker ();
1370 syms_of_minibuf ();
1371 syms_of_mocklisp ();
f927c5ae 1372 syms_of_process ();
1a578e9b
AC
1373#ifndef macintosh
1374 /* Called before init_window_once for Mac OS. */
f927c5ae 1375 syms_of_search ();
1a578e9b 1376#endif
1cbd5d9d 1377 syms_of_frame ();
f927c5ae 1378 syms_of_syntax ();
0d934e7b 1379 syms_of_term ();
f927c5ae 1380 syms_of_undo ();
90d920b6
GM
1381#ifdef HAVE_SOUND
1382 syms_of_sound ();
1383#endif
1a578e9b
AC
1384#ifndef macintosh
1385 /* Called before init_window_once for Mac OS. */
bef79ee4 1386 syms_of_textprop ();
1a578e9b 1387#endif
9d100795 1388 syms_of_composite ();
f927c5ae
JB
1389#ifdef VMS
1390 syms_of_vmsproc ();
1391#endif /* VMS */
05687c54
RS
1392#ifdef WINDOWSNT
1393 syms_of_ntproc ();
1394#endif /* WINDOWSNT */
f927c5ae
JB
1395 syms_of_window ();
1396 syms_of_xdisp ();
1397#ifdef HAVE_X_WINDOWS
72412588 1398 syms_of_xterm ();
f927c5ae 1399 syms_of_xfns ();
270ce821 1400 syms_of_fontset ();
72412588
JB
1401#ifdef HAVE_X11
1402 syms_of_xselect ();
1403#endif
f927c5ae
JB
1404#endif /* HAVE_X_WINDOWS */
1405
1e9c210b 1406#ifndef HAVE_NTGUI
1a578e9b 1407#ifndef macintosh
6c850f3c 1408 syms_of_xmenu ();
1e9c210b 1409#endif
1a578e9b 1410#endif
6c850f3c 1411
8ba50e1a 1412#ifdef HAVE_NTGUI
fbd6baed
GV
1413 syms_of_w32term ();
1414 syms_of_w32fns ();
fbd6baed
GV
1415 syms_of_w32select ();
1416 syms_of_w32menu ();
02062ac3 1417 syms_of_fontset ();
8ba50e1a
GV
1418#endif /* HAVE_NTGUI */
1419
f927c5ae
JB
1420#ifdef SYMS_SYSTEM
1421 SYMS_SYSTEM;
1422#endif
1423
1424#ifdef SYMS_MACHINE
1425 SYMS_MACHINE;
1426#endif
1427
1428 keys_of_casefiddle ();
1429 keys_of_cmds ();
1430 keys_of_buffer ();
1431 keys_of_keyboard ();
1432 keys_of_keymap ();
1433 keys_of_macros ();
1434 keys_of_minibuf ();
1435 keys_of_window ();
5e67fbc2 1436 keys_of_frame ();
f927c5ae
JB
1437 }
1438
8bb697c0
RS
1439 if (!noninteractive)
1440 {
1441#ifdef VMS
1442 init_vms_input ();/* init_display calls get_frame_size, that needs this */
1443#endif /* VMS */
1444 init_display (); /* Determine terminal type. init_sys_modes uses results */
1445 }
1a578e9b
AC
1446#ifndef macintosh
1447 /* Called before init_window_once for Mac OS. */
8bb697c0 1448 init_keyboard (); /* This too must precede init_sys_modes */
1a578e9b 1449#endif
8bb697c0
RS
1450#ifdef VMS
1451 init_vmsproc (); /* And this too. */
1452#endif /* VMS */
1453 init_sys_modes (); /* Init system terminal modes (RAW or CBREAK, etc.) */
90d920b6
GM
1454#ifdef HAVE_X_WINDOWS
1455 init_xfns ();
1456#endif /* HAVE_X_WINDOWS */
1457 init_fns ();
8bb697c0
RS
1458 init_xdisp ();
1459 init_macros ();
1460 init_editfns ();
8bb697c0 1461 init_floatfns ();
8bb697c0
RS
1462#ifdef VMS
1463 init_vmsfns ();
1464#endif /* VMS */
1465 init_process ();
90d920b6
GM
1466#ifdef HAVE_SOUND
1467 init_sound ();
1468#endif
75816372 1469 init_window ();
8bb697c0 1470
f927c5ae
JB
1471 if (!initialized)
1472 {
e2925360 1473 char *file;
303901fb 1474 /* Handle -l loadup, args passed by Makefile. */
df6530f8 1475 if (argmatch (argv, argc, "-l", "--load", 3, &file, &skip_args))
f927c5ae 1476 Vtop_level = Fcons (intern ("load"),
e2925360 1477 Fcons (build_string (file), Qnil));
f927c5ae
JB
1478#ifdef CANNOT_DUMP
1479 /* Unless next switch is -nl, load "loadup.el" first thing. */
956e3c7e 1480 if (! no_loadup)
f927c5ae
JB
1481 Vtop_level = Fcons (intern ("load"),
1482 Fcons (build_string ("loadup.el"), Qnil));
1483#endif /* CANNOT_DUMP */
1484 }
1485
93572b43
KH
1486 if (initialized)
1487 {
0269dedb
RS
1488#ifdef HAVE_TZSET
1489 {
1490 /* If the execution TZ happens to be the same as the dump TZ,
1491 change it to some other value and then change it back,
1492 to force the underlying implementation to reload the TZ info.
1493 This is needed on implementations that load TZ info from files,
1494 since the TZ file contents may differ between dump and execution. */
1495 char *tz = getenv ("TZ");
1496 if (tz && !strcmp (tz, dump_tz))
1497 {
1498 ++*tz;
1499 tzset ();
1500 --*tz;
1501 }
1502 }
1503#endif
93572b43
KH
1504 }
1505
e610ea43
RS
1506 /* Gerd Moellmann <gerd@acm.org> says this makes profiling work on
1507 FreeBSD. It might work on some other systems too.
1508 Give it a try and tell me if it works on your system. */
6a97197e 1509#if defined (__FreeBSD__) || defined (__linux)
e610ea43
RS
1510#ifdef PROFILING
1511 if (initialized)
1512 {
1513 extern void _mcleanup ();
1514 extern char etext;
90d920b6 1515 extern void safe_bcopy ();
67a5596f
GM
1516 extern void dump_opcode_frequencies ();
1517
e610ea43 1518 atexit (_mcleanup);
90d920b6
GM
1519 /* This uses safe_bcopy because that function comes first in the
1520 Emacs executable. It might be better to use something that
1521 gives the start of the text segment, but start_of_text is not
1522 defined on all systems now. */
1523 monstartup (safe_bcopy, &etext);
e610ea43
RS
1524 }
1525 else
1526 moncontrol (0);
1527#endif
1528#endif
1529
f927c5ae
JB
1530 initialized = 1;
1531
e7536cff
RS
1532#ifdef LOCALTIME_CACHE
1533 /* Some versions of localtime have a bug. They cache the value of the time
279cc2b8
JB
1534 zone rather than looking it up every time. Since localtime() is
1535 called to bolt the undumping time into the undumped emacs, this
afe9fae9
RS
1536 results in localtime ignoring the TZ environment variable.
1537 This flushes the new TZ value into localtime. */
1538 tzset ();
e7536cff 1539#endif /* defined (LOCALTIME_CACHE) */
279cc2b8 1540
f927c5ae
JB
1541 /* Enter editor command loop. This never returns. */
1542 Frecursive_edit ();
1543 /* NOTREACHED */
6bbd7a29 1544 return 0;
f927c5ae
JB
1545}
1546\f
081bef73
RS
1547/* Sort the args so we can find the most important ones
1548 at the beginning of argv. */
1549
1550/* First, here's a table of all the standard options. */
1551
1552struct standard_args
1553{
1554 char *name;
1555 char *longname;
1556 int priority;
1557 int nargs;
1558};
1559
1560struct standard_args standard_args[] =
1561{
05922407
RS
1562 { "-version", "--version", 150, 0 },
1563#ifdef HAVE_SHM
1564 { "-nl", "--no-shared-memory", 140, 0 },
1565#endif
2725719a 1566#ifdef VMS
05922407 1567 { "-map", "--map-data", 130, 0 },
2725719a 1568#endif
05922407
RS
1569 { "-t", "--terminal", 120, 1 },
1570 { "-nw", "--no-windows", 110, 0 },
1571 { "-batch", "--batch", 100, 0 },
1572 { "-help", "--help", 90, 0 },
956e3c7e
RS
1573 { "-no-unibyte", "--no-unibyte", 83, 0 },
1574 { "-multibyte", "--multibyte", 82, 0 },
1575 { "-unibyte", "--unibyte", 81, 0 },
1576 { "-no-multibyte", "--no-multibyte", 80, 0 },
05922407 1577#ifdef CANNOT_DUMP
956e3c7e 1578 { "-nl", "--no-loadup", 70, 0 },
05922407 1579#endif
956e3c7e
RS
1580 /* -d must come last before the options handled in startup.el. */
1581 { "-d", "--display", 60, 1 },
1582 { "-display", 0, 60, 1 },
05922407 1583 /* Now for the options handled in startup.el. */
081bef73
RS
1584 { "-q", "--no-init-file", 50, 0 },
1585 { "-no-init-file", 0, 50, 0 },
1586 { "-no-site-file", "--no-site-file", 40, 0 },
1587 { "-u", "--user", 30, 1 },
1588 { "-user", 0, 30, 1 },
1589 { "-debug-init", "--debug-init", 20, 0 },
adab4483
KH
1590 { "-i", "--icon-type", 15, 0 },
1591 { "-itype", 0, 15, 0 },
f2bc3538 1592 { "-iconic", "--iconic", 15, 0 },
081bef73
RS
1593 { "-bg", "--background-color", 10, 1 },
1594 { "-background", 0, 10, 1 },
1595 { "-fg", "--foreground-color", 10, 1 },
1596 { "-foreground", 0, 10, 1 },
1597 { "-bd", "--border-color", 10, 1 },
1598 { "-bw", "--border-width", 10, 1 },
1599 { "-ib", "--internal-border", 10, 1 },
1600 { "-ms", "--mouse-color", 10, 1 },
1601 { "-cr", "--cursor-color", 10, 1 },
1602 { "-fn", "--font", 10, 1 },
1603 { "-font", 0, 10, 1 },
1604 { "-g", "--geometry", 10, 1 },
1605 { "-geometry", 0, 10, 1 },
1606 { "-T", "--title", 10, 1 },
ae63ae52 1607 { "-title", 0, 10, 1 },
081bef73
RS
1608 { "-name", "--name", 10, 1 },
1609 { "-xrm", "--xrm", 10, 1 },
fcdeb5d9
RS
1610 { "-r", "--reverse-video", 5, 0 },
1611 { "-rv", 0, 5, 0 },
1612 { "-reverse", 0, 5, 0 },
ae63ae52 1613 { "-hb", "--horizontal-scroll-bars", 5, 0 },
fcdeb5d9 1614 { "-vb", "--vertical-scroll-bars", 5, 0 },
fcdeb5d9
RS
1615 /* These have the same priority as ordinary file name args,
1616 so they are not reordered with respect to those. */
4af9e0b3
RS
1617 { "-L", "--directory", 0, 1 },
1618 { "-directory", 0, 0, 1 },
fcdeb5d9
RS
1619 { "-l", "--load", 0, 1 },
1620 { "-load", 0, 0, 1 },
1621 { "-f", "--funcall", 0, 1 },
1622 { "-funcall", 0, 0, 1 },
575985b1 1623 { "-eval", "--eval", 0, 1 },
67a5596f 1624 { "-execute", "--execute", 0, 1 },
2e13f8e9
RS
1625 { "-find-file", "--find-file", 0, 1 },
1626 { "-visit", "--visit", 0, 1 },
67a5596f 1627 { "-file", "--file", 0, 1 },
fcdeb5d9 1628 { "-insert", "--insert", 0, 1 },
f2bc3538 1629 /* This should be processed after ordinary file name args and the like. */
fcdeb5d9 1630 { "-kill", "--kill", -10, 0 },
081bef73
RS
1631};
1632
1633/* Reorder the elements of ARGV (assumed to have ARGC elements)
1634 so that the highest priority ones come first.
1635 Do not change the order of elements of equal priority.
956e3c7e
RS
1636 If an option takes an argument, keep it and its argument together.
1637
1638 If an option that takes no argument appears more
1639 than once, eliminate all but one copy of it. */
081bef73
RS
1640
1641static void
1642sort_args (argc, argv)
1643 int argc;
1644 char **argv;
1645{
1646 char **new = (char **) xmalloc (sizeof (char *) * argc);
1647 /* For each element of argv,
1648 the corresponding element of options is:
1649 0 for an option that takes no arguments,
1650 1 for an option that takes one argument, etc.
1651 -1 for an ordinary non-option argument. */
6dad9359 1652 int *options = (int *) xmalloc (sizeof (int) * argc);
081bef73
RS
1653 int *priority = (int *) xmalloc (sizeof (int) * argc);
1654 int to = 1;
956e3c7e 1655 int incoming_used = 1;
081bef73
RS
1656 int from;
1657 int i;
1658
1659 /* Categorize all the options,
1660 and figure out which argv elts are option arguments. */
1661 for (from = 1; from < argc; from++)
1662 {
1663 options[from] = -1;
fcdeb5d9 1664 priority[from] = 0;
081bef73
RS
1665 if (argv[from][0] == '-')
1666 {
1667 int match, thislen;
1668 char *equals;
1669
c96f26f4
RS
1670 /* If we have found "--", don't consider
1671 any more arguments as options. */
249443b6 1672 if (argv[from][1] == '-' && argv[from][2] == 0)
c96f26f4
RS
1673 {
1674 /* Leave the "--", and everything following it, at the end. */
1675 for (; from < argc; from++)
1676 {
1677 priority[from] = -100;
1678 options[from] = -1;
1679 }
1680 break;
1681 }
1682
081bef73
RS
1683 /* Look for a match with a known old-fashioned option. */
1684 for (i = 0; i < sizeof (standard_args) / sizeof (standard_args[0]); i++)
1685 if (!strcmp (argv[from], standard_args[i].name))
1686 {
1687 options[from] = standard_args[i].nargs;
1688 priority[from] = standard_args[i].priority;
fd76ec52
RS
1689 if (from + standard_args[i].nargs >= argc)
1690 fatal ("Option `%s' requires an argument\n", argv[from]);
081bef73
RS
1691 from += standard_args[i].nargs;
1692 goto done;
1693 }
1694
1695 /* Look for a match with a known long option.
1696 MATCH is -1 if no match so far, -2 if two or more matches so far,
1697 >= 0 (the table index of the match) if just one match so far. */
1698 if (argv[from][1] == '-')
1699 {
1700 match = -1;
1701 thislen = strlen (argv[from]);
1702 equals = index (argv[from], '=');
1703 if (equals != 0)
1704 thislen = equals - argv[from];
1705
f609ef57
KH
1706 for (i = 0;
1707 i < sizeof (standard_args) / sizeof (standard_args[0]); i++)
1708 if (standard_args[i].longname
1709 && !strncmp (argv[from], standard_args[i].longname,
1710 thislen))
081bef73
RS
1711 {
1712 if (match == -1)
1713 match = i;
1714 else
1715 match = -2;
1716 }
1717
1718 /* If we found exactly one match, use that. */
1719 if (match >= 0)
1720 {
1721 options[from] = standard_args[match].nargs;
1722 priority[from] = standard_args[match].priority;
1723 /* If --OPTION=VALUE syntax is used,
1724 this option uses just one argv element. */
1725 if (equals != 0)
1726 options[from] = 0;
fd76ec52
RS
1727 if (from + options[from] >= argc)
1728 fatal ("Option `%s' requires an argument\n", argv[from]);
081bef73
RS
1729 from += options[from];
1730 }
1731 }
1732 done: ;
1733 }
1734 }
1735
1736 /* Copy the arguments, in order of decreasing priority, to NEW. */
1737 new[0] = argv[0];
956e3c7e 1738 while (incoming_used < argc)
081bef73
RS
1739 {
1740 int best = -1;
2c70c992 1741 int best_priority = -9999;
081bef73
RS
1742
1743 /* Find the highest priority remaining option.
1744 If several have equal priority, take the first of them. */
1745 for (from = 1; from < argc; from++)
1746 {
1747 if (argv[from] != 0 && priority[from] > best_priority)
1748 {
1749 best_priority = priority[from];
1750 best = from;
1751 }
1752 /* Skip option arguments--they are tied to the options. */
1753 if (options[from] > 0)
1754 from += options[from];
1755 }
1756
1757 if (best < 0)
1758 abort ();
1759
956e3c7e
RS
1760 /* Copy the highest priority remaining option, with its args, to NEW.
1761 Unless it is a duplicate of the previous one. */
1762 if (! (options[best] == 0
1763 && ! strcmp (new[to - 1], argv[best])))
1764 {
1765 new[to++] = argv[best];
1766 for (i = 0; i < options[best]; i++)
1767 new[to++] = argv[best + i + 1];
1768 }
1769
1770 incoming_used += 1 + (options[best] > 0 ? options[best] : 0);
081bef73
RS
1771
1772 /* Clear out this option in ARGV. */
1773 argv[best] = 0;
1774 for (i = 0; i < options[best]; i++)
1775 argv[best + i + 1] = 0;
1776 }
1777
81b7af72
RS
1778 /* If duplicate options were deleted, fill up extra space with null ptrs. */
1779 while (to < argc)
1780 new[to++] = 0;
1781
6dad9359 1782 bcopy (new, argv, sizeof (char *) * argc);
0bf591da
RS
1783
1784 free (options);
1785 free (new);
1786 free (priority);
081bef73
RS
1787}
1788\f
f927c5ae 1789DEFUN ("kill-emacs", Fkill_emacs, Skill_emacs, 0, 1, "P",
edc8ae07 1790 "Exit the Emacs job and kill it.\n\
f927c5ae
JB
1791If ARG is an integer, return ARG as the exit program code.\n\
1792If ARG is a string, stuff it as keyboard input.\n\n\
1793The value of `kill-emacs-hook', if not void,\n\
1794is a list of functions (of no args),\n\
1795all of which are called before Emacs is actually killed.")
1796 (arg)
1797 Lisp_Object arg;
1798{
f927c5ae
JB
1799 struct gcpro gcpro1;
1800
1801 GCPRO1 (arg);
1802
1803 if (feof (stdin))
1804 arg = Qt;
1805
2447c626 1806 if (!NILP (Vrun_hooks) && !noninteractive)
f927c5ae
JB
1807 call1 (Vrun_hooks, intern ("kill-emacs-hook"));
1808
f927c5ae
JB
1809 UNGCPRO;
1810
1811/* Is it really necessary to do this deassign
1812 when we are going to exit anyway? */
1813/* #ifdef VMS
1814 stop_vms_input ();
1815 #endif */
40be253a 1816
d0068e25 1817 shut_down_emacs (0, 0, STRINGP (arg) ? arg : Qnil);
40be253a 1818
58545838
KH
1819 /* If we have an auto-save list file,
1820 kill it because we are exiting Emacs deliberately (not crashing).
1821 Do it after shut_down_emacs, which does an auto-save. */
1822 if (STRINGP (Vauto_save_list_file_name))
1823 unlink (XSTRING (Vauto_save_list_file_name)->data);
1824
55ccc0b3 1825 exit (INTEGERP (arg) ? XINT (arg)
f927c5ae
JB
1826#ifdef VMS
1827 : 1
1828#else
1829 : 0
1830#endif
1831 );
1832 /* NOTREACHED */
1833}
40be253a
JB
1834
1835
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.
1841
1842 If SIG is a signal number, print a message for it.
1843
1844 This is called by fatal signal handlers, X protocol error handlers,
1845 and Fkill_emacs. */
f7ab4e3d 1846
40be253a 1847void
f7ab4e3d 1848shut_down_emacs (sig, no_x, stuff)
41423a80 1849 int sig, no_x;
f7ab4e3d 1850 Lisp_Object stuff;
40be253a 1851{
829d872b
RS
1852 /* Prevent running of hooks from now on. */
1853 Vrun_hooks = Qnil;
1854
40be253a
JB
1855 /* If we are controlling the terminal, reset terminal modes */
1856#ifdef EMACS_HAVE_TTY_PGRP
1857 {
d04d81d2
RS
1858 int pgrp = EMACS_GETPGRP (0);
1859
40be253a
JB
1860 int tpgrp;
1861 if (EMACS_GET_TTY_PGRP (0, &tpgrp) != -1
5a570e37 1862 && tpgrp == pgrp)
40be253a
JB
1863 {
1864 fflush (stdout);
1865 reset_sys_modes ();
1866 if (sig && sig != SIGTERM)
1867 fprintf (stderr, "Fatal error (%d).", sig);
1868 }
1869 }
1870#else
1871 fflush (stdout);
1872 reset_sys_modes ();
1873#endif
1874
f7ab4e3d
RS
1875 stuff_buffered_input (stuff);
1876
40be253a
JB
1877 kill_buffer_processes (Qnil);
1878 Fdo_auto_save (Qt, Qnil);
1879
1880#ifdef CLASH_DETECTION
1881 unlock_all_files ();
1882#endif
1883
1884#ifdef VMS
1885 kill_vms_processes ();
1886#endif
1887
5e7f8733 1888#if 0 /* This triggers a bug in XCloseDisplay and is not needed. */
41423a80 1889#ifdef HAVE_X_WINDOWS
f7511647
RS
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)
41423a80
RS
1895 Fx_close_current_connection ();
1896#endif /* HAVE_X_WINDOWS */
5e7f8733 1897#endif
41423a80 1898
40be253a
JB
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
41f339d4
RS
1905
1906#ifdef WINDOWSNT
1907 term_ntproc ();
1908#endif
d546e578 1909
90d920b6 1910 check_glyph_memory ();
189437a7 1911 check_message_stack ();
90d920b6 1912
d546e578
EZ
1913#ifdef MSDOS
1914 dos_cleanup ();
1915#endif
40be253a
JB
1916}
1917
1918
f927c5ae
JB
1919\f
1920#ifndef CANNOT_DUMP
f927c5ae
JB
1921
1922#ifdef HAVE_SHM
1923
1924DEFUN ("dump-emacs-data", Fdump_emacs_data, Sdump_emacs_data, 1, 1, 0,
1925 "Dump current state of Emacs into data file FILENAME.\n\
1926This function exists on systems that use HAVE_SHM.")
c9aae259
EN
1927 (filename)
1928 Lisp_Object filename;
f927c5ae 1929{
55697f5b 1930 extern char my_edata[];
f927c5ae 1931 Lisp_Object tem;
f927c5ae 1932
c9aae259
EN
1933 CHECK_STRING (filename, 0);
1934 filename = Fexpand_file_name (filename, Qnil);
f927c5ae
JB
1935
1936 tem = Vpurify_flag;
1937 Vpurify_flag = Qnil;
1938
1939 fflush (stdout);
1940 /* Tell malloc where start of impure now is */
1941 /* Also arrange for warnings when nearly out of space. */
1942#ifndef SYSTEM_MALLOC
1090a161 1943 memory_warnings (my_edata, malloc_warning);
f927c5ae 1944#endif
c9aae259 1945 map_out_data (XSTRING (filename)->data);
f927c5ae
JB
1946
1947 Vpurify_flag = tem;
1948
1949 return Qnil;
1950}
1951
1952#else /* not HAVE_SHM */
1953
1954DEFUN ("dump-emacs", Fdump_emacs, Sdump_emacs, 2, 2, 0,
1955 "Dump current state of Emacs into executable file FILENAME.\n\
1956Take symbols from SYMFILE (presumably the file you executed to run Emacs).\n\
1957This is used in the file `loadup.el' when building Emacs.\n\
1958\n\
87a98b1a 1959You must run Emacs in batch mode in order to dump it.")
c9aae259
EN
1960 (filename, symfile)
1961 Lisp_Object filename, symfile;
f927c5ae 1962{
55697f5b 1963 extern char my_edata[];
f927c5ae 1964 Lisp_Object tem;
1b7ddf4f
RS
1965 Lisp_Object symbol;
1966 int count = specpdl_ptr - specpdl;
f927c5ae 1967
87a98b1a
RS
1968 if (! noninteractive)
1969 error ("Dumping Emacs works only in batch mode");
1970
1b7ddf4f
RS
1971 /* Bind `command-line-processed' to nil before dumping,
1972 so that the dumped Emacs will process its command line
1973 and set up to work with X windows if appropriate. */
1974 symbol = intern ("command-line-process");
1975 specbind (symbol, Qnil);
1976
c9aae259
EN
1977 CHECK_STRING (filename, 0);
1978 filename = Fexpand_file_name (filename, Qnil);
1979 if (!NILP (symfile))
f927c5ae 1980 {
c9aae259
EN
1981 CHECK_STRING (symfile, 0);
1982 if (XSTRING (symfile)->size)
1983 symfile = Fexpand_file_name (symfile, Qnil);
f927c5ae
JB
1984 }
1985
1986 tem = Vpurify_flag;
1987 Vpurify_flag = Qnil;
1988
0269dedb
RS
1989#ifdef HAVE_TZSET
1990 set_time_zone_rule (dump_tz);
1991#ifndef LOCALTIME_CACHE
1992 /* Force a tz reload, since set_time_zone_rule doesn't. */
1993 tzset ();
1994#endif
1995#endif
1996
f927c5ae
JB
1997 fflush (stdout);
1998#ifdef VMS
c9aae259 1999 mapout_data (XSTRING (filename)->data);
f927c5ae
JB
2000#else
2001 /* Tell malloc where start of impure now is */
2002 /* Also arrange for warnings when nearly out of space. */
2003#ifndef SYSTEM_MALLOC
cc5f52cb
RS
2004#ifndef WINDOWSNT
2005 /* On Windows, this was done before dumping, and that once suffices.
2006 Meanwhile, my_edata is not valid on Windows. */
cb37cf78 2007 memory_warnings (my_edata, malloc_warning);
cc5f52cb 2008#endif /* not WINDOWSNT */
15aaf1b5
RS
2009#endif
2010#ifdef DOUG_LEA_MALLOC
2011 malloc_state_ptr = malloc_get_state ();
f927c5ae 2012#endif
2b7377ca 2013
a74c5ec1 2014#ifdef USE_MMAP_FOR_BUFFERS
2b7377ca
GM
2015 mmap_set_vars (0);
2016#endif
c9aae259
EN
2017 unexec (XSTRING (filename)->data,
2018 !NILP (symfile) ? XSTRING (symfile)->data : 0, my_edata, 0, 0);
a74c5ec1 2019#ifdef USE_MMAP_FOR_BUFFERS
2b7377ca
GM
2020 mmap_set_vars (1);
2021#endif
15aaf1b5
RS
2022#ifdef DOUG_LEA_MALLOC
2023 free (malloc_state_ptr);
2024#endif
f927c5ae
JB
2025#endif /* not VMS */
2026
2027 Vpurify_flag = tem;
2028
1b7ddf4f 2029 return unbind_to (count, Qnil);
f927c5ae
JB
2030}
2031
2032#endif /* not HAVE_SHM */
2033
2034#endif /* not CANNOT_DUMP */
2035\f
68c45bf0
PE
2036#if HAVE_SETLOCALE
2037/* Recover from setlocale (LC_ALL, ""). */
2038void
2039fixup_locale ()
2040{
68c45bf0
PE
2041 /* The Emacs Lisp reader needs LC_NUMERIC to be "C",
2042 so that numbers are read and printed properly for Emacs Lisp. */
2043 setlocale (LC_NUMERIC, "C");
68c45bf0
PE
2044}
2045
0c8559bb
PE
2046/* Set system locale CATEGORY, with previous locale *PLOCALE, to
2047 DESIRED_LOCALE. */
68c45bf0
PE
2048static void
2049synchronize_locale (category, plocale, desired_locale)
2050 int category;
2051 Lisp_Object *plocale;
2052 Lisp_Object desired_locale;
2053{
0c8559bb
PE
2054 if (! EQ (*plocale, desired_locale))
2055 {
2056 *plocale = desired_locale;
2057 setlocale (category, (STRINGP (desired_locale)
59c65f1e 2058 ? (char *)(XSTRING (desired_locale)->data)
0c8559bb
PE
2059 : ""));
2060 }
68c45bf0
PE
2061}
2062
ca9c0567 2063/* Set system time locale to match Vsystem_time_locale, if possible. */
68c45bf0 2064void
ca9c0567 2065synchronize_system_time_locale ()
68c45bf0 2066{
ca9c0567
PE
2067 synchronize_locale (LC_TIME, &Vprevious_system_time_locale,
2068 Vsystem_time_locale);
68c45bf0
PE
2069}
2070
ca9c0567
PE
2071/* Set system messages locale to match Vsystem_messages_locale, if
2072 possible. */
68c45bf0 2073void
ca9c0567 2074synchronize_system_messages_locale ()
68c45bf0
PE
2075{
2076#ifdef LC_MESSAGES
ca9c0567
PE
2077 synchronize_locale (LC_MESSAGES, &Vprevious_system_messages_locale,
2078 Vsystem_messages_locale);
68c45bf0
PE
2079#endif
2080}
2081#endif /* HAVE_SETLOCALE */
2082\f
4b163808 2083#ifndef SEPCHAR
f927c5ae
JB
2084#define SEPCHAR ':'
2085#endif
2086
2087Lisp_Object
2088decode_env_path (evarname, defalt)
2089 char *evarname, *defalt;
2090{
2091 register char *path, *p;
213d0b1f 2092 Lisp_Object lpath, element, tem;
f927c5ae 2093
2447c626
JB
2094 /* It's okay to use getenv here, because this function is only used
2095 to initialize variables when Emacs starts up, and isn't called
2096 after that. */
e065a56e
JB
2097 if (evarname != 0)
2098 path = (char *) getenv (evarname);
2099 else
2100 path = 0;
f927c5ae
JB
2101 if (!path)
2102 path = defalt;
6a30e6d6
RS
2103#ifdef DOS_NT
2104 /* Ensure values from the environment use the proper directory separator. */
2105 if (path)
2106 {
2107 p = alloca (strlen (path) + 1);
2108 strcpy (p, path);
2109 path = p;
2110
2111 if ('/' == DIRECTORY_SEP)
2112 dostounix_filename (path);
2113 else
2114 unixtodos_filename (path);
2115 }
2116#endif
f927c5ae
JB
2117 lpath = Qnil;
2118 while (1)
2119 {
2120 p = index (path, SEPCHAR);
2121 if (!p) p = path + strlen (path);
213d0b1f
RS
2122 element = (p - path ? make_string (path, p - path)
2123 : build_string ("."));
2124
2125 /* Add /: to the front of the name
2126 if it would otherwise be treated as magic. */
2127 tem = Ffind_file_name_handler (element, Qt);
2128 if (! NILP (tem))
2129 element = concat2 (build_string ("/:"), element);
2130
2131 lpath = Fcons (element, lpath);
f927c5ae
JB
2132 if (*p)
2133 path = p + 1;
2134 else
2135 break;
2136 }
2137 return Fnreverse (lpath);
2138}
2139
dfcf069d 2140void
f927c5ae
JB
2141syms_of_emacs ()
2142{
213d0b1f
RS
2143 Qfile_name_handler_alist = intern ("file-name-handler-alist");
2144 staticpro (&Qfile_name_handler_alist);
2145
83591e66 2146#ifndef CANNOT_DUMP
f927c5ae
JB
2147#ifdef HAVE_SHM
2148 defsubr (&Sdump_emacs_data);
2149#else
2150 defsubr (&Sdump_emacs);
83591e66 2151#endif
f927c5ae
JB
2152#endif
2153
2154 defsubr (&Skill_emacs);
2155
59653951 2156 defsubr (&Sinvocation_name);
ace40a69 2157 defsubr (&Sinvocation_directory);
59653951 2158
f927c5ae
JB
2159 DEFVAR_LISP ("command-line-args", &Vcommand_line_args,
2160 "Args passed by shell to Emacs, as a list of strings.");
2161
2162 DEFVAR_LISP ("system-type", &Vsystem_type,
2163 "Value is symbol indicating type of operating system you are using.");
2164 Vsystem_type = intern (SYSTEM_TYPE);
2165
271c7b7c 2166 DEFVAR_LISP ("system-configuration", &Vsystem_configuration,
69bf528e
AI
2167 "Value is string indicating configuration Emacs was built for.\n\
2168On MS-Windows, the value reflects the OS flavor and version on which\n\
2169Emacs is running.");
f7511647 2170 Vsystem_configuration = build_string (EMACS_CONFIGURATION);
271c7b7c 2171
f0fc0b1a
KH
2172 DEFVAR_LISP ("system-configuration-options", &Vsystem_configuration_options,
2173 "String containing the configuration options Emacs was built with.");
2174 Vsystem_configuration_options = build_string (EMACS_CONFIG_OPTIONS);
2175
f927c5ae
JB
2176 DEFVAR_BOOL ("noninteractive", &noninteractive1,
2177 "Non-nil means Emacs is running without interactive terminal.");
e5d77022 2178
e5d77022 2179 DEFVAR_LISP ("kill-emacs-hook", &Vkill_emacs_hook,
edc8ae07
JB
2180 "Hook to be run whenever kill-emacs is called.\n\
2181Since kill-emacs may be invoked when the terminal is disconnected (or\n\
2182in other similar situations), functions placed on this hook should not\n\
9f232a5d
RS
2183expect to be able to interact with the user. To ask for confirmation,\n\
2184see `kill-emacs-query-functions' instead.");
edc8ae07 2185 Vkill_emacs_hook = Qnil;
3005da00 2186
7317d9e8
RS
2187#ifdef SIGUSR1
2188 DEFVAR_LISP ("signal-USR1-hook", &Vsignal_USR1_hook,
3e75bb9e 2189 "Hook to be run whenever emacs receives a USR1 signal");
7317d9e8
RS
2190 Vsignal_USR1_hook = Qnil;
2191#ifdef SIGUSR2
2192 DEFVAR_LISP ("signal-USR2-hook", &Vsignal_USR2_hook,
3e75bb9e 2193 "Hook to be run whenever emacs receives a USR2 signal");
7317d9e8
RS
2194 Vsignal_USR2_hook = Qnil;
2195#endif
2196#endif
2197
2198
3005da00
RS
2199 DEFVAR_INT ("emacs-priority", &emacs_priority,
2200 "Priority for Emacs to run at.\n\
2201This value is effective only if set before Emacs is dumped,\n\
2202and only if the Emacs executable is installed with setuid to permit\n\
621ecf99 2203it to change priority. (Emacs sets its uid back to the real uid.)\n\
a422068f 2204Currently, you need to define SET_EMACS_PRIORITY in `config.h'\n\
e7a9e1c3
RS
2205before you compile Emacs, to enable the code for this feature.");
2206 emacs_priority = 0;
074a066b
GV
2207
2208 DEFVAR_LISP ("path-separator", &Vpath_separator,
2209 "The directory separator in search paths, as a string.");
2210 {
2211 char c = SEPCHAR;
2212 Vpath_separator = make_string (&c, 1);
2213 }
59653951 2214
f67de86f
RS
2215 DEFVAR_LISP ("invocation-name", &Vinvocation_name,
2216 "The program name that was used to run Emacs.\n\
2217Any directory names are omitted.");
2218
2219 DEFVAR_LISP ("invocation-directory", &Vinvocation_directory,
2220 "The directory in which the Emacs executable was found, to run it.\n\
2221The value is nil if that directory's name is not known.");
2222
2223 DEFVAR_LISP ("installation-directory", &Vinstallation_directory,
2224 "A directory within which to look for the `lib-src' and `etc' directories.\n\
2225This is non-nil when we can't find those directories in their standard\n\
2226installed locations, but we can find them\n\
2227near where the Emacs executable was found.");
07f4d123 2228 Vinstallation_directory = Qnil;
68c45bf0 2229
ca9c0567 2230 DEFVAR_LISP ("system-messages-locale", &Vsystem_messages_locale,
68c45bf0 2231 "System locale for messages.");
ca9c0567 2232 Vsystem_messages_locale = Qnil;
68c45bf0 2233
ca9c0567
PE
2234 DEFVAR_LISP ("previous-system-messages-locale",
2235 &Vprevious_system_messages_locale,
68c45bf0 2236 "Most recently used system locale for messages.");
ca9c0567 2237 Vprevious_system_messages_locale = Qnil;
68c45bf0 2238
ca9c0567 2239 DEFVAR_LISP ("system-time-locale", &Vsystem_time_locale,
68c45bf0 2240 "System locale for time.");
ca9c0567 2241 Vsystem_time_locale = Qnil;
68c45bf0 2242
ca9c0567 2243 DEFVAR_LISP ("previous-system-time-locale", &Vprevious_system_time_locale,
68c45bf0 2244 "Most recently used system locale for time.");
ca9c0567 2245 Vprevious_system_time_locale = Qnil;
f927c5ae 2246}