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