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