(Fforward_comment): Undo the previous change, since cc-mode
[emacs.git] / src / emacs.c
blobdd2e4b10f3f1d6d66264cc892cace2672c8a55f2
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 extern void malloc_warning ();
68 extern void set_time_zone_rule ();
69 extern char *index ();
71 /* Make these values available in GDB, which doesn't see macros. */
73 EMACS_INT gdb_valbits = VALBITS;
74 EMACS_INT gdb_gctypebits = GCTYPEBITS;
75 EMACS_INT gdb_emacs_intbits = sizeof (EMACS_INT) * BITS_PER_CHAR;
76 #ifdef DATA_SEG_BITS
77 EMACS_INT gdb_data_seg_bits = DATA_SEG_BITS;
78 #else
79 EMACS_INT gdb_data_seg_bits = 0;
80 #endif
81 EMACS_INT PVEC_FLAG = PSEUDOVECTOR_FLAG;
83 /* Command line args from shell, as list of strings */
84 Lisp_Object Vcommand_line_args;
86 /* The name under which Emacs was invoked, with any leading directory
87 names discarded. */
88 Lisp_Object Vinvocation_name;
90 /* The directory name from which Emacs was invoked. */
91 Lisp_Object Vinvocation_directory;
93 /* The directory name in which to find subdirs such as lisp and etc.
94 nil means get them only from PATH_LOADSEARCH. */
95 Lisp_Object Vinstallation_directory;
97 /* Hook run by `kill-emacs' before it does really anything. */
98 Lisp_Object Vkill_emacs_hook;
100 #ifdef SIGUSR1
101 /* Hooks for signal USR1 and USR2 handing */
102 Lisp_Object Vsignal_USR1_hook;
103 #ifdef SIGUSR2
104 Lisp_Object Vsignal_USR2_hook;
105 #endif
106 #endif
108 /* Search path separator. */
109 Lisp_Object Vpath_separator;
111 /* Set nonzero after Emacs has started up the first time.
112 Prevents reinitialization of the Lisp world and keymaps
113 on subsequent starts. */
114 int initialized;
116 #ifdef DOUG_LEA_MALLOC
117 /* Preserves a pointer to the memory allocated that copies that
118 static data inside glibc's malloc. */
119 void *malloc_state_ptr;
120 /* From glibc, a routine that returns a copy of the malloc internal state. */
121 extern void *malloc_get_state ();
122 /* From glibc, a routine that overwrites the malloc internal state. */
123 extern void malloc_set_state ();
124 /* Non-zero if the MALLOC_CHECK_ enviroment variable was set while
125 dumping. Used to work around a bug in glibc's malloc. */
126 int malloc_using_checking;
127 #endif
129 /* Variable whose value is symbol giving operating system type. */
130 Lisp_Object Vsystem_type;
132 /* Variable whose value is string giving configuration built for. */
133 Lisp_Object Vsystem_configuration;
135 /* Variable whose value is string giving configuration options,
136 for use when reporting bugs. */
137 Lisp_Object Vsystem_configuration_options;
139 Lisp_Object Qfile_name_handler_alist;
141 /* Current and previous system locales for messages and time. */
142 Lisp_Object Vsystem_messages_locale;
143 Lisp_Object Vprevious_system_messages_locale;
144 Lisp_Object Vsystem_time_locale;
145 Lisp_Object Vprevious_system_time_locale;
147 /* If non-zero, emacs should not attempt to use an window-specific code,
148 but instead should use the virtual terminal under which it was started */
149 int inhibit_window_system;
151 /* If nonzero, set Emacs to run at this priority. This is also used
152 in child_setup and sys_suspend to make sure subshells run at normal
153 priority; Those functions have their own extern declaration. */
154 int emacs_priority;
156 /* If non-zero a filter or a sentinel is running. Tested to save the match
157 data on the first attempt to change it inside asynchronous code. */
158 int running_asynch_code;
160 #ifdef BSD_PGRPS
161 /* See sysdep.c. */
162 extern int inherited_pgroup;
163 #endif
165 #ifdef HAVE_X_WINDOWS
166 /* If non-zero, -d was specified, meaning we're using some window system. */
167 int display_arg;
168 #endif
170 /* An address near the bottom of the stack.
171 Tells GC how to save a copy of the stack. */
172 char *stack_bottom;
174 #ifdef HAVE_WINDOW_SYSTEM
175 extern Lisp_Object Vwindow_system;
176 #endif /* HAVE_WINDOW_SYSTEM */
178 extern Lisp_Object Vauto_save_list_file_name;
180 #ifdef USG_SHARED_LIBRARIES
181 /* If nonzero, this is the place to put the end of the writable segment
182 at startup. */
184 unsigned int bss_end = 0;
185 #endif
187 /* Nonzero means running Emacs without interactive terminal. */
189 int noninteractive;
191 /* Value of Lisp variable `noninteractive'.
192 Normally same as C variable `noninteractive'
193 but nothing terrible happens if user sets this one. */
195 int noninteractive1;
197 /* Save argv and argc. */
198 char **initial_argv;
199 int initial_argc;
201 static void sort_args ();
202 void syms_of_emacs ();
204 #define USAGE1 "\
205 Usage: %s [OPTION-OR-FILENAME]...\n\
207 Run Emacs, the extensible, customizable, self-documenting real-time\n\
208 display editor. The recommended way to start Emacs for normal editing\n\
209 is with no options at all.\n\
211 Run M-x info RET m emacs RET m command arguments RET inside Emacs to\n\
212 read the main documentation for these command-line arguments.\n\
214 Initialization options:\n\
216 --batch do not do interactive display; implies -q\n\
217 --debug-init enable Emacs Lisp debugger during init file\n\
218 --help display this help message and exit\n\
219 --multibyte, --no-unibyte run Emacs in multibyte mode\n\
220 --no-init-file, -q load neither ~/.emacs nor default.el\n\
221 --no-shared-memory, -nl do not use shared memory\n\
222 --no-site-file do not load site-start.el\n\
223 --no-windows, -nw don't communicate with X, ignoring $DISPLAY\n\
224 --terminal, -t DEVICE use DEVICE for terminal I/O\n\
225 --unibyte, --no-multibyte run Emacs in unibyte mode\n\
226 --user, -u USER load ~USER/.emacs instead of your own\n\
227 --version display version information and exit\n\
229 Action options:\n\
231 FILE visit FILE using find-file\n\
232 +LINENUM FILE visit FILE using find-file, then go to line LINENUM\n\
233 --directory, -L DIR add DIR to variable load-path\n\
234 --eval EXPR evaluate Emacs Lisp expression EXPR\n\
235 --execute EXPR evaluate Emacs Lisp expression EXPR\n\
236 --find-file FILE visit FILE\n\
237 --funcall, -f FUNC call Emacs function FUNC with no arguments\n\
238 --insert FILE insert contents of FILE into current buffer\n\
239 --kill exit without asking for confirmation\n\
240 --load, -l FILE load FILE of Emacs Lisp code using the load function\n\
241 --visit FILE visit FILE\n\
244 #define USAGE2 "\
245 Display options:\n\
247 --background-color, -bg COLOR window background color\n\
248 --border-color, -bd COLOR main border color\n\
249 --border-width, -bw WIDTH width of main border\n\
250 --cursor-color, -cr COLOR color of the Emacs cursor indicating point\n\
251 --display, -d DISPLAY use X server DISPLAY\n\
252 --font, -fn FONT default font; must be fixed-widthp\n\
253 --foreground-color, -fg COLOR window foreground color\n\
254 --geometry, -g GEOMETRY window geometry\n\
255 --iconic start Emacs in iconified state\n\
256 --icon-type, -i use picture of gnu for Emacs icon\n\
257 --internal-border, -ib WIDTH width between text and main border\n\
258 --mouse-color, -ms COLOR mouse cursor color in Emacs window\n\
259 --name NAME title of main Emacs window\n\
260 --reverse-video, -r, -rv switch foreground and background\n\
261 --title, -T, -wn, TITLE title for Emacs windows\n\
262 --vertical-scroll-bars, -vb enable vertical scroll bars\n\
263 --xrm XRESOURCES set additional X resources\n\
265 You can generally also specify long option names with a single -; for\n\
266 example, -batch as well as --batch. You can use any unambiguous\n\
267 abbreviation for a --option.\n\
269 Various environment variables and window system resources also affect\n\
270 Emacs' operation. See the main documentation.\n\
272 Report bugs to bug-gnu-emacs@gnu.org. First, please see the Bugs\n\
273 section of the Emacs manual or the file BUGS.\n"
276 /* Signal code for the fatal signal that was received */
277 int fatal_error_code;
279 /* Nonzero if handling a fatal error already */
280 int fatal_error_in_progress;
282 #ifdef SIGUSR1
283 SIGTYPE
284 handle_USR1_signal (sig)
285 int sig;
287 struct input_event buf;
289 buf.kind = user_signal;
290 buf.code = 0;
291 buf.frame_or_window = selected_frame;
292 buf.modifiers = 0;
293 buf.timestamp = 0;
295 kbd_buffer_store_event (&buf);
297 #endif /* SIGUSR1 */
299 #ifdef SIGUSR2
300 SIGTYPE
301 handle_USR2_signal (sig)
302 int sig;
304 struct input_event buf;
306 buf.kind = user_signal;
307 buf.code = 1;
308 buf.frame_or_window = selected_frame;
309 buf.modifiers = 0;
310 buf.timestamp = 0;
312 kbd_buffer_store_event (&buf);
314 #endif /* SIGUSR2 */
316 /* Handle bus errors, illegal instruction, etc. */
317 SIGTYPE
318 fatal_error_signal (sig)
319 int sig;
321 fatal_error_code = sig;
322 signal (sig, SIG_DFL);
324 TOTALLY_UNBLOCK_INPUT;
326 /* If fatal error occurs in code below, avoid infinite recursion. */
327 if (! fatal_error_in_progress)
329 fatal_error_in_progress = 1;
331 shut_down_emacs (sig, 0, Qnil);
334 #ifdef VMS
335 LIB$STOP (SS$_ABORT);
336 #else
337 /* Signal the same code; this time it will really be fatal.
338 Remember that since we're in a signal handler, the signal we're
339 going to send is probably blocked, so we have to unblock it if we
340 want to really receive it. */
341 #ifndef MSDOS
342 sigunblock (sigmask (fatal_error_code));
343 #endif
344 kill (getpid (), fatal_error_code);
345 #endif /* not VMS */
348 #ifdef SIGDANGER
350 /* Handler for SIGDANGER. */
351 SIGTYPE
352 memory_warning_signal (sig)
353 int sig;
355 signal (sig, memory_warning_signal);
357 malloc_warning ("Operating system warns that virtual memory is running low.\n");
359 /* It might be unsafe to call do_auto_save now. */
360 force_auto_save_soon ();
362 #endif
364 /* We define abort, rather than using it from the library,
365 so that GDB can return from a breakpoint here.
366 MSDOS has its own definition on msdos.c */
368 #if ! defined (DOS_NT) && ! defined (NO_ABORT)
370 #ifndef ABORT_RETURN_TYPE
371 #define ABORT_RETURN_TYPE void
372 #endif
374 ABORT_RETURN_TYPE
375 abort ()
377 kill (getpid (), SIGABRT);
378 /* This shouldn't be executed, but it prevents a warning. */
379 exit (1);
381 #endif
384 /* Code for dealing with Lisp access to the Unix command line */
386 static void
387 init_cmdargs (argc, argv, skip_args)
388 int argc;
389 char **argv;
390 int skip_args;
392 register int i;
393 Lisp_Object name, dir, tem;
394 int count = specpdl_ptr - specpdl;
395 Lisp_Object raw_name;
397 initial_argv = argv;
398 initial_argc = argc;
400 raw_name = build_string (argv[0]);
402 /* Add /: to the front of the name
403 if it would otherwise be treated as magic. */
404 tem = Ffind_file_name_handler (raw_name, Qt);
405 if (! NILP (tem))
406 raw_name = concat2 (build_string ("/:"), raw_name);
408 Vinvocation_name = Ffile_name_nondirectory (raw_name);
409 Vinvocation_directory = Ffile_name_directory (raw_name);
411 /* If we got no directory in argv[0], search PATH to find where
412 Emacs actually came from. */
413 if (NILP (Vinvocation_directory))
415 Lisp_Object found;
416 int yes = openp (Vexec_path, Vinvocation_name,
417 EXEC_SUFFIXES, &found, 1);
418 if (yes == 1)
420 /* Add /: to the front of the name
421 if it would otherwise be treated as magic. */
422 tem = Ffind_file_name_handler (found, Qt);
423 if (! NILP (tem))
424 found = concat2 (build_string ("/:"), found);
425 Vinvocation_directory = Ffile_name_directory (found);
429 if (!NILP (Vinvocation_directory)
430 && NILP (Ffile_name_absolute_p (Vinvocation_directory)))
431 /* Emacs was started with relative path, like ./emacs.
432 Make it absolute. */
433 Vinvocation_directory = Fexpand_file_name (Vinvocation_directory, Qnil);
435 Vinstallation_directory = Qnil;
437 if (!NILP (Vinvocation_directory))
439 dir = Vinvocation_directory;
440 name = Fexpand_file_name (Vinvocation_name, dir);
441 while (1)
443 Lisp_Object tem, lib_src_exists;
444 Lisp_Object etc_exists, info_exists;
446 /* See if dir contains subdirs for use by Emacs.
447 Check for the ones that would exist in a build directory,
448 not including lisp and info. */
449 tem = Fexpand_file_name (build_string ("lib-src"), dir);
450 lib_src_exists = Ffile_exists_p (tem);
452 #ifdef MSDOS
453 /* MSDOS installations frequently remove lib-src, but we still
454 must set installation-directory, or else info won't find
455 its files (it uses the value of installation-directory). */
456 tem = Fexpand_file_name (build_string ("info"), dir);
457 info_exists = Ffile_exists_p (tem);
458 #else
459 info_exists = Qnil;
460 #endif
462 if (!NILP (lib_src_exists) || !NILP (info_exists))
464 tem = Fexpand_file_name (build_string ("etc"), dir);
465 etc_exists = Ffile_exists_p (tem);
466 if (!NILP (etc_exists))
468 Vinstallation_directory
469 = Ffile_name_as_directory (dir);
470 break;
474 /* See if dir's parent contains those subdirs. */
475 tem = Fexpand_file_name (build_string ("../lib-src"), dir);
476 lib_src_exists = Ffile_exists_p (tem);
479 #ifdef MSDOS
480 /* See the MSDOS commentary above. */
481 tem = Fexpand_file_name (build_string ("../info"), dir);
482 info_exists = Ffile_exists_p (tem);
483 #else
484 info_exists = Qnil;
485 #endif
487 if (!NILP (lib_src_exists) || !NILP (info_exists))
489 tem = Fexpand_file_name (build_string ("../etc"), dir);
490 etc_exists = Ffile_exists_p (tem);
491 if (!NILP (etc_exists))
493 tem = Fexpand_file_name (build_string (".."), dir);
494 Vinstallation_directory
495 = Ffile_name_as_directory (tem);
496 break;
500 /* If the Emacs executable is actually a link,
501 next try the dir that the link points into. */
502 tem = Ffile_symlink_p (name);
503 if (!NILP (tem))
505 name = Fexpand_file_name (tem, dir);
506 dir = Ffile_name_directory (name);
508 else
509 break;
513 Vcommand_line_args = Qnil;
515 for (i = argc - 1; i >= 0; i--)
517 if (i == 0 || i > skip_args)
518 Vcommand_line_args
519 = Fcons (build_string (argv[i]), Vcommand_line_args);
522 unbind_to (count, Qnil);
525 DEFUN ("invocation-name", Finvocation_name, Sinvocation_name, 0, 0, 0,
526 "Return the program name that was used to run Emacs.\n\
527 Any directory names are omitted.")
530 return Fcopy_sequence (Vinvocation_name);
533 DEFUN ("invocation-directory", Finvocation_directory, Sinvocation_directory,
534 0, 0, 0,
535 "Return the directory name in which the Emacs executable was located")
538 return Fcopy_sequence (Vinvocation_directory);
542 #ifdef VMS
543 #ifdef LINK_CRTL_SHARE
544 #ifdef SHARABLE_LIB_BUG
545 extern noshare char **environ;
546 #endif /* SHARABLE_LIB_BUG */
547 #endif /* LINK_CRTL_SHARE */
548 #endif /* VMS */
550 #ifdef HAVE_TZSET
551 /* A valid but unlikely value for the TZ environment value.
552 It is OK (though a bit slower) if the user actually chooses this value. */
553 static char dump_tz[] = "UtC0";
554 #endif
556 #ifndef ORDINARY_LINK
557 /* We don't include crtbegin.o and crtend.o in the link,
558 so these functions and variables might be missed.
559 Provide dummy definitions to avoid error.
560 (We don't have any real constructors or destructors.) */
561 #ifdef __GNUC__
562 #ifndef GCC_CTORS_IN_LIBC
563 void __do_global_ctors ()
565 void __do_global_ctors_aux ()
567 void __do_global_dtors ()
569 /* Linux has a bug in its library; avoid an error. */
570 #ifndef LINUX
571 char * __CTOR_LIST__[2] = { (char *) (-1), 0 };
572 #endif
573 char * __DTOR_LIST__[2] = { (char *) (-1), 0 };
574 #endif /* GCC_CTORS_IN_LIBC */
575 void __main ()
577 #endif /* __GNUC__ */
578 #endif /* ORDINARY_LINK */
580 /* Test whether the next argument in ARGV matches SSTR or a prefix of
581 LSTR (at least MINLEN characters). If so, then if VALPTR is non-null
582 (the argument is supposed to have a value) store in *VALPTR either
583 the next argument or the portion of this one after the equal sign.
584 ARGV is read starting at position *SKIPPTR; this index is advanced
585 by the number of arguments used.
587 Too bad we can't just use getopt for all of this, but we don't have
588 enough information to do it right. */
590 static int
591 argmatch (argv, argc, sstr, lstr, minlen, valptr, skipptr)
592 char **argv;
593 int argc;
594 char *sstr;
595 char *lstr;
596 int minlen;
597 char **valptr;
598 int *skipptr;
600 char *p;
601 int arglen;
602 char *arg;
604 /* Don't access argv[argc]; give up in advance. */
605 if (argc <= *skipptr + 1)
606 return 0;
608 arg = argv[*skipptr+1];
609 if (arg == NULL)
610 return 0;
611 if (strcmp (arg, sstr) == 0)
613 if (valptr != NULL)
615 *valptr = argv[*skipptr+2];
616 *skipptr += 2;
618 else
619 *skipptr += 1;
620 return 1;
622 arglen = (valptr != NULL && (p = index (arg, '=')) != NULL
623 ? p - arg : strlen (arg));
624 if (lstr == 0 || arglen < minlen || strncmp (arg, lstr, arglen) != 0)
625 return 0;
626 else if (valptr == NULL)
628 *skipptr += 1;
629 return 1;
631 else if (p != NULL)
633 *valptr = p+1;
634 *skipptr += 1;
635 return 1;
637 else if (argv[*skipptr+2] != NULL)
639 *valptr = argv[*skipptr+2];
640 *skipptr += 2;
641 return 1;
643 else
645 return 0;
649 #ifdef DOUG_LEA_MALLOC
651 /* malloc can be invoked even before main (e.g. by the dynamic
652 linker), so the dumped malloc state must be restored as early as
653 possible using this special hook. */
655 static void
656 malloc_initialize_hook ()
658 extern char **environ;
660 if (initialized)
662 if (!malloc_using_checking)
663 /* Work around a bug in glibc's malloc. MALLOC_CHECK_ must be
664 ignored if the heap to be restored was constructed without
665 malloc checking. Can't use unsetenv, since that calls malloc. */
667 char **p;
669 for (p = environ; *p; p++)
670 if (strncmp (*p, "MALLOC_CHECK_=", 14) == 0)
673 *p = p[1];
674 while (*++p);
675 break;
679 malloc_set_state (malloc_state_ptr);
680 free (malloc_state_ptr);
682 else
683 malloc_using_checking = getenv ("MALLOC_CHECK_") != NULL;
686 void (*__malloc_initialize_hook) () = malloc_initialize_hook;
688 #endif /* DOUG_LEA_MALLOC */
690 /* ARGSUSED */
692 main (argc, argv, envp)
693 int argc;
694 char **argv;
695 char **envp;
697 char stack_bottom_variable;
698 int do_initial_setlocale;
699 int skip_args = 0;
700 extern int errno;
701 extern int sys_nerr;
702 #ifdef HAVE_SETRLIMIT
703 struct rlimit rlim;
704 #endif
705 int no_loadup = 0;
707 #ifdef LINUX_SBRK_BUG
708 __sbrk (1);
709 #endif
711 #ifdef RUN_TIME_REMAP
712 if (initialized)
713 run_time_remap (argv[0]);
714 #endif
716 sort_args (argc, argv);
717 argc = 0;
718 while (argv[argc]) argc++;
720 if (argmatch (argv, argc, "-version", "--version", 3, NULL, &skip_args)
721 /* We don't know the version number unless this is a dumped Emacs.
722 So ignore --version otherwise. */
723 && initialized)
725 Lisp_Object tem;
726 tem = Fsymbol_value (intern ("emacs-version"));
727 if (!STRINGP (tem))
729 fprintf (stderr, "Invalid value of `emacs-version'\n");
730 exit (1);
732 else
734 printf ("GNU Emacs %s\n", XSTRING (tem)->data);
735 printf ("Copyright (C) 1999 Free Software Foundation, Inc.\n");
736 printf ("GNU Emacs comes with ABSOLUTELY NO WARRANTY.\n");
737 printf ("You may redistribute copies of Emacs\n");
738 printf ("under the terms of the GNU General Public License.\n");
739 printf ("For more information about these matters, ");
740 printf ("see the file named COPYING.\n");
741 exit (0);
745 /* Map in shared memory, if we are using that. */
746 #ifdef HAVE_SHM
747 if (argmatch (argv, argc, "-nl", "--no-shared-memory", 6, NULL, &skip_args))
749 map_in_data (0);
750 /* The shared memory was just restored, which clobbered this. */
751 skip_args = 1;
753 else
755 map_in_data (1);
756 /* The shared memory was just restored, which clobbered this. */
757 skip_args = 0;
759 #endif
761 #ifdef NeXT
763 extern int malloc_cookie;
764 /* This helps out unexnext.c. */
765 if (initialized)
766 if (malloc_jumpstart (malloc_cookie) != 0)
767 printf ("malloc jumpstart failed!\n");
769 #endif /* NeXT */
771 #ifdef VMS
772 /* If -map specified, map the data file in */
774 char *file;
775 if (argmatch (argv, argc, "-map", "--map-data", 3, &mapin_file, &skip_args))
776 mapin_data (file);
779 #ifdef LINK_CRTL_SHARE
780 #ifdef SHARABLE_LIB_BUG
781 /* Bletcherous shared libraries! */
782 if (!stdin)
783 stdin = fdopen (0, "r");
784 if (!stdout)
785 stdout = fdopen (1, "w");
786 if (!stderr)
787 stderr = fdopen (2, "w");
788 if (!environ)
789 environ = envp;
790 #endif /* SHARABLE_LIB_BUG */
791 #endif /* LINK_CRTL_SHARE */
792 #endif /* VMS */
794 #if defined (HAVE_SETRLIMIT) && defined (RLIMIT_STACK)
795 /* Extend the stack space available.
796 Don't do that if dumping, since some systems (e.g. DJGPP)
797 might define a smaller stack limit at that time. */
798 if (1
799 #ifndef CANNOT_DUMP
800 && (!noninteractive || initialized)
801 #endif
802 && !getrlimit (RLIMIT_STACK, &rlim))
804 long newlim;
805 extern int re_max_failures;
806 /* Approximate the amount regex.c needs per unit of re_max_failures. */
807 int ratio = 20 * sizeof (char *);
808 /* Then add 33% to cover the size of the smaller stacks that regex.c
809 successively allocates and discards, on its way to the maximum. */
810 ratio += ratio / 3;
811 /* Add in some extra to cover
812 what we're likely to use for other reasons. */
813 newlim = re_max_failures * ratio + 200000;
814 #ifdef __NetBSD__
815 /* NetBSD (at least NetBSD 1.2G and former) has a bug in its
816 stack allocation routine for new process that the allocation
817 fails if stack limit is not on page boundary. So, round up the
818 new limit to page boundary. */
819 newlim = (newlim + getpagesize () - 1) / getpagesize () * getpagesize();
820 #endif
821 if (newlim > rlim.rlim_max)
823 newlim = rlim.rlim_max;
824 /* Don't let regex.c overflow the stack we have. */
825 re_max_failures = (newlim - 200000) / ratio;
827 if (rlim.rlim_cur < newlim)
828 rlim.rlim_cur = newlim;
830 setrlimit (RLIMIT_STACK, &rlim);
832 #endif /* HAVE_SETRLIMIT and RLIMIT_STACK */
834 /* Record (approximately) where the stack begins. */
835 stack_bottom = &stack_bottom_variable;
837 #ifdef USG_SHARED_LIBRARIES
838 if (bss_end)
839 brk ((void *)bss_end);
840 #endif
842 clearerr (stdin);
844 #ifndef SYSTEM_MALLOC
845 /* Arrange to get warning messages as memory fills up. */
846 memory_warnings (0, malloc_warning);
848 /* Call malloc at least once, to run the initial __malloc_hook.
849 Also call realloc and free for consistency. */
850 free (realloc (malloc (4), 4));
852 /* Arrange to disable interrupt input inside malloc etc. */
853 uninterrupt_malloc ();
854 #endif /* not SYSTEM_MALLOC */
856 #ifdef MSDOS
857 /* We do all file input/output as binary files. When we need to translate
858 newlines, we do that manually. */
859 _fmode = O_BINARY;
861 #if __DJGPP__ >= 2
862 if (!isatty (fileno (stdin)))
863 setmode (fileno (stdin), O_BINARY);
864 if (!isatty (fileno (stdout)))
866 fflush (stdout);
867 setmode (fileno (stdout), O_BINARY);
869 #else /* not __DJGPP__ >= 2 */
870 (stdin)->_flag &= ~_IOTEXT;
871 (stdout)->_flag &= ~_IOTEXT;
872 (stderr)->_flag &= ~_IOTEXT;
873 #endif /* not __DJGPP__ >= 2 */
874 #endif /* MSDOS */
876 #ifdef SET_EMACS_PRIORITY
877 if (emacs_priority)
878 nice (emacs_priority);
879 setuid (getuid ());
880 #endif /* SET_EMACS_PRIORITY */
882 /* Skip initial setlocale if LC_ALL is "C", as it's not needed in that case.
883 The build procedure uses this while dumping, to ensure that the
884 dumped Emacs does not have its system locale tables initialized,
885 as that might cause screwups when the dumped Emacs starts up. */
887 char *lc_all = getenv ("LC_ALL");
888 do_initial_setlocale = ! lc_all || strcmp (lc_all, "C");
891 /* Set locale now, so that initial error messages are localized properly.
892 fixup_locale must wait until later, since it builds strings. */
893 if (do_initial_setlocale)
894 setlocale (LC_ALL, "");
896 #ifdef EXTRA_INITIALIZE
897 EXTRA_INITIALIZE;
898 #endif
900 inhibit_window_system = 0;
902 /* Handle the -t switch, which specifies filename to use as terminal */
903 while (1)
905 char *term;
906 if (argmatch (argv, argc, "-t", "--terminal", 4, &term, &skip_args))
908 int result;
909 emacs_close (0);
910 emacs_close (1);
911 result = emacs_open (term, O_RDWR, 0);
912 if (result < 0)
914 char *errstring = strerror (errno);
915 fprintf (stderr, "emacs: %s: %s\n", term, errstring);
916 exit (1);
918 dup (0);
919 if (! isatty (0))
921 fprintf (stderr, "emacs: %s: not a tty\n", term);
922 exit (1);
924 fprintf (stderr, "Using %s\n", term);
925 #ifdef HAVE_WINDOW_SYSTEM
926 inhibit_window_system = 1; /* -t => -nw */
927 #endif
929 else
930 break;
933 if (argmatch (argv, argc, "-nw", "--no-windows", 6, NULL, &skip_args))
934 inhibit_window_system = 1;
936 /* Handle the -batch switch, which means don't do interactive display. */
937 noninteractive = 0;
938 if (argmatch (argv, argc, "-batch", "--batch", 5, NULL, &skip_args))
939 noninteractive = 1;
941 /* Handle the --help option, which gives a usage message.. */
942 if (argmatch (argv, argc, "-help", "--help", 3, NULL, &skip_args))
944 printf (USAGE1, argv[0]);
945 printf (USAGE2);
946 exit (0);
949 if (! noninteractive)
951 #ifdef BSD_PGRPS
952 if (initialized)
954 inherited_pgroup = EMACS_GETPGRP (0);
955 setpgrp (0, getpid ());
957 #else
958 #if defined (USG5) && defined (INTERRUPT_INPUT)
959 setpgrp ();
960 #endif
961 #endif
964 init_signals ();
966 /* Don't catch SIGHUP if dumping. */
967 if (1
968 #ifndef CANNOT_DUMP
969 && initialized
970 #endif
973 sigblock (sigmask (SIGHUP));
974 /* In --batch mode, don't catch SIGHUP if already ignored.
975 That makes nohup work. */
976 if (! noninteractive
977 || signal (SIGHUP, SIG_IGN) != SIG_IGN)
978 signal (SIGHUP, fatal_error_signal);
979 sigunblock (sigmask (SIGHUP));
982 if (
983 #ifndef CANNOT_DUMP
984 ! noninteractive || initialized
985 #else
987 #endif
990 /* Don't catch these signals in batch mode if dumping.
991 On some machines, this sets static data that would make
992 signal fail to work right when the dumped Emacs is run. */
993 signal (SIGQUIT, fatal_error_signal);
994 signal (SIGILL, fatal_error_signal);
995 signal (SIGTRAP, fatal_error_signal);
996 #ifdef SIGUSR1
997 signal (SIGUSR1, handle_USR1_signal);
998 #ifdef SIGUSR2
999 signal (SIGUSR2, handle_USR2_signal);
1000 #endif
1001 #endif
1002 #ifdef SIGABRT
1003 signal (SIGABRT, fatal_error_signal);
1004 #endif
1005 #ifdef SIGHWE
1006 signal (SIGHWE, fatal_error_signal);
1007 #endif
1008 #ifdef SIGPRE
1009 signal (SIGPRE, fatal_error_signal);
1010 #endif
1011 #ifdef SIGORE
1012 signal (SIGORE, fatal_error_signal);
1013 #endif
1014 #ifdef SIGUME
1015 signal (SIGUME, fatal_error_signal);
1016 #endif
1017 #ifdef SIGDLK
1018 signal (SIGDLK, fatal_error_signal);
1019 #endif
1020 #ifdef SIGCPULIM
1021 signal (SIGCPULIM, fatal_error_signal);
1022 #endif
1023 #ifdef SIGIOT
1024 /* This is missing on some systems - OS/2, for example. */
1025 signal (SIGIOT, fatal_error_signal);
1026 #endif
1027 #ifdef SIGEMT
1028 signal (SIGEMT, fatal_error_signal);
1029 #endif
1030 signal (SIGFPE, fatal_error_signal);
1031 #ifdef SIGBUS
1032 signal (SIGBUS, fatal_error_signal);
1033 #endif
1034 signal (SIGSEGV, fatal_error_signal);
1035 #ifdef SIGSYS
1036 signal (SIGSYS, fatal_error_signal);
1037 #endif
1038 signal (SIGTERM, fatal_error_signal);
1039 #ifdef SIGXCPU
1040 signal (SIGXCPU, fatal_error_signal);
1041 #endif
1042 #ifdef SIGXFSZ
1043 signal (SIGXFSZ, fatal_error_signal);
1044 #endif /* SIGXFSZ */
1046 #ifdef SIGDANGER
1047 /* This just means available memory is getting low. */
1048 signal (SIGDANGER, memory_warning_signal);
1049 #endif
1051 #ifdef AIX
1052 /* 20 is SIGCHLD, 21 is SIGTTIN, 22 is SIGTTOU. */
1053 signal (SIGXCPU, fatal_error_signal);
1054 #ifndef _I386
1055 signal (SIGIOINT, fatal_error_signal);
1056 #endif
1057 signal (SIGGRANT, fatal_error_signal);
1058 signal (SIGRETRACT, fatal_error_signal);
1059 signal (SIGSOUND, fatal_error_signal);
1060 signal (SIGMSG, fatal_error_signal);
1061 #endif /* AIX */
1064 noninteractive1 = noninteractive;
1066 /* Perform basic initializations (not merely interning symbols) */
1068 if (!initialized)
1070 init_alloc_once ();
1071 init_obarray ();
1072 init_eval_once ();
1073 init_charset_once ();
1074 init_coding_once ();
1075 init_syntax_once (); /* Create standard syntax table. */
1076 init_category_once (); /* Create standard category table. */
1077 /* Must be done before init_buffer */
1078 init_casetab_once ();
1079 init_buffer_once (); /* Create buffer table and some buffers */
1080 init_minibuf_once (); /* Create list of minibuffers */
1081 /* Must precede init_window_once */
1083 /* Call syms_of_xfaces before init_window_once because that
1084 function creates Vterminal_frame. Termcap frames now use
1085 faces, and the face implementation uses some symbols as
1086 face names. */
1087 #ifndef HAVE_NTGUI
1088 syms_of_xfaces ();
1089 #endif
1091 init_window_once (); /* Init the window system */
1092 init_fileio_once (); /* Must precede any path manipulation. */
1095 init_alloc ();
1097 if (do_initial_setlocale)
1099 fixup_locale ();
1100 Vsystem_messages_locale = Vprevious_system_messages_locale;
1101 Vsystem_time_locale = Vprevious_system_time_locale;
1104 init_eval ();
1105 init_coding ();
1106 init_data ();
1107 #ifdef CLASH_DETECTION
1108 init_filelock ();;
1109 #endif
1110 init_atimer ();
1111 running_asynch_code = 0;
1113 /* Handle --unibyte and the EMACS_UNIBYTE envvar,
1114 but not while dumping. */
1115 if (
1116 #ifndef CANNOT_DUMP
1117 ! noninteractive || initialized
1118 #else
1120 #endif
1123 int inhibit_unibyte = 0;
1125 /* --multibyte overrides EMACS_UNIBYTE. */
1126 if (argmatch (argv, argc, "-no-unibyte", "--no-unibyte", 4, NULL, &skip_args)
1127 || argmatch (argv, argc, "-multibyte", "--multibyte", 4, NULL, &skip_args))
1128 inhibit_unibyte = 1;
1130 /* --unibyte requests that we set up to do everything with single-byte
1131 buffers and strings. We need to handle this before calling
1132 init_lread, init_editfns and other places that generate Lisp strings
1133 from text in the environment. */
1134 /* Actually this shouldn't be needed as of 20.4 in a generally
1135 unibyte environment. As handa says, environment values
1136 aren't now decoded; also existing buffers are now made
1137 unibyte during startup if .emacs sets unibyte. Tested with
1138 8-bit data in environment variables and /etc/passwd, setting
1139 unibyte and Latin-1 in .emacs. -- Dave Love */
1140 if (argmatch (argv, argc, "-unibyte", "--unibyte", 4, NULL, &skip_args)
1141 || argmatch (argv, argc, "-no-multibyte", "--no-multibyte", 4, NULL, &skip_args)
1142 || (getenv ("EMACS_UNIBYTE") && !inhibit_unibyte))
1144 Lisp_Object old_log_max;
1145 Lisp_Object symbol, tail;
1147 symbol = intern ("default-enable-multibyte-characters");
1148 Fset (symbol, Qnil);
1150 if (initialized)
1152 /* Erase pre-dump messages in *Messages* now so no abort. */
1153 old_log_max = Vmessage_log_max;
1154 XSETFASTINT (Vmessage_log_max, 0);
1155 message_dolog ("", 0, 1, 0);
1156 Vmessage_log_max = old_log_max;
1159 for (tail = Vbuffer_alist; CONSP (tail);
1160 tail = XCDR (tail))
1162 Lisp_Object buffer;
1164 buffer = Fcdr (XCAR (tail));
1165 /* Verify that all buffers are empty now, as they
1166 ought to be. */
1167 if (BUF_Z (XBUFFER (buffer)) > BUF_BEG (XBUFFER (buffer)))
1168 abort ();
1169 /* It is safe to do this crudely in an empty buffer. */
1170 XBUFFER (buffer)->enable_multibyte_characters = Qnil;
1175 no_loadup
1176 = !argmatch (argv, argc, "-nl", "--no-loadup", 6, NULL, &skip_args);
1179 #ifdef HAVE_X_WINDOWS
1180 /* Stupid kludge to catch command-line display spec. We can't
1181 handle this argument entirely in window system dependent code
1182 because we don't even know which window system dependent code
1183 to run until we've recognized this argument. */
1185 char *displayname = 0;
1186 int count_before = skip_args;
1188 /* Skip any number of -d options, but only use the last one. */
1189 while (1)
1191 int count_before_this = skip_args;
1193 if (argmatch (argv, argc, "-d", "--display", 3, &displayname, &skip_args))
1194 display_arg = 1;
1195 else if (argmatch (argv, argc, "-display", 0, 3, &displayname, &skip_args))
1196 display_arg = 1;
1197 else
1198 break;
1200 count_before = count_before_this;
1203 /* If we have the form --display=NAME,
1204 convert it into -d name.
1205 This requires inserting a new element into argv. */
1206 if (displayname != 0 && skip_args - count_before == 1)
1208 char **new = (char **) xmalloc (sizeof (char *) * (argc + 2));
1209 int j;
1211 for (j = 0; j < count_before + 1; j++)
1212 new[j] = argv[j];
1213 new[count_before + 1] = "-d";
1214 new[count_before + 2] = displayname;
1215 for (j = count_before + 2; j <argc; j++)
1216 new[j + 1] = argv[j];
1217 argv = new;
1218 argc++;
1220 /* Change --display to -d, when its arg is separate. */
1221 else if (displayname != 0 && skip_args > count_before
1222 && argv[count_before + 1][1] == '-')
1223 argv[count_before + 1] = "-d";
1225 /* Don't actually discard this arg. */
1226 skip_args = count_before;
1228 #endif
1230 /* argmatch must not be used after here,
1231 except when bulding temacs
1232 because the -d argument has not been skipped in skip_args. */
1234 #ifdef MSDOS
1235 /* Call early 'cause init_environment needs it. */
1236 init_dosfns ();
1237 /* Set defaults for several environment variables. */
1238 if (initialized)
1239 init_environment (argc, argv, skip_args);
1240 else
1241 tzset ();
1242 #endif /* MSDOS */
1244 #ifdef WINDOWSNT
1245 /* Initialize environment from registry settings. */
1246 init_environment (argv);
1247 init_ntproc (); /* must precede init_editfns */
1248 #endif
1250 /* egetenv is a pretty low-level facility, which may get called in
1251 many circumstances; it seems flimsy to put off initializing it
1252 until calling init_callproc. */
1253 set_process_environment ();
1254 /* AIX crashes are reported in system versions 3.2.3 and 3.2.4
1255 if this is not done. Do it after set_process_environment so that we
1256 don't pollute Vprocess_environment. */
1257 /* Setting LANG here will defeat the startup locale processing... */
1258 #ifdef AIX3_2
1259 putenv ("LANG=C");
1260 #endif
1262 init_buffer (); /* Init default directory of main buffer */
1264 init_callproc_1 (); /* Must precede init_cmdargs and init_sys_modes. */
1265 init_cmdargs (argc, argv, skip_args); /* Must precede init_lread. */
1267 if (initialized)
1269 /* Erase any pre-dump messages in the message log, to avoid confusion */
1270 Lisp_Object old_log_max;
1271 old_log_max = Vmessage_log_max;
1272 XSETFASTINT (Vmessage_log_max, 0);
1273 message_dolog ("", 0, 1, 0);
1274 Vmessage_log_max = old_log_max;
1277 init_callproc (); /* Must follow init_cmdargs but not init_sys_modes. */
1278 init_lread ();
1280 /* Intern the names of all standard functions and variables;
1281 define standard keys. */
1283 if (!initialized)
1285 /* The basic levels of Lisp must come first */
1286 /* And data must come first of all
1287 for the sake of symbols like error-message */
1288 syms_of_data ();
1289 syms_of_alloc ();
1290 syms_of_lread ();
1291 syms_of_print ();
1292 syms_of_eval ();
1293 syms_of_fns ();
1294 syms_of_floatfns ();
1296 syms_of_abbrev ();
1297 syms_of_buffer ();
1298 syms_of_bytecode ();
1299 syms_of_callint ();
1300 syms_of_casefiddle ();
1301 syms_of_casetab ();
1302 syms_of_callproc ();
1303 syms_of_category ();
1304 syms_of_ccl ();
1305 syms_of_charset ();
1306 syms_of_cmds ();
1307 #ifndef NO_DIR_LIBRARY
1308 syms_of_dired ();
1309 #endif /* not NO_DIR_LIBRARY */
1310 syms_of_display ();
1311 syms_of_doc ();
1312 syms_of_editfns ();
1313 syms_of_emacs ();
1314 syms_of_fileio ();
1315 syms_of_coding (); /* This should be after syms_of_fileio. */
1316 #ifdef CLASH_DETECTION
1317 syms_of_filelock ();
1318 #endif /* CLASH_DETECTION */
1319 syms_of_indent ();
1320 syms_of_insdel ();
1321 syms_of_keyboard ();
1322 syms_of_keymap ();
1323 syms_of_macros ();
1324 syms_of_marker ();
1325 syms_of_minibuf ();
1326 syms_of_mocklisp ();
1327 syms_of_process ();
1328 syms_of_search ();
1329 syms_of_frame ();
1330 syms_of_syntax ();
1331 syms_of_term ();
1332 syms_of_undo ();
1333 #ifdef HAVE_SOUND
1334 syms_of_sound ();
1335 #endif
1337 syms_of_textprop ();
1338 syms_of_composite ();
1339 #ifdef VMS
1340 syms_of_vmsproc ();
1341 #endif /* VMS */
1342 #ifdef WINDOWSNT
1343 syms_of_ntproc ();
1344 #endif /* WINDOWSNT */
1345 syms_of_window ();
1346 syms_of_xdisp ();
1347 #ifdef HAVE_X_WINDOWS
1348 syms_of_xterm ();
1349 syms_of_xfns ();
1350 syms_of_fontset ();
1351 #ifdef HAVE_X11
1352 syms_of_xselect ();
1353 #endif
1354 #endif /* HAVE_X_WINDOWS */
1356 #ifndef HAVE_NTGUI
1357 syms_of_xmenu ();
1358 #endif
1360 #ifdef HAVE_NTGUI
1361 syms_of_w32term ();
1362 syms_of_w32fns ();
1363 syms_of_w32faces ();
1364 syms_of_w32select ();
1365 syms_of_w32menu ();
1366 syms_of_fontset ();
1367 #endif /* HAVE_NTGUI */
1369 #ifdef SYMS_SYSTEM
1370 SYMS_SYSTEM;
1371 #endif
1373 #ifdef SYMS_MACHINE
1374 SYMS_MACHINE;
1375 #endif
1377 keys_of_casefiddle ();
1378 keys_of_cmds ();
1379 keys_of_buffer ();
1380 keys_of_keyboard ();
1381 keys_of_keymap ();
1382 keys_of_macros ();
1383 keys_of_minibuf ();
1384 keys_of_window ();
1385 keys_of_frame ();
1388 if (!noninteractive)
1390 #ifdef VMS
1391 init_vms_input ();/* init_display calls get_frame_size, that needs this */
1392 #endif /* VMS */
1393 init_display (); /* Determine terminal type. init_sys_modes uses results */
1395 init_keyboard (); /* This too must precede init_sys_modes */
1396 #ifdef VMS
1397 init_vmsproc (); /* And this too. */
1398 #endif /* VMS */
1399 init_sys_modes (); /* Init system terminal modes (RAW or CBREAK, etc.) */
1400 #ifdef HAVE_X_WINDOWS
1401 init_xfns ();
1402 #endif /* HAVE_X_WINDOWS */
1403 init_fns ();
1404 init_xdisp ();
1405 init_macros ();
1406 init_editfns ();
1407 #ifdef LISP_FLOAT_TYPE
1408 init_floatfns ();
1409 #endif
1410 #ifdef VMS
1411 init_vmsfns ();
1412 #endif /* VMS */
1413 init_process ();
1414 #ifdef HAVE_SOUND
1415 init_sound ();
1416 #endif
1418 if (!initialized)
1420 char *file;
1421 /* Handle -l loadup, args passed by Makefile. */
1422 if (argmatch (argv, argc, "-l", "--load", 3, &file, &skip_args))
1423 Vtop_level = Fcons (intern ("load"),
1424 Fcons (build_string (file), Qnil));
1425 #ifdef CANNOT_DUMP
1426 /* Unless next switch is -nl, load "loadup.el" first thing. */
1427 if (! no_loadup)
1428 Vtop_level = Fcons (intern ("load"),
1429 Fcons (build_string ("loadup.el"), Qnil));
1430 #endif /* CANNOT_DUMP */
1433 if (initialized)
1435 #ifdef HAVE_TZSET
1437 /* If the execution TZ happens to be the same as the dump TZ,
1438 change it to some other value and then change it back,
1439 to force the underlying implementation to reload the TZ info.
1440 This is needed on implementations that load TZ info from files,
1441 since the TZ file contents may differ between dump and execution. */
1442 char *tz = getenv ("TZ");
1443 if (tz && !strcmp (tz, dump_tz))
1445 ++*tz;
1446 tzset ();
1447 --*tz;
1450 #endif
1453 /* Gerd Moellmann <gerd@acm.org> says this makes profiling work on
1454 FreeBSD. It might work on some other systems too.
1455 Give it a try and tell me if it works on your system. */
1456 #if defined (__FreeBSD__) || defined (__linux)
1457 #ifdef PROFILING
1458 if (initialized)
1460 extern void _mcleanup ();
1461 extern char etext;
1462 extern void safe_bcopy ();
1463 extern void dump_opcode_frequencies ();
1465 atexit (_mcleanup);
1466 // atexit (dump_opcode_frequencies);
1467 /* This uses safe_bcopy because that function comes first in the
1468 Emacs executable. It might be better to use something that
1469 gives the start of the text segment, but start_of_text is not
1470 defined on all systems now. */
1471 monstartup (safe_bcopy, &etext);
1473 else
1474 moncontrol (0);
1475 #endif
1476 #endif
1478 initialized = 1;
1480 #ifdef LOCALTIME_CACHE
1481 /* Some versions of localtime have a bug. They cache the value of the time
1482 zone rather than looking it up every time. Since localtime() is
1483 called to bolt the undumping time into the undumped emacs, this
1484 results in localtime ignoring the TZ environment variable.
1485 This flushes the new TZ value into localtime. */
1486 tzset ();
1487 #endif /* defined (LOCALTIME_CACHE) */
1489 /* Enter editor command loop. This never returns. */
1490 Frecursive_edit ();
1491 /* NOTREACHED */
1494 /* Sort the args so we can find the most important ones
1495 at the beginning of argv. */
1497 /* First, here's a table of all the standard options. */
1499 struct standard_args
1501 char *name;
1502 char *longname;
1503 int priority;
1504 int nargs;
1507 struct standard_args standard_args[] =
1509 { "-version", "--version", 150, 0 },
1510 #ifdef HAVE_SHM
1511 { "-nl", "--no-shared-memory", 140, 0 },
1512 #endif
1513 #ifdef VMS
1514 { "-map", "--map-data", 130, 0 },
1515 #endif
1516 { "-t", "--terminal", 120, 1 },
1517 { "-nw", "--no-windows", 110, 0 },
1518 { "-batch", "--batch", 100, 0 },
1519 { "-help", "--help", 90, 0 },
1520 { "-no-unibyte", "--no-unibyte", 83, 0 },
1521 { "-multibyte", "--multibyte", 82, 0 },
1522 { "-unibyte", "--unibyte", 81, 0 },
1523 { "-no-multibyte", "--no-multibyte", 80, 0 },
1524 #ifdef CANNOT_DUMP
1525 { "-nl", "--no-loadup", 70, 0 },
1526 #endif
1527 /* -d must come last before the options handled in startup.el. */
1528 { "-d", "--display", 60, 1 },
1529 { "-display", 0, 60, 1 },
1530 /* Now for the options handled in startup.el. */
1531 { "-q", "--no-init-file", 50, 0 },
1532 { "-no-init-file", 0, 50, 0 },
1533 { "-no-site-file", "--no-site-file", 40, 0 },
1534 { "-u", "--user", 30, 1 },
1535 { "-user", 0, 30, 1 },
1536 { "-debug-init", "--debug-init", 20, 0 },
1537 { "-i", "--icon-type", 15, 0 },
1538 { "-itype", 0, 15, 0 },
1539 { "-iconic", "--iconic", 15, 0 },
1540 { "-bg", "--background-color", 10, 1 },
1541 { "-background", 0, 10, 1 },
1542 { "-fg", "--foreground-color", 10, 1 },
1543 { "-foreground", 0, 10, 1 },
1544 { "-bd", "--border-color", 10, 1 },
1545 { "-bw", "--border-width", 10, 1 },
1546 { "-ib", "--internal-border", 10, 1 },
1547 { "-ms", "--mouse-color", 10, 1 },
1548 { "-cr", "--cursor-color", 10, 1 },
1549 { "-fn", "--font", 10, 1 },
1550 { "-font", 0, 10, 1 },
1551 { "-g", "--geometry", 10, 1 },
1552 { "-geometry", 0, 10, 1 },
1553 { "-T", "--title", 10, 1 },
1554 { "-title", 0, 10, 1 },
1555 { "-name", "--name", 10, 1 },
1556 { "-xrm", "--xrm", 10, 1 },
1557 { "-r", "--reverse-video", 5, 0 },
1558 { "-rv", 0, 5, 0 },
1559 { "-reverse", 0, 5, 0 },
1560 { "-hb", "--horizontal-scroll-bars", 5, 0 },
1561 { "-vb", "--vertical-scroll-bars", 5, 0 },
1562 /* These have the same priority as ordinary file name args,
1563 so they are not reordered with respect to those. */
1564 { "-L", "--directory", 0, 1 },
1565 { "-directory", 0, 0, 1 },
1566 { "-l", "--load", 0, 1 },
1567 { "-load", 0, 0, 1 },
1568 { "-f", "--funcall", 0, 1 },
1569 { "-funcall", 0, 0, 1 },
1570 { "-eval", "--eval", 0, 1 },
1571 { "-execute", "--execute", 0, 1 },
1572 { "-find-file", "--find-file", 0, 1 },
1573 { "-visit", "--visit", 0, 1 },
1574 { "-file", "--file", 0, 1 },
1575 { "-insert", "--insert", 0, 1 },
1576 /* This should be processed after ordinary file name args and the like. */
1577 { "-kill", "--kill", -10, 0 },
1580 /* Reorder the elements of ARGV (assumed to have ARGC elements)
1581 so that the highest priority ones come first.
1582 Do not change the order of elements of equal priority.
1583 If an option takes an argument, keep it and its argument together.
1585 If an option that takes no argument appears more
1586 than once, eliminate all but one copy of it. */
1588 static void
1589 sort_args (argc, argv)
1590 int argc;
1591 char **argv;
1593 char **new = (char **) xmalloc (sizeof (char *) * argc);
1594 /* For each element of argv,
1595 the corresponding element of options is:
1596 0 for an option that takes no arguments,
1597 1 for an option that takes one argument, etc.
1598 -1 for an ordinary non-option argument. */
1599 int *options = (int *) xmalloc (sizeof (int) * argc);
1600 int *priority = (int *) xmalloc (sizeof (int) * argc);
1601 int to = 1;
1602 int incoming_used = 1;
1603 int from;
1604 int i;
1606 /* Categorize all the options,
1607 and figure out which argv elts are option arguments. */
1608 for (from = 1; from < argc; from++)
1610 options[from] = -1;
1611 priority[from] = 0;
1612 if (argv[from][0] == '-')
1614 int match, thislen;
1615 char *equals;
1617 /* If we have found "--", don't consider
1618 any more arguments as options. */
1619 if (argv[from][1] == '-' && argv[from][2] == 0)
1621 /* Leave the "--", and everything following it, at the end. */
1622 for (; from < argc; from++)
1624 priority[from] = -100;
1625 options[from] = -1;
1627 break;
1630 /* Look for a match with a known old-fashioned option. */
1631 for (i = 0; i < sizeof (standard_args) / sizeof (standard_args[0]); i++)
1632 if (!strcmp (argv[from], standard_args[i].name))
1634 options[from] = standard_args[i].nargs;
1635 priority[from] = standard_args[i].priority;
1636 if (from + standard_args[i].nargs >= argc)
1637 fatal ("Option `%s' requires an argument\n", argv[from]);
1638 from += standard_args[i].nargs;
1639 goto done;
1642 /* Look for a match with a known long option.
1643 MATCH is -1 if no match so far, -2 if two or more matches so far,
1644 >= 0 (the table index of the match) if just one match so far. */
1645 if (argv[from][1] == '-')
1647 match = -1;
1648 thislen = strlen (argv[from]);
1649 equals = index (argv[from], '=');
1650 if (equals != 0)
1651 thislen = equals - argv[from];
1653 for (i = 0;
1654 i < sizeof (standard_args) / sizeof (standard_args[0]); i++)
1655 if (standard_args[i].longname
1656 && !strncmp (argv[from], standard_args[i].longname,
1657 thislen))
1659 if (match == -1)
1660 match = i;
1661 else
1662 match = -2;
1665 /* If we found exactly one match, use that. */
1666 if (match >= 0)
1668 options[from] = standard_args[match].nargs;
1669 priority[from] = standard_args[match].priority;
1670 /* If --OPTION=VALUE syntax is used,
1671 this option uses just one argv element. */
1672 if (equals != 0)
1673 options[from] = 0;
1674 if (from + options[from] >= argc)
1675 fatal ("Option `%s' requires an argument\n", argv[from]);
1676 from += options[from];
1679 done: ;
1683 /* Copy the arguments, in order of decreasing priority, to NEW. */
1684 new[0] = argv[0];
1685 while (incoming_used < argc)
1687 int best = -1;
1688 int best_priority = -9999;
1690 /* Find the highest priority remaining option.
1691 If several have equal priority, take the first of them. */
1692 for (from = 1; from < argc; from++)
1694 if (argv[from] != 0 && priority[from] > best_priority)
1696 best_priority = priority[from];
1697 best = from;
1699 /* Skip option arguments--they are tied to the options. */
1700 if (options[from] > 0)
1701 from += options[from];
1704 if (best < 0)
1705 abort ();
1707 /* Copy the highest priority remaining option, with its args, to NEW.
1708 Unless it is a duplicate of the previous one. */
1709 if (! (options[best] == 0
1710 && ! strcmp (new[to - 1], argv[best])))
1712 new[to++] = argv[best];
1713 for (i = 0; i < options[best]; i++)
1714 new[to++] = argv[best + i + 1];
1717 incoming_used += 1 + (options[best] > 0 ? options[best] : 0);
1719 /* Clear out this option in ARGV. */
1720 argv[best] = 0;
1721 for (i = 0; i < options[best]; i++)
1722 argv[best + i + 1] = 0;
1725 /* If duplicate options were deleted, fill up extra space with null ptrs. */
1726 while (to < argc)
1727 new[to++] = 0;
1729 bcopy (new, argv, sizeof (char *) * argc);
1731 free (options);
1732 free (new);
1733 free (priority);
1736 DEFUN ("kill-emacs", Fkill_emacs, Skill_emacs, 0, 1, "P",
1737 "Exit the Emacs job and kill it.\n\
1738 If ARG is an integer, return ARG as the exit program code.\n\
1739 If ARG is a string, stuff it as keyboard input.\n\n\
1740 The value of `kill-emacs-hook', if not void,\n\
1741 is a list of functions (of no args),\n\
1742 all of which are called before Emacs is actually killed.")
1743 (arg)
1744 Lisp_Object arg;
1746 struct gcpro gcpro1;
1748 GCPRO1 (arg);
1750 if (feof (stdin))
1751 arg = Qt;
1753 if (!NILP (Vrun_hooks) && !noninteractive)
1754 call1 (Vrun_hooks, intern ("kill-emacs-hook"));
1756 UNGCPRO;
1758 /* Is it really necessary to do this deassign
1759 when we are going to exit anyway? */
1760 /* #ifdef VMS
1761 stop_vms_input ();
1762 #endif */
1764 shut_down_emacs (0, 0, STRINGP (arg) ? arg : Qnil);
1766 /* If we have an auto-save list file,
1767 kill it because we are exiting Emacs deliberately (not crashing).
1768 Do it after shut_down_emacs, which does an auto-save. */
1769 if (STRINGP (Vauto_save_list_file_name))
1770 unlink (XSTRING (Vauto_save_list_file_name)->data);
1772 exit (INTEGERP (arg) ? XINT (arg)
1773 #ifdef VMS
1775 #else
1777 #endif
1779 /* NOTREACHED */
1783 /* Perform an orderly shutdown of Emacs. Autosave any modified
1784 buffers, kill any child processes, clean up the terminal modes (if
1785 we're in the foreground), and other stuff like that. Don't perform
1786 any redisplay; this may be called when Emacs is shutting down in
1787 the background, or after its X connection has died.
1789 If SIG is a signal number, print a message for it.
1791 This is called by fatal signal handlers, X protocol error handlers,
1792 and Fkill_emacs. */
1794 void
1795 shut_down_emacs (sig, no_x, stuff)
1796 int sig, no_x;
1797 Lisp_Object stuff;
1799 /* Prevent running of hooks from now on. */
1800 Vrun_hooks = Qnil;
1802 /* If we are controlling the terminal, reset terminal modes */
1803 #ifdef EMACS_HAVE_TTY_PGRP
1805 int pgrp = EMACS_GETPGRP (0);
1807 int tpgrp;
1808 if (EMACS_GET_TTY_PGRP (0, &tpgrp) != -1
1809 && tpgrp == pgrp)
1811 fflush (stdout);
1812 reset_sys_modes ();
1813 if (sig && sig != SIGTERM)
1814 fprintf (stderr, "Fatal error (%d).", sig);
1817 #else
1818 fflush (stdout);
1819 reset_sys_modes ();
1820 #endif
1822 stuff_buffered_input (stuff);
1824 kill_buffer_processes (Qnil);
1825 Fdo_auto_save (Qt, Qnil);
1827 #ifdef CLASH_DETECTION
1828 unlock_all_files ();
1829 #endif
1831 #ifdef VMS
1832 kill_vms_processes ();
1833 #endif
1835 #if 0 /* This triggers a bug in XCloseDisplay and is not needed. */
1836 #ifdef HAVE_X_WINDOWS
1837 /* It's not safe to call intern here. Maybe we are crashing. */
1838 if (!noninteractive && SYMBOLP (Vwindow_system)
1839 && XSYMBOL (Vwindow_system)->name->size == 1
1840 && XSYMBOL (Vwindow_system)->name->data[0] == 'x'
1841 && ! no_x)
1842 Fx_close_current_connection ();
1843 #endif /* HAVE_X_WINDOWS */
1844 #endif
1846 #ifdef SIGIO
1847 /* There is a tendency for a SIGIO signal to arrive within exit,
1848 and cause a SIGHUP because the input descriptor is already closed. */
1849 unrequest_sigio ();
1850 signal (SIGIO, SIG_IGN);
1851 #endif
1853 #ifdef WINDOWSNT
1854 term_ntproc ();
1855 #endif
1857 check_glyph_memory ();
1858 check_message_stack ();
1860 #ifdef MSDOS
1861 dos_cleanup ();
1862 #endif
1867 #ifndef CANNOT_DUMP
1869 #ifdef HAVE_SHM
1871 DEFUN ("dump-emacs-data", Fdump_emacs_data, Sdump_emacs_data, 1, 1, 0,
1872 "Dump current state of Emacs into data file FILENAME.\n\
1873 This function exists on systems that use HAVE_SHM.")
1874 (filename)
1875 Lisp_Object filename;
1877 extern char my_edata[];
1878 Lisp_Object tem;
1880 CHECK_STRING (filename, 0);
1881 filename = Fexpand_file_name (filename, Qnil);
1883 tem = Vpurify_flag;
1884 Vpurify_flag = Qnil;
1886 fflush (stdout);
1887 /* Tell malloc where start of impure now is */
1888 /* Also arrange for warnings when nearly out of space. */
1889 #ifndef SYSTEM_MALLOC
1890 memory_warnings (my_edata, malloc_warning);
1891 #endif
1892 map_out_data (XSTRING (filename)->data);
1894 Vpurify_flag = tem;
1896 return Qnil;
1899 #else /* not HAVE_SHM */
1901 DEFUN ("dump-emacs", Fdump_emacs, Sdump_emacs, 2, 2, 0,
1902 "Dump current state of Emacs into executable file FILENAME.\n\
1903 Take symbols from SYMFILE (presumably the file you executed to run Emacs).\n\
1904 This is used in the file `loadup.el' when building Emacs.\n\
1906 You must run Emacs in batch mode in order to dump it.")
1907 (filename, symfile)
1908 Lisp_Object filename, symfile;
1910 extern char my_edata[];
1911 Lisp_Object tem;
1912 Lisp_Object symbol;
1913 int count = specpdl_ptr - specpdl;
1915 if (! noninteractive)
1916 error ("Dumping Emacs works only in batch mode");
1918 /* Bind `command-line-processed' to nil before dumping,
1919 so that the dumped Emacs will process its command line
1920 and set up to work with X windows if appropriate. */
1921 symbol = intern ("command-line-process");
1922 specbind (symbol, Qnil);
1924 CHECK_STRING (filename, 0);
1925 filename = Fexpand_file_name (filename, Qnil);
1926 if (!NILP (symfile))
1928 CHECK_STRING (symfile, 0);
1929 if (XSTRING (symfile)->size)
1930 symfile = Fexpand_file_name (symfile, Qnil);
1933 tem = Vpurify_flag;
1934 Vpurify_flag = Qnil;
1936 #ifdef HAVE_TZSET
1937 set_time_zone_rule (dump_tz);
1938 #ifndef LOCALTIME_CACHE
1939 /* Force a tz reload, since set_time_zone_rule doesn't. */
1940 tzset ();
1941 #endif
1942 #endif
1944 fflush (stdout);
1945 #ifdef VMS
1946 mapout_data (XSTRING (filename)->data);
1947 #else
1948 /* Tell malloc where start of impure now is */
1949 /* Also arrange for warnings when nearly out of space. */
1950 #ifndef SYSTEM_MALLOC
1951 #ifndef WINDOWSNT
1952 /* On Windows, this was done before dumping, and that once suffices.
1953 Meanwhile, my_edata is not valid on Windows. */
1954 memory_warnings (my_edata, malloc_warning);
1955 #endif /* not WINDOWSNT */
1956 #endif
1957 #ifdef DOUG_LEA_MALLOC
1958 malloc_state_ptr = malloc_get_state ();
1959 #endif
1960 unexec (XSTRING (filename)->data,
1961 !NILP (symfile) ? XSTRING (symfile)->data : 0, my_edata, 0, 0);
1962 #ifdef DOUG_LEA_MALLOC
1963 free (malloc_state_ptr);
1964 #endif
1965 #endif /* not VMS */
1967 Vpurify_flag = tem;
1969 return unbind_to (count, Qnil);
1972 #endif /* not HAVE_SHM */
1974 #endif /* not CANNOT_DUMP */
1976 #if HAVE_SETLOCALE
1977 /* Recover from setlocale (LC_ALL, ""). */
1978 void
1979 fixup_locale ()
1981 /* The Emacs Lisp reader needs LC_NUMERIC to be "C",
1982 so that numbers are read and printed properly for Emacs Lisp. */
1983 setlocale (LC_NUMERIC, "C");
1986 /* Set system locale CATEGORY, with previous locale *PLOCALE, to
1987 DESIRED_LOCALE. */
1988 static void
1989 synchronize_locale (category, plocale, desired_locale)
1990 int category;
1991 Lisp_Object *plocale;
1992 Lisp_Object desired_locale;
1994 if (! EQ (*plocale, desired_locale))
1996 *plocale = desired_locale;
1997 setlocale (category, (STRINGP (desired_locale)
1998 ? (char *)(XSTRING (desired_locale)->data)
1999 : ""));
2003 /* Set system time locale to match Vsystem_time_locale, if possible. */
2004 void
2005 synchronize_system_time_locale ()
2007 synchronize_locale (LC_TIME, &Vprevious_system_time_locale,
2008 Vsystem_time_locale);
2011 /* Set system messages locale to match Vsystem_messages_locale, if
2012 possible. */
2013 void
2014 synchronize_system_messages_locale ()
2016 #ifdef LC_MESSAGES
2017 synchronize_locale (LC_MESSAGES, &Vprevious_system_messages_locale,
2018 Vsystem_messages_locale);
2019 #endif
2021 #endif /* HAVE_SETLOCALE */
2023 #ifndef SEPCHAR
2024 #define SEPCHAR ':'
2025 #endif
2027 Lisp_Object
2028 decode_env_path (evarname, defalt)
2029 char *evarname, *defalt;
2031 register char *path, *p;
2032 Lisp_Object lpath, element, tem;
2034 /* It's okay to use getenv here, because this function is only used
2035 to initialize variables when Emacs starts up, and isn't called
2036 after that. */
2037 if (evarname != 0)
2038 path = (char *) getenv (evarname);
2039 else
2040 path = 0;
2041 if (!path)
2042 path = defalt;
2043 #ifdef DOS_NT
2044 /* Ensure values from the environment use the proper directory separator. */
2045 if (path)
2047 p = alloca (strlen (path) + 1);
2048 strcpy (p, path);
2049 path = p;
2051 if ('/' == DIRECTORY_SEP)
2052 dostounix_filename (path);
2053 else
2054 unixtodos_filename (path);
2056 #endif
2057 lpath = Qnil;
2058 while (1)
2060 p = index (path, SEPCHAR);
2061 if (!p) p = path + strlen (path);
2062 element = (p - path ? make_string (path, p - path)
2063 : build_string ("."));
2065 /* Add /: to the front of the name
2066 if it would otherwise be treated as magic. */
2067 tem = Ffind_file_name_handler (element, Qt);
2068 if (! NILP (tem))
2069 element = concat2 (build_string ("/:"), element);
2071 lpath = Fcons (element, lpath);
2072 if (*p)
2073 path = p + 1;
2074 else
2075 break;
2077 return Fnreverse (lpath);
2080 void
2081 syms_of_emacs ()
2083 Qfile_name_handler_alist = intern ("file-name-handler-alist");
2084 staticpro (&Qfile_name_handler_alist);
2086 #ifndef CANNOT_DUMP
2087 #ifdef HAVE_SHM
2088 defsubr (&Sdump_emacs_data);
2089 #else
2090 defsubr (&Sdump_emacs);
2091 #endif
2092 #endif
2094 defsubr (&Skill_emacs);
2096 defsubr (&Sinvocation_name);
2097 defsubr (&Sinvocation_directory);
2099 DEFVAR_LISP ("command-line-args", &Vcommand_line_args,
2100 "Args passed by shell to Emacs, as a list of strings.");
2102 DEFVAR_LISP ("system-type", &Vsystem_type,
2103 "Value is symbol indicating type of operating system you are using.");
2104 Vsystem_type = intern (SYSTEM_TYPE);
2106 DEFVAR_LISP ("system-configuration", &Vsystem_configuration,
2107 "Value is string indicating configuration Emacs was built for.");
2108 Vsystem_configuration = build_string (EMACS_CONFIGURATION);
2110 DEFVAR_LISP ("system-configuration-options", &Vsystem_configuration_options,
2111 "String containing the configuration options Emacs was built with.");
2112 Vsystem_configuration_options = build_string (EMACS_CONFIG_OPTIONS);
2114 DEFVAR_BOOL ("noninteractive", &noninteractive1,
2115 "Non-nil means Emacs is running without interactive terminal.");
2117 DEFVAR_LISP ("kill-emacs-hook", &Vkill_emacs_hook,
2118 "Hook to be run whenever kill-emacs is called.\n\
2119 Since kill-emacs may be invoked when the terminal is disconnected (or\n\
2120 in other similar situations), functions placed on this hook should not\n\
2121 expect to be able to interact with the user. To ask for confirmation,\n\
2122 see `kill-emacs-query-functions' instead.");
2123 Vkill_emacs_hook = Qnil;
2125 #ifdef SIGUSR1
2126 DEFVAR_LISP ("signal-USR1-hook", &Vsignal_USR1_hook,
2127 "Hook to be run whenever emacs receives a USR1 signal");
2128 Vsignal_USR1_hook = Qnil;
2129 #ifdef SIGUSR2
2130 DEFVAR_LISP ("signal-USR2-hook", &Vsignal_USR2_hook,
2131 "Hook to be run whenever emacs receives a USR2 signal");
2132 Vsignal_USR2_hook = Qnil;
2133 #endif
2134 #endif
2137 DEFVAR_INT ("emacs-priority", &emacs_priority,
2138 "Priority for Emacs to run at.\n\
2139 This value is effective only if set before Emacs is dumped,\n\
2140 and only if the Emacs executable is installed with setuid to permit\n\
2141 it to change priority. (Emacs sets its uid back to the real uid.)\n\
2142 Currently, you need to define SET_EMACS_PRIORITY in `config.h'\n\
2143 before you compile Emacs, to enable the code for this feature.");
2144 emacs_priority = 0;
2146 DEFVAR_LISP ("path-separator", &Vpath_separator,
2147 "The directory separator in search paths, as a string.");
2149 char c = SEPCHAR;
2150 Vpath_separator = make_string (&c, 1);
2153 DEFVAR_LISP ("invocation-name", &Vinvocation_name,
2154 "The program name that was used to run Emacs.\n\
2155 Any directory names are omitted.");
2157 DEFVAR_LISP ("invocation-directory", &Vinvocation_directory,
2158 "The directory in which the Emacs executable was found, to run it.\n\
2159 The value is nil if that directory's name is not known.");
2161 DEFVAR_LISP ("installation-directory", &Vinstallation_directory,
2162 "A directory within which to look for the `lib-src' and `etc' directories.\n\
2163 This is non-nil when we can't find those directories in their standard\n\
2164 installed locations, but we can find them\n\
2165 near where the Emacs executable was found.");
2166 Vinstallation_directory = Qnil;
2168 DEFVAR_LISP ("system-messages-locale", &Vsystem_messages_locale,
2169 "System locale for messages.");
2170 Vsystem_messages_locale = Qnil;
2172 DEFVAR_LISP ("previous-system-messages-locale",
2173 &Vprevious_system_messages_locale,
2174 "Most recently used system locale for messages.");
2175 Vprevious_system_messages_locale = Qnil;
2177 DEFVAR_LISP ("system-time-locale", &Vsystem_time_locale,
2178 "System locale for time.");
2179 Vsystem_time_locale = Qnil;
2181 DEFVAR_LISP ("previous-system-time-locale", &Vprevious_system_time_locale,
2182 "Most recently used system locale for time.");
2183 Vprevious_system_time_locale = Qnil;