(mh-make-local-vars):
[emacs.git] / src / emacs.c
blobcfc92bd9519cf5bc3989fb817e8d5ece91d6edb1
1 /* Fully extensible Emacs, running on Unix, intended for GNU.
2 Copyright (C) 1985,86,87,93,94,95,97,98,1999 Free Software Foundation, Inc.
4 This file is part of GNU Emacs.
6 GNU Emacs is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 2, or (at your option)
9 any later version.
11 GNU Emacs is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
16 You should have received a copy of the GNU General Public License
17 along with GNU Emacs; see the file COPYING. If not, write to
18 the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
19 Boston, MA 02111-1307, USA. */
22 #include <config.h>
23 #include <signal.h>
24 #include <errno.h>
25 #include <stdio.h>
27 #include <sys/types.h>
28 #include <sys/file.h>
30 #ifdef VMS
31 #include <ssdef.h>
32 #endif
34 #ifdef HAVE_UNISTD_H
35 #include <unistd.h>
36 #endif
38 #ifdef BSD_SYSTEM
39 #include <sys/ioctl.h>
40 #endif
42 #include "lisp.h"
43 #include "commands.h"
44 #include "intervals.h"
45 #include "buffer.h"
47 #include "systty.h"
48 #include "blockinput.h"
49 #include "syssignal.h"
50 #include "process.h"
51 #include "termhooks.h"
52 #include "keyboard.h"
54 #ifdef HAVE_SETLOCALE
55 #include <locale.h>
56 #endif
58 #ifdef HAVE_SETRLIMIT
59 #include <sys/time.h>
60 #include <sys/resource.h>
61 #endif
63 #ifndef O_RDWR
64 #define O_RDWR 2
65 #endif
67 #ifdef HAVE_SETPGID
68 #if !defined (USG) || defined (BSD_PGRPS)
69 #undef setpgrp
70 #define setpgrp setpgid
71 #endif
72 #endif
74 extern void malloc_warning P_ ((char *));
75 extern void set_time_zone_rule P_ ((char *));
76 extern char *index P_ ((const char *, int));
78 /* Make these values available in GDB, which doesn't see macros. */
80 EMACS_INT gdb_valbits = VALBITS;
81 EMACS_INT gdb_gctypebits = GCTYPEBITS;
82 EMACS_INT gdb_emacs_intbits = sizeof (EMACS_INT) * BITS_PER_CHAR;
83 #ifdef DATA_SEG_BITS
84 EMACS_INT gdb_data_seg_bits = DATA_SEG_BITS;
85 #else
86 EMACS_INT gdb_data_seg_bits = 0;
87 #endif
88 EMACS_INT PVEC_FLAG = PSEUDOVECTOR_FLAG;
90 /* Command line args from shell, as list of strings */
91 Lisp_Object Vcommand_line_args;
93 /* The name under which Emacs was invoked, with any leading directory
94 names discarded. */
95 Lisp_Object Vinvocation_name;
97 /* The directory name from which Emacs was invoked. */
98 Lisp_Object Vinvocation_directory;
100 /* The directory name in which to find subdirs such as lisp and etc.
101 nil means get them only from PATH_LOADSEARCH. */
102 Lisp_Object Vinstallation_directory;
104 /* Hook run by `kill-emacs' before it does really anything. */
105 Lisp_Object Vkill_emacs_hook;
107 #ifdef SIGUSR1
108 /* Hooks for signal USR1 and USR2 handing */
109 Lisp_Object Vsignal_USR1_hook;
110 #ifdef SIGUSR2
111 Lisp_Object Vsignal_USR2_hook;
112 #endif
113 #endif
115 /* Search path separator. */
116 Lisp_Object Vpath_separator;
118 /* Set nonzero after Emacs has started up the first time.
119 Prevents reinitialization of the Lisp world and keymaps
120 on subsequent starts. */
121 int initialized;
123 #ifdef DOUG_LEA_MALLOC
124 /* Preserves a pointer to the memory allocated that copies that
125 static data inside glibc's malloc. */
126 void *malloc_state_ptr;
127 /* From glibc, a routine that returns a copy of the malloc internal state. */
128 extern void *malloc_get_state ();
129 /* From glibc, a routine that overwrites the malloc internal state. */
130 extern void malloc_set_state ();
131 /* Non-zero if the MALLOC_CHECK_ enviroment variable was set while
132 dumping. Used to work around a bug in glibc's malloc. */
133 int malloc_using_checking;
134 #endif
136 /* Variable whose value is symbol giving operating system type. */
137 Lisp_Object Vsystem_type;
139 /* Variable whose value is string giving configuration built for. */
140 Lisp_Object Vsystem_configuration;
142 /* Variable whose value is string giving configuration options,
143 for use when reporting bugs. */
144 Lisp_Object Vsystem_configuration_options;
146 Lisp_Object Qfile_name_handler_alist;
148 /* Current and previous system locales for messages and time. */
149 Lisp_Object Vsystem_messages_locale;
150 Lisp_Object Vprevious_system_messages_locale;
151 Lisp_Object Vsystem_time_locale;
152 Lisp_Object Vprevious_system_time_locale;
154 /* If non-zero, emacs should not attempt to use an window-specific code,
155 but instead should use the virtual terminal under which it was started */
156 int inhibit_window_system;
158 /* If nonzero, set Emacs to run at this priority. This is also used
159 in child_setup and sys_suspend to make sure subshells run at normal
160 priority; Those functions have their own extern declaration. */
161 int emacs_priority;
163 /* If non-zero a filter or a sentinel is running. Tested to save the match
164 data on the first attempt to change it inside asynchronous code. */
165 int running_asynch_code;
167 #ifdef BSD_PGRPS
168 /* See sysdep.c. */
169 extern int inherited_pgroup;
170 #endif
172 #ifdef HAVE_X_WINDOWS
173 /* If non-zero, -d was specified, meaning we're using some window system. */
174 int display_arg;
175 #endif
177 /* An address near the bottom of the stack.
178 Tells GC how to save a copy of the stack. */
179 char *stack_bottom;
181 #ifdef HAVE_WINDOW_SYSTEM
182 extern Lisp_Object Vwindow_system;
183 #endif /* HAVE_WINDOW_SYSTEM */
185 extern Lisp_Object Vauto_save_list_file_name;
187 #ifdef USG_SHARED_LIBRARIES
188 /* If nonzero, this is the place to put the end of the writable segment
189 at startup. */
191 unsigned int bss_end = 0;
192 #endif
194 /* Nonzero means running Emacs without interactive terminal. */
196 int noninteractive;
198 /* Value of Lisp variable `noninteractive'.
199 Normally same as C variable `noninteractive'
200 but nothing terrible happens if user sets this one. */
202 int noninteractive1;
204 /* Save argv and argc. */
205 char **initial_argv;
206 int initial_argc;
208 static void sort_args ();
209 void syms_of_emacs ();
211 #define USAGE1 "\
212 Usage: %s [OPTION-OR-FILENAME]...\n\
214 Run Emacs, the extensible, customizable, self-documenting real-time\n\
215 display editor. The recommended way to start Emacs for normal editing\n\
216 is with no options at all.\n\
218 Run M-x info RET m emacs RET m command arguments RET inside Emacs to\n\
219 read the main documentation for these command-line arguments.\n\
221 Initialization options:\n\
223 --batch do not do interactive display; implies -q\n\
224 --debug-init enable Emacs Lisp debugger during init file\n\
225 --help display this help message and exit\n\
226 --multibyte, --no-unibyte run Emacs in multibyte mode\n\
227 --no-init-file, -q load neither ~/.emacs nor default.el\n\
228 --no-shared-memory, -nl do not use shared memory\n\
229 --no-site-file do not load site-start.el\n\
230 --no-windows, -nw don't communicate with X, ignoring $DISPLAY\n\
231 --terminal, -t DEVICE use DEVICE for terminal I/O\n\
232 --unibyte, --no-multibyte run Emacs in unibyte mode\n\
233 --user, -u USER load ~USER/.emacs instead of your own\n\
234 --version display version information and exit\n\
236 Action options:\n\
238 FILE visit FILE using find-file\n\
239 +LINENUM FILE visit FILE using find-file, then go to line LINENUM\n\
240 --directory, -L DIR add DIR to variable load-path\n\
241 --eval EXPR evaluate Emacs Lisp expression EXPR\n\
242 --execute EXPR evaluate Emacs Lisp expression EXPR\n\
243 --find-file FILE visit FILE\n\
244 --funcall, -f FUNC call Emacs function FUNC with no arguments\n\
245 --insert FILE insert contents of FILE into current buffer\n\
246 --kill exit without asking for confirmation\n\
247 --load, -l FILE load FILE of Emacs Lisp code using the load function\n\
248 --visit FILE visit FILE\n\
251 #define USAGE2 "\
252 Display options:\n\
254 --background-color, -bg COLOR window background color\n\
255 --border-color, -bd COLOR main border color\n\
256 --border-width, -bw WIDTH width of main border\n\
257 --cursor-color, -cr COLOR color of the Emacs cursor indicating point\n\
258 --display, -d DISPLAY use X server DISPLAY\n\
259 --font, -fn FONT default font; must be fixed-widthp\n\
260 --foreground-color, -fg COLOR window foreground color\n\
261 --geometry, -g GEOMETRY window geometry\n\
262 --iconic start Emacs in iconified state\n\
263 --icon-type, -i use picture of gnu for Emacs icon\n\
264 --internal-border, -ib WIDTH width between text and main border\n\
265 --line-spacing, -lsp PIXELS additional space to put between lines\n\
266 --mouse-color, -ms COLOR mouse cursor color in Emacs window\n\
267 --name NAME title of main Emacs window\n\
268 --reverse-video, -r, -rv switch foreground and background\n\
269 --title, -T, -wn, TITLE title for Emacs windows\n\
270 --vertical-scroll-bars, -vb enable vertical scroll bars\n\
271 --xrm XRESOURCES set additional X resources\n\
273 You can generally also specify long option names with a single -; for\n\
274 example, -batch as well as --batch. You can use any unambiguous\n\
275 abbreviation for a --option.\n\
277 Various environment variables and window system resources also affect\n\
278 Emacs' operation. See the main documentation.\n\
280 Report bugs to bug-gnu-emacs@gnu.org. First, please see the Bugs\n\
281 section of the Emacs manual or the file BUGS.\n"
284 /* Signal code for the fatal signal that was received */
285 int fatal_error_code;
287 /* Nonzero if handling a fatal error already */
288 int fatal_error_in_progress;
290 #ifdef SIGUSR1
291 SIGTYPE
292 handle_USR1_signal (sig)
293 int sig;
295 struct input_event buf;
297 bzero (&buf, sizeof buf);
298 buf.kind = USER_SIGNAL_EVENT;
299 buf.frame_or_window = selected_frame;
301 kbd_buffer_store_event (&buf);
303 #endif /* SIGUSR1 */
305 #ifdef SIGUSR2
306 SIGTYPE
307 handle_USR2_signal (sig)
308 int sig;
310 struct input_event buf;
312 bzero (&buf, sizeof buf);
313 buf.kind = USER_SIGNAL_EVENT;
314 buf.code = 1;
315 buf.frame_or_window = selected_frame;
317 kbd_buffer_store_event (&buf);
319 #endif /* SIGUSR2 */
321 /* Handle bus errors, invalid instruction, etc. */
322 SIGTYPE
323 fatal_error_signal (sig)
324 int sig;
326 fatal_error_code = sig;
327 signal (sig, SIG_DFL);
329 TOTALLY_UNBLOCK_INPUT;
331 /* If fatal error occurs in code below, avoid infinite recursion. */
332 if (! fatal_error_in_progress)
334 fatal_error_in_progress = 1;
336 shut_down_emacs (sig, 0, Qnil);
339 #ifdef VMS
340 LIB$STOP (SS$_ABORT);
341 #else
342 /* Signal the same code; this time it will really be fatal.
343 Remember that since we're in a signal handler, the signal we're
344 going to send is probably blocked, so we have to unblock it if we
345 want to really receive it. */
346 #ifndef MSDOS
347 sigunblock (sigmask (fatal_error_code));
348 #endif
349 kill (getpid (), fatal_error_code);
350 #endif /* not VMS */
353 #ifdef SIGDANGER
355 /* Handler for SIGDANGER. */
356 SIGTYPE
357 memory_warning_signal (sig)
358 int sig;
360 signal (sig, memory_warning_signal);
362 malloc_warning ("Operating system warns that virtual memory is running low.\n");
364 /* It might be unsafe to call do_auto_save now. */
365 force_auto_save_soon ();
367 #endif
369 /* We define abort, rather than using it from the library,
370 so that GDB can return from a breakpoint here.
371 MSDOS has its own definition on msdos.c */
373 #if ! defined (DOS_NT) && ! defined (NO_ABORT)
375 #ifndef ABORT_RETURN_TYPE
376 #define ABORT_RETURN_TYPE void
377 #endif
379 ABORT_RETURN_TYPE
380 abort ()
382 kill (getpid (), SIGABRT);
383 /* This shouldn't be executed, but it prevents a warning. */
384 exit (1);
386 #endif
389 /* Code for dealing with Lisp access to the Unix command line */
391 static void
392 init_cmdargs (argc, argv, skip_args)
393 int argc;
394 char **argv;
395 int skip_args;
397 register int i;
398 Lisp_Object name, dir, tem;
399 int count = specpdl_ptr - specpdl;
400 Lisp_Object raw_name;
402 initial_argv = argv;
403 initial_argc = argc;
405 raw_name = build_string (argv[0]);
407 /* Add /: to the front of the name
408 if it would otherwise be treated as magic. */
409 tem = Ffind_file_name_handler (raw_name, Qt);
410 if (! NILP (tem))
411 raw_name = concat2 (build_string ("/:"), raw_name);
413 Vinvocation_name = Ffile_name_nondirectory (raw_name);
414 Vinvocation_directory = Ffile_name_directory (raw_name);
416 /* If we got no directory in argv[0], search PATH to find where
417 Emacs actually came from. */
418 if (NILP (Vinvocation_directory))
420 Lisp_Object found;
421 int yes = openp (Vexec_path, Vinvocation_name,
422 EXEC_SUFFIXES, &found, 1);
423 if (yes == 1)
425 /* Add /: to the front of the name
426 if it would otherwise be treated as magic. */
427 tem = Ffind_file_name_handler (found, Qt);
428 if (! NILP (tem))
429 found = concat2 (build_string ("/:"), found);
430 Vinvocation_directory = Ffile_name_directory (found);
434 if (!NILP (Vinvocation_directory)
435 && NILP (Ffile_name_absolute_p (Vinvocation_directory)))
436 /* Emacs was started with relative path, like ./emacs.
437 Make it absolute. */
438 Vinvocation_directory = Fexpand_file_name (Vinvocation_directory, Qnil);
440 Vinstallation_directory = Qnil;
442 if (!NILP (Vinvocation_directory))
444 dir = Vinvocation_directory;
445 name = Fexpand_file_name (Vinvocation_name, dir);
446 while (1)
448 Lisp_Object tem, lib_src_exists;
449 Lisp_Object etc_exists, info_exists;
451 /* See if dir contains subdirs for use by Emacs.
452 Check for the ones that would exist in a build directory,
453 not including lisp and info. */
454 tem = Fexpand_file_name (build_string ("lib-src"), dir);
455 lib_src_exists = Ffile_exists_p (tem);
457 #ifdef MSDOS
458 /* MSDOS installations frequently remove lib-src, but we still
459 must set installation-directory, or else info won't find
460 its files (it uses the value of installation-directory). */
461 tem = Fexpand_file_name (build_string ("info"), dir);
462 info_exists = Ffile_exists_p (tem);
463 #else
464 info_exists = Qnil;
465 #endif
467 if (!NILP (lib_src_exists) || !NILP (info_exists))
469 tem = Fexpand_file_name (build_string ("etc"), dir);
470 etc_exists = Ffile_exists_p (tem);
471 if (!NILP (etc_exists))
473 Vinstallation_directory
474 = Ffile_name_as_directory (dir);
475 break;
479 /* See if dir's parent contains those subdirs. */
480 tem = Fexpand_file_name (build_string ("../lib-src"), dir);
481 lib_src_exists = Ffile_exists_p (tem);
484 #ifdef MSDOS
485 /* See the MSDOS commentary above. */
486 tem = Fexpand_file_name (build_string ("../info"), dir);
487 info_exists = Ffile_exists_p (tem);
488 #else
489 info_exists = Qnil;
490 #endif
492 if (!NILP (lib_src_exists) || !NILP (info_exists))
494 tem = Fexpand_file_name (build_string ("../etc"), dir);
495 etc_exists = Ffile_exists_p (tem);
496 if (!NILP (etc_exists))
498 tem = Fexpand_file_name (build_string (".."), dir);
499 Vinstallation_directory
500 = Ffile_name_as_directory (tem);
501 break;
505 /* If the Emacs executable is actually a link,
506 next try the dir that the link points into. */
507 tem = Ffile_symlink_p (name);
508 if (!NILP (tem))
510 name = Fexpand_file_name (tem, dir);
511 dir = Ffile_name_directory (name);
513 else
514 break;
518 Vcommand_line_args = Qnil;
520 for (i = argc - 1; i >= 0; i--)
522 if (i == 0 || i > skip_args)
523 Vcommand_line_args
524 = Fcons (build_string (argv[i]), Vcommand_line_args);
527 unbind_to (count, Qnil);
530 DEFUN ("invocation-name", Finvocation_name, Sinvocation_name, 0, 0, 0,
531 "Return the program name that was used to run Emacs.\n\
532 Any directory names are omitted.")
535 return Fcopy_sequence (Vinvocation_name);
538 DEFUN ("invocation-directory", Finvocation_directory, Sinvocation_directory,
539 0, 0, 0,
540 "Return the directory name in which the Emacs executable was located")
543 return Fcopy_sequence (Vinvocation_directory);
547 #ifdef VMS
548 #ifdef LINK_CRTL_SHARE
549 #ifdef SHARABLE_LIB_BUG
550 extern noshare char **environ;
551 #endif /* SHARABLE_LIB_BUG */
552 #endif /* LINK_CRTL_SHARE */
553 #endif /* VMS */
555 #ifdef HAVE_TZSET
556 /* A valid but unlikely value for the TZ environment value.
557 It is OK (though a bit slower) if the user actually chooses this value. */
558 static char dump_tz[] = "UtC0";
559 #endif
561 #ifndef ORDINARY_LINK
562 /* We don't include crtbegin.o and crtend.o in the link,
563 so these functions and variables might be missed.
564 Provide dummy definitions to avoid error.
565 (We don't have any real constructors or destructors.) */
566 #ifdef __GNUC__
567 #ifndef GCC_CTORS_IN_LIBC
568 void __do_global_ctors ()
570 void __do_global_ctors_aux ()
572 void __do_global_dtors ()
574 /* Linux has a bug in its library; avoid an error. */
575 #ifndef LINUX
576 char * __CTOR_LIST__[2] = { (char *) (-1), 0 };
577 #endif
578 char * __DTOR_LIST__[2] = { (char *) (-1), 0 };
579 #endif /* GCC_CTORS_IN_LIBC */
580 void __main ()
582 #endif /* __GNUC__ */
583 #endif /* ORDINARY_LINK */
585 /* Test whether the next argument in ARGV matches SSTR or a prefix of
586 LSTR (at least MINLEN characters). If so, then if VALPTR is non-null
587 (the argument is supposed to have a value) store in *VALPTR either
588 the next argument or the portion of this one after the equal sign.
589 ARGV is read starting at position *SKIPPTR; this index is advanced
590 by the number of arguments used.
592 Too bad we can't just use getopt for all of this, but we don't have
593 enough information to do it right. */
595 static int
596 argmatch (argv, argc, sstr, lstr, minlen, valptr, skipptr)
597 char **argv;
598 int argc;
599 char *sstr;
600 char *lstr;
601 int minlen;
602 char **valptr;
603 int *skipptr;
605 char *p;
606 int arglen;
607 char *arg;
609 /* Don't access argv[argc]; give up in advance. */
610 if (argc <= *skipptr + 1)
611 return 0;
613 arg = argv[*skipptr+1];
614 if (arg == NULL)
615 return 0;
616 if (strcmp (arg, sstr) == 0)
618 if (valptr != NULL)
620 *valptr = argv[*skipptr+2];
621 *skipptr += 2;
623 else
624 *skipptr += 1;
625 return 1;
627 arglen = (valptr != NULL && (p = index (arg, '=')) != NULL
628 ? p - arg : strlen (arg));
629 if (lstr == 0 || arglen < minlen || strncmp (arg, lstr, arglen) != 0)
630 return 0;
631 else if (valptr == NULL)
633 *skipptr += 1;
634 return 1;
636 else if (p != NULL)
638 *valptr = p+1;
639 *skipptr += 1;
640 return 1;
642 else if (argv[*skipptr+2] != NULL)
644 *valptr = argv[*skipptr+2];
645 *skipptr += 2;
646 return 1;
648 else
650 return 0;
654 #ifdef DOUG_LEA_MALLOC
656 /* malloc can be invoked even before main (e.g. by the dynamic
657 linker), so the dumped malloc state must be restored as early as
658 possible using this special hook. */
660 static void
661 malloc_initialize_hook ()
663 extern char **environ;
665 if (initialized)
667 if (!malloc_using_checking)
668 /* Work around a bug in glibc's malloc. MALLOC_CHECK_ must be
669 ignored if the heap to be restored was constructed without
670 malloc checking. Can't use unsetenv, since that calls malloc. */
672 char **p;
674 for (p = environ; *p; p++)
675 if (strncmp (*p, "MALLOC_CHECK_=", 14) == 0)
678 *p = p[1];
679 while (*++p);
680 break;
684 malloc_set_state (malloc_state_ptr);
685 free (malloc_state_ptr);
687 else
688 malloc_using_checking = getenv ("MALLOC_CHECK_") != NULL;
691 void (*__malloc_initialize_hook) () = malloc_initialize_hook;
693 #endif /* DOUG_LEA_MALLOC */
695 /* ARGSUSED */
697 main (argc, argv, envp)
698 int argc;
699 char **argv;
700 char **envp;
702 #if GC_MARK_STACK
703 Lisp_Object dummy;
704 #endif
705 char stack_bottom_variable;
706 int do_initial_setlocale;
707 int skip_args = 0;
708 extern int errno;
709 extern int sys_nerr;
710 #ifdef HAVE_SETRLIMIT
711 struct rlimit rlim;
712 #endif
713 int no_loadup = 0;
715 #if GC_MARK_STACK
716 extern Lisp_Object *stack_base;
717 stack_base = &dummy;
718 #endif
720 #ifdef LINUX_SBRK_BUG
721 __sbrk (1);
722 #endif
724 #ifdef RUN_TIME_REMAP
725 if (initialized)
726 run_time_remap (argv[0]);
727 #endif
729 sort_args (argc, argv);
730 argc = 0;
731 while (argv[argc]) argc++;
733 if (argmatch (argv, argc, "-version", "--version", 3, NULL, &skip_args)
734 /* We don't know the version number unless this is a dumped Emacs.
735 So ignore --version otherwise. */
736 && initialized)
738 Lisp_Object tem;
739 tem = Fsymbol_value (intern ("emacs-version"));
740 if (!STRINGP (tem))
742 fprintf (stderr, "Invalid value of `emacs-version'\n");
743 exit (1);
745 else
747 printf ("GNU Emacs %s\n", XSTRING (tem)->data);
748 printf ("Copyright (C) 1999 Free Software Foundation, Inc.\n");
749 printf ("GNU Emacs comes with ABSOLUTELY NO WARRANTY.\n");
750 printf ("You may redistribute copies of Emacs\n");
751 printf ("under the terms of the GNU General Public License.\n");
752 printf ("For more information about these matters, ");
753 printf ("see the file named COPYING.\n");
754 exit (0);
758 /* Map in shared memory, if we are using that. */
759 #ifdef HAVE_SHM
760 if (argmatch (argv, argc, "-nl", "--no-shared-memory", 6, NULL, &skip_args))
762 map_in_data (0);
763 /* The shared memory was just restored, which clobbered this. */
764 skip_args = 1;
766 else
768 map_in_data (1);
769 /* The shared memory was just restored, which clobbered this. */
770 skip_args = 0;
772 #endif
774 #ifdef NeXT
776 extern int malloc_cookie;
777 /* This helps out unexnext.c. */
778 if (initialized)
779 if (malloc_jumpstart (malloc_cookie) != 0)
780 printf ("malloc jumpstart failed!\n");
782 #endif /* NeXT */
784 #ifdef VMS
785 /* If -map specified, map the data file in */
787 char *file;
788 if (argmatch (argv, argc, "-map", "--map-data", 3, &mapin_file, &skip_args))
789 mapin_data (file);
792 #ifdef LINK_CRTL_SHARE
793 #ifdef SHARABLE_LIB_BUG
794 /* Bletcherous shared libraries! */
795 if (!stdin)
796 stdin = fdopen (0, "r");
797 if (!stdout)
798 stdout = fdopen (1, "w");
799 if (!stderr)
800 stderr = fdopen (2, "w");
801 if (!environ)
802 environ = envp;
803 #endif /* SHARABLE_LIB_BUG */
804 #endif /* LINK_CRTL_SHARE */
805 #endif /* VMS */
807 #if defined (HAVE_SETRLIMIT) && defined (RLIMIT_STACK)
808 /* Extend the stack space available.
809 Don't do that if dumping, since some systems (e.g. DJGPP)
810 might define a smaller stack limit at that time. */
811 if (1
812 #ifndef CANNOT_DUMP
813 && (!noninteractive || initialized)
814 #endif
815 && !getrlimit (RLIMIT_STACK, &rlim))
817 long newlim;
818 extern int re_max_failures;
819 /* Approximate the amount regex.c needs per unit of re_max_failures. */
820 int ratio = 20 * sizeof (char *);
821 /* Then add 33% to cover the size of the smaller stacks that regex.c
822 successively allocates and discards, on its way to the maximum. */
823 ratio += ratio / 3;
824 /* Add in some extra to cover
825 what we're likely to use for other reasons. */
826 newlim = re_max_failures * ratio + 200000;
827 #ifdef __NetBSD__
828 /* NetBSD (at least NetBSD 1.2G and former) has a bug in its
829 stack allocation routine for new process that the allocation
830 fails if stack limit is not on page boundary. So, round up the
831 new limit to page boundary. */
832 newlim = (newlim + getpagesize () - 1) / getpagesize () * getpagesize();
833 #endif
834 if (newlim > rlim.rlim_max)
836 newlim = rlim.rlim_max;
837 /* Don't let regex.c overflow the stack we have. */
838 re_max_failures = (newlim - 200000) / ratio;
840 if (rlim.rlim_cur < newlim)
841 rlim.rlim_cur = newlim;
843 setrlimit (RLIMIT_STACK, &rlim);
845 #endif /* HAVE_SETRLIMIT and RLIMIT_STACK */
847 /* Record (approximately) where the stack begins. */
848 stack_bottom = &stack_bottom_variable;
850 #ifdef USG_SHARED_LIBRARIES
851 if (bss_end)
852 brk ((void *)bss_end);
853 #endif
855 clearerr (stdin);
857 #ifndef SYSTEM_MALLOC
858 /* Arrange to get warning messages as memory fills up. */
859 memory_warnings (0, malloc_warning);
861 /* Call malloc at least once, to run the initial __malloc_hook.
862 Also call realloc and free for consistency. */
863 free (realloc (malloc (4), 4));
865 /* Arrange to disable interrupt input inside malloc etc. */
866 uninterrupt_malloc ();
867 #endif /* not SYSTEM_MALLOC */
869 #ifdef MSDOS
870 /* We do all file input/output as binary files. When we need to translate
871 newlines, we do that manually. */
872 _fmode = O_BINARY;
874 #if __DJGPP__ >= 2
875 if (!isatty (fileno (stdin)))
876 setmode (fileno (stdin), O_BINARY);
877 if (!isatty (fileno (stdout)))
879 fflush (stdout);
880 setmode (fileno (stdout), O_BINARY);
882 #else /* not __DJGPP__ >= 2 */
883 (stdin)->_flag &= ~_IOTEXT;
884 (stdout)->_flag &= ~_IOTEXT;
885 (stderr)->_flag &= ~_IOTEXT;
886 #endif /* not __DJGPP__ >= 2 */
887 #endif /* MSDOS */
889 #ifdef SET_EMACS_PRIORITY
890 if (emacs_priority)
891 nice (emacs_priority);
892 setuid (getuid ());
893 #endif /* SET_EMACS_PRIORITY */
895 /* Skip initial setlocale if LC_ALL is "C", as it's not needed in that case.
896 The build procedure uses this while dumping, to ensure that the
897 dumped Emacs does not have its system locale tables initialized,
898 as that might cause screwups when the dumped Emacs starts up. */
900 char *lc_all = getenv ("LC_ALL");
901 do_initial_setlocale = ! lc_all || strcmp (lc_all, "C");
904 /* Set locale now, so that initial error messages are localized properly.
905 fixup_locale must wait until later, since it builds strings. */
906 if (do_initial_setlocale)
907 setlocale (LC_ALL, "");
909 #ifdef EXTRA_INITIALIZE
910 EXTRA_INITIALIZE;
911 #endif
913 inhibit_window_system = 0;
915 /* Handle the -t switch, which specifies filename to use as terminal */
916 while (1)
918 char *term;
919 if (argmatch (argv, argc, "-t", "--terminal", 4, &term, &skip_args))
921 int result;
922 emacs_close (0);
923 emacs_close (1);
924 result = emacs_open (term, O_RDWR, 0);
925 if (result < 0)
927 char *errstring = strerror (errno);
928 fprintf (stderr, "emacs: %s: %s\n", term, errstring);
929 exit (1);
931 dup (0);
932 if (! isatty (0))
934 fprintf (stderr, "emacs: %s: not a tty\n", term);
935 exit (1);
937 fprintf (stderr, "Using %s\n", term);
938 #ifdef HAVE_WINDOW_SYSTEM
939 inhibit_window_system = 1; /* -t => -nw */
940 #endif
942 else
943 break;
946 if (argmatch (argv, argc, "-nw", "--no-windows", 6, NULL, &skip_args))
947 inhibit_window_system = 1;
949 /* Handle the -batch switch, which means don't do interactive display. */
950 noninteractive = 0;
951 if (argmatch (argv, argc, "-batch", "--batch", 5, NULL, &skip_args))
952 noninteractive = 1;
954 /* Handle the --help option, which gives a usage message.. */
955 if (argmatch (argv, argc, "-help", "--help", 3, NULL, &skip_args))
957 printf (USAGE1, argv[0]);
958 printf (USAGE2);
959 exit (0);
962 if (! noninteractive)
964 #ifdef BSD_PGRPS
965 if (initialized)
967 inherited_pgroup = EMACS_GETPGRP (0);
968 setpgrp (0, getpid ());
970 #else
971 #if defined (USG5) && defined (INTERRUPT_INPUT)
972 setpgrp ();
973 #endif
974 #endif
977 init_signals ();
979 /* Don't catch SIGHUP if dumping. */
980 if (1
981 #ifndef CANNOT_DUMP
982 && initialized
983 #endif
986 sigblock (sigmask (SIGHUP));
987 /* In --batch mode, don't catch SIGHUP if already ignored.
988 That makes nohup work. */
989 if (! noninteractive
990 || signal (SIGHUP, SIG_IGN) != SIG_IGN)
991 signal (SIGHUP, fatal_error_signal);
992 sigunblock (sigmask (SIGHUP));
995 if (
996 #ifndef CANNOT_DUMP
997 ! noninteractive || initialized
998 #else
1000 #endif
1003 /* Don't catch these signals in batch mode if dumping.
1004 On some machines, this sets static data that would make
1005 signal fail to work right when the dumped Emacs is run. */
1006 signal (SIGQUIT, fatal_error_signal);
1007 signal (SIGILL, fatal_error_signal);
1008 signal (SIGTRAP, fatal_error_signal);
1009 #ifdef SIGUSR1
1010 signal (SIGUSR1, handle_USR1_signal);
1011 #ifdef SIGUSR2
1012 signal (SIGUSR2, handle_USR2_signal);
1013 #endif
1014 #endif
1015 #ifdef SIGABRT
1016 signal (SIGABRT, fatal_error_signal);
1017 #endif
1018 #ifdef SIGHWE
1019 signal (SIGHWE, fatal_error_signal);
1020 #endif
1021 #ifdef SIGPRE
1022 signal (SIGPRE, fatal_error_signal);
1023 #endif
1024 #ifdef SIGORE
1025 signal (SIGORE, fatal_error_signal);
1026 #endif
1027 #ifdef SIGUME
1028 signal (SIGUME, fatal_error_signal);
1029 #endif
1030 #ifdef SIGDLK
1031 signal (SIGDLK, fatal_error_signal);
1032 #endif
1033 #ifdef SIGCPULIM
1034 signal (SIGCPULIM, fatal_error_signal);
1035 #endif
1036 #ifdef SIGIOT
1037 /* This is missing on some systems - OS/2, for example. */
1038 signal (SIGIOT, fatal_error_signal);
1039 #endif
1040 #ifdef SIGEMT
1041 signal (SIGEMT, fatal_error_signal);
1042 #endif
1043 signal (SIGFPE, fatal_error_signal);
1044 #ifdef SIGBUS
1045 signal (SIGBUS, fatal_error_signal);
1046 #endif
1047 signal (SIGSEGV, fatal_error_signal);
1048 #ifdef SIGSYS
1049 signal (SIGSYS, fatal_error_signal);
1050 #endif
1051 signal (SIGTERM, fatal_error_signal);
1052 #ifdef SIGXCPU
1053 signal (SIGXCPU, fatal_error_signal);
1054 #endif
1055 #ifdef SIGXFSZ
1056 signal (SIGXFSZ, fatal_error_signal);
1057 #endif /* SIGXFSZ */
1059 #ifdef SIGDANGER
1060 /* This just means available memory is getting low. */
1061 signal (SIGDANGER, memory_warning_signal);
1062 #endif
1064 #ifdef AIX
1065 /* 20 is SIGCHLD, 21 is SIGTTIN, 22 is SIGTTOU. */
1066 signal (SIGXCPU, fatal_error_signal);
1067 #ifndef _I386
1068 signal (SIGIOINT, fatal_error_signal);
1069 #endif
1070 signal (SIGGRANT, fatal_error_signal);
1071 signal (SIGRETRACT, fatal_error_signal);
1072 signal (SIGSOUND, fatal_error_signal);
1073 signal (SIGMSG, fatal_error_signal);
1074 #endif /* AIX */
1077 noninteractive1 = noninteractive;
1079 /* Perform basic initializations (not merely interning symbols) */
1081 if (!initialized)
1083 init_alloc_once ();
1084 init_obarray ();
1085 init_eval_once ();
1086 init_charset_once ();
1087 init_coding_once ();
1088 init_syntax_once (); /* Create standard syntax table. */
1089 init_category_once (); /* Create standard category table. */
1090 /* Must be done before init_buffer */
1091 init_casetab_once ();
1092 init_buffer_once (); /* Create buffer table and some buffers */
1093 init_minibuf_once (); /* Create list of minibuffers */
1094 /* Must precede init_window_once */
1096 /* Call syms_of_xfaces before init_window_once because that
1097 function creates Vterminal_frame. Termcap frames now use
1098 faces, and the face implementation uses some symbols as
1099 face names. */
1100 syms_of_xfaces ();
1101 /* Call syms_of_keyboard before init_window_once because
1102 keyboard sets up symbols that include some face names that
1103 the X support will want to use. This can happen when
1104 CANNOT_DUMP is defined. */
1105 syms_of_keyboard ();
1107 init_window_once (); /* Init the window system */
1108 init_fileio_once (); /* Must precede any path manipulation. */
1111 init_alloc ();
1113 if (do_initial_setlocale)
1115 fixup_locale ();
1116 Vsystem_messages_locale = Vprevious_system_messages_locale;
1117 Vsystem_time_locale = Vprevious_system_time_locale;
1120 init_eval ();
1121 init_data ();
1122 #ifdef CLASH_DETECTION
1123 init_filelock ();;
1124 #endif
1125 init_atimer ();
1126 running_asynch_code = 0;
1128 /* Handle --unibyte and the EMACS_UNIBYTE envvar,
1129 but not while dumping. */
1130 if (
1131 #ifndef CANNOT_DUMP
1132 ! noninteractive || initialized
1133 #else
1135 #endif
1138 int inhibit_unibyte = 0;
1140 /* --multibyte overrides EMACS_UNIBYTE. */
1141 if (argmatch (argv, argc, "-no-unibyte", "--no-unibyte", 4, NULL, &skip_args)
1142 || argmatch (argv, argc, "-multibyte", "--multibyte", 4, NULL, &skip_args))
1143 inhibit_unibyte = 1;
1145 /* --unibyte requests that we set up to do everything with single-byte
1146 buffers and strings. We need to handle this before calling
1147 init_lread, init_editfns and other places that generate Lisp strings
1148 from text in the environment. */
1149 /* Actually this shouldn't be needed as of 20.4 in a generally
1150 unibyte environment. As handa says, environment values
1151 aren't now decoded; also existing buffers are now made
1152 unibyte during startup if .emacs sets unibyte. Tested with
1153 8-bit data in environment variables and /etc/passwd, setting
1154 unibyte and Latin-1 in .emacs. -- Dave Love */
1155 if (argmatch (argv, argc, "-unibyte", "--unibyte", 4, NULL, &skip_args)
1156 || argmatch (argv, argc, "-no-multibyte", "--no-multibyte", 4, NULL, &skip_args)
1157 || (getenv ("EMACS_UNIBYTE") && !inhibit_unibyte))
1159 Lisp_Object old_log_max;
1160 Lisp_Object symbol, tail;
1162 symbol = intern ("default-enable-multibyte-characters");
1163 Fset (symbol, Qnil);
1165 if (initialized)
1167 /* Erase pre-dump messages in *Messages* now so no abort. */
1168 old_log_max = Vmessage_log_max;
1169 XSETFASTINT (Vmessage_log_max, 0);
1170 message_dolog ("", 0, 1, 0);
1171 Vmessage_log_max = old_log_max;
1174 for (tail = Vbuffer_alist; CONSP (tail);
1175 tail = XCDR (tail))
1177 Lisp_Object buffer;
1179 buffer = Fcdr (XCAR (tail));
1180 /* Verify that all buffers are empty now, as they
1181 ought to be. */
1182 if (BUF_Z (XBUFFER (buffer)) > BUF_BEG (XBUFFER (buffer)))
1183 abort ();
1184 /* It is safe to do this crudely in an empty buffer. */
1185 XBUFFER (buffer)->enable_multibyte_characters = Qnil;
1190 no_loadup
1191 = argmatch (argv, argc, "-nl", "--no-loadup", 6, NULL, &skip_args);
1194 #ifdef HAVE_X_WINDOWS
1195 /* Stupid kludge to catch command-line display spec. We can't
1196 handle this argument entirely in window system dependent code
1197 because we don't even know which window system dependent code
1198 to run until we've recognized this argument. */
1200 char *displayname = 0;
1201 int count_before = skip_args;
1203 /* Skip any number of -d options, but only use the last one. */
1204 while (1)
1206 int count_before_this = skip_args;
1208 if (argmatch (argv, argc, "-d", "--display", 3, &displayname, &skip_args))
1209 display_arg = 1;
1210 else if (argmatch (argv, argc, "-display", 0, 3, &displayname, &skip_args))
1211 display_arg = 1;
1212 else
1213 break;
1215 count_before = count_before_this;
1218 /* If we have the form --display=NAME,
1219 convert it into -d name.
1220 This requires inserting a new element into argv. */
1221 if (displayname != 0 && skip_args - count_before == 1)
1223 char **new = (char **) xmalloc (sizeof (char *) * (argc + 2));
1224 int j;
1226 for (j = 0; j < count_before + 1; j++)
1227 new[j] = argv[j];
1228 new[count_before + 1] = "-d";
1229 new[count_before + 2] = displayname;
1230 for (j = count_before + 2; j <argc; j++)
1231 new[j + 1] = argv[j];
1232 argv = new;
1233 argc++;
1235 /* Change --display to -d, when its arg is separate. */
1236 else if (displayname != 0 && skip_args > count_before
1237 && argv[count_before + 1][1] == '-')
1238 argv[count_before + 1] = "-d";
1240 /* Don't actually discard this arg. */
1241 skip_args = count_before;
1243 #endif
1245 /* argmatch must not be used after here,
1246 except when bulding temacs
1247 because the -d argument has not been skipped in skip_args. */
1249 #ifdef MSDOS
1250 /* Call early 'cause init_environment needs it. */
1251 init_dosfns ();
1252 /* Set defaults for several environment variables. */
1253 if (initialized)
1254 init_environment (argc, argv, skip_args);
1255 else
1256 tzset ();
1257 #endif /* MSDOS */
1259 #ifdef WINDOWSNT
1260 /* Initialize environment from registry settings. */
1261 init_environment (argv);
1262 init_ntproc (); /* must precede init_editfns */
1263 #endif
1265 /* egetenv is a pretty low-level facility, which may get called in
1266 many circumstances; it seems flimsy to put off initializing it
1267 until calling init_callproc. */
1268 set_process_environment ();
1269 /* AIX crashes are reported in system versions 3.2.3 and 3.2.4
1270 if this is not done. Do it after set_process_environment so that we
1271 don't pollute Vprocess_environment. */
1272 /* Setting LANG here will defeat the startup locale processing... */
1273 #ifdef AIX3_2
1274 putenv ("LANG=C");
1275 #endif
1277 init_buffer (); /* Init default directory of main buffer */
1279 init_callproc_1 (); /* Must precede init_cmdargs and init_sys_modes. */
1280 init_cmdargs (argc, argv, skip_args); /* Must precede init_lread. */
1282 if (initialized)
1284 /* Erase any pre-dump messages in the message log, to avoid confusion */
1285 Lisp_Object old_log_max;
1286 old_log_max = Vmessage_log_max;
1287 XSETFASTINT (Vmessage_log_max, 0);
1288 message_dolog ("", 0, 1, 0);
1289 Vmessage_log_max = old_log_max;
1292 init_callproc (); /* Must follow init_cmdargs but not init_sys_modes. */
1293 init_lread ();
1295 /* Intern the names of all standard functions and variables;
1296 define standard keys. */
1298 if (!initialized)
1300 /* The basic levels of Lisp must come first */
1301 /* And data must come first of all
1302 for the sake of symbols like error-message */
1303 syms_of_data ();
1304 syms_of_alloc ();
1305 syms_of_lread ();
1306 syms_of_print ();
1307 syms_of_eval ();
1308 syms_of_fns ();
1309 syms_of_floatfns ();
1311 syms_of_abbrev ();
1312 syms_of_buffer ();
1313 syms_of_bytecode ();
1314 syms_of_callint ();
1315 syms_of_casefiddle ();
1316 syms_of_casetab ();
1317 syms_of_callproc ();
1318 syms_of_category ();
1319 syms_of_ccl ();
1320 syms_of_charset ();
1321 syms_of_cmds ();
1322 #ifndef NO_DIR_LIBRARY
1323 syms_of_dired ();
1324 #endif /* not NO_DIR_LIBRARY */
1325 syms_of_display ();
1326 syms_of_doc ();
1327 syms_of_editfns ();
1328 syms_of_emacs ();
1329 syms_of_fileio ();
1330 syms_of_coding (); /* This should be after syms_of_fileio. */
1331 #ifdef CLASH_DETECTION
1332 syms_of_filelock ();
1333 #endif /* CLASH_DETECTION */
1334 syms_of_indent ();
1335 syms_of_insdel ();
1336 syms_of_keymap ();
1337 syms_of_macros ();
1338 syms_of_marker ();
1339 syms_of_minibuf ();
1340 syms_of_mocklisp ();
1341 syms_of_process ();
1342 syms_of_search ();
1343 syms_of_frame ();
1344 syms_of_syntax ();
1345 syms_of_term ();
1346 syms_of_undo ();
1347 #ifdef HAVE_SOUND
1348 syms_of_sound ();
1349 #endif
1351 syms_of_textprop ();
1352 syms_of_composite ();
1353 #ifdef VMS
1354 syms_of_vmsproc ();
1355 #endif /* VMS */
1356 #ifdef WINDOWSNT
1357 syms_of_ntproc ();
1358 #endif /* WINDOWSNT */
1359 syms_of_window ();
1360 syms_of_xdisp ();
1361 #ifdef HAVE_X_WINDOWS
1362 syms_of_xterm ();
1363 syms_of_xfns ();
1364 syms_of_fontset ();
1365 #ifdef HAVE_X11
1366 syms_of_xselect ();
1367 #endif
1368 #endif /* HAVE_X_WINDOWS */
1370 #ifndef HAVE_NTGUI
1371 syms_of_xmenu ();
1372 #endif
1374 #ifdef HAVE_NTGUI
1375 syms_of_w32term ();
1376 syms_of_w32fns ();
1377 syms_of_w32select ();
1378 syms_of_w32menu ();
1379 syms_of_fontset ();
1380 #endif /* HAVE_NTGUI */
1382 #ifdef SYMS_SYSTEM
1383 SYMS_SYSTEM;
1384 #endif
1386 #ifdef SYMS_MACHINE
1387 SYMS_MACHINE;
1388 #endif
1390 keys_of_casefiddle ();
1391 keys_of_cmds ();
1392 keys_of_buffer ();
1393 keys_of_keyboard ();
1394 keys_of_keymap ();
1395 keys_of_macros ();
1396 keys_of_minibuf ();
1397 keys_of_window ();
1398 keys_of_frame ();
1401 if (!noninteractive)
1403 #ifdef VMS
1404 init_vms_input ();/* init_display calls get_frame_size, that needs this */
1405 #endif /* VMS */
1406 init_display (); /* Determine terminal type. init_sys_modes uses results */
1408 init_keyboard (); /* This too must precede init_sys_modes */
1409 #ifdef VMS
1410 init_vmsproc (); /* And this too. */
1411 #endif /* VMS */
1412 init_sys_modes (); /* Init system terminal modes (RAW or CBREAK, etc.) */
1413 #ifdef HAVE_X_WINDOWS
1414 init_xfns ();
1415 #endif /* HAVE_X_WINDOWS */
1416 init_fns ();
1417 init_xdisp ();
1418 init_macros ();
1419 init_editfns ();
1420 init_floatfns ();
1421 #ifdef VMS
1422 init_vmsfns ();
1423 #endif /* VMS */
1424 init_process ();
1425 #ifdef HAVE_SOUND
1426 init_sound ();
1427 #endif
1428 init_window ();
1430 if (!initialized)
1432 char *file;
1433 /* Handle -l loadup, args passed by Makefile. */
1434 if (argmatch (argv, argc, "-l", "--load", 3, &file, &skip_args))
1435 Vtop_level = Fcons (intern ("load"),
1436 Fcons (build_string (file), Qnil));
1437 #ifdef CANNOT_DUMP
1438 /* Unless next switch is -nl, load "loadup.el" first thing. */
1439 if (! no_loadup)
1440 Vtop_level = Fcons (intern ("load"),
1441 Fcons (build_string ("loadup.el"), Qnil));
1442 #endif /* CANNOT_DUMP */
1445 if (initialized)
1447 #ifdef HAVE_TZSET
1449 /* If the execution TZ happens to be the same as the dump TZ,
1450 change it to some other value and then change it back,
1451 to force the underlying implementation to reload the TZ info.
1452 This is needed on implementations that load TZ info from files,
1453 since the TZ file contents may differ between dump and execution. */
1454 char *tz = getenv ("TZ");
1455 if (tz && !strcmp (tz, dump_tz))
1457 ++*tz;
1458 tzset ();
1459 --*tz;
1462 #endif
1465 /* Gerd Moellmann <gerd@acm.org> says this makes profiling work on
1466 FreeBSD. It might work on some other systems too.
1467 Give it a try and tell me if it works on your system. */
1468 #if defined (__FreeBSD__) || defined (__linux)
1469 #ifdef PROFILING
1470 if (initialized)
1472 extern void _mcleanup ();
1473 extern char etext;
1474 extern void safe_bcopy ();
1475 extern void dump_opcode_frequencies ();
1477 atexit (_mcleanup);
1478 /* This uses safe_bcopy because that function comes first in the
1479 Emacs executable. It might be better to use something that
1480 gives the start of the text segment, but start_of_text is not
1481 defined on all systems now. */
1482 monstartup (safe_bcopy, &etext);
1484 else
1485 moncontrol (0);
1486 #endif
1487 #endif
1489 initialized = 1;
1491 #ifdef LOCALTIME_CACHE
1492 /* Some versions of localtime have a bug. They cache the value of the time
1493 zone rather than looking it up every time. Since localtime() is
1494 called to bolt the undumping time into the undumped emacs, this
1495 results in localtime ignoring the TZ environment variable.
1496 This flushes the new TZ value into localtime. */
1497 tzset ();
1498 #endif /* defined (LOCALTIME_CACHE) */
1500 /* Enter editor command loop. This never returns. */
1501 Frecursive_edit ();
1502 /* NOTREACHED */
1505 /* Sort the args so we can find the most important ones
1506 at the beginning of argv. */
1508 /* First, here's a table of all the standard options. */
1510 struct standard_args
1512 char *name;
1513 char *longname;
1514 int priority;
1515 int nargs;
1518 struct standard_args standard_args[] =
1520 { "-version", "--version", 150, 0 },
1521 #ifdef HAVE_SHM
1522 { "-nl", "--no-shared-memory", 140, 0 },
1523 #endif
1524 #ifdef VMS
1525 { "-map", "--map-data", 130, 0 },
1526 #endif
1527 { "-t", "--terminal", 120, 1 },
1528 { "-nw", "--no-windows", 110, 0 },
1529 { "-batch", "--batch", 100, 0 },
1530 { "-help", "--help", 90, 0 },
1531 { "-no-unibyte", "--no-unibyte", 83, 0 },
1532 { "-multibyte", "--multibyte", 82, 0 },
1533 { "-unibyte", "--unibyte", 81, 0 },
1534 { "-no-multibyte", "--no-multibyte", 80, 0 },
1535 #ifdef CANNOT_DUMP
1536 { "-nl", "--no-loadup", 70, 0 },
1537 #endif
1538 /* -d must come last before the options handled in startup.el. */
1539 { "-d", "--display", 60, 1 },
1540 { "-display", 0, 60, 1 },
1541 /* Now for the options handled in startup.el. */
1542 { "-q", "--no-init-file", 50, 0 },
1543 { "-no-init-file", 0, 50, 0 },
1544 { "-no-site-file", "--no-site-file", 40, 0 },
1545 { "-u", "--user", 30, 1 },
1546 { "-user", 0, 30, 1 },
1547 { "-debug-init", "--debug-init", 20, 0 },
1548 { "-i", "--icon-type", 15, 0 },
1549 { "-itype", 0, 15, 0 },
1550 { "-iconic", "--iconic", 15, 0 },
1551 { "-bg", "--background-color", 10, 1 },
1552 { "-background", 0, 10, 1 },
1553 { "-fg", "--foreground-color", 10, 1 },
1554 { "-foreground", 0, 10, 1 },
1555 { "-bd", "--border-color", 10, 1 },
1556 { "-bw", "--border-width", 10, 1 },
1557 { "-ib", "--internal-border", 10, 1 },
1558 { "-ms", "--mouse-color", 10, 1 },
1559 { "-cr", "--cursor-color", 10, 1 },
1560 { "-fn", "--font", 10, 1 },
1561 { "-font", 0, 10, 1 },
1562 { "-g", "--geometry", 10, 1 },
1563 { "-geometry", 0, 10, 1 },
1564 { "-T", "--title", 10, 1 },
1565 { "-title", 0, 10, 1 },
1566 { "-name", "--name", 10, 1 },
1567 { "-xrm", "--xrm", 10, 1 },
1568 { "-r", "--reverse-video", 5, 0 },
1569 { "-rv", 0, 5, 0 },
1570 { "-reverse", 0, 5, 0 },
1571 { "-hb", "--horizontal-scroll-bars", 5, 0 },
1572 { "-vb", "--vertical-scroll-bars", 5, 0 },
1573 /* These have the same priority as ordinary file name args,
1574 so they are not reordered with respect to those. */
1575 { "-L", "--directory", 0, 1 },
1576 { "-directory", 0, 0, 1 },
1577 { "-l", "--load", 0, 1 },
1578 { "-load", 0, 0, 1 },
1579 { "-f", "--funcall", 0, 1 },
1580 { "-funcall", 0, 0, 1 },
1581 { "-eval", "--eval", 0, 1 },
1582 { "-execute", "--execute", 0, 1 },
1583 { "-find-file", "--find-file", 0, 1 },
1584 { "-visit", "--visit", 0, 1 },
1585 { "-file", "--file", 0, 1 },
1586 { "-insert", "--insert", 0, 1 },
1587 /* This should be processed after ordinary file name args and the like. */
1588 { "-kill", "--kill", -10, 0 },
1591 /* Reorder the elements of ARGV (assumed to have ARGC elements)
1592 so that the highest priority ones come first.
1593 Do not change the order of elements of equal priority.
1594 If an option takes an argument, keep it and its argument together.
1596 If an option that takes no argument appears more
1597 than once, eliminate all but one copy of it. */
1599 static void
1600 sort_args (argc, argv)
1601 int argc;
1602 char **argv;
1604 char **new = (char **) xmalloc (sizeof (char *) * argc);
1605 /* For each element of argv,
1606 the corresponding element of options is:
1607 0 for an option that takes no arguments,
1608 1 for an option that takes one argument, etc.
1609 -1 for an ordinary non-option argument. */
1610 int *options = (int *) xmalloc (sizeof (int) * argc);
1611 int *priority = (int *) xmalloc (sizeof (int) * argc);
1612 int to = 1;
1613 int incoming_used = 1;
1614 int from;
1615 int i;
1617 /* Categorize all the options,
1618 and figure out which argv elts are option arguments. */
1619 for (from = 1; from < argc; from++)
1621 options[from] = -1;
1622 priority[from] = 0;
1623 if (argv[from][0] == '-')
1625 int match, thislen;
1626 char *equals;
1628 /* If we have found "--", don't consider
1629 any more arguments as options. */
1630 if (argv[from][1] == '-' && argv[from][2] == 0)
1632 /* Leave the "--", and everything following it, at the end. */
1633 for (; from < argc; from++)
1635 priority[from] = -100;
1636 options[from] = -1;
1638 break;
1641 /* Look for a match with a known old-fashioned option. */
1642 for (i = 0; i < sizeof (standard_args) / sizeof (standard_args[0]); i++)
1643 if (!strcmp (argv[from], standard_args[i].name))
1645 options[from] = standard_args[i].nargs;
1646 priority[from] = standard_args[i].priority;
1647 if (from + standard_args[i].nargs >= argc)
1648 fatal ("Option `%s' requires an argument\n", argv[from]);
1649 from += standard_args[i].nargs;
1650 goto done;
1653 /* Look for a match with a known long option.
1654 MATCH is -1 if no match so far, -2 if two or more matches so far,
1655 >= 0 (the table index of the match) if just one match so far. */
1656 if (argv[from][1] == '-')
1658 match = -1;
1659 thislen = strlen (argv[from]);
1660 equals = index (argv[from], '=');
1661 if (equals != 0)
1662 thislen = equals - argv[from];
1664 for (i = 0;
1665 i < sizeof (standard_args) / sizeof (standard_args[0]); i++)
1666 if (standard_args[i].longname
1667 && !strncmp (argv[from], standard_args[i].longname,
1668 thislen))
1670 if (match == -1)
1671 match = i;
1672 else
1673 match = -2;
1676 /* If we found exactly one match, use that. */
1677 if (match >= 0)
1679 options[from] = standard_args[match].nargs;
1680 priority[from] = standard_args[match].priority;
1681 /* If --OPTION=VALUE syntax is used,
1682 this option uses just one argv element. */
1683 if (equals != 0)
1684 options[from] = 0;
1685 if (from + options[from] >= argc)
1686 fatal ("Option `%s' requires an argument\n", argv[from]);
1687 from += options[from];
1690 done: ;
1694 /* Copy the arguments, in order of decreasing priority, to NEW. */
1695 new[0] = argv[0];
1696 while (incoming_used < argc)
1698 int best = -1;
1699 int best_priority = -9999;
1701 /* Find the highest priority remaining option.
1702 If several have equal priority, take the first of them. */
1703 for (from = 1; from < argc; from++)
1705 if (argv[from] != 0 && priority[from] > best_priority)
1707 best_priority = priority[from];
1708 best = from;
1710 /* Skip option arguments--they are tied to the options. */
1711 if (options[from] > 0)
1712 from += options[from];
1715 if (best < 0)
1716 abort ();
1718 /* Copy the highest priority remaining option, with its args, to NEW.
1719 Unless it is a duplicate of the previous one. */
1720 if (! (options[best] == 0
1721 && ! strcmp (new[to - 1], argv[best])))
1723 new[to++] = argv[best];
1724 for (i = 0; i < options[best]; i++)
1725 new[to++] = argv[best + i + 1];
1728 incoming_used += 1 + (options[best] > 0 ? options[best] : 0);
1730 /* Clear out this option in ARGV. */
1731 argv[best] = 0;
1732 for (i = 0; i < options[best]; i++)
1733 argv[best + i + 1] = 0;
1736 /* If duplicate options were deleted, fill up extra space with null ptrs. */
1737 while (to < argc)
1738 new[to++] = 0;
1740 bcopy (new, argv, sizeof (char *) * argc);
1742 free (options);
1743 free (new);
1744 free (priority);
1747 DEFUN ("kill-emacs", Fkill_emacs, Skill_emacs, 0, 1, "P",
1748 "Exit the Emacs job and kill it.\n\
1749 If ARG is an integer, return ARG as the exit program code.\n\
1750 If ARG is a string, stuff it as keyboard input.\n\n\
1751 The value of `kill-emacs-hook', if not void,\n\
1752 is a list of functions (of no args),\n\
1753 all of which are called before Emacs is actually killed.")
1754 (arg)
1755 Lisp_Object arg;
1757 struct gcpro gcpro1;
1759 GCPRO1 (arg);
1761 if (feof (stdin))
1762 arg = Qt;
1764 if (!NILP (Vrun_hooks) && !noninteractive)
1765 call1 (Vrun_hooks, intern ("kill-emacs-hook"));
1767 UNGCPRO;
1769 /* Is it really necessary to do this deassign
1770 when we are going to exit anyway? */
1771 /* #ifdef VMS
1772 stop_vms_input ();
1773 #endif */
1775 shut_down_emacs (0, 0, STRINGP (arg) ? arg : Qnil);
1777 /* If we have an auto-save list file,
1778 kill it because we are exiting Emacs deliberately (not crashing).
1779 Do it after shut_down_emacs, which does an auto-save. */
1780 if (STRINGP (Vauto_save_list_file_name))
1781 unlink (XSTRING (Vauto_save_list_file_name)->data);
1783 exit (INTEGERP (arg) ? XINT (arg)
1784 #ifdef VMS
1786 #else
1788 #endif
1790 /* NOTREACHED */
1794 /* Perform an orderly shutdown of Emacs. Autosave any modified
1795 buffers, kill any child processes, clean up the terminal modes (if
1796 we're in the foreground), and other stuff like that. Don't perform
1797 any redisplay; this may be called when Emacs is shutting down in
1798 the background, or after its X connection has died.
1800 If SIG is a signal number, print a message for it.
1802 This is called by fatal signal handlers, X protocol error handlers,
1803 and Fkill_emacs. */
1805 void
1806 shut_down_emacs (sig, no_x, stuff)
1807 int sig, no_x;
1808 Lisp_Object stuff;
1810 /* Prevent running of hooks from now on. */
1811 Vrun_hooks = Qnil;
1813 /* If we are controlling the terminal, reset terminal modes */
1814 #ifdef EMACS_HAVE_TTY_PGRP
1816 int pgrp = EMACS_GETPGRP (0);
1818 int tpgrp;
1819 if (EMACS_GET_TTY_PGRP (0, &tpgrp) != -1
1820 && tpgrp == pgrp)
1822 fflush (stdout);
1823 reset_sys_modes ();
1824 if (sig && sig != SIGTERM)
1825 fprintf (stderr, "Fatal error (%d).", sig);
1828 #else
1829 fflush (stdout);
1830 reset_sys_modes ();
1831 #endif
1833 stuff_buffered_input (stuff);
1835 kill_buffer_processes (Qnil);
1836 Fdo_auto_save (Qt, Qnil);
1838 #ifdef CLASH_DETECTION
1839 unlock_all_files ();
1840 #endif
1842 #ifdef VMS
1843 kill_vms_processes ();
1844 #endif
1846 #if 0 /* This triggers a bug in XCloseDisplay and is not needed. */
1847 #ifdef HAVE_X_WINDOWS
1848 /* It's not safe to call intern here. Maybe we are crashing. */
1849 if (!noninteractive && SYMBOLP (Vwindow_system)
1850 && XSYMBOL (Vwindow_system)->name->size == 1
1851 && XSYMBOL (Vwindow_system)->name->data[0] == 'x'
1852 && ! no_x)
1853 Fx_close_current_connection ();
1854 #endif /* HAVE_X_WINDOWS */
1855 #endif
1857 #ifdef SIGIO
1858 /* There is a tendency for a SIGIO signal to arrive within exit,
1859 and cause a SIGHUP because the input descriptor is already closed. */
1860 unrequest_sigio ();
1861 signal (SIGIO, SIG_IGN);
1862 #endif
1864 #ifdef WINDOWSNT
1865 term_ntproc ();
1866 #endif
1868 check_glyph_memory ();
1869 check_message_stack ();
1871 #ifdef MSDOS
1872 dos_cleanup ();
1873 #endif
1878 #ifndef CANNOT_DUMP
1880 #ifdef HAVE_SHM
1882 DEFUN ("dump-emacs-data", Fdump_emacs_data, Sdump_emacs_data, 1, 1, 0,
1883 "Dump current state of Emacs into data file FILENAME.\n\
1884 This function exists on systems that use HAVE_SHM.")
1885 (filename)
1886 Lisp_Object filename;
1888 extern char my_edata[];
1889 Lisp_Object tem;
1891 CHECK_STRING (filename, 0);
1892 filename = Fexpand_file_name (filename, Qnil);
1894 tem = Vpurify_flag;
1895 Vpurify_flag = Qnil;
1897 fflush (stdout);
1898 /* Tell malloc where start of impure now is */
1899 /* Also arrange for warnings when nearly out of space. */
1900 #ifndef SYSTEM_MALLOC
1901 memory_warnings (my_edata, malloc_warning);
1902 #endif
1903 map_out_data (XSTRING (filename)->data);
1905 Vpurify_flag = tem;
1907 return Qnil;
1910 #else /* not HAVE_SHM */
1912 DEFUN ("dump-emacs", Fdump_emacs, Sdump_emacs, 2, 2, 0,
1913 "Dump current state of Emacs into executable file FILENAME.\n\
1914 Take symbols from SYMFILE (presumably the file you executed to run Emacs).\n\
1915 This is used in the file `loadup.el' when building Emacs.\n\
1917 You must run Emacs in batch mode in order to dump it.")
1918 (filename, symfile)
1919 Lisp_Object filename, symfile;
1921 extern char my_edata[];
1922 Lisp_Object tem;
1923 Lisp_Object symbol;
1924 int count = specpdl_ptr - specpdl;
1926 if (! noninteractive)
1927 error ("Dumping Emacs works only in batch mode");
1929 /* Bind `command-line-processed' to nil before dumping,
1930 so that the dumped Emacs will process its command line
1931 and set up to work with X windows if appropriate. */
1932 symbol = intern ("command-line-process");
1933 specbind (symbol, Qnil);
1935 CHECK_STRING (filename, 0);
1936 filename = Fexpand_file_name (filename, Qnil);
1937 if (!NILP (symfile))
1939 CHECK_STRING (symfile, 0);
1940 if (XSTRING (symfile)->size)
1941 symfile = Fexpand_file_name (symfile, Qnil);
1944 tem = Vpurify_flag;
1945 Vpurify_flag = Qnil;
1947 #ifdef HAVE_TZSET
1948 set_time_zone_rule (dump_tz);
1949 #ifndef LOCALTIME_CACHE
1950 /* Force a tz reload, since set_time_zone_rule doesn't. */
1951 tzset ();
1952 #endif
1953 #endif
1955 fflush (stdout);
1956 #ifdef VMS
1957 mapout_data (XSTRING (filename)->data);
1958 #else
1959 /* Tell malloc where start of impure now is */
1960 /* Also arrange for warnings when nearly out of space. */
1961 #ifndef SYSTEM_MALLOC
1962 #ifndef WINDOWSNT
1963 /* On Windows, this was done before dumping, and that once suffices.
1964 Meanwhile, my_edata is not valid on Windows. */
1965 memory_warnings (my_edata, malloc_warning);
1966 #endif /* not WINDOWSNT */
1967 #endif
1968 #ifdef DOUG_LEA_MALLOC
1969 malloc_state_ptr = malloc_get_state ();
1970 #endif
1971 unexec (XSTRING (filename)->data,
1972 !NILP (symfile) ? XSTRING (symfile)->data : 0, my_edata, 0, 0);
1973 #ifdef DOUG_LEA_MALLOC
1974 free (malloc_state_ptr);
1975 #endif
1976 #endif /* not VMS */
1978 Vpurify_flag = tem;
1980 return unbind_to (count, Qnil);
1983 #endif /* not HAVE_SHM */
1985 #endif /* not CANNOT_DUMP */
1987 #if HAVE_SETLOCALE
1988 /* Recover from setlocale (LC_ALL, ""). */
1989 void
1990 fixup_locale ()
1992 /* The Emacs Lisp reader needs LC_NUMERIC to be "C",
1993 so that numbers are read and printed properly for Emacs Lisp. */
1994 setlocale (LC_NUMERIC, "C");
1997 /* Set system locale CATEGORY, with previous locale *PLOCALE, to
1998 DESIRED_LOCALE. */
1999 static void
2000 synchronize_locale (category, plocale, desired_locale)
2001 int category;
2002 Lisp_Object *plocale;
2003 Lisp_Object desired_locale;
2005 if (! EQ (*plocale, desired_locale))
2007 *plocale = desired_locale;
2008 setlocale (category, (STRINGP (desired_locale)
2009 ? (char *)(XSTRING (desired_locale)->data)
2010 : ""));
2014 /* Set system time locale to match Vsystem_time_locale, if possible. */
2015 void
2016 synchronize_system_time_locale ()
2018 synchronize_locale (LC_TIME, &Vprevious_system_time_locale,
2019 Vsystem_time_locale);
2022 /* Set system messages locale to match Vsystem_messages_locale, if
2023 possible. */
2024 void
2025 synchronize_system_messages_locale ()
2027 #ifdef LC_MESSAGES
2028 synchronize_locale (LC_MESSAGES, &Vprevious_system_messages_locale,
2029 Vsystem_messages_locale);
2030 #endif
2032 #endif /* HAVE_SETLOCALE */
2034 #ifndef SEPCHAR
2035 #define SEPCHAR ':'
2036 #endif
2038 Lisp_Object
2039 decode_env_path (evarname, defalt)
2040 char *evarname, *defalt;
2042 register char *path, *p;
2043 Lisp_Object lpath, element, tem;
2045 /* It's okay to use getenv here, because this function is only used
2046 to initialize variables when Emacs starts up, and isn't called
2047 after that. */
2048 if (evarname != 0)
2049 path = (char *) getenv (evarname);
2050 else
2051 path = 0;
2052 if (!path)
2053 path = defalt;
2054 #ifdef DOS_NT
2055 /* Ensure values from the environment use the proper directory separator. */
2056 if (path)
2058 p = alloca (strlen (path) + 1);
2059 strcpy (p, path);
2060 path = p;
2062 if ('/' == DIRECTORY_SEP)
2063 dostounix_filename (path);
2064 else
2065 unixtodos_filename (path);
2067 #endif
2068 lpath = Qnil;
2069 while (1)
2071 p = index (path, SEPCHAR);
2072 if (!p) p = path + strlen (path);
2073 element = (p - path ? make_string (path, p - path)
2074 : build_string ("."));
2076 /* Add /: to the front of the name
2077 if it would otherwise be treated as magic. */
2078 tem = Ffind_file_name_handler (element, Qt);
2079 if (! NILP (tem))
2080 element = concat2 (build_string ("/:"), element);
2082 lpath = Fcons (element, lpath);
2083 if (*p)
2084 path = p + 1;
2085 else
2086 break;
2088 return Fnreverse (lpath);
2091 void
2092 syms_of_emacs ()
2094 Qfile_name_handler_alist = intern ("file-name-handler-alist");
2095 staticpro (&Qfile_name_handler_alist);
2097 #ifndef CANNOT_DUMP
2098 #ifdef HAVE_SHM
2099 defsubr (&Sdump_emacs_data);
2100 #else
2101 defsubr (&Sdump_emacs);
2102 #endif
2103 #endif
2105 defsubr (&Skill_emacs);
2107 defsubr (&Sinvocation_name);
2108 defsubr (&Sinvocation_directory);
2110 DEFVAR_LISP ("command-line-args", &Vcommand_line_args,
2111 "Args passed by shell to Emacs, as a list of strings.");
2113 DEFVAR_LISP ("system-type", &Vsystem_type,
2114 "Value is symbol indicating type of operating system you are using.");
2115 Vsystem_type = intern (SYSTEM_TYPE);
2117 DEFVAR_LISP ("system-configuration", &Vsystem_configuration,
2118 "Value is string indicating configuration Emacs was built for.");
2119 Vsystem_configuration = build_string (EMACS_CONFIGURATION);
2121 DEFVAR_LISP ("system-configuration-options", &Vsystem_configuration_options,
2122 "String containing the configuration options Emacs was built with.");
2123 Vsystem_configuration_options = build_string (EMACS_CONFIG_OPTIONS);
2125 DEFVAR_BOOL ("noninteractive", &noninteractive1,
2126 "Non-nil means Emacs is running without interactive terminal.");
2128 DEFVAR_LISP ("kill-emacs-hook", &Vkill_emacs_hook,
2129 "Hook to be run whenever kill-emacs is called.\n\
2130 Since kill-emacs may be invoked when the terminal is disconnected (or\n\
2131 in other similar situations), functions placed on this hook should not\n\
2132 expect to be able to interact with the user. To ask for confirmation,\n\
2133 see `kill-emacs-query-functions' instead.");
2134 Vkill_emacs_hook = Qnil;
2136 #ifdef SIGUSR1
2137 DEFVAR_LISP ("signal-USR1-hook", &Vsignal_USR1_hook,
2138 "Hook to be run whenever emacs receives a USR1 signal");
2139 Vsignal_USR1_hook = Qnil;
2140 #ifdef SIGUSR2
2141 DEFVAR_LISP ("signal-USR2-hook", &Vsignal_USR2_hook,
2142 "Hook to be run whenever emacs receives a USR2 signal");
2143 Vsignal_USR2_hook = Qnil;
2144 #endif
2145 #endif
2148 DEFVAR_INT ("emacs-priority", &emacs_priority,
2149 "Priority for Emacs to run at.\n\
2150 This value is effective only if set before Emacs is dumped,\n\
2151 and only if the Emacs executable is installed with setuid to permit\n\
2152 it to change priority. (Emacs sets its uid back to the real uid.)\n\
2153 Currently, you need to define SET_EMACS_PRIORITY in `config.h'\n\
2154 before you compile Emacs, to enable the code for this feature.");
2155 emacs_priority = 0;
2157 DEFVAR_LISP ("path-separator", &Vpath_separator,
2158 "The directory separator in search paths, as a string.");
2160 char c = SEPCHAR;
2161 Vpath_separator = make_string (&c, 1);
2164 DEFVAR_LISP ("invocation-name", &Vinvocation_name,
2165 "The program name that was used to run Emacs.\n\
2166 Any directory names are omitted.");
2168 DEFVAR_LISP ("invocation-directory", &Vinvocation_directory,
2169 "The directory in which the Emacs executable was found, to run it.\n\
2170 The value is nil if that directory's name is not known.");
2172 DEFVAR_LISP ("installation-directory", &Vinstallation_directory,
2173 "A directory within which to look for the `lib-src' and `etc' directories.\n\
2174 This is non-nil when we can't find those directories in their standard\n\
2175 installed locations, but we can find them\n\
2176 near where the Emacs executable was found.");
2177 Vinstallation_directory = Qnil;
2179 DEFVAR_LISP ("system-messages-locale", &Vsystem_messages_locale,
2180 "System locale for messages.");
2181 Vsystem_messages_locale = Qnil;
2183 DEFVAR_LISP ("previous-system-messages-locale",
2184 &Vprevious_system_messages_locale,
2185 "Most recently used system locale for messages.");
2186 Vprevious_system_messages_locale = Qnil;
2188 DEFVAR_LISP ("system-time-locale", &Vsystem_time_locale,
2189 "System locale for time.");
2190 Vsystem_time_locale = Qnil;
2192 DEFVAR_LISP ("previous-system-time-locale", &Vprevious_system_time_locale,
2193 "Most recently used system locale for time.");
2194 Vprevious_system_time_locale = Qnil;