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