Fix typo.
[emacs.git] / src / emacs.c
blob96ae4001c391edf7ed482df008a99a6a2980418c
1 /* Fully extensible Emacs, running on Unix, intended for GNU.
2 Copyright (C) 1985, 1986, 1987, 1993, 1994, 1995, 1997, 1998, 1999,
3 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008
4 Free Software Foundation, Inc.
6 This file is part of GNU Emacs.
8 GNU Emacs is free software: you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
10 the Free Software Foundation, either version 3 of the License, or
11 (at your option) any later version.
13 GNU Emacs is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 GNU General Public License for more details.
18 You should have received a copy of the GNU General Public License
19 along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */
22 #include <config.h>
23 #include <signal.h>
24 #include <errno.h>
25 #include <stdio.h>
27 #include <sys/types.h>
28 #include <sys/file.h>
30 #ifdef VMS
31 #include <ssdef.h>
32 #endif
34 #ifdef HAVE_UNISTD_H
35 #include <unistd.h>
36 #endif
38 #ifdef BSD_SYSTEM
39 #include <sys/ioctl.h>
40 #endif
42 #ifdef WINDOWSNT
43 #include <fcntl.h>
44 #include <windows.h> /* just for w32.h */
45 #include "w32.h"
46 #include "w32heap.h" /* for prototype of sbrk */
47 #endif
49 #ifdef NS_IMPL_GNUSTEP
50 /* At least under Debian, GSConfig is in a subdirectory. --Stef */
51 #include <GNUstepBase/GSConfig.h>
52 #endif
54 #include "lisp.h"
55 #include "commands.h"
56 #include "intervals.h"
57 #include "buffer.h"
58 #include "window.h"
60 #include "systty.h"
61 #include "blockinput.h"
62 #include "syssignal.h"
63 #include "process.h"
64 #include "frame.h"
65 #include "termhooks.h"
66 #include "keyboard.h"
67 #include "keymap.h"
69 #ifdef HAVE_SETLOCALE
70 #include <locale.h>
71 #endif
73 #ifdef HAVE_SETRLIMIT
74 #include <sys/time.h>
75 #include <sys/resource.h>
76 #endif
78 #ifdef HAVE_PERSONALITY_LINUX32
79 #include <sys/personality.h>
80 #endif
82 #ifndef O_RDWR
83 #define O_RDWR 2
84 #endif
86 #ifdef HAVE_SETPGID
87 #if !defined (USG) || defined (BSD_PGRPS)
88 #undef setpgrp
89 #define setpgrp setpgid
90 #endif
91 #endif
93 extern void malloc_warning P_ ((char *));
94 extern void set_time_zone_rule P_ ((char *));
95 #ifdef HAVE_INDEX
96 extern char *index P_ ((const char *, int));
97 #endif
99 /* Make these values available in GDB, which doesn't see macros. */
101 #ifdef USE_LSB_TAG
102 int gdb_use_lsb = 1;
103 #else
104 int gdb_use_lsb = 0;
105 #endif
106 #ifndef USE_LISP_UNION_TYPE
107 int gdb_use_union = 0;
108 #else
109 int gdb_use_union = 1;
110 #endif
111 EMACS_INT gdb_valbits = VALBITS;
112 EMACS_INT gdb_gctypebits = GCTYPEBITS;
113 #ifdef DATA_SEG_BITS
114 EMACS_INT gdb_data_seg_bits = DATA_SEG_BITS;
115 #else
116 EMACS_INT gdb_data_seg_bits = 0;
117 #endif
118 EMACS_INT PVEC_FLAG = PSEUDOVECTOR_FLAG;
119 EMACS_INT gdb_array_mark_flag = ARRAY_MARK_FLAG;
120 /* GDB might say "No enum type named pvec_type" if we don't have at
121 least one symbol with that type, and then xbacktrace could fail. */
122 enum pvec_type gdb_pvec_type = PVEC_TYPE_MASK;
124 /* Command line args from shell, as list of strings. */
125 Lisp_Object Vcommand_line_args;
127 /* The name under which Emacs was invoked, with any leading directory
128 names discarded. */
129 Lisp_Object Vinvocation_name;
131 /* The directory name from which Emacs was invoked. */
132 Lisp_Object Vinvocation_directory;
134 /* The directory name in which to find subdirs such as lisp and etc.
135 nil means get them only from PATH_LOADSEARCH. */
136 Lisp_Object Vinstallation_directory;
138 /* Hook run by `kill-emacs' before it does really anything. */
139 Lisp_Object Vkill_emacs_hook;
141 /* Empty lisp strings. To avoid having to build any others. */
142 Lisp_Object empty_unibyte_string, empty_multibyte_string;
144 /* Search path separator. */
145 Lisp_Object Vpath_separator;
147 /* Set nonzero after Emacs has started up the first time.
148 Prevents reinitialization of the Lisp world and keymaps
149 on subsequent starts. */
150 int initialized;
152 #ifdef DOUG_LEA_MALLOC
153 /* Preserves a pointer to the memory allocated that copies that
154 static data inside glibc's malloc. */
155 void *malloc_state_ptr;
156 /* From glibc, a routine that returns a copy of the malloc internal state. */
157 extern void *malloc_get_state ();
158 /* From glibc, a routine that overwrites the malloc internal state. */
159 extern int malloc_set_state ();
160 /* Non-zero if the MALLOC_CHECK_ enviroment variable was set while
161 dumping. Used to work around a bug in glibc's malloc. */
162 int malloc_using_checking;
163 #endif
165 /* Variable whose value is symbol giving operating system type. */
166 Lisp_Object Vsystem_type;
168 /* Variable whose value is string giving configuration built for. */
169 Lisp_Object Vsystem_configuration;
171 /* Variable whose value is string giving configuration options,
172 for use when reporting bugs. */
173 Lisp_Object Vsystem_configuration_options;
175 Lisp_Object Qfile_name_handler_alist;
177 /* Current and previous system locales for messages and time. */
178 Lisp_Object Vsystem_messages_locale;
179 Lisp_Object Vprevious_system_messages_locale;
180 Lisp_Object Vsystem_time_locale;
181 Lisp_Object Vprevious_system_time_locale;
183 /* If non-zero, emacs should not attempt to use a window-specific code,
184 but instead should use the virtual terminal under which it was started. */
185 int inhibit_window_system;
187 /* If nonzero, set Emacs to run at this priority. This is also used
188 in child_setup and sys_suspend to make sure subshells run at normal
189 priority; those functions have their own extern declaration. */
190 EMACS_INT emacs_priority;
192 /* If non-zero, a filter or a sentinel is running. Tested to save the match
193 data on the first attempt to change it inside asynchronous code. */
194 int running_asynch_code;
196 #ifdef BSD_PGRPS
197 /* See sysdep.c. */
198 extern int inherited_pgroup;
199 #endif
201 #if defined(HAVE_X_WINDOWS) || defined(HAVE_NS)
202 /* If non-zero, -d was specified, meaning we're using some window system. */
203 int display_arg;
204 #endif
206 /* An address near the bottom of the stack.
207 Tells GC how to save a copy of the stack. */
208 char *stack_bottom;
210 /* The address where the heap starts (from the first sbrk (0) call). */
211 static void *my_heap_start;
213 /* The gap between BSS end and heap start as far as we can tell. */
214 static unsigned long heap_bss_diff;
216 /* If the gap between BSS end and heap start is larger than this we try to
217 work around it, and if that fails, output a warning in dump-emacs. */
218 #define MAX_HEAP_BSS_DIFF (1024*1024)
221 #ifdef HAVE_WINDOW_SYSTEM
222 extern Lisp_Object Vinitial_window_system;
223 #endif /* HAVE_WINDOW_SYSTEM */
225 extern Lisp_Object Vauto_save_list_file_name;
227 extern Lisp_Object Vinhibit_redisplay;
229 /* Nonzero means running Emacs without interactive terminal. */
231 int noninteractive;
233 /* Value of Lisp variable `noninteractive'.
234 Normally same as C variable `noninteractive'
235 but nothing terrible happens if user sets this one. */
237 int noninteractive1;
239 /* Save argv and argc. */
240 char **initial_argv;
241 int initial_argc;
243 static void sort_args ();
244 void syms_of_emacs ();
246 /* MSVC needs each string be shorter than 2048 bytes, so the usage
247 strings below are split to not overflow this limit. */
248 #define USAGE1 "\
249 Usage: %s [OPTION-OR-FILENAME]...\n\
251 Run Emacs, the extensible, customizable, self-documenting real-time\n\
252 display editor. The recommended way to start Emacs for normal editing\n\
253 is with no options at all.\n\
255 Run M-x info RET m emacs RET m emacs invocation RET inside Emacs to\n\
256 read the main documentation for these command-line arguments.\n\
258 Initialization options:\n\
260 --batch do not do interactive display; implies -q\n\
261 --debug-init enable Emacs Lisp debugger for init file\n\
262 --display, -d DISPLAY use X server DISPLAY\n\
263 --multibyte, --no-unibyte inhibit the effect of EMACS_UNIBYTE\n\
264 --no-desktop do not load a saved desktop\n\
265 --no-init-file, -q load neither ~/.emacs nor default.el\n\
266 --no-shared-memory, -nl do not use shared memory\n\
267 --no-site-file do not load site-start.el\n\
268 --no-splash do not display a splash screen on startup\n\
269 --no-window-system, -nw do not communicate with X, ignoring $DISPLAY\n\
270 --quick, -Q equivalent to -q --no-site-file --no-splash\n\
271 --script FILE run FILE as an Emacs Lisp script\n\
272 --terminal, -t DEVICE use DEVICE for terminal I/O\n\
273 --unibyte, --no-multibyte run Emacs in unibyte mode\n\
274 --user, -u USER load ~USER/.emacs instead of your own\n\
275 \n%s"
277 #define USAGE2 "\
278 Action options:\n\
280 FILE visit FILE using find-file\n\
281 +LINE go to line LINE in next FILE\n\
282 +LINE:COLUMN go to line LINE, column COLUMN, in next FILE\n\
283 --directory, -L DIR add DIR to variable load-path\n\
284 --eval EXPR evaluate Emacs Lisp expression EXPR\n\
285 --execute EXPR evaluate Emacs Lisp expression EXPR\n\
286 --file FILE visit FILE using find-file\n\
287 --find-file FILE visit FILE using find-file\n\
288 --funcall, -f FUNC call Emacs Lisp function FUNC with no arguments\n\
289 --insert FILE insert contents of FILE into current buffer\n\
290 --kill exit without asking for confirmation\n\
291 --load, -l FILE load Emacs Lisp FILE using the load function\n\
292 --visit FILE visit FILE using find-file\n\
295 #define USAGE3 "\
296 Display options:\n\
298 --background-color, -bg COLOR window background color\n\
299 --basic-display, -D disable many display features;\n\
300 used for debugging Emacs\n\
301 --border-color, -bd COLOR main border color\n\
302 --border-width, -bw WIDTH width of main border\n\
303 --color, --color=MODE override color mode for character terminals;\n\
304 MODE defaults to `auto', and can also\n\
305 be `never', `auto', `always',\n\
306 or a mode name like `ansi8'\n\
307 --cursor-color, -cr COLOR color of the Emacs cursor indicating point\n\
308 --font, -fn FONT default font; must be fixed-width\n\
309 --foreground-color, -fg COLOR window foreground color\n\
310 --fullheight, -fh make the first frame high as the screen\n\
311 --fullscreen, -fs make first frame fullscreen\n\
312 --fullwidth, -fw make the first frame wide as the screen\n\
313 --geometry, -g GEOMETRY window geometry\n\
314 --no-bitmap-icon, -nbi do not use picture of gnu for Emacs icon\n\
315 --iconic start Emacs in iconified state\n\
316 --internal-border, -ib WIDTH width between text and main border\n\
317 --line-spacing, -lsp PIXELS additional space to put between lines\n\
318 --mouse-color, -ms COLOR mouse cursor color in Emacs window\n\
319 --name NAME title for initial Emacs frame\n\
320 --no-blinking-cursor, -nbc disable blinking cursor\n\
321 --reverse-video, -r, -rv switch foreground and background\n\
322 --title, -T TITLE title for initial Emacs frame\n\
323 --vertical-scroll-bars, -vb enable vertical scroll bars\n\
324 --xrm XRESOURCES set additional X resources\n\
325 --parent-id XID set parent window\n\
326 --help display this help and exit\n\
327 --version output version information and exit\n\
330 #define USAGE4 "\
331 You can generally also specify long option names with a single -; for\n\
332 example, -batch as well as --batch. You can use any unambiguous\n\
333 abbreviation for a --option.\n\
335 Various environment variables and window system resources also affect\n\
336 Emacs' operation. See the main documentation.\n\
338 Report bugs to %s. First, please see the Bugs\n\
339 section of the Emacs manual or the file BUGS.\n"
342 /* Signal code for the fatal signal that was received. */
343 int fatal_error_code;
345 /* Nonzero if handling a fatal error already. */
346 int fatal_error_in_progress;
348 /* If non-null, call this function from fatal_error_signal before
349 committing suicide. */
351 void (*fatal_error_signal_hook) P_ ((void));
353 #ifdef FORWARD_SIGNAL_TO_MAIN_THREAD
354 /* When compiled with GTK and running under Gnome, or Carbon under Mac
355 OS X, multiple threads may be created. Keep track of our main
356 thread to make sure signals are delivered to it (see syssignal.h). */
358 pthread_t main_thread;
359 #endif
362 /* Handle bus errors, invalid instruction, etc. */
363 SIGTYPE
364 fatal_error_signal (sig)
365 int sig;
367 SIGNAL_THREAD_CHECK (sig);
368 fatal_error_code = sig;
369 signal (sig, SIG_DFL);
371 TOTALLY_UNBLOCK_INPUT;
373 /* If fatal error occurs in code below, avoid infinite recursion. */
374 if (! fatal_error_in_progress)
376 fatal_error_in_progress = 1;
378 shut_down_emacs (sig, 0, Qnil);
381 #ifdef VMS
382 LIB$STOP (SS$_ABORT);
383 #else
384 /* Signal the same code; this time it will really be fatal.
385 Remember that since we're in a signal handler, the signal we're
386 going to send is probably blocked, so we have to unblock it if we
387 want to really receive it. */
388 #ifndef MSDOS
389 sigunblock (sigmask (fatal_error_code));
390 #endif
392 if (fatal_error_signal_hook)
393 fatal_error_signal_hook ();
395 kill (getpid (), fatal_error_code);
396 #endif /* not VMS */
399 #ifdef SIGDANGER
401 /* Handler for SIGDANGER. */
402 SIGTYPE
403 memory_warning_signal (sig)
404 int sig;
406 signal (sig, memory_warning_signal);
407 SIGNAL_THREAD_CHECK (sig);
409 malloc_warning ("Operating system warns that virtual memory is running low.\n");
411 /* It might be unsafe to call do_auto_save now. */
412 force_auto_save_soon ();
414 #endif
416 /* We define abort, rather than using it from the library,
417 so that GDB can return from a breakpoint here.
418 MSDOS has its own definition in msdos.c. */
420 #if ! defined (DOS_NT) && ! defined (NO_ABORT)
422 void
423 abort ()
425 kill (getpid (), SIGABRT);
426 /* This shouldn't be executed, but it prevents a warning. */
427 exit (1);
429 #endif
432 /* Code for dealing with Lisp access to the Unix command line. */
434 static void
435 init_cmdargs (argc, argv, skip_args)
436 int argc;
437 char **argv;
438 int skip_args;
440 register int i;
441 Lisp_Object name, dir, tem;
442 int count = SPECPDL_INDEX ();
443 Lisp_Object raw_name;
445 initial_argv = argv;
446 initial_argc = argc;
448 raw_name = build_string (argv[0]);
450 /* Add /: to the front of the name
451 if it would otherwise be treated as magic. */
452 tem = Ffind_file_name_handler (raw_name, Qt);
453 if (! NILP (tem))
454 raw_name = concat2 (build_string ("/:"), raw_name);
456 Vinvocation_name = Ffile_name_nondirectory (raw_name);
457 Vinvocation_directory = Ffile_name_directory (raw_name);
459 /* If we got no directory in argv[0], search PATH to find where
460 Emacs actually came from. */
461 if (NILP (Vinvocation_directory))
463 Lisp_Object found;
464 int yes = openp (Vexec_path, Vinvocation_name,
465 Vexec_suffixes, &found, make_number (X_OK));
466 if (yes == 1)
468 /* Add /: to the front of the name
469 if it would otherwise be treated as magic. */
470 tem = Ffind_file_name_handler (found, Qt);
471 if (! NILP (tem))
472 found = concat2 (build_string ("/:"), found);
473 Vinvocation_directory = Ffile_name_directory (found);
477 if (!NILP (Vinvocation_directory)
478 && NILP (Ffile_name_absolute_p (Vinvocation_directory)))
479 /* Emacs was started with relative path, like ./emacs.
480 Make it absolute. */
481 Vinvocation_directory = Fexpand_file_name (Vinvocation_directory, Qnil);
483 Vinstallation_directory = Qnil;
485 if (!NILP (Vinvocation_directory))
487 dir = Vinvocation_directory;
488 name = Fexpand_file_name (Vinvocation_name, dir);
489 while (1)
491 Lisp_Object tem, lib_src_exists;
492 Lisp_Object etc_exists, info_exists;
494 /* See if dir contains subdirs for use by Emacs.
495 Check for the ones that would exist in a build directory,
496 not including lisp and info. */
497 tem = Fexpand_file_name (build_string ("lib-src"), dir);
498 lib_src_exists = Ffile_exists_p (tem);
500 #ifdef MSDOS
501 /* MSDOS installations frequently remove lib-src, but we still
502 must set installation-directory, or else info won't find
503 its files (it uses the value of installation-directory). */
504 tem = Fexpand_file_name (build_string ("info"), dir);
505 info_exists = Ffile_exists_p (tem);
506 #else
507 info_exists = Qnil;
508 #endif
510 if (!NILP (lib_src_exists) || !NILP (info_exists))
512 tem = Fexpand_file_name (build_string ("etc"), dir);
513 etc_exists = Ffile_exists_p (tem);
514 if (!NILP (etc_exists))
516 Vinstallation_directory
517 = Ffile_name_as_directory (dir);
518 break;
522 /* See if dir's parent contains those subdirs. */
523 tem = Fexpand_file_name (build_string ("../lib-src"), dir);
524 lib_src_exists = Ffile_exists_p (tem);
527 #ifdef MSDOS
528 /* See the MSDOS commentary above. */
529 tem = Fexpand_file_name (build_string ("../info"), dir);
530 info_exists = Ffile_exists_p (tem);
531 #else
532 info_exists = Qnil;
533 #endif
535 if (!NILP (lib_src_exists) || !NILP (info_exists))
537 tem = Fexpand_file_name (build_string ("../etc"), dir);
538 etc_exists = Ffile_exists_p (tem);
539 if (!NILP (etc_exists))
541 tem = Fexpand_file_name (build_string (".."), dir);
542 Vinstallation_directory
543 = Ffile_name_as_directory (tem);
544 break;
548 /* If the Emacs executable is actually a link,
549 next try the dir that the link points into. */
550 tem = Ffile_symlink_p (name);
551 if (!NILP (tem))
553 name = Fexpand_file_name (tem, dir);
554 dir = Ffile_name_directory (name);
556 else
557 break;
561 Vcommand_line_args = Qnil;
563 for (i = argc - 1; i >= 0; i--)
565 if (i == 0 || i > skip_args)
566 /* For the moment, we keep arguments as is in unibyte strings.
567 They are decoded in the function command-line after we know
568 locale-coding-system. */
569 Vcommand_line_args
570 = Fcons (make_unibyte_string (argv[i], strlen (argv[i])),
571 Vcommand_line_args);
574 unbind_to (count, Qnil);
577 DEFUN ("invocation-name", Finvocation_name, Sinvocation_name, 0, 0, 0,
578 doc: /* Return the program name that was used to run Emacs.
579 Any directory names are omitted. */)
582 return Fcopy_sequence (Vinvocation_name);
585 DEFUN ("invocation-directory", Finvocation_directory, Sinvocation_directory,
586 0, 0, 0,
587 doc: /* Return the directory name in which the Emacs executable was located. */)
590 return Fcopy_sequence (Vinvocation_directory);
594 #ifdef VMS
595 #ifdef LINK_CRTL_SHARE
596 #ifdef SHARABLE_LIB_BUG
597 extern noshare char **environ;
598 #endif /* SHARABLE_LIB_BUG */
599 #endif /* LINK_CRTL_SHARE */
600 #endif /* VMS */
602 #ifdef HAVE_TZSET
603 /* A valid but unlikely value for the TZ environment value.
604 It is OK (though a bit slower) if the user actually chooses this value. */
605 static char dump_tz[] = "UtC0";
606 #endif
608 #ifndef ORDINARY_LINK
609 /* We don't include crtbegin.o and crtend.o in the link,
610 so these functions and variables might be missed.
611 Provide dummy definitions to avoid error.
612 (We don't have any real constructors or destructors.) */
613 #ifdef __GNUC__
614 #ifndef GCC_CTORS_IN_LIBC
615 void __do_global_ctors ()
617 void __do_global_ctors_aux ()
619 void __do_global_dtors ()
621 /* GNU/Linux has a bug in its library; avoid an error. */
622 #ifndef GNU_LINUX
623 char * __CTOR_LIST__[2] = { (char *) (-1), 0 };
624 #endif
625 char * __DTOR_LIST__[2] = { (char *) (-1), 0 };
626 #endif /* GCC_CTORS_IN_LIBC */
627 void __main ()
629 #endif /* __GNUC__ */
630 #endif /* ORDINARY_LINK */
632 /* Test whether the next argument in ARGV matches SSTR or a prefix of
633 LSTR (at least MINLEN characters). If so, then if VALPTR is non-null
634 (the argument is supposed to have a value) store in *VALPTR either
635 the next argument or the portion of this one after the equal sign.
636 ARGV is read starting at position *SKIPPTR; this index is advanced
637 by the number of arguments used.
639 Too bad we can't just use getopt for all of this, but we don't have
640 enough information to do it right. */
642 static int
643 argmatch (argv, argc, sstr, lstr, minlen, valptr, skipptr)
644 char **argv;
645 int argc;
646 char *sstr;
647 char *lstr;
648 int minlen;
649 char **valptr;
650 int *skipptr;
652 char *p = NULL;
653 int arglen;
654 char *arg;
656 /* Don't access argv[argc]; give up in advance. */
657 if (argc <= *skipptr + 1)
658 return 0;
660 arg = argv[*skipptr+1];
661 if (arg == NULL)
662 return 0;
663 if (strcmp (arg, sstr) == 0)
665 if (valptr != NULL)
667 *valptr = argv[*skipptr+2];
668 *skipptr += 2;
670 else
671 *skipptr += 1;
672 return 1;
674 arglen = (valptr != NULL && (p = index (arg, '=')) != NULL
675 ? p - arg : strlen (arg));
676 if (lstr == 0 || arglen < minlen || strncmp (arg, lstr, arglen) != 0)
677 return 0;
678 else if (valptr == NULL)
680 *skipptr += 1;
681 return 1;
683 else if (p != NULL)
685 *valptr = p+1;
686 *skipptr += 1;
687 return 1;
689 else if (argv[*skipptr+2] != NULL)
691 *valptr = argv[*skipptr+2];
692 *skipptr += 2;
693 return 1;
695 else
697 return 0;
701 #ifdef DOUG_LEA_MALLOC
703 /* malloc can be invoked even before main (e.g. by the dynamic
704 linker), so the dumped malloc state must be restored as early as
705 possible using this special hook. */
707 static void
708 malloc_initialize_hook ()
710 #ifndef USE_CRT_DLL
711 extern char **environ;
712 #endif
714 if (initialized)
716 if (!malloc_using_checking)
717 /* Work around a bug in glibc's malloc. MALLOC_CHECK_ must be
718 ignored if the heap to be restored was constructed without
719 malloc checking. Can't use unsetenv, since that calls malloc. */
721 char **p;
723 for (p = environ; p && *p; p++)
724 if (strncmp (*p, "MALLOC_CHECK_=", 14) == 0)
727 *p = p[1];
728 while (*++p);
729 break;
733 malloc_set_state (malloc_state_ptr);
734 #ifndef XMALLOC_OVERRUN_CHECK
735 free (malloc_state_ptr);
736 #endif
738 else
740 if (my_heap_start == 0)
741 my_heap_start = sbrk (0);
742 malloc_using_checking = getenv ("MALLOC_CHECK_") != NULL;
746 void (*__malloc_initialize_hook) () = malloc_initialize_hook;
748 #endif /* DOUG_LEA_MALLOC */
751 #define REPORT_EMACS_BUG_ADDRESS "bug-gnu-emacs@gnu.org"
752 #define REPORT_EMACS_BUG_PRETEST_ADDRESS "emacs-pretest-bug@gnu.org"
754 /* This function is used to determine an address to which bug report should
755 be sent. */
757 char *
758 bug_reporting_address ()
760 int count = 0;
761 Lisp_Object temp;
762 char *string;
764 temp = Fsymbol_value (intern ("emacs-version"));
766 /* When `emacs-version' is invalid, use normal address. */
767 if (!STRINGP(temp))
768 return REPORT_EMACS_BUG_ADDRESS;
770 string = SDATA (temp);
772 /* Count dots in `emacs-version'. */
773 while (*string)
775 if (*string == '.')
776 count++;
777 string++;
780 /* When `emacs-version' has at least three dots, it is development or
781 pretest version of Emacs. */
782 return count >= 3 ? REPORT_EMACS_BUG_PRETEST_ADDRESS : REPORT_EMACS_BUG_ADDRESS;
786 /* ARGSUSED */
788 main (argc, argv
789 #ifdef VMS
790 , envp
791 #endif
793 int argc;
794 char **argv;
795 #ifdef VMS
796 char **envp;
797 #endif
799 #if GC_MARK_STACK
800 Lisp_Object dummy;
801 #endif
802 char stack_bottom_variable;
803 int do_initial_setlocale;
804 int skip_args = 0;
805 #ifndef USE_CRT_DLL
806 extern int errno;
807 #endif
808 #ifdef HAVE_SETRLIMIT
809 struct rlimit rlim;
810 #endif
811 int no_loadup = 0;
812 char *junk = 0;
814 #if GC_MARK_STACK
815 extern Lisp_Object *stack_base;
816 stack_base = &dummy;
817 #endif
819 if (!initialized)
821 extern char my_endbss[];
822 extern char *my_endbss_static;
824 if (my_heap_start == 0)
825 my_heap_start = sbrk (0);
827 heap_bss_diff = (char *)my_heap_start - max (my_endbss, my_endbss_static);
830 #ifdef LINUX_SBRK_BUG
831 /* This is only used GNU/LINUX running on alpha when using libc5 */
832 __sbrk (1);
833 #endif
835 #ifdef RUN_TIME_REMAP
836 if (initialized)
837 run_time_remap (argv[0]);
838 #endif
840 #if defined (MAC_OSX) || defined (NS_IMPL_COCOA)
841 if (!initialized)
842 unexec_init_emacs_zone ();
843 #endif
845 sort_args (argc, argv);
846 argc = 0;
847 while (argv[argc]) argc++;
849 if (argmatch (argv, argc, "-version", "--version", 3, NULL, &skip_args)
850 /* We don't know the version number unless this is a dumped Emacs.
851 So ignore --version otherwise. */
852 && initialized)
854 Lisp_Object tem, tem2;
855 tem = Fsymbol_value (intern ("emacs-version"));
856 tem2 = Fsymbol_value (intern ("emacs-copyright"));
857 if (!STRINGP (tem))
859 fprintf (stderr, "Invalid value of `emacs-version'\n");
860 exit (1);
862 if (!STRINGP (tem2))
864 fprintf (stderr, "Invalid value of `emacs-copyright'\n");
865 exit (1);
867 else
869 printf ("GNU Emacs %s\n", SDATA (tem));
870 printf ("%s\n", SDATA(tem2));
871 printf ("GNU Emacs comes with ABSOLUTELY NO WARRANTY.\n");
872 printf ("You may redistribute copies of Emacs\n");
873 printf ("under the terms of the GNU General Public License.\n");
874 printf ("For more information about these matters, ");
875 printf ("see the file named COPYING.\n");
876 exit (0);
880 #ifdef HAVE_PERSONALITY_LINUX32
881 /* See if there is a gap between the end of BSS and the heap.
882 In that case, set personality and exec ourself again. */
883 if (!initialized
884 && (strcmp (argv[argc-1], "dump") == 0
885 || strcmp (argv[argc-1], "bootstrap") == 0)
886 && heap_bss_diff > MAX_HEAP_BSS_DIFF)
888 if (! getenv ("EMACS_HEAP_EXEC"))
890 /* Set this so we only do this once. */
891 putenv("EMACS_HEAP_EXEC=true");
893 /* A flag to turn off address randomization which is introduced
894 in linux kernel shipped with fedora core 4 */
895 #define ADD_NO_RANDOMIZE 0x0040000
896 personality (PER_LINUX32 | ADD_NO_RANDOMIZE);
897 #undef ADD_NO_RANDOMIZE
899 execvp (argv[0], argv);
901 /* If the exec fails, try to dump anyway. */
902 perror ("execvp");
905 #endif /* HAVE_PERSONALITY_LINUX32 */
908 /* Map in shared memory, if we are using that. */
909 #ifdef HAVE_SHM
910 if (argmatch (argv, argc, "-nl", "--no-shared-memory", 6, NULL, &skip_args))
912 map_in_data (0);
913 /* The shared memory was just restored, which clobbered this. */
914 skip_args = 1;
916 else
918 map_in_data (1);
919 /* The shared memory was just restored, which clobbered this. */
920 skip_args = 0;
922 #endif
924 #ifdef MAC_OSX
925 /* Skip process serial number passed in the form -psn_x_y as
926 command-line argument. The WindowServer adds this option when
927 Emacs is invoked from the Finder or by the `open' command. In
928 these cases, the working directory becomes `/', so we change it
929 to the user's home directory. */
930 if (argc > skip_args + 1 && strncmp (argv[skip_args+1], "-psn_", 5) == 0)
932 chdir (getenv ("HOME"));
933 skip_args++;
935 #endif /* MAC_OSX */
937 #ifdef VMS
938 /* If -map specified, map the data file in. */
940 char *file;
941 if (argmatch (argv, argc, "-map", "--map-data", 3, &file, &skip_args))
942 mapin_data (file);
945 #ifdef LINK_CRTL_SHARE
946 #ifdef SHARABLE_LIB_BUG
947 /* Bletcherous shared libraries! */
948 if (!stdin)
949 stdin = fdopen (0, "r");
950 if (!stdout)
951 stdout = fdopen (1, "w");
952 if (!stderr)
953 stderr = fdopen (2, "w");
954 if (!environ)
955 environ = envp;
956 #endif /* SHARABLE_LIB_BUG */
957 #endif /* LINK_CRTL_SHARE */
958 #endif /* VMS */
960 #if defined (HAVE_SETRLIMIT) && defined (RLIMIT_STACK)
961 /* Extend the stack space available.
962 Don't do that if dumping, since some systems (e.g. DJGPP)
963 might define a smaller stack limit at that time. */
964 if (1
965 #ifndef CANNOT_DUMP
966 && (!noninteractive || initialized)
967 #endif
968 && !getrlimit (RLIMIT_STACK, &rlim))
970 long newlim;
971 extern size_t re_max_failures;
972 /* Approximate the amount regex.c needs per unit of re_max_failures. */
973 int ratio = 20 * sizeof (char *);
974 /* Then add 33% to cover the size of the smaller stacks that regex.c
975 successively allocates and discards, on its way to the maximum. */
976 ratio += ratio / 3;
977 /* Add in some extra to cover
978 what we're likely to use for other reasons. */
979 newlim = re_max_failures * ratio + 200000;
980 #ifdef __NetBSD__
981 /* NetBSD (at least NetBSD 1.2G and former) has a bug in its
982 stack allocation routine for new process that the allocation
983 fails if stack limit is not on page boundary. So, round up the
984 new limit to page boundary. */
985 newlim = (newlim + getpagesize () - 1) / getpagesize () * getpagesize();
986 #endif
987 if (newlim > rlim.rlim_max)
989 newlim = rlim.rlim_max;
990 /* Don't let regex.c overflow the stack we have. */
991 re_max_failures = (newlim - 200000) / ratio;
993 if (rlim.rlim_cur < newlim)
994 rlim.rlim_cur = newlim;
996 setrlimit (RLIMIT_STACK, &rlim);
998 #endif /* HAVE_SETRLIMIT and RLIMIT_STACK */
1000 /* Record (approximately) where the stack begins. */
1001 stack_bottom = &stack_bottom_variable;
1003 clearerr (stdin);
1005 #ifndef SYSTEM_MALLOC
1006 /* Arrange to get warning messages as memory fills up. */
1007 memory_warnings (0, malloc_warning);
1009 /* Call malloc at least once, to run the initial __malloc_hook.
1010 Also call realloc and free for consistency. */
1011 free (realloc (malloc (4), 4));
1013 # ifndef SYNC_INPUT
1014 /* Arrange to disable interrupt input inside malloc etc. */
1015 uninterrupt_malloc ();
1016 # endif /* not SYNC_INPUT */
1017 #endif /* not SYSTEM_MALLOC */
1019 #ifdef FORWARD_SIGNAL_TO_MAIN_THREAD
1020 main_thread = pthread_self ();
1021 #endif /* FORWARD_SIGNAL_TO_MAIN_THREAD */
1023 #if defined (MSDOS) || defined (WINDOWSNT)
1024 /* We do all file input/output as binary files. When we need to translate
1025 newlines, we do that manually. */
1026 _fmode = O_BINARY;
1027 #endif /* MSDOS || WINDOWSNT */
1029 #ifdef MSDOS
1030 #if __DJGPP__ >= 2
1031 if (!isatty (fileno (stdin)))
1032 setmode (fileno (stdin), O_BINARY);
1033 if (!isatty (fileno (stdout)))
1035 fflush (stdout);
1036 setmode (fileno (stdout), O_BINARY);
1038 #else /* not __DJGPP__ >= 2 */
1039 (stdin)->_flag &= ~_IOTEXT;
1040 (stdout)->_flag &= ~_IOTEXT;
1041 (stderr)->_flag &= ~_IOTEXT;
1042 #endif /* not __DJGPP__ >= 2 */
1043 #endif /* MSDOS */
1045 #ifdef SET_EMACS_PRIORITY
1046 if (emacs_priority)
1047 nice (emacs_priority);
1048 setuid (getuid ());
1049 #endif /* SET_EMACS_PRIORITY */
1051 /* Skip initial setlocale if LC_ALL is "C", as it's not needed in that case.
1052 The build procedure uses this while dumping, to ensure that the
1053 dumped Emacs does not have its system locale tables initialized,
1054 as that might cause screwups when the dumped Emacs starts up. */
1056 char *lc_all = getenv ("LC_ALL");
1057 do_initial_setlocale = ! lc_all || strcmp (lc_all, "C");
1060 /* Set locale now, so that initial error messages are localized properly.
1061 fixup_locale must wait until later, since it builds strings. */
1062 if (do_initial_setlocale)
1063 setlocale (LC_ALL, "");
1065 inhibit_window_system = 0;
1067 /* Handle the -t switch, which specifies filename to use as terminal. */
1068 while (1)
1070 char *term;
1071 if (argmatch (argv, argc, "-t", "--terminal", 4, &term, &skip_args))
1073 int result;
1074 emacs_close (0);
1075 emacs_close (1);
1076 result = emacs_open (term, O_RDWR, 0);
1077 if (result < 0)
1079 char *errstring = strerror (errno);
1080 fprintf (stderr, "%s: %s: %s\n", argv[0], term, errstring);
1081 exit (1);
1083 dup (0);
1084 if (! isatty (0))
1086 fprintf (stderr, "%s: %s: not a tty\n", argv[0], term);
1087 exit (1);
1089 fprintf (stderr, "Using %s\n", term);
1090 #ifdef HAVE_WINDOW_SYSTEM
1091 inhibit_window_system = 1; /* -t => -nw */
1092 #endif
1094 else
1095 break;
1098 /* Command line option --no-windows is deprecated and thus not mentioned
1099 in the manual and usage informations. */
1100 if (argmatch (argv, argc, "-nw", "--no-window-system", 6, NULL, &skip_args)
1101 || argmatch (argv, argc, "-nw", "--no-windows", 6, NULL, &skip_args))
1102 inhibit_window_system = 1;
1104 /* Handle the -batch switch, which means don't do interactive display. */
1105 noninteractive = 0;
1106 if (argmatch (argv, argc, "-batch", "--batch", 5, NULL, &skip_args))
1108 noninteractive = 1;
1109 Vundo_outer_limit = Qnil;
1111 if (argmatch (argv, argc, "-script", "--script", 3, &junk, &skip_args))
1113 noninteractive = 1; /* Set batch mode. */
1114 /* Convert --script to -scriptload, un-skip it, and sort again
1115 so that it will be handled in proper sequence. */
1116 /* FIXME broken for --script=FILE - is that supposed to work? */
1117 argv[skip_args - 1] = "-scriptload";
1118 skip_args -= 2;
1119 sort_args (argc, argv);
1122 /* Handle the --help option, which gives a usage message. */
1123 if (argmatch (argv, argc, "-help", "--help", 3, NULL, &skip_args))
1125 printf (USAGE1, argv[0], USAGE2);
1126 printf (USAGE3);
1127 printf (USAGE4, bug_reporting_address ());
1128 exit (0);
1131 if (! noninteractive)
1133 #ifdef BSD_PGRPS
1134 if (initialized)
1136 inherited_pgroup = EMACS_GETPGRP (0);
1137 setpgrp (0, getpid ());
1139 #else
1140 #if defined (USG5) && defined (INTERRUPT_INPUT)
1141 setpgrp ();
1142 #endif
1143 #endif
1144 #if defined (HAVE_GTK_AND_PTHREAD) && !defined (SYSTEM_MALLOC) && !defined (DOUG_LEA_MALLOC)
1146 extern void malloc_enable_thread P_ ((void));
1148 malloc_enable_thread ();
1150 #endif
1153 init_signals ();
1155 /* Don't catch SIGHUP if dumping. */
1156 if (1
1157 #ifndef CANNOT_DUMP
1158 && initialized
1159 #endif
1162 sigblock (sigmask (SIGHUP));
1163 /* In --batch mode, don't catch SIGHUP if already ignored.
1164 That makes nohup work. */
1165 if (! noninteractive
1166 || signal (SIGHUP, SIG_IGN) != SIG_IGN)
1167 signal (SIGHUP, fatal_error_signal);
1168 sigunblock (sigmask (SIGHUP));
1171 if (
1172 #ifndef CANNOT_DUMP
1173 ! noninteractive || initialized
1174 #else
1176 #endif
1179 /* Don't catch these signals in batch mode if dumping.
1180 On some machines, this sets static data that would make
1181 signal fail to work right when the dumped Emacs is run. */
1182 signal (SIGQUIT, fatal_error_signal);
1183 signal (SIGILL, fatal_error_signal);
1184 signal (SIGTRAP, fatal_error_signal);
1185 #ifdef SIGUSR1
1186 add_user_signal (SIGUSR1, "sigusr1");
1187 #endif
1188 #ifdef SIGUSR2
1189 add_user_signal (SIGUSR2, "sigusr2");
1190 #endif
1191 #ifdef SIGABRT
1192 signal (SIGABRT, fatal_error_signal);
1193 #endif
1194 #ifdef SIGHWE
1195 signal (SIGHWE, fatal_error_signal);
1196 #endif
1197 #ifdef SIGPRE
1198 signal (SIGPRE, fatal_error_signal);
1199 #endif
1200 #ifdef SIGORE
1201 signal (SIGORE, fatal_error_signal);
1202 #endif
1203 #ifdef SIGUME
1204 signal (SIGUME, fatal_error_signal);
1205 #endif
1206 #ifdef SIGDLK
1207 signal (SIGDLK, fatal_error_signal);
1208 #endif
1209 #ifdef SIGCPULIM
1210 signal (SIGCPULIM, fatal_error_signal);
1211 #endif
1212 #ifdef SIGIOT
1213 /* This is missing on some systems - OS/2, for example. */
1214 signal (SIGIOT, fatal_error_signal);
1215 #endif
1216 #ifdef SIGEMT
1217 signal (SIGEMT, fatal_error_signal);
1218 #endif
1219 signal (SIGFPE, fatal_error_signal);
1220 #ifdef SIGBUS
1221 signal (SIGBUS, fatal_error_signal);
1222 #endif
1223 signal (SIGSEGV, fatal_error_signal);
1224 #ifdef SIGSYS
1225 signal (SIGSYS, fatal_error_signal);
1226 #endif
1227 signal (SIGTERM, fatal_error_signal);
1228 #ifdef SIGXCPU
1229 signal (SIGXCPU, fatal_error_signal);
1230 #endif
1231 #ifdef SIGXFSZ
1232 signal (SIGXFSZ, fatal_error_signal);
1233 #endif /* SIGXFSZ */
1235 #ifdef SIGDANGER
1236 /* This just means available memory is getting low. */
1237 signal (SIGDANGER, memory_warning_signal);
1238 #endif
1240 #ifdef AIX
1241 /* 20 is SIGCHLD, 21 is SIGTTIN, 22 is SIGTTOU. */
1242 signal (SIGXCPU, fatal_error_signal);
1243 #ifndef _I386
1244 signal (SIGIOINT, fatal_error_signal);
1245 #endif
1246 signal (SIGGRANT, fatal_error_signal);
1247 signal (SIGRETRACT, fatal_error_signal);
1248 signal (SIGSOUND, fatal_error_signal);
1249 signal (SIGMSG, fatal_error_signal);
1250 #endif /* AIX */
1253 noninteractive1 = noninteractive;
1255 /* Perform basic initializations (not merely interning symbols). */
1257 if (!initialized)
1259 init_alloc_once ();
1260 init_obarray ();
1261 init_eval_once ();
1262 init_character_once ();
1263 init_charset_once ();
1264 init_coding_once ();
1265 init_syntax_once (); /* Create standard syntax table. */
1266 init_category_once (); /* Create standard category table. */
1267 /* Must be done before init_buffer. */
1268 init_casetab_once ();
1269 init_buffer_once (); /* Create buffer table and some buffers. */
1270 init_minibuf_once (); /* Create list of minibuffers. */
1271 /* Must precede init_window_once. */
1273 /* Call syms_of_xfaces before init_window_once because that
1274 function creates Vterminal_frame. Termcap frames now use
1275 faces, and the face implementation uses some symbols as
1276 face names. */
1277 syms_of_xfaces ();
1278 /* XXX syms_of_keyboard uses some symbols in keymap.c. It would
1279 be better to arrange things not to have this dependency. */
1280 syms_of_keymap ();
1281 /* Call syms_of_keyboard before init_window_once because
1282 keyboard sets up symbols that include some face names that
1283 the X support will want to use. This can happen when
1284 CANNOT_DUMP is defined. */
1285 syms_of_keyboard ();
1287 #ifdef MAC_OS8
1288 /* init_window_once calls make_terminal_frame which on Mac OS
1289 creates a full-fledge output_mac type frame. This does not
1290 work correctly before syms_of_textprop, syms_of_macfns,
1291 syms_of_ccl, syms_of_fontset, syms_of_xterm, syms_of_search,
1292 syms_of_frame, mac_term_init, and init_keyboard have already
1293 been called. */
1294 syms_of_textprop ();
1295 syms_of_macfns ();
1296 syms_of_ccl ();
1297 syms_of_fontset ();
1298 syms_of_macterm ();
1299 syms_of_macmenu ();
1300 syms_of_macselect ();
1301 syms_of_search ();
1302 syms_of_frame ();
1304 init_atimer ();
1305 mac_term_init (build_string ("Mac"), NULL, NULL);
1306 init_keyboard ();
1307 #endif
1308 /* Called before syms_of_fileio, because it sets up Qerror_condition. */
1309 syms_of_data ();
1310 syms_of_fileio ();
1311 /* Before syms_of_coding to initialize Vgc_cons_threshold. */
1312 syms_of_alloc ();
1313 /* Before syms_of_coding because it initializes Qcharsetp. */
1314 syms_of_charset ();
1315 /* Before init_window_once, because it sets up the
1316 Vcoding_system_hash_table. */
1317 syms_of_coding (); /* This should be after syms_of_fileio. */
1319 init_window_once (); /* Init the window system. */
1320 init_fileio_once (); /* Must precede any path manipulation. */
1321 #ifdef HAVE_WINDOW_SYSTEM
1322 init_fringe_once (); /* Swap bitmaps if necessary. */
1323 #endif /* HAVE_WINDOW_SYSTEM */
1326 init_alloc ();
1328 if (do_initial_setlocale)
1330 fixup_locale ();
1331 Vsystem_messages_locale = Vprevious_system_messages_locale;
1332 Vsystem_time_locale = Vprevious_system_time_locale;
1335 init_eval ();
1336 init_data ();
1337 #ifdef CLASH_DETECTION
1338 init_filelock ();
1339 #endif
1340 init_atimer ();
1341 running_asynch_code = 0;
1343 /* Handle --unibyte and the EMACS_UNIBYTE envvar,
1344 but not while dumping. */
1345 if (1)
1347 int inhibit_unibyte = 0;
1349 /* --multibyte overrides EMACS_UNIBYTE. */
1350 if (argmatch (argv, argc, "-no-unibyte", "--no-unibyte", 4, NULL, &skip_args)
1351 || argmatch (argv, argc, "-multibyte", "--multibyte", 4, NULL, &skip_args)
1352 /* Ignore EMACS_UNIBYTE before dumping. */
1353 || (!initialized && noninteractive))
1354 inhibit_unibyte = 1;
1356 /* --unibyte requests that we set up to do everything with single-byte
1357 buffers and strings. We need to handle this before calling
1358 init_lread, init_editfns and other places that generate Lisp strings
1359 from text in the environment. */
1360 /* Actually this shouldn't be needed as of 20.4 in a generally
1361 unibyte environment. As handa says, environment values
1362 aren't now decoded; also existing buffers are now made
1363 unibyte during startup if .emacs sets unibyte. Tested with
1364 8-bit data in environment variables and /etc/passwd, setting
1365 unibyte and Latin-1 in .emacs. -- Dave Love */
1366 if (argmatch (argv, argc, "-unibyte", "--unibyte", 4, NULL, &skip_args)
1367 || argmatch (argv, argc, "-no-multibyte", "--no-multibyte", 4, NULL, &skip_args)
1368 || (getenv ("EMACS_UNIBYTE") && !inhibit_unibyte))
1370 Lisp_Object old_log_max;
1371 Lisp_Object symbol, tail;
1373 symbol = intern ("default-enable-multibyte-characters");
1374 Fset (symbol, Qnil);
1376 if (initialized)
1378 /* Erase pre-dump messages in *Messages* now so no abort. */
1379 old_log_max = Vmessage_log_max;
1380 XSETFASTINT (Vmessage_log_max, 0);
1381 message_dolog ("", 0, 1, 0);
1382 Vmessage_log_max = old_log_max;
1385 for (tail = Vbuffer_alist; CONSP (tail);
1386 tail = XCDR (tail))
1388 Lisp_Object buffer;
1390 buffer = Fcdr (XCAR (tail));
1391 /* Make a multibyte buffer unibyte. */
1392 if (BUF_Z_BYTE (XBUFFER (buffer)) > BUF_Z (XBUFFER (buffer)))
1394 struct buffer *current = current_buffer;
1396 set_buffer_temp (XBUFFER (buffer));
1397 Fset_buffer_multibyte (Qnil);
1398 set_buffer_temp (current);
1404 no_loadup
1405 = argmatch (argv, argc, "-nl", "--no-loadup", 6, NULL, &skip_args);
1407 #ifdef HAVE_NS
1408 ns_alloc_autorelease_pool();
1409 if (!noninteractive)
1411 char *tmp;
1412 display_arg = 4;
1413 #ifdef NS_IMPL_COCOA
1414 if (skip_args < argc)
1416 if (!strncmp(argv[skip_args], "-psn", 4))
1418 skip_args += 1;
1420 else
1422 if (skip_args+1 < argc && !strncmp(argv[skip_args+1], "-psn", 4))
1423 skip_args += 2;
1426 #endif
1427 /* This used for remote operation.. not fully implemented yet. */
1428 if (argmatch (argv, argc, "-_NSMachLaunch", 0, 3, &tmp, &skip_args))
1429 display_arg = 4;
1430 else if (argmatch (argv, argc, "-MachLaunch", 0, 3, &tmp, &skip_args))
1431 display_arg = 4;
1432 else if (argmatch (argv, argc, "-macosx", 0, 2, NULL, &skip_args))
1433 display_arg = 4;
1434 else if (argmatch (argv, argc, "-NSHost", 0, 3, &tmp, &skip_args))
1435 display_arg = 4;
1437 #endif /* HAVE_NS */
1439 #ifdef HAVE_X_WINDOWS
1440 /* Stupid kludge to catch command-line display spec. We can't
1441 handle this argument entirely in window system dependent code
1442 because we don't even know which window system dependent code
1443 to run until we've recognized this argument. */
1445 char *displayname = 0;
1446 int count_before = skip_args;
1448 /* Skip any number of -d options, but only use the last one. */
1449 while (1)
1451 int count_before_this = skip_args;
1453 if (argmatch (argv, argc, "-d", "--display", 3, &displayname, &skip_args))
1454 display_arg = 1;
1455 else if (argmatch (argv, argc, "-display", 0, 3, &displayname, &skip_args))
1456 display_arg = 1;
1457 else
1458 break;
1460 count_before = count_before_this;
1463 /* If we have the form --display=NAME,
1464 convert it into -d name.
1465 This requires inserting a new element into argv. */
1466 if (displayname != 0 && skip_args - count_before == 1)
1468 char **new = (char **) xmalloc (sizeof (char *) * (argc + 2));
1469 int j;
1471 for (j = 0; j < count_before + 1; j++)
1472 new[j] = argv[j];
1473 new[count_before + 1] = "-d";
1474 new[count_before + 2] = displayname;
1475 for (j = count_before + 2; j <argc; j++)
1476 new[j + 1] = argv[j];
1477 argv = new;
1478 argc++;
1480 /* Change --display to -d, when its arg is separate. */
1481 else if (displayname != 0 && skip_args > count_before
1482 && argv[count_before + 1][1] == '-')
1483 argv[count_before + 1] = "-d";
1485 /* Don't actually discard this arg. */
1486 skip_args = count_before;
1488 #endif
1490 /* argmatch must not be used after here,
1491 except when bulding temacs
1492 because the -d argument has not been skipped in skip_args. */
1494 #ifdef MSDOS
1495 /* Call early 'cause init_environment needs it. */
1496 init_dosfns ();
1497 /* Set defaults for several environment variables. */
1498 if (initialized)
1499 init_environment (argc, argv, skip_args);
1500 else
1501 tzset ();
1502 #endif /* MSDOS */
1504 #ifdef WINDOWSNT
1505 globals_of_w32 ();
1506 /* Initialize environment from registry settings. */
1507 init_environment (argv);
1508 init_ntproc (); /* must precede init_editfns. */
1509 #endif
1511 #if defined (MAC_OSX) && defined (HAVE_CARBON)
1512 if (initialized)
1513 init_mac_osx_environment ();
1514 #endif
1516 #ifdef HAVE_NS
1517 #ifndef CANNOT_DUMP
1518 if (initialized)
1519 #endif
1520 ns_init_paths ();
1521 #endif
1523 /* egetenv is a pretty low-level facility, which may get called in
1524 many circumstances; it seems flimsy to put off initializing it
1525 until calling init_callproc. */
1526 set_initial_environment ();
1527 /* AIX crashes are reported in system versions 3.2.3 and 3.2.4
1528 if this is not done. Do it after set_global_environment so that we
1529 don't pollute Vglobal_environment. */
1530 /* Setting LANG here will defeat the startup locale processing... */
1531 #ifdef AIX
1532 putenv ("LANG=C");
1533 #endif
1535 init_buffer (); /* Init default directory of main buffer. */
1537 init_callproc_1 (); /* Must precede init_cmdargs and init_sys_modes. */
1538 init_cmdargs (argc, argv, skip_args); /* Must precede init_lread. */
1540 if (initialized)
1542 /* Erase any pre-dump messages in the message log, to avoid confusion. */
1543 Lisp_Object old_log_max;
1544 old_log_max = Vmessage_log_max;
1545 XSETFASTINT (Vmessage_log_max, 0);
1546 message_dolog ("", 0, 1, 0);
1547 Vmessage_log_max = old_log_max;
1550 init_callproc (); /* Must follow init_cmdargs but not init_sys_modes. */
1551 init_lread ();
1553 /* Intern the names of all standard functions and variables;
1554 define standard keys. */
1556 if (!initialized)
1558 /* The basic levels of Lisp must come first. */
1559 /* And data must come first of all
1560 for the sake of symbols like error-message. */
1561 /* Called before init_window_once for Mac OS Classic. */
1562 syms_of_data ();
1563 syms_of_chartab ();
1564 syms_of_lread ();
1565 syms_of_print ();
1566 syms_of_eval ();
1567 syms_of_fns ();
1568 syms_of_floatfns ();
1570 syms_of_buffer ();
1571 syms_of_bytecode ();
1572 syms_of_callint ();
1573 syms_of_casefiddle ();
1574 syms_of_casetab ();
1575 syms_of_callproc ();
1576 syms_of_category ();
1577 syms_of_ccl ();
1578 syms_of_character ();
1579 syms_of_cmds ();
1580 #ifndef NO_DIR_LIBRARY
1581 syms_of_dired ();
1582 #endif /* not NO_DIR_LIBRARY */
1583 syms_of_display ();
1584 syms_of_doc ();
1585 syms_of_editfns ();
1586 syms_of_emacs ();
1587 #ifdef CLASH_DETECTION
1588 syms_of_filelock ();
1589 #endif /* CLASH_DETECTION */
1590 syms_of_indent ();
1591 syms_of_insdel ();
1592 /* syms_of_keymap (); */
1593 syms_of_macros ();
1594 syms_of_marker ();
1595 syms_of_minibuf ();
1596 syms_of_process ();
1597 syms_of_search ();
1598 syms_of_frame ();
1599 syms_of_syntax ();
1600 syms_of_terminal ();
1601 syms_of_term ();
1602 syms_of_undo ();
1603 #ifdef HAVE_SOUND
1604 syms_of_sound ();
1605 #endif
1606 syms_of_textprop ();
1607 syms_of_composite ();
1608 #ifdef VMS
1609 syms_of_vmsproc ();
1610 #endif /* VMS */
1611 #ifdef WINDOWSNT
1612 syms_of_ntproc ();
1613 #endif /* WINDOWSNT */
1614 syms_of_window ();
1615 syms_of_xdisp ();
1616 syms_of_font ();
1617 #ifdef HAVE_WINDOW_SYSTEM
1618 syms_of_fringe ();
1619 syms_of_image ();
1620 #endif /* HAVE_WINDOW_SYSTEM */
1621 #ifdef HAVE_X_WINDOWS
1622 syms_of_xterm ();
1623 syms_of_xfns ();
1624 syms_of_xmenu ();
1625 syms_of_fontset ();
1626 #ifdef HAVE_X_SM
1627 syms_of_xsmfns ();
1628 #endif
1629 #ifdef HAVE_X11
1630 syms_of_xselect ();
1631 #endif
1632 #endif /* HAVE_X_WINDOWS */
1634 syms_of_menu ();
1636 #ifdef HAVE_NTGUI
1637 syms_of_w32term ();
1638 syms_of_w32fns ();
1639 syms_of_w32select ();
1640 syms_of_w32menu ();
1641 syms_of_fontset ();
1642 #endif /* HAVE_NTGUI */
1644 #if defined (MAC_OSX) && defined (HAVE_CARBON)
1645 syms_of_macterm ();
1646 syms_of_macfns ();
1647 syms_of_macmenu ();
1648 syms_of_macselect ();
1649 syms_of_fontset ();
1650 #endif /* MAC_OSX && HAVE_CARBON */
1652 #ifdef HAVE_NS
1653 syms_of_nsterm ();
1654 syms_of_nsfns ();
1655 syms_of_nsmenu ();
1656 syms_of_nsselect ();
1657 syms_of_fontset ();
1658 #endif /* HAVE_NS */
1660 #ifdef HAVE_DBUS
1661 syms_of_dbusbind ();
1662 #endif /* HAVE_DBUS */
1664 #ifdef SYMS_SYSTEM
1665 SYMS_SYSTEM;
1666 #endif
1668 #ifdef SYMS_MACHINE
1669 SYMS_MACHINE;
1670 #endif
1672 keys_of_casefiddle ();
1673 keys_of_cmds ();
1674 keys_of_buffer ();
1675 keys_of_keyboard ();
1676 keys_of_keymap ();
1677 keys_of_window ();
1679 else
1681 /* Initialization that must be done even if the global variable
1682 initialized is non zero. */
1683 #ifdef HAVE_NTGUI
1684 globals_of_w32fns ();
1685 globals_of_w32menu ();
1686 globals_of_w32select ();
1687 #endif /* HAVE_NTGUI */
1690 init_charset ();
1692 init_editfns (); /* init_process uses Voperating_system_release. */
1693 init_process (); /* init_display uses add_keyboard_wait_descriptor. */
1694 init_keyboard (); /* This too must precede init_sys_modes. */
1695 #ifdef VMS
1696 init_vmsproc (); /* And this too. */
1697 #endif /* VMS */
1698 if (!noninteractive)
1700 #ifdef VMS
1701 init_vms_input ();/* init_display calls get_tty_size, that needs this. */
1702 #endif /* VMS */
1703 init_display (); /* Determine terminal type. Calls init_sys_modes. */
1705 init_fns ();
1706 init_xdisp ();
1707 #ifdef HAVE_WINDOW_SYSTEM
1708 init_fringe ();
1709 init_image ();
1710 #endif /* HAVE_WINDOW_SYSTEM */
1711 init_macros ();
1712 init_floatfns ();
1713 #ifdef VMS
1714 init_vmsfns ();
1715 #endif /* VMS */
1716 #ifdef HAVE_SOUND
1717 init_sound ();
1718 #endif
1719 init_window ();
1721 if (!initialized)
1723 char *file;
1724 /* Handle -l loadup, args passed by Makefile. */
1725 if (argmatch (argv, argc, "-l", "--load", 3, &file, &skip_args))
1726 Vtop_level = Fcons (intern ("load"),
1727 Fcons (build_string (file), Qnil));
1728 /* Unless next switch is -nl, load "loadup.el" first thing. */
1729 if (! no_loadup)
1730 Vtop_level = Fcons (intern ("load"),
1731 Fcons (build_string ("loadup.el"), Qnil));
1734 if (initialized)
1736 #ifdef HAVE_TZSET
1738 /* If the execution TZ happens to be the same as the dump TZ,
1739 change it to some other value and then change it back,
1740 to force the underlying implementation to reload the TZ info.
1741 This is needed on implementations that load TZ info from files,
1742 since the TZ file contents may differ between dump and execution. */
1743 char *tz = getenv ("TZ");
1744 if (tz && !strcmp (tz, dump_tz))
1746 ++*tz;
1747 tzset ();
1748 --*tz;
1751 #endif
1754 /* Set up for profiling. This is known to work on FreeBSD,
1755 GNU/Linux and MinGW. It might work on some other systems too.
1756 Give it a try and tell us if it works on your system. To compile
1757 for profiling, add -pg to the switches your platform uses in
1758 CFLAGS and LDFLAGS. For example:
1759 `make CFLAGS="-pg -g -O -DPROFILING=1" LDFLAGS="-pg -g"'. */
1760 #if defined (__FreeBSD__) || defined (GNU_LINUX) || defined(__MINGW32__)
1761 #ifdef PROFILING
1762 if (initialized)
1764 extern void _mcleanup ();
1765 #ifdef __MINGW32__
1766 extern unsigned char etext asm ("etext");
1767 #else
1768 extern char etext;
1769 #endif
1770 extern void safe_bcopy ();
1771 extern void dump_opcode_frequencies ();
1773 atexit (_mcleanup);
1774 /* This uses safe_bcopy because that function comes first in the
1775 Emacs executable. It might be better to use something that
1776 gives the start of the text segment, but start_of_text is not
1777 defined on all systems now. */
1778 monstartup (safe_bcopy, &etext);
1780 else
1781 moncontrol (0);
1782 #endif
1783 #endif
1785 initialized = 1;
1787 #ifdef LOCALTIME_CACHE
1788 /* Some versions of localtime have a bug. They cache the value of the time
1789 zone rather than looking it up every time. Since localtime() is
1790 called to bolt the undumping time into the undumped emacs, this
1791 results in localtime ignoring the TZ environment variable.
1792 This flushes the new TZ value into localtime. */
1793 tzset ();
1794 #endif /* defined (LOCALTIME_CACHE) */
1796 /* Enter editor command loop. This never returns. */
1797 Frecursive_edit ();
1798 /* NOTREACHED */
1799 return 0;
1802 /* Sort the args so we can find the most important ones
1803 at the beginning of argv. */
1805 /* First, here's a table of all the standard options. */
1807 struct standard_args
1809 char *name;
1810 char *longname;
1811 int priority;
1812 int nargs;
1815 struct standard_args standard_args[] =
1817 { "-version", "--version", 150, 0 },
1818 #ifdef HAVE_SHM
1819 { "-nl", "--no-shared-memory", 140, 0 },
1820 #endif
1821 #ifdef VMS
1822 { "-map", "--map-data", 130, 0 },
1823 #endif
1824 { "-t", "--terminal", 120, 1 },
1825 { "-nw", "--no-window-system", 110, 0 },
1826 { "-nw", "--no-windows", 110, 0 },
1827 { "-batch", "--batch", 100, 0 },
1828 { "-script", "--script", 100, 1 },
1829 { "-help", "--help", 90, 0 },
1830 { "-no-unibyte", "--no-unibyte", 83, 0 },
1831 { "-multibyte", "--multibyte", 82, 0 },
1832 { "-unibyte", "--unibyte", 81, 0 },
1833 { "-no-multibyte", "--no-multibyte", 80, 0 },
1834 { "-nl", "--no-loadup", 70, 0 },
1835 /* -d must come last before the options handled in startup.el. */
1836 { "-d", "--display", 60, 1 },
1837 { "-display", 0, 60, 1 },
1838 /* Now for the options handled in startup.el. */
1839 { "-Q", "--quick", 55, 0 },
1840 { "-quick", 0, 55, 0 },
1841 { "-q", "--no-init-file", 50, 0 },
1842 { "-no-init-file", 0, 50, 0 },
1843 { "-no-site-file", "--no-site-file", 40, 0 },
1844 { "-u", "--user", 30, 1 },
1845 { "-user", 0, 30, 1 },
1846 { "-debug-init", "--debug-init", 20, 0 },
1847 { "-nbi", "--no-bitmap-icon", 15, 0 },
1848 { "-iconic", "--iconic", 15, 0 },
1849 { "-D", "--basic-display", 12, 0},
1850 { "-basic-display", 0, 12, 0},
1851 { "-bg", "--background-color", 10, 1 },
1852 { "-background", 0, 10, 1 },
1853 { "-fg", "--foreground-color", 10, 1 },
1854 { "-foreground", 0, 10, 1 },
1855 { "-bd", "--border-color", 10, 1 },
1856 { "-bw", "--border-width", 10, 1 },
1857 { "-ib", "--internal-border", 10, 1 },
1858 { "-ms", "--mouse-color", 10, 1 },
1859 { "-cr", "--cursor-color", 10, 1 },
1860 { "-nbc", "--no-blinking-cursor", 10, 0 },
1861 { "-fn", "--font", 10, 1 },
1862 { "-font", 0, 10, 1 },
1863 { "-fs", "--fullscreen", 10, 0 },
1864 { "-fw", "--fullwidth", 10, 0 },
1865 { "-fh", "--fullheight", 10, 0 },
1866 { "-g", "--geometry", 10, 1 },
1867 { "-geometry", 0, 10, 1 },
1868 { "-T", "--title", 10, 1 },
1869 { "-title", 0, 10, 1 },
1870 { "-name", "--name", 10, 1 },
1871 { "-xrm", "--xrm", 10, 1 },
1872 { "-parent-id", "--parent-id", 10, 1 },
1873 { "-r", "--reverse-video", 5, 0 },
1874 { "-rv", 0, 5, 0 },
1875 { "-reverse", 0, 5, 0 },
1876 { "-hb", "--horizontal-scroll-bars", 5, 0 },
1877 { "-vb", "--vertical-scroll-bars", 5, 0 },
1878 { "-color", "--color", 5, 0},
1879 { "-no-splash", "--no-splash", 3, 0 },
1880 { "-no-desktop", "--no-desktop", 3, 0 },
1881 #ifdef HAVE_NS
1882 { "-NSAutoLaunch", 0, 5, 1 },
1883 { "-NXAutoLaunch", 0, 5, 1 },
1884 { "-disable-font-backend", "--disable-font-backend", 65, 0 },
1885 { "-_NSMachLaunch", 0, 85, 1 },
1886 { "-MachLaunch", 0, 85, 1 },
1887 { "-macosx", 0, 85, 0 },
1888 { "-NSHost", 0, 85, 1 },
1889 #endif
1890 /* These have the same priority as ordinary file name args,
1891 so they are not reordered with respect to those. */
1892 { "-L", "--directory", 0, 1 },
1893 { "-directory", 0, 0, 1 },
1894 { "-l", "--load", 0, 1 },
1895 { "-load", 0, 0, 1 },
1896 /* This has no longname, because using --scriptload confuses sort_args,
1897 because then the --script long option seems to match twice; ie
1898 you can't have a long option which is a prefix of another long
1899 option. In any case, this is entirely an internal option. */
1900 { "-scriptload", NULL, 0, 1 },
1901 { "-f", "--funcall", 0, 1 },
1902 { "-funcall", 0, 0, 1 },
1903 { "-eval", "--eval", 0, 1 },
1904 { "-execute", "--execute", 0, 1 },
1905 { "-find-file", "--find-file", 0, 1 },
1906 { "-visit", "--visit", 0, 1 },
1907 { "-file", "--file", 0, 1 },
1908 { "-insert", "--insert", 0, 1 },
1909 #ifdef HAVE_NS
1910 { "-NXOpen", 0, 0, 1 },
1911 { "-NXOpenTemp", 0, 0, 1 },
1912 { "-NSOpen", 0, 0, 1 },
1913 { "-NSOpenTemp", 0, 0, 1 },
1914 { "-GSFilePath", 0, 0, 1 },
1915 #endif
1916 /* This should be processed after ordinary file name args and the like. */
1917 { "-kill", "--kill", -10, 0 },
1920 /* Reorder the elements of ARGV (assumed to have ARGC elements)
1921 so that the highest priority ones come first.
1922 Do not change the order of elements of equal priority.
1923 If an option takes an argument, keep it and its argument together.
1925 If an option that takes no argument appears more
1926 than once, eliminate all but one copy of it. */
1928 static void
1929 sort_args (argc, argv)
1930 int argc;
1931 char **argv;
1933 char **new = (char **) xmalloc (sizeof (char *) * argc);
1934 /* For each element of argv,
1935 the corresponding element of options is:
1936 0 for an option that takes no arguments,
1937 1 for an option that takes one argument, etc.
1938 -1 for an ordinary non-option argument. */
1939 int *options = (int *) xmalloc (sizeof (int) * argc);
1940 int *priority = (int *) xmalloc (sizeof (int) * argc);
1941 int to = 1;
1942 int incoming_used = 1;
1943 int from;
1944 int i;
1946 /* Categorize all the options,
1947 and figure out which argv elts are option arguments. */
1948 for (from = 1; from < argc; from++)
1950 options[from] = -1;
1951 priority[from] = 0;
1952 if (argv[from][0] == '-')
1954 int match, thislen;
1955 char *equals;
1957 /* If we have found "--", don't consider
1958 any more arguments as options. */
1959 if (argv[from][1] == '-' && argv[from][2] == 0)
1961 /* Leave the "--", and everything following it, at the end. */
1962 for (; from < argc; from++)
1964 priority[from] = -100;
1965 options[from] = -1;
1967 break;
1970 /* Look for a match with a known old-fashioned option. */
1971 for (i = 0; i < sizeof (standard_args) / sizeof (standard_args[0]); i++)
1972 if (!strcmp (argv[from], standard_args[i].name))
1974 options[from] = standard_args[i].nargs;
1975 priority[from] = standard_args[i].priority;
1976 if (from + standard_args[i].nargs >= argc)
1977 fatal ("Option `%s' requires an argument\n", argv[from]);
1978 from += standard_args[i].nargs;
1979 goto done;
1982 /* Look for a match with a known long option.
1983 MATCH is -1 if no match so far, -2 if two or more matches so far,
1984 >= 0 (the table index of the match) if just one match so far. */
1985 if (argv[from][1] == '-')
1987 match = -1;
1988 thislen = strlen (argv[from]);
1989 equals = index (argv[from], '=');
1990 if (equals != 0)
1991 thislen = equals - argv[from];
1993 for (i = 0;
1994 i < sizeof (standard_args) / sizeof (standard_args[0]); i++)
1995 if (standard_args[i].longname
1996 && !strncmp (argv[from], standard_args[i].longname,
1997 thislen))
1999 if (match == -1)
2000 match = i;
2001 else
2002 match = -2;
2005 /* If we found exactly one match, use that. */
2006 if (match >= 0)
2008 options[from] = standard_args[match].nargs;
2009 priority[from] = standard_args[match].priority;
2010 /* If --OPTION=VALUE syntax is used,
2011 this option uses just one argv element. */
2012 if (equals != 0)
2013 options[from] = 0;
2014 if (from + options[from] >= argc)
2015 fatal ("Option `%s' requires an argument\n", argv[from]);
2016 from += options[from];
2018 /* FIXME When match < 0, shouldn't there be some error,
2019 or at least indication to the user that there was a
2020 problem? */
2022 done: ;
2026 /* Copy the arguments, in order of decreasing priority, to NEW. */
2027 new[0] = argv[0];
2028 while (incoming_used < argc)
2030 int best = -1;
2031 int best_priority = -9999;
2033 /* Find the highest priority remaining option.
2034 If several have equal priority, take the first of them. */
2035 for (from = 1; from < argc; from++)
2037 if (argv[from] != 0 && priority[from] > best_priority)
2039 best_priority = priority[from];
2040 best = from;
2042 /* Skip option arguments--they are tied to the options. */
2043 if (options[from] > 0)
2044 from += options[from];
2047 if (best < 0)
2048 abort ();
2050 /* Copy the highest priority remaining option, with its args, to NEW.
2051 Unless it is a duplicate of the previous one. */
2052 if (! (options[best] == 0
2053 && ! strcmp (new[to - 1], argv[best])))
2055 new[to++] = argv[best];
2056 for (i = 0; i < options[best]; i++)
2057 new[to++] = argv[best + i + 1];
2060 incoming_used += 1 + (options[best] > 0 ? options[best] : 0);
2062 /* Clear out this option in ARGV. */
2063 argv[best] = 0;
2064 for (i = 0; i < options[best]; i++)
2065 argv[best + i + 1] = 0;
2068 /* If duplicate options were deleted, fill up extra space with null ptrs. */
2069 while (to < argc)
2070 new[to++] = 0;
2072 bcopy (new, argv, sizeof (char *) * argc);
2074 xfree (options);
2075 xfree (new);
2076 xfree (priority);
2079 DEFUN ("kill-emacs", Fkill_emacs, Skill_emacs, 0, 1, "P",
2080 doc: /* Exit the Emacs job and kill it.
2081 If ARG is an integer, return ARG as the exit program code.
2082 If ARG is a string, stuff it as keyboard input.
2084 The value of `kill-emacs-hook', if not void,
2085 is a list of functions (of no args),
2086 all of which are called before Emacs is actually killed. */)
2087 (arg)
2088 Lisp_Object arg;
2090 struct gcpro gcpro1;
2092 GCPRO1 (arg);
2094 if (feof (stdin))
2095 arg = Qt;
2097 if (!NILP (Vrun_hooks) && !noninteractive)
2098 call1 (Vrun_hooks, intern ("kill-emacs-hook"));
2100 UNGCPRO;
2102 /* Is it really necessary to do this deassign
2103 when we are going to exit anyway? */
2104 /* #ifdef VMS
2105 stop_vms_input ();
2106 #endif */
2108 shut_down_emacs (0, 0, STRINGP (arg) ? arg : Qnil);
2110 /* If we have an auto-save list file,
2111 kill it because we are exiting Emacs deliberately (not crashing).
2112 Do it after shut_down_emacs, which does an auto-save. */
2113 if (STRINGP (Vauto_save_list_file_name))
2114 unlink (SDATA (Vauto_save_list_file_name));
2116 exit (INTEGERP (arg) ? XINT (arg) : EXIT_SUCCESS);
2117 /* NOTREACHED */
2118 return Qnil;
2122 /* Perform an orderly shutdown of Emacs. Autosave any modified
2123 buffers, kill any child processes, clean up the terminal modes (if
2124 we're in the foreground), and other stuff like that. Don't perform
2125 any redisplay; this may be called when Emacs is shutting down in
2126 the background, or after its X connection has died.
2128 If SIG is a signal number, print a message for it.
2130 This is called by fatal signal handlers, X protocol error handlers,
2131 and Fkill_emacs. */
2133 void
2134 shut_down_emacs (sig, no_x, stuff)
2135 int sig, no_x;
2136 Lisp_Object stuff;
2138 /* Prevent running of hooks from now on. */
2139 Vrun_hooks = Qnil;
2141 /* Don't update display from now on. */
2142 Vinhibit_redisplay = Qt;
2144 /* If we are controlling the terminal, reset terminal modes. */
2145 #ifdef EMACS_HAVE_TTY_PGRP
2147 int pgrp = EMACS_GETPGRP (0);
2149 int tpgrp;
2150 if (EMACS_GET_TTY_PGRP (0, &tpgrp) != -1
2151 && tpgrp == pgrp)
2153 reset_all_sys_modes ();
2154 if (sig && sig != SIGTERM)
2155 fprintf (stderr, "Fatal error (%d)", sig);
2158 #else
2159 fflush (stdout);
2160 reset_all_sys_modes ();
2161 #endif
2163 stuff_buffered_input (stuff);
2165 #ifdef subprocesses
2166 inhibit_sentinels = 1;
2167 #endif
2168 kill_buffer_processes (Qnil);
2169 Fdo_auto_save (Qt, Qnil);
2171 #ifdef CLASH_DETECTION
2172 unlock_all_files ();
2173 #endif
2175 #ifdef VMS
2176 kill_vms_processes ();
2177 #endif
2179 #if 0 /* This triggers a bug in XCloseDisplay and is not needed. */
2180 #ifdef HAVE_X_WINDOWS
2181 /* It's not safe to call intern here. Maybe we are crashing. */
2182 if (!noninteractive && SYMBOLP (Vinitial_window_system)
2183 && SCHARS (SYMBOL_NAME (Vinitial_window_system)) == 1
2184 && SREF (SYMBOL_NAME (Vinitial_window_system), 0) == 'x'
2185 && ! no_x)
2186 Fx_close_current_connection ();
2187 #endif /* HAVE_X_WINDOWS */
2188 #endif
2190 #ifdef SIGIO
2191 /* There is a tendency for a SIGIO signal to arrive within exit,
2192 and cause a SIGHUP because the input descriptor is already closed. */
2193 unrequest_sigio ();
2194 signal (SIGIO, SIG_IGN);
2195 #endif
2197 #ifdef WINDOWSNT
2198 term_ntproc ();
2199 #endif
2201 /* Do this only if terminating normally, we want glyph matrices
2202 etc. in a core dump. */
2203 if (sig == 0 || sig == SIGTERM)
2205 check_glyph_memory ();
2206 check_message_stack ();
2209 #ifdef MSDOS
2210 dos_cleanup ();
2211 #endif
2213 #ifdef HAVE_NS
2214 ns_term_shutdown (sig);
2215 #endif
2220 #ifndef CANNOT_DUMP
2222 #ifdef HAVE_SHM
2224 DEFUN ("dump-emacs-data", Fdump_emacs_data, Sdump_emacs_data, 1, 1, 0,
2225 doc: /* Dump current state of Emacs into data file FILENAME.
2226 This function exists on systems that use HAVE_SHM. */)
2227 (filename)
2228 Lisp_Object filename;
2230 extern char my_edata[];
2231 Lisp_Object tem;
2233 check_pure_size ();
2234 CHECK_STRING (filename);
2235 filename = Fexpand_file_name (filename, Qnil);
2237 tem = Vpurify_flag;
2238 Vpurify_flag = Qnil;
2240 fflush (stdout);
2241 /* Tell malloc where start of impure now is. */
2242 /* Also arrange for warnings when nearly out of space. */
2243 #ifndef SYSTEM_MALLOC
2244 memory_warnings (my_edata, malloc_warning);
2245 #endif
2246 map_out_data (SDATA (filename));
2248 Vpurify_flag = tem;
2250 return Qnil;
2253 #else /* not HAVE_SHM */
2255 DEFUN ("dump-emacs", Fdump_emacs, Sdump_emacs, 2, 2, 0,
2256 doc: /* Dump current state of Emacs into executable file FILENAME.
2257 Take symbols from SYMFILE (presumably the file you executed to run Emacs).
2258 This is used in the file `loadup.el' when building Emacs.
2260 You must run Emacs in batch mode in order to dump it. */)
2261 (filename, symfile)
2262 Lisp_Object filename, symfile;
2264 extern char my_edata[];
2265 Lisp_Object tem;
2266 Lisp_Object symbol;
2267 int count = SPECPDL_INDEX ();
2269 check_pure_size ();
2271 if (! noninteractive)
2272 error ("Dumping Emacs works only in batch mode");
2274 #ifdef GNU_LINUX
2275 if (heap_bss_diff > MAX_HEAP_BSS_DIFF)
2277 fprintf (stderr, "**************************************************\n");
2278 fprintf (stderr, "Warning: Your system has a gap between BSS and the\n");
2279 fprintf (stderr, "heap (%lu bytes). This usually means that exec-shield\n",
2280 heap_bss_diff);
2281 fprintf (stderr, "or something similar is in effect. The dump may\n");
2282 fprintf (stderr, "fail because of this. See the section about\n");
2283 fprintf (stderr, "exec-shield in etc/PROBLEMS for more information.\n");
2284 fprintf (stderr, "**************************************************\n");
2286 #endif /* GNU_LINUX */
2288 /* Bind `command-line-processed' to nil before dumping,
2289 so that the dumped Emacs will process its command line
2290 and set up to work with X windows if appropriate. */
2291 symbol = intern ("command-line-processed");
2292 specbind (symbol, Qnil);
2294 CHECK_STRING (filename);
2295 filename = Fexpand_file_name (filename, Qnil);
2296 if (!NILP (symfile))
2298 CHECK_STRING (symfile);
2299 if (SCHARS (symfile))
2300 symfile = Fexpand_file_name (symfile, Qnil);
2303 tem = Vpurify_flag;
2304 Vpurify_flag = Qnil;
2306 #ifdef HAVE_TZSET
2307 set_time_zone_rule (dump_tz);
2308 #ifndef LOCALTIME_CACHE
2309 /* Force a tz reload, since set_time_zone_rule doesn't. */
2310 tzset ();
2311 #endif
2312 #endif
2314 fflush (stdout);
2315 #ifdef VMS
2316 mapout_data (SDATA (filename));
2317 #else
2318 /* Tell malloc where start of impure now is. */
2319 /* Also arrange for warnings when nearly out of space. */
2320 #ifndef SYSTEM_MALLOC
2321 #ifndef WINDOWSNT
2322 /* On Windows, this was done before dumping, and that once suffices.
2323 Meanwhile, my_edata is not valid on Windows. */
2324 memory_warnings (my_edata, malloc_warning);
2325 #endif /* not WINDOWSNT */
2326 #endif
2327 #if !defined (SYSTEM_MALLOC) && defined (HAVE_GTK_AND_PTHREAD) && !defined SYNC_INPUT
2328 /* Pthread may call malloc before main, and then we will get an endless
2329 loop, because pthread_self (see alloc.c) calls malloc the first time
2330 it is called on some systems. */
2331 reset_malloc_hooks ();
2332 #endif
2333 #ifdef DOUG_LEA_MALLOC
2334 malloc_state_ptr = malloc_get_state ();
2335 #endif
2337 #ifdef USE_MMAP_FOR_BUFFERS
2338 mmap_set_vars (0);
2339 #endif
2340 unexec (SDATA (filename),
2341 !NILP (symfile) ? SDATA (symfile) : 0, my_edata, 0, 0);
2342 #ifdef USE_MMAP_FOR_BUFFERS
2343 mmap_set_vars (1);
2344 #endif
2345 #ifdef DOUG_LEA_MALLOC
2346 free (malloc_state_ptr);
2347 #endif
2348 #endif /* not VMS */
2350 Vpurify_flag = tem;
2352 return unbind_to (count, Qnil);
2355 #endif /* not HAVE_SHM */
2357 #endif /* not CANNOT_DUMP */
2359 #if HAVE_SETLOCALE
2360 /* Recover from setlocale (LC_ALL, ""). */
2361 void
2362 fixup_locale ()
2364 /* The Emacs Lisp reader needs LC_NUMERIC to be "C",
2365 so that numbers are read and printed properly for Emacs Lisp. */
2366 setlocale (LC_NUMERIC, "C");
2369 /* Set system locale CATEGORY, with previous locale *PLOCALE, to
2370 DESIRED_LOCALE. */
2371 static void
2372 synchronize_locale (category, plocale, desired_locale)
2373 int category;
2374 Lisp_Object *plocale;
2375 Lisp_Object desired_locale;
2377 if (! EQ (*plocale, desired_locale))
2379 *plocale = desired_locale;
2380 setlocale (category, (STRINGP (desired_locale)
2381 ? (char *) SDATA (desired_locale)
2382 : ""));
2386 /* Set system time locale to match Vsystem_time_locale, if possible. */
2387 void
2388 synchronize_system_time_locale ()
2390 synchronize_locale (LC_TIME, &Vprevious_system_time_locale,
2391 Vsystem_time_locale);
2394 /* Set system messages locale to match Vsystem_messages_locale, if
2395 possible. */
2396 void
2397 synchronize_system_messages_locale ()
2399 #ifdef LC_MESSAGES
2400 synchronize_locale (LC_MESSAGES, &Vprevious_system_messages_locale,
2401 Vsystem_messages_locale);
2402 #endif
2404 #endif /* HAVE_SETLOCALE */
2406 #ifndef SEPCHAR
2407 #define SEPCHAR ':'
2408 #endif
2410 Lisp_Object
2411 decode_env_path (evarname, defalt)
2412 char *evarname, *defalt;
2414 register char *path, *p;
2415 Lisp_Object lpath, element, tem;
2417 /* It's okay to use getenv here, because this function is only used
2418 to initialize variables when Emacs starts up, and isn't called
2419 after that. */
2420 if (evarname != 0)
2421 path = (char *) getenv (evarname);
2422 else
2423 path = 0;
2424 if (!path)
2425 path = defalt;
2426 #ifdef DOS_NT
2427 /* Ensure values from the environment use the proper directory separator. */
2428 if (path)
2430 p = alloca (strlen (path) + 1);
2431 strcpy (p, path);
2432 path = p;
2434 if ('/' == DIRECTORY_SEP)
2435 dostounix_filename (path);
2436 else
2437 unixtodos_filename (path);
2439 #endif
2440 lpath = Qnil;
2441 while (1)
2443 p = index (path, SEPCHAR);
2444 if (!p) p = path + strlen (path);
2445 element = (p - path ? make_string (path, p - path)
2446 : build_string ("."));
2448 /* Add /: to the front of the name
2449 if it would otherwise be treated as magic. */
2450 tem = Ffind_file_name_handler (element, Qt);
2452 /* However, if the handler says "I'm safe",
2453 don't bother adding /:. */
2454 if (SYMBOLP (tem))
2456 Lisp_Object prop;
2457 prop = Fget (tem, intern ("safe-magic"));
2458 if (! NILP (prop))
2459 tem = Qnil;
2462 if (! NILP (tem))
2463 element = concat2 (build_string ("/:"), element);
2465 lpath = Fcons (element, lpath);
2466 if (*p)
2467 path = p + 1;
2468 else
2469 break;
2471 return Fnreverse (lpath);
2474 void
2475 syms_of_emacs ()
2477 Qfile_name_handler_alist = intern ("file-name-handler-alist");
2478 staticpro (&Qfile_name_handler_alist);
2480 #ifndef CANNOT_DUMP
2481 #ifdef HAVE_SHM
2482 defsubr (&Sdump_emacs_data);
2483 #else
2484 defsubr (&Sdump_emacs);
2485 #endif
2486 #endif
2488 defsubr (&Skill_emacs);
2490 defsubr (&Sinvocation_name);
2491 defsubr (&Sinvocation_directory);
2493 DEFVAR_LISP ("command-line-args", &Vcommand_line_args,
2494 doc: /* Args passed by shell to Emacs, as a list of strings.
2495 Many arguments are deleted from the list as they are processed. */);
2497 DEFVAR_LISP ("system-type", &Vsystem_type,
2498 doc: /* Value is symbol indicating type of operating system you are using.
2499 Special values:
2500 `gnu' compiled for a GNU Hurd system.
2501 `gnu/linux' compiled for a GNU/Linux system.
2502 `darwin' compiled for Darwin (GNU-Darwin, Mac OS X, ...).
2503 `ms-dos' compiled as an MS-DOS application.
2504 `windows-nt' compiled as a native W32 application.
2505 `cygwin' compiled using the Cygwin library.
2506 `vax-vms' compiled for a (Open)VMS system.
2507 Anything else indicates some sort of Unix system. */);
2508 Vsystem_type = intern (SYSTEM_TYPE);
2510 DEFVAR_LISP ("system-configuration", &Vsystem_configuration,
2511 doc: /* Value is string indicating configuration Emacs was built for.
2512 On MS-Windows, the value reflects the OS flavor and version on which
2513 Emacs is running. */);
2514 Vsystem_configuration = build_string (EMACS_CONFIGURATION);
2516 DEFVAR_LISP ("system-configuration-options", &Vsystem_configuration_options,
2517 doc: /* String containing the configuration options Emacs was built with. */);
2518 Vsystem_configuration_options = build_string (EMACS_CONFIG_OPTIONS);
2520 DEFVAR_BOOL ("noninteractive", &noninteractive1,
2521 doc: /* Non-nil means Emacs is running without interactive terminal. */);
2523 DEFVAR_LISP ("kill-emacs-hook", &Vkill_emacs_hook,
2524 doc: /* Hook to be run when `kill-emacs' is called.
2525 Since `kill-emacs' may be invoked when the terminal is disconnected (or
2526 in other similar situations), functions placed on this hook should not
2527 expect to be able to interact with the user. To ask for confirmation,
2528 see `kill-emacs-query-functions' instead.
2530 The hook is not run in batch mode, i.e., if `noninteractive' is non-nil. */);
2531 Vkill_emacs_hook = Qnil;
2533 DEFVAR_INT ("emacs-priority", &emacs_priority,
2534 doc: /* Priority for Emacs to run at.
2535 This value is effective only if set before Emacs is dumped,
2536 and only if the Emacs executable is installed with setuid to permit
2537 it to change priority. (Emacs sets its uid back to the real uid.)
2538 Currently, you need to define SET_EMACS_PRIORITY in `config.h'
2539 before you compile Emacs, to enable the code for this feature. */);
2540 emacs_priority = 0;
2542 DEFVAR_LISP ("path-separator", &Vpath_separator,
2543 doc: /* String containing the character that separates directories in
2544 search paths, such as PATH and other similar environment variables. */);
2546 char c = SEPCHAR;
2547 Vpath_separator = make_string (&c, 1);
2550 DEFVAR_LISP ("invocation-name", &Vinvocation_name,
2551 doc: /* The program name that was used to run Emacs.
2552 Any directory names are omitted. */);
2554 DEFVAR_LISP ("invocation-directory", &Vinvocation_directory,
2555 doc: /* The directory in which the Emacs executable was found, to run it.
2556 The value is nil if that directory's name is not known. */);
2558 DEFVAR_LISP ("installation-directory", &Vinstallation_directory,
2559 doc: /* A directory within which to look for the `lib-src' and `etc' directories.
2560 This is non-nil when we can't find those directories in their standard
2561 installed locations, but we can find them near where the Emacs executable
2562 was found. */);
2563 Vinstallation_directory = Qnil;
2565 DEFVAR_LISP ("system-messages-locale", &Vsystem_messages_locale,
2566 doc: /* System locale for messages. */);
2567 Vsystem_messages_locale = Qnil;
2569 DEFVAR_LISP ("previous-system-messages-locale",
2570 &Vprevious_system_messages_locale,
2571 doc: /* Most recently used system locale for messages. */);
2572 Vprevious_system_messages_locale = Qnil;
2574 DEFVAR_LISP ("system-time-locale", &Vsystem_time_locale,
2575 doc: /* System locale for time. */);
2576 Vsystem_time_locale = Qnil;
2578 DEFVAR_LISP ("previous-system-time-locale", &Vprevious_system_time_locale,
2579 doc: /* Most recently used system locale for time. */);
2580 Vprevious_system_time_locale = Qnil;
2583 /* arch-tag: 7bfd356a-c720-4612-8ab6-aa4222931c2e
2584 (do not change this comment) */