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