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