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