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