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