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