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