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