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