1 /* Fully extensible Emacs, running on Unix, intended for GNU.
2 Copyright (C) 1985,86,87,93,94,95,97,98,1999,2001
3 Free Software Foundation, Inc.
5 This file is part of GNU Emacs.
7 GNU Emacs is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 2, or (at your option)
12 GNU Emacs is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
17 You should have received a copy of the GNU General Public License
18 along with GNU Emacs; see the file COPYING. If not, write to
19 the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
20 Boston, MA 02111-1307, USA. */
28 #include <sys/types.h>
40 #include <sys/ioctl.h>
45 #include "intervals.h"
49 #include "blockinput.h"
50 #include "syssignal.h"
52 #include "termhooks.h"
61 #include <sys/resource.h>
69 #if !defined (USG) || defined (BSD_PGRPS)
71 #define setpgrp setpgid
75 extern void malloc_warning
P_ ((char *));
76 extern void set_time_zone_rule
P_ ((char *));
78 extern char *index
P_ ((const char *, int));
81 /* Make these values available in GDB, which doesn't see macros. */
83 EMACS_INT gdb_valbits
= VALBITS
;
84 EMACS_INT gdb_gctypebits
= GCTYPEBITS
;
85 EMACS_INT gdb_emacs_intbits
= sizeof (EMACS_INT
) * BITS_PER_CHAR
;
87 EMACS_INT gdb_data_seg_bits
= DATA_SEG_BITS
;
89 EMACS_INT gdb_data_seg_bits
= 0;
91 EMACS_INT PVEC_FLAG
= PSEUDOVECTOR_FLAG
;
93 /* Command line args from shell, as list of strings */
94 Lisp_Object Vcommand_line_args
;
96 /* The name under which Emacs was invoked, with any leading directory
98 Lisp_Object Vinvocation_name
;
100 /* The directory name from which Emacs was invoked. */
101 Lisp_Object Vinvocation_directory
;
103 /* The directory name in which to find subdirs such as lisp and etc.
104 nil means get them only from PATH_LOADSEARCH. */
105 Lisp_Object Vinstallation_directory
;
107 /* Hook run by `kill-emacs' before it does really anything. */
108 Lisp_Object Vkill_emacs_hook
;
111 /* Hooks for signal USR1 and USR2 handing */
112 Lisp_Object Vsignal_USR1_hook
;
114 Lisp_Object Vsignal_USR2_hook
;
118 /* Search path separator. */
119 Lisp_Object Vpath_separator
;
121 /* Set nonzero after Emacs has started up the first time.
122 Prevents reinitialization of the Lisp world and keymaps
123 on subsequent starts. */
126 #ifdef DOUG_LEA_MALLOC
127 /* Preserves a pointer to the memory allocated that copies that
128 static data inside glibc's malloc. */
129 void *malloc_state_ptr
;
130 /* From glibc, a routine that returns a copy of the malloc internal state. */
131 extern void *malloc_get_state ();
132 /* From glibc, a routine that overwrites the malloc internal state. */
133 extern void malloc_set_state ();
134 /* Non-zero if the MALLOC_CHECK_ enviroment variable was set while
135 dumping. Used to work around a bug in glibc's malloc. */
136 int malloc_using_checking
;
139 /* Variable whose value is symbol giving operating system type. */
140 Lisp_Object Vsystem_type
;
142 /* Variable whose value is string giving configuration built for. */
143 Lisp_Object Vsystem_configuration
;
145 /* Variable whose value is string giving configuration options,
146 for use when reporting bugs. */
147 Lisp_Object Vsystem_configuration_options
;
149 Lisp_Object Qfile_name_handler_alist
;
151 /* Current and previous system locales for messages and time. */
152 Lisp_Object Vsystem_messages_locale
;
153 Lisp_Object Vprevious_system_messages_locale
;
154 Lisp_Object Vsystem_time_locale
;
155 Lisp_Object Vprevious_system_time_locale
;
157 /* If non-zero, emacs should not attempt to use an window-specific code,
158 but instead should use the virtual terminal under which it was started */
159 int inhibit_window_system
;
161 /* If nonzero, set Emacs to run at this priority. This is also used
162 in child_setup and sys_suspend to make sure subshells run at normal
163 priority; Those functions have their own extern declaration. */
166 /* If non-zero a filter or a sentinel is running. Tested to save the match
167 data on the first attempt to change it inside asynchronous code. */
168 int running_asynch_code
;
172 extern int inherited_pgroup
;
175 #ifdef HAVE_X_WINDOWS
176 /* If non-zero, -d was specified, meaning we're using some window system. */
180 /* An address near the bottom of the stack.
181 Tells GC how to save a copy of the stack. */
184 #ifdef HAVE_WINDOW_SYSTEM
185 extern Lisp_Object Vwindow_system
;
186 #endif /* HAVE_WINDOW_SYSTEM */
188 extern Lisp_Object Vauto_save_list_file_name
;
190 #ifdef USG_SHARED_LIBRARIES
191 /* If nonzero, this is the place to put the end of the writable segment
194 unsigned int bss_end
= 0;
197 /* Nonzero means running Emacs without interactive terminal. */
201 /* Value of Lisp variable `noninteractive'.
202 Normally same as C variable `noninteractive'
203 but nothing terrible happens if user sets this one. */
207 /* Save argv and argc. */
211 static void sort_args ();
212 void syms_of_emacs ();
215 Usage: %s [OPTION-OR-FILENAME]...\n\
217 Run Emacs, the extensible, customizable, self-documenting real-time\n\
218 display editor. The recommended way to start Emacs for normal editing\n\
219 is with no options at all.\n\
221 Run M-x info RET m emacs RET m command arguments RET inside Emacs to\n\
222 read the main documentation for these command-line arguments.\n\
224 Initialization options:\n\
226 --batch do not do interactive display; implies -q\n\
227 --debug-init enable Emacs Lisp debugger during init file\n\
228 --help display this help message and exit\n\
229 --multibyte, --no-unibyte run Emacs in multibyte mode\n\
230 --no-init-file, -q load neither ~/.emacs nor default.el\n\
231 --no-shared-memory, -nl do not use shared memory\n\
232 --no-site-file do not load site-start.el\n\
233 --no-windows, -nw don't communicate with X, ignoring $DISPLAY\n\
234 --terminal, -t DEVICE use DEVICE for terminal I/O\n\
235 --unibyte, --no-multibyte run Emacs in unibyte mode\n\
236 --user, -u USER load ~USER/.emacs instead of your own\n\
237 --version display version information and exit\n\
241 FILE visit FILE using find-file\n\
242 +LINE FILE visit FILE using find-file, then go to line LINE\n\
243 +LINE:COLUMN FILE visit FILE using find-file, then go to line LINE,\n\
245 --directory, -L DIR add DIR to variable load-path\n\
246 --eval EXPR evaluate Emacs Lisp expression EXPR\n\
247 --execute EXPR evaluate Emacs Lisp expression EXPR\n\
248 --find-file FILE visit FILE\n\
249 --funcall, -f FUNC call Emacs function FUNC with no arguments\n\
250 --insert FILE insert contents of FILE into current buffer\n\
251 --kill exit without asking for confirmation\n\
252 --load, -l FILE load FILE of Emacs Lisp code using the load function\n\
253 --visit FILE visit FILE\n\
259 --background-color, -bg COLOR window background color\n\
260 --border-color, -bd COLOR main border color\n\
261 --border-width, -bw WIDTH width of main border\n\
262 --cursor-color, -cr COLOR color of the Emacs cursor indicating point\n\
263 --display, -d DISPLAY use X server DISPLAY\n\
264 --font, -fn FONT default font; must be fixed-widthp\n\
265 --foreground-color, -fg COLOR window foreground color\n\
266 --geometry, -g GEOMETRY window geometry\n\
267 --iconic start Emacs in iconified state\n\
268 --icon-type, -i use picture of gnu for Emacs icon\n\
269 --internal-border, -ib WIDTH width between text and main border\n\
270 --line-spacing, -lsp PIXELS additional space to put between lines\n\
271 --mouse-color, -ms COLOR mouse cursor color in Emacs window\n\
272 --name NAME title of main Emacs window\n\
273 --reverse-video, -r, -rv switch foreground and background\n\
274 --title, -T, -wn, TITLE title for Emacs windows\n\
275 --vertical-scroll-bars, -vb enable vertical scroll bars\n\
276 --xrm XRESOURCES set additional X resources\n\
278 You can generally also specify long option names with a single -; for\n\
279 example, -batch as well as --batch. You can use any unambiguous\n\
280 abbreviation for a --option.\n\
282 Various environment variables and window system resources also affect\n\
283 Emacs' operation. See the main documentation.\n\
285 Report bugs to bug-gnu-emacs@gnu.org. First, please see the Bugs\n\
286 section of the Emacs manual or the file BUGS.\n"
289 /* Signal code for the fatal signal that was received */
290 int fatal_error_code
;
292 /* Nonzero if handling a fatal error already */
293 int fatal_error_in_progress
;
297 handle_USR1_signal (sig
)
300 struct input_event buf
;
302 bzero (&buf
, sizeof buf
);
303 buf
.kind
= USER_SIGNAL_EVENT
;
304 buf
.frame_or_window
= selected_frame
;
306 kbd_buffer_store_event (&buf
);
312 handle_USR2_signal (sig
)
315 struct input_event buf
;
317 bzero (&buf
, sizeof buf
);
318 buf
.kind
= USER_SIGNAL_EVENT
;
320 buf
.frame_or_window
= selected_frame
;
322 kbd_buffer_store_event (&buf
);
326 /* Handle bus errors, invalid instruction, etc. */
328 fatal_error_signal (sig
)
331 fatal_error_code
= sig
;
332 signal (sig
, SIG_DFL
);
334 TOTALLY_UNBLOCK_INPUT
;
336 /* If fatal error occurs in code below, avoid infinite recursion. */
337 if (! fatal_error_in_progress
)
339 fatal_error_in_progress
= 1;
341 shut_down_emacs (sig
, 0, Qnil
);
345 LIB$
STOP (SS$_ABORT
);
347 /* Signal the same code; this time it will really be fatal.
348 Remember that since we're in a signal handler, the signal we're
349 going to send is probably blocked, so we have to unblock it if we
350 want to really receive it. */
352 sigunblock (sigmask (fatal_error_code
));
354 kill (getpid (), fatal_error_code
);
360 /* Handler for SIGDANGER. */
362 memory_warning_signal (sig
)
365 signal (sig
, memory_warning_signal
);
367 malloc_warning ("Operating system warns that virtual memory is running low.\n");
369 /* It might be unsafe to call do_auto_save now. */
370 force_auto_save_soon ();
374 /* We define abort, rather than using it from the library,
375 so that GDB can return from a breakpoint here.
376 MSDOS has its own definition on msdos.c */
378 #if ! defined (DOS_NT) && ! defined (NO_ABORT)
380 #ifndef ABORT_RETURN_TYPE
381 #define ABORT_RETURN_TYPE void
387 kill (getpid (), SIGABRT
);
388 /* This shouldn't be executed, but it prevents a warning. */
394 /* Code for dealing with Lisp access to the Unix command line */
397 init_cmdargs (argc
, argv
, skip_args
)
403 Lisp_Object name
, dir
, tem
;
404 int count
= specpdl_ptr
- specpdl
;
405 Lisp_Object raw_name
;
410 raw_name
= build_string (argv
[0]);
412 /* Add /: to the front of the name
413 if it would otherwise be treated as magic. */
414 tem
= Ffind_file_name_handler (raw_name
, Qt
);
416 raw_name
= concat2 (build_string ("/:"), raw_name
);
418 Vinvocation_name
= Ffile_name_nondirectory (raw_name
);
419 Vinvocation_directory
= Ffile_name_directory (raw_name
);
421 /* If we got no directory in argv[0], search PATH to find where
422 Emacs actually came from. */
423 if (NILP (Vinvocation_directory
))
426 int yes
= openp (Vexec_path
, Vinvocation_name
,
427 EXEC_SUFFIXES
, &found
, 1);
430 /* Add /: to the front of the name
431 if it would otherwise be treated as magic. */
432 tem
= Ffind_file_name_handler (found
, Qt
);
434 found
= concat2 (build_string ("/:"), found
);
435 Vinvocation_directory
= Ffile_name_directory (found
);
439 if (!NILP (Vinvocation_directory
)
440 && NILP (Ffile_name_absolute_p (Vinvocation_directory
)))
441 /* Emacs was started with relative path, like ./emacs.
443 Vinvocation_directory
= Fexpand_file_name (Vinvocation_directory
, Qnil
);
445 Vinstallation_directory
= Qnil
;
447 if (!NILP (Vinvocation_directory
))
449 dir
= Vinvocation_directory
;
450 name
= Fexpand_file_name (Vinvocation_name
, dir
);
453 Lisp_Object tem
, lib_src_exists
;
454 Lisp_Object etc_exists
, info_exists
;
456 /* See if dir contains subdirs for use by Emacs.
457 Check for the ones that would exist in a build directory,
458 not including lisp and info. */
459 tem
= Fexpand_file_name (build_string ("lib-src"), dir
);
460 lib_src_exists
= Ffile_exists_p (tem
);
463 /* MSDOS installations frequently remove lib-src, but we still
464 must set installation-directory, or else info won't find
465 its files (it uses the value of installation-directory). */
466 tem
= Fexpand_file_name (build_string ("info"), dir
);
467 info_exists
= Ffile_exists_p (tem
);
472 if (!NILP (lib_src_exists
) || !NILP (info_exists
))
474 tem
= Fexpand_file_name (build_string ("etc"), dir
);
475 etc_exists
= Ffile_exists_p (tem
);
476 if (!NILP (etc_exists
))
478 Vinstallation_directory
479 = Ffile_name_as_directory (dir
);
484 /* See if dir's parent contains those subdirs. */
485 tem
= Fexpand_file_name (build_string ("../lib-src"), dir
);
486 lib_src_exists
= Ffile_exists_p (tem
);
490 /* See the MSDOS commentary above. */
491 tem
= Fexpand_file_name (build_string ("../info"), dir
);
492 info_exists
= Ffile_exists_p (tem
);
497 if (!NILP (lib_src_exists
) || !NILP (info_exists
))
499 tem
= Fexpand_file_name (build_string ("../etc"), dir
);
500 etc_exists
= Ffile_exists_p (tem
);
501 if (!NILP (etc_exists
))
503 tem
= Fexpand_file_name (build_string (".."), dir
);
504 Vinstallation_directory
505 = Ffile_name_as_directory (tem
);
510 /* If the Emacs executable is actually a link,
511 next try the dir that the link points into. */
512 tem
= Ffile_symlink_p (name
);
515 name
= Fexpand_file_name (tem
, dir
);
516 dir
= Ffile_name_directory (name
);
523 Vcommand_line_args
= Qnil
;
525 for (i
= argc
- 1; i
>= 0; i
--)
527 if (i
== 0 || i
> skip_args
)
529 = Fcons (build_string (argv
[i
]), Vcommand_line_args
);
532 unbind_to (count
, Qnil
);
535 DEFUN ("invocation-name", Finvocation_name
, Sinvocation_name
, 0, 0, 0,
536 "Return the program name that was used to run Emacs.\n\
537 Any directory names are omitted.")
540 return Fcopy_sequence (Vinvocation_name
);
543 DEFUN ("invocation-directory", Finvocation_directory
, Sinvocation_directory
,
545 "Return the directory name in which the Emacs executable was located")
548 return Fcopy_sequence (Vinvocation_directory
);
553 #ifdef LINK_CRTL_SHARE
554 #ifdef SHARABLE_LIB_BUG
555 extern noshare
char **environ
;
556 #endif /* SHARABLE_LIB_BUG */
557 #endif /* LINK_CRTL_SHARE */
561 /* A valid but unlikely value for the TZ environment value.
562 It is OK (though a bit slower) if the user actually chooses this value. */
563 static char dump_tz
[] = "UtC0";
566 #ifndef ORDINARY_LINK
567 /* We don't include crtbegin.o and crtend.o in the link,
568 so these functions and variables might be missed.
569 Provide dummy definitions to avoid error.
570 (We don't have any real constructors or destructors.) */
572 #ifndef GCC_CTORS_IN_LIBC
573 void __do_global_ctors ()
575 void __do_global_ctors_aux ()
577 void __do_global_dtors ()
579 /* Linux has a bug in its library; avoid an error. */
581 char * __CTOR_LIST__
[2] = { (char *) (-1), 0 };
583 char * __DTOR_LIST__
[2] = { (char *) (-1), 0 };
584 #endif /* GCC_CTORS_IN_LIBC */
587 #endif /* __GNUC__ */
588 #endif /* ORDINARY_LINK */
590 /* Test whether the next argument in ARGV matches SSTR or a prefix of
591 LSTR (at least MINLEN characters). If so, then if VALPTR is non-null
592 (the argument is supposed to have a value) store in *VALPTR either
593 the next argument or the portion of this one after the equal sign.
594 ARGV is read starting at position *SKIPPTR; this index is advanced
595 by the number of arguments used.
597 Too bad we can't just use getopt for all of this, but we don't have
598 enough information to do it right. */
601 argmatch (argv
, argc
, sstr
, lstr
, minlen
, valptr
, skipptr
)
614 /* Don't access argv[argc]; give up in advance. */
615 if (argc
<= *skipptr
+ 1)
618 arg
= argv
[*skipptr
+1];
621 if (strcmp (arg
, sstr
) == 0)
625 *valptr
= argv
[*skipptr
+2];
632 arglen
= (valptr
!= NULL
&& (p
= index (arg
, '=')) != NULL
633 ? p
- arg
: strlen (arg
));
634 if (lstr
== 0 || arglen
< minlen
|| strncmp (arg
, lstr
, arglen
) != 0)
636 else if (valptr
== NULL
)
647 else if (argv
[*skipptr
+2] != NULL
)
649 *valptr
= argv
[*skipptr
+2];
659 #ifdef DOUG_LEA_MALLOC
661 /* malloc can be invoked even before main (e.g. by the dynamic
662 linker), so the dumped malloc state must be restored as early as
663 possible using this special hook. */
666 malloc_initialize_hook ()
669 extern char **environ
;
674 if (!malloc_using_checking
)
675 /* Work around a bug in glibc's malloc. MALLOC_CHECK_ must be
676 ignored if the heap to be restored was constructed without
677 malloc checking. Can't use unsetenv, since that calls malloc. */
681 for (p
= environ
; p
&& *p
; p
++)
682 if (strncmp (*p
, "MALLOC_CHECK_=", 14) == 0)
691 malloc_set_state (malloc_state_ptr
);
692 free (malloc_state_ptr
);
695 malloc_using_checking
= getenv ("MALLOC_CHECK_") != NULL
;
698 void (*__malloc_initialize_hook
) () = malloc_initialize_hook
;
700 #endif /* DOUG_LEA_MALLOC */
704 main (argc
, argv
, envp
)
712 char stack_bottom_variable
;
713 int do_initial_setlocale
;
718 #ifdef HAVE_SETRLIMIT
724 extern Lisp_Object
*stack_base
;
728 #ifdef LINUX_SBRK_BUG
732 #ifdef RUN_TIME_REMAP
734 run_time_remap (argv
[0]);
737 sort_args (argc
, argv
);
739 while (argv
[argc
]) argc
++;
741 if (argmatch (argv
, argc
, "-version", "--version", 3, NULL
, &skip_args
)
742 /* We don't know the version number unless this is a dumped Emacs.
743 So ignore --version otherwise. */
747 tem
= Fsymbol_value (intern ("emacs-version"));
750 fprintf (stderr
, "Invalid value of `emacs-version'\n");
755 printf ("GNU Emacs %s\n", XSTRING (tem
)->data
);
756 printf ("Copyright (C) 2001 Free Software Foundation, Inc.\n");
757 printf ("GNU Emacs comes with ABSOLUTELY NO WARRANTY.\n");
758 printf ("You may redistribute copies of Emacs\n");
759 printf ("under the terms of the GNU General Public License.\n");
760 printf ("For more information about these matters, ");
761 printf ("see the file named COPYING.\n");
766 /* Map in shared memory, if we are using that. */
768 if (argmatch (argv
, argc
, "-nl", "--no-shared-memory", 6, NULL
, &skip_args
))
771 /* The shared memory was just restored, which clobbered this. */
777 /* The shared memory was just restored, which clobbered this. */
784 extern int malloc_cookie
;
785 /* This helps out unexnext.c. */
787 if (malloc_jumpstart (malloc_cookie
) != 0)
788 printf ("malloc jumpstart failed!\n");
793 /* If -map specified, map the data file in */
796 if (argmatch (argv
, argc
, "-map", "--map-data", 3, &mapin_file
, &skip_args
))
800 #ifdef LINK_CRTL_SHARE
801 #ifdef SHARABLE_LIB_BUG
802 /* Bletcherous shared libraries! */
804 stdin
= fdopen (0, "r");
806 stdout
= fdopen (1, "w");
808 stderr
= fdopen (2, "w");
811 #endif /* SHARABLE_LIB_BUG */
812 #endif /* LINK_CRTL_SHARE */
815 #if defined (HAVE_SETRLIMIT) && defined (RLIMIT_STACK)
816 /* Extend the stack space available.
817 Don't do that if dumping, since some systems (e.g. DJGPP)
818 might define a smaller stack limit at that time. */
821 && (!noninteractive
|| initialized
)
823 && !getrlimit (RLIMIT_STACK
, &rlim
))
826 extern int re_max_failures
;
827 /* Approximate the amount regex.c needs per unit of re_max_failures. */
828 int ratio
= 20 * sizeof (char *);
829 /* Then add 33% to cover the size of the smaller stacks that regex.c
830 successively allocates and discards, on its way to the maximum. */
832 /* Add in some extra to cover
833 what we're likely to use for other reasons. */
834 newlim
= re_max_failures
* ratio
+ 200000;
836 /* NetBSD (at least NetBSD 1.2G and former) has a bug in its
837 stack allocation routine for new process that the allocation
838 fails if stack limit is not on page boundary. So, round up the
839 new limit to page boundary. */
840 newlim
= (newlim
+ getpagesize () - 1) / getpagesize () * getpagesize();
842 if (newlim
> rlim
.rlim_max
)
844 newlim
= rlim
.rlim_max
;
845 /* Don't let regex.c overflow the stack we have. */
846 re_max_failures
= (newlim
- 200000) / ratio
;
848 if (rlim
.rlim_cur
< newlim
)
849 rlim
.rlim_cur
= newlim
;
851 setrlimit (RLIMIT_STACK
, &rlim
);
853 #endif /* HAVE_SETRLIMIT and RLIMIT_STACK */
855 /* Record (approximately) where the stack begins. */
856 stack_bottom
= &stack_bottom_variable
;
858 #ifdef USG_SHARED_LIBRARIES
860 brk ((void *)bss_end
);
865 #ifndef SYSTEM_MALLOC
866 /* Arrange to get warning messages as memory fills up. */
867 memory_warnings (0, malloc_warning
);
869 /* Call malloc at least once, to run the initial __malloc_hook.
870 Also call realloc and free for consistency. */
871 free (realloc (malloc (4), 4));
873 /* Arrange to disable interrupt input inside malloc etc. */
874 uninterrupt_malloc ();
875 #endif /* not SYSTEM_MALLOC */
878 /* We do all file input/output as binary files. When we need to translate
879 newlines, we do that manually. */
883 if (!isatty (fileno (stdin
)))
884 setmode (fileno (stdin
), O_BINARY
);
885 if (!isatty (fileno (stdout
)))
888 setmode (fileno (stdout
), O_BINARY
);
890 #else /* not __DJGPP__ >= 2 */
891 (stdin
)->_flag
&= ~_IOTEXT
;
892 (stdout
)->_flag
&= ~_IOTEXT
;
893 (stderr
)->_flag
&= ~_IOTEXT
;
894 #endif /* not __DJGPP__ >= 2 */
897 #ifdef SET_EMACS_PRIORITY
899 nice (emacs_priority
);
901 #endif /* SET_EMACS_PRIORITY */
903 /* Skip initial setlocale if LC_ALL is "C", as it's not needed in that case.
904 The build procedure uses this while dumping, to ensure that the
905 dumped Emacs does not have its system locale tables initialized,
906 as that might cause screwups when the dumped Emacs starts up. */
908 char *lc_all
= getenv ("LC_ALL");
909 do_initial_setlocale
= ! lc_all
|| strcmp (lc_all
, "C");
912 /* Set locale now, so that initial error messages are localized properly.
913 fixup_locale must wait until later, since it builds strings. */
914 if (do_initial_setlocale
)
915 setlocale (LC_ALL
, "");
917 #ifdef EXTRA_INITIALIZE
921 inhibit_window_system
= 0;
923 /* Handle the -t switch, which specifies filename to use as terminal */
927 if (argmatch (argv
, argc
, "-t", "--terminal", 4, &term
, &skip_args
))
932 result
= emacs_open (term
, O_RDWR
, 0);
935 char *errstring
= strerror (errno
);
936 fprintf (stderr
, "emacs: %s: %s\n", term
, errstring
);
942 fprintf (stderr
, "emacs: %s: not a tty\n", term
);
945 fprintf (stderr
, "Using %s\n", term
);
946 #ifdef HAVE_WINDOW_SYSTEM
947 inhibit_window_system
= 1; /* -t => -nw */
954 if (argmatch (argv
, argc
, "-nw", "--no-windows", 6, NULL
, &skip_args
))
955 inhibit_window_system
= 1;
957 /* Handle the -batch switch, which means don't do interactive display. */
959 if (argmatch (argv
, argc
, "-batch", "--batch", 5, NULL
, &skip_args
))
962 /* Handle the --help option, which gives a usage message.. */
963 if (argmatch (argv
, argc
, "-help", "--help", 3, NULL
, &skip_args
))
965 printf (USAGE1
, argv
[0]);
970 if (! noninteractive
)
975 inherited_pgroup
= EMACS_GETPGRP (0);
976 setpgrp (0, getpid ());
979 #if defined (USG5) && defined (INTERRUPT_INPUT)
987 /* Don't catch SIGHUP if dumping. */
994 sigblock (sigmask (SIGHUP
));
995 /* In --batch mode, don't catch SIGHUP if already ignored.
996 That makes nohup work. */
998 || signal (SIGHUP
, SIG_IGN
) != SIG_IGN
)
999 signal (SIGHUP
, fatal_error_signal
);
1000 sigunblock (sigmask (SIGHUP
));
1005 ! noninteractive
|| initialized
1011 /* Don't catch these signals in batch mode if dumping.
1012 On some machines, this sets static data that would make
1013 signal fail to work right when the dumped Emacs is run. */
1014 signal (SIGQUIT
, fatal_error_signal
);
1015 signal (SIGILL
, fatal_error_signal
);
1016 signal (SIGTRAP
, fatal_error_signal
);
1018 signal (SIGUSR1
, handle_USR1_signal
);
1020 signal (SIGUSR2
, handle_USR2_signal
);
1024 signal (SIGABRT
, fatal_error_signal
);
1027 signal (SIGHWE
, fatal_error_signal
);
1030 signal (SIGPRE
, fatal_error_signal
);
1033 signal (SIGORE
, fatal_error_signal
);
1036 signal (SIGUME
, fatal_error_signal
);
1039 signal (SIGDLK
, fatal_error_signal
);
1042 signal (SIGCPULIM
, fatal_error_signal
);
1045 /* This is missing on some systems - OS/2, for example. */
1046 signal (SIGIOT
, fatal_error_signal
);
1049 signal (SIGEMT
, fatal_error_signal
);
1051 signal (SIGFPE
, fatal_error_signal
);
1053 signal (SIGBUS
, fatal_error_signal
);
1055 signal (SIGSEGV
, fatal_error_signal
);
1057 signal (SIGSYS
, fatal_error_signal
);
1059 signal (SIGTERM
, fatal_error_signal
);
1061 signal (SIGXCPU
, fatal_error_signal
);
1064 signal (SIGXFSZ
, fatal_error_signal
);
1065 #endif /* SIGXFSZ */
1068 /* This just means available memory is getting low. */
1069 signal (SIGDANGER
, memory_warning_signal
);
1073 /* 20 is SIGCHLD, 21 is SIGTTIN, 22 is SIGTTOU. */
1074 signal (SIGXCPU
, fatal_error_signal
);
1076 signal (SIGIOINT
, fatal_error_signal
);
1078 signal (SIGGRANT
, fatal_error_signal
);
1079 signal (SIGRETRACT
, fatal_error_signal
);
1080 signal (SIGSOUND
, fatal_error_signal
);
1081 signal (SIGMSG
, fatal_error_signal
);
1085 noninteractive1
= noninteractive
;
1087 /* Perform basic initializations (not merely interning symbols) */
1094 init_charset_once ();
1095 init_coding_once ();
1096 init_syntax_once (); /* Create standard syntax table. */
1097 init_category_once (); /* Create standard category table. */
1098 /* Must be done before init_buffer */
1099 init_casetab_once ();
1100 init_buffer_once (); /* Create buffer table and some buffers */
1101 init_minibuf_once (); /* Create list of minibuffers */
1102 /* Must precede init_window_once */
1104 /* Call syms_of_xfaces before init_window_once because that
1105 function creates Vterminal_frame. Termcap frames now use
1106 faces, and the face implementation uses some symbols as
1109 /* Call syms_of_keyboard before init_window_once because
1110 keyboard sets up symbols that include some face names that
1111 the X support will want to use. This can happen when
1112 CANNOT_DUMP is defined. */
1113 syms_of_keyboard ();
1116 /* init_window_once calls make_terminal_frame which on Mac OS
1117 creates a full-fledge output_mac type frame. This does not
1118 work correctly before syms_of_textprop, syms_of_macfns,
1119 syms_of_ccl, syms_of_fontset, syms_of_xterm, syms_of_search,
1120 syms_of_frame, x_term_init, and init_keyboard have already
1122 syms_of_textprop ();
1136 init_window_once (); /* Init the window system */
1137 init_fileio_once (); /* Must precede any path manipulation. */
1142 if (do_initial_setlocale
)
1145 Vsystem_messages_locale
= Vprevious_system_messages_locale
;
1146 Vsystem_time_locale
= Vprevious_system_time_locale
;
1151 #ifdef CLASH_DETECTION
1155 running_asynch_code
= 0;
1157 /* Handle --unibyte and the EMACS_UNIBYTE envvar,
1158 but not while dumping. */
1161 ! noninteractive
|| initialized
1167 int inhibit_unibyte
= 0;
1169 /* --multibyte overrides EMACS_UNIBYTE. */
1170 if (argmatch (argv
, argc
, "-no-unibyte", "--no-unibyte", 4, NULL
, &skip_args
)
1171 || argmatch (argv
, argc
, "-multibyte", "--multibyte", 4, NULL
, &skip_args
))
1172 inhibit_unibyte
= 1;
1174 /* --unibyte requests that we set up to do everything with single-byte
1175 buffers and strings. We need to handle this before calling
1176 init_lread, init_editfns and other places that generate Lisp strings
1177 from text in the environment. */
1178 /* Actually this shouldn't be needed as of 20.4 in a generally
1179 unibyte environment. As handa says, environment values
1180 aren't now decoded; also existing buffers are now made
1181 unibyte during startup if .emacs sets unibyte. Tested with
1182 8-bit data in environment variables and /etc/passwd, setting
1183 unibyte and Latin-1 in .emacs. -- Dave Love */
1184 if (argmatch (argv
, argc
, "-unibyte", "--unibyte", 4, NULL
, &skip_args
)
1185 || argmatch (argv
, argc
, "-no-multibyte", "--no-multibyte", 4, NULL
, &skip_args
)
1186 || (getenv ("EMACS_UNIBYTE") && !inhibit_unibyte
))
1188 Lisp_Object old_log_max
;
1189 Lisp_Object symbol
, tail
;
1191 symbol
= intern ("default-enable-multibyte-characters");
1192 Fset (symbol
, Qnil
);
1196 /* Erase pre-dump messages in *Messages* now so no abort. */
1197 old_log_max
= Vmessage_log_max
;
1198 XSETFASTINT (Vmessage_log_max
, 0);
1199 message_dolog ("", 0, 1, 0);
1200 Vmessage_log_max
= old_log_max
;
1203 for (tail
= Vbuffer_alist
; CONSP (tail
);
1208 buffer
= Fcdr (XCAR (tail
));
1209 /* Verify that all buffers are empty now, as they
1211 if (BUF_Z (XBUFFER (buffer
)) > BUF_BEG (XBUFFER (buffer
)))
1213 /* It is safe to do this crudely in an empty buffer. */
1214 XBUFFER (buffer
)->enable_multibyte_characters
= Qnil
;
1220 = argmatch (argv
, argc
, "-nl", "--no-loadup", 6, NULL
, &skip_args
);
1223 #ifdef HAVE_X_WINDOWS
1224 /* Stupid kludge to catch command-line display spec. We can't
1225 handle this argument entirely in window system dependent code
1226 because we don't even know which window system dependent code
1227 to run until we've recognized this argument. */
1229 char *displayname
= 0;
1230 int count_before
= skip_args
;
1232 /* Skip any number of -d options, but only use the last one. */
1235 int count_before_this
= skip_args
;
1237 if (argmatch (argv
, argc
, "-d", "--display", 3, &displayname
, &skip_args
))
1239 else if (argmatch (argv
, argc
, "-display", 0, 3, &displayname
, &skip_args
))
1244 count_before
= count_before_this
;
1247 /* If we have the form --display=NAME,
1248 convert it into -d name.
1249 This requires inserting a new element into argv. */
1250 if (displayname
!= 0 && skip_args
- count_before
== 1)
1252 char **new = (char **) xmalloc (sizeof (char *) * (argc
+ 2));
1255 for (j
= 0; j
< count_before
+ 1; j
++)
1257 new[count_before
+ 1] = "-d";
1258 new[count_before
+ 2] = displayname
;
1259 for (j
= count_before
+ 2; j
<argc
; j
++)
1260 new[j
+ 1] = argv
[j
];
1264 /* Change --display to -d, when its arg is separate. */
1265 else if (displayname
!= 0 && skip_args
> count_before
1266 && argv
[count_before
+ 1][1] == '-')
1267 argv
[count_before
+ 1] = "-d";
1269 /* Don't actually discard this arg. */
1270 skip_args
= count_before
;
1274 /* argmatch must not be used after here,
1275 except when bulding temacs
1276 because the -d argument has not been skipped in skip_args. */
1279 /* Call early 'cause init_environment needs it. */
1281 /* Set defaults for several environment variables. */
1283 init_environment (argc
, argv
, skip_args
);
1289 /* Initialize environment from registry settings. */
1290 init_environment (argv
);
1291 init_ntproc (); /* must precede init_editfns */
1294 /* egetenv is a pretty low-level facility, which may get called in
1295 many circumstances; it seems flimsy to put off initializing it
1296 until calling init_callproc. */
1297 set_process_environment ();
1298 /* AIX crashes are reported in system versions 3.2.3 and 3.2.4
1299 if this is not done. Do it after set_process_environment so that we
1300 don't pollute Vprocess_environment. */
1301 /* Setting LANG here will defeat the startup locale processing... */
1306 init_buffer (); /* Init default directory of main buffer */
1308 init_callproc_1 (); /* Must precede init_cmdargs and init_sys_modes. */
1309 init_cmdargs (argc
, argv
, skip_args
); /* Must precede init_lread. */
1313 /* Erase any pre-dump messages in the message log, to avoid confusion */
1314 Lisp_Object old_log_max
;
1315 old_log_max
= Vmessage_log_max
;
1316 XSETFASTINT (Vmessage_log_max
, 0);
1317 message_dolog ("", 0, 1, 0);
1318 Vmessage_log_max
= old_log_max
;
1321 init_callproc (); /* Must follow init_cmdargs but not init_sys_modes. */
1324 /* Intern the names of all standard functions and variables;
1325 define standard keys. */
1329 /* The basic levels of Lisp must come first */
1330 /* And data must come first of all
1331 for the sake of symbols like error-message */
1333 /* Called before init_window_once for Mac OS. */
1341 syms_of_floatfns ();
1345 syms_of_bytecode ();
1347 syms_of_casefiddle ();
1349 syms_of_callproc ();
1350 syms_of_category ();
1352 /* Called before init_window_once for Mac OS. */
1357 #ifndef NO_DIR_LIBRARY
1359 #endif /* not NO_DIR_LIBRARY */
1365 syms_of_coding (); /* This should be after syms_of_fileio. */
1366 #ifdef CLASH_DETECTION
1367 syms_of_filelock ();
1368 #endif /* CLASH_DETECTION */
1375 syms_of_mocklisp ();
1378 /* Called before init_window_once for Mac OS. */
1389 /* Called before init_window_once for Mac OS. */
1390 syms_of_textprop ();
1392 syms_of_composite ();
1398 #endif /* WINDOWSNT */
1401 #ifdef HAVE_X_WINDOWS
1408 #endif /* HAVE_X_WINDOWS */
1419 syms_of_w32select ();
1422 #endif /* HAVE_NTGUI */
1432 keys_of_casefiddle ();
1435 keys_of_keyboard ();
1443 if (!noninteractive
)
1446 init_vms_input ();/* init_display calls get_frame_size, that needs this */
1448 init_display (); /* Determine terminal type. init_sys_modes uses results */
1451 /* Called before init_window_once for Mac OS. */
1452 init_keyboard (); /* This too must precede init_sys_modes */
1455 init_vmsproc (); /* And this too. */
1457 init_sys_modes (); /* Init system terminal modes (RAW or CBREAK, etc.) */
1458 #ifdef HAVE_X_WINDOWS
1460 #endif /* HAVE_X_WINDOWS */
1478 /* Handle -l loadup, args passed by Makefile. */
1479 if (argmatch (argv
, argc
, "-l", "--load", 3, &file
, &skip_args
))
1480 Vtop_level
= Fcons (intern ("load"),
1481 Fcons (build_string (file
), Qnil
));
1483 /* Unless next switch is -nl, load "loadup.el" first thing. */
1485 Vtop_level
= Fcons (intern ("load"),
1486 Fcons (build_string ("loadup.el"), Qnil
));
1487 #endif /* CANNOT_DUMP */
1494 /* If the execution TZ happens to be the same as the dump TZ,
1495 change it to some other value and then change it back,
1496 to force the underlying implementation to reload the TZ info.
1497 This is needed on implementations that load TZ info from files,
1498 since the TZ file contents may differ between dump and execution. */
1499 char *tz
= getenv ("TZ");
1500 if (tz
&& !strcmp (tz
, dump_tz
))
1510 /* Set up for profiling. This is known to work on FreeBSD and
1511 GNU/Linux. It might work on some other systems too. Give it a
1512 try and tell us if it works on your system. To compile for
1513 profiling use something like `make CFLAGS="-pg -g -O -DPROFILING=1'. */
1514 #if defined (__FreeBSD__) || defined (__linux)
1518 extern void _mcleanup ();
1520 extern void safe_bcopy ();
1521 extern void dump_opcode_frequencies ();
1524 /* This uses safe_bcopy because that function comes first in the
1525 Emacs executable. It might be better to use something that
1526 gives the start of the text segment, but start_of_text is not
1527 defined on all systems now. */
1528 monstartup (safe_bcopy
, &etext
);
1537 #ifdef LOCALTIME_CACHE
1538 /* Some versions of localtime have a bug. They cache the value of the time
1539 zone rather than looking it up every time. Since localtime() is
1540 called to bolt the undumping time into the undumped emacs, this
1541 results in localtime ignoring the TZ environment variable.
1542 This flushes the new TZ value into localtime. */
1544 #endif /* defined (LOCALTIME_CACHE) */
1546 /* Enter editor command loop. This never returns. */
1552 /* Sort the args so we can find the most important ones
1553 at the beginning of argv. */
1555 /* First, here's a table of all the standard options. */
1557 struct standard_args
1565 struct standard_args standard_args
[] =
1567 { "-version", "--version", 150, 0 },
1569 { "-nl", "--no-shared-memory", 140, 0 },
1572 { "-map", "--map-data", 130, 0 },
1574 { "-t", "--terminal", 120, 1 },
1575 { "-nw", "--no-windows", 110, 0 },
1576 { "-batch", "--batch", 100, 0 },
1577 { "-help", "--help", 90, 0 },
1578 { "-no-unibyte", "--no-unibyte", 83, 0 },
1579 { "-multibyte", "--multibyte", 82, 0 },
1580 { "-unibyte", "--unibyte", 81, 0 },
1581 { "-no-multibyte", "--no-multibyte", 80, 0 },
1583 { "-nl", "--no-loadup", 70, 0 },
1585 /* -d must come last before the options handled in startup.el. */
1586 { "-d", "--display", 60, 1 },
1587 { "-display", 0, 60, 1 },
1588 /* Now for the options handled in startup.el. */
1589 { "-q", "--no-init-file", 50, 0 },
1590 { "-no-init-file", 0, 50, 0 },
1591 { "-no-site-file", "--no-site-file", 40, 0 },
1592 { "-u", "--user", 30, 1 },
1593 { "-user", 0, 30, 1 },
1594 { "-debug-init", "--debug-init", 20, 0 },
1595 { "-i", "--icon-type", 15, 0 },
1596 { "-itype", 0, 15, 0 },
1597 { "-iconic", "--iconic", 15, 0 },
1598 { "-bg", "--background-color", 10, 1 },
1599 { "-background", 0, 10, 1 },
1600 { "-fg", "--foreground-color", 10, 1 },
1601 { "-foreground", 0, 10, 1 },
1602 { "-bd", "--border-color", 10, 1 },
1603 { "-bw", "--border-width", 10, 1 },
1604 { "-ib", "--internal-border", 10, 1 },
1605 { "-ms", "--mouse-color", 10, 1 },
1606 { "-cr", "--cursor-color", 10, 1 },
1607 { "-fn", "--font", 10, 1 },
1608 { "-font", 0, 10, 1 },
1609 { "-g", "--geometry", 10, 1 },
1610 { "-geometry", 0, 10, 1 },
1611 { "-T", "--title", 10, 1 },
1612 { "-title", 0, 10, 1 },
1613 { "-name", "--name", 10, 1 },
1614 { "-xrm", "--xrm", 10, 1 },
1615 { "-r", "--reverse-video", 5, 0 },
1617 { "-reverse", 0, 5, 0 },
1618 { "-hb", "--horizontal-scroll-bars", 5, 0 },
1619 { "-vb", "--vertical-scroll-bars", 5, 0 },
1620 /* These have the same priority as ordinary file name args,
1621 so they are not reordered with respect to those. */
1622 { "-L", "--directory", 0, 1 },
1623 { "-directory", 0, 0, 1 },
1624 { "-l", "--load", 0, 1 },
1625 { "-load", 0, 0, 1 },
1626 { "-f", "--funcall", 0, 1 },
1627 { "-funcall", 0, 0, 1 },
1628 { "-eval", "--eval", 0, 1 },
1629 { "-execute", "--execute", 0, 1 },
1630 { "-find-file", "--find-file", 0, 1 },
1631 { "-visit", "--visit", 0, 1 },
1632 { "-file", "--file", 0, 1 },
1633 { "-insert", "--insert", 0, 1 },
1634 /* This should be processed after ordinary file name args and the like. */
1635 { "-kill", "--kill", -10, 0 },
1638 /* Reorder the elements of ARGV (assumed to have ARGC elements)
1639 so that the highest priority ones come first.
1640 Do not change the order of elements of equal priority.
1641 If an option takes an argument, keep it and its argument together.
1643 If an option that takes no argument appears more
1644 than once, eliminate all but one copy of it. */
1647 sort_args (argc
, argv
)
1651 char **new = (char **) xmalloc (sizeof (char *) * argc
);
1652 /* For each element of argv,
1653 the corresponding element of options is:
1654 0 for an option that takes no arguments,
1655 1 for an option that takes one argument, etc.
1656 -1 for an ordinary non-option argument. */
1657 int *options
= (int *) xmalloc (sizeof (int) * argc
);
1658 int *priority
= (int *) xmalloc (sizeof (int) * argc
);
1660 int incoming_used
= 1;
1664 /* Categorize all the options,
1665 and figure out which argv elts are option arguments. */
1666 for (from
= 1; from
< argc
; from
++)
1670 if (argv
[from
][0] == '-')
1675 /* If we have found "--", don't consider
1676 any more arguments as options. */
1677 if (argv
[from
][1] == '-' && argv
[from
][2] == 0)
1679 /* Leave the "--", and everything following it, at the end. */
1680 for (; from
< argc
; from
++)
1682 priority
[from
] = -100;
1688 /* Look for a match with a known old-fashioned option. */
1689 for (i
= 0; i
< sizeof (standard_args
) / sizeof (standard_args
[0]); i
++)
1690 if (!strcmp (argv
[from
], standard_args
[i
].name
))
1692 options
[from
] = standard_args
[i
].nargs
;
1693 priority
[from
] = standard_args
[i
].priority
;
1694 if (from
+ standard_args
[i
].nargs
>= argc
)
1695 fatal ("Option `%s' requires an argument\n", argv
[from
]);
1696 from
+= standard_args
[i
].nargs
;
1700 /* Look for a match with a known long option.
1701 MATCH is -1 if no match so far, -2 if two or more matches so far,
1702 >= 0 (the table index of the match) if just one match so far. */
1703 if (argv
[from
][1] == '-')
1706 thislen
= strlen (argv
[from
]);
1707 equals
= index (argv
[from
], '=');
1709 thislen
= equals
- argv
[from
];
1712 i
< sizeof (standard_args
) / sizeof (standard_args
[0]); i
++)
1713 if (standard_args
[i
].longname
1714 && !strncmp (argv
[from
], standard_args
[i
].longname
,
1723 /* If we found exactly one match, use that. */
1726 options
[from
] = standard_args
[match
].nargs
;
1727 priority
[from
] = standard_args
[match
].priority
;
1728 /* If --OPTION=VALUE syntax is used,
1729 this option uses just one argv element. */
1732 if (from
+ options
[from
] >= argc
)
1733 fatal ("Option `%s' requires an argument\n", argv
[from
]);
1734 from
+= options
[from
];
1741 /* Copy the arguments, in order of decreasing priority, to NEW. */
1743 while (incoming_used
< argc
)
1746 int best_priority
= -9999;
1748 /* Find the highest priority remaining option.
1749 If several have equal priority, take the first of them. */
1750 for (from
= 1; from
< argc
; from
++)
1752 if (argv
[from
] != 0 && priority
[from
] > best_priority
)
1754 best_priority
= priority
[from
];
1757 /* Skip option arguments--they are tied to the options. */
1758 if (options
[from
] > 0)
1759 from
+= options
[from
];
1765 /* Copy the highest priority remaining option, with its args, to NEW.
1766 Unless it is a duplicate of the previous one. */
1767 if (! (options
[best
] == 0
1768 && ! strcmp (new[to
- 1], argv
[best
])))
1770 new[to
++] = argv
[best
];
1771 for (i
= 0; i
< options
[best
]; i
++)
1772 new[to
++] = argv
[best
+ i
+ 1];
1775 incoming_used
+= 1 + (options
[best
] > 0 ? options
[best
] : 0);
1777 /* Clear out this option in ARGV. */
1779 for (i
= 0; i
< options
[best
]; i
++)
1780 argv
[best
+ i
+ 1] = 0;
1783 /* If duplicate options were deleted, fill up extra space with null ptrs. */
1787 bcopy (new, argv
, sizeof (char *) * argc
);
1794 DEFUN ("kill-emacs", Fkill_emacs
, Skill_emacs
, 0, 1, "P",
1795 "Exit the Emacs job and kill it.\n\
1796 If ARG is an integer, return ARG as the exit program code.\n\
1797 If ARG is a string, stuff it as keyboard input.\n\n\
1798 The value of `kill-emacs-hook', if not void,\n\
1799 is a list of functions (of no args),\n\
1800 all of which are called before Emacs is actually killed.")
1804 struct gcpro gcpro1
;
1811 if (!NILP (Vrun_hooks
) && !noninteractive
)
1812 call1 (Vrun_hooks
, intern ("kill-emacs-hook"));
1816 /* Is it really necessary to do this deassign
1817 when we are going to exit anyway? */
1822 shut_down_emacs (0, 0, STRINGP (arg
) ? arg
: Qnil
);
1824 /* If we have an auto-save list file,
1825 kill it because we are exiting Emacs deliberately (not crashing).
1826 Do it after shut_down_emacs, which does an auto-save. */
1827 if (STRINGP (Vauto_save_list_file_name
))
1828 unlink (XSTRING (Vauto_save_list_file_name
)->data
);
1830 exit (INTEGERP (arg
) ? XINT (arg
)
1841 /* Perform an orderly shutdown of Emacs. Autosave any modified
1842 buffers, kill any child processes, clean up the terminal modes (if
1843 we're in the foreground), and other stuff like that. Don't perform
1844 any redisplay; this may be called when Emacs is shutting down in
1845 the background, or after its X connection has died.
1847 If SIG is a signal number, print a message for it.
1849 This is called by fatal signal handlers, X protocol error handlers,
1853 shut_down_emacs (sig
, no_x
, stuff
)
1857 /* Prevent running of hooks from now on. */
1860 /* If we are controlling the terminal, reset terminal modes */
1861 #ifdef EMACS_HAVE_TTY_PGRP
1863 int pgrp
= EMACS_GETPGRP (0);
1866 if (EMACS_GET_TTY_PGRP (0, &tpgrp
) != -1
1871 if (sig
&& sig
!= SIGTERM
)
1872 fprintf (stderr
, "Fatal error (%d).", sig
);
1880 stuff_buffered_input (stuff
);
1882 kill_buffer_processes (Qnil
);
1883 Fdo_auto_save (Qt
, Qnil
);
1885 #ifdef CLASH_DETECTION
1886 unlock_all_files ();
1890 kill_vms_processes ();
1893 #if 0 /* This triggers a bug in XCloseDisplay and is not needed. */
1894 #ifdef HAVE_X_WINDOWS
1895 /* It's not safe to call intern here. Maybe we are crashing. */
1896 if (!noninteractive
&& SYMBOLP (Vwindow_system
)
1897 && XSYMBOL (Vwindow_system
)->name
->size
== 1
1898 && XSYMBOL (Vwindow_system
)->name
->data
[0] == 'x'
1900 Fx_close_current_connection ();
1901 #endif /* HAVE_X_WINDOWS */
1905 /* There is a tendency for a SIGIO signal to arrive within exit,
1906 and cause a SIGHUP because the input descriptor is already closed. */
1908 signal (SIGIO
, SIG_IGN
);
1915 check_glyph_memory ();
1916 check_message_stack ();
1929 DEFUN ("dump-emacs-data", Fdump_emacs_data
, Sdump_emacs_data
, 1, 1, 0,
1930 "Dump current state of Emacs into data file FILENAME.\n\
1931 This function exists on systems that use HAVE_SHM.")
1933 Lisp_Object filename
;
1935 extern char my_edata
[];
1938 CHECK_STRING (filename
, 0);
1939 filename
= Fexpand_file_name (filename
, Qnil
);
1942 Vpurify_flag
= Qnil
;
1945 /* Tell malloc where start of impure now is */
1946 /* Also arrange for warnings when nearly out of space. */
1947 #ifndef SYSTEM_MALLOC
1948 memory_warnings (my_edata
, malloc_warning
);
1950 map_out_data (XSTRING (filename
)->data
);
1957 #else /* not HAVE_SHM */
1959 DEFUN ("dump-emacs", Fdump_emacs
, Sdump_emacs
, 2, 2, 0,
1960 "Dump current state of Emacs into executable file FILENAME.\n\
1961 Take symbols from SYMFILE (presumably the file you executed to run Emacs).\n\
1962 This is used in the file `loadup.el' when building Emacs.\n\
1964 You must run Emacs in batch mode in order to dump it.")
1966 Lisp_Object filename
, symfile
;
1968 extern char my_edata
[];
1971 int count
= specpdl_ptr
- specpdl
;
1973 if (! noninteractive
)
1974 error ("Dumping Emacs works only in batch mode");
1976 /* Bind `command-line-processed' to nil before dumping,
1977 so that the dumped Emacs will process its command line
1978 and set up to work with X windows if appropriate. */
1979 symbol
= intern ("command-line-process");
1980 specbind (symbol
, Qnil
);
1982 CHECK_STRING (filename
, 0);
1983 filename
= Fexpand_file_name (filename
, Qnil
);
1984 if (!NILP (symfile
))
1986 CHECK_STRING (symfile
, 0);
1987 if (XSTRING (symfile
)->size
)
1988 symfile
= Fexpand_file_name (symfile
, Qnil
);
1992 Vpurify_flag
= Qnil
;
1995 set_time_zone_rule (dump_tz
);
1996 #ifndef LOCALTIME_CACHE
1997 /* Force a tz reload, since set_time_zone_rule doesn't. */
2004 mapout_data (XSTRING (filename
)->data
);
2006 /* Tell malloc where start of impure now is */
2007 /* Also arrange for warnings when nearly out of space. */
2008 #ifndef SYSTEM_MALLOC
2010 /* On Windows, this was done before dumping, and that once suffices.
2011 Meanwhile, my_edata is not valid on Windows. */
2012 memory_warnings (my_edata
, malloc_warning
);
2013 #endif /* not WINDOWSNT */
2015 #ifdef DOUG_LEA_MALLOC
2016 malloc_state_ptr
= malloc_get_state ();
2019 #ifdef USE_MMAP_FOR_BUFFERS
2022 unexec (XSTRING (filename
)->data
,
2023 !NILP (symfile
) ? XSTRING (symfile
)->data
: 0, my_edata
, 0, 0);
2024 #ifdef USE_MMAP_FOR_BUFFERS
2027 #ifdef DOUG_LEA_MALLOC
2028 free (malloc_state_ptr
);
2030 #endif /* not VMS */
2034 return unbind_to (count
, Qnil
);
2037 #endif /* not HAVE_SHM */
2039 #endif /* not CANNOT_DUMP */
2042 /* Recover from setlocale (LC_ALL, ""). */
2046 /* The Emacs Lisp reader needs LC_NUMERIC to be "C",
2047 so that numbers are read and printed properly for Emacs Lisp. */
2048 setlocale (LC_NUMERIC
, "C");
2051 /* Set system locale CATEGORY, with previous locale *PLOCALE, to
2054 synchronize_locale (category
, plocale
, desired_locale
)
2056 Lisp_Object
*plocale
;
2057 Lisp_Object desired_locale
;
2059 if (! EQ (*plocale
, desired_locale
))
2061 *plocale
= desired_locale
;
2062 setlocale (category
, (STRINGP (desired_locale
)
2063 ? (char *)(XSTRING (desired_locale
)->data
)
2068 /* Set system time locale to match Vsystem_time_locale, if possible. */
2070 synchronize_system_time_locale ()
2072 synchronize_locale (LC_TIME
, &Vprevious_system_time_locale
,
2073 Vsystem_time_locale
);
2076 /* Set system messages locale to match Vsystem_messages_locale, if
2079 synchronize_system_messages_locale ()
2082 synchronize_locale (LC_MESSAGES
, &Vprevious_system_messages_locale
,
2083 Vsystem_messages_locale
);
2086 #endif /* HAVE_SETLOCALE */
2093 decode_env_path (evarname
, defalt
)
2094 char *evarname
, *defalt
;
2096 register char *path
, *p
;
2097 Lisp_Object lpath
, element
, tem
;
2099 /* It's okay to use getenv here, because this function is only used
2100 to initialize variables when Emacs starts up, and isn't called
2103 path
= (char *) getenv (evarname
);
2109 /* Ensure values from the environment use the proper directory separator. */
2112 p
= alloca (strlen (path
) + 1);
2116 if ('/' == DIRECTORY_SEP
)
2117 dostounix_filename (path
);
2119 unixtodos_filename (path
);
2125 p
= index (path
, SEPCHAR
);
2126 if (!p
) p
= path
+ strlen (path
);
2127 element
= (p
- path
? make_string (path
, p
- path
)
2128 : build_string ("."));
2130 /* Add /: to the front of the name
2131 if it would otherwise be treated as magic. */
2132 tem
= Ffind_file_name_handler (element
, Qt
);
2134 element
= concat2 (build_string ("/:"), element
);
2136 lpath
= Fcons (element
, lpath
);
2142 return Fnreverse (lpath
);
2148 Qfile_name_handler_alist
= intern ("file-name-handler-alist");
2149 staticpro (&Qfile_name_handler_alist
);
2153 defsubr (&Sdump_emacs_data
);
2155 defsubr (&Sdump_emacs
);
2159 defsubr (&Skill_emacs
);
2161 defsubr (&Sinvocation_name
);
2162 defsubr (&Sinvocation_directory
);
2164 DEFVAR_LISP ("command-line-args", &Vcommand_line_args
,
2165 "Args passed by shell to Emacs, as a list of strings.");
2167 DEFVAR_LISP ("system-type", &Vsystem_type
,
2168 "Value is symbol indicating type of operating system you are using.");
2169 Vsystem_type
= intern (SYSTEM_TYPE
);
2171 DEFVAR_LISP ("system-configuration", &Vsystem_configuration
,
2172 "Value is string indicating configuration Emacs was built for.\n\
2173 On MS-Windows, the value reflects the OS flavor and version on which\n\
2174 Emacs is running.");
2175 Vsystem_configuration
= build_string (EMACS_CONFIGURATION
);
2177 DEFVAR_LISP ("system-configuration-options", &Vsystem_configuration_options
,
2178 "String containing the configuration options Emacs was built with.");
2179 Vsystem_configuration_options
= build_string (EMACS_CONFIG_OPTIONS
);
2181 DEFVAR_BOOL ("noninteractive", &noninteractive1
,
2182 "Non-nil means Emacs is running without interactive terminal.");
2184 DEFVAR_LISP ("kill-emacs-hook", &Vkill_emacs_hook
,
2185 "Hook to be run whenever kill-emacs is called.\n\
2186 Since kill-emacs may be invoked when the terminal is disconnected (or\n\
2187 in other similar situations), functions placed on this hook should not\n\
2188 expect to be able to interact with the user. To ask for confirmation,\n\
2189 see `kill-emacs-query-functions' instead.");
2190 Vkill_emacs_hook
= Qnil
;
2193 DEFVAR_LISP ("signal-USR1-hook", &Vsignal_USR1_hook
,
2194 "Hook to be run whenever emacs receives a USR1 signal");
2195 Vsignal_USR1_hook
= Qnil
;
2197 DEFVAR_LISP ("signal-USR2-hook", &Vsignal_USR2_hook
,
2198 "Hook to be run whenever emacs receives a USR2 signal");
2199 Vsignal_USR2_hook
= Qnil
;
2204 DEFVAR_INT ("emacs-priority", &emacs_priority
,
2205 "Priority for Emacs to run at.\n\
2206 This value is effective only if set before Emacs is dumped,\n\
2207 and only if the Emacs executable is installed with setuid to permit\n\
2208 it to change priority. (Emacs sets its uid back to the real uid.)\n\
2209 Currently, you need to define SET_EMACS_PRIORITY in `config.h'\n\
2210 before you compile Emacs, to enable the code for this feature.");
2213 DEFVAR_LISP ("path-separator", &Vpath_separator
,
2214 "The directory separator in search paths, as a string.");
2217 Vpath_separator
= make_string (&c
, 1);
2220 DEFVAR_LISP ("invocation-name", &Vinvocation_name
,
2221 "The program name that was used to run Emacs.\n\
2222 Any directory names are omitted.");
2224 DEFVAR_LISP ("invocation-directory", &Vinvocation_directory
,
2225 "The directory in which the Emacs executable was found, to run it.\n\
2226 The value is nil if that directory's name is not known.");
2228 DEFVAR_LISP ("installation-directory", &Vinstallation_directory
,
2229 "A directory within which to look for the `lib-src' and `etc' directories.\n\
2230 This is non-nil when we can't find those directories in their standard\n\
2231 installed locations, but we can find them\n\
2232 near where the Emacs executable was found.");
2233 Vinstallation_directory
= Qnil
;
2235 DEFVAR_LISP ("system-messages-locale", &Vsystem_messages_locale
,
2236 "System locale for messages.");
2237 Vsystem_messages_locale
= Qnil
;
2239 DEFVAR_LISP ("previous-system-messages-locale",
2240 &Vprevious_system_messages_locale
,
2241 "Most recently used system locale for messages.");
2242 Vprevious_system_messages_locale
= Qnil
;
2244 DEFVAR_LISP ("system-time-locale", &Vsystem_time_locale
,
2245 "System locale for time.");
2246 Vsystem_time_locale
= Qnil
;
2248 DEFVAR_LISP ("previous-system-time-locale", &Vprevious_system_time_locale
,
2249 "Most recently used system locale for time.");
2250 Vprevious_system_time_locale
= Qnil
;