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