XEmacs 21.2.33 "Melpomene".
[chise/xemacs-chise.git.1] / src / emacs.c
1 /* XEmacs -- Fully extensible Emacs, running on Unix and other platforms.
2    Copyright (C) 1985, 1986, 1987, 1992, 1993, 1994
3    Free Software Foundation, Inc.
4    Copyright (C) 1995 Sun Microsystems, Inc.
5
6 This file is part of XEmacs.
7
8 XEmacs is free software; you can redistribute it and/or modify it
9 under the terms of the GNU General Public License as published by the
10 Free Software Foundation; either version 2, or (at your option) any
11 later version.
12
13 XEmacs is distributed in the hope that it will be useful, but WITHOUT
14 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
15 FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
16 for more details.
17
18 You should have received a copy of the GNU General Public License
19 along with XEmacs; see the file COPYING.  If not, write to
20 the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
21 Boston, MA 02111-1307, USA.  */
22
23 /* Synched up with: Mule 2.0, FSF 19.28. */
24
25 /* Note: It is necessary to specify <config.h> and not "config.h" in
26    order for the --srcdir type of compilation to work properly.
27    Otherwise the config.h from the srcdir, rather than the one from
28    the build dir, will be used. */
29
30 #include <config.h>
31 #include "lisp.h"
32
33 #include "backtrace.h" /* run-emacs-from-temacs needs this */
34 #include "buffer.h"
35 #include "commands.h"
36 #include "console.h"
37 #include "process.h"
38 #include "redisplay.h"
39 #include "frame.h"
40 #include "sysdep.h"
41
42 #include "syssignal.h" /* Always include before systty.h */
43 #include "systty.h"
44 #include "sysfile.h"
45 #include "systime.h"
46
47 #ifdef PDUMP
48 #include "dump-id.h"
49 #include "dumper.h"
50 #endif
51
52 #ifndef SEPCHAR
53 #define SEPCHAR ':'
54 #endif
55
56 #ifdef QUANTIFY
57 #include <quantify.h>
58 #endif
59
60 #ifdef HAVE_SHLIB
61 #include "sysdll.h"
62 #endif
63
64 #if defined (HAVE_LOCALE_H) && \
65    (defined (I18N2) || defined (I18N3) || defined (I18N4))
66 #include <locale.h>
67 #endif
68
69 #ifdef TOOLTALK
70 #include TT_C_H_FILE
71 #endif
72
73 #if defined (WINDOWSNT)
74 #include <windows.h>
75 #endif
76
77 /* For PATH_EXEC */
78 #include <paths.h>
79
80 #if defined (HEAP_IN_DATA) && !defined(PDUMP)
81 void report_sheap_usage (int die_if_pure_storage_exceeded);
82 #endif
83
84 #if !defined (SYSTEM_MALLOC) && !defined (DOUG_LEA_MALLOC)
85 extern void *(*__malloc_hook)(size_t);
86 extern void *(*__realloc_hook)(void *, size_t);
87 extern void (*__free_hook)(void *);
88 #endif  /* not SYSTEM_MALLOC && not DOUG_LEA_MALLOC */
89
90 /* Command line args from shell, as list of strings */
91 Lisp_Object Vcommand_line_args;
92
93 /* Set nonzero after XEmacs has started up the first time.
94   Prevents reinitialization of the Lisp world and keymaps
95   on subsequent starts.  */
96 int initialized;
97
98 #ifdef DOUG_LEA_MALLOC
99 # include <malloc.h>
100 /* Preserves a pointer to the memory allocated that copies that
101    static data inside glibc's malloc.  */
102 static void *malloc_state_ptr;
103 #endif /* DOUG_LEA_MALLOC */
104
105 # ifdef REL_ALLOC
106 void r_alloc_reinit (void);
107 # endif
108
109 /* Variable whose value is symbol giving operating system type. */
110 Lisp_Object Vsystem_type;
111
112 /* Variable whose value is string giving configuration built for.  */
113 Lisp_Object Vsystem_configuration;
114
115 /* Variable whose value is string containing the configuration options
116    XEmacs was built with.  */
117 Lisp_Object Vsystem_configuration_options;
118
119 /* Version numbers and strings */
120 Lisp_Object Vemacs_major_version;
121 Lisp_Object Vemacs_minor_version;
122 Lisp_Object Vemacs_patch_level;
123 Lisp_Object Vemacs_beta_version;
124 Lisp_Object Vxemacs_codename;
125 #ifdef INFODOCK
126 Lisp_Object Vinfodock_major_version;
127 Lisp_Object Vinfodock_minor_version;
128 Lisp_Object Vinfodock_build_version;
129 #endif
130
131 /* The path under which XEmacs was invoked. */
132 Lisp_Object Vinvocation_path;
133
134 /* The name under which XEmacs was invoked, with any leading directory
135    names discarded.  */
136 Lisp_Object Vinvocation_name;
137
138 /* The directory name from which XEmacs was invoked.  */
139 Lisp_Object Vinvocation_directory;
140
141 #if 0 /* FSFmacs */
142 /* The directory name in which to find subdirs such as lisp and etc.
143    nil means get them only from PATH_LOADSEARCH.  */
144 Lisp_Object Vinstallation_directory;
145 #endif
146
147 Lisp_Object Vemacs_program_name, Vemacs_program_version;
148 Lisp_Object Vexec_path;
149 Lisp_Object Vexec_directory, Vconfigure_exec_directory;
150 Lisp_Object Vlisp_directory, Vconfigure_lisp_directory;
151 Lisp_Object Vmodule_directory, Vconfigure_module_directory;
152 Lisp_Object Vsite_module_directory, Vconfigure_site_module_directory;
153 Lisp_Object Vconfigure_package_path;
154 Lisp_Object Vdata_directory, Vconfigure_data_directory;
155 Lisp_Object Vdoc_directory, Vconfigure_doc_directory;
156 Lisp_Object Vconfigure_lock_directory;
157 Lisp_Object Vdata_directory_list;
158 Lisp_Object Vconfigure_info_directory;
159 Lisp_Object Vsite_directory, Vconfigure_site_directory;
160 Lisp_Object Vconfigure_info_path;
161 Lisp_Object Vinternal_error_checking;
162 Lisp_Object Vmail_lock_methods, Vconfigure_mail_lock_method;
163 Lisp_Object Vpath_separator;
164
165 /* The default base directory XEmacs is installed under. */
166 Lisp_Object Vconfigure_exec_prefix_directory, Vconfigure_prefix_directory;
167
168 /* If nonzero, set XEmacs to run at this priority.  This is also used
169    in child_setup and sys_suspend to make sure subshells run at normal
170    priority. */
171 int emacs_priority;
172
173 /* If non-zero a filter or a sentinel is running.  Tested to save the match
174    data on the first attempt to change it inside asynchronous code. */
175 int running_asynch_code;
176
177 /* If non-zero, a window-system was specified on the command line. */
178 int display_arg;
179
180 /* Type of display specified.  We cannot use a Lisp symbol here because
181    Lisp symbols may not initialized at the time that we set this
182    variable. */
183 const char *display_use;
184
185 /* If non-zero, then the early error handler will only print the error
186    message and exit. */
187 int suppress_early_error_handler_backtrace;
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 USG_SHARED_LIBRARIES
194 /* If nonzero, this is the place to put the end of the writable segment
195    at startup.  */
196
197 uintptr_t bss_end = 0;
198 #endif
199
200 /* Number of bytes of writable memory we can expect to be able to get */
201 unsigned int lim_data;
202
203 /* Nonzero means running XEmacs without interactive terminal.  */
204
205 int noninteractive;
206
207 /* Value of Lisp variable `noninteractive'.
208    Normally same as C variable `noninteractive'
209    but nothing terrible happens if user sets this one.  */
210
211 int noninteractive1;
212
213 /* Nonzero means don't perform site-lisp searches at startup */
214 int inhibit_site_lisp;
215
216 /* Nonzero means don't perform site-modules searches at startup */
217 int inhibit_site_modules;
218
219 /* Nonzero means don't respect early packages at startup */
220 int inhibit_early_packages;
221
222 /* Nonzero means don't load package autoloads at startup */
223 int inhibit_autoloads;
224
225 /* Nonzero means don't load the dump file (ignored if not PDUMP)  */
226
227 int nodumpfile;
228
229 /* Nonzero means print debug information about path searching */
230 int debug_paths;
231
232 /* Save argv and argc.  */
233 static char **initial_argv;
234 static int initial_argc;
235
236 static void sort_args (int argc, char **argv);
237
238 Lisp_Object Qkill_emacs_hook;
239 Lisp_Object Qsave_buffers_kill_emacs;
240
241 extern Lisp_Object Vlisp_EXEC_SUFFIXES;
242
243 \f
244 /* Signal code for the fatal signal that was received */
245 static int fatal_error_code;
246
247 /* Nonzero if handling a fatal error already */
248 static int fatal_error_in_progress;
249
250 static JMP_BUF run_temacs_catch;
251
252 static int run_temacs_argc;
253 static char **run_temacs_argv;
254 static char *run_temacs_args;
255 static size_t run_temacs_argv_size;
256 static size_t run_temacs_args_size;
257
258 static void shut_down_emacs (int sig, Lisp_Object stuff);
259
260 /* Handle bus errors, illegal instruction, etc. */
261 SIGTYPE
262 fatal_error_signal (int sig)
263 {
264   fatal_error_code = sig;
265   signal (sig, SIG_DFL);
266   /* Unblock the signal so that if the same signal gets sent in the
267      code below, we avoid a deadlock. */
268   EMACS_UNBLOCK_SIGNAL (fatal_error_code);
269
270   /* If fatal error occurs in code below, avoid infinite recursion.  */
271   if (! fatal_error_in_progress)
272     {
273       fatal_error_in_progress = dont_check_for_quit = 1;
274       shut_down_emacs (sig, Qnil);
275       stderr_out ("\nLisp backtrace follows:\n\n");
276       Fbacktrace (Qexternal_debugging_output, Qt);
277 # if 0  /* This is evil, rarely useful, and causes grief in some cases. */
278       /* Check for Sun-style stack printing via /proc */
279       {
280         const char *pstack = "/usr/proc/bin/pstack";
281         if (access (pstack, X_OK) == 0)
282           {
283             char buf[100];
284             stderr_out ("\nC backtrace follows:\n"
285                        "(A real debugger may provide better information)\n\n");
286             sprintf (buf, "%s %d >&2", pstack, (int)getpid());
287             system (buf);
288           }
289       }
290 # endif
291     }
292   /* Signal the same code; this time it will really be fatal. */
293   kill (getpid (), fatal_error_code);
294   SIGRETURN;
295 }
296 \f
297
298 #ifdef SIGDANGER
299
300 /* Handler for SIGDANGER.  */
301 SIGTYPE
302 memory_warning_signal (int sig)
303 {
304   /* #### bad bad bad; this function shouldn't do anything except
305      set a flag, or weird corruption could happen. */
306   signal (sig, memory_warning_signal);
307
308   malloc_warning
309     (GETTEXT ("Operating system warns that virtual memory is running low.\n"));
310
311   /* It might be unsafe to call do_auto_save now.  */
312   force_auto_save_soon ();
313 }
314 #endif /* SIGDANGER */
315 \f
316 /* Code for dealing with Lisp access to the Unix command line */
317
318 static Lisp_Object
319 make_arg_list_1 (int argc, char **argv, int skip_args)
320 {
321   Lisp_Object result = Qnil;
322   REGISTER int i;
323
324   for (i = argc - 1; i >= 0; i--)
325     {
326       if (i == 0 || i > skip_args)
327         {
328 #ifdef WINDOWSNT
329           if (i == 0)
330             {
331               /* Do not trust to what crt0 has stuffed into argv[0] */
332               char full_exe_path [MAX_PATH];
333               GetModuleFileName (NULL, full_exe_path, MAX_PATH);
334               result = Fcons (build_ext_string (full_exe_path, Qfile_name),
335                               result);
336 #if defined(HAVE_SHLIB)
337               (void)dll_init(full_exe_path);
338 #endif
339             }
340           else
341 #endif
342             result = Fcons (build_ext_string (argv [i], Qfile_name),
343                             result);
344         }
345     }
346   return result;
347 }
348
349 Lisp_Object
350 make_arg_list (int argc, char **argv)
351 {
352   return make_arg_list_1 (argc, argv, 0);
353 }
354
355 /* Calling functions are also responsible for calling free_argc_argv
356    when they are done with the generated list. */
357 void
358 make_argc_argv (Lisp_Object argv_list, int *argc, char ***argv)
359 {
360   Lisp_Object next;
361   int n = XINT (Flength (argv_list));
362   REGISTER int i;
363   *argv = (char**) xmalloc ((n+1) * sizeof (char*));
364
365   for (i = 0, next = argv_list; i < n; i++, next = XCDR (next))
366     {
367       const char *temp;
368       CHECK_STRING (XCAR (next));
369
370       TO_EXTERNAL_FORMAT (LISP_STRING, XCAR (next),
371                           C_STRING_ALLOCA, temp,
372                           Qnative);
373       (*argv) [i] = xstrdup (temp);
374     }
375   (*argv) [n] = 0;
376   *argc = i;
377 }
378
379 void
380 free_argc_argv (char **argv)
381 {
382   int elt = 0;
383
384   while (argv[elt])
385     {
386       xfree (argv[elt]);
387       elt++;
388     }
389   xfree (argv);
390 }
391
392 static void
393 init_cmdargs (int argc, char **argv, int skip_args)
394 {
395   initial_argv = argv;
396   initial_argc = argc;
397
398   Vcommand_line_args = make_arg_list_1 (argc, argv, skip_args);
399 }
400
401 DEFUN ("invocation-name", Finvocation_name, 0, 0, 0, /*
402 Return the program name that was used to run XEmacs.
403 Any directory names are omitted.
404 */
405        ())
406 {
407   return Fcopy_sequence (Vinvocation_name);
408 }
409
410 DEFUN ("invocation-directory", Finvocation_directory, 0, 0, 0, /*
411 Return the directory name in which the Emacs executable was located.
412 */
413        ())
414 {
415   return Fcopy_sequence (Vinvocation_directory);
416 }
417
418 \f
419 #ifdef I18N4
420                                 /* #### - don't know why I18N4 on SunOS/JLE
421                                    can't deal with this.  It's a potential
422                                    bug that needs to be looked at. */
423 # undef RUN_TIME_REMAP
424 #endif
425
426 #if defined (MULE) && defined (MSDOS) && defined (EMX)
427 /* Setup all of files be input/output'ed with binary translation mode. */
428 asm ("  .text");
429 asm ("L_setbinmode:");
430 asm ("  movl    $1, __fmode_bin");
431 asm ("  ret");
432 asm ("  .stabs  \"___CTOR_LIST__\", 23, 0, 0, L_setbinmode");
433 #endif
434
435 /* Test whether the next argument in ARGV matches SSTR or a prefix of
436    LSTR (at least MINLEN characters).  If so, then if VALPTR is non-null
437    (the argument is supposed to have a value) store in *VALPTR either
438    the next argument or the portion of this one after the equal sign.
439    ARGV is read starting at position *SKIPPTR; this index is advanced
440    by the number of arguments used.
441
442    Too bad we can't just use getopt for all of this, but we don't have
443    enough information to do it right.  */
444
445 static int
446 argmatch (char **argv, int argc, char *sstr, char *lstr,
447           int minlen, char **valptr, int *skipptr)
448 {
449   char *p = NULL;
450   int arglen;
451   char *arg;
452
453   /* Don't access argv[argc]; give up in advance.  */
454   if (argc <= *skipptr + 1)
455     return 0;
456
457   arg = argv[*skipptr+1];
458   if (arg == NULL)
459     return 0;
460   if (strcmp (arg, sstr) == 0)
461     {
462       if (valptr != NULL)
463         {
464           *valptr = argv[*skipptr+2];
465           *skipptr += 2;
466         }
467       else
468         *skipptr += 1;
469       return 1;
470     }
471   arglen = (valptr != NULL && (p = strchr (arg, '=')) != NULL
472             ? p - arg : strlen (arg));
473   if (lstr == 0 || arglen < minlen || strncmp (arg, lstr, arglen) != 0)
474     return 0;
475   else if (valptr == NULL)
476     {
477       *skipptr += 1;
478       return 1;
479     }
480   else if (p != NULL)
481     {
482       *valptr = p+1;
483       *skipptr += 1;
484       return 1;
485     }
486   else if (argv[*skipptr+2] != NULL)
487     {
488       *valptr = argv[*skipptr+2];
489       *skipptr += 2;
490       return 1;
491     }
492   else
493     {
494       return 0;
495     }
496 }
497
498 /* Make stack traces always identify version + configuration */
499 #define main_1 STACK_TRACE_EYE_CATCHER
500
501 /* This function is not static, so that the compiler is less likely to
502    inline it, which would make it not show up in stack traces.  */
503 DECLARE_DOESNT_RETURN (main_1 (int, char **, char **, int));
504 DOESNT_RETURN
505 main_1 (int argc, char **argv, char **envp, int restart)
506 {
507   char stack_bottom_variable;
508   int skip_args = 0;
509   Lisp_Object load_me;
510   int inhibit_window_system;
511 #ifdef NeXT
512   extern int malloc_cookie;
513 #endif
514
515 #if (!defined (SYSTEM_MALLOC) && !defined (HAVE_LIBMCHECK)      \
516      && !defined (DOUG_LEA_MALLOC))
517   /* Make sure that any libraries we link against haven't installed a
518      hook for a gmalloc of a potentially incompatible version. */
519   /* If we're using libmcheck, the hooks have already been initialized, */
520   /* don't touch them. -slb */
521   __malloc_hook = NULL;
522   __realloc_hook = NULL;
523   __free_hook = NULL;
524 #endif /* not SYSTEM_MALLOC or HAVE_LIBMCHECK or DOUG_LEA_MALLOC */
525
526   noninteractive = 0;
527
528 #ifdef NeXT
529   /* 19-Jun-1995 -baw
530    * NeXT secret magic, ripped from Emacs-for-NS by Carl Edman
531    * <cedman@princeton.edu>.  Note that even Carl doesn't know what this
532    * does; it was provided by NeXT, and it presumable makes NS's mallocator
533    * work with dumping.  But malloc_jumpstart() and malloc_freezedry() in
534    * unexnext.c are both completely undocumented, even in NS header files!
535    * But hey, it solves all NS related memory problems, so who's
536    * complaining? */
537   if (initialized && malloc_jumpstart (malloc_cookie) != 0)
538     stderr_out ("malloc jumpstart failed!\n");
539 #endif /* NeXT */
540
541   /*
542 #if defined (GNU_MALLOC) && \
543     defined (ERROR_CHECK_MALLOC) && \
544     !defined (HAVE_LIBMCHECK)
545   */
546 #if defined(LOSING_GCC_DESTRUCTOR_FREE_BUG)
547   /* Prior to XEmacs 21, this was `#if 0'ed out.  */
548   /* I'm enabling this because it is the only reliable way I've found to */
549   /* prevent a very annoying problem where GCC will attempt to free(3) */
550   /* memory at exit() and cause a coredump. */
551   init_free_hook ();
552 #endif
553
554   sort_args (argc, argv);
555
556 #if (defined (MSDOS) && defined (EMX)) || defined (WIN32) || defined (_SCO_DS)
557   environ = envp;
558 #endif
559
560   /* Record (approximately) where the stack begins.  */
561   stack_bottom = &stack_bottom_variable;
562
563 #ifdef USG_SHARED_LIBRARIES
564   if (bss_end)
565     brk ((void *) bss_end);
566 #endif
567
568   clearerr (stdin);
569
570 #if defined (HAVE_MMAP) && defined (REL_ALLOC)
571   /* ralloc can only be used if using the GNU memory allocator. */
572   init_ralloc ();
573 #elif defined (REL_ALLOC) && !defined(DOUG_LEA_MALLOC)
574   if (initialized)
575     init_ralloc();
576 #endif
577
578 #ifdef HAVE_SOCKS
579   if (initialized)
580     SOCKSinit (argv[0]);
581 #endif /* HAVE_SOCKS */
582
583 #ifndef SYSTEM_MALLOC
584   if (!initialized)
585     /* Arrange to get warning messages as memory fills up.  */
586     memory_warnings (0, malloc_warning);
587 #endif  /* not SYSTEM_MALLOC */
588
589 #ifdef MSDOS
590   /* We do all file input/output as binary files.  When we need to translate
591      newlines, we do that manually.  */
592   _fmode = O_BINARY;
593   (stdin) ->_flag &= ~_IOTEXT;
594   (stdout)->_flag &= ~_IOTEXT;
595   (stderr)->_flag &= ~_IOTEXT;
596 #endif /* MSDOS */
597
598 #ifdef SET_EMACS_PRIORITY
599   if (emacs_priority != 0)
600     nice (-emacs_priority);
601   setuid (getuid ());
602 #endif /* SET_EMACS_PRIORITY */
603
604 #ifdef EXTRA_INITIALIZE
605   EXTRA_INITIALIZE;
606 #endif
607
608 #ifdef HAVE_WINDOW_SYSTEM
609   inhibit_window_system = 0;
610 #else
611   inhibit_window_system = 1;
612 #endif
613
614   /* Handle the -sd/--show-dump-id switch, which means show the hex dump_id and quit */
615   if (argmatch (argv, argc, "-sd", "--show-dump-id", 9, NULL, &skip_args))
616     {
617 #ifdef PDUMP
618       printf ("%08x\n", dump_id);
619 #else
620       printf ("*ERROR**\n");
621 #endif
622       exit (0);
623     }
624
625   /* Handle the -t switch, which specifies filename to use as terminal */
626   {
627     char *term;
628     if (argmatch (argv, argc, "-t", "--terminal", 4, &term, &skip_args))
629       {
630         close (0);
631         close (1);
632         if (open (term, O_RDWR | OPEN_BINARY, 2) < 0)
633           fatal ("%s: %s", term, strerror (errno));
634         dup (0);
635         if (! isatty (0))
636           fatal ("%s: not a tty", term);
637
638 #if 0
639         stderr_out ("Using %s", ttyname (0));
640 #endif
641         stderr_out ("Using %s", term);
642         inhibit_window_system = 1;      /* -t => -nw */
643       }
644   }
645
646   /* Handle the --no-dump-file/-nd switch, which means don't load the dump file (ignored when not using pdump) */
647   if (argmatch (argv, argc, "-nd", "--no-dump-file", 7, NULL, &skip_args))
648     {
649       nodumpfile = 1;
650     }
651
652   /* Handle -nw switch */
653   if (argmatch (argv, argc, "-nw", "--no-windows", 6, NULL, &skip_args))
654     inhibit_window_system = 1;
655
656   /* Handle the -batch switch, which means don't do interactive display.  */
657   if (argmatch (argv, argc, "-batch", "--batch", 5, NULL, &skip_args))
658     {
659 #if 0 /* I don't think this is correct. */
660       inhibit_autoloads = 1;
661 #endif
662       noninteractive = 1;
663     }
664
665   if (argmatch (argv, argc, "-debug-paths", "--debug-paths",
666                 11, NULL, &skip_args))
667       debug_paths = 1;
668
669   /* Partially handle -no-autoloads, -no-early-packages and -vanilla.  Packages */
670   /* are searched prior to the rest of the command line being parsed in */
671   /* startup.el */
672   if (argmatch (argv, argc, "-no-early-packages", "--no-early-packages",
673                 6, NULL, &skip_args))
674     {
675       inhibit_early_packages = 1;
676       skip_args--;
677     }
678 #ifdef HAVE_SHLIB
679   if (argmatch (argv, argc, "-no-site-modules", "--no-site-modules",
680                 9, NULL, &skip_args))
681     {
682       inhibit_site_modules = 1;
683       skip_args--;
684     }
685 #else
686   inhibit_site_modules = 1;
687 #endif
688   if (argmatch (argv, argc, "-vanilla", "--vanilla",
689                 7, NULL, &skip_args))
690     {
691       inhibit_early_packages = 1;
692       skip_args--;
693     }
694
695   if (argmatch (argv, argc, "-no-autoloads", "--no-autoloads",
696                 7, NULL, &skip_args))
697     {
698       /* Inhibit everything */
699       inhibit_autoloads = 1;
700       skip_args--;
701     }
702
703   if (argmatch (argv, argc, "-debug-paths", "--debug-paths",
704                 6, NULL, &skip_args))
705     {
706       debug_paths = 1;
707       skip_args--;
708     }
709
710
711   /* Partially handle the -version and -help switches: they imply -batch,
712      but are not removed from the list. */
713   if (argmatch (argv, argc, "-help", "--help",   3, NULL, &skip_args))
714     noninteractive = 1, skip_args--;
715
716   if (argmatch (argv, argc, "-version", "--version", 3, NULL, &skip_args) ||
717       argmatch (argv, argc, "-V",    0,              2, NULL, &skip_args))
718       noninteractive = 1, skip_args--;
719
720   /* Now, figure out which type of console is our first console. */
721
722   display_arg = 0;
723
724   if (noninteractive)
725     display_use = "stream";
726   else
727     display_use = "tty";
728
729 #ifndef HAVE_TTY
730   if (inhibit_window_system)
731     fatal ("Sorry, this XEmacs was not compiled with TTY support");
732 #endif
733
734 #ifdef HAVE_WINDOW_SYSTEM
735   /* Stupid kludge to catch command-line display spec.  We can't
736      handle this argument entirely in window-system-dependent code
737      because we don't even know which window-system-dependent code
738      to run until we've recognized this argument.  */
739   if (!inhibit_window_system && !noninteractive)
740     {
741 #ifdef HAVE_X_WINDOWS
742       char *dpy = 0;
743       int count_before = skip_args;
744
745       if (argmatch (argv, argc, "-d", "--display", 3, &dpy, &skip_args) ||
746           argmatch (argv, argc, "-display", 0,     3, &dpy, &skip_args))
747         {
748           display_arg = 1;
749           display_use = "x";
750         }
751       /* If we have the form --display=NAME,
752          convert it into  -d name.
753          This requires inserting a new element into argv.  */
754       if (dpy != 0 && skip_args - count_before == 1)
755         {
756           char **new = (char **) xmalloc (sizeof (char *) * (argc + 2));
757           int j;
758
759           for (j = 0; j < count_before + 1; j++)
760             new[j] = argv[j];
761           new[count_before + 1] = "-d";
762           new[count_before + 2] = dpy;
763           for (j = count_before + 2; j <argc; j++)
764             new[j + 1] = argv[j];
765           argv = new;
766           argc++;
767         }
768       /* Change --display to -d, when its arg is separate.  */
769       else if (dpy != 0 && skip_args > count_before
770                && argv[count_before + 1][1] == '-')
771         argv[count_before + 1] = "-d";
772
773       /* Don't actually discard this arg.  */
774       skip_args = count_before;
775
776       /* If there is a non-empty environment var DISPLAY, set
777          `display_use', but not `display_arg', which is only to be set
778          if the display was specified on the command line. */
779       if ((dpy = getenv ("DISPLAY")) && dpy[0])
780         display_use = "x";
781
782 #endif /* HAVE_X_WINDOWS */
783 #ifdef HAVE_MS_WINDOWS
784       if (strcmp(display_use, "x") != 0)
785         display_use = "mswindows";
786 #endif /* HAVE_MS_WINDOWS */
787     }
788 #endif /* HAVE_WINDOW_SYSTEM */
789
790   noninteractive1 = noninteractive;
791
792   /****** Now initialize everything *******/
793
794   /* First, do really basic environment initialization -- catching signals
795      and the like.  These functions have no dependence on any part of
796      the Lisp engine and need to be done both at dump time and at run time. */
797
798   init_signals_very_early ();
799   init_data_very_early (); /* Catch math errors. */
800 #ifdef LISP_FLOAT_TYPE
801   init_floatfns_very_early (); /* Catch floating-point math errors. */
802 #endif
803   init_process_times_very_early (); /* Initialize our process timers.
804                                        As early as possible, of course,
805                                        so we can be fairly accurate. */
806   init_intl_very_early (); /* set up the locale and domain for gettext and
807                               such. */
808
809   /* Now initialize the Lisp engine and the like.  Done only during
810      dumping.  No dependence on anything that may be in the user's
811      environment when the dumped XEmacs is run.
812
813      We try to do things in an order that minimizes the non-obvious
814      dependencies between functions. */
815
816   /* purify_flag 1 is correct even if CANNOT_DUMP.
817    * loadup.el will set to nil at end. */
818
819   purify_flag = 0;
820 #ifdef PDUMP
821   if (restart)
822     initialized = 1;
823   else if (nodumpfile) {
824     initialized = 0;
825     purify_flag = 1;
826   } else {
827     initialized = pdump_load (argv[0]);
828     if (initialized)
829       run_temacs_argc = -1;
830     else
831       purify_flag = 1;
832   }
833 #else
834   if (!initialized)
835     purify_flag = 1;
836 #endif
837
838   if (!initialized)
839     {
840       /* Initialize things so that new Lisp objects
841          can be created and objects can be staticpro'd.
842          Must be basically the very first thing done
843          because pretty much all of the initialization
844          routines below create new objects. */
845       init_alloc_once_early ();
846
847       /* Initialize Qnil, Qt, Qunbound, and the
848          obarray.  After this, symbols can be
849          interned.  This depends on init_alloc_once_early(). */
850       init_symbols_once_early ();
851
852       /* Declare the basic symbols pertaining to errors,
853          So that deferror() can be called. */
854       init_errors_once_early ();
855
856       /* Make sure that opaque pointers can be created. */
857       init_opaque_once_early ();
858
859       /* Now declare all the symbols and define all the Lisp primitives.
860
861          The *only* thing that the syms_of_*() functions are allowed to do
862          is call one of the following three functions:
863
864          INIT_LRECORD_IMPLEMENTATION()
865          defsymbol()
866          defsubr() (i.e. DEFSUBR)
867          deferror()
868          defkeyword()
869
870          Order does not matter in these functions.
871          */
872
873       syms_of_abbrev ();
874       syms_of_alloc ();
875       syms_of_buffer ();
876       syms_of_bytecode ();
877       syms_of_callint ();
878       syms_of_callproc ();
879       syms_of_casefiddle ();
880       syms_of_casetab ();
881       syms_of_chartab ();
882       syms_of_cmdloop ();
883       syms_of_cmds ();
884       syms_of_console ();
885       syms_of_data ();
886 #ifdef DEBUG_XEMACS
887       syms_of_debug ();
888       syms_of_tests ();
889 #endif /* DEBUG_XEMACS */
890       syms_of_device ();
891 #ifdef HAVE_DIALOGS
892       syms_of_dialog ();
893 #endif
894       syms_of_dired ();
895       syms_of_doc ();
896       syms_of_editfns ();
897       syms_of_elhash ();
898       syms_of_emacs ();
899       syms_of_eval ();
900 #ifdef HAVE_X_WINDOWS
901       syms_of_event_Xt ();
902 #endif
903 #ifdef HAVE_DRAGNDROP
904       syms_of_dragdrop ();
905 #endif
906       syms_of_event_stream ();
907       syms_of_events ();
908       syms_of_extents ();
909       syms_of_faces ();
910       syms_of_fileio ();
911 #ifdef CLASH_DETECTION
912       syms_of_filelock ();
913 #endif /* CLASH_DETECTION */
914       syms_of_floatfns ();
915       syms_of_fns ();
916       syms_of_font_lock ();
917       syms_of_frame ();
918       syms_of_general ();
919       syms_of_glyphs ();
920       syms_of_glyphs_eimage ();
921       syms_of_glyphs_widget ();
922       syms_of_gui ();
923       syms_of_gutter ();
924       syms_of_indent ();
925       syms_of_intl ();
926       syms_of_keymap ();
927       syms_of_lread ();
928       syms_of_macros ();
929       syms_of_marker ();
930       syms_of_md5 ();
931 #ifdef HAVE_DATABASE
932       syms_of_database ();
933 #endif
934 #ifdef HAVE_MENUBARS
935       syms_of_menubar ();
936 #endif
937       syms_of_minibuf ();
938 #ifdef HAVE_SHLIB
939       syms_of_module ();
940 #endif
941       syms_of_objects ();
942       syms_of_print ();
943 #if !defined (NO_SUBPROCESSES)
944       syms_of_process ();
945 #ifdef HAVE_WIN32_PROCESSES
946       syms_of_process_nt ();
947 #endif
948 #endif
949       syms_of_profile ();
950 #if defined (HAVE_MMAP) && defined (REL_ALLOC) && !defined(DOUG_LEA_MALLOC)
951       syms_of_ralloc ();
952 #endif /* HAVE_MMAP && REL_ALLOC */
953       syms_of_rangetab ();
954       syms_of_redisplay ();
955       syms_of_search ();
956       syms_of_select ();
957       syms_of_signal ();
958       syms_of_sound ();
959       syms_of_specifier ();
960       syms_of_symbols ();
961       syms_of_syntax ();
962 #ifdef HAVE_SCROLLBARS
963       syms_of_scrollbar ();
964 #endif
965 #ifdef HAVE_TOOLBARS
966       syms_of_toolbar ();
967 #endif
968       syms_of_undo ();
969       syms_of_widget ();
970       syms_of_window ();
971
972 #ifdef HAVE_TTY
973       syms_of_console_tty ();
974       syms_of_device_tty ();
975       syms_of_objects_tty ();
976 #endif
977
978 #ifdef HAVE_X_WINDOWS
979       syms_of_balloon_x ();
980       syms_of_device_x ();
981 #ifdef HAVE_DIALOGS
982       syms_of_dialog_x ();
983 #endif
984       syms_of_frame_x ();
985       syms_of_glyphs_x ();
986       syms_of_objects_x ();
987 #ifdef HAVE_MENUBARS
988       syms_of_menubar_x ();
989 #endif
990       syms_of_select_x ();
991 #if defined (HAVE_MENUBARS) || defined (HAVE_SCROLLBARS) || defined (HAVE_DIALOGS) || defined (HAVE_TOOLBARS)
992       syms_of_gui_x ();
993 #endif
994 #ifdef HAVE_XIM
995 #ifdef XIM_XLIB
996       syms_of_input_method_xlib ();
997 #endif
998 #endif /* HAVE_XIM */
999 #endif /* HAVE_X_WINDOWS */
1000
1001 #ifdef HAVE_MS_WINDOWS
1002       syms_of_console_mswindows ();
1003       syms_of_device_mswindows ();
1004       syms_of_frame_mswindows ();
1005       syms_of_objects_mswindows ();
1006       syms_of_select_mswindows ();
1007       syms_of_glyphs_mswindows ();
1008       syms_of_gui_mswindows ();
1009 #ifdef HAVE_MENUBARS
1010       syms_of_menubar_mswindows ();
1011 #endif
1012 #ifdef HAVE_SCROLLBARS
1013       syms_of_scrollbar_mswindows ();
1014 #endif
1015 #ifdef HAVE_MSW_C_DIRED
1016       syms_of_dired_mswindows ();
1017 #endif
1018 #ifdef WINDOWSNT
1019       syms_of_ntproc ();
1020 #endif
1021 #endif  /* HAVE_MS_WINDOWS */
1022
1023 #ifdef MULE
1024       syms_of_mule ();
1025       syms_of_mule_ccl ();
1026       syms_of_mule_charset ();
1027 #endif
1028 #ifdef FILE_CODING
1029       syms_of_file_coding ();
1030 #endif
1031 #ifdef MULE
1032 #ifdef HAVE_WNN
1033       syms_of_mule_wnn ();
1034 #endif
1035 #ifdef HAVE_CANNA
1036       syms_of_mule_canna ();
1037 #endif /* HAVE_CANNA */
1038 #endif /* MULE */
1039
1040 #ifdef SYMS_SYSTEM
1041       SYMS_SYSTEM;
1042 #endif
1043
1044 #ifdef SYMS_MACHINE
1045       SYMS_MACHINE;
1046 #endif
1047
1048       /*
1049 #if defined (GNU_MALLOC) && \
1050     defined (ERROR_CHECK_MALLOC) && \
1051     !defined (HAVE_LIBMCHECK)
1052       */
1053       /* Prior to XEmacs 21, this was `#if 0'ed out. -slb */
1054 #if defined (LOSING_GCC_DESTRUCTOR_FREE_BUG)
1055       syms_of_free_hook ();
1056 #endif
1057
1058 #ifdef TOOLTALK
1059       syms_of_tooltalk ();
1060 #endif
1061
1062 #ifdef SUNPRO
1063       syms_of_sunpro ();
1064 #endif
1065
1066 #ifdef HAVE_LDAP
1067       syms_of_eldap ();
1068 #endif
1069
1070 #ifdef HAVE_GPM
1071           syms_of_gpmevent ();
1072 #endif
1073
1074 #ifdef HAVE_POSTGRESQL
1075       syms_of_postgresql ();
1076 #endif
1077
1078       /* Now create the subtypes for the types that have them.
1079          We do this before the vars_*() because more symbols
1080          may get initialized here. */
1081
1082       /* Now initialize the console types and associated symbols.
1083          Other than the first function below, the functions may
1084          make exactly the following function/macro calls:
1085
1086          INITIALIZE_CONSOLE_TYPE()
1087          CONSOLE_HAS_METHOD()
1088
1089          For any given console type, the former macro must be called
1090          before the any calls to the latter macro. */
1091
1092       console_type_create ();
1093
1094       console_type_create_stream ();
1095
1096 #ifdef HAVE_TTY
1097       console_type_create_tty ();
1098       console_type_create_device_tty ();
1099       console_type_create_frame_tty ();
1100       console_type_create_objects_tty ();
1101       console_type_create_redisplay_tty ();
1102 #endif
1103
1104 #ifdef HAVE_X_WINDOWS
1105       console_type_create_x ();
1106       console_type_create_device_x ();
1107       console_type_create_frame_x ();
1108       console_type_create_glyphs_x ();
1109       console_type_create_select_x ();
1110 #ifdef HAVE_MENUBARS
1111       console_type_create_menubar_x ();
1112 #endif
1113       console_type_create_objects_x ();
1114       console_type_create_redisplay_x ();
1115 #ifdef HAVE_SCROLLBARS
1116       console_type_create_scrollbar_x ();
1117 #endif
1118 #ifdef HAVE_TOOLBARS
1119       console_type_create_toolbar_x ();
1120 #endif
1121 #ifdef HAVE_DIALOGS
1122       console_type_create_dialog_x ();
1123 #endif
1124 #endif /* HAVE_X_WINDOWS */
1125
1126 #ifdef HAVE_MS_WINDOWS
1127       console_type_create_mswindows ();
1128       console_type_create_device_mswindows ();
1129       console_type_create_frame_mswindows ();
1130       console_type_create_objects_mswindows ();
1131       console_type_create_redisplay_mswindows ();
1132       console_type_create_glyphs_mswindows ();
1133       console_type_create_select_mswindows ();
1134 # ifdef HAVE_SCROLLBARS
1135       console_type_create_scrollbar_mswindows ();
1136 # endif
1137 #ifdef HAVE_MENUBARS
1138       console_type_create_menubar_mswindows ();
1139 #endif
1140 #ifdef HAVE_TOOLBARS
1141       console_type_create_toolbar_mswindows ();
1142 #endif
1143 #ifdef HAVE_DIALOGS
1144       console_type_create_dialog_mswindows ();
1145 #endif
1146 #endif
1147
1148       /* Now initialize the specifier types and associated symbols.
1149          Other than the first function below, the functions may
1150          make exactly the following function/macro calls:
1151
1152          INITIALIZE_SPECIFIER_TYPE()
1153          SPECIFIER_HAS_METHOD()
1154
1155          For any given specifier type, the former macro must be called
1156          before the any calls to the latter macro. */
1157
1158       specifier_type_create ();
1159
1160       specifier_type_create_image ();
1161       specifier_type_create_gutter ();
1162       specifier_type_create_objects ();
1163 #ifdef HAVE_TOOLBARS
1164       specifier_type_create_toolbar ();
1165 #endif
1166
1167       /* Now initialize the structure types and associated symbols.
1168          Other than the first function below, the functions may
1169          make exactly the following function/macro calls:
1170
1171          define_structure_type()
1172          define_structure_type_keyword()
1173
1174          */
1175
1176       structure_type_create ();
1177
1178       structure_type_create_chartab ();
1179       structure_type_create_faces ();
1180       structure_type_create_rangetab ();
1181       structure_type_create_hash_table ();
1182
1183       /* Now initialize the image instantiator formats and associated symbols.
1184          Other than the first function below, the functions may
1185          make exactly the following function/macro calls:
1186
1187          INITIALIZE_IMAGE_INSTANTIATOR_FORMAT()
1188          IIFORMAT_HAS_METHOD()
1189          IIFORMAT_VALID_KEYWORD()
1190
1191          For any given image instantiator format, the first macro must be
1192          called before the any calls to the other macros. */
1193
1194       image_instantiator_format_create ();
1195       image_instantiator_format_create_glyphs_eimage ();
1196       image_instantiator_format_create_glyphs_widget ();
1197 #ifdef HAVE_TTY
1198       image_instantiator_format_create_glyphs_tty ();
1199 #endif
1200 #ifdef HAVE_X_WINDOWS
1201       image_instantiator_format_create_glyphs_x ();
1202 #endif /* HAVE_X_WINDOWS */
1203 #ifdef HAVE_MS_WINDOWS
1204       image_instantiator_format_create_glyphs_mswindows ();
1205 #endif /* HAVE_MSWINDOWS_WINDOWS */
1206
1207       /* Now initialize the lstream types and associated symbols.
1208          Other than the first function below, the functions may
1209          make exactly the following function/macro calls:
1210
1211          LSTREAM_HAS_METHOD()
1212
1213          */
1214
1215       lstream_type_create ();
1216 #ifdef FILE_CODING
1217       lstream_type_create_file_coding ();
1218 #endif
1219 #if defined (HAVE_MS_WINDOWS) && !defined(HAVE_MSG_SELECT)
1220       lstream_type_create_mswindows_selectable ();
1221 #endif
1222
1223       /* Initialize processes implementation.
1224          The functions may make exactly the following function/macro calls:
1225
1226          PROCESS_HAS_METHOD()
1227       */
1228 #ifdef HAVE_UNIX_PROCESSES
1229       process_type_create_unix ();
1230 #endif
1231 #ifdef HAVE_WIN32_PROCESSES
1232       process_type_create_nt ();
1233 #endif
1234
1235       /* Now initialize most variables.
1236
1237          These functions may do exactly the following:
1238
1239          DEFVAR_INT()
1240          DEFVAR_LISP()
1241          DEFVAR_BOOL()
1242          DEFER_GETTEXT()
1243          Dynarr_*()
1244          Blocktype_*()
1245          staticpro()
1246          Fprovide(symbol)
1247          intern()
1248          Fput()
1249          xmalloc()
1250          defsymbol(), if it's absolutely necessary and you're sure that
1251            the symbol isn't referenced anywhere else in the initialization
1252            code
1253          Fset() on a symbol that is unbound
1254          assigning a symbol or constant value to a variable
1255          using a global variable that has been initialized
1256            earlier on in the same function
1257
1258          Any of the object-creating functions in alloc.c: e.g.
1259
1260          make_pure_*()
1261          make_string()
1262          build_string()
1263          make_vector()
1264          make_int()
1265          make_extent()
1266          alloc_lcrecord()
1267          Fcons()
1268          listN()
1269          make_opaque_ptr()
1270
1271          perhaps a few others.
1272        */
1273
1274       /* Now allow Fprovide() statements to be made. */
1275       init_provide_once ();
1276
1277       /* Do that before any specifier creation (esp. vars_of_glyphs()) */
1278       vars_of_specifier ();
1279
1280       vars_of_abbrev ();
1281       vars_of_alloc ();
1282       vars_of_buffer ();
1283       vars_of_bytecode ();
1284       vars_of_callint ();
1285       vars_of_callproc ();
1286       vars_of_chartab ();
1287       vars_of_cmdloop ();
1288       vars_of_cmds ();
1289       vars_of_console ();
1290       vars_of_data ();
1291 #ifdef DEBUG_XEMACS
1292       vars_of_debug ();
1293       vars_of_tests ();
1294 #endif
1295       vars_of_console_stream ();
1296       vars_of_device ();
1297 #ifdef HAVE_DIALOGS
1298       vars_of_dialog ();
1299 #endif
1300       vars_of_dired ();
1301       vars_of_doc ();
1302 #ifdef HAVE_DRAGNDROP
1303       vars_of_dragdrop ();
1304 #endif
1305       vars_of_editfns ();
1306       vars_of_elhash ();
1307       vars_of_emacs ();
1308       vars_of_eval ();
1309
1310 #ifdef HAVE_X_WINDOWS
1311       vars_of_event_Xt ();
1312 #endif
1313 #if defined(HAVE_TTY) && (defined (DEBUG_TTY_EVENT_STREAM) || !defined (HAVE_X_WINDOWS))
1314       vars_of_event_tty ();
1315 #endif
1316 #ifdef HAVE_MS_WINDOWS
1317       vars_of_event_mswindows ();
1318 #endif
1319       vars_of_event_stream ();
1320
1321       vars_of_events ();
1322       vars_of_extents ();
1323       vars_of_faces ();
1324       vars_of_fileio ();
1325       vars_of_floatfns ();
1326       vars_of_font_lock ();
1327       vars_of_frame ();
1328       vars_of_glyphs ();
1329       vars_of_glyphs_eimage ();
1330       vars_of_glyphs_widget ();
1331       vars_of_gui ();
1332       vars_of_gutter ();
1333       vars_of_indent ();
1334       vars_of_insdel ();
1335       vars_of_intl ();
1336 #ifdef HAVE_XIM
1337 #ifdef XIM_MOTIF
1338       vars_of_input_method_motif ();
1339 #else /* XIM_XLIB */
1340       vars_of_input_method_xlib ();
1341 #endif
1342 #endif /* HAVE_XIM */
1343       vars_of_keymap ();
1344       vars_of_lread ();
1345       vars_of_lstream ();
1346       vars_of_macros ();
1347       vars_of_md5 ();
1348 #ifdef HAVE_DATABASE
1349       vars_of_database ();
1350 #endif
1351 #ifdef HAVE_MENUBARS
1352       vars_of_menubar ();
1353 #endif
1354       vars_of_minibuf ();
1355 #ifdef HAVE_SHLIB
1356       vars_of_module ();
1357 #endif
1358 #ifdef WINDOWSNT
1359       vars_of_nt ();
1360       vars_of_ntproc ();
1361 #endif
1362       vars_of_objects ();
1363       vars_of_print ();
1364
1365 #ifndef NO_SUBPROCESSES
1366       vars_of_process ();
1367 #ifdef HAVE_UNIX_PROCESSES
1368       vars_of_process_unix ();
1369 #endif
1370 #ifdef HAVE_WIN32_PROCESSES
1371       vars_of_process_nt ();
1372 #endif
1373 #endif
1374
1375       vars_of_profile ();
1376 #if defined (HAVE_MMAP) && defined (REL_ALLOC) && !defined(DOUG_LEA_MALLOC)
1377       vars_of_ralloc ();
1378 #endif /* HAVE_MMAP && REL_ALLOC */
1379       vars_of_redisplay ();
1380 #ifdef HAVE_SCROLLBARS
1381       vars_of_scrollbar ();
1382 #endif
1383       vars_of_search ();
1384       vars_of_select ();
1385       vars_of_sound ();
1386       vars_of_symbols ();
1387       vars_of_syntax ();
1388 #ifdef HAVE_TOOLBARS
1389       vars_of_toolbar ();
1390 #endif
1391       vars_of_undo ();
1392       vars_of_window ();
1393
1394 #ifdef HAVE_TTY
1395       vars_of_console_tty ();
1396       vars_of_frame_tty ();
1397       vars_of_objects_tty ();
1398 #endif
1399
1400 #ifdef HAVE_X_WINDOWS
1401       vars_of_balloon_x ();
1402       vars_of_device_x ();
1403 #ifdef HAVE_DIALOGS
1404       vars_of_dialog_x ();
1405 #endif
1406       vars_of_frame_x ();
1407       vars_of_glyphs_x ();
1408 #ifdef HAVE_MENUBARS
1409       vars_of_menubar_x ();
1410 #endif
1411       vars_of_objects_x ();
1412       vars_of_select_x ();
1413 #ifdef HAVE_SCROLLBARS
1414       vars_of_scrollbar_x ();
1415 #endif
1416 #if defined (HAVE_MENUBARS) || defined (HAVE_SCROLLBARS) || defined (HAVE_DIALOGS) || defined (HAVE_TOOLBARS)
1417       vars_of_gui_x ();
1418 #endif
1419 #endif /* HAVE_X_WINDOWS */
1420
1421 #ifdef HAVE_MS_WINDOWS
1422       vars_of_device_mswindows ();
1423       vars_of_console_mswindows ();
1424       vars_of_frame_mswindows ();
1425       vars_of_objects_mswindows ();
1426       vars_of_select_mswindows ();
1427       vars_of_glyphs_mswindows ();
1428 #ifdef HAVE_SCROLLBARS
1429       vars_of_scrollbar_mswindows ();
1430 #endif
1431 #ifdef HAVE_MENUBARS
1432       vars_of_menubar_mswindows ();
1433 #endif
1434 #ifdef HAVE_MSW_C_DIRED
1435       vars_of_dired_mswindows ();
1436 #endif
1437 #ifdef HAVE_DIALOGS
1438       vars_of_dialog_mswindows ();
1439 #endif
1440 #endif  /* HAVE_MS_WINDOWS */
1441
1442 #ifdef MULE
1443       vars_of_mule ();
1444       vars_of_mule_ccl ();
1445       vars_of_mule_charset ();
1446 #endif
1447 #ifdef FILE_CODING
1448       vars_of_file_coding ();
1449 #endif
1450 #ifdef MULE
1451 #ifdef HAVE_WNN
1452       vars_of_mule_wnn ();
1453 #endif
1454 #ifdef HAVE_CANNA
1455       vars_of_mule_canna ();
1456 #endif /* HAVE_CANNA */
1457 #endif /* MULE */
1458
1459 #ifdef TOOLTALK
1460       vars_of_tooltalk ();
1461 #endif
1462
1463 #ifdef SUNPRO
1464       vars_of_sunpro ();
1465 #endif
1466
1467 #ifdef HAVE_LDAP
1468       vars_of_eldap ();
1469 #endif
1470
1471 #ifdef HAVE_POSTGRESQL
1472       vars_of_postgresql();
1473 #endif
1474
1475 #ifdef HAVE_GPM
1476           vars_of_gpmevent ();
1477 #endif
1478
1479       /* Now initialize any specifier variables.  We do this later
1480          because it has some dependence on the vars initialized
1481          above.
1482
1483          These functions should *only* initialize specifier variables,
1484          and may make use of the following functions/macros in addition
1485          to the ones listed above:
1486
1487          DEFVAR_SPECIFIER()
1488          Fmake_specifier()
1489          set_specifier_fallback()
1490          set_specifier_caching()
1491          */
1492
1493       specifier_vars_of_glyphs ();
1494       specifier_vars_of_gutter ();
1495 #ifdef HAVE_MENUBARS
1496       specifier_vars_of_menubar ();
1497 #endif
1498       specifier_vars_of_redisplay ();
1499 #ifdef HAVE_SCROLLBARS
1500       specifier_vars_of_scrollbar ();
1501 #endif
1502 #ifdef HAVE_TOOLBARS
1503       specifier_vars_of_toolbar ();
1504 #endif
1505       specifier_vars_of_window ();
1506
1507       /* Now comes all the rest of the variables that couldn't
1508          be handled above.  There may be dependencies on variables
1509          initialized above, and dependencies between one complex_vars_()
1510          function and another. */
1511
1512       /* Calls Fmake_range_table(). */
1513       complex_vars_of_regex ();
1514       /* Calls Fmake_range_table(). */
1515       complex_vars_of_search ();
1516
1517       /* Calls make_lisp_hash_table(). */
1518       complex_vars_of_extents ();
1519
1520       /* Depends on hash tables and specifiers. */
1521       complex_vars_of_faces ();
1522
1523 #ifdef MULE
1524       /* These two depend on hash tables and various variables declared
1525          earlier.  The second may also depend on the first. */
1526       complex_vars_of_mule_charset ();
1527 #endif
1528 #ifdef FILE_CODING
1529       complex_vars_of_file_coding ();
1530 #endif
1531
1532       /* This calls allocate_glyph(), which creates specifiers
1533          and also relies on a variable (Vthe_nothing_vector) initialized
1534          above.  It also calls make_ext_string(), which under Mule
1535          could require that the charsets be initialized. */
1536       complex_vars_of_glyphs ();
1537
1538       /* These rely on the glyphs just created in the previous function,
1539          and call Fadd_spec_to_specifier(), which relies on various
1540          variables initialized above. */
1541 #ifdef HAVE_X_WINDOWS
1542       complex_vars_of_glyphs_x ();
1543 #endif
1544 #ifdef HAVE_MS_WINDOWS
1545       complex_vars_of_glyphs_mswindows ();
1546 #endif
1547
1548       /* This calls Fmake_glyph_internal(). */
1549       complex_vars_of_alloc ();
1550
1551       /* This calls Fmake_glyph_internal(). */
1552 #ifdef HAVE_MENUBARS
1553       complex_vars_of_menubar ();
1554 #endif
1555
1556       /* This calls Fmake_glyph_internal(). */
1557 #ifdef HAVE_SCROLLBARS
1558       complex_vars_of_scrollbar ();
1559 #endif
1560
1561       /* This calls allocate_glyph(). */
1562       complex_vars_of_frame ();
1563
1564       /* This calls Fcopy_category_table() under Mule, which calls who
1565          knows what. */
1566       complex_vars_of_chartab ();
1567
1568       /* This calls set_string_char(), which (under Mule) depends on the
1569          charsets being initialized. */
1570       complex_vars_of_casetab ();
1571
1572       /* This calls Fcopy_syntax_table(), which relies on char tables. */
1573       complex_vars_of_syntax ();
1574
1575       /* This initializes buffer-local variables, sets things up so
1576          that buffers can be created, and creates a couple of basic
1577          buffers.  This depends on Vstandard_syntax_table and
1578          Vstandard_category_table (initialized in the previous
1579          functions), as well as a whole horde of variables that may
1580          have been initialized above. */
1581       complex_vars_of_buffer ();
1582
1583       /* This initializes console-local variables. */
1584       complex_vars_of_console ();
1585
1586       /* This creates a couple more buffers, and depends on the
1587          previous function. */
1588       complex_vars_of_minibuf ();
1589
1590       /* These two might call Ffile_name_as_directory(), which
1591          might depend on all sorts of things; I'm not sure. */
1592       complex_vars_of_emacs ();
1593
1594       /* This creates a couple of basic keymaps and depends on Lisp
1595          hash tables and Ffset() (both of which depend on some variables
1596          initialized in the vars_of_*() section) and possibly other
1597          stuff. */
1598       complex_vars_of_keymap ();
1599
1600       /* Calls make_lisp_hash_table() and creates a keymap */
1601       complex_vars_of_event_stream ();
1602
1603 #ifdef ERROR_CHECK_GC
1604       {
1605         extern int always_gc;
1606         if (always_gc)                /* purification debugging hack */
1607           garbage_collect_1 ();
1608       }
1609 #endif
1610 #ifdef PDUMP
1611     } else if (!restart) {
1612       reinit_alloc_once_early ();
1613       reinit_symbols_once_early ();
1614       reinit_opaque_once_early ();
1615
1616       reinit_console_type_create_stream ();
1617 #ifdef HAVE_TTY
1618       reinit_console_type_create_tty ();
1619 #endif
1620 #ifdef HAVE_X_WINDOWS
1621       reinit_console_type_create_x ();
1622       reinit_console_type_create_device_x ();
1623 #endif
1624 #ifdef HAVE_MS_WINDOWS
1625       reinit_console_type_create_mswindows ();
1626 #endif
1627
1628       reinit_specifier_type_create ();
1629       reinit_specifier_type_create_image ();
1630       reinit_specifier_type_create_gutter ();
1631       reinit_specifier_type_create_objects ();
1632 #ifdef HAVE_TOOLBARS
1633       reinit_specifier_type_create_toolbar ();
1634 #endif
1635
1636       structure_type_create ();
1637
1638       structure_type_create_chartab ();
1639       structure_type_create_faces ();
1640       structure_type_create_rangetab ();
1641       structure_type_create_hash_table ();
1642
1643       lstream_type_create ();
1644 #ifdef FILE_CODING
1645       lstream_type_create_file_coding ();
1646 #endif
1647 #if defined (HAVE_MS_WINDOWS) && !defined(HAVE_MSG_SELECT)
1648       lstream_type_create_mswindows_selectable ();
1649 #endif
1650 #ifdef HAVE_UNIX_PROCESSES
1651       process_type_create_unix ();
1652 #endif
1653 #ifdef HAVE_WIN32_PROCESSES
1654       process_type_create_nt ();
1655 #endif
1656
1657       reinit_vars_of_buffer ();
1658       reinit_vars_of_console ();
1659 #ifdef DEBUG_XEMACS
1660       reinit_vars_of_debug ();
1661 #endif
1662       reinit_vars_of_device ();
1663       reinit_vars_of_eval ();
1664 #ifdef HAVE_X_WINDOWS
1665       reinit_vars_of_event_Xt ();
1666 #endif
1667 #if defined(HAVE_TTY) && (defined (DEBUG_TTY_EVENT_STREAM) || !defined (HAVE_X_WINDOWS))
1668       reinit_vars_of_event_tty ();
1669 #endif
1670 #ifdef HAVE_MS_WINDOWS
1671       reinit_vars_of_event_mswindows ();
1672 #endif
1673       reinit_vars_of_event_stream ();
1674       reinit_vars_of_events ();
1675       reinit_vars_of_extents ();
1676       reinit_vars_of_fileio ();
1677       reinit_vars_of_font_lock ();
1678       reinit_vars_of_glyphs ();
1679       reinit_vars_of_glyphs_widget ();
1680       reinit_vars_of_insdel ();
1681       reinit_vars_of_lread ();
1682       reinit_vars_of_lstream ();
1683       reinit_vars_of_minibuf ();
1684 #ifdef HAVE_SHLIB
1685       reinit_vars_of_module ();
1686 #endif
1687       reinit_vars_of_objects ();
1688       reinit_vars_of_print ();
1689       reinit_vars_of_redisplay ();
1690       reinit_vars_of_search ();
1691       reinit_vars_of_undo ();
1692       reinit_vars_of_window ();
1693
1694 #ifdef HAVE_MS_WINDOWS
1695       reinit_vars_of_frame_mswindows ();
1696 #endif
1697
1698 #ifdef HAVE_X_WINDOWS
1699       reinit_vars_of_device_x ();
1700 #ifdef HAVE_SCROLLBARS
1701       reinit_vars_of_scrollbar_x ();
1702 #endif
1703 #ifdef HAVE_MENUBARS
1704       reinit_vars_of_menubar_x ();
1705 #endif
1706       reinit_vars_of_select_x ();
1707 #if defined (HAVE_MENUBARS) || defined (HAVE_SCROLLBARS) || defined (HAVE_DIALOGS) || defined (HAVE_TOOLBARS)
1708       reinit_vars_of_gui_x ();
1709 #endif
1710 #endif /* HAVE_X_WINDOWS */
1711
1712 #if defined(MULE) && defined(HAVE_WNN)
1713       reinit_vars_of_mule_wnn ();
1714 #endif
1715
1716       reinit_complex_vars_of_buffer ();
1717       reinit_complex_vars_of_console ();
1718       reinit_complex_vars_of_minibuf ();
1719 #endif /* PDUMP */
1720     }
1721
1722
1723   /* CONGRATULATIONS!!!  We have successfully initialized the Lisp
1724      engine. */
1725
1726   if (initialized)
1727     {
1728       /* Stuff that needs to be reset at run time.  Order below should
1729          not matter. */
1730       reinit_alloc ();
1731       reinit_eval ();
1732 #ifdef MULE_REGEXP
1733       reinit_mule_category ();
1734 #endif
1735     }
1736
1737   /* Now do further initialization/setup of stuff that is not needed by the
1738      syms_of_() routines.  This involves stuff that only is enabled in
1739      an interactive run (redisplay, user input, etc.) and stuff that is
1740      not needed until we start loading Lisp code (the reader).  A lot
1741      of this stuff involves querying the current environment and needs
1742      to be done both at dump time and at run time. */
1743
1744   init_initial_directory();             /* get the directory to use for the
1745                                            "*scratch*" buffer, etc. */
1746
1747 #ifdef WINDOWSNT
1748   /*
1749    * For Win32, call init_environment() now, so that environment/registry
1750    * variables will be properly entered into Vprocess_environment.
1751    */
1752   init_environment();
1753 #endif
1754
1755   init_callproc ();     /* Set up the process environment (so that egetenv
1756                            works), the basic directory variables
1757                            (exec-directory and so on), and stuff
1758                            related to subprocesses.  This should be
1759                            first because many of the functions below
1760                            call egetenv() to get environment variables. */
1761   init_lread ();        /* Set up the Lisp reader. */
1762 #ifdef MSDOS
1763   /* Call early 'cause init_environment needs it.  */
1764   init_dosfns ();
1765   /* Set defaults for several environment variables.  */
1766   init_environment (argc, argv, skip_args);
1767 #endif
1768   init_cmdargs (argc, argv, skip_args); /* Create list Vcommand_line_args */
1769   init_buffer ();       /* Set default directory of *scratch* buffer */
1770
1771 #ifdef WINDOWSNT
1772   init_ntproc();
1773 #endif
1774
1775   init_redisplay ();      /* Determine terminal type.
1776                              init_sys_modes uses results */
1777   init_frame ();
1778   init_event_stream (); /* Set up so we can get user input. */
1779   init_macros (); /* set up so we can run macros. */
1780   init_editfns (); /* Determine the name of the user we're running as */
1781   init_xemacs_process (); /* set up for calling subprocesses */
1782 #ifdef SUNPRO
1783   init_sunpro (); /* Set up Sunpro usage tracking */
1784 #endif
1785 #if defined (HAVE_NATIVE_SOUND) && defined (hp9000s800)
1786   init_hpplay ();
1787 #endif
1788 #ifdef HAVE_TTY
1789   init_device_tty ();
1790 #endif
1791   init_console_stream (restart); /* Create the first console */
1792
1793   /* try to get the actual pathname of the exec file we are running */
1794   if (!restart)
1795   {
1796     Vinvocation_name = Fcar (Vcommand_line_args);
1797     if (XSTRING_DATA(Vinvocation_name)[0] == '-')
1798       {
1799         /* XEmacs as a login shell, oh goody! */
1800         Vinvocation_name = build_string(getenv("SHELL"));
1801       }
1802     Vinvocation_directory = Vinvocation_name;
1803
1804     if (!NILP (Ffile_name_directory (Vinvocation_name)))
1805       {
1806         /* invocation-name includes a directory component -- presumably it
1807            is relative to cwd, not $PATH */
1808         Vinvocation_directory = Fexpand_file_name (Vinvocation_name,
1809                                                    Qnil);
1810         Vinvocation_path = Qnil;
1811       }
1812     else
1813       {
1814         Vinvocation_path = decode_env_path ("PATH", NULL);
1815         locate_file (Vinvocation_path, Vinvocation_name,
1816                      Vlisp_EXEC_SUFFIXES,
1817                      &Vinvocation_directory, X_OK);
1818       }
1819
1820     if (NILP (Vinvocation_directory))
1821       Vinvocation_directory = Vinvocation_name;
1822
1823     Vinvocation_name = Ffile_name_nondirectory (Vinvocation_directory);
1824     Vinvocation_directory = Ffile_name_directory (Vinvocation_directory);
1825   }
1826
1827 #if defined(HAVE_SHLIB) && !defined(WINDOWSNT)
1828   /* This is Unix only.  MS Windows NT has a library call that does
1829      The Right Thing on that system.  Rumor has it, this must be
1830      called for GNU dld in temacs and xemacs.  */
1831   {
1832     char *buf = (char *)alloca (XSTRING_LENGTH (Vinvocation_directory)
1833                                 + XSTRING_LENGTH (Vinvocation_name)
1834                                 + 2);
1835     sprintf (buf, "%s/%s", XSTRING_DATA (Vinvocation_directory),
1836              XSTRING_DATA (Vinvocation_name));
1837
1838     /* All we can do is cry if an error happens, so ignore it. */
1839     (void) dll_init (buf);
1840   }
1841 #endif
1842
1843 #if defined (LOCALTIME_CACHE) && defined (HAVE_TZSET)
1844   /* sun's localtime() has a bug.  it caches the value of the time
1845      zone rather than looking it up every time.  Since localtime() is
1846      called to bolt the undumping time into the undumped emacs, this
1847      results in localtime() ignoring the TZ environment variable.
1848      This flushes the new TZ value into localtime(). */
1849   tzset ();
1850 #endif /* LOCALTIME_CACHE and TZSET */
1851
1852   load_me = Qnil;
1853   if (!initialized)
1854     {
1855       /* Handle -l loadup-and-dump, args passed by Makefile. */
1856       if (argc > 2 + skip_args && !strcmp (argv[1 + skip_args], "-l"))
1857         load_me = build_string (argv[2 + skip_args]);
1858 #if 0 /* CANNOT_DUMP - this can never be right in XEmacs --andyp */
1859       /* Unless next switch is -nl, load "loadup.el" first thing.  */
1860       if (!(argc > 1 + skip_args && !strcmp (argv[1 + skip_args], "-nl")))
1861         load_me = build_string ("loadup.el");
1862 #endif /* CANNOT_DUMP */
1863     }
1864
1865 #ifdef QUANTIFY
1866   if (initialized)
1867     quantify_start_recording_data ();
1868 #endif /* QUANTIFY */
1869
1870   initialized = 1;
1871
1872   /* This never returns.  */
1873   initial_command_loop (load_me);
1874   /* NOTREACHED */
1875 }
1876
1877 \f
1878 /* Sort the args so we can find the most important ones
1879    at the beginning of argv.  */
1880
1881 /* First, here's a table of all the standard options.  */
1882
1883 struct standard_args
1884 {
1885   const char *name;
1886   const char *longname;
1887   int priority;
1888   int nargs;
1889 };
1890
1891 static const struct standard_args standard_args[] =
1892 {
1893   /* Handled by main_1 above: */
1894   { "-sd", "--show-dump-id", 105, 0 },
1895   { "-t", "--terminal", 100, 1 },
1896   { "-nd", "--no-dump-file", 95, 0 },
1897   { "-nw", "--no-windows", 90, 0 },
1898   { "-batch", "--batch", 85, 0 },
1899   { "-debug-paths", "--debug-paths", 82, 0 },
1900   { "-help", "--help", 80, 0 },
1901   { "-version", "--version", 75, 0 },
1902   { "-V", 0, 75, 0 },
1903   { "-d", "--display", 80, 1 },
1904   { "-display", 0, 80, 1 },
1905   { "-NXHost",  0, 79, 0 },
1906   { "-MachLaunch", 0, 79, 0},
1907
1908   /* Handled by command-line-early in startup.el: */
1909   { "-q", "--no-init-file", 50, 0 },
1910   { "-unmapped", 0, 50, 0 },
1911   { "-no-init-file", 0, 50, 0 },
1912   { "-vanilla", "--vanilla", 50, 0 },
1913   { "-no-autoloads", "--no-autoloads", 50, 0 },
1914   { "-no-site-file", "--no-site-file", 40, 0 },
1915   { "-no-early-packages", "--no-early-packages", 35, 0 },
1916   { "-u", "--user", 30, 1 },
1917   { "-user", 0, 30, 1 },
1918   { "-debug-init", "--debug-init", 20, 0 },
1919   { "-debug-paths", "--debug-paths", 20, 0 },
1920
1921   /* Xt options: */
1922   { "-i", "--icon-type", 15, 0 },
1923   { "-itype", 0, 15, 0 },
1924   { "-iconic", "--iconic", 15, 0 },
1925   { "-bg", "--background-color", 10, 1 },
1926   { "-background", 0, 10, 1 },
1927   { "-fg", "--foreground-color", 10, 1 },
1928   { "-foreground", 0, 10, 1 },
1929   { "-bd", "--border-color", 10, 1 },
1930   { "-bw", "--border-width", 10, 1 },
1931   { "-ib", "--internal-border", 10, 1 },
1932   { "-ms", "--mouse-color", 10, 1 },
1933   { "-cr", "--cursor-color", 10, 1 },
1934   { "-fn", "--font", 10, 1 },
1935   { "-font", 0, 10, 1 },
1936   { "-g", "--geometry", 10, 1 },
1937   { "-geometry", 0, 10, 1 },
1938   { "-T", "--title", 10, 1 },
1939   { "-title", 0, 10, 1 },
1940   { "-name", "--name", 10, 1 },
1941   { "-xrm", "--xrm", 10, 1 },
1942   { "-r", "--reverse-video", 5, 0 },
1943   { "-rv", 0, 5, 0 },
1944   { "-reverse", 0, 5, 0 },
1945   { "-hb", "--horizontal-scroll-bars", 5, 0 },
1946   { "-vb", "--vertical-scroll-bars", 5, 0 },
1947
1948   /* These have the same priority as ordinary file name args,
1949      so they are not reordered with respect to those.  */
1950   { "-L", "--directory", 0, 1 },
1951   { "-directory", 0, 0, 1 },
1952   { "-l", "--load", 0, 1 },
1953   { "-load", 0, 0, 1 },
1954   { "-f", "--funcall", 0, 1 },
1955   { "-funcall", 0, 0, 1 },
1956   { "-eval", "--eval", 0, 1 },
1957   { "-insert", "--insert", 0, 1 },
1958   /* This should be processed after ordinary file name args and the like.  */
1959   { "-kill", "--kill", -10, 0 },
1960 };
1961
1962 /* Reorder the elements of ARGV (assumed to have ARGC elements)
1963    so that the highest priority ones come first.
1964    Do not change the order of elements of equal priority.
1965    If an option takes an argument, keep it and its argument together.  */
1966
1967 static void
1968 sort_args (int argc, char **argv)
1969 {
1970   char **new_argv = xnew_array (char *, argc);
1971   /* For each element of argv,
1972      the corresponding element of options is:
1973      0 for an option that takes no arguments,
1974      1 for an option that takes one argument, etc.
1975      -1 for an ordinary non-option argument.  */
1976   int *options  = xnew_array (int, argc);
1977   int *priority = xnew_array (int, argc);
1978   int to = 1;
1979   int from;
1980   int i;
1981   int end_of_options_p = 0;
1982
1983   /* Categorize all the options,
1984      and figure out which argv elts are option arguments.  */
1985   for (from = 1; from < argc; from++)
1986     {
1987       options[from] = -1;
1988       priority[from] = 0;
1989       /* Pseudo options "--" and "run-temacs" indicate end of options */
1990       if (!strcmp (argv[from], "--") ||
1991           !strcmp (argv[from], "run-temacs"))
1992         end_of_options_p = 1;
1993       if (!end_of_options_p && argv[from][0] == '-')
1994         {
1995           int match, thislen;
1996           char *equals;
1997
1998           /* Look for a match with a known old-fashioned option.  */
1999           for (i = 0; i < countof (standard_args); i++)
2000             if (!strcmp (argv[from], standard_args[i].name))
2001               {
2002                 options[from]  = standard_args[i].nargs;
2003                 priority[from] = standard_args[i].priority;
2004                 if (from + standard_args[i].nargs >= argc)
2005                   fatal ("Option `%s' requires an argument\n", argv[from]);
2006                 from += standard_args[i].nargs;
2007                 goto done;
2008               }
2009
2010           /* Look for a match with a known long option.
2011              MATCH is -1 if no match so far, -2 if two or more matches so far,
2012              >= 0 (the table index of the match) if just one match so far.  */
2013           if (argv[from][1] == '-')
2014             {
2015               match = -1;
2016               thislen = strlen (argv[from]);
2017               equals = strchr (argv[from], '=');
2018               if (equals != 0)
2019                 thislen = equals - argv[from];
2020
2021               for (i = 0; i < countof (standard_args); i++)
2022                 if (standard_args[i].longname
2023                     && !strncmp (argv[from], standard_args[i].longname,
2024                                  thislen))
2025                   {
2026                     if (match == -1)
2027                       match = i;
2028                     else
2029                       match = -2;
2030                   }
2031
2032               /* If we found exactly one match, use that.  */
2033               if (match >= 0)
2034                 {
2035                   options[from]  = standard_args[match].nargs;
2036                   priority[from] = standard_args[match].priority;
2037                   /* If --OPTION=VALUE syntax is used,
2038                      this option uses just one argv element.  */
2039                   if (equals != 0)
2040                     options[from] = 0;
2041                   if (from + options[from] >= argc)
2042                     fatal ("Option `%s' requires an argument\n", argv[from]);
2043                   from += options[from];
2044                 }
2045             }
2046         done: ;
2047         }
2048     }
2049
2050   /* Copy the arguments, in order of decreasing priority, to NEW_ARGV.  */
2051   new_argv[0] = argv[0];
2052   while (to < argc)
2053     {
2054       int best = -1;
2055       int best_priority = -9999;
2056
2057       /* Find the highest priority remaining option.
2058          If several have equal priority, take the first of them.  */
2059       for (from = 1; from < argc; from++)
2060         {
2061           if (argv[from] != 0 && priority[from] > best_priority)
2062             {
2063               best_priority = priority[from];
2064               best = from;
2065             }
2066           /* Skip option arguments--they are tied to the options.  */
2067           if (options[from] > 0)
2068             from += options[from];
2069         }
2070
2071       if (best < 0)
2072         abort ();
2073
2074       /* Copy the highest priority remaining option, with its args, to NEW_ARGV.  */
2075       new_argv[to++] = argv[best];
2076       for (i = 0; i < options[best]; i++)
2077         new_argv[to++] = argv[best + i + 1];
2078
2079       /* Clear out this option in ARGV.  */
2080       argv[best] = 0;
2081       for (i = 0; i < options[best]; i++)
2082         argv[best + i + 1] = 0;
2083     }
2084
2085   memcpy (argv, new_argv, sizeof (char *) * argc);
2086   xfree (new_argv);
2087   xfree (options);
2088   xfree (priority);
2089 }
2090
2091 DEFUN ("running-temacs-p", Frunning_temacs_p, 0, 0, 0, /*
2092 True if running temacs.  This means we are in the dumping stage.
2093 This is false during normal execution of the `xemacs' program, and
2094 becomes false once `run-emacs-from-temacs' is run.
2095 */
2096        ())
2097 {
2098   return run_temacs_argc >= 0 ? Qt : Qnil;
2099 }
2100
2101 DEFUN ("run-emacs-from-temacs", Frun_emacs_from_temacs, 0, MANY, 0, /*
2102 Do not call this.  It will reinitialize your XEmacs.  You'll be sorry.
2103 */
2104 /* If this function is called from startup.el, it will be possible to run
2105    temacs as an editor using 'temacs -batch -l loadup.el run-temacs', instead
2106    of having to dump an emacs and then run that (when debugging emacs itself,
2107    this can be much faster)). [Actually, the speed difference isn't that
2108    much as long as your filesystem is local, and you don't end up with
2109    a dumped version in case you want to rerun it.  This function is most
2110    useful when used as part of the `make all-elc' command. --ben]
2111    This will "restart" emacs with the specified command-line arguments.
2112
2113    Martin thinks this function is most useful when using debugging
2114    tools like Purify or tcov that get confused by XEmacs' dumping.  */
2115      (int nargs, Lisp_Object *args))
2116 {
2117   int ac;
2118   const Extbyte *wampum;
2119   int namesize;
2120   int total_len;
2121   Lisp_Object orig_invoc_name = Fcar (Vcommand_line_args);
2122   const Extbyte **wampum_all = alloca_array (const Extbyte *, nargs);
2123   int *wampum_all_len  = alloca_array (int, nargs);
2124
2125   assert (!gc_in_progress);
2126
2127   if (run_temacs_argc < 0)
2128     error ("I've lost my temacs-hood.");
2129
2130   /* Need to convert the orig_invoc_name and all of the arguments
2131      to external format. */
2132
2133   TO_EXTERNAL_FORMAT (LISP_STRING, orig_invoc_name,
2134                       ALLOCA, (wampum, namesize),
2135                       Qnative);
2136   namesize++;
2137
2138   for (ac = 0, total_len = namesize; ac < nargs; ac++)
2139     {
2140       CHECK_STRING (args[ac]);
2141       TO_EXTERNAL_FORMAT (LISP_STRING, args[ac],
2142                           ALLOCA, (wampum_all[ac], wampum_all_len[ac]),
2143                           Qnative);
2144       wampum_all_len[ac]++;
2145       total_len += wampum_all_len[ac];
2146     }
2147   DO_REALLOC (run_temacs_args, run_temacs_args_size, total_len, char);
2148   DO_REALLOC (run_temacs_argv, run_temacs_argv_size, nargs+2, char *);
2149
2150   memcpy (run_temacs_args, wampum, namesize);
2151   run_temacs_argv [0] = run_temacs_args;
2152   for (ac = 0; ac < nargs; ac++)
2153     {
2154       memcpy (run_temacs_args + namesize,
2155               wampum_all[ac], wampum_all_len[ac]);
2156       run_temacs_argv [ac + 1] = run_temacs_args + namesize;
2157       namesize += wampum_all_len[ac];
2158     }
2159   run_temacs_argv [nargs + 1] = 0;
2160   catchlist = NULL; /* Important!  Otherwise free_cons() calls in
2161                        condition_case_unwind() may lead to GC death. */
2162   unbind_to (0, Qnil); /* this closes loadup.el */
2163   purify_flag = 0;
2164   run_temacs_argc = nargs + 1;
2165 #if defined (HEAP_IN_DATA) && !defined(PDUMP)
2166   report_sheap_usage (0);
2167 #endif
2168   LONGJMP (run_temacs_catch, 1);
2169   return Qnil; /* not reached; warning suppression */
2170 }
2171
2172 /* ARGSUSED */
2173 int
2174 main (int argc, char **argv, char **envp)
2175 {
2176   int     volatile vol_argc = argc;
2177   char ** volatile vol_argv = argv;
2178   char ** volatile vol_envp = envp;
2179   /* This is hairy.  We need to compute where the XEmacs binary was invoked
2180      from because temacs initialization requires it to find the lisp
2181      directories.  The code that recomputes the path is guarded by the
2182      restarted flag.  There are three possible paths I've found so far
2183      through this:
2184
2185      temacs -- When running temacs for basic build stuff, the first main_1
2186       will be the only one invoked.  It must compute the path else there
2187       will be a very ugly bomb in startup.el (can't find obvious location
2188       for doc-directory data-directory, etc.).
2189
2190      temacs w/ run-temacs on the command line -- This is run to bytecompile
2191       all the out of date dumped lisp.  It will execute both of the main_1
2192       calls and the second one must not touch the first computation because
2193       argc/argv are hosed the second time through.
2194
2195      xemacs -- Only the second main_1 is executed.  The invocation path must
2196       computed but this only matters when running in place or when running
2197       as a login shell.
2198
2199      As a bonus for straightening this out, XEmacs can now be run in place
2200      as a login shell.  This never used to work.
2201
2202      As another bonus, we can now guarantee that
2203      (concat invocation-directory invocation-name) contains the filename
2204      of the XEmacs binary we are running.  This can now be used in a
2205      definite test for out of date dumped files.  -slb */
2206   int restarted = 0;
2207 #ifdef QUANTIFY
2208   quantify_stop_recording_data ();
2209   quantify_clear_data ();
2210 #endif /* QUANTIFY */
2211
2212   suppress_early_error_handler_backtrace = 0;
2213   lim_data = 0; /* force reinitialization of this variable */
2214
2215   /* Lisp_Object must fit in a word; check VALBITS and GCTYPEBITS */
2216   assert (sizeof (Lisp_Object) == sizeof (void *));
2217
2218 #ifdef LINUX_SBRK_BUG
2219   sbrk (1);
2220 #endif
2221
2222   if (!initialized)
2223     {
2224 #ifdef DOUG_LEA_MALLOC
2225       mallopt (M_MMAP_MAX, 0);
2226 #endif
2227       run_temacs_argc = 0;
2228       if (! SETJMP (run_temacs_catch))
2229         {
2230           main_1 (vol_argc, vol_argv, vol_envp, 0);
2231         }
2232       /* run-emacs-from-temacs called */
2233       restarted = 1;
2234       vol_argc = run_temacs_argc;
2235       vol_argv = run_temacs_argv;
2236 #ifdef _SCO_DS
2237       /* This makes absolutely no sense to anyone involved.  There are
2238          several people using this stuff.  We've compared versions on
2239          everything we can think of.  We can find no difference.
2240          However, on both my systems environ is a plain old global
2241          variable initialized to zero.  _environ is the one that
2242          contains pointers to the actual environment.
2243
2244          Since we can't figure out the difference (and we're hours
2245          away from a release), this takes a very cowardly approach and
2246          is bracketed with both a system specific preprocessor test
2247          and a runtime "do you have this problem" test
2248
2249          06/20/96 robertl@dgii.com */
2250       {
2251         extern char *_environ;
2252         if ((unsigned) environ == 0)
2253           environ=_environ;
2254       }
2255 #endif /* _SCO_DS */
2256       vol_envp = environ;
2257     }
2258 #ifdef RUN_TIME_REMAP
2259   else
2260     /* obviously no-one uses this because where it was before initialized was
2261      *always* true */
2262     run_time_remap (argv[0]);
2263 #endif
2264
2265 #ifdef DOUG_LEA_MALLOC
2266   if (initialized && (malloc_state_ptr != NULL))
2267     {
2268       int rc = malloc_set_state (malloc_state_ptr);
2269       if (rc != 0)
2270         {
2271           stderr_out ("malloc_set_state failed, rc = %d\n", rc);
2272           abort ();
2273         }
2274 #if 0
2275       free (malloc_state_ptr);
2276 #endif
2277       /* mmap works in glibc-2.1, glibc-2.0 (Non-Mule only) and Linux libc5 */
2278 #if (defined(__GLIBC__) && __GLIBC_MINOR__ >= 1) || \
2279     defined(_NO_MALLOC_WARNING_) || \
2280     (defined(__GLIBC__) && __GLIBC_MINOR__ < 1 && !defined(MULE)) || \
2281     defined(DEBUG_DOUG_LEA_MALLOC)
2282       mallopt (M_MMAP_MAX, 64);
2283 #endif
2284 #ifdef REL_ALLOC
2285       r_alloc_reinit ();
2286 #endif
2287     }
2288 #endif /* DOUG_LEA_MALLOC */
2289
2290   run_temacs_argc = -1;
2291
2292   main_1 (vol_argc, vol_argv, vol_envp, restarted);
2293   return 0; /* unreached */
2294 }
2295
2296 \f
2297 /* Dumping apparently isn't supported by versions of GCC >= 2.8. */
2298 /* The following needs conditionalization on whether either XEmacs or */
2299 /* various system shared libraries have been built and linked with */
2300 /* GCC >= 2.8.  -slb */
2301 #if defined(GNU_MALLOC)
2302 static void
2303 voodoo_free_hook (void *mem)
2304 {
2305   /* Disable all calls to free() when XEmacs is exiting and it doesn't */
2306   /* matter. */
2307   __free_hook =
2308 #ifdef __GNUC__ /* prototype of __free_hook varies with glibc version */
2309     (__typeof__ (__free_hook))
2310 #endif
2311     voodoo_free_hook;
2312 }
2313 #endif /* GNU_MALLOC */
2314
2315 DEFUN ("kill-emacs", Fkill_emacs, 0, 1, "P", /*
2316 Exit the XEmacs job and kill it.  Ask for confirmation, without argument.
2317 If ARG is an integer, return ARG as the exit program code.
2318 If ARG is a string, stuff it as keyboard input.
2319
2320 The value of `kill-emacs-hook', if not void,
2321 is a list of functions (of no args),
2322 all of which are called before XEmacs is actually killed.
2323 */
2324        (arg))
2325 {
2326   /* This function can GC */
2327   struct gcpro gcpro1;
2328
2329   GCPRO1 (arg);
2330
2331   if (feof (stdin))
2332     arg = Qt;
2333
2334   if (!preparing_for_armageddon && !noninteractive)
2335     run_hook (Qkill_emacs_hook);
2336
2337   /* make sure no quitting from now on!! */
2338   dont_check_for_quit = 1;
2339   Vinhibit_quit = Qt;
2340
2341   if (!preparing_for_armageddon)
2342     {
2343       Lisp_Object concons, nextcons;
2344
2345       /* Normally, go ahead and delete all the consoles now.
2346          Some unmentionably lame window systems (MS Wwwww...... eek,
2347          I can't even say it) don't properly clean up after themselves,
2348          and even for those that do, it might be cleaner this way.
2349          If we're going down, however, we don't do this (might
2350          be too dangerous), and if we get a crash somewhere within
2351          this loop, we'll still autosave and won't try this again. */
2352
2353       LIST_LOOP_DELETING(concons, nextcons, Vconsole_list)
2354         {
2355           /* There is very little point in deleting the stream console.
2356              It uses stdio, which should flush any buffered output and
2357              something can only go wrong. -slb */
2358           /* I changed my mind.  There's a stupid hack in close to add
2359              a trailing newline. */
2360           /*if (!CONSOLE_STREAM_P (XCONSOLE (XCAR (concons))))*/
2361             delete_console_internal (XCONSOLE (XCAR (concons)), 1, 1, 0);
2362         }
2363     }
2364
2365   UNGCPRO;
2366
2367   shut_down_emacs (0, STRINGP (arg) ? arg : Qnil);
2368
2369 #if defined(GNU_MALLOC)
2370   __free_hook =
2371 #ifdef __GNUC__ /* prototype of __free_hook varies with glibc version */
2372     (__typeof__ (__free_hook))
2373 #endif
2374     voodoo_free_hook;
2375 #endif
2376
2377   exit (INTP (arg) ? XINT (arg) : 0);
2378   /* NOTREACHED */
2379   return Qnil; /* I'm sick of the compiler warning */
2380 }
2381
2382 /* Perform an orderly shutdown of XEmacs.  Autosave any modified
2383    buffers, kill any child processes, clean up the terminal modes (if
2384    we're in the foreground), and other stuff like that.  Don't perform
2385    any redisplay; this may be called when XEmacs is shutting down in
2386    the background, or after its X connection has died.
2387
2388    If SIG is a signal number, print a message for it.
2389
2390    This is called by fatal signal handlers, X protocol error handlers,
2391    and Fkill_emacs.  */
2392 static void
2393 shut_down_emacs (int sig, Lisp_Object stuff)
2394 {
2395   /* This function can GC */
2396   /* Prevent running of hooks and other non-essential stuff
2397      from now on.  */
2398   preparing_for_armageddon = 1;
2399
2400   /* In case frames or windows are screwed up, avoid assertion
2401      failures here */
2402   Vinhibit_quit = Qt;
2403
2404 #ifdef QUANTIFY
2405   quantify_stop_recording_data ();
2406 #endif /* QUANTIFY */
2407
2408 #if 0
2409   /* This is absolutely the most important thing to do, so make sure
2410      we do it now, before anything else.  We might have crashed and
2411      be in a weird inconsistent state, and potentially anything could
2412      set off another protection fault and cause us to bail out
2413      immediately. */
2414   /* I'm not removing the code entirely, yet.  We have run up against
2415      a spate of problems in diagnosing crashes due to crashes within
2416      crashes.  It has very definitely been determined that code called
2417      during auto-saving cannot work if XEmacs crashed inside of GC.
2418      We already auto-save on an itimer so there cannot be too much
2419      unsaved stuff around, and if we get better crash reports we might
2420      be able to get more problems fixed so I'm disabling this.  -slb */
2421   Fdo_auto_save (Qt, Qnil); /* do this before anything hazardous */
2422 #endif
2423
2424   fflush (stdout);
2425   reset_all_consoles ();
2426   if (sig && sig != SIGTERM)
2427     {
2428       stderr_out ("\nFatal error (%d).\n", sig);
2429       stderr_out
2430         ("Your files have been auto-saved.\n"
2431          "Use `M-x recover-session' to recover them.\n"
2432          "\n"
2433          "If you have access to the PROBLEMS file that came with your\n"
2434          "version of XEmacs, please check to see if your crash is described\n"
2435          "there, as there may be a workaround available.\n"
2436 #ifdef INFODOCK
2437          "Otherwise, please report this bug by selecting `Report-Bug'\n"
2438          "in the InfoDock menu.\n"
2439 #else
2440          "Otherwise, please report this bug by running the send-pr\n"
2441          "script included with XEmacs, or selecting `Send Bug Report'\n"
2442          "from the help menu.\n"
2443          "As a last resort send ordinary email to `crashes@xemacs.org'.\n"
2444 #endif
2445          "*MAKE SURE* to include the information in the command\n"
2446          "M-x describe-installation.\n"
2447          "\n"
2448          "If at all possible, *please* try to obtain a C stack backtrace;\n"
2449          "it will help us immensely in determining what went wrong.\n"
2450          "To do this, locate the core file that was produced as a result\n"
2451          "of this crash (it's usually called `core' and is located in the\n"
2452          "directory in which you started the editor, or maybe in your home\n"
2453          "directory), and type\n"
2454          "\n"
2455          "  gdb ");
2456       {
2457         const char *name;
2458         char *dir = 0;
2459
2460         /* Now try to determine the actual path to the executable,
2461            to try to make the backtrace-determination process as foolproof
2462            as possible. */
2463         if (STRINGP (Vinvocation_name))
2464           name = (char *) XSTRING_DATA (Vinvocation_name);
2465         else
2466           name = "xemacs";
2467         if (STRINGP (Vinvocation_directory))
2468           dir = (char *) XSTRING_DATA (Vinvocation_directory);
2469         if (!dir || dir[0] != '/')
2470           stderr_out ("`which %s`", name);
2471         else if (dir[strlen (dir) - 1] != '/')
2472           stderr_out ("%s/%s", dir, name);
2473         else
2474           stderr_out ("%s%s", dir, name);
2475       }
2476       stderr_out
2477         (" core\n\n"
2478          "then type `where' when the debugger prompt comes up.\n"
2479          "(If you don't have GDB on your system, you might have DBX,\n"
2480          "or XDB, or SDB.  A similar procedure should work for all of\n"
2481          "these.  Ask your system administrator if you need more help.)\n");
2482     }
2483
2484   stuff_buffered_input (stuff);
2485
2486   kill_buffer_processes (Qnil);
2487
2488 #ifdef CLASH_DETECTION
2489   unlock_all_files ();
2490 #endif
2491
2492 #ifdef TOOLTALK
2493   tt_session_quit (tt_default_session ());
2494 #if 0
2495   /* The following crashes when built on X11R5 and run on X11R6 */
2496   tt_close ();
2497 #endif
2498 #endif /* TOOLTALK */
2499
2500 }
2501
2502 \f
2503 #ifndef CANNOT_DUMP
2504
2505 #if !defined(PDUMP) || !defined(SYSTEM_MALLOC)
2506 extern char my_edata[];
2507 #endif
2508
2509 extern void disable_free_hook (void);
2510
2511 DEFUN ("dump-emacs", Fdump_emacs, 2, 2, 0, /*
2512 Dump current state of XEmacs into executable file FILENAME.
2513 Take symbols from SYMFILE (presumably the file you executed to run XEmacs).
2514 This is used in the file `loadup.el' when building XEmacs.
2515
2516 Remember to set `command-line-processed' to nil before dumping
2517 if you want the dumped XEmacs to process its command line
2518 and announce itself normally when it is run.
2519 */
2520        (intoname, symname))
2521 {
2522   /* This function can GC */
2523   struct gcpro gcpro1, gcpro2;
2524   int opurify;
2525
2526   GCPRO2 (intoname, symname);
2527
2528 #ifdef FREE_CHECKING
2529   Freally_free (Qnil);
2530
2531   /* When we're dumping, we can't use the debugging free() */
2532   disable_free_hook ();
2533 #endif
2534
2535   CHECK_STRING (intoname);
2536   intoname = Fexpand_file_name (intoname, Qnil);
2537   if (!NILP (symname))
2538     {
2539       CHECK_STRING (symname);
2540       if (XSTRING_LENGTH (symname) > 0)
2541         symname = Fexpand_file_name (symname, Qnil);
2542       else
2543         symname = Qnil;
2544     }
2545
2546   opurify = purify_flag;
2547   purify_flag = 0;
2548
2549 #if defined (HEAP_IN_DATA) && !defined(PDUMP)
2550   report_sheap_usage (1);
2551 #endif
2552
2553   clear_message ();
2554
2555   fflush (stderr);
2556   fflush (stdout);
2557
2558   disksave_object_finalization ();
2559   release_breathing_space ();
2560
2561   /* Tell malloc where start of impure now is */
2562   /* Also arrange for warnings when nearly out of space.  */
2563 #ifndef SYSTEM_MALLOC
2564   memory_warnings (my_edata, malloc_warning);
2565 #endif
2566
2567   UNGCPRO;
2568
2569 #if defined (MSDOS) && defined (EMX)
2570   {
2571     int fd = open ((char *) XSTRING_DATA (intoname),
2572                    O_WRONLY|O_CREAT|O_TRUNC, S_IREAD|S_IWRITE);
2573     if (!fd) {
2574       error ("Failure operating on %s", XSTRING_DATA (intoname));
2575     } else {
2576       _core (fd);
2577       close (fd);
2578     }
2579   }
2580 #else /* not MSDOS and EMX */
2581   {
2582     char *intoname_ext;
2583     char *symname_ext;
2584
2585     TO_EXTERNAL_FORMAT (LISP_STRING, intoname,
2586                         C_STRING_ALLOCA, intoname_ext,
2587                         Qfile_name);
2588
2589     if (STRINGP (symname))
2590       TO_EXTERNAL_FORMAT (LISP_STRING, symname,
2591                           C_STRING_ALLOCA, symname_ext,
2592                           Qfile_name);
2593     else
2594       symname_ext = 0;
2595
2596     garbage_collect_1 ();
2597
2598 #ifdef PDUMP
2599     pdump ();
2600 #else
2601
2602 #ifdef DOUG_LEA_MALLOC
2603     malloc_state_ptr = malloc_get_state ();
2604 #endif
2605   /* here we break our rule that the filename conversion should
2606      be performed at the actual time that the system call is made.
2607      It's a whole lot easier to do the conversion here than to
2608      modify all the unexec routines to ensure that filename
2609      conversion is applied everywhere.  Don't worry about memory
2610      leakage because this call only happens once. */
2611     unexec (intoname_ext, symname_ext, (uintptr_t) my_edata, 0, 0);
2612 #ifdef DOUG_LEA_MALLOC
2613     free (malloc_state_ptr);
2614 #endif
2615 #endif /* not PDUMP */
2616   }
2617 #endif /* not MSDOS and EMX */
2618
2619   purify_flag = opurify;
2620
2621   return Qnil;
2622 }
2623
2624 #endif /* not CANNOT_DUMP */
2625 \f
2626
2627 /* Split STRING into a list of substrings.  The substrings are the
2628    parts of original STRING separated by SEPCHAR.  */
2629 static Lisp_Object
2630 split_string_by_emchar_1 (const Bufbyte *string, Bytecount size,
2631                           Emchar sepchar)
2632 {
2633   Lisp_Object result = Qnil;
2634   const Bufbyte *end = string + size;
2635
2636   while (1)
2637     {
2638       const Bufbyte *p = string;
2639       while (p < end)
2640         {
2641           if (charptr_emchar (p) == sepchar)
2642             break;
2643           INC_CHARPTR (p);
2644         }
2645       result = Fcons (make_string (string, p - string), result);
2646       if (p < end)
2647         {
2648           string = p;
2649           INC_CHARPTR (string); /* skip sepchar */
2650         }
2651       else
2652         break;
2653     }
2654   return Fnreverse (result);
2655 }
2656
2657 /* The same as the above, except PATH is an external C string (it is
2658    converted using Qfile_name), and sepchar is hardcoded to SEPCHAR
2659    (':' or whatever).  */
2660 Lisp_Object
2661 decode_path (const char *path)
2662 {
2663   Bytecount newlen;
2664   Bufbyte *newpath;
2665   if (!path)
2666     return Qnil;
2667
2668   TO_INTERNAL_FORMAT (C_STRING, path, ALLOCA, (newpath, newlen), Qfile_name);
2669
2670   /* #### Does this make sense?  It certainly does for
2671      decode_env_path(), but it looks dubious here.  Does any code
2672      depend on decode_path("") returning nil instead of an empty
2673      string?  */
2674   if (!newlen)
2675     return Qnil;
2676
2677   return split_string_by_emchar_1 (newpath, newlen, SEPCHAR);
2678 }
2679
2680 Lisp_Object
2681 decode_env_path (const char *evarname, const char *default_)
2682 {
2683   const char *path = 0;
2684   if (evarname)
2685     path = egetenv (evarname);
2686   if (!path)
2687     path = default_;
2688   return decode_path (path);
2689 }
2690
2691 /* Ben thinks this function should not exist or be exported to Lisp.
2692    We use it to define split-path-string in subr.el (not!).  */
2693
2694 DEFUN ("split-string-by-char", Fsplit_string_by_char, 1, 2, 0, /*
2695 Split STRING into a list of substrings originally separated by SEPCHAR.
2696 */
2697        (string, sepchar))
2698 {
2699   CHECK_STRING (string);
2700   CHECK_CHAR (sepchar);
2701   return split_string_by_emchar_1 (XSTRING_DATA (string),
2702                                    XSTRING_LENGTH (string),
2703                                    XCHAR (sepchar));
2704 }
2705
2706 /* #### This was supposed to be in subr.el, but is used VERY early in
2707    the bootstrap process, so it goes here.  Damn.  */
2708
2709 DEFUN ("split-path", Fsplit_path, 1, 1, 0, /*
2710 Explode a search path into a list of strings.
2711 The path components are separated with the characters specified
2712 with `path-separator'.
2713 */
2714        (path))
2715 {
2716   CHECK_STRING (path);
2717
2718   while (!STRINGP (Vpath_separator)
2719          || (XSTRING_CHAR_LENGTH (Vpath_separator) != 1))
2720     Vpath_separator = signal_simple_continuable_error
2721       ("`path-separator' should be set to a single-character string",
2722        Vpath_separator);
2723
2724   return (split_string_by_emchar_1
2725           (XSTRING_DATA (path), XSTRING_LENGTH (path),
2726            charptr_emchar (XSTRING_DATA (Vpath_separator))));
2727 }
2728 \f
2729 DEFUN ("noninteractive", Fnoninteractive, 0, 0, 0, /*
2730 Non-nil return value means XEmacs is running without interactive terminal.
2731 */
2732        ())
2733 {
2734   return noninteractive ? Qt : Qnil;
2735 }
2736
2737 /* This flag is useful to define if you're under a debugger; this way, you
2738    can put a breakpoint of assert_failed() and debug multiple problems
2739    in one session without having to recompile. */
2740 /* #define ASSERTIONS_DONT_ABORT */
2741
2742 #ifdef USE_ASSERTIONS
2743 /* This highly dubious kludge ... shut up Jamie, I'm tired of your slagging. */
2744
2745 DOESNT_RETURN
2746 assert_failed (const char *file, int line, const char *expr)
2747 {
2748   stderr_out ("Fatal error: assertion failed, file %s, line %d, %s\n",
2749               file, line, expr);
2750 #undef abort    /* avoid infinite #define loop... */
2751 #if defined (WINDOWSNT) && defined (DEBUG_XEMACS)
2752   DebugBreak ();
2753 #elif !defined (ASSERTIONS_DONT_ABORT)
2754   abort ();
2755 #endif
2756 }
2757 #endif /* USE_ASSERTIONS */
2758
2759 #ifdef QUANTIFY
2760 DEFUN ("quantify-start-recording-data", Fquantify_start_recording_data,
2761        0, 0, "", /*
2762 Start recording Quantify data.
2763 */
2764        ())
2765 {
2766   quantify_start_recording_data ();
2767   return Qnil;
2768 }
2769
2770 DEFUN ("quantify-stop-recording-data", Fquantify_stop_recording_data,
2771        0, 0, "", /*
2772 Stop recording Quantify data.
2773 */
2774        ())
2775 {
2776   quantify_stop_recording_data ();
2777   return Qnil;
2778 }
2779
2780 DEFUN ("quantify-clear-data", Fquantify_clear_data, 0, 0, "", /*
2781 Clear all Quantify data.
2782 */
2783        ())
2784 {
2785   quantify_clear_data ();
2786   return Qnil;
2787 }
2788 #endif /* QUANTIFY */
2789
2790 void
2791 syms_of_emacs (void)
2792 {
2793 #ifndef CANNOT_DUMP
2794   DEFSUBR (Fdump_emacs);
2795 #endif /* !CANNOT_DUMP */
2796
2797   DEFSUBR (Frun_emacs_from_temacs);
2798   DEFSUBR (Frunning_temacs_p);
2799   DEFSUBR (Finvocation_name);
2800   DEFSUBR (Finvocation_directory);
2801   DEFSUBR (Fkill_emacs);
2802   DEFSUBR (Fnoninteractive);
2803
2804 #ifdef QUANTIFY
2805   DEFSUBR (Fquantify_start_recording_data);
2806   DEFSUBR (Fquantify_stop_recording_data);
2807   DEFSUBR (Fquantify_clear_data);
2808 #endif /* QUANTIFY */
2809
2810   DEFSUBR (Fsplit_string_by_char);
2811   DEFSUBR (Fsplit_path);        /* #### */
2812
2813   defsymbol (&Qkill_emacs_hook, "kill-emacs-hook");
2814   defsymbol (&Qsave_buffers_kill_emacs, "save-buffers-kill-emacs");
2815 }
2816
2817 void
2818 vars_of_emacs (void)
2819 {
2820   DEFVAR_BOOL ("suppress-early-error-handler-backtrace",
2821                &suppress_early_error_handler_backtrace /*
2822 Non-nil means early error handler shouldn't print a backtrace.
2823 */ );
2824
2825   DEFVAR_LISP ("command-line-args", &Vcommand_line_args /*
2826 Args passed by shell to XEmacs, as a list of strings.
2827 */ );
2828
2829   DEFVAR_LISP ("invocation-name", &Vinvocation_name /*
2830 The program name that was used to run XEmacs.
2831 Any directory names are omitted.
2832 */ );
2833
2834   DEFVAR_LISP ("invocation-directory", &Vinvocation_directory /*
2835 The directory in which the XEmacs executable was found, to run it.
2836 The value is simply the program name if that directory's name is not known.
2837 */ );
2838
2839   DEFVAR_LISP ("invocation-path", &Vinvocation_path /*
2840 The path in which the XEmacs executable was found, to run it.
2841 The value is simply the value of environment variable PATH on startup
2842 if XEmacs was found there.
2843 */ );
2844
2845 #if 0 /* FSFmacs */
2846   xxDEFVAR_LISP ("installation-directory", &Vinstallation_directory,
2847     "A directory within which to look for the `lib-src' and `etc' directories.\n"
2848 "This is non-nil when we can't find those directories in their standard\n"
2849 "installed locations, but we can find them\n"
2850 "near where the XEmacs executable was found.");
2851 #endif
2852
2853   DEFVAR_LISP ("system-type", &Vsystem_type /*
2854 Symbol indicating type of operating system you are using.
2855 */ );
2856   Vsystem_type = intern (SYSTEM_TYPE);
2857   Fprovide (intern(SYSTEM_TYPE));
2858
2859 #ifndef EMACS_CONFIGURATION
2860 # define EMACS_CONFIGURATION "UNKNOWN"
2861 #endif
2862   DEFVAR_LISP ("system-configuration", &Vsystem_configuration /*
2863 String naming the configuration XEmacs was built for.
2864 */ );
2865   Vsystem_configuration = build_string (EMACS_CONFIGURATION);
2866
2867 #ifndef EMACS_CONFIG_OPTIONS
2868 # define EMACS_CONFIG_OPTIONS "UNKNOWN"
2869 #endif
2870   DEFVAR_LISP ("system-configuration-options", &Vsystem_configuration_options /*
2871 String containing the configuration options XEmacs was built with.
2872 */ );
2873   Vsystem_configuration_options = build_string (EMACS_CONFIG_OPTIONS);
2874
2875   DEFVAR_LISP ("emacs-major-version", &Vemacs_major_version /*
2876 Major version number of this version of Emacs, as an integer.
2877 Warning: this variable did not exist in Emacs versions earlier than:
2878   FSF Emacs:   19.23
2879   XEmacs:      19.10
2880 */ );
2881   Vemacs_major_version = make_int (EMACS_MAJOR_VERSION);
2882
2883   DEFVAR_LISP ("emacs-minor-version", &Vemacs_minor_version /*
2884 Minor version number of this version of Emacs, as an integer.
2885 Warning: this variable did not exist in Emacs versions earlier than:
2886   FSF Emacs:   19.23
2887   XEmacs:      19.10
2888 */ );
2889   Vemacs_minor_version = make_int (EMACS_MINOR_VERSION);
2890
2891   DEFVAR_LISP ("emacs-patch-level", &Vemacs_patch_level /*
2892 The patch level of this version of Emacs, as an integer.
2893 The value is non-nil if this version of XEmacs is part of a series of
2894 stable XEmacsen, but has bug fixes applied.
2895 Warning: this variable does not exist in FSF Emacs or in XEmacs versions
2896 earlier than 21.1.1
2897 */ );
2898 #ifdef EMACS_PATCH_LEVEL
2899   Vemacs_patch_level = make_int (EMACS_PATCH_LEVEL);
2900 #else
2901   Vemacs_patch_level = Qnil;
2902 #endif
2903
2904     DEFVAR_LISP ("emacs-beta-version", &Vemacs_beta_version /*
2905 Beta number of this version of Emacs, as an integer.
2906 The value is nil if this is an officially released version of XEmacs.
2907 Warning: this variable does not exist in FSF Emacs or in XEmacs versions
2908 earlier than 20.3.
2909 */ );
2910 #ifdef EMACS_BETA_VERSION
2911   Vemacs_beta_version = make_int (EMACS_BETA_VERSION);
2912 #else
2913   Vemacs_beta_version = Qnil;
2914 #endif
2915
2916 #ifdef INFODOCK
2917   DEFVAR_LISP ("infodock-major-version", &Vinfodock_major_version /*
2918 Major version number of this InfoDock release.
2919 */ );
2920   Vinfodock_major_version = make_int (INFODOCK_MAJOR_VERSION);
2921
2922   DEFVAR_LISP ("infodock-minor-version", &Vinfodock_minor_version /*
2923 Minor version number of this InfoDock release.
2924 */ );
2925   Vinfodock_minor_version = make_int (INFODOCK_MINOR_VERSION);
2926
2927   DEFVAR_LISP ("infodock-build-version", &Vinfodock_build_version /*
2928 Build version of this InfoDock release.
2929 */ );
2930   Vinfodock_build_version = make_int (INFODOCK_BUILD_VERSION);
2931 #endif
2932
2933   DEFVAR_LISP ("xemacs-codename", &Vxemacs_codename /*
2934 Codename of this version of Emacs (a string).
2935 */ );
2936 #ifndef XEMACS_CODENAME
2937 #define XEMACS_CODENAME "Noname"
2938 #endif
2939   Vxemacs_codename = build_string (XEMACS_CODENAME);
2940
2941   DEFVAR_BOOL ("noninteractive", &noninteractive1 /*
2942 Non-nil means XEmacs is running without interactive terminal.
2943 */ );
2944
2945   DEFVAR_BOOL ("inhibit-early-packages", &inhibit_early_packages /*
2946 Set to non-nil when the early packages should not be respected at startup.
2947 */ );
2948
2949   DEFVAR_BOOL ("inhibit-autoloads", &inhibit_autoloads /*
2950 Set to non-nil when autoloads should not be loaded at startup.
2951 */ );
2952
2953   DEFVAR_BOOL ("debug-paths", &debug_paths /*
2954 Set to non-nil when debug information about paths should be printed.
2955 */ );
2956
2957   DEFVAR_BOOL ("inhibit-site-lisp", &inhibit_site_lisp /*
2958 Set to non-nil when the site-lisp should not be searched at startup.
2959 */ );
2960 #ifdef INHIBIT_SITE_LISP
2961   inhibit_site_lisp = 1;
2962 #endif
2963
2964   DEFVAR_BOOL ("inhibit-site-modules", &inhibit_site_modules /*
2965 Set to non-nil when site-modules should not be searched at startup.
2966 */ );
2967 #ifdef INHIBIT_SITE_MODULES
2968   inhibit_site_modules = 1;
2969 #endif
2970
2971   DEFVAR_INT ("emacs-priority", &emacs_priority /*
2972 Priority for XEmacs to run at.
2973 This value is effective only if set before XEmacs is dumped,
2974 and only if the XEmacs executable is installed with setuid to permit
2975 it to change priority.  (XEmacs sets its uid back to the real uid.)
2976 Currently, you need to define SET_EMACS_PRIORITY in `config.h'
2977 before you compile XEmacs, to enable the code for this feature.
2978 */ );
2979   emacs_priority = 0;
2980
2981   DEFVAR_CONST_LISP ("internal-error-checking", &Vinternal_error_checking /*
2982 Internal error checking built-in into this instance of XEmacs.
2983 This is a list of symbols, initialized at build-time.  Legal symbols
2984 are:
2985
2986 extents         - check extents prior to each extent change;
2987 typecheck       - check types strictly, aborting in case of error;
2988 malloc          - check operation of malloc;
2989 gc              - check garbage collection;
2990 bufpos          - check buffer positions.
2991
2992 quick-build     - user has requested the "quick-build" configure option.
2993 */ );
2994   Vinternal_error_checking = Qnil;
2995 #ifdef ERROR_CHECK_EXTENTS
2996   Vinternal_error_checking = Fcons (intern ("extents"),
2997                                     Vinternal_error_checking);
2998 #endif
2999 #ifdef ERROR_CHECK_TYPECHECK
3000   Vinternal_error_checking = Fcons (intern ("typecheck"),
3001                                     Vinternal_error_checking);
3002 #endif
3003 #ifdef ERROR_CHECK_MALLOC
3004   Vinternal_error_checking = Fcons (intern ("malloc"),
3005                                     Vinternal_error_checking);
3006 #endif
3007 #ifdef ERROR_CHECK_GC
3008   Vinternal_error_checking = Fcons (intern ("gc"),
3009                                     Vinternal_error_checking);
3010 #endif
3011 #ifdef ERROR_CHECK_BUFPOS
3012   Vinternal_error_checking = Fcons (intern ("bufpos"),
3013                                     Vinternal_error_checking);
3014 #endif
3015 #ifdef QUICK_BUILD
3016   Vinternal_error_checking = Fcons (intern ("quick-build"),
3017                                     Vinternal_error_checking);
3018 #endif
3019
3020   DEFVAR_CONST_LISP ("mail-lock-methods", &Vmail_lock_methods /*
3021 Mail spool locking methods supported by this instance of XEmacs.
3022 This is a list of symbols.  Each of the symbols is one of the
3023 following: dot, lockf, flock, locking, mmdf.
3024 */ );
3025   {
3026     Vmail_lock_methods = Qnil;
3027     Vmail_lock_methods = Fcons (intern ("dot"), Vmail_lock_methods);
3028 #ifdef HAVE_LOCKF
3029     Vmail_lock_methods = Fcons (intern ("lockf"), Vmail_lock_methods);
3030 #endif
3031 #ifdef HAVE_FLOCK
3032     Vmail_lock_methods = Fcons (intern ("flock"), Vmail_lock_methods);
3033 #endif
3034 #ifdef HAVE_MMDF
3035     Vmail_lock_methods = Fcons (intern ("mmdf"), Vmail_lock_methods);
3036 #endif
3037 #ifdef HAVE_LOCKING
3038     Vmail_lock_methods = Fcons (intern ("locking"), Vmail_lock_methods);
3039 #endif
3040   }
3041
3042   DEFVAR_CONST_LISP ("configure-mail-lock-method", &Vconfigure_mail_lock_method /*
3043 Mail spool locking method suggested by configure.  This is one
3044 of the symbols in MAIL-LOCK-METHODS.
3045 */ );
3046   {
3047 #if defined(MAIL_LOCK_FLOCK) && defined(HAVE_FLOCK)
3048     Vconfigure_mail_lock_method = intern("flock");
3049 #elif defined(MAIL_LOCK_LOCKF) && defined(HAVE_LOCKF)
3050     Vconfigure_mail_lock_method = intern("lockf");
3051 #elif defined(MAIL_LOCK_MMDF) && defined(HAVE_MMDF)
3052     Vconfigure_mail_lock_method = intern("mmdf");
3053 #elif defined(MAIL_LOCK_LOCKING) && defined(HAVE_LOCKING)
3054     Vconfigure_mail_lock_method = intern("locking");
3055 #else
3056     Vconfigure_mail_lock_method = intern("dot");
3057 #endif
3058   }
3059
3060   DEFVAR_LISP ("path-separator", &Vpath_separator /*
3061 The directory separator in search paths, as a string.
3062 */ );
3063   {
3064     char c = SEPCHAR;
3065     Vpath_separator = make_string ((Bufbyte *)&c, 1);
3066   }
3067 }
3068
3069 void
3070 complex_vars_of_emacs (void)
3071 {
3072   /* This is all related to path searching. */
3073
3074   DEFVAR_LISP ("emacs-program-name", &Vemacs_program_name /*
3075 *Name of the Emacs variant.
3076 For example, this may be \"xemacs\" or \"infodock\".
3077 This is mainly meant for use in path searching.
3078 */ );
3079   Vemacs_program_name = build_string ((char *) PATH_PROGNAME);
3080
3081   DEFVAR_LISP ("emacs-program-version", &Vemacs_program_version /*
3082 *Version of the Emacs variant.
3083 This typically has the form XX.XX[-bXX].
3084 This is mainly meant for use in path searching.
3085 */ );
3086   Vemacs_program_version = build_string ((char *) PATH_VERSION);
3087
3088   DEFVAR_LISP ("exec-path", &Vexec_path /*
3089 *List of directories to search programs to run in subprocesses.
3090 Each element is a string (directory name) or nil (try default directory).
3091 */ );
3092   Vexec_path = Qnil;
3093
3094   DEFVAR_LISP ("exec-directory", &Vexec_directory /*
3095 *Directory of architecture-dependent files that come with XEmacs,
3096 especially executable programs intended for XEmacs to invoke.
3097 */ );
3098   Vexec_directory = Qnil;
3099
3100   DEFVAR_LISP ("configure-exec-directory", &Vconfigure_exec_directory /*
3101 For internal use by the build procedure only.
3102 configure's idea of what EXEC-DIRECTORY will be.
3103 */ );
3104 #ifdef PATH_EXEC
3105   Vconfigure_exec_directory = Ffile_name_as_directory
3106     (build_string ((char *) PATH_EXEC));
3107 #else
3108   Vconfigure_exec_directory = Qnil;
3109 #endif
3110
3111   DEFVAR_LISP ("lisp-directory", &Vlisp_directory /*
3112 *Directory of core Lisp files that come with XEmacs.
3113 */ );
3114   Vlisp_directory = Qnil;
3115
3116   DEFVAR_LISP ("configure-lisp-directory", &Vconfigure_lisp_directory /*
3117 For internal use by the build procedure only.
3118 configure's idea of what LISP-DIRECTORY will be.
3119 */ );
3120 #ifdef PATH_LOADSEARCH
3121   Vconfigure_lisp_directory = Ffile_name_as_directory
3122     (build_string ((char *) PATH_LOADSEARCH));
3123 #else
3124   Vconfigure_lisp_directory = Qnil;
3125 #endif
3126
3127   DEFVAR_LISP ("module-directory", &Vmodule_directory /*
3128 *Directory of core dynamic modules that come with XEmacs.
3129 */ );
3130   Vmodule_directory = Qnil;
3131
3132   DEFVAR_LISP ("configure-module-directory", &Vconfigure_module_directory /*
3133 For internal use by the build procedure only.
3134 configure's idea of what MODULE-DIRECTORY will be.
3135 */ );
3136 #ifdef PATH_MODULESEARCH
3137   Vconfigure_module_directory = Ffile_name_as_directory
3138     (build_string ((char *) PATH_MODULESEARCH));
3139 #else
3140   Vconfigure_module_directory = Qnil;
3141 #endif
3142
3143   DEFVAR_LISP ("configure-package-path", &Vconfigure_package_path /*
3144 For internal use by the build procedure only.
3145 configure's idea of what the package path will be.
3146 */ );
3147 #ifdef PATH_PACKAGEPATH
3148   Vconfigure_package_path = decode_path (PATH_PACKAGEPATH);
3149 #else
3150   Vconfigure_package_path = Qnil;
3151 #endif
3152
3153   DEFVAR_LISP ("data-directory", &Vdata_directory /*
3154 *Directory of architecture-independent files that come with XEmacs,
3155 intended for XEmacs to use.
3156 Use of this variable in new code is almost never correct.  See the
3157 functions `locate-data-file' and `locate-data-directory' and the variable
3158 `data-directory-list'.
3159 */ );
3160   Vdata_directory = Qnil;
3161
3162   DEFVAR_LISP ("configure-data-directory", &Vconfigure_data_directory /*
3163 For internal use by the build procedure only.
3164 configure's idea of what DATA-DIRECTORY will be.
3165 */ );
3166 #ifdef PATH_DATA
3167   Vconfigure_data_directory = Ffile_name_as_directory
3168     (build_string ((char *) PATH_DATA));
3169 #else
3170   Vconfigure_data_directory = Qnil;
3171 #endif
3172
3173   DEFVAR_LISP ("data-directory-list", &Vdata_directory_list /*
3174 *List of directories of architecture-independent files that come with XEmacs
3175 or were installed as packages, and are intended for XEmacs to use.
3176 */ );
3177   Vdata_directory_list = Qnil;
3178
3179 #ifdef CLASH_DETECTION
3180   DEFVAR_LISP ("configure-lock-directory", &Vconfigure_lock_directory /*
3181 For internal use by the build procedure only.
3182 configure's idea of what LOCK-DIRECTORY will be.
3183 */ );
3184 #ifdef PATH_LOCK
3185   Vconfigure_lock_directory = Ffile_name_as_directory
3186     (build_string ((char *) PATH_LOCK));
3187 #else
3188   Vconfigure_lock_directory = Qnil;
3189 #endif
3190 #endif /* CLASH_DETECTION */
3191
3192   DEFVAR_LISP ("site-directory", &Vsite_directory /*
3193 *Directory of site-specific Lisp files that come with XEmacs.
3194 */ );
3195   Vsite_directory = Qnil;
3196
3197   DEFVAR_LISP ("configure-site-directory", &Vconfigure_site_directory /*
3198 For internal use by the build procedure only.
3199 configure's idea of what SITE-DIRECTORY will be.
3200 */ );
3201 #ifdef PATH_SITE
3202   Vconfigure_site_directory = Ffile_name_as_directory
3203     (build_string ((char *) PATH_SITE));
3204 #else
3205   Vconfigure_site_directory = Qnil;
3206 #endif
3207
3208   DEFVAR_LISP ("site-module-directory", &Vsite_module_directory /*
3209 *Directory of site-specific loadable modules that come with XEmacs.
3210 */ );
3211   Vsite_module_directory = Qnil;
3212
3213   DEFVAR_LISP ("configure-site-module-directory", &Vconfigure_site_module_directory /*
3214 For internal use by the build procedure only.
3215 configure's idea of what SITE-DIRECTORY will be.
3216 */ );
3217 #ifdef PATH_SITE_MODULES
3218   Vconfigure_site_module_directory = Ffile_name_as_directory
3219     (build_string ((char *) PATH_SITE_MODULES));
3220 #else
3221   Vconfigure_site_module_directory = Qnil;
3222 #endif
3223
3224   DEFVAR_LISP ("doc-directory", &Vdoc_directory /*
3225 *Directory containing the DOC file that comes with XEmacs.
3226 This is usually the same as exec-directory.
3227 */ );
3228   Vdoc_directory = Qnil;
3229
3230   DEFVAR_LISP ("configure-doc-directory", &Vconfigure_doc_directory /*
3231 For internal use by the build procedure only.
3232 configure's idea of what DOC-DIRECTORY will be.
3233 */ );
3234 #ifdef PATH_DOC
3235   Vconfigure_doc_directory = Ffile_name_as_directory
3236     (build_string ((char *) PATH_DOC));
3237 #else
3238   Vconfigure_doc_directory = Qnil;
3239 #endif
3240
3241   DEFVAR_LISP ("configure-exec-prefix-directory", &Vconfigure_exec_prefix_directory /*
3242 For internal use by the build procedure only.
3243 configure's idea of what EXEC-PREFIX-DIRECTORY will be.
3244 */ );
3245 #ifdef PATH_EXEC_PREFIX
3246   Vconfigure_exec_prefix_directory = Ffile_name_as_directory
3247     (build_string ((char *) PATH_EXEC_PREFIX));
3248 #else
3249   Vconfigure_exec_prefix_directory = Qnil;
3250 #endif
3251
3252   DEFVAR_LISP ("configure-prefix-directory", &Vconfigure_prefix_directory /*
3253 For internal use by the build procedure only.
3254 configure's idea of what PREFIX-DIRECTORY will be.
3255 */ );
3256 #ifdef PATH_PREFIX
3257   Vconfigure_prefix_directory = Ffile_name_as_directory
3258     (build_string ((char *) PATH_PREFIX));
3259 #else
3260   Vconfigure_prefix_directory = Qnil;
3261 #endif
3262
3263   DEFVAR_LISP ("configure-info-directory", &Vconfigure_info_directory /*
3264 For internal use by the build procedure only.
3265 This is the name of the directory in which the build procedure installed
3266 Emacs's info files; the default value for Info-default-directory-list
3267 includes this.
3268 */ );
3269 #ifdef PATH_INFO
3270   Vconfigure_info_directory =
3271     Ffile_name_as_directory (build_string (PATH_INFO));
3272 #else
3273   Vconfigure_info_directory = Qnil;
3274 #endif
3275
3276   DEFVAR_LISP ("configure-info-path", &Vconfigure_info_path /*
3277 The configured initial path for info documentation.
3278 */ );
3279 #ifdef PATH_INFOPATH
3280   Vconfigure_info_path = decode_path (PATH_INFOPATH);
3281 #else
3282   Vconfigure_info_path = Qnil;
3283 #endif
3284 }
3285
3286 #if defined(__sgi) && !defined(PDUMP)
3287 /* This is so tremendously ugly I'd puke. But then, it works.
3288  * The target is to override the static constructor from the
3289  * libiflPNG.so library which is maskerading as libz, and
3290  * cores on us when re-started from the dumped executable.
3291  * This will have to go for 21.1  -- OG.
3292  */
3293 void __sti__iflPNGFile_c___(void);
3294 void __sti__iflPNGFile_c___()
3295 {
3296 }
3297
3298 #endif