manual upstream merge
[emacs.git] / src / emacs.c
blob417d288073add75314a7d7149e6c483fa6bdc7aa
1 /* Fully extensible Emacs, running on Unix, intended for GNU.
3 Copyright (C) 1985-1987, 1993-1995, 1997-1999, 2001-2014
4 Free Software Foundation, Inc.
6 This file is part of GNU Emacs.
8 GNU Emacs is free software: you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
10 the Free Software Foundation, either version 3 of the License, or
11 (at your option) any later version.
13 GNU Emacs is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 GNU General Public License for more details.
18 You should have received a copy of the GNU General Public License
19 along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */
21 #define INLINE EXTERN_INLINE
22 #include <config.h>
24 #include <errno.h>
25 #include <stdio.h>
27 #include <sys/types.h>
28 #include <sys/file.h>
29 #include <unistd.h>
31 #include <close-stream.h>
33 #define MAIN_PROGRAM
34 #include "lisp.h"
36 #ifdef WINDOWSNT
37 #include <fcntl.h>
38 #include <sys/socket.h>
39 #include <mbstring.h>
40 #include "w32.h"
41 #include "w32heap.h"
42 #endif
44 #if defined WINDOWSNT || defined HAVE_NTGUI
45 #include "w32select.h"
46 #include "w32font.h"
47 #include "w32common.h"
48 #endif
50 #if defined CYGWIN
51 #include "cygw32.h"
52 #endif
54 #ifdef HAVE_WINDOW_SYSTEM
55 #include TERM_HEADER
56 #endif /* HAVE_WINDOW_SYSTEM */
58 #ifdef NS_IMPL_GNUSTEP
59 /* At least under Debian, GSConfig is in a subdirectory. --Stef */
60 #include <GNUstepBase/GSConfig.h>
61 #endif
63 #include "commands.h"
64 #include "intervals.h"
65 #include "character.h"
66 #include "buffer.h"
67 #include "window.h"
69 #ifdef HAVE_XWIDGETS
70 #include "xwidget.h"
71 #endif
72 #include "systty.h"
73 #include "atimer.h"
74 #include "blockinput.h"
75 #include "syssignal.h"
76 #include "process.h"
77 #include "frame.h"
78 #include "termhooks.h"
79 #include "keyboard.h"
80 #include "keymap.h"
81 #include "category.h"
82 #include "charset.h"
83 #include "composite.h"
84 #include "dispextern.h"
85 #include "syntax.h"
86 #include "sysselect.h"
87 #include "systime.h"
89 #ifdef HAVE_GNUTLS
90 #include "gnutls.h"
91 #endif
93 #if (defined PROFILING \
94 && (defined __FreeBSD__ || defined GNU_LINUX || defined __MINGW32__))
95 # include <sys/gmon.h>
96 extern void moncontrol (int mode);
97 #endif
99 #ifdef HAVE_SETLOCALE
100 #include <locale.h>
101 #endif
103 #ifdef HAVE_SETRLIMIT
104 #include <sys/time.h>
105 #include <sys/resource.h>
106 #endif
108 #ifdef HAVE_PERSONALITY_LINUX32
109 #include <sys/personality.h>
110 #endif
112 static const char emacs_version[] = PACKAGE_VERSION;
113 static const char emacs_copyright[] = COPYRIGHT;
114 static const char emacs_bugreport[] = PACKAGE_BUGREPORT;
116 /* Empty lisp strings. To avoid having to build any others. */
117 Lisp_Object empty_unibyte_string, empty_multibyte_string;
119 #ifdef WINDOWSNT
120 /* Cache for externally loaded libraries. */
121 Lisp_Object Vlibrary_cache;
122 #endif
124 /* Set after Emacs has started up the first time.
125 Prevents reinitialization of the Lisp world and keymaps
126 on subsequent starts. */
127 bool initialized;
129 /* Set to true if this instance of Emacs might dump. */
130 bool might_dump;
132 #ifdef DARWIN_OS
133 extern void unexec_init_emacs_zone (void);
134 #endif
136 #ifdef DOUG_LEA_MALLOC
137 /* Preserves a pointer to the memory allocated that copies that
138 static data inside glibc's malloc. */
139 static void *malloc_state_ptr;
140 /* From glibc, a routine that returns a copy of the malloc internal state. */
141 extern void *malloc_get_state (void);
142 /* From glibc, a routine that overwrites the malloc internal state. */
143 extern int malloc_set_state (void *);
144 /* True if the MALLOC_CHECK_ environment variable was set while
145 dumping. Used to work around a bug in glibc's malloc. */
146 static bool malloc_using_checking;
147 #elif defined HAVE_PTHREAD && !defined SYSTEM_MALLOC
148 extern void malloc_enable_thread (void);
149 #endif
151 Lisp_Object Qfile_name_handler_alist;
153 Lisp_Object Qrisky_local_variable;
155 Lisp_Object Qkill_emacs;
156 static Lisp_Object Qkill_emacs_hook;
158 /* If true, Emacs should not attempt to use a window-specific code,
159 but instead should use the virtual terminal under which it was started. */
160 bool inhibit_window_system;
162 /* If true, a filter or a sentinel is running. Tested to save the match
163 data on the first attempt to change it inside asynchronous code. */
164 bool running_asynch_code;
166 #if defined (HAVE_X_WINDOWS) || defined (HAVE_NS)
167 /* If true, -d was specified, meaning we're using some window system. */
168 bool display_arg;
169 #endif
171 /* An address near the bottom of the stack.
172 Tells GC how to save a copy of the stack. */
173 char *stack_bottom;
175 #if defined (DOUG_LEA_MALLOC) || defined (GNU_LINUX)
176 /* The address where the heap starts (from the first sbrk (0) call). */
177 static void *my_heap_start;
178 #endif
180 #ifdef GNU_LINUX
181 /* The gap between BSS end and heap start as far as we can tell. */
182 static uprintmax_t heap_bss_diff;
183 #endif
185 /* To run as a daemon under Cocoa or Windows, we must do a fork+exec,
186 not a simple fork.
188 On Cocoa, CoreFoundation lib fails in forked process:
189 http://developer.apple.com/ReleaseNotes/
190 CoreFoundation/CoreFoundation.html)
192 On Windows, a Cygwin fork child cannot access the USER subsystem.
194 We mark being in the exec'd process by a daemon name argument of
195 form "--daemon=\nFD0,FD1\nNAME" where FD are the pipe file descriptors,
196 NAME is the original daemon name, if any. */
197 #if defined NS_IMPL_COCOA || (defined HAVE_NTGUI && defined CYGWIN)
198 # define DAEMON_MUST_EXEC
199 #endif
201 /* True means running Emacs without interactive terminal. */
202 bool noninteractive;
204 /* True means remove site-lisp directories from load-path. */
205 bool no_site_lisp;
207 /* Name for the server started by the daemon.*/
208 static char *daemon_name;
210 /* Pipe used to send exit notification to the daemon parent at
211 startup. */
212 int daemon_pipe[2];
214 /* Save argv and argc. */
215 char **initial_argv;
216 int initial_argc;
218 static void sort_args (int argc, char **argv);
219 static void syms_of_emacs (void);
221 /* C99 needs each string to be at most 4095 characters, and the usage
222 strings below are split to not overflow this limit. */
223 static char const *const usage_message[] =
224 { "\
226 Run Emacs, the extensible, customizable, self-documenting real-time\n\
227 display editor. The recommended way to start Emacs for normal editing\n\
228 is with no options at all.\n\
230 Run M-x info RET m emacs RET m emacs invocation RET inside Emacs to\n\
231 read the main documentation for these command-line arguments.\n\
233 Initialization options:\n\
237 --batch do not do interactive display; implies -q\n\
238 --chdir DIR change to directory DIR\n\
239 --daemon start a server in the background\n\
240 --debug-init enable Emacs Lisp debugger for init file\n\
241 --display, -d DISPLAY use X server DISPLAY\n\
244 --no-desktop do not load a saved desktop\n\
245 --no-init-file, -q load neither ~/.emacs nor default.el\n\
246 --no-shared-memory, -nl do not use shared memory\n\
247 --no-site-file do not load site-start.el\n\
248 --no-site-lisp, -nsl do not add site-lisp directories to load-path\n\
249 --no-splash do not display a splash screen on startup\n\
250 --no-window-system, -nw do not communicate with X, ignoring $DISPLAY\n\
253 --quick, -Q equivalent to:\n\
254 -q --no-site-file --no-site-lisp --no-splash\n\
255 --script FILE run FILE as an Emacs Lisp script\n\
256 --terminal, -t DEVICE use DEVICE for terminal I/O\n\
257 --user, -u USER load ~USER/.emacs instead of your own\n\
261 Action options:\n\
263 FILE visit FILE using find-file\n\
264 +LINE go to line LINE in next FILE\n\
265 +LINE:COLUMN go to line LINE, column COLUMN, in next FILE\n\
266 --directory, -L DIR prepend DIR to load-path (with :DIR, append DIR)\n\
267 --eval EXPR evaluate Emacs Lisp expression EXPR\n\
268 --execute EXPR evaluate Emacs Lisp expression EXPR\n\
271 --file FILE visit FILE using find-file\n\
272 --find-file FILE visit FILE using find-file\n\
273 --funcall, -f FUNC call Emacs Lisp function FUNC with no arguments\n\
274 --insert FILE insert contents of FILE into current buffer\n\
275 --kill exit without asking for confirmation\n\
276 --load, -l FILE load Emacs Lisp FILE using the load function\n\
277 --visit FILE visit FILE using find-file\n\
281 Display options:\n\
283 --background-color, -bg COLOR window background color\n\
284 --basic-display, -D disable many display features;\n\
285 used for debugging Emacs\n\
286 --border-color, -bd COLOR main border color\n\
287 --border-width, -bw WIDTH width of main border\n\
290 --color, --color=MODE override color mode for character terminals;\n\
291 MODE defaults to `auto', and\n\
292 can also be `never', `always',\n\
293 or a mode name like `ansi8'\n\
294 --cursor-color, -cr COLOR color of the Emacs cursor indicating point\n\
295 --font, -fn FONT default font; must be fixed-width\n\
296 --foreground-color, -fg COLOR window foreground color\n\
299 --fullheight, -fh make the first frame high as the screen\n\
300 --fullscreen, -fs make the first frame fullscreen\n\
301 --fullwidth, -fw make the first frame wide as the screen\n\
302 --maximized, -mm make the first frame maximized\n\
303 --geometry, -g GEOMETRY window geometry\n\
306 --no-bitmap-icon, -nbi do not use picture of gnu for Emacs icon\n\
307 --iconic start Emacs in iconified state\n\
308 --internal-border, -ib WIDTH width between text and main border\n\
309 --line-spacing, -lsp PIXELS additional space to put between lines\n\
310 --mouse-color, -ms COLOR mouse cursor color in Emacs window\n\
311 --name NAME title for initial Emacs frame\n\
314 --no-blinking-cursor, -nbc disable blinking cursor\n\
315 --reverse-video, -r, -rv switch foreground and background\n\
316 --title, -T TITLE title for initial Emacs frame\n\
317 --vertical-scroll-bars, -vb enable vertical scroll bars\n\
318 --xrm XRESOURCES set additional X resources\n\
319 --parent-id XID set parent window\n\
320 --help display this help and exit\n\
321 --version output version information and exit\n\
325 You can generally also specify long option names with a single -; for\n\
326 example, -batch as well as --batch. You can use any unambiguous\n\
327 abbreviation for a --option.\n\
329 Various environment variables and window system resources also affect\n\
330 the operation of Emacs. See the main documentation.\n\
332 Report bugs to " PACKAGE_BUGREPORT ". First, please see the Bugs\n\
333 section of the Emacs manual or the file BUGS.\n"
337 /* True if handling a fatal error already. */
338 bool fatal_error_in_progress;
340 #ifdef HAVE_NS
341 /* NS autrelease pool, for memory management. */
342 static void *ns_pool;
343 #endif
345 #if !HAVE_SETLOCALE
346 static char *
347 setlocale (int cat, char const *locale)
349 return 0;
351 #endif
354 /* Report a fatal error due to signal SIG, output a backtrace of at
355 most BACKTRACE_LIMIT lines, and exit. */
356 _Noreturn void
357 terminate_due_to_signal (int sig, int backtrace_limit)
359 signal (sig, SIG_DFL);
360 totally_unblock_input ();
362 /* If fatal error occurs in code below, avoid infinite recursion. */
363 if (! fatal_error_in_progress)
365 fatal_error_in_progress = 1;
367 if (sig == SIGTERM || sig == SIGHUP || sig == SIGINT)
368 Fkill_emacs (make_number (sig));
370 shut_down_emacs (sig, Qnil);
371 emacs_backtrace (backtrace_limit);
374 /* Signal the same code; this time it will really be fatal.
375 Since we're in a signal handler, the signal is blocked, so we
376 have to unblock it if we want to really receive it. */
377 #ifndef MSDOS
379 sigset_t unblocked;
380 sigemptyset (&unblocked);
381 sigaddset (&unblocked, sig);
382 pthread_sigmask (SIG_UNBLOCK, &unblocked, 0);
384 #endif
386 emacs_raise (sig);
388 /* This shouldn't be executed, but it prevents a warning. */
389 exit (1);
392 /* Code for dealing with Lisp access to the Unix command line. */
394 static void
395 init_cmdargs (int argc, char **argv, int skip_args, char *original_pwd)
397 register int i;
398 Lisp_Object name, dir, handler;
399 ptrdiff_t count = SPECPDL_INDEX ();
400 Lisp_Object raw_name;
402 initial_argv = argv;
403 initial_argc = argc;
405 #ifdef WINDOWSNT
406 /* Must use argv[0] converted to UTF-8, as it begets many standard
407 file and directory names. */
409 char argv0[MAX_UTF8_PATH];
411 if (filename_from_ansi (argv[0], argv0) == 0)
412 raw_name = build_unibyte_string (argv0);
413 else
414 raw_name = build_unibyte_string (argv[0]);
416 #else
417 raw_name = build_unibyte_string (argv[0]);
418 #endif
420 /* Add /: to the front of the name
421 if it would otherwise be treated as magic. */
422 handler = Ffind_file_name_handler (raw_name, Qt);
423 if (! NILP (handler))
424 raw_name = concat2 (build_string ("/:"), raw_name);
426 Vinvocation_name = Ffile_name_nondirectory (raw_name);
427 Vinvocation_directory = Ffile_name_directory (raw_name);
429 /* If we got no directory in argv[0], search PATH to find where
430 Emacs actually came from. */
431 if (NILP (Vinvocation_directory))
433 Lisp_Object found;
434 int yes = openp (Vexec_path, Vinvocation_name,
435 Vexec_suffixes, &found, make_number (X_OK), false);
436 if (yes == 1)
438 /* Add /: to the front of the name
439 if it would otherwise be treated as magic. */
440 handler = Ffind_file_name_handler (found, Qt);
441 if (! NILP (handler))
442 found = concat2 (build_string ("/:"), found);
443 Vinvocation_directory = Ffile_name_directory (found);
447 if (!NILP (Vinvocation_directory)
448 && NILP (Ffile_name_absolute_p (Vinvocation_directory)))
449 /* Emacs was started with relative path, like ./emacs.
450 Make it absolute. */
452 Lisp_Object odir =
453 original_pwd ? build_unibyte_string (original_pwd) : Qnil;
455 Vinvocation_directory = Fexpand_file_name (Vinvocation_directory, odir);
458 Vinstallation_directory = Qnil;
460 if (!NILP (Vinvocation_directory))
462 dir = Vinvocation_directory;
463 #ifdef WINDOWSNT
464 /* If we are running from the build directory, set DIR to the
465 src subdirectory of the Emacs tree, like on Posix
466 platforms. */
467 if (SBYTES (dir) > sizeof ("/i386/") - 1
468 && 0 == strcmp (SSDATA (dir) + SBYTES (dir) - sizeof ("/i386/") + 1,
469 "/i386/"))
470 dir = Fexpand_file_name (build_string ("../.."), dir);
471 #else /* !WINDOWSNT */
472 #endif
473 name = Fexpand_file_name (Vinvocation_name, dir);
474 while (1)
476 Lisp_Object tem, lib_src_exists;
477 Lisp_Object etc_exists, info_exists;
479 /* See if dir contains subdirs for use by Emacs.
480 Check for the ones that would exist in a build directory,
481 not including lisp and info. */
482 tem = Fexpand_file_name (build_string ("lib-src"), dir);
483 lib_src_exists = Ffile_exists_p (tem);
485 #ifdef MSDOS
486 /* MSDOS installations frequently remove lib-src, but we still
487 must set installation-directory, or else info won't find
488 its files (it uses the value of installation-directory). */
489 tem = Fexpand_file_name (build_string ("info"), dir);
490 info_exists = Ffile_exists_p (tem);
491 #else
492 info_exists = Qnil;
493 #endif
495 if (!NILP (lib_src_exists) || !NILP (info_exists))
497 tem = Fexpand_file_name (build_string ("etc"), dir);
498 etc_exists = Ffile_exists_p (tem);
499 if (!NILP (etc_exists))
501 Vinstallation_directory
502 = Ffile_name_as_directory (dir);
503 break;
507 /* See if dir's parent contains those subdirs. */
508 tem = Fexpand_file_name (build_string ("../lib-src"), dir);
509 lib_src_exists = Ffile_exists_p (tem);
512 #ifdef MSDOS
513 /* See the MSDOS commentary above. */
514 tem = Fexpand_file_name (build_string ("../info"), dir);
515 info_exists = Ffile_exists_p (tem);
516 #else
517 info_exists = Qnil;
518 #endif
520 if (!NILP (lib_src_exists) || !NILP (info_exists))
522 tem = Fexpand_file_name (build_string ("../etc"), dir);
523 etc_exists = Ffile_exists_p (tem);
524 if (!NILP (etc_exists))
526 tem = Fexpand_file_name (build_string (".."), dir);
527 Vinstallation_directory
528 = Ffile_name_as_directory (tem);
529 break;
533 /* If the Emacs executable is actually a link,
534 next try the dir that the link points into. */
535 tem = Ffile_symlink_p (name);
536 if (!NILP (tem))
538 name = Fexpand_file_name (tem, dir);
539 dir = Ffile_name_directory (name);
541 else
542 break;
546 Vcommand_line_args = Qnil;
548 for (i = argc - 1; i >= 0; i--)
550 if (i == 0 || i > skip_args)
551 /* For the moment, we keep arguments as is in unibyte strings.
552 They are decoded in the function command-line after we know
553 locale-coding-system. */
554 Vcommand_line_args
555 = Fcons (build_unibyte_string (argv[i]), Vcommand_line_args);
558 unbind_to (count, Qnil);
561 DEFUN ("invocation-name", Finvocation_name, Sinvocation_name, 0, 0, 0,
562 doc: /* Return the program name that was used to run Emacs.
563 Any directory names are omitted. */)
564 (void)
566 return Fcopy_sequence (Vinvocation_name);
569 DEFUN ("invocation-directory", Finvocation_directory, Sinvocation_directory,
570 0, 0, 0,
571 doc: /* Return the directory name in which the Emacs executable was located. */)
572 (void)
574 return Fcopy_sequence (Vinvocation_directory);
578 #ifdef HAVE_TZSET
579 /* A valid but unlikely value for the TZ environment value.
580 It is OK (though a bit slower) if the user actually chooses this value. */
581 static char const dump_tz[] = "UtC0";
582 #endif
584 /* Test whether the next argument in ARGV matches SSTR or a prefix of
585 LSTR (at least MINLEN characters). If so, then if VALPTR is non-null
586 (the argument is supposed to have a value) store in *VALPTR either
587 the next argument or the portion of this one after the equal sign.
588 ARGV is read starting at position *SKIPPTR; this index is advanced
589 by the number of arguments used.
591 Too bad we can't just use getopt for all of this, but we don't have
592 enough information to do it right. */
594 static bool
595 argmatch (char **argv, int argc, const char *sstr, const char *lstr,
596 int minlen, char **valptr, int *skipptr)
598 char *p = NULL;
599 ptrdiff_t arglen;
600 char *arg;
602 /* Don't access argv[argc]; give up in advance. */
603 if (argc <= *skipptr + 1)
604 return 0;
606 arg = argv[*skipptr+1];
607 if (arg == NULL)
608 return 0;
609 if (strcmp (arg, sstr) == 0)
611 if (valptr != NULL)
613 *valptr = argv[*skipptr+2];
614 *skipptr += 2;
616 else
617 *skipptr += 1;
618 return 1;
620 arglen = (valptr != NULL && (p = strchr (arg, '=')) != NULL
621 ? p - arg : strlen (arg));
622 if (lstr == 0 || arglen < minlen || strncmp (arg, lstr, arglen) != 0)
623 return 0;
624 else if (valptr == NULL)
626 *skipptr += 1;
627 return 1;
629 else if (p != NULL)
631 *valptr = p+1;
632 *skipptr += 1;
633 return 1;
635 else if (argv[*skipptr+2] != NULL)
637 *valptr = argv[*skipptr+2];
638 *skipptr += 2;
639 return 1;
641 else
643 return 0;
647 #ifdef DOUG_LEA_MALLOC
649 /* malloc can be invoked even before main (e.g. by the dynamic
650 linker), so the dumped malloc state must be restored as early as
651 possible using this special hook. */
653 static void
654 malloc_initialize_hook (void)
656 if (initialized)
658 if (!malloc_using_checking)
659 /* Work around a bug in glibc's malloc. MALLOC_CHECK_ must be
660 ignored if the heap to be restored was constructed without
661 malloc checking. Can't use unsetenv, since that calls malloc. */
663 char **p;
665 for (p = environ; p && *p; p++)
666 if (strncmp (*p, "MALLOC_CHECK_=", 14) == 0)
669 *p = p[1];
670 while (*++p);
671 break;
675 malloc_set_state (malloc_state_ptr);
676 #ifndef XMALLOC_OVERRUN_CHECK
677 free (malloc_state_ptr);
678 #endif
680 else
682 if (my_heap_start == 0)
683 my_heap_start = sbrk (0);
684 malloc_using_checking = getenv ("MALLOC_CHECK_") != NULL;
688 void (*__malloc_initialize_hook) (void) EXTERNALLY_VISIBLE = malloc_initialize_hook;
690 #endif /* DOUG_LEA_MALLOC */
692 /* Close standard output and standard error, reporting any write
693 errors as best we can. This is intended for use with atexit. */
694 static void
695 close_output_streams (void)
697 if (close_stream (stdout) != 0)
699 emacs_perror ("Write error to standard output");
700 _exit (EXIT_FAILURE);
703 if (close_stream (stderr) != 0)
704 _exit (EXIT_FAILURE);
707 /* ARGSUSED */
709 main (int argc, char **argv)
711 #if GC_MARK_STACK
712 Lisp_Object dummy;
713 #endif
714 char stack_bottom_variable;
715 bool do_initial_setlocale;
716 bool dumping;
717 int skip_args = 0;
718 #ifdef HAVE_SETRLIMIT
719 struct rlimit rlim;
720 #endif
721 bool no_loadup = 0;
722 char *junk = 0;
723 char *dname_arg = 0;
724 #ifdef DAEMON_MUST_EXEC
725 char dname_arg2[80];
726 #endif
727 char *ch_to_dir;
729 /* If we use --chdir, this records the original directory. */
730 char *original_pwd = 0;
732 #if GC_MARK_STACK
733 stack_base = &dummy;
734 #endif
736 #ifdef G_SLICE_ALWAYS_MALLOC
737 /* This is used by the Cygwin build. It's not needed starting with
738 cygwin-1.7.24, but it doesn't do any harm. */
739 xputenv ("G_SLICE=always-malloc");
740 #endif
742 #ifndef CANNOT_DUMP
743 might_dump = !initialized;
744 #endif
746 #ifdef GNU_LINUX
747 if (!initialized)
749 extern char my_endbss[];
750 extern char *my_endbss_static;
752 if (my_heap_start == 0)
753 my_heap_start = sbrk (0);
755 heap_bss_diff = (char *)my_heap_start - max (my_endbss, my_endbss_static);
757 #endif
759 #if defined WINDOWSNT || defined HAVE_NTGUI
760 /* Set global variables used to detect Windows version. Do this as
761 early as possible. (unexw32.c calls this function as well, but
762 the additional call here is harmless.) */
763 cache_system_info ();
764 #ifdef WINDOWSNT
765 /* On Windows 9X, we have to load UNICOWS.DLL as early as possible,
766 to have non-stub implementations of APIs we need to convert file
767 names between UTF-8 and the system's ANSI codepage. */
768 maybe_load_unicows_dll ();
769 #endif
770 #endif
772 #ifdef RUN_TIME_REMAP
773 if (initialized)
774 run_time_remap (argv[0]);
775 #endif
777 /* If using unexmacosx.c (set by s/darwin.h), we must do this. */
778 #ifdef DARWIN_OS
779 if (!initialized)
780 unexec_init_emacs_zone ();
781 #endif
783 atexit (close_output_streams);
785 sort_args (argc, argv);
786 argc = 0;
787 while (argv[argc]) argc++;
789 if (argmatch (argv, argc, "-version", "--version", 3, NULL, &skip_args))
791 const char *version, *copyright;
792 if (initialized)
794 Lisp_Object tem, tem2;
795 tem = Fsymbol_value (intern_c_string ("emacs-version"));
796 tem2 = Fsymbol_value (intern_c_string ("emacs-copyright"));
797 if (!STRINGP (tem))
799 fprintf (stderr, "Invalid value of `emacs-version'\n");
800 exit (1);
802 if (!STRINGP (tem2))
804 fprintf (stderr, "Invalid value of `emacs-copyright'\n");
805 exit (1);
807 else
809 version = SSDATA (tem);
810 copyright = SSDATA (tem2);
813 else
815 version = emacs_version;
816 copyright = emacs_copyright;
818 printf ("GNU Emacs %s\n", version);
819 printf ("%s\n", copyright);
820 printf ("GNU Emacs comes with ABSOLUTELY NO WARRANTY.\n");
821 printf ("You may redistribute copies of Emacs\n");
822 printf ("under the terms of the GNU General Public License.\n");
823 printf ("For more information about these matters, ");
824 printf ("see the file named COPYING.\n");
825 exit (0);
828 if (argmatch (argv, argc, "-chdir", "--chdir", 4, &ch_to_dir, &skip_args))
830 #ifdef WINDOWSNT
831 /* argv[] array is kept in its original ANSI codepage encoding,
832 we need to convert to UTF-8, for chdir to work. */
833 char newdir[MAX_UTF8_PATH];
835 filename_from_ansi (ch_to_dir, newdir);
836 ch_to_dir = newdir;
837 #endif
838 original_pwd = get_current_dir_name ();
839 if (chdir (ch_to_dir) != 0)
841 fprintf (stderr, "%s: Can't chdir to %s: %s\n",
842 argv[0], ch_to_dir, strerror (errno));
843 exit (1);
847 dumping = !initialized && (strcmp (argv[argc - 1], "dump") == 0
848 || strcmp (argv[argc - 1], "bootstrap") == 0);
850 #ifdef HAVE_PERSONALITY_LINUX32
851 if (dumping && ! getenv ("EMACS_HEAP_EXEC"))
853 /* Set this so we only do this once. */
854 xputenv ("EMACS_HEAP_EXEC=true");
856 /* A flag to turn off address randomization which is introduced
857 in linux kernel shipped with fedora core 4 */
858 #define ADD_NO_RANDOMIZE 0x0040000
859 personality (PER_LINUX32 | ADD_NO_RANDOMIZE);
860 #undef ADD_NO_RANDOMIZE
862 execvp (argv[0], argv);
864 /* If the exec fails, try to dump anyway. */
865 emacs_perror (argv[0]);
867 #endif /* HAVE_PERSONALITY_LINUX32 */
869 #if defined (HAVE_SETRLIMIT) && defined (RLIMIT_STACK)
870 /* Extend the stack space available.
871 Don't do that if dumping, since some systems (e.g. DJGPP)
872 might define a smaller stack limit at that time. */
873 if (1
874 #ifndef CANNOT_DUMP
875 && (!noninteractive || initialized)
876 #endif
877 && !getrlimit (RLIMIT_STACK, &rlim))
879 long newlim;
880 extern size_t re_max_failures;
881 /* Approximate the amount regex.c needs per unit of re_max_failures. */
882 int ratio = 20 * sizeof (char *);
883 /* Then add 33% to cover the size of the smaller stacks that regex.c
884 successively allocates and discards, on its way to the maximum. */
885 ratio += ratio / 3;
886 /* Add in some extra to cover
887 what we're likely to use for other reasons. */
888 newlim = re_max_failures * ratio + 200000;
889 #ifdef __NetBSD__
890 /* NetBSD (at least NetBSD 1.2G and former) has a bug in its
891 stack allocation routine for new process that the allocation
892 fails if stack limit is not on page boundary. So, round up the
893 new limit to page boundary. */
894 newlim = (newlim + getpagesize () - 1) / getpagesize () * getpagesize ();
895 #endif
896 if (newlim > rlim.rlim_max)
898 newlim = rlim.rlim_max;
899 /* Don't let regex.c overflow the stack we have. */
900 re_max_failures = (newlim - 200000) / ratio;
902 if (rlim.rlim_cur < newlim)
903 rlim.rlim_cur = newlim;
905 setrlimit (RLIMIT_STACK, &rlim);
907 #endif /* HAVE_SETRLIMIT and RLIMIT_STACK */
909 /* Record (approximately) where the stack begins. */
910 stack_bottom = &stack_bottom_variable;
912 clearerr (stdin);
914 #ifndef SYSTEM_MALLOC
915 /* Arrange to get warning messages as memory fills up. */
916 memory_warnings (0, malloc_warning);
918 /* Call malloc at least once, to run malloc_initialize_hook.
919 Also call realloc and free for consistency. */
920 free (realloc (malloc (4), 4));
922 #endif /* not SYSTEM_MALLOC */
924 #if defined (MSDOS) || defined (WINDOWSNT)
925 /* We do all file input/output as binary files. When we need to translate
926 newlines, we do that manually. */
927 _fmode = O_BINARY;
928 #endif /* MSDOS || WINDOWSNT */
930 #ifdef MSDOS
931 if (!isatty (fileno (stdin)))
932 setmode (fileno (stdin), O_BINARY);
933 if (!isatty (fileno (stdout)))
935 fflush (stdout);
936 setmode (fileno (stdout), O_BINARY);
938 #endif /* MSDOS */
940 /* Skip initial setlocale if LC_ALL is "C", as it's not needed in that case.
941 The build procedure uses this while dumping, to ensure that the
942 dumped Emacs does not have its system locale tables initialized,
943 as that might cause screwups when the dumped Emacs starts up. */
945 char *lc_all = getenv ("LC_ALL");
946 do_initial_setlocale = ! lc_all || strcmp (lc_all, "C");
949 /* Set locale now, so that initial error messages are localized properly.
950 fixup_locale must wait until later, since it builds strings. */
951 if (do_initial_setlocale)
952 setlocale (LC_ALL, "");
954 inhibit_window_system = 0;
956 /* Handle the -t switch, which specifies filename to use as terminal. */
957 while (1)
959 char *term;
960 if (argmatch (argv, argc, "-t", "--terminal", 4, &term, &skip_args))
962 int result;
963 emacs_close (0);
964 emacs_close (1);
965 result = emacs_open (term, O_RDWR, 0);
966 if (result < 0 || fcntl (0, F_DUPFD_CLOEXEC, 1) < 0)
968 char *errstring = strerror (errno);
969 fprintf (stderr, "%s: %s: %s\n", argv[0], term, errstring);
970 exit (1);
972 if (! isatty (0))
974 fprintf (stderr, "%s: %s: not a tty\n", argv[0], term);
975 exit (1);
977 fprintf (stderr, "Using %s\n", term);
978 #ifdef HAVE_WINDOW_SYSTEM
979 inhibit_window_system = 1; /* -t => -nw */
980 #endif
982 else
983 break;
986 /* Command line option --no-windows is deprecated and thus not mentioned
987 in the manual and usage information. */
988 if (argmatch (argv, argc, "-nw", "--no-window-system", 6, NULL, &skip_args)
989 || argmatch (argv, argc, "-nw", "--no-windows", 6, NULL, &skip_args))
990 inhibit_window_system = 1;
992 /* Handle the -batch switch, which means don't do interactive display. */
993 noninteractive = 0;
994 if (argmatch (argv, argc, "-batch", "--batch", 5, NULL, &skip_args))
996 noninteractive = 1;
997 Vundo_outer_limit = Qnil;
999 if (argmatch (argv, argc, "-script", "--script", 3, &junk, &skip_args))
1001 noninteractive = 1; /* Set batch mode. */
1002 /* Convert --script to -scriptload, un-skip it, and sort again
1003 so that it will be handled in proper sequence. */
1004 /* FIXME broken for --script=FILE - is that supposed to work? */
1005 argv[skip_args - 1] = (char *) "-scriptload";
1006 skip_args -= 2;
1007 sort_args (argc, argv);
1010 /* Handle the --help option, which gives a usage message. */
1011 if (argmatch (argv, argc, "-help", "--help", 3, NULL, &skip_args))
1013 int i;
1014 printf ("Usage: %s [OPTION-OR-FILENAME]...\n", argv[0]);
1015 for (i = 0; i < ARRAYELTS (usage_message); i++)
1016 fputs (usage_message[i], stdout);
1017 exit (0);
1020 /* Make sure IS_DAEMON starts up as false. */
1021 daemon_pipe[1] = 0;
1023 if (argmatch (argv, argc, "-daemon", "--daemon", 5, NULL, &skip_args)
1024 || argmatch (argv, argc, "-daemon", "--daemon", 5, &dname_arg, &skip_args))
1026 #ifndef DOS_NT
1027 pid_t f;
1029 /* Start as a daemon: fork a new child process which will run the
1030 rest of the initialization code, then exit.
1032 Detaching a daemon requires the following steps:
1033 - fork
1034 - setsid
1035 - exit the parent
1036 - close the tty file-descriptors
1038 We only want to do the last 2 steps once the daemon is ready to
1039 serve requests, i.e. after loading .emacs (initialization).
1040 OTOH initialization may start subprocesses (e.g. ispell) and these
1041 should be run from the proper process (the one that will end up
1042 running as daemon) and with the proper "session id" in order for
1043 them to keep working after detaching, so fork and setsid need to be
1044 performed before initialization.
1046 We want to avoid exiting before the server socket is ready, so
1047 use a pipe for synchronization. The parent waits for the child
1048 to close its end of the pipe (using `daemon-initialized')
1049 before exiting. */
1050 if (emacs_pipe (daemon_pipe) != 0)
1052 fprintf (stderr, "Cannot pipe!\n");
1053 exit (1);
1056 #ifndef DAEMON_MUST_EXEC
1057 #ifdef USE_GTK
1058 fprintf (stderr, "\nWarning: due to a long standing Gtk+ bug\nhttp://bugzilla.gnome.org/show_bug.cgi?id=85715\n\
1059 Emacs might crash when run in daemon mode and the X11 connection is unexpectedly lost.\n\
1060 Using an Emacs configured with --with-x-toolkit=lucid does not have this problem.\n");
1061 #endif /* USE_GTK */
1062 f = fork ();
1063 #else /* DAEMON_MUST_EXEC */
1064 if (!dname_arg || !strchr (dname_arg, '\n'))
1065 f = fork (); /* in orig */
1066 else
1067 f = 0; /* in exec'd */
1068 #endif /* !DAEMON_MUST_EXEC */
1069 if (f > 0)
1071 int retval;
1072 char buf[1];
1074 /* Close unused writing end of the pipe. */
1075 emacs_close (daemon_pipe[1]);
1077 /* Just wait for the child to close its end of the pipe. */
1080 retval = read (daemon_pipe[0], &buf, 1);
1082 while (retval == -1 && errno == EINTR);
1084 if (retval < 0)
1086 fprintf (stderr, "Error reading status from child\n");
1087 exit (1);
1089 else if (retval == 0)
1091 fprintf (stderr, "Error: server did not start correctly\n");
1092 exit (1);
1095 emacs_close (daemon_pipe[0]);
1096 exit (0);
1098 if (f < 0)
1100 emacs_perror ("fork");
1101 exit (EXIT_CANCELED);
1104 #ifdef DAEMON_MUST_EXEC
1106 /* In orig process, forked as child, OR in exec'd. */
1107 if (!dname_arg || !strchr (dname_arg, '\n'))
1108 { /* In orig, child: now exec w/special daemon name. */
1109 char fdStr[80];
1110 int fdStrlen =
1111 snprintf (fdStr, sizeof fdStr,
1112 "--daemon=\n%d,%d\n%s", daemon_pipe[0],
1113 daemon_pipe[1], dname_arg ? dname_arg : "");
1115 if (! (0 <= fdStrlen && fdStrlen < sizeof fdStr))
1117 fprintf (stderr, "daemon: child name too long\n");
1118 exit (EXIT_CANNOT_INVOKE);
1121 argv[skip_args] = fdStr;
1123 fcntl (daemon_pipe[0], F_SETFD, 0);
1124 fcntl (daemon_pipe[1], F_SETFD, 0);
1125 execvp (argv[0], argv);
1126 emacs_perror (argv[0]);
1127 exit (errno == ENOENT ? EXIT_ENOENT : EXIT_CANNOT_INVOKE);
1130 /* In exec'd: parse special dname into pipe and name info. */
1131 if (!dname_arg || !strchr (dname_arg, '\n')
1132 || strlen (dname_arg) < 1 || strlen (dname_arg) > 70)
1134 fprintf (stderr, "emacs daemon: daemon name absent or too long\n");
1135 exit (EXIT_CANNOT_INVOKE);
1137 dname_arg2[0] = '\0';
1138 sscanf (dname_arg, "\n%d,%d\n%s", &(daemon_pipe[0]), &(daemon_pipe[1]),
1139 dname_arg2);
1140 dname_arg = *dname_arg2 ? dname_arg2 : NULL;
1141 fcntl (daemon_pipe[1], F_SETFD, FD_CLOEXEC);
1143 #endif /* DAEMON_MUST_EXEC */
1145 if (dname_arg)
1146 daemon_name = xstrdup (dname_arg);
1147 /* Close unused reading end of the pipe. */
1148 emacs_close (daemon_pipe[0]);
1150 setsid ();
1151 #else /* DOS_NT */
1152 fprintf (stderr, "This platform does not support the -daemon flag.\n");
1153 exit (1);
1154 #endif /* DOS_NT */
1157 #if defined HAVE_PTHREAD && !defined SYSTEM_MALLOC && !defined DOUG_LEA_MALLOC
1158 # ifndef CANNOT_DUMP
1159 /* Do not make gmalloc thread-safe when creating bootstrap-emacs, as
1160 that causes an infinite recursive loop with FreeBSD. But do make
1161 it thread-safe when creating emacs, otherwise bootstrap-emacs
1162 fails on Cygwin. See Bug#14569. */
1163 if (!noninteractive || initialized)
1164 # endif
1165 malloc_enable_thread ();
1166 #endif
1168 init_signals (dumping);
1170 noninteractive1 = noninteractive;
1172 /* Perform basic initializations (not merely interning symbols). */
1174 if (!initialized)
1176 init_alloc_once ();
1177 init_obarray ();
1178 init_eval_once ();
1179 init_charset_once ();
1180 init_coding_once ();
1181 init_syntax_once (); /* Create standard syntax table. */
1182 init_category_once (); /* Create standard category table. */
1183 init_casetab_once (); /* Must be done before init_buffer_once. */
1184 init_buffer_once (); /* Create buffer table and some buffers. */
1185 init_minibuf_once (); /* Create list of minibuffers. */
1186 /* Must precede init_window_once. */
1188 /* Call syms_of_xfaces before init_window_once because that
1189 function creates Vterminal_frame. Termcap frames now use
1190 faces, and the face implementation uses some symbols as
1191 face names. */
1192 syms_of_xfaces ();
1193 /* XXX syms_of_keyboard uses some symbols in keymap.c. It would
1194 be better to arrange things not to have this dependency. */
1195 syms_of_keymap ();
1196 /* Call syms_of_keyboard before init_window_once because
1197 keyboard sets up symbols that include some face names that
1198 the X support will want to use. This can happen when
1199 CANNOT_DUMP is defined. */
1200 syms_of_keyboard ();
1202 /* Called before syms_of_fileio, because it sets up Qerror_condition. */
1203 syms_of_data ();
1204 syms_of_fns (); /* Before syms_of_charset which uses hashtables. */
1205 syms_of_fileio ();
1206 /* Before syms_of_coding to initialize Vgc_cons_threshold. */
1207 syms_of_alloc ();
1208 /* May call Ffuncall and so GC, thus the latter should be initialized. */
1209 init_print_once ();
1210 /* Before syms_of_coding because it initializes Qcharsetp. */
1211 syms_of_charset ();
1212 /* Before init_window_once, because it sets up the
1213 Vcoding_system_hash_table. */
1214 syms_of_coding (); /* This should be after syms_of_fileio. */
1216 init_window_once (); /* Init the window system. */
1217 #ifdef HAVE_WINDOW_SYSTEM
1218 init_fringe_once (); /* Swap bitmaps if necessary. */
1219 #endif /* HAVE_WINDOW_SYSTEM */
1222 init_alloc ();
1224 if (do_initial_setlocale)
1226 fixup_locale ();
1227 Vsystem_messages_locale = Vprevious_system_messages_locale;
1228 Vsystem_time_locale = Vprevious_system_time_locale;
1231 init_eval ();
1232 init_atimer ();
1233 running_asynch_code = 0;
1234 init_random ();
1236 no_loadup
1237 = argmatch (argv, argc, "-nl", "--no-loadup", 6, NULL, &skip_args);
1239 no_site_lisp
1240 = argmatch (argv, argc, "-nsl", "--no-site-lisp", 11, NULL, &skip_args);
1242 #ifdef HAVE_NS
1243 ns_pool = ns_alloc_autorelease_pool ();
1244 #ifdef NS_IMPL_GNUSTEP
1245 /* GNUstep stupidly resets our locale settings after we made them. */
1246 fixup_locale ();
1247 #endif
1249 if (!noninteractive)
1251 #ifdef NS_IMPL_COCOA
1252 /* Started from GUI? */
1253 /* FIXME: Do the right thing if getenv returns NULL, or if
1254 chdir fails. */
1255 if (! inhibit_window_system && ! isatty (0))
1256 chdir (getenv ("HOME"));
1257 if (skip_args < argc)
1259 if (!strncmp (argv[skip_args], "-psn", 4))
1261 skip_args += 1;
1262 chdir (getenv ("HOME"));
1264 else if (skip_args+1 < argc && !strncmp (argv[skip_args+1], "-psn", 4))
1266 skip_args += 2;
1267 chdir (getenv ("HOME"));
1270 #endif /* COCOA */
1272 #endif /* HAVE_NS */
1274 #ifdef HAVE_X_WINDOWS
1275 /* Stupid kludge to catch command-line display spec. We can't
1276 handle this argument entirely in window system dependent code
1277 because we don't even know which window system dependent code
1278 to run until we've recognized this argument. */
1280 char *displayname = 0;
1281 int count_before = skip_args;
1283 /* Skip any number of -d options, but only use the last one. */
1284 while (1)
1286 int count_before_this = skip_args;
1288 if (argmatch (argv, argc, "-d", "--display", 3, &displayname, &skip_args))
1289 display_arg = 1;
1290 else if (argmatch (argv, argc, "-display", 0, 3, &displayname, &skip_args))
1291 display_arg = 1;
1292 else
1293 break;
1295 count_before = count_before_this;
1298 /* If we have the form --display=NAME,
1299 convert it into -d name.
1300 This requires inserting a new element into argv. */
1301 if (displayname && count_before < skip_args)
1303 if (skip_args == count_before + 1)
1305 memmove (argv + count_before + 3, argv + count_before + 2,
1306 (argc - (count_before + 2)) * sizeof *argv);
1307 argv[count_before + 2] = displayname;
1308 argc++;
1310 argv[count_before + 1] = (char *) "-d";
1313 if (! no_site_lisp)
1315 if (argmatch (argv, argc, "-Q", "--quick", 3, NULL, &skip_args)
1316 || argmatch (argv, argc, "-quick", 0, 2, NULL, &skip_args))
1317 no_site_lisp = 1;
1320 /* Don't actually discard this arg. */
1321 skip_args = count_before;
1323 #else /* !HAVE_X_WINDOWS */
1324 if (! no_site_lisp)
1326 int count_before = skip_args;
1328 if (argmatch (argv, argc, "-Q", "--quick", 3, NULL, &skip_args)
1329 || argmatch (argv, argc, "-quick", 0, 2, NULL, &skip_args))
1330 no_site_lisp = 1;
1332 skip_args = count_before;
1334 #endif
1336 /* argmatch must not be used after here,
1337 except when building temacs
1338 because the -d argument has not been skipped in skip_args. */
1340 #ifdef MSDOS
1341 /* Call early 'cause init_environment needs it. */
1342 init_dosfns ();
1343 /* Set defaults for several environment variables. */
1344 if (initialized)
1345 init_environment (argc, argv, skip_args);
1346 else
1347 tzset ();
1348 #endif /* MSDOS */
1350 #ifdef HAVE_GFILENOTIFY
1351 globals_of_gfilenotify ();
1352 #endif
1354 #ifdef WINDOWSNT
1355 globals_of_w32 ();
1356 #ifdef HAVE_W32NOTIFY
1357 globals_of_w32notify ();
1358 #endif
1359 /* Initialize environment from registry settings. */
1360 init_environment (argv);
1361 init_ntproc (dumping); /* must precede init_editfns. */
1362 #endif
1364 /* Initialize and GC-protect Vinitial_environment and
1365 Vprocess_environment before set_initial_environment fills them
1366 in. */
1367 if (!initialized)
1368 syms_of_callproc ();
1369 /* egetenv is a pretty low-level facility, which may get called in
1370 many circumstances; it seems flimsy to put off initializing it
1371 until calling init_callproc. Do not do it when dumping. */
1372 if (! dumping)
1373 set_initial_environment ();
1375 /* AIX crashes are reported in system versions 3.2.3 and 3.2.4
1376 if this is not done. Do it after set_global_environment so that we
1377 don't pollute Vglobal_environment. */
1378 /* Setting LANG here will defeat the startup locale processing... */
1379 #ifdef AIX
1380 xputenv ("LANG=C");
1381 #endif
1383 /* Init buffer storage and default directory of main buffer. */
1384 init_buffer (initialized);
1386 init_callproc_1 (); /* Must precede init_cmdargs and init_sys_modes. */
1388 /* Must precede init_lread. */
1389 init_cmdargs (argc, argv, skip_args, original_pwd);
1391 if (initialized)
1393 /* Erase any pre-dump messages in the message log, to avoid confusion. */
1394 Lisp_Object old_log_max;
1395 old_log_max = Vmessage_log_max;
1396 XSETFASTINT (Vmessage_log_max, 0);
1397 message_dolog ("", 0, 1, 0);
1398 Vmessage_log_max = old_log_max;
1401 init_callproc (); /* Must follow init_cmdargs but not init_sys_modes. */
1402 init_fileio ();
1403 init_lread ();
1404 #ifdef WINDOWSNT
1405 /* Check to see if Emacs has been installed correctly. */
1406 check_windows_init_file ();
1407 #endif
1409 /* Intern the names of all standard functions and variables;
1410 define standard keys. */
1412 if (!initialized)
1414 /* The basic levels of Lisp must come first. Note that
1415 syms_of_data and some others have already been called. */
1416 syms_of_chartab ();
1417 syms_of_lread ();
1418 syms_of_print ();
1419 syms_of_eval ();
1420 syms_of_floatfns ();
1422 syms_of_buffer ();
1423 syms_of_bytecode ();
1424 syms_of_callint ();
1425 syms_of_casefiddle ();
1426 syms_of_casetab ();
1427 syms_of_category ();
1428 syms_of_ccl ();
1429 syms_of_character ();
1430 syms_of_cmds ();
1431 syms_of_dired ();
1432 syms_of_display ();
1433 syms_of_doc ();
1434 syms_of_editfns ();
1435 syms_of_emacs ();
1436 syms_of_filelock ();
1437 syms_of_indent ();
1438 syms_of_insdel ();
1439 /* syms_of_keymap (); */
1440 syms_of_macros ();
1441 syms_of_marker ();
1442 syms_of_minibuf ();
1443 syms_of_process ();
1444 syms_of_search ();
1445 syms_of_frame ();
1446 syms_of_syntax ();
1447 syms_of_terminal ();
1448 syms_of_term ();
1449 syms_of_undo ();
1450 #ifdef HAVE_SOUND
1451 syms_of_sound ();
1452 #endif
1453 syms_of_textprop ();
1454 syms_of_composite ();
1455 #ifdef WINDOWSNT
1456 syms_of_ntproc ();
1457 #endif /* WINDOWSNT */
1458 #if defined CYGWIN
1459 syms_of_cygw32 ();
1460 #endif
1461 syms_of_window ();
1462 syms_of_xdisp ();
1463 syms_of_font ();
1464 #ifdef HAVE_WINDOW_SYSTEM
1465 syms_of_fringe ();
1466 syms_of_image ();
1467 #endif /* HAVE_WINDOW_SYSTEM */
1468 #ifdef HAVE_X_WINDOWS
1469 syms_of_xterm ();
1470 syms_of_xfns ();
1471 syms_of_xmenu ();
1472 syms_of_fontset ();
1473 #ifdef HAVE_XWIDGETS
1474 syms_of_xwidget();
1475 #endif
1476 syms_of_xsettings ();
1477 #ifdef HAVE_X_SM
1478 syms_of_xsmfns ();
1479 #endif
1480 #ifdef HAVE_X11
1481 syms_of_xselect ();
1482 #endif
1483 #endif /* HAVE_X_WINDOWS */
1485 #ifdef HAVE_LIBXML2
1486 syms_of_xml ();
1487 #endif
1489 #ifdef HAVE_ZLIB
1490 syms_of_decompress ();
1491 #endif
1493 syms_of_menu ();
1495 #ifdef HAVE_NTGUI
1496 syms_of_w32term ();
1497 syms_of_w32fns ();
1498 syms_of_w32menu ();
1499 syms_of_fontset ();
1500 #endif /* HAVE_NTGUI */
1502 #if defined WINDOWSNT || defined HAVE_NTGUI
1503 syms_of_w32select ();
1504 #endif
1506 #ifdef MSDOS
1507 syms_of_xmenu ();
1508 syms_of_dosfns ();
1509 syms_of_msdos ();
1510 syms_of_win16select ();
1511 #endif /* MSDOS */
1513 #ifdef HAVE_NS
1514 syms_of_nsterm ();
1515 syms_of_nsfns ();
1516 syms_of_nsmenu ();
1517 syms_of_nsselect ();
1518 syms_of_fontset ();
1519 #endif /* HAVE_NS */
1521 #ifdef HAVE_GNUTLS
1522 syms_of_gnutls ();
1523 #endif
1525 #ifdef HAVE_GFILENOTIFY
1526 syms_of_gfilenotify ();
1527 #endif /* HAVE_GFILENOTIFY */
1529 #ifdef HAVE_INOTIFY
1530 syms_of_inotify ();
1531 #endif /* HAVE_INOTIFY */
1533 #ifdef HAVE_DBUS
1534 syms_of_dbusbind ();
1535 #endif /* HAVE_DBUS */
1537 #ifdef WINDOWSNT
1538 syms_of_ntterm ();
1539 #ifdef HAVE_W32NOTIFY
1540 syms_of_w32notify ();
1541 #endif /* HAVE_W32NOTIFY */
1542 #endif /* WINDOWSNT */
1544 syms_of_profiler ();
1546 keys_of_casefiddle ();
1547 keys_of_cmds ();
1548 keys_of_buffer ();
1549 keys_of_keyboard ();
1550 keys_of_keymap ();
1551 keys_of_window ();
1553 else
1555 /* Initialization that must be done even if the global variable
1556 initialized is non zero. */
1557 #ifdef HAVE_NTGUI
1558 globals_of_w32font ();
1559 globals_of_w32fns ();
1560 globals_of_w32menu ();
1561 #endif /* HAVE_NTGUI */
1563 #if defined WINDOWSNT || defined HAVE_NTGUI
1564 globals_of_w32select ();
1565 #endif
1568 init_charset ();
1570 init_editfns (); /* init_process_emacs uses Voperating_system_release. */
1571 init_process_emacs (); /* init_display uses add_keyboard_wait_descriptor. */
1572 init_keyboard (); /* This too must precede init_sys_modes. */
1573 if (!noninteractive)
1574 init_display (); /* Determine terminal type. Calls init_sys_modes. */
1575 #if HAVE_W32NOTIFY
1576 else
1577 init_crit (); /* w32notify.c needs this in batch mode. */
1578 #endif /* HAVE_W32NOTIFY */
1579 init_xdisp ();
1580 #ifdef HAVE_WINDOW_SYSTEM
1581 init_fringe ();
1582 #endif /* HAVE_WINDOW_SYSTEM */
1583 init_macros ();
1584 init_window ();
1585 init_font ();
1587 if (!initialized)
1589 char *file;
1590 /* Handle -l loadup, args passed by Makefile. */
1591 if (argmatch (argv, argc, "-l", "--load", 3, &file, &skip_args))
1593 #ifdef WINDOWSNT
1594 char file_utf8[MAX_UTF8_PATH];
1596 if (filename_from_ansi (file, file_utf8) == 0)
1597 file = file_utf8;
1598 #endif
1599 Vtop_level = list2 (intern_c_string ("load"),
1600 build_unibyte_string (file));
1602 /* Unless next switch is -nl, load "loadup.el" first thing. */
1603 if (! no_loadup)
1604 Vtop_level = list2 (intern_c_string ("load"),
1605 build_string ("loadup.el"));
1608 if (initialized)
1610 #ifdef HAVE_TZSET
1612 /* If the execution TZ happens to be the same as the dump TZ,
1613 change it to some other value and then change it back,
1614 to force the underlying implementation to reload the TZ info.
1615 This is needed on implementations that load TZ info from files,
1616 since the TZ file contents may differ between dump and execution. */
1617 char *tz = getenv ("TZ");
1618 if (tz && !strcmp (tz, dump_tz))
1620 ++*tz;
1621 tzset ();
1622 --*tz;
1625 #endif
1628 /* Set up for profiling. This is known to work on FreeBSD,
1629 GNU/Linux and MinGW. It might work on some other systems too.
1630 Give it a try and tell us if it works on your system. To compile
1631 for profiling, use the configure option --enable-profiling. */
1632 #if defined (__FreeBSD__) || defined (GNU_LINUX) || defined (__MINGW32__)
1633 #ifdef PROFILING
1634 if (initialized)
1636 #ifdef __MINGW32__
1637 extern unsigned char etext asm ("etext");
1638 #else
1639 extern char etext;
1640 #endif
1642 atexit (_mcleanup);
1643 monstartup ((uintptr_t) __executable_start, (uintptr_t) &etext);
1645 else
1646 moncontrol (0);
1647 #endif
1648 #endif
1650 initialized = 1;
1652 #ifdef LOCALTIME_CACHE
1653 /* Some versions of localtime have a bug. They cache the value of the time
1654 zone rather than looking it up every time. Since localtime() is
1655 called to bolt the undumping time into the undumped emacs, this
1656 results in localtime ignoring the TZ environment variable.
1657 This flushes the new TZ value into localtime. */
1658 tzset ();
1659 #endif /* defined (LOCALTIME_CACHE) */
1661 /* Enter editor command loop. This never returns. */
1662 Frecursive_edit ();
1663 /* NOTREACHED */
1664 return 0;
1667 /* Sort the args so we can find the most important ones
1668 at the beginning of argv. */
1670 /* First, here's a table of all the standard options. */
1672 struct standard_args
1674 const char *name;
1675 const char *longname;
1676 int priority;
1677 int nargs;
1680 static const struct standard_args standard_args[] =
1682 { "-version", "--version", 150, 0 },
1683 { "-chdir", "--chdir", 130, 1 },
1684 { "-t", "--terminal", 120, 1 },
1685 { "-nw", "--no-window-system", 110, 0 },
1686 { "-nw", "--no-windows", 110, 0 },
1687 { "-batch", "--batch", 100, 0 },
1688 { "-script", "--script", 100, 1 },
1689 { "-daemon", "--daemon", 99, 0 },
1690 { "-help", "--help", 90, 0 },
1691 { "-nl", "--no-loadup", 70, 0 },
1692 { "-nsl", "--no-site-lisp", 65, 0 },
1693 /* -d must come last before the options handled in startup.el. */
1694 { "-d", "--display", 60, 1 },
1695 { "-display", 0, 60, 1 },
1696 /* Now for the options handled in `command-line' (startup.el). */
1697 /* (Note that to imply -nsl, -Q is partially handled here.) */
1698 { "-Q", "--quick", 55, 0 },
1699 { "-quick", 0, 55, 0 },
1700 { "-q", "--no-init-file", 50, 0 },
1701 { "-no-init-file", 0, 50, 0 },
1702 { "-no-site-file", "--no-site-file", 40, 0 },
1703 { "-u", "--user", 30, 1 },
1704 { "-user", 0, 30, 1 },
1705 { "-debug-init", "--debug-init", 20, 0 },
1706 { "-iconic", "--iconic", 15, 0 },
1707 { "-D", "--basic-display", 12, 0},
1708 { "-basic-display", 0, 12, 0},
1709 { "-nbc", "--no-blinking-cursor", 12, 0 },
1710 /* Now for the options handled in `command-line-1' (startup.el). */
1711 { "-nbi", "--no-bitmap-icon", 10, 0 },
1712 { "-bg", "--background-color", 10, 1 },
1713 { "-background", 0, 10, 1 },
1714 { "-fg", "--foreground-color", 10, 1 },
1715 { "-foreground", 0, 10, 1 },
1716 { "-bd", "--border-color", 10, 1 },
1717 { "-bw", "--border-width", 10, 1 },
1718 { "-ib", "--internal-border", 10, 1 },
1719 { "-ms", "--mouse-color", 10, 1 },
1720 { "-cr", "--cursor-color", 10, 1 },
1721 { "-fn", "--font", 10, 1 },
1722 { "-font", 0, 10, 1 },
1723 { "-fs", "--fullscreen", 10, 0 },
1724 { "-fw", "--fullwidth", 10, 0 },
1725 { "-fh", "--fullheight", 10, 0 },
1726 { "-mm", "--maximized", 10, 0 },
1727 { "-g", "--geometry", 10, 1 },
1728 { "-geometry", 0, 10, 1 },
1729 { "-T", "--title", 10, 1 },
1730 { "-title", 0, 10, 1 },
1731 { "-name", "--name", 10, 1 },
1732 { "-xrm", "--xrm", 10, 1 },
1733 { "-parent-id", "--parent-id", 10, 1 },
1734 { "-r", "--reverse-video", 5, 0 },
1735 { "-rv", 0, 5, 0 },
1736 { "-reverse", 0, 5, 0 },
1737 { "-hb", "--horizontal-scroll-bars", 5, 0 },
1738 { "-vb", "--vertical-scroll-bars", 5, 0 },
1739 { "-color", "--color", 5, 0},
1740 { "-no-splash", "--no-splash", 3, 0 },
1741 { "-no-desktop", "--no-desktop", 3, 0 },
1742 #ifdef HAVE_NS
1743 { "-NSAutoLaunch", 0, 5, 1 },
1744 { "-NXAutoLaunch", 0, 5, 1 },
1745 { "-_NSMachLaunch", 0, 85, 1 },
1746 { "-MachLaunch", 0, 85, 1 },
1747 { "-macosx", 0, 85, 0 },
1748 { "-NSHost", 0, 85, 1 },
1749 #endif
1750 /* These have the same priority as ordinary file name args,
1751 so they are not reordered with respect to those. */
1752 { "-L", "--directory", 0, 1 },
1753 { "-directory", 0, 0, 1 },
1754 { "-l", "--load", 0, 1 },
1755 { "-load", 0, 0, 1 },
1756 /* This has no longname, because using --scriptload confuses sort_args,
1757 because then the --script long option seems to match twice; ie
1758 you can't have a long option which is a prefix of another long
1759 option. In any case, this is entirely an internal option. */
1760 { "-scriptload", NULL, 0, 1 },
1761 { "-f", "--funcall", 0, 1 },
1762 { "-funcall", 0, 0, 1 },
1763 { "-eval", "--eval", 0, 1 },
1764 { "-execute", "--execute", 0, 1 },
1765 { "-find-file", "--find-file", 0, 1 },
1766 { "-visit", "--visit", 0, 1 },
1767 { "-file", "--file", 0, 1 },
1768 { "-insert", "--insert", 0, 1 },
1769 #ifdef HAVE_NS
1770 { "-NXOpen", 0, 0, 1 },
1771 { "-NXOpenTemp", 0, 0, 1 },
1772 { "-NSOpen", 0, 0, 1 },
1773 { "-NSOpenTemp", 0, 0, 1 },
1774 { "-GSFilePath", 0, 0, 1 },
1775 #endif
1776 /* This should be processed after ordinary file name args and the like. */
1777 { "-kill", "--kill", -10, 0 },
1780 /* Reorder the elements of ARGV (assumed to have ARGC elements)
1781 so that the highest priority ones come first.
1782 Do not change the order of elements of equal priority.
1783 If an option takes an argument, keep it and its argument together.
1785 If an option that takes no argument appears more
1786 than once, eliminate all but one copy of it. */
1788 static void
1789 sort_args (int argc, char **argv)
1791 char **new = xmalloc (argc * sizeof *new);
1792 /* For each element of argv,
1793 the corresponding element of options is:
1794 0 for an option that takes no arguments,
1795 1 for an option that takes one argument, etc.
1796 -1 for an ordinary non-option argument. */
1797 int *options = xnmalloc (argc, sizeof *options);
1798 int *priority = xnmalloc (argc, sizeof *priority);
1799 int to = 1;
1800 int incoming_used = 1;
1801 int from;
1802 int i;
1804 /* Categorize all the options,
1805 and figure out which argv elts are option arguments. */
1806 for (from = 1; from < argc; from++)
1808 options[from] = -1;
1809 priority[from] = 0;
1810 if (argv[from][0] == '-')
1812 int match;
1814 /* If we have found "--", don't consider
1815 any more arguments as options. */
1816 if (argv[from][1] == '-' && argv[from][2] == 0)
1818 /* Leave the "--", and everything following it, at the end. */
1819 for (; from < argc; from++)
1821 priority[from] = -100;
1822 options[from] = -1;
1824 break;
1827 /* Look for a match with a known old-fashioned option. */
1828 for (i = 0; i < ARRAYELTS (standard_args); i++)
1829 if (!strcmp (argv[from], standard_args[i].name))
1831 options[from] = standard_args[i].nargs;
1832 priority[from] = standard_args[i].priority;
1833 if (from + standard_args[i].nargs >= argc)
1834 fatal ("Option `%s' requires an argument\n", argv[from]);
1835 from += standard_args[i].nargs;
1836 goto done;
1839 /* Look for a match with a known long option.
1840 MATCH is -1 if no match so far, -2 if two or more matches so far,
1841 >= 0 (the table index of the match) if just one match so far. */
1842 if (argv[from][1] == '-')
1844 char const *equals = strchr (argv[from], '=');
1845 ptrdiff_t thislen =
1846 equals ? equals - argv[from] : strlen (argv[from]);
1848 match = -1;
1850 for (i = 0; i < ARRAYELTS (standard_args); i++)
1851 if (standard_args[i].longname
1852 && !strncmp (argv[from], standard_args[i].longname,
1853 thislen))
1855 if (match == -1)
1856 match = i;
1857 else
1858 match = -2;
1861 /* If we found exactly one match, use that. */
1862 if (match >= 0)
1864 options[from] = standard_args[match].nargs;
1865 priority[from] = standard_args[match].priority;
1866 /* If --OPTION=VALUE syntax is used,
1867 this option uses just one argv element. */
1868 if (equals != 0)
1869 options[from] = 0;
1870 if (from + options[from] >= argc)
1871 fatal ("Option `%s' requires an argument\n", argv[from]);
1872 from += options[from];
1874 /* FIXME When match < 0, shouldn't there be some error,
1875 or at least indication to the user that there was a
1876 problem? */
1878 done: ;
1882 /* Copy the arguments, in order of decreasing priority, to NEW. */
1883 new[0] = argv[0];
1884 while (incoming_used < argc)
1886 int best = -1;
1887 int best_priority = -9999;
1889 /* Find the highest priority remaining option.
1890 If several have equal priority, take the first of them. */
1891 for (from = 1; from < argc; from++)
1893 if (argv[from] != 0 && priority[from] > best_priority)
1895 best_priority = priority[from];
1896 best = from;
1898 /* Skip option arguments--they are tied to the options. */
1899 if (options[from] > 0)
1900 from += options[from];
1903 if (best < 0)
1904 emacs_abort ();
1906 /* Copy the highest priority remaining option, with its args, to NEW.
1907 Unless it is a duplicate of the previous one. */
1908 if (! (options[best] == 0
1909 && ! strcmp (new[to - 1], argv[best])))
1911 new[to++] = argv[best];
1912 for (i = 0; i < options[best]; i++)
1913 new[to++] = argv[best + i + 1];
1916 incoming_used += 1 + (options[best] > 0 ? options[best] : 0);
1918 /* Clear out this option in ARGV. */
1919 argv[best] = 0;
1920 for (i = 0; i < options[best]; i++)
1921 argv[best + i + 1] = 0;
1924 /* If duplicate options were deleted, fill up extra space with null ptrs. */
1925 while (to < argc)
1926 new[to++] = 0;
1928 memcpy (argv, new, sizeof (char *) * argc);
1930 xfree (options);
1931 xfree (new);
1932 xfree (priority);
1935 DEFUN ("kill-emacs", Fkill_emacs, Skill_emacs, 0, 1, "P",
1936 doc: /* Exit the Emacs job and kill it.
1937 If ARG is an integer, return ARG as the exit program code.
1938 If ARG is a string, stuff it as keyboard input.
1940 This function is called upon receipt of the signals SIGTERM
1941 or SIGHUP, and upon SIGINT in batch mode.
1943 The value of `kill-emacs-hook', if not void,
1944 is a list of functions (of no args),
1945 all of which are called before Emacs is actually killed. */)
1946 (Lisp_Object arg)
1948 struct gcpro gcpro1;
1949 int exit_code;
1951 GCPRO1 (arg);
1953 if (feof (stdin))
1954 arg = Qt;
1956 /* Fsignal calls emacs_abort () if it sees that waiting_for_input is
1957 set. */
1958 waiting_for_input = 0;
1959 Frun_hooks (1, &Qkill_emacs_hook);
1960 UNGCPRO;
1962 #ifdef HAVE_X_WINDOWS
1963 /* Transfer any clipboards we own to the clipboard manager. */
1964 x_clipboard_manager_save_all ();
1965 #endif
1967 shut_down_emacs (0, STRINGP (arg) ? arg : Qnil);
1969 #ifdef HAVE_NS
1970 ns_release_autorelease_pool (ns_pool);
1971 #endif
1973 /* If we have an auto-save list file,
1974 kill it because we are exiting Emacs deliberately (not crashing).
1975 Do it after shut_down_emacs, which does an auto-save. */
1976 if (STRINGP (Vauto_save_list_file_name))
1978 Lisp_Object listfile;
1979 listfile = Fexpand_file_name (Vauto_save_list_file_name, Qnil);
1980 unlink (SSDATA (listfile));
1983 if (INTEGERP (arg))
1984 exit_code = (XINT (arg) < 0
1985 ? XINT (arg) | INT_MIN
1986 : XINT (arg) & INT_MAX);
1987 else
1988 exit_code = EXIT_SUCCESS;
1989 exit (exit_code);
1993 /* Perform an orderly shutdown of Emacs. Autosave any modified
1994 buffers, kill any child processes, clean up the terminal modes (if
1995 we're in the foreground), and other stuff like that. Don't perform
1996 any redisplay; this may be called when Emacs is shutting down in
1997 the background, or after its X connection has died.
1999 If SIG is a signal number, print a message for it.
2001 This is called by fatal signal handlers, X protocol error handlers,
2002 and Fkill_emacs. */
2004 void
2005 shut_down_emacs (int sig, Lisp_Object stuff)
2007 /* Prevent running of hooks from now on. */
2008 Vrun_hooks = Qnil;
2010 /* Don't update display from now on. */
2011 Vinhibit_redisplay = Qt;
2013 /* If we are controlling the terminal, reset terminal modes. */
2014 #ifndef DOS_NT
2016 pid_t pgrp = getpgrp ();
2017 pid_t tpgrp = tcgetpgrp (0);
2018 if ((tpgrp != -1) && tpgrp == pgrp)
2020 reset_all_sys_modes ();
2021 if (sig && sig != SIGTERM)
2023 static char const format[] = "Fatal error %d: ";
2024 char buf[sizeof format - 2 + INT_STRLEN_BOUND (int)];
2025 int buflen = sprintf (buf, format, sig);
2026 char const *sig_desc = safe_strsignal (sig);
2027 emacs_write (STDERR_FILENO, buf, buflen);
2028 emacs_write (STDERR_FILENO, sig_desc, strlen (sig_desc));
2032 #else
2033 fflush (stdout);
2034 reset_all_sys_modes ();
2035 #endif
2037 stuff_buffered_input (stuff);
2039 inhibit_sentinels = 1;
2040 kill_buffer_processes (Qnil);
2041 Fdo_auto_save (Qt, Qnil);
2043 unlock_all_files ();
2045 /* There is a tendency for a SIGIO signal to arrive within exit,
2046 and cause a SIGHUP because the input descriptor is already closed. */
2047 unrequest_sigio ();
2048 ignore_sigio ();
2050 /* Do this only if terminating normally, we want glyph matrices
2051 etc. in a core dump. */
2052 if (sig == 0 || sig == SIGTERM)
2054 check_glyph_memory ();
2055 check_message_stack ();
2058 #ifdef MSDOS
2059 dos_cleanup ();
2060 #endif
2062 #ifdef HAVE_NS
2063 ns_term_shutdown (sig);
2064 #endif
2066 #ifdef HAVE_LIBXML2
2067 xml_cleanup_parser ();
2068 #endif
2070 #ifdef WINDOWSNT
2071 term_ntproc (0);
2072 #endif
2077 #ifndef CANNOT_DUMP
2079 #include "unexec.h"
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.
2086 You must run Emacs in batch mode in order to dump it. */)
2087 (Lisp_Object filename, Lisp_Object symfile)
2089 Lisp_Object tem;
2090 Lisp_Object symbol;
2091 ptrdiff_t count = SPECPDL_INDEX ();
2093 check_pure_size ();
2095 if (! noninteractive)
2096 error ("Dumping Emacs works only in batch mode");
2098 if (!might_dump)
2099 error ("Emacs can be dumped only once");
2101 #ifdef GNU_LINUX
2103 /* Warn if the gap between BSS end and heap start is larger than this. */
2104 # define MAX_HEAP_BSS_DIFF (1024*1024)
2106 if (heap_bss_diff > MAX_HEAP_BSS_DIFF)
2108 fprintf (stderr, "**************************************************\n");
2109 fprintf (stderr, "Warning: Your system has a gap between BSS and the\n");
2110 fprintf (stderr, "heap (%"pMu" bytes). This usually means that exec-shield\n",
2111 heap_bss_diff);
2112 fprintf (stderr, "or something similar is in effect. The dump may\n");
2113 fprintf (stderr, "fail because of this. See the section about\n");
2114 fprintf (stderr, "exec-shield in etc/PROBLEMS for more information.\n");
2115 fprintf (stderr, "**************************************************\n");
2117 #endif /* GNU_LINUX */
2119 /* Bind `command-line-processed' to nil before dumping,
2120 so that the dumped Emacs will process its command line
2121 and set up to work with X windows if appropriate. */
2122 symbol = intern ("command-line-processed");
2123 specbind (symbol, Qnil);
2125 CHECK_STRING (filename);
2126 filename = Fexpand_file_name (filename, Qnil);
2127 filename = ENCODE_FILE (filename);
2128 if (!NILP (symfile))
2130 CHECK_STRING (symfile);
2131 if (SCHARS (symfile))
2133 symfile = Fexpand_file_name (symfile, Qnil);
2134 symfile = ENCODE_FILE (symfile);
2138 tem = Vpurify_flag;
2139 Vpurify_flag = Qnil;
2141 #ifdef HAVE_TZSET
2142 set_time_zone_rule (dump_tz);
2143 #ifndef LOCALTIME_CACHE
2144 /* Force a tz reload, since set_time_zone_rule doesn't. */
2145 tzset ();
2146 #endif
2147 #endif
2149 fflush (stdout);
2150 /* Tell malloc where start of impure now is. */
2151 /* Also arrange for warnings when nearly out of space. */
2152 #ifndef SYSTEM_MALLOC
2153 #ifndef WINDOWSNT
2154 /* On Windows, this was done before dumping, and that once suffices.
2155 Meanwhile, my_edata is not valid on Windows. */
2157 extern char my_edata[];
2158 memory_warnings (my_edata, malloc_warning);
2160 #endif /* not WINDOWSNT */
2161 #endif /* not SYSTEM_MALLOC */
2162 #ifdef DOUG_LEA_MALLOC
2163 malloc_state_ptr = malloc_get_state ();
2164 #endif
2166 unexec (SSDATA (filename), !NILP (symfile) ? SSDATA (symfile) : 0);
2168 #ifdef DOUG_LEA_MALLOC
2169 free (malloc_state_ptr);
2170 #endif
2172 #ifdef WINDOWSNT
2173 Vlibrary_cache = Qnil;
2174 #endif
2175 #ifdef HAVE_WINDOW_SYSTEM
2176 reset_image_types ();
2177 #endif
2179 Vpurify_flag = tem;
2181 return unbind_to (count, Qnil);
2184 #endif /* not CANNOT_DUMP */
2186 #if HAVE_SETLOCALE
2187 /* Recover from setlocale (LC_ALL, ""). */
2188 void
2189 fixup_locale (void)
2191 /* The Emacs Lisp reader needs LC_NUMERIC to be "C",
2192 so that numbers are read and printed properly for Emacs Lisp. */
2193 setlocale (LC_NUMERIC, "C");
2196 /* Set system locale CATEGORY, with previous locale *PLOCALE, to
2197 DESIRED_LOCALE. */
2198 static void
2199 synchronize_locale (int category, Lisp_Object *plocale, Lisp_Object desired_locale)
2201 if (! EQ (*plocale, desired_locale))
2203 *plocale = desired_locale;
2204 setlocale (category, (STRINGP (desired_locale)
2205 ? SSDATA (desired_locale)
2206 : ""));
2210 /* Set system time locale to match Vsystem_time_locale, if possible. */
2211 void
2212 synchronize_system_time_locale (void)
2214 synchronize_locale (LC_TIME, &Vprevious_system_time_locale,
2215 Vsystem_time_locale);
2218 /* Set system messages locale to match Vsystem_messages_locale, if
2219 possible. */
2220 void
2221 synchronize_system_messages_locale (void)
2223 #ifdef LC_MESSAGES
2224 synchronize_locale (LC_MESSAGES, &Vprevious_system_messages_locale,
2225 Vsystem_messages_locale);
2226 #endif
2228 #endif /* HAVE_SETLOCALE */
2231 Lisp_Object
2232 decode_env_path (const char *evarname, const char *defalt, bool empty)
2234 const char *path, *p;
2235 Lisp_Object lpath, element, tem;
2236 /* Default is to use "." for empty path elements.
2237 But if argument EMPTY is true, use nil instead. */
2238 Lisp_Object empty_element = empty ? Qnil : build_string (".");
2239 #ifdef WINDOWSNT
2240 bool defaulted = 0;
2241 static const char *emacs_dir_env = "%emacs_dir%/";
2242 const size_t emacs_dir_len = strlen (emacs_dir_env);
2243 const char *edir = egetenv ("emacs_dir");
2244 char emacs_dir[MAX_UTF8_PATH];
2246 /* egetenv looks in process-environment, which holds the variables
2247 in their original system-locale encoding. We need emacs_dir to
2248 be in UTF-8. */
2249 if (edir)
2250 filename_from_ansi (edir, emacs_dir);
2251 #endif
2253 /* It's okay to use getenv here, because this function is only used
2254 to initialize variables when Emacs starts up, and isn't called
2255 after that. */
2256 if (evarname != 0)
2257 path = getenv (evarname);
2258 else
2259 path = 0;
2260 if (!path)
2262 path = defalt;
2263 #ifdef WINDOWSNT
2264 defaulted = 1;
2265 #endif
2267 #ifdef DOS_NT
2268 /* Ensure values from the environment use the proper directory separator. */
2269 if (path)
2271 char *path_copy;
2273 #ifdef WINDOWSNT
2274 char *path_utf8, *q, *d;
2275 int cnv_result;
2277 /* Convert each element of PATH to UTF-8. */
2278 p = path_copy = alloca (strlen (path) + 1);
2279 strcpy (path_copy, path);
2280 d = path_utf8 = alloca (4 * strlen (path) + 1);
2281 *d = '\0';
2282 do {
2283 q = _mbschr (p, SEPCHAR);
2284 if (q)
2285 *q = '\0';
2286 cnv_result = filename_from_ansi (p, d);
2287 if (q)
2289 *q++ = SEPCHAR;
2290 p = q;
2291 /* If conversion of this PATH elements fails, make sure
2292 destination pointer will stay put, thus effectively
2293 ignoring the offending element. */
2294 if (cnv_result == 0)
2296 d += strlen (d);
2297 *d++ = SEPCHAR;
2300 else if (cnv_result != 0 && d > path_utf8)
2301 d[-1] = '\0'; /* remove last semi-colon and null-terminate PATH */
2302 } while (q);
2303 path_copy = path_utf8;
2304 #else /* MSDOS */
2305 path_copy = alloca (strlen (path) + 1);
2306 strcpy (path_copy, path);
2307 #endif
2308 dostounix_filename (path_copy);
2309 path = path_copy;
2311 #endif
2312 lpath = Qnil;
2313 while (1)
2315 p = strchr (path, SEPCHAR);
2316 if (!p)
2317 p = path + strlen (path);
2318 element = (p - path ? make_unibyte_string (path, p - path)
2319 : empty_element);
2320 if (! NILP (element))
2322 #ifdef WINDOWSNT
2323 /* Relative file names in the default path are interpreted as
2324 being relative to $emacs_dir. */
2325 if (edir && defaulted
2326 && strncmp (path, emacs_dir_env, emacs_dir_len) == 0)
2327 element = Fexpand_file_name (Fsubstring
2328 (element,
2329 make_number (emacs_dir_len),
2330 Qnil),
2331 build_unibyte_string (emacs_dir));
2332 #endif
2334 /* Add /: to the front of the name
2335 if it would otherwise be treated as magic. */
2336 tem = Ffind_file_name_handler (element, Qt);
2338 /* However, if the handler says "I'm safe",
2339 don't bother adding /:. */
2340 if (SYMBOLP (tem))
2342 Lisp_Object prop;
2343 prop = Fget (tem, intern ("safe-magic"));
2344 if (! NILP (prop))
2345 tem = Qnil;
2348 if (! NILP (tem))
2349 element = concat2 (build_string ("/:"), element);
2350 } /* !NILP (element) */
2352 lpath = Fcons (element, lpath);
2353 if (*p)
2354 path = p + 1;
2355 else
2356 break;
2358 return Fnreverse (lpath);
2361 DEFUN ("daemonp", Fdaemonp, Sdaemonp, 0, 0, 0,
2362 doc: /* Return non-nil if the current emacs process is a daemon.
2363 If the daemon was given a name argument, return that name. */)
2364 (void)
2366 if (IS_DAEMON)
2367 if (daemon_name)
2368 return build_string (daemon_name);
2369 else
2370 return Qt;
2371 else
2372 return Qnil;
2375 DEFUN ("daemon-initialized", Fdaemon_initialized, Sdaemon_initialized, 0, 0, 0,
2376 doc: /* Mark the Emacs daemon as being initialized.
2377 This finishes the daemonization process by doing the other half of detaching
2378 from the parent process and its tty file descriptors. */)
2379 (void)
2381 int nfd;
2382 bool err = 0;
2384 if (!IS_DAEMON)
2385 error ("This function can only be called if emacs is run as a daemon");
2387 if (daemon_pipe[1] < 0)
2388 error ("The daemon has already been initialized");
2390 if (NILP (Vafter_init_time))
2391 error ("This function can only be called after loading the init files");
2393 /* Get rid of stdin, stdout and stderr. */
2394 nfd = emacs_open ("/dev/null", O_RDWR, 0);
2395 err |= nfd < 0;
2396 err |= dup2 (nfd, 0) < 0;
2397 err |= dup2 (nfd, 1) < 0;
2398 err |= dup2 (nfd, 2) < 0;
2399 err |= emacs_close (nfd) != 0;
2401 /* Closing the pipe will notify the parent that it can exit.
2402 FIXME: In case some other process inherited the pipe, closing it here
2403 won't notify the parent because it's still open elsewhere, so we
2404 additionally send a byte, just to make sure the parent really exits.
2405 Instead, we should probably close the pipe in start-process and
2406 call-process to make sure the pipe is never inherited by
2407 subprocesses. */
2408 err |= write (daemon_pipe[1], "\n", 1) < 0;
2409 err |= emacs_close (daemon_pipe[1]) != 0;
2410 /* Set it to an invalid value so we know we've already run this function. */
2411 daemon_pipe[1] = -1;
2413 if (err)
2414 error ("I/O error during daemon initialization");
2415 return Qt;
2418 void
2419 syms_of_emacs (void)
2421 DEFSYM (Qfile_name_handler_alist, "file-name-handler-alist");
2422 DEFSYM (Qrisky_local_variable, "risky-local-variable");
2423 DEFSYM (Qkill_emacs, "kill-emacs");
2424 DEFSYM (Qkill_emacs_hook, "kill-emacs-hook");
2426 #ifndef CANNOT_DUMP
2427 defsubr (&Sdump_emacs);
2428 #endif
2430 defsubr (&Skill_emacs);
2432 defsubr (&Sinvocation_name);
2433 defsubr (&Sinvocation_directory);
2434 defsubr (&Sdaemonp);
2435 defsubr (&Sdaemon_initialized);
2437 DEFVAR_LISP ("command-line-args", Vcommand_line_args,
2438 doc: /* Args passed by shell to Emacs, as a list of strings.
2439 Many arguments are deleted from the list as they are processed. */);
2441 DEFVAR_LISP ("system-type", Vsystem_type,
2442 doc: /* The value is a symbol indicating the type of operating system you are using.
2443 Special values:
2444 `gnu' compiled for a GNU Hurd system.
2445 `gnu/linux' compiled for a GNU/Linux system.
2446 `gnu/kfreebsd' compiled for a GNU system with a FreeBSD kernel.
2447 `darwin' compiled for Darwin (GNU-Darwin, Mac OS X, ...).
2448 `ms-dos' compiled as an MS-DOS application.
2449 `windows-nt' compiled as a native W32 application.
2450 `cygwin' compiled using the Cygwin library.
2451 Anything else (in Emacs 24.1, the possibilities are: aix, berkeley-unix,
2452 hpux, irix, usg-unix-v) indicates some sort of Unix system. */);
2453 Vsystem_type = intern_c_string (SYSTEM_TYPE);
2454 /* See configure.ac (and config.nt) for the possible SYSTEM_TYPEs. */
2456 DEFVAR_LISP ("system-configuration", Vsystem_configuration,
2457 doc: /* Value is string indicating configuration Emacs was built for.
2458 On MS-Windows, the value reflects the OS flavor and version on which
2459 Emacs is running. */);
2460 Vsystem_configuration = build_string (EMACS_CONFIGURATION);
2462 DEFVAR_LISP ("system-configuration-options", Vsystem_configuration_options,
2463 doc: /* String containing the configuration options Emacs was built with. */);
2464 Vsystem_configuration_options = build_string (EMACS_CONFIG_OPTIONS);
2466 DEFVAR_LISP ("system-configuration-features", Vsystem_configuration_features,
2467 doc: /* String listing some of the main features this Emacs was compiled with.
2468 An element of the form \"FOO\" generally means that HAVE_FOO was
2469 defined during the build. */);
2470 Vsystem_configuration_features = build_string (EMACS_CONFIG_FEATURES);
2472 DEFVAR_BOOL ("noninteractive", noninteractive1,
2473 doc: /* Non-nil means Emacs is running without interactive terminal. */);
2475 DEFVAR_LISP ("kill-emacs-hook", Vkill_emacs_hook,
2476 doc: /* Hook run when `kill-emacs' is called.
2477 Since `kill-emacs' may be invoked when the terminal is disconnected (or
2478 in other similar situations), functions placed on this hook should not
2479 expect to be able to interact with the user. To ask for confirmation,
2480 see `kill-emacs-query-functions' instead.
2482 Before Emacs 24.1, the hook was not run in batch mode, i.e., if
2483 `noninteractive' was non-nil. */);
2484 Vkill_emacs_hook = Qnil;
2486 DEFVAR_LISP ("path-separator", Vpath_separator,
2487 doc: /* String containing the character that separates directories in
2488 search paths, such as PATH and other similar environment variables. */);
2490 char c = SEPCHAR;
2491 Vpath_separator = make_string (&c, 1);
2494 DEFVAR_LISP ("invocation-name", Vinvocation_name,
2495 doc: /* The program name that was used to run Emacs.
2496 Any directory names are omitted. */);
2498 DEFVAR_LISP ("invocation-directory", Vinvocation_directory,
2499 doc: /* The directory in which the Emacs executable was found, to run it.
2500 The value is nil if that directory's name is not known. */);
2502 DEFVAR_LISP ("installation-directory", Vinstallation_directory,
2503 doc: /* A directory within which to look for the `lib-src' and `etc' directories.
2504 In an installed Emacs, this is normally nil. It is non-nil if
2505 both `lib-src' (on MS-DOS, `info') and `etc' directories are found
2506 within the variable `invocation-directory' or its parent. For example,
2507 this is the case when running an uninstalled Emacs executable from its
2508 build directory. */);
2509 Vinstallation_directory = Qnil;
2511 DEFVAR_LISP ("system-messages-locale", Vsystem_messages_locale,
2512 doc: /* System locale for messages. */);
2513 Vsystem_messages_locale = Qnil;
2515 DEFVAR_LISP ("previous-system-messages-locale",
2516 Vprevious_system_messages_locale,
2517 doc: /* Most recently used system locale for messages. */);
2518 Vprevious_system_messages_locale = Qnil;
2520 DEFVAR_LISP ("system-time-locale", Vsystem_time_locale,
2521 doc: /* System locale for time. */);
2522 Vsystem_time_locale = Qnil;
2524 DEFVAR_LISP ("previous-system-time-locale", Vprevious_system_time_locale,
2525 doc: /* Most recently used system locale for time. */);
2526 Vprevious_system_time_locale = Qnil;
2528 DEFVAR_LISP ("before-init-time", Vbefore_init_time,
2529 doc: /* Value of `current-time' before Emacs begins initialization. */);
2530 Vbefore_init_time = Qnil;
2532 DEFVAR_LISP ("after-init-time", Vafter_init_time,
2533 doc: /* Value of `current-time' after loading the init files.
2534 This is nil during initialization. */);
2535 Vafter_init_time = Qnil;
2537 DEFVAR_BOOL ("inhibit-x-resources", inhibit_x_resources,
2538 doc: /* If non-nil, X resources, Windows Registry settings, and NS defaults are not used. */);
2539 inhibit_x_resources = 0;
2541 DEFVAR_LISP ("emacs-copyright", Vemacs_copyright,
2542 doc: /* Short copyright string for this version of Emacs. */);
2543 Vemacs_copyright = build_string (emacs_copyright);
2545 DEFVAR_LISP ("emacs-version", Vemacs_version,
2546 doc: /* Version numbers of this version of Emacs. */);
2547 Vemacs_version = build_string (emacs_version);
2549 DEFVAR_LISP ("report-emacs-bug-address", Vreport_emacs_bug_address,
2550 doc: /* Address of mailing list for GNU Emacs bugs. */);
2551 Vreport_emacs_bug_address = build_string (emacs_bugreport);
2553 DEFVAR_LISP ("dynamic-library-alist", Vdynamic_library_alist,
2554 doc: /* Alist of dynamic libraries vs external files implementing them.
2555 Each element is a list (LIBRARY FILE...), where the car is a symbol
2556 representing a supported external library, and the rest are strings giving
2557 alternate filenames for that library.
2559 Emacs tries to load the library from the files in the order they appear on
2560 the list; if none is loaded, the running session of Emacs won't have access
2561 to that library.
2563 Note that image types `pbm' and `xbm' do not need entries in this variable
2564 because they do not depend on external libraries and are always available.
2566 Also note that this is not a generic facility for accessing external
2567 libraries; only those already known by Emacs will be loaded. */);
2568 Vdynamic_library_alist = Qnil;
2569 Fput (intern_c_string ("dynamic-library-alist"), Qrisky_local_variable, Qt);
2571 #ifdef WINDOWSNT
2572 Vlibrary_cache = Qnil;
2573 staticpro (&Vlibrary_cache);
2574 #endif