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