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