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