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/>. */
27 #include <sys/types.h>
35 #include <sys/ioctl.h>
40 #include <windows.h> /* just for w32.h */
42 #include "w32heap.h" /* for prototype of sbrk */
45 #ifdef NS_IMPL_GNUSTEP
46 /* At least under Debian, GSConfig is in a subdirectory. --Stef */
47 #include <GNUstepBase/GSConfig.h>
52 #include "intervals.h"
57 #include "blockinput.h"
58 #include "syssignal.h"
61 #include "termhooks.h"
71 #include <sys/resource.h>
74 #ifdef HAVE_PERSONALITY_LINUX32
75 #include <sys/personality.h>
83 #if !defined (USG) || defined (BSD_PGRPS)
85 #define setpgrp setpgid
89 extern void malloc_warning
P_ ((char *));
90 extern void set_time_zone_rule
P_ ((char *));
92 extern char *index
P_ ((const char *, int));
95 /* Make these values available in GDB, which doesn't see macros. */
102 #ifndef USE_LISP_UNION_TYPE
103 int gdb_use_union
= 0;
105 int gdb_use_union
= 1;
107 EMACS_INT gdb_valbits
= VALBITS
;
108 EMACS_INT gdb_gctypebits
= GCTYPEBITS
;
110 EMACS_INT gdb_data_seg_bits
= DATA_SEG_BITS
;
112 EMACS_INT gdb_data_seg_bits
= 0;
114 EMACS_INT PVEC_FLAG
= PSEUDOVECTOR_FLAG
;
115 EMACS_INT gdb_array_mark_flag
= ARRAY_MARK_FLAG
;
116 /* GDB might say "No enum type named pvec_type" if we don't have at
117 least one symbol with that type, and then xbacktrace could fail. */
118 enum pvec_type gdb_pvec_type
= PVEC_TYPE_MASK
;
120 /* Command line args from shell, as list of strings. */
121 Lisp_Object Vcommand_line_args
;
123 /* The name under which Emacs was invoked, with any leading directory
125 Lisp_Object Vinvocation_name
;
127 /* The directory name from which Emacs was invoked. */
128 Lisp_Object Vinvocation_directory
;
130 /* The directory name in which to find subdirs such as lisp and etc.
131 nil means get them only from PATH_LOADSEARCH. */
132 Lisp_Object Vinstallation_directory
;
134 /* Hook run by `kill-emacs' before it does really anything. */
135 Lisp_Object Vkill_emacs_hook
;
137 /* Empty lisp strings. To avoid having to build any others. */
138 Lisp_Object empty_unibyte_string
, empty_multibyte_string
;
140 /* Search path separator. */
141 Lisp_Object Vpath_separator
;
143 /* Set nonzero after Emacs has started up the first time.
144 Prevents reinitialization of the Lisp world and keymaps
145 on subsequent starts. */
148 #ifdef DOUG_LEA_MALLOC
149 /* Preserves a pointer to the memory allocated that copies that
150 static data inside glibc's malloc. */
151 void *malloc_state_ptr
;
152 /* From glibc, a routine that returns a copy of the malloc internal state. */
153 extern void *malloc_get_state ();
154 /* From glibc, a routine that overwrites the malloc internal state. */
155 extern int malloc_set_state ();
156 /* Non-zero if the MALLOC_CHECK_ enviroment variable was set while
157 dumping. Used to work around a bug in glibc's malloc. */
158 int malloc_using_checking
;
161 /* Variable whose value is symbol giving operating system type. */
162 Lisp_Object Vsystem_type
;
164 /* Variable whose value is string giving configuration built for. */
165 Lisp_Object Vsystem_configuration
;
167 /* Variable whose value is string giving configuration options,
168 for use when reporting bugs. */
169 Lisp_Object Vsystem_configuration_options
;
171 Lisp_Object Qfile_name_handler_alist
;
173 /* Current and previous system locales for messages and time. */
174 Lisp_Object Vsystem_messages_locale
;
175 Lisp_Object Vprevious_system_messages_locale
;
176 Lisp_Object Vsystem_time_locale
;
177 Lisp_Object Vprevious_system_time_locale
;
179 /* If non-zero, emacs should not attempt to use a window-specific code,
180 but instead should use the virtual terminal under which it was started. */
181 int inhibit_window_system
;
183 /* If nonzero, set Emacs to run at this priority. This is also used
184 in child_setup and sys_suspend to make sure subshells run at normal
185 priority; those functions have their own extern declaration. */
186 EMACS_INT emacs_priority
;
188 /* If non-zero, a filter or a sentinel is running. Tested to save the match
189 data on the first attempt to change it inside asynchronous code. */
190 int running_asynch_code
;
194 extern int inherited_pgroup
;
197 #if defined(HAVE_X_WINDOWS) || defined(HAVE_NS)
198 /* If non-zero, -d was specified, meaning we're using some window system. */
202 /* An address near the bottom of the stack.
203 Tells GC how to save a copy of the stack. */
206 /* The address where the heap starts (from the first sbrk (0) call). */
207 static void *my_heap_start
;
209 /* The gap between BSS end and heap start as far as we can tell. */
210 static unsigned long heap_bss_diff
;
212 /* If the gap between BSS end and heap start is larger than this we try to
213 work around it, and if that fails, output a warning in dump-emacs. */
214 #define MAX_HEAP_BSS_DIFF (1024*1024)
217 #ifdef HAVE_WINDOW_SYSTEM
218 extern Lisp_Object Vinitial_window_system
;
219 #endif /* HAVE_WINDOW_SYSTEM */
221 extern Lisp_Object Vauto_save_list_file_name
;
223 extern Lisp_Object Vinhibit_redisplay
;
225 /* Nonzero means running Emacs without interactive terminal. */
229 /* Value of Lisp variable `noninteractive'.
230 Normally same as C variable `noninteractive'
231 but nothing terrible happens if user sets this one. */
235 /* Save argv and argc. */
239 static void sort_args ();
240 void syms_of_emacs ();
242 /* MSVC needs each string be shorter than 2048 bytes, so the usage
243 strings below are split to not overflow this limit. */
245 Usage: %s [OPTION-OR-FILENAME]...\n\
247 Run Emacs, the extensible, customizable, self-documenting real-time\n\
248 display editor. The recommended way to start Emacs for normal editing\n\
249 is with no options at all.\n\
251 Run M-x info RET m emacs RET m emacs invocation RET inside Emacs to\n\
252 read the main documentation for these command-line arguments.\n\
254 Initialization options:\n\
256 --batch do not do interactive display; implies -q\n\
257 --debug-init enable Emacs Lisp debugger for init file\n\
258 --display, -d DISPLAY use X server DISPLAY\n\
259 --multibyte, --no-unibyte inhibit the effect of EMACS_UNIBYTE\n\
260 --no-desktop do not load a saved desktop\n\
261 --no-init-file, -q load neither ~/.emacs nor default.el\n\
262 --no-shared-memory, -nl do not use shared memory\n\
263 --no-site-file do not load site-start.el\n\
264 --no-splash do not display a splash screen on startup\n\
265 --no-window-system, -nw do not communicate with X, ignoring $DISPLAY\n\
266 --quick, -Q equivalent to -q --no-site-file --no-splash\n\
267 --script FILE run FILE as an Emacs Lisp script\n\
268 --terminal, -t DEVICE use DEVICE for terminal I/O\n\
269 --unibyte, --no-multibyte run Emacs in unibyte mode\n\
270 --user, -u USER load ~USER/.emacs instead of your own\n\
276 FILE visit FILE using find-file\n\
277 +LINE go to line LINE in next FILE\n\
278 +LINE:COLUMN go to line LINE, column COLUMN, in next FILE\n\
279 --directory, -L DIR add DIR to variable load-path\n\
280 --eval EXPR evaluate Emacs Lisp expression EXPR\n\
281 --execute EXPR evaluate Emacs Lisp expression EXPR\n\
282 --file FILE visit FILE using find-file\n\
283 --find-file FILE visit FILE using find-file\n\
284 --funcall, -f FUNC call Emacs Lisp function FUNC with no arguments\n\
285 --insert FILE insert contents of FILE into current buffer\n\
286 --kill exit without asking for confirmation\n\
287 --load, -l FILE load Emacs Lisp FILE using the load function\n\
288 --visit FILE visit FILE using find-file\n\
294 --background-color, -bg COLOR window background color\n\
295 --basic-display, -D disable many display features;\n\
296 used for debugging Emacs\n\
297 --border-color, -bd COLOR main border color\n\
298 --border-width, -bw WIDTH width of main border\n\
299 --color, --color=MODE override color mode for character terminals;\n\
300 MODE defaults to `auto', and can also\n\
301 be `never', `auto', `always',\n\
302 or a mode name like `ansi8'\n\
303 --cursor-color, -cr COLOR color of the Emacs cursor indicating point\n\
304 --font, -fn FONT default font; must be fixed-width\n\
305 --foreground-color, -fg COLOR window foreground color\n\
306 --fullheight, -fh make the first frame high as the screen\n\
307 --fullscreen, -fs make first frame fullscreen\n\
308 --fullwidth, -fw make the first frame wide as the screen\n\
309 --geometry, -g GEOMETRY window geometry\n\
310 --no-bitmap-icon, -nbi do not use picture of gnu for Emacs icon\n\
311 --iconic start Emacs in iconified state\n\
312 --internal-border, -ib WIDTH width between text and main border\n\
313 --line-spacing, -lsp PIXELS additional space to put between lines\n\
314 --mouse-color, -ms COLOR mouse cursor color in Emacs window\n\
315 --name NAME title for initial Emacs frame\n\
316 --no-blinking-cursor, -nbc disable blinking cursor\n\
317 --reverse-video, -r, -rv switch foreground and background\n\
318 --title, -T TITLE title for initial Emacs frame\n\
319 --vertical-scroll-bars, -vb enable vertical scroll bars\n\
320 --xrm XRESOURCES set additional X resources\n\
321 --parent-id XID set parent window\n\
322 --help display this help and exit\n\
323 --version output version information and exit\n\
327 You can generally also specify long option names with a single -; for\n\
328 example, -batch as well as --batch. You can use any unambiguous\n\
329 abbreviation for a --option.\n\
331 Various environment variables and window system resources also affect\n\
332 Emacs' operation. See the main documentation.\n\
334 Report bugs to %s. First, please see the Bugs\n\
335 section of the Emacs manual or the file BUGS.\n"
338 /* Signal code for the fatal signal that was received. */
339 int fatal_error_code
;
341 /* Nonzero if handling a fatal error already. */
342 int fatal_error_in_progress
;
344 /* If non-null, call this function from fatal_error_signal before
345 committing suicide. */
347 void (*fatal_error_signal_hook
) P_ ((void));
349 #ifdef FORWARD_SIGNAL_TO_MAIN_THREAD
350 /* When compiled with GTK and running under Gnome,
351 multiple threads may be created. Keep track of our main
352 thread to make sure signals are delivered to it (see syssignal.h). */
354 pthread_t main_thread
;
358 /* Handle bus errors, invalid instruction, etc. */
360 fatal_error_signal (sig
)
363 SIGNAL_THREAD_CHECK (sig
);
364 fatal_error_code
= sig
;
365 signal (sig
, SIG_DFL
);
367 TOTALLY_UNBLOCK_INPUT
;
369 /* If fatal error occurs in code below, avoid infinite recursion. */
370 if (! fatal_error_in_progress
)
372 fatal_error_in_progress
= 1;
374 shut_down_emacs (sig
, 0, Qnil
);
377 /* Signal the same code; this time it will really be fatal.
378 Remember that since we're in a signal handler, the signal we're
379 going to send is probably blocked, so we have to unblock it if we
380 want to really receive it. */
382 sigunblock (sigmask (fatal_error_code
));
385 if (fatal_error_signal_hook
)
386 fatal_error_signal_hook ();
388 kill (getpid (), fatal_error_code
);
393 /* Handler for SIGDANGER. */
395 memory_warning_signal (sig
)
398 signal (sig
, memory_warning_signal
);
399 SIGNAL_THREAD_CHECK (sig
);
401 malloc_warning ("Operating system warns that virtual memory is running low.\n");
403 /* It might be unsafe to call do_auto_save now. */
404 force_auto_save_soon ();
408 /* We define abort, rather than using it from the library,
409 so that GDB can return from a breakpoint here.
410 MSDOS has its own definition in msdos.c. */
412 #if ! defined (DOS_NT) && ! defined (NO_ABORT)
417 kill (getpid (), SIGABRT
);
418 /* This shouldn't be executed, but it prevents a warning. */
424 /* Code for dealing with Lisp access to the Unix command line. */
427 init_cmdargs (argc
, argv
, skip_args
)
433 Lisp_Object name
, dir
, tem
;
434 int count
= SPECPDL_INDEX ();
435 Lisp_Object raw_name
;
440 raw_name
= build_string (argv
[0]);
442 /* Add /: to the front of the name
443 if it would otherwise be treated as magic. */
444 tem
= Ffind_file_name_handler (raw_name
, Qt
);
446 raw_name
= concat2 (build_string ("/:"), raw_name
);
448 Vinvocation_name
= Ffile_name_nondirectory (raw_name
);
449 Vinvocation_directory
= Ffile_name_directory (raw_name
);
451 /* If we got no directory in argv[0], search PATH to find where
452 Emacs actually came from. */
453 if (NILP (Vinvocation_directory
))
456 int yes
= openp (Vexec_path
, Vinvocation_name
,
457 Vexec_suffixes
, &found
, make_number (X_OK
));
460 /* Add /: to the front of the name
461 if it would otherwise be treated as magic. */
462 tem
= Ffind_file_name_handler (found
, Qt
);
464 found
= concat2 (build_string ("/:"), found
);
465 Vinvocation_directory
= Ffile_name_directory (found
);
469 if (!NILP (Vinvocation_directory
)
470 && NILP (Ffile_name_absolute_p (Vinvocation_directory
)))
471 /* Emacs was started with relative path, like ./emacs.
473 Vinvocation_directory
= Fexpand_file_name (Vinvocation_directory
, Qnil
);
475 Vinstallation_directory
= Qnil
;
477 if (!NILP (Vinvocation_directory
))
479 dir
= Vinvocation_directory
;
480 name
= Fexpand_file_name (Vinvocation_name
, dir
);
483 Lisp_Object tem
, lib_src_exists
;
484 Lisp_Object etc_exists
, info_exists
;
486 /* See if dir contains subdirs for use by Emacs.
487 Check for the ones that would exist in a build directory,
488 not including lisp and info. */
489 tem
= Fexpand_file_name (build_string ("lib-src"), dir
);
490 lib_src_exists
= Ffile_exists_p (tem
);
493 /* MSDOS installations frequently remove lib-src, but we still
494 must set installation-directory, or else info won't find
495 its files (it uses the value of installation-directory). */
496 tem
= Fexpand_file_name (build_string ("info"), dir
);
497 info_exists
= Ffile_exists_p (tem
);
502 if (!NILP (lib_src_exists
) || !NILP (info_exists
))
504 tem
= Fexpand_file_name (build_string ("etc"), dir
);
505 etc_exists
= Ffile_exists_p (tem
);
506 if (!NILP (etc_exists
))
508 Vinstallation_directory
509 = Ffile_name_as_directory (dir
);
514 /* See if dir's parent contains those subdirs. */
515 tem
= Fexpand_file_name (build_string ("../lib-src"), dir
);
516 lib_src_exists
= Ffile_exists_p (tem
);
520 /* See the MSDOS commentary above. */
521 tem
= Fexpand_file_name (build_string ("../info"), dir
);
522 info_exists
= Ffile_exists_p (tem
);
527 if (!NILP (lib_src_exists
) || !NILP (info_exists
))
529 tem
= Fexpand_file_name (build_string ("../etc"), dir
);
530 etc_exists
= Ffile_exists_p (tem
);
531 if (!NILP (etc_exists
))
533 tem
= Fexpand_file_name (build_string (".."), dir
);
534 Vinstallation_directory
535 = Ffile_name_as_directory (tem
);
540 /* If the Emacs executable is actually a link,
541 next try the dir that the link points into. */
542 tem
= Ffile_symlink_p (name
);
545 name
= Fexpand_file_name (tem
, dir
);
546 dir
= Ffile_name_directory (name
);
553 Vcommand_line_args
= Qnil
;
555 for (i
= argc
- 1; i
>= 0; i
--)
557 if (i
== 0 || i
> skip_args
)
558 /* For the moment, we keep arguments as is in unibyte strings.
559 They are decoded in the function command-line after we know
560 locale-coding-system. */
562 = Fcons (make_unibyte_string (argv
[i
], strlen (argv
[i
])),
566 unbind_to (count
, Qnil
);
569 DEFUN ("invocation-name", Finvocation_name
, Sinvocation_name
, 0, 0, 0,
570 doc
: /* Return the program name that was used to run Emacs.
571 Any directory names are omitted. */)
574 return Fcopy_sequence (Vinvocation_name
);
577 DEFUN ("invocation-directory", Finvocation_directory
, Sinvocation_directory
,
579 doc
: /* Return the directory name in which the Emacs executable was located. */)
582 return Fcopy_sequence (Vinvocation_directory
);
587 /* A valid but unlikely value for the TZ environment value.
588 It is OK (though a bit slower) if the user actually chooses this value. */
589 static char dump_tz
[] = "UtC0";
592 #ifndef ORDINARY_LINK
593 /* We don't include crtbegin.o and crtend.o in the link,
594 so these functions and variables might be missed.
595 Provide dummy definitions to avoid error.
596 (We don't have any real constructors or destructors.) */
598 #ifndef GCC_CTORS_IN_LIBC
599 void __do_global_ctors ()
601 void __do_global_ctors_aux ()
603 void __do_global_dtors ()
605 /* GNU/Linux has a bug in its library; avoid an error. */
607 char * __CTOR_LIST__
[2] = { (char *) (-1), 0 };
609 char * __DTOR_LIST__
[2] = { (char *) (-1), 0 };
610 #endif /* GCC_CTORS_IN_LIBC */
613 #endif /* __GNUC__ */
614 #endif /* ORDINARY_LINK */
616 /* Test whether the next argument in ARGV matches SSTR or a prefix of
617 LSTR (at least MINLEN characters). If so, then if VALPTR is non-null
618 (the argument is supposed to have a value) store in *VALPTR either
619 the next argument or the portion of this one after the equal sign.
620 ARGV is read starting at position *SKIPPTR; this index is advanced
621 by the number of arguments used.
623 Too bad we can't just use getopt for all of this, but we don't have
624 enough information to do it right. */
627 argmatch (argv
, argc
, sstr
, lstr
, minlen
, valptr
, skipptr
)
640 /* Don't access argv[argc]; give up in advance. */
641 if (argc
<= *skipptr
+ 1)
644 arg
= argv
[*skipptr
+1];
647 if (strcmp (arg
, sstr
) == 0)
651 *valptr
= argv
[*skipptr
+2];
658 arglen
= (valptr
!= NULL
&& (p
= index (arg
, '=')) != NULL
659 ? p
- arg
: strlen (arg
));
660 if (lstr
== 0 || arglen
< minlen
|| strncmp (arg
, lstr
, arglen
) != 0)
662 else if (valptr
== NULL
)
673 else if (argv
[*skipptr
+2] != NULL
)
675 *valptr
= argv
[*skipptr
+2];
685 #ifdef DOUG_LEA_MALLOC
687 /* malloc can be invoked even before main (e.g. by the dynamic
688 linker), so the dumped malloc state must be restored as early as
689 possible using this special hook. */
692 malloc_initialize_hook ()
695 extern char **environ
;
700 if (!malloc_using_checking
)
701 /* Work around a bug in glibc's malloc. MALLOC_CHECK_ must be
702 ignored if the heap to be restored was constructed without
703 malloc checking. Can't use unsetenv, since that calls malloc. */
707 for (p
= environ
; p
&& *p
; p
++)
708 if (strncmp (*p
, "MALLOC_CHECK_=", 14) == 0)
717 malloc_set_state (malloc_state_ptr
);
718 #ifndef XMALLOC_OVERRUN_CHECK
719 free (malloc_state_ptr
);
724 if (my_heap_start
== 0)
725 my_heap_start
= sbrk (0);
726 malloc_using_checking
= getenv ("MALLOC_CHECK_") != NULL
;
730 void (*__malloc_initialize_hook
) () = malloc_initialize_hook
;
732 #endif /* DOUG_LEA_MALLOC */
735 #define REPORT_EMACS_BUG_ADDRESS "bug-gnu-emacs@gnu.org"
736 #define REPORT_EMACS_BUG_PRETEST_ADDRESS "emacs-pretest-bug@gnu.org"
738 /* This function is used to determine an address to which bug report should
742 bug_reporting_address ()
748 temp
= Fsymbol_value (intern ("emacs-version"));
750 /* When `emacs-version' is invalid, use normal address. */
752 return REPORT_EMACS_BUG_ADDRESS
;
754 string
= SDATA (temp
);
756 /* Count dots in `emacs-version'. */
764 /* When `emacs-version' has at least three dots, it is development or
765 pretest version of Emacs. */
766 return count
>= 3 ? REPORT_EMACS_BUG_PRETEST_ADDRESS
: REPORT_EMACS_BUG_ADDRESS
;
772 main (int argc
, char **argv
)
777 char stack_bottom_variable
;
778 int do_initial_setlocale
;
783 #ifdef HAVE_SETRLIMIT
790 extern Lisp_Object
*stack_base
;
796 extern char my_endbss
[];
797 extern char *my_endbss_static
;
799 if (my_heap_start
== 0)
800 my_heap_start
= sbrk (0);
802 heap_bss_diff
= (char *)my_heap_start
- max (my_endbss
, my_endbss_static
);
805 #ifdef LINUX_SBRK_BUG
806 /* This is only used GNU/LINUX running on alpha when using libc5 */
810 #ifdef RUN_TIME_REMAP
812 run_time_remap (argv
[0]);
815 /* If using unexmacosx.c (set by s/darwin.h), we must do this. */
818 unexec_init_emacs_zone ();
821 sort_args (argc
, argv
);
823 while (argv
[argc
]) argc
++;
825 if (argmatch (argv
, argc
, "-version", "--version", 3, NULL
, &skip_args
)
826 /* We don't know the version number unless this is a dumped Emacs.
827 So ignore --version otherwise. */
830 Lisp_Object tem
, tem2
;
831 tem
= Fsymbol_value (intern ("emacs-version"));
832 tem2
= Fsymbol_value (intern ("emacs-copyright"));
835 fprintf (stderr
, "Invalid value of `emacs-version'\n");
840 fprintf (stderr
, "Invalid value of `emacs-copyright'\n");
845 printf ("GNU Emacs %s\n", SDATA (tem
));
846 printf ("%s\n", SDATA(tem2
));
847 printf ("GNU Emacs comes with ABSOLUTELY NO WARRANTY.\n");
848 printf ("You may redistribute copies of Emacs\n");
849 printf ("under the terms of the GNU General Public License.\n");
850 printf ("For more information about these matters, ");
851 printf ("see the file named COPYING.\n");
856 #ifdef HAVE_PERSONALITY_LINUX32
857 /* See if there is a gap between the end of BSS and the heap.
858 In that case, set personality and exec ourself again. */
860 && (strcmp (argv
[argc
-1], "dump") == 0
861 || strcmp (argv
[argc
-1], "bootstrap") == 0)
862 && heap_bss_diff
> MAX_HEAP_BSS_DIFF
)
864 if (! getenv ("EMACS_HEAP_EXEC"))
866 /* Set this so we only do this once. */
867 putenv("EMACS_HEAP_EXEC=true");
869 /* A flag to turn off address randomization which is introduced
870 in linux kernel shipped with fedora core 4 */
871 #define ADD_NO_RANDOMIZE 0x0040000
872 personality (PER_LINUX32
| ADD_NO_RANDOMIZE
);
873 #undef ADD_NO_RANDOMIZE
875 execvp (argv
[0], argv
);
877 /* If the exec fails, try to dump anyway. */
881 #endif /* HAVE_PERSONALITY_LINUX32 */
884 /* Map in shared memory, if we are using that. */
886 if (argmatch (argv
, argc
, "-nl", "--no-shared-memory", 6, NULL
, &skip_args
))
889 /* The shared memory was just restored, which clobbered this. */
895 /* The shared memory was just restored, which clobbered this. */
900 #if defined (HAVE_SETRLIMIT) && defined (RLIMIT_STACK)
901 /* Extend the stack space available.
902 Don't do that if dumping, since some systems (e.g. DJGPP)
903 might define a smaller stack limit at that time. */
906 && (!noninteractive
|| initialized
)
908 && !getrlimit (RLIMIT_STACK
, &rlim
))
911 extern size_t re_max_failures
;
912 /* Approximate the amount regex.c needs per unit of re_max_failures. */
913 int ratio
= 20 * sizeof (char *);
914 /* Then add 33% to cover the size of the smaller stacks that regex.c
915 successively allocates and discards, on its way to the maximum. */
917 /* Add in some extra to cover
918 what we're likely to use for other reasons. */
919 newlim
= re_max_failures
* ratio
+ 200000;
921 /* NetBSD (at least NetBSD 1.2G and former) has a bug in its
922 stack allocation routine for new process that the allocation
923 fails if stack limit is not on page boundary. So, round up the
924 new limit to page boundary. */
925 newlim
= (newlim
+ getpagesize () - 1) / getpagesize () * getpagesize();
927 if (newlim
> rlim
.rlim_max
)
929 newlim
= rlim
.rlim_max
;
930 /* Don't let regex.c overflow the stack we have. */
931 re_max_failures
= (newlim
- 200000) / ratio
;
933 if (rlim
.rlim_cur
< newlim
)
934 rlim
.rlim_cur
= newlim
;
936 setrlimit (RLIMIT_STACK
, &rlim
);
938 #endif /* HAVE_SETRLIMIT and RLIMIT_STACK */
940 /* Record (approximately) where the stack begins. */
941 stack_bottom
= &stack_bottom_variable
;
945 #ifndef SYSTEM_MALLOC
946 /* Arrange to get warning messages as memory fills up. */
947 memory_warnings (0, malloc_warning
);
949 /* Call malloc at least once, to run the initial __malloc_hook.
950 Also call realloc and free for consistency. */
951 free (realloc (malloc (4), 4));
954 /* Arrange to disable interrupt input inside malloc etc. */
955 uninterrupt_malloc ();
956 # endif /* not SYNC_INPUT */
957 #endif /* not SYSTEM_MALLOC */
959 #ifdef FORWARD_SIGNAL_TO_MAIN_THREAD
960 main_thread
= pthread_self ();
961 #endif /* FORWARD_SIGNAL_TO_MAIN_THREAD */
963 #if defined (MSDOS) || defined (WINDOWSNT)
964 /* We do all file input/output as binary files. When we need to translate
965 newlines, we do that manually. */
967 #endif /* MSDOS || WINDOWSNT */
971 if (!isatty (fileno (stdin
)))
972 setmode (fileno (stdin
), O_BINARY
);
973 if (!isatty (fileno (stdout
)))
976 setmode (fileno (stdout
), O_BINARY
);
978 #else /* not __DJGPP__ >= 2 */
979 (stdin
)->_flag
&= ~_IOTEXT
;
980 (stdout
)->_flag
&= ~_IOTEXT
;
981 (stderr
)->_flag
&= ~_IOTEXT
;
982 #endif /* not __DJGPP__ >= 2 */
985 #ifdef SET_EMACS_PRIORITY
987 nice (emacs_priority
);
989 #endif /* SET_EMACS_PRIORITY */
991 /* Skip initial setlocale if LC_ALL is "C", as it's not needed in that case.
992 The build procedure uses this while dumping, to ensure that the
993 dumped Emacs does not have its system locale tables initialized,
994 as that might cause screwups when the dumped Emacs starts up. */
996 char *lc_all
= getenv ("LC_ALL");
997 do_initial_setlocale
= ! lc_all
|| strcmp (lc_all
, "C");
1000 /* Set locale now, so that initial error messages are localized properly.
1001 fixup_locale must wait until later, since it builds strings. */
1002 if (do_initial_setlocale
)
1003 setlocale (LC_ALL
, "");
1005 inhibit_window_system
= 0;
1007 /* Handle the -t switch, which specifies filename to use as terminal. */
1011 if (argmatch (argv
, argc
, "-t", "--terminal", 4, &term
, &skip_args
))
1016 result
= emacs_open (term
, O_RDWR
, 0);
1019 char *errstring
= strerror (errno
);
1020 fprintf (stderr
, "%s: %s: %s\n", argv
[0], term
, errstring
);
1026 fprintf (stderr
, "%s: %s: not a tty\n", argv
[0], term
);
1029 fprintf (stderr
, "Using %s\n", term
);
1030 #ifdef HAVE_WINDOW_SYSTEM
1031 inhibit_window_system
= 1; /* -t => -nw */
1038 /* Command line option --no-windows is deprecated and thus not mentioned
1039 in the manual and usage informations. */
1040 if (argmatch (argv
, argc
, "-nw", "--no-window-system", 6, NULL
, &skip_args
)
1041 || argmatch (argv
, argc
, "-nw", "--no-windows", 6, NULL
, &skip_args
))
1042 inhibit_window_system
= 1;
1044 /* Handle the -batch switch, which means don't do interactive display. */
1046 if (argmatch (argv
, argc
, "-batch", "--batch", 5, NULL
, &skip_args
))
1049 Vundo_outer_limit
= Qnil
;
1051 if (argmatch (argv
, argc
, "-script", "--script", 3, &junk
, &skip_args
))
1053 noninteractive
= 1; /* Set batch mode. */
1054 /* Convert --script to -scriptload, un-skip it, and sort again
1055 so that it will be handled in proper sequence. */
1056 /* FIXME broken for --script=FILE - is that supposed to work? */
1057 argv
[skip_args
- 1] = "-scriptload";
1059 sort_args (argc
, argv
);
1062 /* Handle the --help option, which gives a usage message. */
1063 if (argmatch (argv
, argc
, "-help", "--help", 3, NULL
, &skip_args
))
1065 printf (USAGE1
, argv
[0], USAGE2
);
1067 printf (USAGE4
, bug_reporting_address ());
1071 if (! noninteractive
)
1076 inherited_pgroup
= EMACS_GETPGRP (0);
1077 setpgrp (0, getpid ());
1080 #if defined (USG5) && defined (INTERRUPT_INPUT)
1084 #if defined (HAVE_GTK_AND_PTHREAD) && !defined (SYSTEM_MALLOC) && !defined (DOUG_LEA_MALLOC)
1086 extern void malloc_enable_thread
P_ ((void));
1088 malloc_enable_thread ();
1095 /* Don't catch SIGHUP if dumping. */
1102 sigblock (sigmask (SIGHUP
));
1103 /* In --batch mode, don't catch SIGHUP if already ignored.
1104 That makes nohup work. */
1105 if (! noninteractive
1106 || signal (SIGHUP
, SIG_IGN
) != SIG_IGN
)
1107 signal (SIGHUP
, fatal_error_signal
);
1108 sigunblock (sigmask (SIGHUP
));
1113 ! noninteractive
|| initialized
1119 /* Don't catch these signals in batch mode if dumping.
1120 On some machines, this sets static data that would make
1121 signal fail to work right when the dumped Emacs is run. */
1122 signal (SIGQUIT
, fatal_error_signal
);
1123 signal (SIGILL
, fatal_error_signal
);
1124 signal (SIGTRAP
, fatal_error_signal
);
1126 add_user_signal (SIGUSR1
, "sigusr1");
1129 add_user_signal (SIGUSR2
, "sigusr2");
1132 signal (SIGABRT
, fatal_error_signal
);
1135 signal (SIGHWE
, fatal_error_signal
);
1138 signal (SIGPRE
, fatal_error_signal
);
1141 signal (SIGORE
, fatal_error_signal
);
1144 signal (SIGUME
, fatal_error_signal
);
1147 signal (SIGDLK
, fatal_error_signal
);
1150 signal (SIGCPULIM
, fatal_error_signal
);
1153 /* This is missing on some systems - OS/2, for example. */
1154 signal (SIGIOT
, fatal_error_signal
);
1157 signal (SIGEMT
, fatal_error_signal
);
1159 signal (SIGFPE
, fatal_error_signal
);
1161 signal (SIGBUS
, fatal_error_signal
);
1163 signal (SIGSEGV
, fatal_error_signal
);
1165 signal (SIGSYS
, fatal_error_signal
);
1167 signal (SIGTERM
, fatal_error_signal
);
1169 signal (SIGXCPU
, fatal_error_signal
);
1172 signal (SIGXFSZ
, fatal_error_signal
);
1173 #endif /* SIGXFSZ */
1176 /* This just means available memory is getting low. */
1177 signal (SIGDANGER
, memory_warning_signal
);
1181 /* 20 is SIGCHLD, 21 is SIGTTIN, 22 is SIGTTOU. */
1182 signal (SIGXCPU
, fatal_error_signal
);
1184 signal (SIGIOINT
, fatal_error_signal
);
1186 signal (SIGGRANT
, fatal_error_signal
);
1187 signal (SIGRETRACT
, fatal_error_signal
);
1188 signal (SIGSOUND
, fatal_error_signal
);
1189 signal (SIGMSG
, fatal_error_signal
);
1193 noninteractive1
= noninteractive
;
1195 /* Perform basic initializations (not merely interning symbols). */
1202 init_character_once ();
1203 init_charset_once ();
1204 init_coding_once ();
1205 init_syntax_once (); /* Create standard syntax table. */
1206 init_category_once (); /* Create standard category table. */
1207 /* Must be done before init_buffer. */
1208 init_casetab_once ();
1209 init_buffer_once (); /* Create buffer table and some buffers. */
1210 init_minibuf_once (); /* Create list of minibuffers. */
1211 /* Must precede init_window_once. */
1213 /* Call syms_of_xfaces before init_window_once because that
1214 function creates Vterminal_frame. Termcap frames now use
1215 faces, and the face implementation uses some symbols as
1218 /* XXX syms_of_keyboard uses some symbols in keymap.c. It would
1219 be better to arrange things not to have this dependency. */
1221 /* Call syms_of_keyboard before init_window_once because
1222 keyboard sets up symbols that include some face names that
1223 the X support will want to use. This can happen when
1224 CANNOT_DUMP is defined. */
1225 syms_of_keyboard ();
1227 /* Called before syms_of_fileio, because it sets up Qerror_condition. */
1230 /* Before syms_of_coding to initialize Vgc_cons_threshold. */
1232 /* Before syms_of_coding because it initializes Qcharsetp. */
1234 /* Before init_window_once, because it sets up the
1235 Vcoding_system_hash_table. */
1236 syms_of_coding (); /* This should be after syms_of_fileio. */
1238 init_window_once (); /* Init the window system. */
1239 init_fileio_once (); /* Must precede any path manipulation. */
1240 #ifdef HAVE_WINDOW_SYSTEM
1241 init_fringe_once (); /* Swap bitmaps if necessary. */
1242 #endif /* HAVE_WINDOW_SYSTEM */
1247 if (do_initial_setlocale
)
1250 Vsystem_messages_locale
= Vprevious_system_messages_locale
;
1251 Vsystem_time_locale
= Vprevious_system_time_locale
;
1256 #ifdef CLASH_DETECTION
1260 running_asynch_code
= 0;
1262 /* Handle --unibyte and the EMACS_UNIBYTE envvar,
1263 but not while dumping. */
1266 int inhibit_unibyte
= 0;
1268 /* --multibyte overrides EMACS_UNIBYTE. */
1269 if (argmatch (argv
, argc
, "-no-unibyte", "--no-unibyte", 4, NULL
, &skip_args
)
1270 || argmatch (argv
, argc
, "-multibyte", "--multibyte", 4, NULL
, &skip_args
)
1271 /* Ignore EMACS_UNIBYTE before dumping. */
1272 || (!initialized
&& noninteractive
))
1273 inhibit_unibyte
= 1;
1275 /* --unibyte requests that we set up to do everything with single-byte
1276 buffers and strings. We need to handle this before calling
1277 init_lread, init_editfns and other places that generate Lisp strings
1278 from text in the environment. */
1279 /* Actually this shouldn't be needed as of 20.4 in a generally
1280 unibyte environment. As handa says, environment values
1281 aren't now decoded; also existing buffers are now made
1282 unibyte during startup if .emacs sets unibyte. Tested with
1283 8-bit data in environment variables and /etc/passwd, setting
1284 unibyte and Latin-1 in .emacs. -- Dave Love */
1285 if (argmatch (argv
, argc
, "-unibyte", "--unibyte", 4, NULL
, &skip_args
)
1286 || argmatch (argv
, argc
, "-no-multibyte", "--no-multibyte", 4, NULL
, &skip_args
)
1287 || (getenv ("EMACS_UNIBYTE") && !inhibit_unibyte
))
1289 Lisp_Object old_log_max
;
1290 Lisp_Object symbol
, tail
;
1292 symbol
= intern ("default-enable-multibyte-characters");
1293 Fset (symbol
, Qnil
);
1297 /* Erase pre-dump messages in *Messages* now so no abort. */
1298 old_log_max
= Vmessage_log_max
;
1299 XSETFASTINT (Vmessage_log_max
, 0);
1300 message_dolog ("", 0, 1, 0);
1301 Vmessage_log_max
= old_log_max
;
1304 for (tail
= Vbuffer_alist
; CONSP (tail
);
1309 buffer
= Fcdr (XCAR (tail
));
1310 /* Make a multibyte buffer unibyte. */
1311 if (BUF_Z_BYTE (XBUFFER (buffer
)) > BUF_Z (XBUFFER (buffer
)))
1313 struct buffer
*current
= current_buffer
;
1315 set_buffer_temp (XBUFFER (buffer
));
1316 Fset_buffer_multibyte (Qnil
);
1317 set_buffer_temp (current
);
1324 = argmatch (argv
, argc
, "-nl", "--no-loadup", 6, NULL
, &skip_args
);
1327 ns_alloc_autorelease_pool();
1328 if (!noninteractive
)
1332 #ifdef NS_IMPL_COCOA
1333 if (skip_args
< argc
)
1335 if (!strncmp(argv
[skip_args
], "-psn", 4))
1338 chdir (getenv ("HOME"));
1340 else if (skip_args
+1 < argc
&& !strncmp(argv
[skip_args
+1], "-psn", 4))
1343 chdir (getenv ("HOME"));
1347 /* This used for remote operation.. not fully implemented yet. */
1348 if (argmatch (argv
, argc
, "-_NSMachLaunch", 0, 3, &tmp
, &skip_args
))
1350 else if (argmatch (argv
, argc
, "-MachLaunch", 0, 3, &tmp
, &skip_args
))
1352 else if (argmatch (argv
, argc
, "-macosx", 0, 2, NULL
, &skip_args
))
1354 else if (argmatch (argv
, argc
, "-NSHost", 0, 3, &tmp
, &skip_args
))
1357 #endif /* HAVE_NS */
1359 #ifdef HAVE_X_WINDOWS
1360 /* Stupid kludge to catch command-line display spec. We can't
1361 handle this argument entirely in window system dependent code
1362 because we don't even know which window system dependent code
1363 to run until we've recognized this argument. */
1365 char *displayname
= 0;
1366 int count_before
= skip_args
;
1368 /* Skip any number of -d options, but only use the last one. */
1371 int count_before_this
= skip_args
;
1373 if (argmatch (argv
, argc
, "-d", "--display", 3, &displayname
, &skip_args
))
1375 else if (argmatch (argv
, argc
, "-display", 0, 3, &displayname
, &skip_args
))
1380 count_before
= count_before_this
;
1383 /* If we have the form --display=NAME,
1384 convert it into -d name.
1385 This requires inserting a new element into argv. */
1386 if (displayname
!= 0 && skip_args
- count_before
== 1)
1388 char **new = (char **) xmalloc (sizeof (char *) * (argc
+ 2));
1391 for (j
= 0; j
< count_before
+ 1; j
++)
1393 new[count_before
+ 1] = "-d";
1394 new[count_before
+ 2] = displayname
;
1395 for (j
= count_before
+ 2; j
<argc
; j
++)
1396 new[j
+ 1] = argv
[j
];
1400 /* Change --display to -d, when its arg is separate. */
1401 else if (displayname
!= 0 && skip_args
> count_before
1402 && argv
[count_before
+ 1][1] == '-')
1403 argv
[count_before
+ 1] = "-d";
1405 /* Don't actually discard this arg. */
1406 skip_args
= count_before
;
1410 /* argmatch must not be used after here,
1411 except when bulding temacs
1412 because the -d argument has not been skipped in skip_args. */
1415 /* Call early 'cause init_environment needs it. */
1417 /* Set defaults for several environment variables. */
1419 init_environment (argc
, argv
, skip_args
);
1426 /* Initialize environment from registry settings. */
1427 init_environment (argv
);
1428 init_ntproc (); /* must precede init_editfns. */
1438 /* egetenv is a pretty low-level facility, which may get called in
1439 many circumstances; it seems flimsy to put off initializing it
1440 until calling init_callproc. */
1441 set_initial_environment ();
1442 /* AIX crashes are reported in system versions 3.2.3 and 3.2.4
1443 if this is not done. Do it after set_global_environment so that we
1444 don't pollute Vglobal_environment. */
1445 /* Setting LANG here will defeat the startup locale processing... */
1450 init_buffer (); /* Init default directory of main buffer. */
1452 init_callproc_1 (); /* Must precede init_cmdargs and init_sys_modes. */
1453 init_cmdargs (argc
, argv
, skip_args
); /* Must precede init_lread. */
1457 /* Erase any pre-dump messages in the message log, to avoid confusion. */
1458 Lisp_Object old_log_max
;
1459 old_log_max
= Vmessage_log_max
;
1460 XSETFASTINT (Vmessage_log_max
, 0);
1461 message_dolog ("", 0, 1, 0);
1462 Vmessage_log_max
= old_log_max
;
1465 init_callproc (); /* Must follow init_cmdargs but not init_sys_modes. */
1468 /* Intern the names of all standard functions and variables;
1469 define standard keys. */
1473 /* The basic levels of Lisp must come first. */
1474 /* And data must come first of all
1475 for the sake of symbols like error-message. */
1482 syms_of_floatfns ();
1485 syms_of_bytecode ();
1487 syms_of_casefiddle ();
1489 syms_of_callproc ();
1490 syms_of_category ();
1492 syms_of_character ();
1494 #ifndef NO_DIR_LIBRARY
1496 #endif /* not NO_DIR_LIBRARY */
1501 #ifdef CLASH_DETECTION
1502 syms_of_filelock ();
1503 #endif /* CLASH_DETECTION */
1506 /* syms_of_keymap (); */
1514 syms_of_terminal ();
1520 syms_of_textprop ();
1521 syms_of_composite ();
1524 #endif /* WINDOWSNT */
1528 #ifdef HAVE_WINDOW_SYSTEM
1531 #endif /* HAVE_WINDOW_SYSTEM */
1532 #ifdef HAVE_X_WINDOWS
1543 #endif /* HAVE_X_WINDOWS */
1550 syms_of_w32select ();
1553 #endif /* HAVE_NTGUI */
1563 syms_of_nsselect ();
1565 #endif /* HAVE_NS */
1568 syms_of_dbusbind ();
1569 #endif /* HAVE_DBUS */
1579 keys_of_casefiddle ();
1582 keys_of_keyboard ();
1588 /* Initialization that must be done even if the global variable
1589 initialized is non zero. */
1591 globals_of_w32fns ();
1592 globals_of_w32menu ();
1593 globals_of_w32select ();
1594 #endif /* HAVE_NTGUI */
1599 init_editfns (); /* init_process uses Voperating_system_release. */
1600 init_process (); /* init_display uses add_keyboard_wait_descriptor. */
1601 init_keyboard (); /* This too must precede init_sys_modes. */
1602 if (!noninteractive
)
1603 init_display (); /* Determine terminal type. Calls init_sys_modes. */
1606 #ifdef HAVE_WINDOW_SYSTEM
1609 #endif /* HAVE_WINDOW_SYSTEM */
1620 /* Handle -l loadup, args passed by Makefile. */
1621 if (argmatch (argv
, argc
, "-l", "--load", 3, &file
, &skip_args
))
1622 Vtop_level
= Fcons (intern ("load"),
1623 Fcons (build_string (file
), Qnil
));
1624 /* Unless next switch is -nl, load "loadup.el" first thing. */
1626 Vtop_level
= Fcons (intern ("load"),
1627 Fcons (build_string ("loadup.el"), Qnil
));
1634 /* If the execution TZ happens to be the same as the dump TZ,
1635 change it to some other value and then change it back,
1636 to force the underlying implementation to reload the TZ info.
1637 This is needed on implementations that load TZ info from files,
1638 since the TZ file contents may differ between dump and execution. */
1639 char *tz
= getenv ("TZ");
1640 if (tz
&& !strcmp (tz
, dump_tz
))
1650 /* Set up for profiling. This is known to work on FreeBSD,
1651 GNU/Linux and MinGW. It might work on some other systems too.
1652 Give it a try and tell us if it works on your system. To compile
1653 for profiling, add -pg to the switches your platform uses in
1654 CFLAGS and LDFLAGS. For example:
1655 `make CFLAGS="-pg -g -O -DPROFILING=1" LDFLAGS="-pg -g"'. */
1656 #if defined (__FreeBSD__) || defined (GNU_LINUX) || defined(__MINGW32__)
1660 extern void _mcleanup ();
1662 extern unsigned char etext
asm ("etext");
1666 extern void safe_bcopy ();
1667 extern void dump_opcode_frequencies ();
1670 /* This uses safe_bcopy because that function comes first in the
1671 Emacs executable. It might be better to use something that
1672 gives the start of the text segment, but start_of_text is not
1673 defined on all systems now. */
1674 monstartup (safe_bcopy
, &etext
);
1683 #ifdef LOCALTIME_CACHE
1684 /* Some versions of localtime have a bug. They cache the value of the time
1685 zone rather than looking it up every time. Since localtime() is
1686 called to bolt the undumping time into the undumped emacs, this
1687 results in localtime ignoring the TZ environment variable.
1688 This flushes the new TZ value into localtime. */
1690 #endif /* defined (LOCALTIME_CACHE) */
1692 /* Enter editor command loop. This never returns. */
1698 /* Sort the args so we can find the most important ones
1699 at the beginning of argv. */
1701 /* First, here's a table of all the standard options. */
1703 struct standard_args
1711 struct standard_args standard_args
[] =
1713 { "-version", "--version", 150, 0 },
1715 { "-nl", "--no-shared-memory", 140, 0 },
1717 { "-t", "--terminal", 120, 1 },
1718 { "-nw", "--no-window-system", 110, 0 },
1719 { "-nw", "--no-windows", 110, 0 },
1720 { "-batch", "--batch", 100, 0 },
1721 { "-script", "--script", 100, 1 },
1722 { "-help", "--help", 90, 0 },
1723 { "-no-unibyte", "--no-unibyte", 83, 0 },
1724 { "-multibyte", "--multibyte", 82, 0 },
1725 { "-unibyte", "--unibyte", 81, 0 },
1726 { "-no-multibyte", "--no-multibyte", 80, 0 },
1727 { "-nl", "--no-loadup", 70, 0 },
1728 /* -d must come last before the options handled in startup.el. */
1729 { "-d", "--display", 60, 1 },
1730 { "-display", 0, 60, 1 },
1731 /* Now for the options handled in startup.el. */
1732 { "-Q", "--quick", 55, 0 },
1733 { "-quick", 0, 55, 0 },
1734 { "-q", "--no-init-file", 50, 0 },
1735 { "-no-init-file", 0, 50, 0 },
1736 { "-no-site-file", "--no-site-file", 40, 0 },
1737 { "-u", "--user", 30, 1 },
1738 { "-user", 0, 30, 1 },
1739 { "-debug-init", "--debug-init", 20, 0 },
1740 { "-nbi", "--no-bitmap-icon", 15, 0 },
1741 { "-iconic", "--iconic", 15, 0 },
1742 { "-D", "--basic-display", 12, 0},
1743 { "-basic-display", 0, 12, 0},
1744 { "-bg", "--background-color", 10, 1 },
1745 { "-background", 0, 10, 1 },
1746 { "-fg", "--foreground-color", 10, 1 },
1747 { "-foreground", 0, 10, 1 },
1748 { "-bd", "--border-color", 10, 1 },
1749 { "-bw", "--border-width", 10, 1 },
1750 { "-ib", "--internal-border", 10, 1 },
1751 { "-ms", "--mouse-color", 10, 1 },
1752 { "-cr", "--cursor-color", 10, 1 },
1753 { "-nbc", "--no-blinking-cursor", 10, 0 },
1754 { "-fn", "--font", 10, 1 },
1755 { "-font", 0, 10, 1 },
1756 { "-fs", "--fullscreen", 10, 0 },
1757 { "-fw", "--fullwidth", 10, 0 },
1758 { "-fh", "--fullheight", 10, 0 },
1759 { "-g", "--geometry", 10, 1 },
1760 { "-geometry", 0, 10, 1 },
1761 { "-T", "--title", 10, 1 },
1762 { "-title", 0, 10, 1 },
1763 { "-name", "--name", 10, 1 },
1764 { "-xrm", "--xrm", 10, 1 },
1765 { "-parent-id", "--parent-id", 10, 1 },
1766 { "-r", "--reverse-video", 5, 0 },
1768 { "-reverse", 0, 5, 0 },
1769 { "-hb", "--horizontal-scroll-bars", 5, 0 },
1770 { "-vb", "--vertical-scroll-bars", 5, 0 },
1771 { "-color", "--color", 5, 0},
1772 { "-no-splash", "--no-splash", 3, 0 },
1773 { "-no-desktop", "--no-desktop", 3, 0 },
1775 { "-NSAutoLaunch", 0, 5, 1 },
1776 { "-NXAutoLaunch", 0, 5, 1 },
1777 { "-disable-font-backend", "--disable-font-backend", 65, 0 },
1778 { "-_NSMachLaunch", 0, 85, 1 },
1779 { "-MachLaunch", 0, 85, 1 },
1780 { "-macosx", 0, 85, 0 },
1781 { "-NSHost", 0, 85, 1 },
1783 /* These have the same priority as ordinary file name args,
1784 so they are not reordered with respect to those. */
1785 { "-L", "--directory", 0, 1 },
1786 { "-directory", 0, 0, 1 },
1787 { "-l", "--load", 0, 1 },
1788 { "-load", 0, 0, 1 },
1789 /* This has no longname, because using --scriptload confuses sort_args,
1790 because then the --script long option seems to match twice; ie
1791 you can't have a long option which is a prefix of another long
1792 option. In any case, this is entirely an internal option. */
1793 { "-scriptload", NULL
, 0, 1 },
1794 { "-f", "--funcall", 0, 1 },
1795 { "-funcall", 0, 0, 1 },
1796 { "-eval", "--eval", 0, 1 },
1797 { "-execute", "--execute", 0, 1 },
1798 { "-find-file", "--find-file", 0, 1 },
1799 { "-visit", "--visit", 0, 1 },
1800 { "-file", "--file", 0, 1 },
1801 { "-insert", "--insert", 0, 1 },
1803 { "-NXOpen", 0, 0, 1 },
1804 { "-NXOpenTemp", 0, 0, 1 },
1805 { "-NSOpen", 0, 0, 1 },
1806 { "-NSOpenTemp", 0, 0, 1 },
1807 { "-GSFilePath", 0, 0, 1 },
1809 /* This should be processed after ordinary file name args and the like. */
1810 { "-kill", "--kill", -10, 0 },
1813 /* Reorder the elements of ARGV (assumed to have ARGC elements)
1814 so that the highest priority ones come first.
1815 Do not change the order of elements of equal priority.
1816 If an option takes an argument, keep it and its argument together.
1818 If an option that takes no argument appears more
1819 than once, eliminate all but one copy of it. */
1822 sort_args (argc
, argv
)
1826 char **new = (char **) xmalloc (sizeof (char *) * argc
);
1827 /* For each element of argv,
1828 the corresponding element of options is:
1829 0 for an option that takes no arguments,
1830 1 for an option that takes one argument, etc.
1831 -1 for an ordinary non-option argument. */
1832 int *options
= (int *) xmalloc (sizeof (int) * argc
);
1833 int *priority
= (int *) xmalloc (sizeof (int) * argc
);
1835 int incoming_used
= 1;
1839 /* Categorize all the options,
1840 and figure out which argv elts are option arguments. */
1841 for (from
= 1; from
< argc
; from
++)
1845 if (argv
[from
][0] == '-')
1850 /* If we have found "--", don't consider
1851 any more arguments as options. */
1852 if (argv
[from
][1] == '-' && argv
[from
][2] == 0)
1854 /* Leave the "--", and everything following it, at the end. */
1855 for (; from
< argc
; from
++)
1857 priority
[from
] = -100;
1863 /* Look for a match with a known old-fashioned option. */
1864 for (i
= 0; i
< sizeof (standard_args
) / sizeof (standard_args
[0]); i
++)
1865 if (!strcmp (argv
[from
], standard_args
[i
].name
))
1867 options
[from
] = standard_args
[i
].nargs
;
1868 priority
[from
] = standard_args
[i
].priority
;
1869 if (from
+ standard_args
[i
].nargs
>= argc
)
1870 fatal ("Option `%s' requires an argument\n", argv
[from
]);
1871 from
+= standard_args
[i
].nargs
;
1875 /* Look for a match with a known long option.
1876 MATCH is -1 if no match so far, -2 if two or more matches so far,
1877 >= 0 (the table index of the match) if just one match so far. */
1878 if (argv
[from
][1] == '-')
1881 thislen
= strlen (argv
[from
]);
1882 equals
= index (argv
[from
], '=');
1884 thislen
= equals
- argv
[from
];
1887 i
< sizeof (standard_args
) / sizeof (standard_args
[0]); i
++)
1888 if (standard_args
[i
].longname
1889 && !strncmp (argv
[from
], standard_args
[i
].longname
,
1898 /* If we found exactly one match, use that. */
1901 options
[from
] = standard_args
[match
].nargs
;
1902 priority
[from
] = standard_args
[match
].priority
;
1903 /* If --OPTION=VALUE syntax is used,
1904 this option uses just one argv element. */
1907 if (from
+ options
[from
] >= argc
)
1908 fatal ("Option `%s' requires an argument\n", argv
[from
]);
1909 from
+= options
[from
];
1911 /* FIXME When match < 0, shouldn't there be some error,
1912 or at least indication to the user that there was a
1919 /* Copy the arguments, in order of decreasing priority, to NEW. */
1921 while (incoming_used
< argc
)
1924 int best_priority
= -9999;
1926 /* Find the highest priority remaining option.
1927 If several have equal priority, take the first of them. */
1928 for (from
= 1; from
< argc
; from
++)
1930 if (argv
[from
] != 0 && priority
[from
] > best_priority
)
1932 best_priority
= priority
[from
];
1935 /* Skip option arguments--they are tied to the options. */
1936 if (options
[from
] > 0)
1937 from
+= options
[from
];
1943 /* Copy the highest priority remaining option, with its args, to NEW.
1944 Unless it is a duplicate of the previous one. */
1945 if (! (options
[best
] == 0
1946 && ! strcmp (new[to
- 1], argv
[best
])))
1948 new[to
++] = argv
[best
];
1949 for (i
= 0; i
< options
[best
]; i
++)
1950 new[to
++] = argv
[best
+ i
+ 1];
1953 incoming_used
+= 1 + (options
[best
] > 0 ? options
[best
] : 0);
1955 /* Clear out this option in ARGV. */
1957 for (i
= 0; i
< options
[best
]; i
++)
1958 argv
[best
+ i
+ 1] = 0;
1961 /* If duplicate options were deleted, fill up extra space with null ptrs. */
1965 bcopy (new, argv
, sizeof (char *) * argc
);
1972 DEFUN ("kill-emacs", Fkill_emacs
, Skill_emacs
, 0, 1, "P",
1973 doc
: /* Exit the Emacs job and kill it.
1974 If ARG is an integer, return ARG as the exit program code.
1975 If ARG is a string, stuff it as keyboard input.
1977 The value of `kill-emacs-hook', if not void,
1978 is a list of functions (of no args),
1979 all of which are called before Emacs is actually killed. */)
1983 struct gcpro gcpro1
;
1990 if (!NILP (Vrun_hooks
) && !noninteractive
)
1991 call1 (Vrun_hooks
, intern ("kill-emacs-hook"));
1995 shut_down_emacs (0, 0, STRINGP (arg
) ? arg
: Qnil
);
1997 /* If we have an auto-save list file,
1998 kill it because we are exiting Emacs deliberately (not crashing).
1999 Do it after shut_down_emacs, which does an auto-save. */
2000 if (STRINGP (Vauto_save_list_file_name
))
2001 unlink (SDATA (Vauto_save_list_file_name
));
2003 exit (INTEGERP (arg
) ? XINT (arg
) : EXIT_SUCCESS
);
2009 /* Perform an orderly shutdown of Emacs. Autosave any modified
2010 buffers, kill any child processes, clean up the terminal modes (if
2011 we're in the foreground), and other stuff like that. Don't perform
2012 any redisplay; this may be called when Emacs is shutting down in
2013 the background, or after its X connection has died.
2015 If SIG is a signal number, print a message for it.
2017 This is called by fatal signal handlers, X protocol error handlers,
2021 shut_down_emacs (sig
, no_x
, stuff
)
2025 /* Prevent running of hooks from now on. */
2028 /* Don't update display from now on. */
2029 Vinhibit_redisplay
= Qt
;
2031 /* If we are controlling the terminal, reset terminal modes. */
2032 #ifdef EMACS_HAVE_TTY_PGRP
2034 int pgrp
= EMACS_GETPGRP (0);
2037 if (EMACS_GET_TTY_PGRP (0, &tpgrp
) != -1
2040 reset_all_sys_modes ();
2041 if (sig
&& sig
!= SIGTERM
)
2042 fprintf (stderr
, "Fatal error (%d)", sig
);
2047 reset_all_sys_modes ();
2050 stuff_buffered_input (stuff
);
2053 inhibit_sentinels
= 1;
2055 kill_buffer_processes (Qnil
);
2056 Fdo_auto_save (Qt
, Qnil
);
2058 #ifdef CLASH_DETECTION
2059 unlock_all_files ();
2062 #if 0 /* This triggers a bug in XCloseDisplay and is not needed. */
2063 #ifdef HAVE_X_WINDOWS
2064 /* It's not safe to call intern here. Maybe we are crashing. */
2065 if (!noninteractive
&& SYMBOLP (Vinitial_window_system
)
2066 && SCHARS (SYMBOL_NAME (Vinitial_window_system
)) == 1
2067 && SREF (SYMBOL_NAME (Vinitial_window_system
), 0) == 'x'
2069 Fx_close_current_connection ();
2070 #endif /* HAVE_X_WINDOWS */
2074 /* There is a tendency for a SIGIO signal to arrive within exit,
2075 and cause a SIGHUP because the input descriptor is already closed. */
2077 signal (SIGIO
, SIG_IGN
);
2084 /* Do this only if terminating normally, we want glyph matrices
2085 etc. in a core dump. */
2086 if (sig
== 0 || sig
== SIGTERM
)
2088 check_glyph_memory ();
2089 check_message_stack ();
2097 ns_term_shutdown (sig
);
2107 DEFUN ("dump-emacs-data", Fdump_emacs_data
, Sdump_emacs_data
, 1, 1, 0,
2108 doc
: /* Dump current state of Emacs into data file FILENAME.
2109 This function exists on systems that use HAVE_SHM. */)
2111 Lisp_Object filename
;
2113 extern char my_edata
[];
2117 CHECK_STRING (filename
);
2118 filename
= Fexpand_file_name (filename
, Qnil
);
2121 Vpurify_flag
= Qnil
;
2124 /* Tell malloc where start of impure now is. */
2125 /* Also arrange for warnings when nearly out of space. */
2126 #ifndef SYSTEM_MALLOC
2127 memory_warnings (my_edata
, malloc_warning
);
2129 map_out_data (SDATA (filename
));
2136 #else /* not HAVE_SHM */
2138 DEFUN ("dump-emacs", Fdump_emacs
, Sdump_emacs
, 2, 2, 0,
2139 doc
: /* Dump current state of Emacs into executable file FILENAME.
2140 Take symbols from SYMFILE (presumably the file you executed to run Emacs).
2141 This is used in the file `loadup.el' when building Emacs.
2143 You must run Emacs in batch mode in order to dump it. */)
2145 Lisp_Object filename
, symfile
;
2147 extern char my_edata
[];
2150 int count
= SPECPDL_INDEX ();
2154 if (! noninteractive
)
2155 error ("Dumping Emacs works only in batch mode");
2158 if (heap_bss_diff
> MAX_HEAP_BSS_DIFF
)
2160 fprintf (stderr
, "**************************************************\n");
2161 fprintf (stderr
, "Warning: Your system has a gap between BSS and the\n");
2162 fprintf (stderr
, "heap (%lu bytes). This usually means that exec-shield\n",
2164 fprintf (stderr
, "or something similar is in effect. The dump may\n");
2165 fprintf (stderr
, "fail because of this. See the section about\n");
2166 fprintf (stderr
, "exec-shield in etc/PROBLEMS for more information.\n");
2167 fprintf (stderr
, "**************************************************\n");
2169 #endif /* GNU_LINUX */
2171 /* Bind `command-line-processed' to nil before dumping,
2172 so that the dumped Emacs will process its command line
2173 and set up to work with X windows if appropriate. */
2174 symbol
= intern ("command-line-processed");
2175 specbind (symbol
, Qnil
);
2177 CHECK_STRING (filename
);
2178 filename
= Fexpand_file_name (filename
, Qnil
);
2179 if (!NILP (symfile
))
2181 CHECK_STRING (symfile
);
2182 if (SCHARS (symfile
))
2183 symfile
= Fexpand_file_name (symfile
, Qnil
);
2187 Vpurify_flag
= Qnil
;
2190 set_time_zone_rule (dump_tz
);
2191 #ifndef LOCALTIME_CACHE
2192 /* Force a tz reload, since set_time_zone_rule doesn't. */
2198 /* Tell malloc where start of impure now is. */
2199 /* Also arrange for warnings when nearly out of space. */
2200 #ifndef SYSTEM_MALLOC
2202 /* On Windows, this was done before dumping, and that once suffices.
2203 Meanwhile, my_edata is not valid on Windows. */
2204 memory_warnings (my_edata
, malloc_warning
);
2205 #endif /* not WINDOWSNT */
2207 #if !defined (SYSTEM_MALLOC) && defined (HAVE_GTK_AND_PTHREAD) && !defined SYNC_INPUT
2208 /* Pthread may call malloc before main, and then we will get an endless
2209 loop, because pthread_self (see alloc.c) calls malloc the first time
2210 it is called on some systems. */
2211 reset_malloc_hooks ();
2213 #ifdef DOUG_LEA_MALLOC
2214 malloc_state_ptr
= malloc_get_state ();
2217 #ifdef USE_MMAP_FOR_BUFFERS
2220 unexec (SDATA (filename
),
2221 !NILP (symfile
) ? SDATA (symfile
) : 0, my_edata
, 0, 0);
2222 #ifdef USE_MMAP_FOR_BUFFERS
2225 #ifdef DOUG_LEA_MALLOC
2226 free (malloc_state_ptr
);
2231 return unbind_to (count
, Qnil
);
2234 #endif /* not HAVE_SHM */
2236 #endif /* not CANNOT_DUMP */
2239 /* Recover from setlocale (LC_ALL, ""). */
2243 /* The Emacs Lisp reader needs LC_NUMERIC to be "C",
2244 so that numbers are read and printed properly for Emacs Lisp. */
2245 setlocale (LC_NUMERIC
, "C");
2248 /* Set system locale CATEGORY, with previous locale *PLOCALE, to
2251 synchronize_locale (category
, plocale
, desired_locale
)
2253 Lisp_Object
*plocale
;
2254 Lisp_Object desired_locale
;
2256 if (! EQ (*plocale
, desired_locale
))
2258 *plocale
= desired_locale
;
2259 setlocale (category
, (STRINGP (desired_locale
)
2260 ? (char *) SDATA (desired_locale
)
2265 /* Set system time locale to match Vsystem_time_locale, if possible. */
2267 synchronize_system_time_locale ()
2269 synchronize_locale (LC_TIME
, &Vprevious_system_time_locale
,
2270 Vsystem_time_locale
);
2273 /* Set system messages locale to match Vsystem_messages_locale, if
2276 synchronize_system_messages_locale ()
2279 synchronize_locale (LC_MESSAGES
, &Vprevious_system_messages_locale
,
2280 Vsystem_messages_locale
);
2283 #endif /* HAVE_SETLOCALE */
2290 decode_env_path (evarname
, defalt
)
2291 char *evarname
, *defalt
;
2293 register char *path
, *p
;
2294 Lisp_Object lpath
, element
, tem
;
2296 /* It's okay to use getenv here, because this function is only used
2297 to initialize variables when Emacs starts up, and isn't called
2300 path
= (char *) getenv (evarname
);
2306 /* Ensure values from the environment use the proper directory separator. */
2309 p
= alloca (strlen (path
) + 1);
2313 if ('/' == DIRECTORY_SEP
)
2314 dostounix_filename (path
);
2316 unixtodos_filename (path
);
2322 p
= index (path
, SEPCHAR
);
2323 if (!p
) p
= path
+ strlen (path
);
2324 element
= (p
- path
? make_string (path
, p
- path
)
2325 : build_string ("."));
2327 /* Add /: to the front of the name
2328 if it would otherwise be treated as magic. */
2329 tem
= Ffind_file_name_handler (element
, Qt
);
2331 /* However, if the handler says "I'm safe",
2332 don't bother adding /:. */
2336 prop
= Fget (tem
, intern ("safe-magic"));
2342 element
= concat2 (build_string ("/:"), element
);
2344 lpath
= Fcons (element
, lpath
);
2350 return Fnreverse (lpath
);
2356 Qfile_name_handler_alist
= intern ("file-name-handler-alist");
2357 staticpro (&Qfile_name_handler_alist
);
2361 defsubr (&Sdump_emacs_data
);
2363 defsubr (&Sdump_emacs
);
2367 defsubr (&Skill_emacs
);
2369 defsubr (&Sinvocation_name
);
2370 defsubr (&Sinvocation_directory
);
2372 DEFVAR_LISP ("command-line-args", &Vcommand_line_args
,
2373 doc
: /* Args passed by shell to Emacs, as a list of strings.
2374 Many arguments are deleted from the list as they are processed. */);
2376 DEFVAR_LISP ("system-type", &Vsystem_type
,
2377 doc
: /* Value is symbol indicating type of operating system you are using.
2379 `gnu' compiled for a GNU Hurd system.
2380 `gnu/linux' compiled for a GNU/Linux system.
2381 `darwin' compiled for Darwin (GNU-Darwin, Mac OS X, ...).
2382 `ms-dos' compiled as an MS-DOS application.
2383 `windows-nt' compiled as a native W32 application.
2384 `cygwin' compiled using the Cygwin library.
2385 Anything else indicates some sort of Unix system. */);
2386 Vsystem_type
= intern (SYSTEM_TYPE
);
2388 DEFVAR_LISP ("system-configuration", &Vsystem_configuration
,
2389 doc
: /* Value is string indicating configuration Emacs was built for.
2390 On MS-Windows, the value reflects the OS flavor and version on which
2391 Emacs is running. */);
2392 Vsystem_configuration
= build_string (EMACS_CONFIGURATION
);
2394 DEFVAR_LISP ("system-configuration-options", &Vsystem_configuration_options
,
2395 doc
: /* String containing the configuration options Emacs was built with. */);
2396 Vsystem_configuration_options
= build_string (EMACS_CONFIG_OPTIONS
);
2398 DEFVAR_BOOL ("noninteractive", &noninteractive1
,
2399 doc
: /* Non-nil means Emacs is running without interactive terminal. */);
2401 DEFVAR_LISP ("kill-emacs-hook", &Vkill_emacs_hook
,
2402 doc
: /* Hook to be run when `kill-emacs' is called.
2403 Since `kill-emacs' may be invoked when the terminal is disconnected (or
2404 in other similar situations), functions placed on this hook should not
2405 expect to be able to interact with the user. To ask for confirmation,
2406 see `kill-emacs-query-functions' instead.
2408 The hook is not run in batch mode, i.e., if `noninteractive' is non-nil. */);
2409 Vkill_emacs_hook
= Qnil
;
2411 DEFVAR_INT ("emacs-priority", &emacs_priority
,
2412 doc
: /* Priority for Emacs to run at.
2413 This value is effective only if set before Emacs is dumped,
2414 and only if the Emacs executable is installed with setuid to permit
2415 it to change priority. (Emacs sets its uid back to the real uid.)
2416 Currently, you need to define SET_EMACS_PRIORITY in `config.h'
2417 before you compile Emacs, to enable the code for this feature. */);
2420 DEFVAR_LISP ("path-separator", &Vpath_separator
,
2421 doc
: /* String containing the character that separates directories in
2422 search paths, such as PATH and other similar environment variables. */);
2425 Vpath_separator
= make_string (&c
, 1);
2428 DEFVAR_LISP ("invocation-name", &Vinvocation_name
,
2429 doc
: /* The program name that was used to run Emacs.
2430 Any directory names are omitted. */);
2432 DEFVAR_LISP ("invocation-directory", &Vinvocation_directory
,
2433 doc
: /* The directory in which the Emacs executable was found, to run it.
2434 The value is nil if that directory's name is not known. */);
2436 DEFVAR_LISP ("installation-directory", &Vinstallation_directory
,
2437 doc
: /* A directory within which to look for the `lib-src' and `etc' directories.
2438 This is non-nil when we can't find those directories in their standard
2439 installed locations, but we can find them near where the Emacs executable
2441 Vinstallation_directory
= Qnil
;
2443 DEFVAR_LISP ("system-messages-locale", &Vsystem_messages_locale
,
2444 doc
: /* System locale for messages. */);
2445 Vsystem_messages_locale
= Qnil
;
2447 DEFVAR_LISP ("previous-system-messages-locale",
2448 &Vprevious_system_messages_locale
,
2449 doc
: /* Most recently used system locale for messages. */);
2450 Vprevious_system_messages_locale
= Qnil
;
2452 DEFVAR_LISP ("system-time-locale", &Vsystem_time_locale
,
2453 doc
: /* System locale for time. */);
2454 Vsystem_time_locale
= Qnil
;
2456 DEFVAR_LISP ("previous-system-time-locale", &Vprevious_system_time_locale
,
2457 doc
: /* Most recently used system locale for time. */);
2458 Vprevious_system_time_locale
= Qnil
;
2461 /* arch-tag: 7bfd356a-c720-4612-8ab6-aa4222931c2e
2462 (do not change this comment) */