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