* lisp/isearch.el: Let M-e start with point at the first mismatched char.
[emacs.git] / src / emacs.c
blob8c4490b0a523aedefe5fea549bd6d7d2bf13070e
1 /* Fully extensible Emacs, running on Unix, intended for GNU.
3 Copyright (C) 1985-1987, 1993-1995, 1997-1999, 2001-2011
4 Free Software Foundation, Inc.
6 This file is part of GNU Emacs.
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.
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.
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/>. */
22 #include <config.h>
23 #include <signal.h>
24 #include <errno.h>
25 #include <stdio.h>
27 #include <sys/types.h>
28 #include <sys/file.h>
29 #include <setjmp.h>
30 #include <unistd.h>
32 #include "lisp.h"
34 #ifdef WINDOWSNT
35 #include <fcntl.h>
36 #include <windows.h> /* just for w32.h */
37 #include "w32.h"
38 #include "w32heap.h" /* for prototype of sbrk */
39 #endif
41 #ifdef NS_IMPL_GNUSTEP
42 /* At least under Debian, GSConfig is in a subdirectory. --Stef */
43 #include <GNUstepBase/GSConfig.h>
44 #endif
46 #include "commands.h"
47 #include "intervals.h"
48 #include "buffer.h"
49 #include "window.h"
51 #include "systty.h"
52 #include "blockinput.h"
53 #include "syssignal.h"
54 #include "process.h"
55 #include "frame.h"
56 #include "termhooks.h"
57 #include "keyboard.h"
58 #include "keymap.h"
60 #ifdef HAVE_GNUTLS
61 #include "gnutls.h"
62 #endif
64 #ifdef HAVE_NS
65 #include "nsterm.h"
66 #endif
68 #ifdef HAVE_SETLOCALE
69 #include <locale.h>
70 #endif
72 #ifdef HAVE_SETRLIMIT
73 #include <sys/time.h>
74 #include <sys/resource.h>
75 #endif
77 #ifdef HAVE_PERSONALITY_LINUX32
78 #include <sys/personality.h>
79 #endif
81 #ifndef O_RDWR
82 #define O_RDWR 2
83 #endif
85 #ifdef HAVE_SETPGID
86 #if !defined (USG)
87 #undef setpgrp
88 #define setpgrp setpgid
89 #endif
90 #endif
92 static const char emacs_version[] = VERSION;
93 static const char emacs_copyright[] = "Copyright (C) 2011 Free Software Foundation, Inc.";
95 /* Make these values available in GDB, which doesn't see macros. */
97 #ifdef USE_LSB_TAG
98 int gdb_use_lsb EXTERNALLY_VISIBLE = 1;
99 #else
100 int gdb_use_lsb EXTERNALLY_VISIBLE = 0;
101 #endif
102 #ifndef USE_LISP_UNION_TYPE
103 int gdb_use_union EXTERNALLY_VISIBLE = 0;
104 #else
105 int gdb_use_union EXTERNALLY_VISIBLE = 1;
106 #endif
107 EMACS_INT gdb_valbits EXTERNALLY_VISIBLE = VALBITS;
108 EMACS_INT gdb_gctypebits EXTERNALLY_VISIBLE = GCTYPEBITS;
109 #if defined (DATA_SEG_BITS) && ! defined (USE_LSB_TAG)
110 EMACS_INT gdb_data_seg_bits EXTERNALLY_VISIBLE = DATA_SEG_BITS;
111 #else
112 EMACS_INT gdb_data_seg_bits EXTERNALLY_VISIBLE = 0;
113 #endif
114 EMACS_INT PVEC_FLAG EXTERNALLY_VISIBLE = PSEUDOVECTOR_FLAG;
115 EMACS_INT gdb_array_mark_flag EXTERNALLY_VISIBLE = 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 EXTERNALLY_VISIBLE = PVEC_TYPE_MASK;
120 /* Empty lisp strings. To avoid having to build any others. */
121 Lisp_Object empty_unibyte_string, empty_multibyte_string;
123 /* Set nonzero after Emacs has started up the first time.
124 Prevents reinitialization of the Lisp world and keymaps
125 on subsequent starts. */
126 int initialized;
128 #ifdef DOUG_LEA_MALLOC
129 /* Preserves a pointer to the memory allocated that copies that
130 static data inside glibc's malloc. */
131 static void *malloc_state_ptr;
132 /* From glibc, a routine that returns a copy of the malloc internal state. */
133 extern void *malloc_get_state (void);
134 /* From glibc, a routine that overwrites the malloc internal state. */
135 extern int malloc_set_state (void*);
136 /* Non-zero if the MALLOC_CHECK_ environment variable was set while
137 dumping. Used to work around a bug in glibc's malloc. */
138 static int malloc_using_checking;
139 #endif
141 Lisp_Object Qfile_name_handler_alist;
143 Lisp_Object Qrisky_local_variable;
145 /* If non-zero, Emacs should not attempt to use a window-specific code,
146 but instead should use the virtual terminal under which it was started. */
147 int inhibit_window_system;
149 /* If non-zero, a filter or a sentinel is running. Tested to save the match
150 data on the first attempt to change it inside asynchronous code. */
151 int running_asynch_code;
153 #if defined(HAVE_X_WINDOWS) || defined(HAVE_NS)
154 /* If non-zero, -d was specified, meaning we're using some window system. */
155 int display_arg;
156 #endif
158 /* An address near the bottom of the stack.
159 Tells GC how to save a copy of the stack. */
160 char *stack_bottom;
162 /* The address where the heap starts (from the first sbrk (0) call). */
163 static void *my_heap_start;
165 /* The gap between BSS end and heap start as far as we can tell. */
166 static unsigned long heap_bss_diff;
168 /* Nonzero means running Emacs without interactive terminal. */
169 int noninteractive;
171 /* Nonzero means remove site-lisp directories from load-path. */
172 int no_site_lisp;
174 /* Name for the server started by the daemon.*/
175 static char *daemon_name;
177 /* Pipe used to send exit notification to the daemon parent at
178 startup. */
179 int daemon_pipe[2];
181 /* Save argv and argc. */
182 char **initial_argv;
183 int initial_argc;
185 static void sort_args (int argc, char **argv);
186 static void syms_of_emacs (void);
188 /* MSVC needs each string be shorter than 2048 bytes, so the usage
189 strings below are split to not overflow this limit. */
190 #define USAGE1 "\
191 Usage: %s [OPTION-OR-FILENAME]...\n\
193 Run Emacs, the extensible, customizable, self-documenting real-time\n\
194 display editor. The recommended way to start Emacs for normal editing\n\
195 is with no options at all.\n\
197 Run M-x info RET m emacs RET m emacs invocation RET inside Emacs to\n\
198 read the main documentation for these command-line arguments.\n\
200 Initialization options:\n\
202 --batch do not do interactive display; implies -q\n\
203 --chdir DIR change to directory DIR\n\
204 --daemon start a server in the background\n\
205 --debug-init enable Emacs Lisp debugger for init file\n\
206 --display, -d DISPLAY use X server DISPLAY\n\
207 --no-desktop do not load a saved desktop\n\
208 --no-init-file, -q load neither ~/.emacs nor default.el\n\
209 --no-shared-memory, -nl do not use shared memory\n\
210 --no-site-file do not load site-start.el\n\
211 --no-site-lisp, -nsl do not add site-lisp directories to load-path\n\
212 --no-splash do not display a splash screen on startup\n\
213 --no-window-system, -nw do not communicate with X, ignoring $DISPLAY\n\
214 --quick, -Q equivalent to:\n\
215 -q --no-site-file --no-site-lisp --no-splash\n\
216 --script FILE run FILE as an Emacs Lisp script\n\
217 --terminal, -t DEVICE use DEVICE for terminal I/O\n\
218 --user, -u USER load ~USER/.emacs instead of your own\n\
219 \n%s"
221 #define USAGE2 "\
222 Action options:\n\
224 FILE visit FILE using find-file\n\
225 +LINE go to line LINE in next FILE\n\
226 +LINE:COLUMN go to line LINE, column COLUMN, in next FILE\n\
227 --directory, -L DIR add DIR to variable load-path\n\
228 --eval EXPR evaluate Emacs Lisp expression EXPR\n\
229 --execute EXPR evaluate Emacs Lisp expression EXPR\n\
230 --file FILE visit FILE using find-file\n\
231 --find-file FILE visit FILE using find-file\n\
232 --funcall, -f FUNC call Emacs Lisp function FUNC with no arguments\n\
233 --insert FILE insert contents of FILE into current buffer\n\
234 --kill exit without asking for confirmation\n\
235 --load, -l FILE load Emacs Lisp FILE using the load function\n\
236 --visit FILE visit FILE using find-file\n\
239 #define USAGE3 "\
240 Display options:\n\
242 --background-color, -bg COLOR window background color\n\
243 --basic-display, -D disable many display features;\n\
244 used for debugging Emacs\n\
245 --border-color, -bd COLOR main border color\n\
246 --border-width, -bw WIDTH width of main border\n\
247 --color, --color=MODE override color mode for character terminals;\n\
248 MODE defaults to `auto', and\n\
249 can also be `never', `always',\n\
250 or a mode name like `ansi8'\n\
251 --cursor-color, -cr COLOR color of the Emacs cursor indicating point\n\
252 --font, -fn FONT default font; must be fixed-width\n\
253 --foreground-color, -fg COLOR window foreground color\n\
254 --fullheight, -fh make the first frame high as the screen\n\
255 --fullscreen, -fs make the first frame fullscreen\n\
256 --fullwidth, -fw make the first frame wide as the screen\n\
257 --maximized, -mm make the first frame maximized\n\
258 --geometry, -g GEOMETRY window geometry\n\
259 --no-bitmap-icon, -nbi do not use picture of gnu for Emacs icon\n\
260 --iconic start Emacs in iconified state\n\
261 --internal-border, -ib WIDTH width between text and main border\n\
262 --line-spacing, -lsp PIXELS additional space to put between lines\n\
263 --mouse-color, -ms COLOR mouse cursor color in Emacs window\n\
264 --name NAME title for initial Emacs frame\n\
265 --no-blinking-cursor, -nbc disable blinking cursor\n\
266 --reverse-video, -r, -rv switch foreground and background\n\
267 --title, -T TITLE title for initial Emacs frame\n\
268 --vertical-scroll-bars, -vb enable vertical scroll bars\n\
269 --xrm XRESOURCES set additional X resources\n\
270 --parent-id XID set parent window\n\
271 --help display this help and exit\n\
272 --version output version information and exit\n\
275 #define USAGE4 "\
276 You can generally also specify long option names with a single -; for\n\
277 example, -batch as well as --batch. You can use any unambiguous\n\
278 abbreviation for a --option.\n\
280 Various environment variables and window system resources also affect\n\
281 Emacs' operation. See the main documentation.\n\
283 Report bugs to bug-gnu-emacs@gnu.org. First, please see the Bugs\n\
284 section of the Emacs manual or the file BUGS.\n"
287 /* Signal code for the fatal signal that was received. */
288 static int fatal_error_code;
290 /* Nonzero if handling a fatal error already. */
291 int fatal_error_in_progress;
293 /* If non-null, call this function from fatal_error_signal before
294 committing suicide. */
296 static void (*fatal_error_signal_hook) (void);
298 #ifdef FORWARD_SIGNAL_TO_MAIN_THREAD
299 /* When compiled with GTK and running under Gnome,
300 multiple threads may be created. Keep track of our main
301 thread to make sure signals are delivered to it (see syssignal.h). */
303 pthread_t main_thread;
304 #endif
307 /* Handle bus errors, invalid instruction, etc. */
308 #ifndef FLOAT_CATCH_SIGILL
309 static
310 #endif
311 void
312 fatal_error_signal (int sig)
314 SIGNAL_THREAD_CHECK (sig);
315 fatal_error_code = sig;
316 signal (sig, SIG_DFL);
318 TOTALLY_UNBLOCK_INPUT;
320 /* If fatal error occurs in code below, avoid infinite recursion. */
321 if (! fatal_error_in_progress)
323 fatal_error_in_progress = 1;
325 if (sig == SIGTERM || sig == SIGHUP || sig == SIGINT)
326 Fkill_emacs (make_number (sig));
328 shut_down_emacs (sig, 0, Qnil);
331 /* Signal the same code; this time it will really be fatal.
332 Remember that since we're in a signal handler, the signal we're
333 going to send is probably blocked, so we have to unblock it if we
334 want to really receive it. */
335 #ifndef MSDOS
336 sigunblock (sigmask (fatal_error_code));
337 #endif
339 if (fatal_error_signal_hook)
340 fatal_error_signal_hook ();
342 kill (getpid (), fatal_error_code);
345 #ifdef SIGDANGER
347 /* Handler for SIGDANGER. */
348 void
349 memory_warning_signal (sig)
350 int sig;
352 signal (sig, memory_warning_signal);
353 SIGNAL_THREAD_CHECK (sig);
355 malloc_warning ("Operating system warns that virtual memory is running low.\n");
357 /* It might be unsafe to call do_auto_save now. */
358 force_auto_save_soon ();
360 #endif
362 /* We define abort, rather than using it from the library,
363 so that GDB can return from a breakpoint here.
364 MSDOS has its own definition in msdos.c. */
366 #if ! defined (DOS_NT) && ! defined (NO_ABORT)
368 void
369 abort (void)
371 kill (getpid (), SIGABRT);
372 /* This shouldn't be executed, but it prevents a warning. */
373 exit (1);
375 #endif
378 /* Code for dealing with Lisp access to the Unix command line. */
380 static void
381 init_cmdargs (int argc, char **argv, int skip_args)
383 register int i;
384 Lisp_Object name, dir, handler;
385 int count = SPECPDL_INDEX ();
386 Lisp_Object raw_name;
388 initial_argv = argv;
389 initial_argc = argc;
391 raw_name = build_string (argv[0]);
393 /* Add /: to the front of the name
394 if it would otherwise be treated as magic. */
395 handler = Ffind_file_name_handler (raw_name, Qt);
396 if (! NILP (handler))
397 raw_name = concat2 (build_string ("/:"), raw_name);
399 Vinvocation_name = Ffile_name_nondirectory (raw_name);
400 Vinvocation_directory = Ffile_name_directory (raw_name);
402 /* If we got no directory in argv[0], search PATH to find where
403 Emacs actually came from. */
404 if (NILP (Vinvocation_directory))
406 Lisp_Object found;
407 int yes = openp (Vexec_path, Vinvocation_name,
408 Vexec_suffixes, &found, make_number (X_OK));
409 if (yes == 1)
411 /* Add /: to the front of the name
412 if it would otherwise be treated as magic. */
413 handler = Ffind_file_name_handler (found, Qt);
414 if (! NILP (handler))
415 found = concat2 (build_string ("/:"), found);
416 Vinvocation_directory = Ffile_name_directory (found);
420 if (!NILP (Vinvocation_directory)
421 && NILP (Ffile_name_absolute_p (Vinvocation_directory)))
422 /* Emacs was started with relative path, like ./emacs.
423 Make it absolute. */
424 Vinvocation_directory = Fexpand_file_name (Vinvocation_directory, Qnil);
426 Vinstallation_directory = Qnil;
428 if (!NILP (Vinvocation_directory))
430 dir = Vinvocation_directory;
431 name = Fexpand_file_name (Vinvocation_name, dir);
432 while (1)
434 Lisp_Object tem, lib_src_exists;
435 Lisp_Object etc_exists, info_exists;
437 /* See if dir contains subdirs for use by Emacs.
438 Check for the ones that would exist in a build directory,
439 not including lisp and info. */
440 tem = Fexpand_file_name (build_string ("lib-src"), dir);
441 lib_src_exists = Ffile_exists_p (tem);
443 #ifdef MSDOS
444 /* MSDOS installations frequently remove lib-src, but we still
445 must set installation-directory, or else info won't find
446 its files (it uses the value of installation-directory). */
447 tem = Fexpand_file_name (build_string ("info"), dir);
448 info_exists = Ffile_exists_p (tem);
449 #else
450 info_exists = Qnil;
451 #endif
453 if (!NILP (lib_src_exists) || !NILP (info_exists))
455 tem = Fexpand_file_name (build_string ("etc"), dir);
456 etc_exists = Ffile_exists_p (tem);
457 if (!NILP (etc_exists))
459 Vinstallation_directory
460 = Ffile_name_as_directory (dir);
461 break;
465 /* See if dir's parent contains those subdirs. */
466 tem = Fexpand_file_name (build_string ("../lib-src"), dir);
467 lib_src_exists = Ffile_exists_p (tem);
470 #ifdef MSDOS
471 /* See the MSDOS commentary above. */
472 tem = Fexpand_file_name (build_string ("../info"), dir);
473 info_exists = Ffile_exists_p (tem);
474 #else
475 info_exists = Qnil;
476 #endif
478 if (!NILP (lib_src_exists) || !NILP (info_exists))
480 tem = Fexpand_file_name (build_string ("../etc"), dir);
481 etc_exists = Ffile_exists_p (tem);
482 if (!NILP (etc_exists))
484 tem = Fexpand_file_name (build_string (".."), dir);
485 Vinstallation_directory
486 = Ffile_name_as_directory (tem);
487 break;
491 /* If the Emacs executable is actually a link,
492 next try the dir that the link points into. */
493 tem = Ffile_symlink_p (name);
494 if (!NILP (tem))
496 name = Fexpand_file_name (tem, dir);
497 dir = Ffile_name_directory (name);
499 else
500 break;
504 Vcommand_line_args = Qnil;
506 for (i = argc - 1; i >= 0; i--)
508 if (i == 0 || i > skip_args)
509 /* For the moment, we keep arguments as is in unibyte strings.
510 They are decoded in the function command-line after we know
511 locale-coding-system. */
512 Vcommand_line_args
513 = Fcons (make_unibyte_string (argv[i], strlen (argv[i])),
514 Vcommand_line_args);
517 unbind_to (count, Qnil);
520 DEFUN ("invocation-name", Finvocation_name, Sinvocation_name, 0, 0, 0,
521 doc: /* Return the program name that was used to run Emacs.
522 Any directory names are omitted. */)
523 (void)
525 return Fcopy_sequence (Vinvocation_name);
528 DEFUN ("invocation-directory", Finvocation_directory, Sinvocation_directory,
529 0, 0, 0,
530 doc: /* Return the directory name in which the Emacs executable was located. */)
531 (void)
533 return Fcopy_sequence (Vinvocation_directory);
537 #ifdef HAVE_TZSET
538 /* A valid but unlikely value for the TZ environment value.
539 It is OK (though a bit slower) if the user actually chooses this value. */
540 static char dump_tz[] = "UtC0";
541 #endif
543 #ifndef ORDINARY_LINK
544 /* We don't include crtbegin.o and crtend.o in the link,
545 so these functions and variables might be missed.
546 Provide dummy definitions to avoid error.
547 (We don't have any real constructors or destructors.) */
548 #ifdef __GNUC__
550 /* Define a dummy function F. Declare F too, to pacify gcc
551 -Wmissing-prototypes. */
552 #define DEFINE_DUMMY_FUNCTION(f) \
553 void f (void) EXTERNALLY_VISIBLE; void f (void) {}
555 #ifndef GCC_CTORS_IN_LIBC
556 DEFINE_DUMMY_FUNCTION (__do_global_ctors)
557 DEFINE_DUMMY_FUNCTION (__do_global_ctors_aux)
558 DEFINE_DUMMY_FUNCTION (__do_global_dtors)
559 /* GNU/Linux has a bug in its library; avoid an error. */
560 #ifndef GNU_LINUX
561 char * __CTOR_LIST__[2] EXTERNALLY_VISIBLE = { (char *) (-1), 0 };
562 #endif
563 char * __DTOR_LIST__[2] EXTERNALLY_VISIBLE = { (char *) (-1), 0 };
564 #endif /* GCC_CTORS_IN_LIBC */
565 DEFINE_DUMMY_FUNCTION (__main)
566 #endif /* __GNUC__ */
567 #endif /* ORDINARY_LINK */
569 /* Test whether the next argument in ARGV matches SSTR or a prefix of
570 LSTR (at least MINLEN characters). If so, then if VALPTR is non-null
571 (the argument is supposed to have a value) store in *VALPTR either
572 the next argument or the portion of this one after the equal sign.
573 ARGV is read starting at position *SKIPPTR; this index is advanced
574 by the number of arguments used.
576 Too bad we can't just use getopt for all of this, but we don't have
577 enough information to do it right. */
579 static int
580 argmatch (char **argv, int argc, const char *sstr, const char *lstr,
581 int minlen, char **valptr, int *skipptr)
583 char *p = NULL;
584 int arglen;
585 char *arg;
587 /* Don't access argv[argc]; give up in advance. */
588 if (argc <= *skipptr + 1)
589 return 0;
591 arg = argv[*skipptr+1];
592 if (arg == NULL)
593 return 0;
594 if (strcmp (arg, sstr) == 0)
596 if (valptr != NULL)
598 *valptr = argv[*skipptr+2];
599 *skipptr += 2;
601 else
602 *skipptr += 1;
603 return 1;
605 arglen = (valptr != NULL && (p = strchr (arg, '=')) != NULL
606 ? p - arg : strlen (arg));
607 if (lstr == 0 || arglen < minlen || strncmp (arg, lstr, arglen) != 0)
608 return 0;
609 else if (valptr == NULL)
611 *skipptr += 1;
612 return 1;
614 else if (p != NULL)
616 *valptr = p+1;
617 *skipptr += 1;
618 return 1;
620 else if (argv[*skipptr+2] != NULL)
622 *valptr = argv[*skipptr+2];
623 *skipptr += 2;
624 return 1;
626 else
628 return 0;
632 #ifdef DOUG_LEA_MALLOC
634 /* malloc can be invoked even before main (e.g. by the dynamic
635 linker), so the dumped malloc state must be restored as early as
636 possible using this special hook. */
638 static void
639 malloc_initialize_hook (void)
641 #ifndef USE_CRT_DLL
642 extern char **environ;
643 #endif
645 if (initialized)
647 if (!malloc_using_checking)
648 /* Work around a bug in glibc's malloc. MALLOC_CHECK_ must be
649 ignored if the heap to be restored was constructed without
650 malloc checking. Can't use unsetenv, since that calls malloc. */
652 char **p;
654 for (p = environ; p && *p; p++)
655 if (strncmp (*p, "MALLOC_CHECK_=", 14) == 0)
658 *p = p[1];
659 while (*++p);
660 break;
664 malloc_set_state (malloc_state_ptr);
665 #ifndef XMALLOC_OVERRUN_CHECK
666 free (malloc_state_ptr);
667 #endif
669 else
671 if (my_heap_start == 0)
672 my_heap_start = sbrk (0);
673 malloc_using_checking = getenv ("MALLOC_CHECK_") != NULL;
677 void (*__malloc_initialize_hook) (void) = malloc_initialize_hook;
679 #endif /* DOUG_LEA_MALLOC */
682 /* ARGSUSED */
684 main (int argc, char **argv)
686 #if GC_MARK_STACK
687 Lisp_Object dummy;
688 #endif
689 char stack_bottom_variable;
690 int do_initial_setlocale;
691 int skip_args = 0;
692 #ifdef HAVE_SETRLIMIT
693 struct rlimit rlim;
694 #endif
695 int no_loadup = 0;
696 char *junk = 0;
697 char *dname_arg = 0;
698 #ifdef NS_IMPL_COCOA
699 char dname_arg2[80];
700 #endif
701 char *ch_to_dir;
703 #if GC_MARK_STACK
704 stack_base = &dummy;
705 #endif
707 #if defined (USE_GTK) && defined (G_SLICE_ALWAYS_MALLOC)
708 /* This is used by the Cygwin build. */
709 setenv ("G_SLICE", "always-malloc", 1);
710 #endif
712 if (!initialized)
714 extern char my_endbss[];
715 extern char *my_endbss_static;
717 if (my_heap_start == 0)
718 my_heap_start = sbrk (0);
720 heap_bss_diff = (char *)my_heap_start - max (my_endbss, my_endbss_static);
723 #ifdef RUN_TIME_REMAP
724 if (initialized)
725 run_time_remap (argv[0]);
726 #endif
728 /* If using unexmacosx.c (set by s/darwin.h), we must do this. */
729 #ifdef DARWIN_OS
730 if (!initialized)
731 unexec_init_emacs_zone ();
732 #endif
734 sort_args (argc, argv);
735 argc = 0;
736 while (argv[argc]) argc++;
738 if (argmatch (argv, argc, "-version", "--version", 3, NULL, &skip_args))
740 const char *version, *copyright;
741 if (initialized)
743 Lisp_Object tem, tem2;
744 tem = Fsymbol_value (intern_c_string ("emacs-version"));
745 tem2 = Fsymbol_value (intern_c_string ("emacs-copyright"));
746 if (!STRINGP (tem))
748 fprintf (stderr, "Invalid value of `emacs-version'\n");
749 exit (1);
751 if (!STRINGP (tem2))
753 fprintf (stderr, "Invalid value of `emacs-copyright'\n");
754 exit (1);
756 else
758 version = SSDATA (tem);
759 copyright = SSDATA (tem2);
762 else
764 version = emacs_version;
765 copyright = emacs_copyright;
767 printf ("GNU Emacs %s\n", version);
768 printf ("%s\n", copyright);
769 printf ("GNU Emacs comes with ABSOLUTELY NO WARRANTY.\n");
770 printf ("You may redistribute copies of Emacs\n");
771 printf ("under the terms of the GNU General Public License.\n");
772 printf ("For more information about these matters, ");
773 printf ("see the file named COPYING.\n");
774 exit (0);
777 if (argmatch (argv, argc, "-chdir", "--chdir", 4, &ch_to_dir, &skip_args))
778 if (chdir (ch_to_dir) == -1)
780 fprintf (stderr, "%s: Can't chdir to %s: %s\n",
781 argv[0], ch_to_dir, strerror (errno));
782 exit (1);
786 #ifdef HAVE_PERSONALITY_LINUX32
787 if (!initialized
788 && (strcmp (argv[argc-1], "dump") == 0
789 || strcmp (argv[argc-1], "bootstrap") == 0)
790 && ! getenv ("EMACS_HEAP_EXEC"))
792 static char heapexec[] = "EMACS_HEAP_EXEC=true";
793 /* Set this so we only do this once. */
794 putenv(heapexec);
796 /* A flag to turn off address randomization which is introduced
797 in linux kernel shipped with fedora core 4 */
798 #define ADD_NO_RANDOMIZE 0x0040000
799 personality (PER_LINUX32 | ADD_NO_RANDOMIZE);
800 #undef ADD_NO_RANDOMIZE
802 execvp (argv[0], argv);
804 /* If the exec fails, try to dump anyway. */
805 perror ("execvp");
807 #endif /* HAVE_PERSONALITY_LINUX32 */
809 #if defined (HAVE_SETRLIMIT) && defined (RLIMIT_STACK)
810 /* Extend the stack space available.
811 Don't do that if dumping, since some systems (e.g. DJGPP)
812 might define a smaller stack limit at that time. */
813 if (1
814 #ifndef CANNOT_DUMP
815 && (!noninteractive || initialized)
816 #endif
817 && !getrlimit (RLIMIT_STACK, &rlim))
819 long newlim;
820 extern size_t re_max_failures;
821 /* Approximate the amount regex.c needs per unit of re_max_failures. */
822 int ratio = 20 * sizeof (char *);
823 /* Then add 33% to cover the size of the smaller stacks that regex.c
824 successively allocates and discards, on its way to the maximum. */
825 ratio += ratio / 3;
826 /* Add in some extra to cover
827 what we're likely to use for other reasons. */
828 newlim = re_max_failures * ratio + 200000;
829 #ifdef __NetBSD__
830 /* NetBSD (at least NetBSD 1.2G and former) has a bug in its
831 stack allocation routine for new process that the allocation
832 fails if stack limit is not on page boundary. So, round up the
833 new limit to page boundary. */
834 newlim = (newlim + getpagesize () - 1) / getpagesize () * getpagesize();
835 #endif
836 if (newlim > rlim.rlim_max)
838 newlim = rlim.rlim_max;
839 /* Don't let regex.c overflow the stack we have. */
840 re_max_failures = (newlim - 200000) / ratio;
842 if (rlim.rlim_cur < newlim)
843 rlim.rlim_cur = newlim;
845 setrlimit (RLIMIT_STACK, &rlim);
847 #endif /* HAVE_SETRLIMIT and RLIMIT_STACK */
849 /* Record (approximately) where the stack begins. */
850 stack_bottom = &stack_bottom_variable;
852 clearerr (stdin);
854 #ifndef SYSTEM_MALLOC
855 /* Arrange to get warning messages as memory fills up. */
856 memory_warnings (0, malloc_warning);
858 /* Call malloc at least once, to run the initial __malloc_hook.
859 Also call realloc and free for consistency. */
860 free (realloc (malloc (4), 4));
862 # ifndef SYNC_INPUT
863 /* Arrange to disable interrupt input inside malloc etc. */
864 uninterrupt_malloc ();
865 # endif /* not SYNC_INPUT */
866 #endif /* not SYSTEM_MALLOC */
868 #ifdef FORWARD_SIGNAL_TO_MAIN_THREAD
869 main_thread = pthread_self ();
870 #endif /* FORWARD_SIGNAL_TO_MAIN_THREAD */
872 #if defined (MSDOS) || defined (WINDOWSNT)
873 /* We do all file input/output as binary files. When we need to translate
874 newlines, we do that manually. */
875 _fmode = O_BINARY;
876 #endif /* MSDOS || WINDOWSNT */
878 #ifdef MSDOS
879 if (!isatty (fileno (stdin)))
880 setmode (fileno (stdin), O_BINARY);
881 if (!isatty (fileno (stdout)))
883 fflush (stdout);
884 setmode (fileno (stdout), O_BINARY);
886 #endif /* MSDOS */
888 /* Skip initial setlocale if LC_ALL is "C", as it's not needed in that case.
889 The build procedure uses this while dumping, to ensure that the
890 dumped Emacs does not have its system locale tables initialized,
891 as that might cause screwups when the dumped Emacs starts up. */
893 char *lc_all = getenv ("LC_ALL");
894 do_initial_setlocale = ! lc_all || strcmp (lc_all, "C");
897 /* Set locale now, so that initial error messages are localized properly.
898 fixup_locale must wait until later, since it builds strings. */
899 if (do_initial_setlocale)
900 setlocale (LC_ALL, "");
902 inhibit_window_system = 0;
904 /* Handle the -t switch, which specifies filename to use as terminal. */
905 while (1)
907 char *term;
908 if (argmatch (argv, argc, "-t", "--terminal", 4, &term, &skip_args))
910 int result;
911 emacs_close (0);
912 emacs_close (1);
913 result = emacs_open (term, O_RDWR, 0);
914 if (result < 0 || dup (0) < 0)
916 char *errstring = strerror (errno);
917 fprintf (stderr, "%s: %s: %s\n", argv[0], term, errstring);
918 exit (1);
920 if (! isatty (0))
922 fprintf (stderr, "%s: %s: not a tty\n", argv[0], term);
923 exit (1);
925 fprintf (stderr, "Using %s\n", term);
926 #ifdef HAVE_WINDOW_SYSTEM
927 inhibit_window_system = 1; /* -t => -nw */
928 #endif
930 else
931 break;
934 /* Command line option --no-windows is deprecated and thus not mentioned
935 in the manual and usage informations. */
936 if (argmatch (argv, argc, "-nw", "--no-window-system", 6, NULL, &skip_args)
937 || argmatch (argv, argc, "-nw", "--no-windows", 6, NULL, &skip_args))
938 inhibit_window_system = 1;
940 /* Handle the -batch switch, which means don't do interactive display. */
941 noninteractive = 0;
942 if (argmatch (argv, argc, "-batch", "--batch", 5, NULL, &skip_args))
944 noninteractive = 1;
945 Vundo_outer_limit = Qnil;
947 if (argmatch (argv, argc, "-script", "--script", 3, &junk, &skip_args))
949 noninteractive = 1; /* Set batch mode. */
950 /* Convert --script to -scriptload, un-skip it, and sort again
951 so that it will be handled in proper sequence. */
952 /* FIXME broken for --script=FILE - is that supposed to work? */
953 argv[skip_args - 1] = (char *) "-scriptload";
954 skip_args -= 2;
955 sort_args (argc, argv);
958 /* Handle the --help option, which gives a usage message. */
959 if (argmatch (argv, argc, "-help", "--help", 3, NULL, &skip_args))
961 printf (USAGE1, argv[0], USAGE2);
962 printf (USAGE3);
963 printf (USAGE4);
964 exit (0);
967 if (argmatch (argv, argc, "-daemon", "--daemon", 5, NULL, &skip_args)
968 || argmatch (argv, argc, "-daemon", "--daemon", 5, &dname_arg, &skip_args))
970 #ifndef DOS_NT
971 pid_t f;
973 /* Start as a daemon: fork a new child process which will run the
974 rest of the initialization code, then exit.
976 Detaching a daemon requires the following steps:
977 - fork
978 - setsid
979 - exit the parent
980 - close the tty file-descriptors
982 We only want to do the last 2 steps once the daemon is ready to
983 serve requests, i.e. after loading .emacs (initialization).
984 OTOH initialization may start subprocesses (e.g. ispell) and these
985 should be run from the proper process (the one that will end up
986 running as daemon) and with the proper "session id" in order for
987 them to keep working after detaching, so fork and setsid need to be
988 performed before initialization.
990 We want to avoid exiting before the server socket is ready, so
991 use a pipe for synchronization. The parent waits for the child
992 to close its end of the pipe (using `daemon-initialized')
993 before exiting. */
994 if (pipe (daemon_pipe) == -1)
996 fprintf (stderr, "Cannot pipe!\n");
997 exit (1);
1000 #ifndef NS_IMPL_COCOA
1001 f = fork ();
1002 #else /* NS_IMPL_COCOA */
1003 /* Under Cocoa we must do fork+exec as CoreFoundation lib fails in
1004 forked process: http://developer.apple.com/ReleaseNotes/
1005 CoreFoundation/CoreFoundation.html)
1006 We mark being in the exec'd process by a daemon name argument of
1007 form "--daemon=\nFD0,FD1\nNAME" where FD are the pipe file descriptors,
1008 NAME is the original daemon name, if any. */
1009 if (!dname_arg || !strchr (dname_arg, '\n'))
1010 f = fork (); /* in orig */
1011 else
1012 f = 0; /* in exec'd */
1013 #endif /* NS_IMPL_COCOA */
1014 if (f > 0)
1016 int retval;
1017 char buf[1];
1019 /* Close unused writing end of the pipe. */
1020 close (daemon_pipe[1]);
1022 /* Just wait for the child to close its end of the pipe. */
1025 retval = read (daemon_pipe[0], &buf, 1);
1027 while (retval == -1 && errno == EINTR);
1029 if (retval < 0)
1031 fprintf (stderr, "Error reading status from child\n");
1032 exit (1);
1034 else if (retval == 0)
1036 fprintf (stderr, "Error: server did not start correctly\n");
1037 exit (1);
1040 close (daemon_pipe[0]);
1041 exit (0);
1043 if (f < 0)
1045 fprintf (stderr, "Cannot fork!\n");
1046 exit (1);
1049 #ifdef NS_IMPL_COCOA
1051 /* In orig process, forked as child, OR in exec'd. */
1052 if (!dname_arg || !strchr (dname_arg, '\n'))
1053 { /* In orig, child: now exec w/special daemon name. */
1054 char fdStr[80];
1056 if (dname_arg && strlen (dname_arg) > 70)
1058 fprintf (stderr, "daemon: child name too long\n");
1059 exit (1);
1062 sprintf (fdStr, "--daemon=\n%d,%d\n%s", daemon_pipe[0],
1063 daemon_pipe[1], dname_arg ? dname_arg : "");
1064 argv[skip_args] = fdStr;
1066 execv (argv[0], argv);
1067 fprintf (stderr, "emacs daemon: exec failed: %d\n", errno);
1068 exit (1);
1071 /* In exec'd: parse special dname into pipe and name info. */
1072 if (!dname_arg || !strchr (dname_arg, '\n')
1073 || strlen (dname_arg) < 1 || strlen (dname_arg) > 70)
1075 fprintf (stderr, "emacs daemon: daemon name absent or too long\n");
1076 exit(1);
1078 dname_arg2[0] = '\0';
1079 sscanf (dname_arg, "\n%d,%d\n%s", &(daemon_pipe[0]), &(daemon_pipe[1]),
1080 dname_arg2);
1081 dname_arg = strlen (dname_arg2) ? dname_arg2 : NULL;
1083 #endif /* NS_IMPL_COCOA */
1085 if (dname_arg)
1086 daemon_name = xstrdup (dname_arg);
1087 /* Close unused reading end of the pipe. */
1088 close (daemon_pipe[0]);
1089 /* Make sure that the used end of the pipe is closed on exec, so
1090 that it is not accessible to programs started from .emacs. */
1091 fcntl (daemon_pipe[1], F_SETFD, FD_CLOEXEC);
1093 #ifdef HAVE_SETSID
1094 setsid();
1095 #endif
1096 #else /* DOS_NT */
1097 fprintf (stderr, "This platform does not support the -daemon flag.\n");
1098 exit (1);
1099 #endif /* DOS_NT */
1102 if (! noninteractive)
1104 #if defined (USG5) && defined (INTERRUPT_INPUT)
1105 setpgrp ();
1106 #endif
1107 #if defined (HAVE_GTK_AND_PTHREAD) && !defined (SYSTEM_MALLOC) && !defined (DOUG_LEA_MALLOC)
1109 extern void malloc_enable_thread (void);
1111 malloc_enable_thread ();
1113 #endif
1116 init_signals ();
1118 /* Don't catch SIGHUP if dumping. */
1119 if (1
1120 #ifndef CANNOT_DUMP
1121 && initialized
1122 #endif
1125 sigblock (sigmask (SIGHUP));
1126 /* In --batch mode, don't catch SIGHUP if already ignored.
1127 That makes nohup work. */
1128 if (! noninteractive
1129 || signal (SIGHUP, SIG_IGN) != SIG_IGN)
1130 signal (SIGHUP, fatal_error_signal);
1131 sigunblock (sigmask (SIGHUP));
1134 if (
1135 #ifndef CANNOT_DUMP
1136 ! noninteractive || initialized
1137 #else
1139 #endif
1142 /* Don't catch these signals in batch mode if dumping.
1143 On some machines, this sets static data that would make
1144 signal fail to work right when the dumped Emacs is run. */
1145 signal (SIGQUIT, fatal_error_signal);
1146 signal (SIGILL, fatal_error_signal);
1147 signal (SIGTRAP, fatal_error_signal);
1148 #ifdef SIGUSR1
1149 add_user_signal (SIGUSR1, "sigusr1");
1150 #endif
1151 #ifdef SIGUSR2
1152 add_user_signal (SIGUSR2, "sigusr2");
1153 #endif
1154 #ifdef SIGABRT
1155 signal (SIGABRT, fatal_error_signal);
1156 #endif
1157 #ifdef SIGHWE
1158 signal (SIGHWE, fatal_error_signal);
1159 #endif
1160 #ifdef SIGPRE
1161 signal (SIGPRE, fatal_error_signal);
1162 #endif
1163 #ifdef SIGORE
1164 signal (SIGORE, fatal_error_signal);
1165 #endif
1166 #ifdef SIGUME
1167 signal (SIGUME, fatal_error_signal);
1168 #endif
1169 #ifdef SIGDLK
1170 signal (SIGDLK, fatal_error_signal);
1171 #endif
1172 #ifdef SIGCPULIM
1173 signal (SIGCPULIM, fatal_error_signal);
1174 #endif
1175 #ifdef SIGIOT
1176 /* This is missing on some systems - OS/2, for example. */
1177 signal (SIGIOT, fatal_error_signal);
1178 #endif
1179 #ifdef SIGEMT
1180 signal (SIGEMT, fatal_error_signal);
1181 #endif
1182 signal (SIGFPE, fatal_error_signal);
1183 #ifdef SIGBUS
1184 signal (SIGBUS, fatal_error_signal);
1185 #endif
1186 signal (SIGSEGV, fatal_error_signal);
1187 #ifdef SIGSYS
1188 signal (SIGSYS, fatal_error_signal);
1189 #endif
1190 /* May need special treatment on MS-Windows. See
1191 http://lists.gnu.org/archive/html/emacs-devel/2010-09/msg01062.html
1192 Please update the doc of kill-emacs, kill-emacs-hook, and
1193 NEWS if you change this.
1195 if (noninteractive) signal (SIGINT, fatal_error_signal);
1196 signal (SIGTERM, fatal_error_signal);
1197 #ifdef SIGXCPU
1198 signal (SIGXCPU, fatal_error_signal);
1199 #endif
1200 #ifdef SIGXFSZ
1201 signal (SIGXFSZ, fatal_error_signal);
1202 #endif /* SIGXFSZ */
1204 #ifdef SIGDANGER
1205 /* This just means available memory is getting low. */
1206 signal (SIGDANGER, memory_warning_signal);
1207 #endif
1209 #ifdef AIX
1210 /* 20 is SIGCHLD, 21 is SIGTTIN, 22 is SIGTTOU. */
1211 signal (SIGXCPU, fatal_error_signal);
1212 signal (SIGIOINT, fatal_error_signal);
1213 signal (SIGGRANT, fatal_error_signal);
1214 signal (SIGRETRACT, fatal_error_signal);
1215 signal (SIGSOUND, fatal_error_signal);
1216 signal (SIGMSG, fatal_error_signal);
1217 #endif /* AIX */
1220 noninteractive1 = noninteractive;
1222 /* Perform basic initializations (not merely interning symbols). */
1224 if (!initialized)
1226 init_alloc_once ();
1227 init_obarray ();
1228 init_eval_once ();
1229 init_character_once ();
1230 init_charset_once ();
1231 init_coding_once ();
1232 init_syntax_once (); /* Create standard syntax table. */
1233 init_category_once (); /* Create standard category table. */
1234 /* Must be done before init_buffer. */
1235 init_casetab_once ();
1236 init_buffer_once (); /* Create buffer table and some buffers. */
1237 init_minibuf_once (); /* Create list of minibuffers. */
1238 /* Must precede init_window_once. */
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. */
1244 syms_of_xfaces ();
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 ();
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 ();
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. */
1265 init_window_once (); /* Init the window system. */
1266 #ifdef HAVE_WINDOW_SYSTEM
1267 init_fringe_once (); /* Swap bitmaps if necessary. */
1268 #endif /* HAVE_WINDOW_SYSTEM */
1271 init_alloc ();
1273 if (do_initial_setlocale)
1275 fixup_locale ();
1276 Vsystem_messages_locale = Vprevious_system_messages_locale;
1277 Vsystem_time_locale = Vprevious_system_time_locale;
1280 init_eval ();
1281 init_data ();
1282 #ifdef CLASH_DETECTION
1283 init_filelock ();
1284 #endif
1285 init_atimer ();
1286 running_asynch_code = 0;
1288 no_loadup
1289 = argmatch (argv, argc, "-nl", "--no-loadup", 6, NULL, &skip_args);
1291 no_site_lisp
1292 = argmatch (argv, argc, "-nsl", "--no-site-lisp", 11, NULL, &skip_args);
1294 #ifdef HAVE_NS
1295 ns_alloc_autorelease_pool();
1296 if (!noninteractive)
1298 #ifdef NS_IMPL_COCOA
1299 if (skip_args < argc)
1301 /* FIXME: Do the right thing if getenv returns NULL, or if
1302 chdir fails. */
1303 if (!strncmp(argv[skip_args], "-psn", 4))
1305 skip_args += 1;
1306 chdir (getenv ("HOME"));
1308 else if (skip_args+1 < argc && !strncmp(argv[skip_args+1], "-psn", 4))
1310 skip_args += 2;
1311 chdir (getenv ("HOME"));
1314 #endif /* COCOA */
1316 #endif /* HAVE_NS */
1318 #ifdef HAVE_X_WINDOWS
1319 /* Stupid kludge to catch command-line display spec. We can't
1320 handle this argument entirely in window system dependent code
1321 because we don't even know which window system dependent code
1322 to run until we've recognized this argument. */
1324 char *displayname = 0;
1325 int count_before = skip_args;
1327 /* Skip any number of -d options, but only use the last one. */
1328 while (1)
1330 int count_before_this = skip_args;
1332 if (argmatch (argv, argc, "-d", "--display", 3, &displayname, &skip_args))
1333 display_arg = 1;
1334 else if (argmatch (argv, argc, "-display", 0, 3, &displayname, &skip_args))
1335 display_arg = 1;
1336 else
1337 break;
1339 count_before = count_before_this;
1342 /* If we have the form --display=NAME,
1343 convert it into -d name.
1344 This requires inserting a new element into argv. */
1345 if (displayname != 0 && skip_args - count_before == 1)
1347 char **new = (char **) xmalloc (sizeof (char *) * (argc + 2));
1348 int j;
1350 for (j = 0; j < count_before + 1; j++)
1351 new[j] = argv[j];
1352 new[count_before + 1] = (char *) "-d";
1353 new[count_before + 2] = displayname;
1354 for (j = count_before + 2; j <argc; j++)
1355 new[j + 1] = argv[j];
1356 argv = new;
1357 argc++;
1359 /* Change --display to -d, when its arg is separate. */
1360 else if (displayname != 0 && skip_args > count_before
1361 && argv[count_before + 1][1] == '-')
1362 argv[count_before + 1] = (char *) "-d";
1364 if (! no_site_lisp)
1366 if (argmatch (argv, argc, "-Q", "--quick", 3, NULL, &skip_args)
1367 || argmatch (argv, argc, "-quick", 0, 2, NULL, &skip_args))
1368 no_site_lisp = 1;
1371 /* Don't actually discard this arg. */
1372 skip_args = count_before;
1374 #else /* !HAVE_X_WINDOWS */
1375 if (! no_site_lisp)
1377 int count_before = skip_args;
1379 if (argmatch (argv, argc, "-Q", "--quick", 3, NULL, &skip_args)
1380 || argmatch (argv, argc, "-quick", 0, 2, NULL, &skip_args))
1381 no_site_lisp = 1;
1383 skip_args = count_before;
1385 #endif
1387 /* argmatch must not be used after here,
1388 except when bulding temacs
1389 because the -d argument has not been skipped in skip_args. */
1391 #ifdef MSDOS
1392 /* Call early 'cause init_environment needs it. */
1393 init_dosfns ();
1394 /* Set defaults for several environment variables. */
1395 if (initialized)
1396 init_environment (argc, argv, skip_args);
1397 else
1398 tzset ();
1399 #endif /* MSDOS */
1401 #ifdef WINDOWSNT
1402 globals_of_w32 ();
1403 /* Initialize environment from registry settings. */
1404 init_environment (argv);
1405 init_ntproc (); /* must precede init_editfns. */
1406 #endif
1408 #ifdef HAVE_NS
1409 #ifndef CANNOT_DUMP
1410 if (initialized)
1411 #endif
1412 ns_init_paths ();
1413 #endif
1415 /* Initialize and GC-protect Vinitial_environment and
1416 Vprocess_environment before set_initial_environment fills them
1417 in. */
1418 if (!initialized)
1419 syms_of_callproc ();
1420 /* egetenv is a pretty low-level facility, which may get called in
1421 many circumstances; it seems flimsy to put off initializing it
1422 until calling init_callproc. */
1423 set_initial_environment ();
1424 /* AIX crashes are reported in system versions 3.2.3 and 3.2.4
1425 if this is not done. Do it after set_global_environment so that we
1426 don't pollute Vglobal_environment. */
1427 /* Setting LANG here will defeat the startup locale processing... */
1428 #ifdef AIX
1429 putenv ("LANG=C");
1430 #endif
1432 init_buffer (); /* Init default directory of main buffer. */
1434 init_callproc_1 (); /* Must precede init_cmdargs and init_sys_modes. */
1435 init_cmdargs (argc, argv, skip_args); /* Must precede init_lread. */
1437 if (initialized)
1439 /* Erase any pre-dump messages in the message log, to avoid confusion. */
1440 Lisp_Object old_log_max;
1441 old_log_max = Vmessage_log_max;
1442 XSETFASTINT (Vmessage_log_max, 0);
1443 message_dolog ("", 0, 1, 0);
1444 Vmessage_log_max = old_log_max;
1447 init_callproc (); /* Must follow init_cmdargs but not init_sys_modes. */
1448 init_lread ();
1450 /* Intern the names of all standard functions and variables;
1451 define standard keys. */
1453 if (!initialized)
1455 /* The basic levels of Lisp must come first. Note that
1456 syms_of_data and some others have already been called. */
1457 syms_of_chartab ();
1458 syms_of_lread ();
1459 syms_of_print ();
1460 syms_of_eval ();
1461 syms_of_fns ();
1462 syms_of_floatfns ();
1464 syms_of_buffer ();
1465 syms_of_bytecode ();
1466 syms_of_callint ();
1467 syms_of_casefiddle ();
1468 syms_of_casetab ();
1469 syms_of_category ();
1470 syms_of_ccl ();
1471 syms_of_character ();
1472 syms_of_cmds ();
1473 syms_of_dired ();
1474 syms_of_display ();
1475 syms_of_doc ();
1476 syms_of_editfns ();
1477 syms_of_emacs ();
1478 syms_of_filelock ();
1479 syms_of_indent ();
1480 syms_of_insdel ();
1481 /* syms_of_keymap (); */
1482 syms_of_macros ();
1483 syms_of_marker ();
1484 syms_of_minibuf ();
1485 syms_of_process ();
1486 syms_of_search ();
1487 syms_of_frame ();
1488 syms_of_syntax ();
1489 syms_of_terminal ();
1490 syms_of_term ();
1491 syms_of_undo ();
1492 #ifdef HAVE_SOUND
1493 syms_of_sound ();
1494 #endif
1495 syms_of_textprop ();
1496 syms_of_composite ();
1497 #ifdef WINDOWSNT
1498 syms_of_ntproc ();
1499 #endif /* WINDOWSNT */
1500 syms_of_window ();
1501 syms_of_xdisp ();
1502 syms_of_font ();
1503 #ifdef HAVE_WINDOW_SYSTEM
1504 syms_of_fringe ();
1505 syms_of_image ();
1506 #endif /* HAVE_WINDOW_SYSTEM */
1507 #ifdef HAVE_X_WINDOWS
1508 syms_of_xterm ();
1509 syms_of_xfns ();
1510 syms_of_xmenu ();
1511 syms_of_fontset ();
1512 syms_of_xsettings ();
1513 #ifdef HAVE_X_SM
1514 syms_of_xsmfns ();
1515 #endif
1516 #ifdef HAVE_X11
1517 syms_of_xselect ();
1518 #endif
1519 #endif /* HAVE_X_WINDOWS */
1521 #ifdef HAVE_LIBXML2
1522 syms_of_xml ();
1523 #endif
1525 syms_of_menu ();
1527 #ifdef HAVE_NTGUI
1528 syms_of_w32term ();
1529 syms_of_w32fns ();
1530 syms_of_w32select ();
1531 syms_of_w32menu ();
1532 syms_of_fontset ();
1533 #endif /* HAVE_NTGUI */
1535 #ifdef MSDOS
1536 syms_of_xmenu ();
1537 syms_of_dosfns();
1538 syms_of_msdos();
1539 syms_of_win16select();
1540 #endif /* MSDOS */
1542 #ifdef HAVE_NS
1543 syms_of_nsterm ();
1544 syms_of_nsfns ();
1545 syms_of_nsmenu ();
1546 syms_of_nsselect ();
1547 syms_of_fontset ();
1548 #endif /* HAVE_NS */
1550 #ifdef HAVE_GNUTLS
1551 syms_of_gnutls ();
1552 #endif
1554 #ifdef HAVE_DBUS
1555 syms_of_dbusbind ();
1556 #endif /* HAVE_DBUS */
1558 #ifdef WINDOWSNT
1559 syms_of_ntterm ();
1560 #endif /* WINDOWSNT */
1562 keys_of_casefiddle ();
1563 keys_of_cmds ();
1564 keys_of_buffer ();
1565 keys_of_keyboard ();
1566 keys_of_keymap ();
1567 keys_of_window ();
1569 else
1571 /* Initialization that must be done even if the global variable
1572 initialized is non zero. */
1573 #ifdef HAVE_NTGUI
1574 globals_of_w32fns ();
1575 globals_of_w32menu ();
1576 globals_of_w32select ();
1577 #endif /* HAVE_NTGUI */
1580 init_charset ();
1582 init_editfns (); /* init_process uses Voperating_system_release. */
1583 init_process (); /* init_display uses add_keyboard_wait_descriptor. */
1584 init_keyboard (); /* This too must precede init_sys_modes. */
1585 if (!noninteractive)
1586 init_display (); /* Determine terminal type. Calls init_sys_modes. */
1587 init_fns ();
1588 init_xdisp ();
1589 #ifdef HAVE_WINDOW_SYSTEM
1590 init_fringe ();
1591 init_image ();
1592 #endif /* HAVE_WINDOW_SYSTEM */
1593 init_macros ();
1594 init_floatfns ();
1595 #ifdef HAVE_SOUND
1596 init_sound ();
1597 #endif
1598 init_window ();
1599 init_font ();
1601 if (!initialized)
1603 char *file;
1604 /* Handle -l loadup, args passed by Makefile. */
1605 if (argmatch (argv, argc, "-l", "--load", 3, &file, &skip_args))
1606 Vtop_level = Fcons (intern_c_string ("load"),
1607 Fcons (build_string (file), Qnil));
1608 /* Unless next switch is -nl, load "loadup.el" first thing. */
1609 if (! no_loadup)
1610 Vtop_level = Fcons (intern_c_string ("load"),
1611 Fcons (build_string ("loadup.el"), Qnil));
1614 if (initialized)
1616 #ifdef HAVE_TZSET
1618 /* If the execution TZ happens to be the same as the dump TZ,
1619 change it to some other value and then change it back,
1620 to force the underlying implementation to reload the TZ info.
1621 This is needed on implementations that load TZ info from files,
1622 since the TZ file contents may differ between dump and execution. */
1623 char *tz = getenv ("TZ");
1624 if (tz && !strcmp (tz, dump_tz))
1626 ++*tz;
1627 tzset ();
1628 --*tz;
1631 #endif
1634 /* Set up for profiling. This is known to work on FreeBSD,
1635 GNU/Linux and MinGW. It might work on some other systems too.
1636 Give it a try and tell us if it works on your system. To compile
1637 for profiling, use the configure option --enable-profiling. */
1638 #if defined (__FreeBSD__) || defined (GNU_LINUX) || defined(__MINGW32__)
1639 #ifdef PROFILING
1640 if (initialized)
1642 extern void _mcleanup ();
1643 #ifdef __MINGW32__
1644 extern unsigned char etext asm ("etext");
1645 #else
1646 extern char etext;
1647 #endif
1648 #ifdef HAVE___EXECUTABLE_START
1649 /* This symbol is defined by GNU ld to the start of the text
1650 segment. */
1651 extern char __executable_start[];
1652 #else
1653 extern void safe_bcopy ();
1654 #endif
1656 atexit (_mcleanup);
1657 #ifdef HAVE___EXECUTABLE_START
1658 monstartup (__executable_start, &etext);
1659 #else
1660 /* This uses safe_bcopy because that function comes first in the
1661 Emacs executable. It might be better to use something that
1662 gives the start of the text segment, but start_of_text is not
1663 defined on all systems now. */
1664 /* FIXME: Does not work on architectures with function
1665 descriptors. */
1666 monstartup (safe_bcopy, &etext);
1667 #endif
1669 else
1670 moncontrol (0);
1671 #endif
1672 #endif
1674 initialized = 1;
1676 #ifdef LOCALTIME_CACHE
1677 /* Some versions of localtime have a bug. They cache the value of the time
1678 zone rather than looking it up every time. Since localtime() is
1679 called to bolt the undumping time into the undumped emacs, this
1680 results in localtime ignoring the TZ environment variable.
1681 This flushes the new TZ value into localtime. */
1682 tzset ();
1683 #endif /* defined (LOCALTIME_CACHE) */
1685 /* Enter editor command loop. This never returns. */
1686 Frecursive_edit ();
1687 /* NOTREACHED */
1688 return 0;
1691 /* Sort the args so we can find the most important ones
1692 at the beginning of argv. */
1694 /* First, here's a table of all the standard options. */
1696 struct standard_args
1698 const char *name;
1699 const char *longname;
1700 int priority;
1701 int nargs;
1704 static const struct standard_args standard_args[] =
1706 { "-version", "--version", 150, 0 },
1707 { "-chdir", "--chdir", 130, 1 },
1708 { "-t", "--terminal", 120, 1 },
1709 { "-nw", "--no-window-system", 110, 0 },
1710 { "-nw", "--no-windows", 110, 0 },
1711 { "-batch", "--batch", 100, 0 },
1712 { "-script", "--script", 100, 1 },
1713 { "-daemon", "--daemon", 99, 0 },
1714 { "-help", "--help", 90, 0 },
1715 { "-nl", "--no-loadup", 70, 0 },
1716 { "-nsl", "--no-site-lisp", 65, 0 },
1717 /* -d must come last before the options handled in startup.el. */
1718 { "-d", "--display", 60, 1 },
1719 { "-display", 0, 60, 1 },
1720 /* Now for the options handled in `command-line' (startup.el). */
1721 /* (Note that to imply -nsl, -Q is partially handled here.) */
1722 { "-Q", "--quick", 55, 0 },
1723 { "-quick", 0, 55, 0 },
1724 { "-q", "--no-init-file", 50, 0 },
1725 { "-no-init-file", 0, 50, 0 },
1726 { "-no-site-file", "--no-site-file", 40, 0 },
1727 { "-u", "--user", 30, 1 },
1728 { "-user", 0, 30, 1 },
1729 { "-debug-init", "--debug-init", 20, 0 },
1730 { "-iconic", "--iconic", 15, 0 },
1731 { "-D", "--basic-display", 12, 0},
1732 { "-basic-display", 0, 12, 0},
1733 { "-nbc", "--no-blinking-cursor", 12, 0 },
1734 /* Now for the options handled in `command-line-1' (startup.el). */
1735 { "-nbi", "--no-bitmap-icon", 10, 0 },
1736 { "-bg", "--background-color", 10, 1 },
1737 { "-background", 0, 10, 1 },
1738 { "-fg", "--foreground-color", 10, 1 },
1739 { "-foreground", 0, 10, 1 },
1740 { "-bd", "--border-color", 10, 1 },
1741 { "-bw", "--border-width", 10, 1 },
1742 { "-ib", "--internal-border", 10, 1 },
1743 { "-ms", "--mouse-color", 10, 1 },
1744 { "-cr", "--cursor-color", 10, 1 },
1745 { "-fn", "--font", 10, 1 },
1746 { "-font", 0, 10, 1 },
1747 { "-fs", "--fullscreen", 10, 0 },
1748 { "-fw", "--fullwidth", 10, 0 },
1749 { "-fh", "--fullheight", 10, 0 },
1750 { "-mm", "--maximized", 10, 0 },
1751 { "-g", "--geometry", 10, 1 },
1752 { "-geometry", 0, 10, 1 },
1753 { "-T", "--title", 10, 1 },
1754 { "-title", 0, 10, 1 },
1755 { "-name", "--name", 10, 1 },
1756 { "-xrm", "--xrm", 10, 1 },
1757 { "-parent-id", "--parent-id", 10, 1 },
1758 { "-r", "--reverse-video", 5, 0 },
1759 { "-rv", 0, 5, 0 },
1760 { "-reverse", 0, 5, 0 },
1761 { "-hb", "--horizontal-scroll-bars", 5, 0 },
1762 { "-vb", "--vertical-scroll-bars", 5, 0 },
1763 { "-color", "--color", 5, 0},
1764 { "-no-splash", "--no-splash", 3, 0 },
1765 { "-no-desktop", "--no-desktop", 3, 0 },
1766 #ifdef HAVE_NS
1767 { "-NSAutoLaunch", 0, 5, 1 },
1768 { "-NXAutoLaunch", 0, 5, 1 },
1769 { "-disable-font-backend", "--disable-font-backend", 65, 0 },
1770 { "-_NSMachLaunch", 0, 85, 1 },
1771 { "-MachLaunch", 0, 85, 1 },
1772 { "-macosx", 0, 85, 0 },
1773 { "-NSHost", 0, 85, 1 },
1774 #endif
1775 /* These have the same priority as ordinary file name args,
1776 so they are not reordered with respect to those. */
1777 { "-L", "--directory", 0, 1 },
1778 { "-directory", 0, 0, 1 },
1779 { "-l", "--load", 0, 1 },
1780 { "-load", 0, 0, 1 },
1781 /* This has no longname, because using --scriptload confuses sort_args,
1782 because then the --script long option seems to match twice; ie
1783 you can't have a long option which is a prefix of another long
1784 option. In any case, this is entirely an internal option. */
1785 { "-scriptload", NULL, 0, 1 },
1786 { "-f", "--funcall", 0, 1 },
1787 { "-funcall", 0, 0, 1 },
1788 { "-eval", "--eval", 0, 1 },
1789 { "-execute", "--execute", 0, 1 },
1790 { "-find-file", "--find-file", 0, 1 },
1791 { "-visit", "--visit", 0, 1 },
1792 { "-file", "--file", 0, 1 },
1793 { "-insert", "--insert", 0, 1 },
1794 #ifdef HAVE_NS
1795 { "-NXOpen", 0, 0, 1 },
1796 { "-NXOpenTemp", 0, 0, 1 },
1797 { "-NSOpen", 0, 0, 1 },
1798 { "-NSOpenTemp", 0, 0, 1 },
1799 { "-GSFilePath", 0, 0, 1 },
1800 #endif
1801 /* This should be processed after ordinary file name args and the like. */
1802 { "-kill", "--kill", -10, 0 },
1805 /* Reorder the elements of ARGV (assumed to have ARGC elements)
1806 so that the highest priority ones come first.
1807 Do not change the order of elements of equal priority.
1808 If an option takes an argument, keep it and its argument together.
1810 If an option that takes no argument appears more
1811 than once, eliminate all but one copy of it. */
1813 static void
1814 sort_args (int argc, char **argv)
1816 char **new = (char **) xmalloc (sizeof (char *) * argc);
1817 /* For each element of argv,
1818 the corresponding element of options is:
1819 0 for an option that takes no arguments,
1820 1 for an option that takes one argument, etc.
1821 -1 for an ordinary non-option argument. */
1822 int *options = (int *) xmalloc (sizeof (int) * argc);
1823 int *priority = (int *) xmalloc (sizeof (int) * argc);
1824 int to = 1;
1825 int incoming_used = 1;
1826 int from;
1827 int i;
1829 /* Categorize all the options,
1830 and figure out which argv elts are option arguments. */
1831 for (from = 1; from < argc; from++)
1833 options[from] = -1;
1834 priority[from] = 0;
1835 if (argv[from][0] == '-')
1837 int match, thislen;
1838 char *equals;
1840 /* If we have found "--", don't consider
1841 any more arguments as options. */
1842 if (argv[from][1] == '-' && argv[from][2] == 0)
1844 /* Leave the "--", and everything following it, at the end. */
1845 for (; from < argc; from++)
1847 priority[from] = -100;
1848 options[from] = -1;
1850 break;
1853 /* Look for a match with a known old-fashioned option. */
1854 for (i = 0; i < sizeof (standard_args) / sizeof (standard_args[0]); i++)
1855 if (!strcmp (argv[from], standard_args[i].name))
1857 options[from] = standard_args[i].nargs;
1858 priority[from] = standard_args[i].priority;
1859 if (from + standard_args[i].nargs >= argc)
1860 fatal ("Option `%s' requires an argument\n", argv[from]);
1861 from += standard_args[i].nargs;
1862 goto done;
1865 /* Look for a match with a known long option.
1866 MATCH is -1 if no match so far, -2 if two or more matches so far,
1867 >= 0 (the table index of the match) if just one match so far. */
1868 if (argv[from][1] == '-')
1870 match = -1;
1871 thislen = strlen (argv[from]);
1872 equals = strchr (argv[from], '=');
1873 if (equals != 0)
1874 thislen = equals - argv[from];
1876 for (i = 0;
1877 i < sizeof (standard_args) / sizeof (standard_args[0]); i++)
1878 if (standard_args[i].longname
1879 && !strncmp (argv[from], standard_args[i].longname,
1880 thislen))
1882 if (match == -1)
1883 match = i;
1884 else
1885 match = -2;
1888 /* If we found exactly one match, use that. */
1889 if (match >= 0)
1891 options[from] = standard_args[match].nargs;
1892 priority[from] = standard_args[match].priority;
1893 /* If --OPTION=VALUE syntax is used,
1894 this option uses just one argv element. */
1895 if (equals != 0)
1896 options[from] = 0;
1897 if (from + options[from] >= argc)
1898 fatal ("Option `%s' requires an argument\n", argv[from]);
1899 from += options[from];
1901 /* FIXME When match < 0, shouldn't there be some error,
1902 or at least indication to the user that there was a
1903 problem? */
1905 done: ;
1909 /* Copy the arguments, in order of decreasing priority, to NEW. */
1910 new[0] = argv[0];
1911 while (incoming_used < argc)
1913 int best = -1;
1914 int best_priority = -9999;
1916 /* Find the highest priority remaining option.
1917 If several have equal priority, take the first of them. */
1918 for (from = 1; from < argc; from++)
1920 if (argv[from] != 0 && priority[from] > best_priority)
1922 best_priority = priority[from];
1923 best = from;
1925 /* Skip option arguments--they are tied to the options. */
1926 if (options[from] > 0)
1927 from += options[from];
1930 if (best < 0)
1931 abort ();
1933 /* Copy the highest priority remaining option, with its args, to NEW.
1934 Unless it is a duplicate of the previous one. */
1935 if (! (options[best] == 0
1936 && ! strcmp (new[to - 1], argv[best])))
1938 new[to++] = argv[best];
1939 for (i = 0; i < options[best]; i++)
1940 new[to++] = argv[best + i + 1];
1943 incoming_used += 1 + (options[best] > 0 ? options[best] : 0);
1945 /* Clear out this option in ARGV. */
1946 argv[best] = 0;
1947 for (i = 0; i < options[best]; i++)
1948 argv[best + i + 1] = 0;
1951 /* If duplicate options were deleted, fill up extra space with null ptrs. */
1952 while (to < argc)
1953 new[to++] = 0;
1955 memcpy (argv, new, sizeof (char *) * argc);
1957 xfree (options);
1958 xfree (new);
1959 xfree (priority);
1962 DEFUN ("kill-emacs", Fkill_emacs, Skill_emacs, 0, 1, "P",
1963 doc: /* Exit the Emacs job and kill it.
1964 If ARG is an integer, return ARG as the exit program code.
1965 If ARG is a string, stuff it as keyboard input.
1967 This function is called upon receipt of the signals SIGTERM
1968 or SIGHUP, and upon SIGINT in batch mode.
1970 The value of `kill-emacs-hook', if not void,
1971 is a list of functions (of no args),
1972 all of which are called before Emacs is actually killed. */)
1973 (Lisp_Object arg)
1975 struct gcpro gcpro1;
1976 Lisp_Object hook;
1978 GCPRO1 (arg);
1980 if (feof (stdin))
1981 arg = Qt;
1983 hook = intern ("kill-emacs-hook");
1984 Frun_hooks (1, &hook);
1986 UNGCPRO;
1988 shut_down_emacs (0, 0, STRINGP (arg) ? arg : Qnil);
1990 /* If we have an auto-save list file,
1991 kill it because we are exiting Emacs deliberately (not crashing).
1992 Do it after shut_down_emacs, which does an auto-save. */
1993 if (STRINGP (Vauto_save_list_file_name))
1994 unlink (SSDATA (Vauto_save_list_file_name));
1996 exit (INTEGERP (arg) ? XINT (arg) : EXIT_SUCCESS);
2000 /* Perform an orderly shutdown of Emacs. Autosave any modified
2001 buffers, kill any child processes, clean up the terminal modes (if
2002 we're in the foreground), and other stuff like that. Don't perform
2003 any redisplay; this may be called when Emacs is shutting down in
2004 the background, or after its X connection has died.
2006 If SIG is a signal number, print a message for it.
2008 This is called by fatal signal handlers, X protocol error handlers,
2009 and Fkill_emacs. */
2011 void
2012 shut_down_emacs (int sig, int no_x, Lisp_Object stuff)
2014 /* Prevent running of hooks from now on. */
2015 Vrun_hooks = Qnil;
2017 /* Don't update display from now on. */
2018 Vinhibit_redisplay = Qt;
2020 /* If we are controlling the terminal, reset terminal modes. */
2021 #ifndef DOS_NT
2023 int pgrp = EMACS_GETPGRP (0);
2024 int tpgrp = tcgetpgrp (0);
2025 if ((tpgrp != -1) && tpgrp == pgrp)
2027 reset_all_sys_modes ();
2028 if (sig && sig != SIGTERM)
2029 fprintf (stderr, "Fatal error (%d)", sig);
2032 #else
2033 fflush (stdout);
2034 reset_all_sys_modes ();
2035 #endif
2037 stuff_buffered_input (stuff);
2039 inhibit_sentinels = 1;
2040 kill_buffer_processes (Qnil);
2041 Fdo_auto_save (Qt, Qnil);
2043 #ifdef CLASH_DETECTION
2044 unlock_all_files ();
2045 #endif
2047 #if 0 /* This triggers a bug in XCloseDisplay and is not needed. */
2048 #ifdef HAVE_X_WINDOWS
2049 /* It's not safe to call intern here. Maybe we are crashing. */
2050 if (!noninteractive && SYMBOLP (Vinitial_window_system)
2051 && SCHARS (SYMBOL_NAME (Vinitial_window_system)) == 1
2052 && SREF (SYMBOL_NAME (Vinitial_window_system), 0) == 'x'
2053 && ! no_x)
2054 Fx_close_current_connection ();
2055 #endif /* HAVE_X_WINDOWS */
2056 #endif
2058 #ifdef SIGIO
2059 /* There is a tendency for a SIGIO signal to arrive within exit,
2060 and cause a SIGHUP because the input descriptor is already closed. */
2061 unrequest_sigio ();
2062 signal (SIGIO, SIG_IGN);
2063 #endif
2065 #ifdef WINDOWSNT
2066 term_ntproc ();
2067 #endif
2069 /* Do this only if terminating normally, we want glyph matrices
2070 etc. in a core dump. */
2071 if (sig == 0 || sig == SIGTERM)
2073 check_glyph_memory ();
2074 check_message_stack ();
2077 #ifdef MSDOS
2078 dos_cleanup ();
2079 #endif
2081 #ifdef HAVE_NS
2082 ns_term_shutdown (sig);
2083 #endif
2088 #ifndef CANNOT_DUMP
2090 #include "unexec.h"
2092 DEFUN ("dump-emacs", Fdump_emacs, Sdump_emacs, 2, 2, 0,
2093 doc: /* Dump current state of Emacs into executable file FILENAME.
2094 Take symbols from SYMFILE (presumably the file you executed to run Emacs).
2095 This is used in the file `loadup.el' when building Emacs.
2097 You must run Emacs in batch mode in order to dump it. */)
2098 (Lisp_Object filename, Lisp_Object symfile)
2100 Lisp_Object tem;
2101 Lisp_Object symbol;
2102 int count = SPECPDL_INDEX ();
2104 check_pure_size ();
2106 if (! noninteractive)
2107 error ("Dumping Emacs works only in batch mode");
2109 #ifdef GNU_LINUX
2111 /* Warn if the gap between BSS end and heap start is larger than this. */
2112 # define MAX_HEAP_BSS_DIFF (1024*1024)
2114 if (heap_bss_diff > MAX_HEAP_BSS_DIFF)
2116 fprintf (stderr, "**************************************************\n");
2117 fprintf (stderr, "Warning: Your system has a gap between BSS and the\n");
2118 fprintf (stderr, "heap (%lu bytes). This usually means that exec-shield\n",
2119 heap_bss_diff);
2120 fprintf (stderr, "or something similar is in effect. The dump may\n");
2121 fprintf (stderr, "fail because of this. See the section about\n");
2122 fprintf (stderr, "exec-shield in etc/PROBLEMS for more information.\n");
2123 fprintf (stderr, "**************************************************\n");
2125 #endif /* GNU_LINUX */
2127 /* Bind `command-line-processed' to nil before dumping,
2128 so that the dumped Emacs will process its command line
2129 and set up to work with X windows if appropriate. */
2130 symbol = intern ("command-line-processed");
2131 specbind (symbol, Qnil);
2133 CHECK_STRING (filename);
2134 filename = Fexpand_file_name (filename, Qnil);
2135 if (!NILP (symfile))
2137 CHECK_STRING (symfile);
2138 if (SCHARS (symfile))
2139 symfile = Fexpand_file_name (symfile, Qnil);
2142 tem = Vpurify_flag;
2143 Vpurify_flag = Qnil;
2145 #ifdef HAVE_TZSET
2146 set_time_zone_rule (dump_tz);
2147 #ifndef LOCALTIME_CACHE
2148 /* Force a tz reload, since set_time_zone_rule doesn't. */
2149 tzset ();
2150 #endif
2151 #endif
2153 fflush (stdout);
2154 /* Tell malloc where start of impure now is. */
2155 /* Also arrange for warnings when nearly out of space. */
2156 #ifndef SYSTEM_MALLOC
2157 #ifndef WINDOWSNT
2158 /* On Windows, this was done before dumping, and that once suffices.
2159 Meanwhile, my_edata is not valid on Windows. */
2161 extern char my_edata[];
2162 memory_warnings (my_edata, malloc_warning);
2164 #endif /* not WINDOWSNT */
2165 #if defined (HAVE_GTK_AND_PTHREAD) && !defined SYNC_INPUT
2166 /* Pthread may call malloc before main, and then we will get an endless
2167 loop, because pthread_self (see alloc.c) calls malloc the first time
2168 it is called on some systems. */
2169 reset_malloc_hooks ();
2170 #endif
2171 #endif /* not SYSTEM_MALLOC */
2172 #ifdef DOUG_LEA_MALLOC
2173 malloc_state_ptr = malloc_get_state ();
2174 #endif
2176 #ifdef USE_MMAP_FOR_BUFFERS
2177 mmap_set_vars (0);
2178 #endif
2179 unexec (SSDATA (filename), !NILP (symfile) ? SSDATA (symfile) : 0);
2180 #ifdef USE_MMAP_FOR_BUFFERS
2181 mmap_set_vars (1);
2182 #endif
2183 #ifdef DOUG_LEA_MALLOC
2184 free (malloc_state_ptr);
2185 #endif
2187 Vpurify_flag = tem;
2189 return unbind_to (count, Qnil);
2192 #endif /* not CANNOT_DUMP */
2194 #if HAVE_SETLOCALE
2195 /* Recover from setlocale (LC_ALL, ""). */
2196 void
2197 fixup_locale (void)
2199 /* The Emacs Lisp reader needs LC_NUMERIC to be "C",
2200 so that numbers are read and printed properly for Emacs Lisp. */
2201 setlocale (LC_NUMERIC, "C");
2204 /* Set system locale CATEGORY, with previous locale *PLOCALE, to
2205 DESIRED_LOCALE. */
2206 static void
2207 synchronize_locale (int category, Lisp_Object *plocale, Lisp_Object desired_locale)
2209 if (! EQ (*plocale, desired_locale))
2211 *plocale = desired_locale;
2212 setlocale (category, (STRINGP (desired_locale)
2213 ? SSDATA (desired_locale)
2214 : ""));
2218 /* Set system time locale to match Vsystem_time_locale, if possible. */
2219 void
2220 synchronize_system_time_locale (void)
2222 synchronize_locale (LC_TIME, &Vprevious_system_time_locale,
2223 Vsystem_time_locale);
2226 /* Set system messages locale to match Vsystem_messages_locale, if
2227 possible. */
2228 void
2229 synchronize_system_messages_locale (void)
2231 #ifdef LC_MESSAGES
2232 synchronize_locale (LC_MESSAGES, &Vprevious_system_messages_locale,
2233 Vsystem_messages_locale);
2234 #endif
2236 #endif /* HAVE_SETLOCALE */
2238 #ifndef SEPCHAR
2239 #define SEPCHAR ':'
2240 #endif
2242 Lisp_Object
2243 decode_env_path (const char *evarname, const char *defalt)
2245 const char *path, *p;
2246 Lisp_Object lpath, element, tem;
2248 /* It's okay to use getenv here, because this function is only used
2249 to initialize variables when Emacs starts up, and isn't called
2250 after that. */
2251 if (evarname != 0)
2252 path = getenv (evarname);
2253 else
2254 path = 0;
2255 if (!path)
2256 path = defalt;
2257 #ifdef DOS_NT
2258 /* Ensure values from the environment use the proper directory separator. */
2259 if (path)
2261 char *path_copy = alloca (strlen (path) + 1);
2262 strcpy (path_copy, path);
2263 dostounix_filename (path_copy);
2264 path = path_copy;
2266 #endif
2267 lpath = Qnil;
2268 while (1)
2270 p = strchr (path, SEPCHAR);
2271 if (!p)
2272 p = path + strlen (path);
2273 element = (p - path ? make_string (path, p - path)
2274 : build_string ("."));
2276 /* Add /: to the front of the name
2277 if it would otherwise be treated as magic. */
2278 tem = Ffind_file_name_handler (element, Qt);
2280 /* However, if the handler says "I'm safe",
2281 don't bother adding /:. */
2282 if (SYMBOLP (tem))
2284 Lisp_Object prop;
2285 prop = Fget (tem, intern ("safe-magic"));
2286 if (! NILP (prop))
2287 tem = Qnil;
2290 if (! NILP (tem))
2291 element = concat2 (build_string ("/:"), element);
2293 lpath = Fcons (element, lpath);
2294 if (*p)
2295 path = p + 1;
2296 else
2297 break;
2299 return Fnreverse (lpath);
2302 DEFUN ("daemonp", Fdaemonp, Sdaemonp, 0, 0, 0,
2303 doc: /* Return non-nil if the current emacs process is a daemon.
2304 If the daemon was given a name argument, return that name. */)
2305 (void)
2307 if (IS_DAEMON)
2308 if (daemon_name)
2309 return build_string (daemon_name);
2310 else
2311 return Qt;
2312 else
2313 return Qnil;
2316 DEFUN ("daemon-initialized", Fdaemon_initialized, Sdaemon_initialized, 0, 0, 0,
2317 doc: /* Mark the Emacs daemon as being initialized.
2318 This finishes the daemonization process by doing the other half of detaching
2319 from the parent process and its tty file descriptors. */)
2320 (void)
2322 int nfd;
2323 int err = 0;
2325 if (!IS_DAEMON)
2326 error ("This function can only be called if emacs is run as a daemon");
2328 if (daemon_pipe[1] < 0)
2329 error ("The daemon has already been initialized");
2331 if (NILP (Vafter_init_time))
2332 error ("This function can only be called after loading the init files");
2334 /* Get rid of stdin, stdout and stderr. */
2335 nfd = open ("/dev/null", O_RDWR);
2336 err |= nfd < 0;
2337 err |= dup2 (nfd, 0) < 0;
2338 err |= dup2 (nfd, 1) < 0;
2339 err |= dup2 (nfd, 2) < 0;
2340 err |= close (nfd) != 0;
2342 /* Closing the pipe will notify the parent that it can exit.
2343 FIXME: In case some other process inherited the pipe, closing it here
2344 won't notify the parent because it's still open elsewhere, so we
2345 additionally send a byte, just to make sure the parent really exits.
2346 Instead, we should probably close the pipe in start-process and
2347 call-process to make sure the pipe is never inherited by
2348 subprocesses. */
2349 err |= write (daemon_pipe[1], "\n", 1) < 0;
2350 err |= close (daemon_pipe[1]) != 0;
2351 /* Set it to an invalid value so we know we've already run this function. */
2352 daemon_pipe[1] = -1;
2354 if (err)
2355 error ("I/O error during daemon initialization");
2356 return Qt;
2359 void
2360 syms_of_emacs (void)
2362 Qfile_name_handler_alist = intern_c_string ("file-name-handler-alist");
2363 staticpro (&Qfile_name_handler_alist);
2364 Qrisky_local_variable = intern_c_string ("risky-local-variable");
2365 staticpro (&Qrisky_local_variable);
2367 #ifndef CANNOT_DUMP
2368 defsubr (&Sdump_emacs);
2369 #endif
2371 defsubr (&Skill_emacs);
2373 defsubr (&Sinvocation_name);
2374 defsubr (&Sinvocation_directory);
2375 defsubr (&Sdaemonp);
2376 defsubr (&Sdaemon_initialized);
2378 DEFVAR_LISP ("command-line-args", Vcommand_line_args,
2379 doc: /* Args passed by shell to Emacs, as a list of strings.
2380 Many arguments are deleted from the list as they are processed. */);
2382 DEFVAR_LISP ("system-type", Vsystem_type,
2383 doc: /* The value is a symbol indicating the type of operating system you are using.
2384 Special values:
2385 `gnu' compiled for a GNU Hurd system.
2386 `gnu/linux' compiled for a GNU/Linux system.
2387 `gnu/kfreebsd' compiled for a GNU system with a FreeBSD kernel.
2388 `darwin' compiled for Darwin (GNU-Darwin, Mac OS X, ...).
2389 `ms-dos' compiled as an MS-DOS application.
2390 `windows-nt' compiled as a native W32 application.
2391 `cygwin' compiled using the Cygwin library.
2392 Anything else (in Emacs 24.1, the possibilities are: aix, berkeley-unix,
2393 hpux, irix, usg-unix-v) indicates some sort of Unix system. */);
2394 Vsystem_type = intern_c_string (SYSTEM_TYPE);
2395 /* The above values are from SYSTEM_TYPE in include files under src/s. */
2397 DEFVAR_LISP ("system-configuration", Vsystem_configuration,
2398 doc: /* Value is string indicating configuration Emacs was built for.
2399 On MS-Windows, the value reflects the OS flavor and version on which
2400 Emacs is running. */);
2401 Vsystem_configuration = build_string (EMACS_CONFIGURATION);
2403 DEFVAR_LISP ("system-configuration-options", Vsystem_configuration_options,
2404 doc: /* String containing the configuration options Emacs was built with. */);
2405 Vsystem_configuration_options = build_string (EMACS_CONFIG_OPTIONS);
2407 DEFVAR_BOOL ("noninteractive", noninteractive1,
2408 doc: /* Non-nil means Emacs is running without interactive terminal. */);
2410 DEFVAR_LISP ("kill-emacs-hook", Vkill_emacs_hook,
2411 doc: /* Hook to be run when `kill-emacs' is called.
2412 Since `kill-emacs' may be invoked when the terminal is disconnected (or
2413 in other similar situations), functions placed on this hook should not
2414 expect to be able to interact with the user. To ask for confirmation,
2415 see `kill-emacs-query-functions' instead.
2417 Before Emacs 24.1, the hook was not run in batch mode, i.e., if
2418 `noninteractive' was non-nil. */);
2419 Vkill_emacs_hook = Qnil;
2421 DEFVAR_LISP ("path-separator", Vpath_separator,
2422 doc: /* String containing the character that separates directories in
2423 search paths, such as PATH and other similar environment variables. */);
2425 char c = SEPCHAR;
2426 Vpath_separator = make_string (&c, 1);
2429 DEFVAR_LISP ("invocation-name", Vinvocation_name,
2430 doc: /* The program name that was used to run Emacs.
2431 Any directory names are omitted. */);
2433 DEFVAR_LISP ("invocation-directory", Vinvocation_directory,
2434 doc: /* The directory in which the Emacs executable was found, to run it.
2435 The value is nil if that directory's name is not known. */);
2437 DEFVAR_LISP ("installation-directory", Vinstallation_directory,
2438 doc: /* A directory within which to look for the `lib-src' and `etc' directories.
2439 This is non-nil when we can't find those directories in their standard
2440 installed locations, but we can find them near where the Emacs executable
2441 was found. */);
2442 Vinstallation_directory = Qnil;
2444 DEFVAR_LISP ("system-messages-locale", Vsystem_messages_locale,
2445 doc: /* System locale for messages. */);
2446 Vsystem_messages_locale = Qnil;
2448 DEFVAR_LISP ("previous-system-messages-locale",
2449 Vprevious_system_messages_locale,
2450 doc: /* Most recently used system locale for messages. */);
2451 Vprevious_system_messages_locale = Qnil;
2453 DEFVAR_LISP ("system-time-locale", Vsystem_time_locale,
2454 doc: /* System locale for time. */);
2455 Vsystem_time_locale = Qnil;
2457 DEFVAR_LISP ("previous-system-time-locale", Vprevious_system_time_locale,
2458 doc: /* Most recently used system locale for time. */);
2459 Vprevious_system_time_locale = Qnil;
2461 DEFVAR_LISP ("before-init-time", Vbefore_init_time,
2462 doc: /* Value of `current-time' before Emacs begins initialization. */);
2463 Vbefore_init_time = Qnil;
2465 DEFVAR_LISP ("after-init-time", Vafter_init_time,
2466 doc: /* Value of `current-time' after loading the init files.
2467 This is nil during initialization. */);
2468 Vafter_init_time = Qnil;
2470 DEFVAR_BOOL ("inhibit-x-resources", inhibit_x_resources,
2471 doc: /* If non-nil, X resources, Windows Registry settings, and NS defaults are not used. */);
2472 inhibit_x_resources = 0;
2474 DEFVAR_LISP ("emacs-copyright", Vemacs_copyright,
2475 doc: /* Short copyright string for this version of Emacs. */);
2476 Vemacs_copyright = build_string (emacs_copyright);
2478 DEFVAR_LISP ("emacs-version", Vemacs_version,
2479 doc: /* Version numbers of this version of Emacs. */);
2480 Vemacs_version = build_string (emacs_version);
2482 DEFVAR_LISP ("dynamic-library-alist", Vdynamic_library_alist,
2483 doc: /* Alist of dynamic libraries vs external files implementing them.
2484 Each element is a list (LIBRARY FILE...), where the car is a symbol
2485 representing a supported external library, and the rest are strings giving
2486 alternate filenames for that library.
2488 Emacs tries to load the library from the files in the order they appear on
2489 the list; if none is loaded, the running session of Emacs won't have access
2490 to that library.
2492 Note that image types `pbm' and `xbm' do not need entries in this variable
2493 because they do not depend on external libraries and are always available.
2495 Also note that this is not a generic facility for accessing external
2496 libraries; only those already known by Emacs will be loaded. */);
2497 Vdynamic_library_alist = Qnil;
2498 Fput (intern_c_string ("dynamic-library-alist"), Qrisky_local_variable, Qt);
2500 /* Make sure IS_DAEMON starts up as false. */
2501 daemon_pipe[1] = 0;