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