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