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