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