0
|
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 "sysdep.h"
|
|
39
|
|
40 #include <setjmp.h>
|
|
41 #include "syssignal.h" /* Always include before systty.h */
|
|
42 #include "systty.h"
|
|
43 #include "sysfile.h"
|
|
44 #include "systime.h"
|
|
45
|
14
|
46 #if defined (HAVE_LOCALE_H) && \
|
|
47 (defined (I18N2) || defined (I18N3) || defined (I18N4))
|
0
|
48 #include <locale.h>
|
|
49 #endif
|
|
50
|
|
51 #ifdef TOOLTALK
|
|
52 #include <tt_c.h>
|
|
53 #endif
|
|
54
|
|
55 #ifdef VMS
|
|
56 #include <ssdef.h>
|
|
57 #endif
|
|
58
|
|
59 #ifdef APOLLO
|
|
60 #ifndef APOLLO_SR10
|
|
61 #include <default_acl.h>
|
|
62 #endif
|
|
63 #endif
|
|
64
|
|
65 extern void memory_warnings (void *, void (*warnfun) (CONST char *));
|
|
66
|
|
67 /* Command line args from shell, as list of strings */
|
|
68 Lisp_Object Vcommand_line_args;
|
|
69
|
|
70 /* Set nonzero after XEmacs has started up the first time.
|
|
71 Prevents reinitialization of the Lisp world and keymaps
|
|
72 on subsequent starts. */
|
|
73 int initialized;
|
|
74
|
|
75 /* Variable whose value is symbol giving operating system type. */
|
|
76 Lisp_Object Vsystem_type;
|
|
77
|
|
78 /* Variable whose value is string giving configuration built for. */
|
|
79 Lisp_Object Vsystem_configuration;
|
|
80
|
|
81 /* The name under which XEmacs was invoked, with any leading directory
|
|
82 names discarded. */
|
|
83 Lisp_Object Vinvocation_name;
|
|
84
|
|
85 /* The directory name from which XEmacs was invoked. */
|
|
86 Lisp_Object Vinvocation_directory;
|
|
87
|
|
88 #if 0 /* FSFmacs */
|
|
89 /* The directory name in which to find subdirs such as lisp and etc.
|
|
90 nil means get them only from PATH_LOADSEARCH. */
|
|
91 Lisp_Object Vinstallation_directory;
|
|
92 #endif
|
|
93
|
|
94 /* If nonzero, set XEmacs to run at this priority. This is also used
|
|
95 in child_setup and sys_suspend to make sure subshells run at normal
|
|
96 priority. */
|
|
97 int emacs_priority;
|
|
98
|
|
99 /* If non-zero a filter or a sentinel is running. Tested to save the match
|
|
100 data on the first attempt to change it inside asynchronous code. */
|
|
101 int running_asynch_code;
|
|
102
|
|
103 /* If non-zero, a window-system was specified on the command line. */
|
|
104 int display_arg;
|
|
105
|
|
106 /* Type of display specified. We cannot use a Lisp symbol here because
|
|
107 Lisp symbols may not initialized at the time that we set this
|
|
108 variable. */
|
|
109 CONST char *display_use;
|
|
110
|
|
111 /* If non-zero, then the early error handler will only print the error
|
|
112 message and exit. */
|
|
113 int suppress_early_backtrace;
|
|
114
|
|
115 /* An address near the bottom of the stack.
|
|
116 Tells GC how to save a copy of the stack. */
|
|
117 char *stack_bottom;
|
|
118
|
|
119 #ifdef USG_SHARED_LIBRARIES
|
|
120 /* If nonzero, this is the place to put the end of the writable segment
|
|
121 at startup. */
|
|
122
|
|
123 unsigned int bss_end = 0;
|
|
124 #endif
|
|
125
|
|
126 /* Number of bytes of writable memory we can expect to be able to get */
|
|
127 unsigned int lim_data;
|
|
128
|
|
129 /* Nonzero means running XEmacs without interactive terminal. */
|
|
130
|
|
131 int noninteractive;
|
|
132
|
|
133 /* Value of Lisp variable `noninteractive'.
|
|
134 Normally same as C variable `noninteractive'
|
|
135 but nothing terrible happens if user sets this one. */
|
|
136
|
|
137 int noninteractive1;
|
|
138
|
|
139 /* Save argv and argc. */
|
|
140 char **initial_argv;
|
|
141 int initial_argc;
|
|
142
|
|
143 extern int always_gc; /* hack */
|
|
144
|
|
145 Lisp_Object Qkill_emacs_hook;
|
|
146 Lisp_Object Qsave_buffers_kill_emacs;
|
|
147
|
|
148
|
|
149 /* Signal code for the fatal signal that was received */
|
|
150 static int fatal_error_code;
|
|
151
|
|
152 /* Nonzero if handling a fatal error already */
|
|
153 static int fatal_error_in_progress;
|
|
154
|
|
155 static void shut_down_emacs (int sig, Lisp_Object stuff);
|
|
156
|
|
157 /* Handle bus errors, illegal instruction, etc. */
|
|
158 SIGTYPE
|
|
159 fatal_error_signal (int sig)
|
|
160 {
|
|
161 fatal_error_code = sig;
|
|
162 signal (sig, SIG_DFL);
|
|
163 /* Unblock the signal so that if the same signal gets sent in the
|
|
164 code below, we avoid a deadlock. */
|
|
165 EMACS_UNBLOCK_SIGNAL (fatal_error_code);
|
|
166
|
|
167 /* If fatal error occurs in code below, avoid infinite recursion. */
|
|
168 if (! fatal_error_in_progress)
|
|
169 {
|
|
170 fatal_error_in_progress = 1;
|
|
171 shut_down_emacs (sig, Qnil);
|
|
172 stderr_out("\nLisp backtrace follows:\n\n");
|
|
173 Fbacktrace(Qexternal_debugging_output, Qt);
|
|
174
|
|
175 /* Check for Sun-style stack printing via /proc */
|
|
176 {
|
2
|
177 CONST char *pstack = "/usr/proc/bin/pstack";
|
0
|
178 if (access(pstack, X_OK) == 0)
|
|
179 {
|
|
180 char buf[100];
|
|
181 stderr_out("\nC backtrace follows:\n"
|
|
182 "(A real debugger may provide better information)\n\n");
|
|
183 sprintf(buf, "%s %d >&2", pstack, (int)getpid());
|
|
184 system(buf);
|
|
185 }
|
|
186 }
|
|
187 }
|
|
188 #ifdef VMS
|
|
189 LIB$STOP (SS$_ABORT);
|
|
190 #else
|
|
191 /* Signal the same code; this time it will really be fatal. */
|
|
192 kill (getpid (), fatal_error_code);
|
|
193 #endif /* not VMS */
|
|
194 SIGRETURN;
|
|
195 }
|
|
196
|
|
197
|
|
198 DOESNT_RETURN
|
|
199 fatal (CONST char *fmt, ...)
|
|
200 {
|
|
201 va_list args;
|
|
202 va_start (args, fmt);
|
|
203
|
|
204 fprintf (stderr, "\nXEmacs: ");
|
|
205 vfprintf (stderr, GETTEXT (fmt), args);
|
|
206 fprintf (stderr, "\n");
|
|
207
|
|
208 va_end (args);
|
|
209 fflush (stderr);
|
|
210 exit (1);
|
|
211 }
|
|
212
|
|
213 /* #### The following two functions should be replaced with
|
|
214 calls to emacs_doprnt_*() functions, with STREAM set to send out
|
|
215 to stdout or stderr. This is the only way to ensure that
|
|
216 I18N3 works properly (many implementations of the *printf()
|
|
217 functions, including the ones included in glibc, do not implement
|
|
218 the %###$ argument-positioning syntax). */
|
|
219
|
|
220 /* exactly equivalent to fprintf (stderr, fmt, ...) except that it calls
|
|
221 GETTEXT on the format string. */
|
|
222
|
|
223 int
|
|
224 stderr_out (CONST char *fmt, ...)
|
|
225 {
|
|
226 int retval;
|
|
227 va_list args;
|
|
228 va_start (args, fmt);
|
|
229
|
|
230 retval = vfprintf (stderr, GETTEXT (fmt), args);
|
|
231
|
|
232 va_end (args);
|
|
233 /* fflush (stderr); */
|
|
234 return retval;
|
|
235 }
|
|
236
|
|
237 /* exactly equivalent to fprintf (stdout, fmt, ...) except that it calls
|
|
238 GETTEXT on the format string. */
|
|
239
|
|
240 int
|
|
241 stdout_out (CONST char *fmt, ...)
|
|
242 {
|
|
243 int retval;
|
|
244 va_list args;
|
|
245 va_start (args, fmt);
|
|
246
|
|
247 retval = vfprintf (stdout, GETTEXT (fmt), args);
|
|
248
|
|
249 va_end (args);
|
|
250 return retval;
|
|
251 }
|
|
252
|
|
253 #ifdef SIGDANGER
|
|
254
|
|
255 /* Handler for SIGDANGER. */
|
|
256 SIGTYPE
|
|
257 memory_warning_signal (int sig)
|
|
258 {
|
|
259 /* #### bad bad bad; this function shouldn't do anything except
|
|
260 set a flag, or weird corruption could happen. */
|
|
261 signal (sig, memory_warning_signal);
|
|
262
|
|
263 malloc_warning
|
|
264 (GETTEXT ("Operating system warns that virtual memory is running low.\n"));
|
|
265
|
|
266 /* It might be unsafe to call do_auto_save now. */
|
|
267 force_auto_save_soon ();
|
|
268 }
|
14
|
269 #endif /* SIGDANGER */
|
0
|
270
|
|
271 /* Code for dealing with Lisp access to the Unix command line */
|
|
272
|
|
273 static Lisp_Object
|
|
274 make_arg_list_1 (int argc, char **argv, int skip_args)
|
|
275 {
|
|
276 Lisp_Object result = Qnil;
|
|
277 REGISTER int i;
|
|
278
|
|
279 for (i = argc - 1; i >= 0; i--)
|
|
280 {
|
|
281 if (i == 0 || i > skip_args)
|
|
282 result = Fcons (build_ext_string (argv [i], FORMAT_OS), result);
|
|
283 }
|
|
284 return result;
|
|
285 }
|
|
286
|
|
287 Lisp_Object
|
|
288 make_arg_list (int argc, char **argv)
|
|
289 {
|
|
290 return make_arg_list_1 (argc, argv, 0);
|
|
291 }
|
|
292
|
|
293 /* Calling functions are also responsible for calling free_argc_argv
|
|
294 when they are done with the generated list. */
|
|
295 void
|
|
296 make_argc_argv (Lisp_Object argv_list, int *argc, char ***argv)
|
|
297 {
|
|
298 Lisp_Object next;
|
|
299 int n = XINT (Flength (argv_list));
|
|
300 REGISTER int i;
|
|
301 *argv = (char**) xmalloc ((n+1) * sizeof (char*));
|
|
302
|
|
303 for (i = 0, next = argv_list; i < n; i++, next = XCDR (next))
|
|
304 {
|
|
305 CONST char *temp;
|
|
306 CHECK_STRING (XCAR (next));
|
|
307
|
|
308 GET_C_STRING_EXT_DATA_ALLOCA (XCAR (next), FORMAT_OS, temp);
|
|
309 (*argv) [i] = xstrdup (temp);
|
|
310 }
|
|
311 (*argv) [n] = 0;
|
|
312 *argc = i;
|
|
313 }
|
|
314
|
|
315 void
|
|
316 free_argc_argv (char **argv)
|
|
317 {
|
|
318 int elt = 0;
|
|
319
|
|
320 while (argv[elt])
|
|
321 {
|
|
322 xfree (argv[elt]);
|
|
323 elt++;
|
|
324 }
|
|
325 xfree (argv);
|
|
326 }
|
|
327
|
|
328 static void
|
|
329 init_cmdargs (int argc, char **argv, int skip_args)
|
|
330 {
|
|
331 initial_argv = argv;
|
|
332 initial_argc = argc;
|
|
333
|
|
334 Vcommand_line_args = make_arg_list_1 (argc, argv, skip_args);
|
|
335 }
|
|
336
|
|
337 DEFUN ("invocation-name", Finvocation_name, Sinvocation_name, 0, 0, 0 /*
|
|
338 Return the program name that was used to run XEmacs.
|
|
339 Any directory names are omitted.
|
|
340 */ )
|
|
341 ()
|
|
342 {
|
|
343 return Fcopy_sequence (Vinvocation_name);
|
|
344 }
|
|
345
|
|
346
|
|
347 #ifdef I18N4
|
|
348 /* #### - don't know why I18N4 on SunOS/JLE
|
|
349 can't deal with this. It's a potential
|
|
350 bug that needs to be looked at. */
|
|
351 # undef RUN_TIME_REMAP
|
|
352 #endif
|
|
353
|
|
354 static DOESNT_RETURN
|
|
355 main_1 (int argc, char **argv, char **envp)
|
|
356 {
|
|
357 char stack_bottom_variable;
|
|
358 int skip_args = 0;
|
|
359 Lisp_Object load_me;
|
|
360 int inhibit_window_system;
|
|
361
|
|
362 #ifdef NeXT
|
|
363 extern int malloc_cookie;
|
|
364
|
|
365 /* 19-Jun-1995 -baw
|
|
366 * NeXT secret magic, ripped from Emacs-for-NS by Carl Edman
|
14
|
367 * <cedman@princeton.edu>. Note that even Carl doesn't know what this
|
0
|
368 * does; it was provided by NeXT, and it presumable makes NS's mallocator
|
|
369 * work with dumping. But malloc_jumpstart() and malloc_freezedry() in
|
|
370 * unexnext.c are both completely undocumented, even in NS header files!
|
|
371 * But hey, it solves all NS related memory problems, so who's
|
|
372 * complaining?
|
|
373 */
|
|
374 if (initialized)
|
|
375 if (malloc_jumpstart (malloc_cookie) != 0)
|
|
376 printf ("malloc jumpstart failed!\n");
|
|
377 #endif /* NeXT */
|
|
378
|
|
379 #if defined (GNU_MALLOC) && defined (ERROR_CHECK_MALLOC)
|
|
380 #if 0
|
|
381 if (!initialized)
|
|
382 init_free_hook ();
|
|
383 #endif
|
|
384 #endif
|
|
385
|
|
386 /* Map in shared memory, if we are using that. */
|
|
387 #ifdef HAVE_SHM
|
|
388 if (argc > 1 && !strcmp (argv[1], "-nl"))
|
|
389 {
|
|
390 map_in_data (0);
|
|
391 /* The shared memory was just restored, which clobbered this. */
|
|
392 skip_args = 1;
|
|
393 }
|
|
394 else
|
|
395 {
|
|
396 map_in_data (1);
|
|
397 /* The shared memory was just restored, which clobbered this. */
|
|
398 skip_args = 0;
|
|
399 }
|
|
400 #endif
|
|
401
|
|
402 #ifdef VMS
|
|
403 /* If -map specified, map the data file in */
|
|
404 if (argc > 2 && ! strcmp (argv[1], "-map"))
|
|
405 {
|
|
406 skip_args = 2;
|
|
407 mapin_data (argv[2]);
|
|
408 }
|
|
409
|
|
410 #ifdef LINK_CRTL_SHARE
|
|
411 #ifdef SHAREABLE_LIB_BUG
|
|
412 /* Bletcherous shared libraries! */
|
14
|
413 if (!stdin) stdin = fdopen (0, "r");
|
|
414 if (!stdout) stdout = fdopen (1, "w");
|
|
415 if (!stderr) stderr = fdopen (2, "w");
|
|
416 if (!environ) environ = envp;
|
0
|
417 #endif /* SHAREABLE_LIB_BUG */
|
|
418 #endif /* LINK_CRTL_SHARE */
|
|
419 #endif /* VMS */
|
|
420 #if (defined (MSDOS) && defined (EMX)) || defined (WIN32) || defined (_SCO_DS)
|
|
421 environ = envp;
|
|
422 #endif
|
|
423
|
|
424 /* Record (approximately) where the stack begins. */
|
|
425 stack_bottom = &stack_bottom_variable;
|
|
426
|
|
427 #ifdef RUN_TIME_REMAP
|
|
428 if (initialized)
|
|
429 run_time_remap (argv[0]);
|
|
430 #endif
|
|
431
|
|
432 #ifdef USG_SHARED_LIBRARIES
|
|
433 if (bss_end)
|
|
434 brk ((void *) bss_end);
|
|
435 #endif
|
|
436
|
|
437 clearerr (stdin);
|
|
438
|
|
439 #ifdef APOLLO
|
|
440 #ifndef APOLLO_SR10
|
|
441 /* If USE_DOMAIN_ACLS environment variable exists,
|
|
442 use ACLs rather than UNIX modes. */
|
|
443 if (egetenv ("USE_DOMAIN_ACLS"))
|
|
444 default_acl (USE_DEFACL);
|
|
445 #endif
|
|
446 #endif /* APOLLO */
|
|
447
|
|
448 #if defined (HAVE_MMAP) && defined (REL_ALLOC)
|
|
449 /* ralloc can only be used if using the GNU memory allocator. */
|
|
450 init_ralloc ();
|
|
451 #endif
|
|
452
|
|
453 #ifdef HAVE_SOCKS
|
|
454 if (initialized)
|
|
455 SOCKSinit (argv[0]);
|
|
456 #endif /* HAVE_SOCKS */
|
|
457
|
|
458 #ifndef SYSTEM_MALLOC
|
|
459
|
|
460 if (!initialized)
|
|
461 {
|
|
462 /* Arrange to get warning messages as memory fills up. */
|
|
463 memory_warnings (0, malloc_warning);
|
|
464 }
|
|
465 #endif /* not SYSTEM_MALLOC */
|
|
466
|
|
467 #ifdef MSDOS
|
|
468 /* We do all file input/output as binary files. When we need to translate
|
|
469 newlines, we do that manually. */
|
|
470 _fmode = O_BINARY;
|
|
471 (stdin)->_flag &= ~_IOTEXT;
|
|
472 (stdout)->_flag &= ~_IOTEXT;
|
|
473 (stderr)->_flag &= ~_IOTEXT;
|
|
474 #endif /* MSDOS */
|
|
475
|
|
476 #ifdef SET_EMACS_PRIORITY
|
|
477 if (emacs_priority != 0)
|
|
478 nice (-emacs_priority);
|
|
479 setuid (getuid ());
|
|
480 #endif /* SET_EMACS_PRIORITY */
|
|
481
|
|
482 #ifdef EXTRA_INITIALIZE
|
|
483 EXTRA_INITIALIZE;
|
|
484 #endif
|
|
485
|
|
486 #ifdef HAVE_WINDOW_SYSTEM
|
|
487 inhibit_window_system = 0;
|
|
488 #else
|
|
489 inhibit_window_system = 1;
|
|
490 #endif
|
|
491
|
|
492 /* Handle the -t switch, which specifies filename to use as terminal */
|
|
493 if (skip_args + 2 < argc && !strcmp (argv[skip_args + 1], "-t"))
|
|
494 {
|
|
495 int result;
|
|
496
|
|
497 skip_args += 2;
|
|
498 close (0);
|
|
499 close (1);
|
|
500 result = open (argv[skip_args], O_RDWR, 2 );
|
|
501 if (result < 0)
|
|
502 {
|
|
503 fatal ("%s: %s", argv[skip_args], strerror (errno));
|
|
504 }
|
|
505 dup (0);
|
|
506 if (! isatty (0))
|
|
507 fatal ("%s: not a tty", argv[skip_args]);
|
|
508
|
|
509 stderr_out ("Using %s", ttyname (0));
|
|
510 #if 0
|
|
511 stderr_out ("Using %s", argv[skip_args]);
|
|
512 #endif
|
|
513 inhibit_window_system = 1; /* -t => -nw */
|
|
514 }
|
|
515
|
|
516 if (skip_args + 1 < argc
|
|
517 && (!strcmp (argv[skip_args + 1], "-nw")))
|
|
518 {
|
|
519 skip_args += 1;
|
|
520 inhibit_window_system = 1;
|
|
521 }
|
|
522
|
|
523 /* Handle the -batch switch, which means don't do interactive display. */
|
|
524 noninteractive = 0;
|
|
525 if (skip_args + 1 < argc &&
|
|
526 (!strcmp (argv[skip_args + 1], "-batch") ||
|
|
527 !strcmp (argv[skip_args + 1], "--batch")))
|
|
528 {
|
|
529 skip_args += 1;
|
|
530 noninteractive = 1;
|
|
531 }
|
|
532
|
|
533 /* Partially handle the -version and -help switches: they imply -batch,
|
|
534 but are not removed from the list.
|
|
535 */
|
|
536 if (skip_args + 1 < argc &&
|
|
537 (!strcmp (argv[skip_args + 1], "-version") ||
|
|
538 !strcmp (argv[skip_args + 1], "--version") ||
|
|
539 !strcmp (argv[skip_args + 1], "-help") ||
|
|
540 !strcmp (argv[skip_args + 1], "--help")))
|
|
541 noninteractive = 1;
|
|
542
|
|
543 /* Now, figure out which type of console is our first console. */
|
|
544
|
|
545 display_arg = 0;
|
|
546
|
|
547 if (noninteractive)
|
|
548 display_use = "stream";
|
|
549 else
|
|
550 display_use = "tty";
|
|
551
|
|
552 #ifndef HAVE_TTY
|
|
553 if (inhibit_window_system)
|
|
554 fatal ("Sorry, this XEmacs was not compiled with TTY support");
|
|
555 #endif
|
|
556
|
|
557 #ifdef HAVE_WINDOW_SYSTEM
|
|
558 /* Stupid kludge to catch command-line display spec. We can't
|
|
559 handle this argument entirely in window system dependent code
|
|
560 because we don't even know which window system dependent code
|
|
561 to run until we've recognized this argument. */
|
|
562 if (!inhibit_window_system && !noninteractive)
|
|
563 {
|
|
564 int i;
|
|
565 char *disp;
|
|
566
|
|
567 for (i = 1; (i < argc && !display_arg); i++)
|
|
568 {
|
|
569 #ifdef HAVE_X_WINDOWS
|
|
570 if (!strcmp (argv[i], "-d") || !strcmp (argv[i], "-display"))
|
|
571 {
|
|
572 display_arg = 1;
|
|
573 display_use = "x";
|
|
574 }
|
|
575 #endif /* HAVE_X_WINDOWS */
|
|
576 #ifdef HAVE_NEXTSTEP
|
|
577 if (!strcmp (argv[i], "-NXHost") || !strcmp (argv[i], "-MachLaunch"))
|
|
578 {
|
|
579 display_arg = 1;
|
|
580 display_use = "ns";
|
|
581 }
|
|
582 #endif /* HAVE_NEXTSTEP */
|
|
583 }
|
|
584
|
|
585 #ifdef HAVE_X_WINDOWS
|
|
586 disp = getenv ("DISPLAY");
|
|
587
|
|
588 /* null string doesn't count as a display */
|
|
589 if (disp && disp[0])
|
|
590 display_use = "x";
|
|
591
|
|
592 /* Do not set display_arg here. It is only to be set if the display
|
|
593 was specified on the command line. */
|
|
594 #endif
|
|
595 }
|
|
596 #endif /* HAVE_WINDOW_SYSTEM */
|
|
597
|
|
598 noninteractive1 = noninteractive;
|
|
599
|
|
600 /****** Now initialize everything *******/
|
|
601
|
|
602 /* First, do really basic environment initialization -- catching signals
|
|
603 and the like. These functions have no dependence on any part of
|
|
604 the Lisp engine and need to be done both at dump time and at run time. */
|
|
605
|
|
606 init_signals_very_early ();
|
|
607 init_data_very_early (); /* Catch math errors. */
|
|
608 #ifdef LISP_FLOAT_TYPE
|
|
609 init_floatfns_very_early (); /* Catch floating-point math errors. */
|
|
610 #endif
|
|
611 init_process_times_very_early (); /* Initialize our process timers.
|
|
612 As early as possible, of course,
|
|
613 so we can be fairly accurate. */
|
|
614 init_intl_very_early (); /* set up the locale and domain for gettext and
|
|
615 such. */
|
|
616
|
|
617 /* Now initialize the Lisp engine and the like. Done only during
|
|
618 dumping. No dependence on anything that may be in the user's
|
|
619 environment when the dumped XEmacs is run.
|
|
620
|
|
621 We try to do things in an order that minimizes the non-obvious
|
|
622 dependencies between functions. */
|
|
623
|
|
624 if (!initialized)
|
|
625 {
|
|
626 /* Initialize things so that new Lisp objects
|
|
627 can be created and objects can be staticpro'd.
|
|
628 Must be basically the very first thing done
|
|
629 because pretty much all of the initialization
|
|
630 routines below create new objects. */
|
|
631 init_alloc_once_early ();
|
|
632
|
|
633 /* Initialize Qnil, Qt, Qunbound, and the
|
|
634 obarray. After this, symbols can be
|
|
635 interned. This depends on init_alloc_once(). */
|
|
636 init_symbols_once_early ();
|
|
637
|
|
638 /* Declare the basic symbols pertaining to errors,
|
|
639 So that deferror() can be called. */
|
|
640 init_errors_once_early ();
|
|
641
|
|
642 /* Make sure that opaque pointers can be created. */
|
|
643 init_opaque_once_early ();
|
|
644
|
|
645 /* Now declare all the symbols and define all the Lisp primitives.
|
|
646
|
|
647 The *only* thing that the syms_of_*() functions are allowed to do
|
|
648 is call one of the following three functions:
|
|
649
|
|
650 defsymbol()
|
|
651 defsubr()
|
|
652 deferror()
|
|
653 defkeyword()
|
|
654
|
|
655 Order does not matter in these functions.
|
|
656 */
|
|
657
|
|
658 syms_of_abbrev ();
|
|
659 syms_of_alloc ();
|
|
660 syms_of_buffer ();
|
|
661 syms_of_bytecode ();
|
|
662 syms_of_callint ();
|
|
663 syms_of_callproc ();
|
|
664 syms_of_casefiddle ();
|
|
665 syms_of_casetab ();
|
|
666 syms_of_cmdloop ();
|
|
667 syms_of_cmds ();
|
|
668 syms_of_console ();
|
|
669 syms_of_data ();
|
|
670 #ifdef DEBUG_XEMACS
|
|
671 syms_of_debug ();
|
|
672 #endif /* DEBUG_XEMACS */
|
|
673 syms_of_device ();
|
|
674 #ifdef HAVE_DIALOGS
|
|
675 syms_of_dialog ();
|
|
676 #endif
|
|
677 syms_of_dired ();
|
|
678 syms_of_doc ();
|
|
679 syms_of_editfns ();
|
|
680 syms_of_elhash ();
|
|
681 syms_of_emacs ();
|
|
682 syms_of_eval ();
|
|
683 syms_of_event_stream ();
|
|
684 syms_of_events ();
|
|
685 syms_of_extents ();
|
|
686 syms_of_faces ();
|
|
687 syms_of_fileio ();
|
|
688 #ifdef CLASH_DETECTION
|
|
689 syms_of_filelock ();
|
|
690 #endif /* CLASH_DETECTION */
|
|
691 syms_of_floatfns ();
|
|
692 syms_of_fns ();
|
|
693 syms_of_font_lock ();
|
|
694 syms_of_frame ();
|
|
695 syms_of_general ();
|
|
696 syms_of_glyphs ();
|
|
697 #if defined (HAVE_MENUBARS) || defined (HAVE_SCROLLBARS) || defined (HAVE_DIALOGS) || defined (HAVE_TOOLBARS)
|
|
698 syms_of_gui ();
|
|
699 #endif
|
|
700 syms_of_indent ();
|
|
701 syms_of_intl ();
|
|
702 syms_of_keymap ();
|
|
703 syms_of_lread ();
|
|
704 syms_of_macros ();
|
|
705 syms_of_marker ();
|
|
706 syms_of_md5 ();
|
|
707 #ifdef HAVE_DATABASE
|
|
708 syms_of_dbm ();
|
|
709 #endif
|
|
710 #ifdef HAVE_MENUBARS
|
|
711 syms_of_menubar ();
|
|
712 #endif
|
|
713 syms_of_minibuf ();
|
|
714 #ifdef MOCKLISP_SUPPORT
|
|
715 syms_of_mocklisp ();
|
|
716 #endif
|
|
717 syms_of_objects ();
|
|
718 syms_of_print ();
|
|
719 #if !defined (NO_SUBPROCESSES)
|
|
720 syms_of_process ();
|
|
721 #endif
|
|
722 syms_of_profile ();
|
|
723 #if defined (HAVE_MMAP) && defined (REL_ALLOC)
|
|
724 syms_of_ralloc ();
|
|
725 #endif /* HAVE_MMAP && REL_ALLOC */
|
|
726 syms_of_rangetab ();
|
|
727 syms_of_redisplay ();
|
|
728 syms_of_search ();
|
|
729 syms_of_signal ();
|
|
730 syms_of_sound ();
|
|
731 syms_of_specifier ();
|
|
732 syms_of_symbols ();
|
|
733 syms_of_syntax ();
|
|
734 #ifdef HAVE_SCROLLBARS
|
|
735 syms_of_scrollbar ();
|
|
736 #endif
|
|
737 #ifdef HAVE_TOOLBARS
|
|
738 syms_of_toolbar ();
|
|
739 #endif
|
|
740 syms_of_undo ();
|
|
741 syms_of_window ();
|
|
742 #ifdef HAVE_TTY
|
|
743 syms_of_console_tty ();
|
|
744 syms_of_device_tty ();
|
|
745 syms_of_objects_tty ();
|
|
746 #endif
|
|
747 #ifdef HAVE_X_WINDOWS
|
|
748 syms_of_device_x ();
|
|
749 #ifdef HAVE_DIALOGS
|
|
750 syms_of_dialog_x ();
|
|
751 #endif
|
|
752 syms_of_event_Xt ();
|
|
753 syms_of_frame_x ();
|
|
754 syms_of_glyphs_x ();
|
|
755 syms_of_objects_x ();
|
|
756 #ifdef HAVE_MENUBARS
|
|
757 syms_of_menubar_x ();
|
|
758 #endif
|
|
759 syms_of_xselect ();
|
|
760 #ifdef EPOCH
|
|
761 syms_of_epoch ();
|
|
762 #endif
|
|
763 #if defined (HAVE_MENUBARS) || defined (HAVE_SCROLLBARS) || defined (HAVE_DIALOGS) || defined (HAVE_TOOLBARS)
|
|
764 syms_of_gui_x ();
|
|
765 #endif
|
|
766 #endif /* HAVE_X_WINDOWS */
|
|
767
|
|
768 #ifdef HAVE_NEXTSTEP
|
|
769 syms_of_device_ns ();
|
|
770 syms_of_frame_ns ();
|
|
771 syms_of_glyphs_ns ();
|
|
772 syms_of_objects_ns ();
|
|
773 #ifdef HAVE_MENUBARS
|
|
774 syms_of_menubar_ns ();
|
|
775 #endif
|
|
776 syms_of_nsselect ();
|
|
777 #ifdef HAVE_SCROLLBARS
|
|
778 syms_of_scrollbar_ns ();
|
|
779 #endif
|
|
780 #endif /* HAVE_NEXTSTEP */
|
|
781
|
|
782 #ifdef SYMS_SYSTEM
|
|
783 SYMS_SYSTEM;
|
|
784 #endif
|
|
785
|
|
786 #ifdef SYMS_MACHINE
|
|
787 SYMS_MACHINE;
|
|
788 #endif
|
|
789
|
|
790 #ifdef EMACS_BTL
|
|
791 syms_of_btl ();
|
|
792 #endif
|
|
793
|
|
794 #ifdef ENERGIZE
|
|
795 syms_of_energize ();
|
|
796 #endif
|
|
797
|
|
798 #if defined (GNU_MALLOC) && defined (ERROR_CHECK_MALLOC)
|
|
799 #if 0
|
|
800 syms_of_free_hook ();
|
|
801 #endif
|
|
802 #endif
|
|
803
|
|
804 #ifdef TOOLTALK
|
|
805 syms_of_tooltalk ();
|
|
806 #endif
|
|
807
|
|
808 #ifdef SUNPRO
|
|
809 syms_of_sunpro ();
|
|
810 #endif
|
|
811
|
|
812 /* Now create the subtypes for the types that have them.
|
|
813 We do this before the vars_*() because more symbols
|
|
814 may get initialized here. */
|
|
815
|
|
816 /* Now initialize the console types and associated symbols.
|
|
817 Other than the first function below, the functions may
|
|
818 make exactly the following function/macro calls:
|
|
819
|
|
820 INITIALIZE_CONSOLE_TYPE()
|
|
821 CONSOLE_HAS_METHOD()
|
|
822
|
|
823 For any given console type, the former macro must be called
|
|
824 before the any calls to the latter macro. */
|
|
825
|
|
826 console_type_create ();
|
|
827
|
|
828 console_type_create_stream ();
|
|
829
|
|
830 #ifdef HAVE_TTY
|
|
831 console_type_create_tty ();
|
|
832 console_type_create_device_tty ();
|
|
833 console_type_create_frame_tty ();
|
|
834 console_type_create_objects_tty ();
|
|
835 console_type_create_redisplay_tty ();
|
|
836 #endif
|
|
837
|
|
838 #ifdef HAVE_X_WINDOWS
|
|
839 console_type_create_x ();
|
|
840 console_type_create_device_x ();
|
|
841 console_type_create_frame_x ();
|
|
842 console_type_create_glyphs_x ();
|
|
843 #ifdef HAVE_MENUBARS
|
|
844 console_type_create_menubar_x ();
|
|
845 #endif
|
|
846 console_type_create_objects_x ();
|
|
847 console_type_create_redisplay_x ();
|
|
848 #ifdef HAVE_SCROLLBARS
|
|
849 console_type_create_scrollbar_x ();
|
|
850 #endif
|
|
851 #ifdef HAVE_TOOLBARS
|
|
852 console_type_create_toolbar_x ();
|
|
853 #endif
|
|
854 #endif /* HAVE_X_WINDOWS */
|
|
855
|
|
856 /* Now initialize the specifier types and associated symbols.
|
|
857 Other than the first function below, the functions may
|
|
858 make exactly the following function/macro calls:
|
|
859
|
|
860 INITIALIZE_SPECIFIER_TYPE()
|
|
861 SPECIFIER_HAS_METHOD()
|
|
862
|
|
863 For any given specifier type, the former macro must be called
|
|
864 before the any calls to the latter macro. */
|
|
865
|
|
866 specifier_type_create ();
|
|
867
|
|
868 specifier_type_create_image ();
|
|
869 specifier_type_create_objects ();
|
|
870 #ifdef HAVE_TOOLBARS
|
|
871 specifier_type_create_toolbar ();
|
|
872 #endif
|
|
873
|
|
874 /* Now initialize the structure types and associated symbols.
|
|
875 Other than the first function below, the functions may
|
|
876 make exactly the following function/macro calls:
|
|
877
|
|
878 define_structure_type()
|
|
879 define_structure_type_keyword()
|
|
880
|
|
881 */
|
|
882
|
|
883 structure_type_create ();
|
|
884
|
|
885 structure_type_create_faces ();
|
|
886 structure_type_create_rangetab ();
|
|
887
|
|
888 /* Now initialize the image instantiator formats and associated symbols.
|
|
889 Other than the first function below, the functions may
|
|
890 make exactly the following function/macro calls:
|
|
891
|
|
892 INITIALIZE_IMAGE_INSTANTIATOR_FORMAT()
|
|
893 IIFORMAT_HAS_METHOD()
|
|
894 IIFORMAT_VALID_KEYWORD()
|
|
895
|
|
896 For any given image instantiator format, the first macro must be
|
|
897 called before the any calls to the other macros. */
|
|
898
|
|
899 image_instantiator_format_create ();
|
|
900 #ifdef HAVE_X_WINDOWS
|
|
901 image_instantiator_format_create_glyphs_x ();
|
|
902 #endif /* HAVE_X_WINDOWS */
|
|
903
|
|
904 /* Now initialize the lstream types and associated symbols.
|
|
905 Other than the first function below, the functions may
|
|
906 make exactly the following function/macro calls:
|
|
907
|
|
908 LSTREAM_HAS_METHOD()
|
|
909
|
|
910 */
|
|
911
|
|
912 lstream_type_create ();
|
|
913 lstream_type_create_print ();
|
|
914
|
|
915 /* Now initialize most variables.
|
|
916
|
|
917 These functions may do exactly the following:
|
|
918
|
|
919 DEFVAR_INT()
|
|
920 DEFVAR_LISP()
|
|
921 DEFVAR_BOOL()
|
|
922 DEFER_GETTEXT()
|
|
923 Dynarr_*()
|
|
924 Blocktype_*()
|
|
925 staticpro()
|
|
926 Fprovide(symbol)
|
|
927 intern()
|
|
928 pure_put()
|
|
929 xmalloc()
|
|
930 defsymbol(), if it's absolutely necessary and you're sure that
|
|
931 the symbol isn't referenced anywhere else in the initialization
|
|
932 code
|
|
933 Fset() on a symbol that is unbound
|
|
934 assigning a symbol or constant value to a variable
|
|
935 using a global variable that has been initialized
|
|
936 earlier on in the same function
|
|
937
|
|
938 Any of the object-creating functions on alloc.c: e.g.
|
|
939
|
|
940 make_pure_*()
|
|
941 Fpurecopy()
|
|
942 make_string()
|
|
943 build_string()
|
|
944 make_vector()
|
|
945 make_int()
|
|
946 make_extent()
|
|
947 alloc_lcrecord()
|
|
948 Fcons()
|
|
949 listN()
|
|
950 make_opaque_ptr()
|
|
951 make_opaque_long()
|
|
952
|
|
953 perhaps a few others.
|
|
954 */
|
|
955
|
|
956 /* Now allow Fprovide() statements to be made. */
|
|
957 init_provide_once ();
|
|
958
|
|
959 vars_of_abbrev ();
|
|
960 vars_of_alloc ();
|
|
961 vars_of_buffer ();
|
|
962 vars_of_bytecode ();
|
|
963 vars_of_callint ();
|
|
964 vars_of_callproc ();
|
|
965 vars_of_cmdloop ();
|
|
966 vars_of_cmds ();
|
|
967 vars_of_console ();
|
|
968 vars_of_data ();
|
|
969 #ifdef DEBUG_XEMACS
|
|
970 vars_of_debug ();
|
|
971 #endif
|
|
972 vars_of_console_stream ();
|
|
973 vars_of_device ();
|
|
974 #ifdef HAVE_DIALOGS
|
|
975 vars_of_dialog ();
|
|
976 #endif
|
|
977 vars_of_dired ();
|
|
978 vars_of_doc ();
|
|
979 vars_of_editfns ();
|
|
980 vars_of_elhash ();
|
|
981 vars_of_emacs ();
|
|
982 vars_of_eval ();
|
|
983 vars_of_event_stream ();
|
|
984 vars_of_events ();
|
|
985 vars_of_extents ();
|
|
986 vars_of_faces ();
|
|
987 vars_of_fileio ();
|
|
988 #ifdef CLASH_DETECTION
|
|
989 vars_of_filelock ();
|
|
990 #endif
|
|
991 vars_of_floatfns ();
|
|
992 vars_of_font_lock ();
|
|
993 vars_of_frame ();
|
|
994 vars_of_glyphs ();
|
|
995 #if defined (HAVE_MENUBARS) || defined (HAVE_SCROLLBARS) || defined (HAVE_DIALOGS) || defined (HAVE_TOOLBARS)
|
|
996 vars_of_gui ();
|
|
997 #endif
|
|
998 vars_of_indent ();
|
|
999 vars_of_insdel ();
|
|
1000 vars_of_intl ();
|
|
1001 vars_of_keymap ();
|
|
1002 vars_of_lread ();
|
|
1003 vars_of_lstream ();
|
|
1004 vars_of_macros ();
|
|
1005 vars_of_md5 ();
|
|
1006 #ifdef HAVE_DATABASE
|
|
1007 vars_of_dbm ();
|
|
1008 #endif
|
|
1009 #ifdef HAVE_MENUBARS
|
|
1010 vars_of_menubar ();
|
|
1011 #endif
|
|
1012 vars_of_minibuf ();
|
|
1013 #ifdef MOCKLISP_SUPPORT
|
|
1014 vars_of_mocklisp ();
|
|
1015 #endif
|
|
1016 vars_of_objects ();
|
|
1017 vars_of_print ();
|
|
1018 #ifndef NO_SUBPROCESSES
|
|
1019 vars_of_process ();
|
|
1020 #endif
|
|
1021 vars_of_profile ();
|
|
1022 #if defined (HAVE_MMAP) && defined (REL_ALLOC)
|
|
1023 vars_of_ralloc ();
|
|
1024 #endif /* HAVE_MMAP && REL_ALLOC */
|
|
1025 vars_of_redisplay ();
|
|
1026 #ifdef HAVE_SCROLLBARS
|
|
1027 vars_of_scrollbar ();
|
|
1028 #endif
|
|
1029 vars_of_search ();
|
|
1030 vars_of_sound ();
|
|
1031 vars_of_specifier ();
|
|
1032 vars_of_symbols ();
|
|
1033 vars_of_syntax ();
|
|
1034 #ifdef HAVE_TOOLBARS
|
|
1035 vars_of_toolbar ();
|
|
1036 #endif
|
|
1037 vars_of_undo ();
|
|
1038 vars_of_window ();
|
|
1039
|
|
1040 #ifdef HAVE_TTY
|
|
1041 vars_of_console_tty ();
|
|
1042 vars_of_event_tty ();
|
|
1043 vars_of_frame_tty ();
|
|
1044 vars_of_objects_tty ();
|
|
1045 #endif
|
|
1046
|
|
1047 #ifdef HAVE_X_WINDOWS
|
|
1048 vars_of_device_x ();
|
|
1049 #ifdef HAVE_DIALOGS
|
|
1050 vars_of_dialog_x ();
|
|
1051 #endif
|
|
1052 vars_of_event_Xt ();
|
|
1053 vars_of_frame_x ();
|
|
1054 vars_of_glyphs_x ();
|
|
1055 #ifdef HAVE_MENUBARS
|
|
1056 vars_of_menubar_x ();
|
|
1057 #endif
|
|
1058 vars_of_objects_x ();
|
|
1059 vars_of_xselect ();
|
|
1060 #ifdef EPOCH
|
|
1061 vars_of_epoch ();
|
|
1062 #endif
|
|
1063 #ifdef HAVE_SCROLLBARS
|
|
1064 vars_of_scrollbar_x ();
|
|
1065 #endif
|
|
1066 #if defined (HAVE_MENUBARS) || defined (HAVE_SCROLLBARS) || defined (HAVE_DIALOGS) || defined (HAVE_TOOLBARS)
|
|
1067 vars_of_gui_x ();
|
|
1068 #endif
|
|
1069 #endif
|
|
1070
|
|
1071 #ifdef ENERGIZE
|
|
1072 vars_of_energize ();
|
|
1073 #endif
|
|
1074
|
|
1075 #ifdef TOOLTALK
|
|
1076 vars_of_tooltalk ();
|
|
1077 #endif
|
|
1078
|
|
1079 #ifdef SUNPRO
|
|
1080 vars_of_sunpro ();
|
|
1081 #endif
|
|
1082
|
|
1083 /* Now initialize any specifier variables. We do this later
|
|
1084 because it has some dependence on the vars initialized
|
|
1085 above.
|
|
1086
|
|
1087 These functions should *only* initialize specifier variables,
|
|
1088 and may make use of the following functions/macros in addition
|
|
1089 to the ones listed above:
|
|
1090
|
|
1091 DEFVAR_SPECIFIER()
|
|
1092 Fmake_specifier()
|
|
1093 set_specifier_fallback()
|
|
1094 set_specifier_caching()
|
|
1095 */
|
|
1096
|
|
1097 specifier_vars_of_glyphs ();
|
|
1098 #ifdef HAVE_MENUBARS
|
|
1099 specifier_vars_of_menubar ();
|
|
1100 #endif
|
|
1101 specifier_vars_of_redisplay ();
|
|
1102 #ifdef HAVE_SCROLLBARS
|
|
1103 specifier_vars_of_scrollbar ();
|
|
1104 #endif
|
|
1105 #ifdef HAVE_TOOLBARS
|
|
1106 specifier_vars_of_toolbar ();
|
|
1107 #endif
|
|
1108 specifier_vars_of_window ();
|
|
1109
|
|
1110 /* Now comes all the rest of the variables that couldn't
|
|
1111 be handled above. There may be dependencies on variables
|
|
1112 initialized above, and dependencies between one complex_vars_()
|
|
1113 function and another. */
|
|
1114
|
|
1115 /* Calls Fmake_range_table(). */
|
|
1116 complex_vars_of_regex ();
|
|
1117 /* Calls Fmake_range_table(). */
|
|
1118 complex_vars_of_search ();
|
|
1119
|
|
1120 /* Calls Fmake_hashtable(). */
|
|
1121 complex_vars_of_event_stream ();
|
|
1122 /* Calls make_lisp_hashtable(). */
|
|
1123 complex_vars_of_extents ();
|
|
1124
|
|
1125 /* Depends on hashtables and specifiers. */
|
|
1126 complex_vars_of_faces ();
|
|
1127
|
|
1128 /* This calls allocate_glyph(), which creates specifiers
|
|
1129 and also relies on a variable (Vthe_nothing_vector) initialized
|
|
1130 above. */
|
|
1131 complex_vars_of_glyphs ();
|
|
1132
|
|
1133 /* This relies on the glyphs just created in the previous function,
|
|
1134 and calls Fadd_spec_to_specifier(), which relies on various
|
|
1135 variables initialized above. */
|
|
1136 #ifdef HAVE_X_WINDOWS
|
|
1137 complex_vars_of_glyphs_x ();
|
|
1138 #endif
|
|
1139
|
|
1140 /* This calls Fmake_glyph_internal(). */
|
|
1141 complex_vars_of_alloc ();
|
|
1142
|
|
1143 /* This calls Fmake_glyph_internal(). */
|
|
1144 #ifdef HAVE_MENUBARS
|
|
1145 complex_vars_of_menubar ();
|
|
1146 #endif
|
|
1147
|
|
1148 /* This calls Fmake_glyph_internal(). */
|
|
1149 #ifdef HAVE_SCROLLBARS
|
|
1150 complex_vars_of_scrollbar ();
|
|
1151 #endif
|
|
1152
|
|
1153 /* This calls allocate_glyph(). */
|
|
1154 complex_vars_of_frame ();
|
|
1155
|
|
1156 /* Depends on hashtables. */
|
|
1157 #ifdef ENERGIZE
|
|
1158 complex_vars_of_energize ();
|
|
1159 #endif
|
|
1160
|
|
1161 /* This calls set_string_char(), which (under Mule) depends on the
|
|
1162 charsets being initialized. */
|
|
1163 complex_vars_of_casetab ();
|
|
1164
|
|
1165 /* This calls Fcopy_syntax_table(), which relies on char tables. */
|
|
1166 complex_vars_of_syntax ();
|
|
1167
|
|
1168 /* This initializes buffer-local variables, sets things up so
|
|
1169 that buffers can be created, and creates a couple of basic
|
|
1170 buffers. This depends on Vstandard_syntax_table and
|
|
1171 Vstandard_category_table (initialized in the previous
|
|
1172 functions), as well as a whole horde of variables that may
|
|
1173 have been initialized above. */
|
|
1174 complex_vars_of_buffer ();
|
|
1175
|
|
1176 /* This initializes console-local variables. */
|
|
1177 complex_vars_of_console ();
|
|
1178
|
|
1179 /* This creates a couple more buffers, and depends on the
|
|
1180 previous function. */
|
|
1181 complex_vars_of_minibuf ();
|
|
1182
|
|
1183 /* These two might call Ffile_name_as_directory(), which
|
|
1184 might depend on all sorts of things; I'm not sure. */
|
|
1185 complex_vars_of_callproc ();
|
|
1186 #ifdef CLASH_DETECTION
|
|
1187 complex_vars_of_filelock ();
|
|
1188 #endif /* CLASH_DETECTION */
|
|
1189
|
|
1190 /* This creates a couple of basic keymaps and depends on Lisp
|
|
1191 hashtables and Ffset() (both of which depend on some variables
|
|
1192 initialized in the vars_of_*() section) and possibly other
|
|
1193 stuff. */
|
|
1194 complex_vars_of_keymap ();
|
|
1195
|
|
1196 if (always_gc) /* purification debugging hack */
|
|
1197 garbage_collect_1 ();
|
|
1198 }
|
|
1199
|
|
1200 /* CONGRATULATIONS!!! We have successfully initialized the Lisp
|
|
1201 engine. */
|
|
1202
|
|
1203 if (initialized)
|
|
1204 {
|
|
1205 /* Stuff that needs to be reset at run time. Order below should
|
|
1206 not matter. */
|
|
1207 reinit_alloc ();
|
|
1208 reinit_eval ();
|
|
1209 }
|
|
1210
|
|
1211 /* Now do further initialization/setup of stuff that is not needed by the
|
|
1212 syms_of_() routines. This involves stuff that only is enabled in
|
|
1213 an interactive run (redisplay, user input, etc.) and stuff that is
|
|
1214 not needed until we start loading Lisp code (the reader). A lot
|
|
1215 of this stuff involves querying the current environment and needs
|
|
1216 to be done both at dump time and at run time. */
|
|
1217
|
|
1218 init_callproc (); /* Set up the process environment (so that egetenv
|
|
1219 works), the basic directory variables
|
|
1220 (exec-directory and so on), and stuff
|
|
1221 related to subprocesses. This should be
|
|
1222 first because many of the functions below
|
|
1223 call egetenv() to get environment variables. */
|
|
1224 init_lread (); /* Set up the Lisp reader. */
|
|
1225 #ifdef MSDOS
|
|
1226 /* Call early 'cause init_environment needs it. */
|
|
1227 init_dosfns ();
|
|
1228 /* Set defaults for several environment variables. */
|
|
1229 init_environment (argc, argv, skip_args);
|
|
1230 #endif
|
|
1231 init_cmdargs (argc, argv, skip_args); /* Create list Vcommand_line_args */
|
|
1232 init_buffer (); /* Init default directory of *scratch* buffer */
|
|
1233 #ifdef VMS
|
|
1234 init_vms_input (); /* init_redisplay calls get_tty_device_size,
|
|
1235 that needs this */
|
|
1236 #endif /* VMS */
|
|
1237 init_redisplay (); /* Determine terminal type.
|
|
1238 init_sys_modes uses results */
|
|
1239 #ifdef VMS
|
|
1240 init_vmsproc ();
|
|
1241 init_vmsfns ();
|
|
1242 #endif /* VMS */
|
|
1243 init_event_stream (); /* Set up so we can get user input. */
|
|
1244 init_macros (); /* set up so we can run macros. */
|
|
1245 init_editfns (); /* Determine the name of the user we're running as */
|
|
1246 init_xemacs_process (); /* set up for calling subprocesses */
|
|
1247 #ifdef SUNPRO
|
|
1248 init_sunpro (); /* Set up Sunpro usage tracking */
|
|
1249 #endif
|
|
1250 #if defined (HAVE_NATIVE_SOUND) && defined (hp9000s800)
|
|
1251 init_hpplay ();
|
|
1252 #endif
|
|
1253 #ifdef HAVE_TTY
|
|
1254 init_device_tty ();
|
|
1255 #endif
|
|
1256 #ifdef HAVE_GIF
|
|
1257 init_gif_err ();
|
|
1258 #endif
|
|
1259 init_console_stream (); /* Create the first console */
|
|
1260
|
|
1261 /* try to get the actually pathname of the exec file we are running */
|
|
1262 {
|
|
1263 Vinvocation_name = Fcar (Vcommand_line_args);
|
|
1264 Vinvocation_directory = Vinvocation_name;
|
|
1265
|
|
1266 if (!NILP (Ffile_name_directory (Vinvocation_name)))
|
|
1267 /* invocation-name includes a directory component -- presumably it
|
|
1268 is relative to cwd, not $PATH */
|
|
1269 Vinvocation_directory = Fexpand_file_name (Vinvocation_name,
|
|
1270 Qnil);
|
|
1271 else
|
|
1272 locate_file (Vexec_path, Vinvocation_name, EXEC_SUFFIXES,
|
|
1273 &Vinvocation_directory, X_OK);
|
|
1274
|
|
1275 if (NILP (Vinvocation_directory))
|
|
1276 Vinvocation_directory = Vinvocation_name;
|
|
1277
|
|
1278 Vinvocation_name = Ffile_name_nondirectory (Vinvocation_directory);
|
|
1279 Vinvocation_directory = Ffile_name_directory (Vinvocation_directory);
|
|
1280 }
|
|
1281
|
|
1282 #if defined (LOCALTIME_CACHE) && defined (HAVE_TZSET)
|
|
1283 /* sun's localtime() has a bug. it caches the value of the time
|
|
1284 zone rather than looking it up every time. Since localtime() is
|
|
1285 called to bolt the undumping time into the undumped emacs, this
|
|
1286 results in localtime() ignoring the TZ environment variable.
|
|
1287 This flushes the new TZ value into localtime(). */
|
|
1288 tzset ();
|
|
1289 #endif /* LOCALTIME_CACHE and TZSET */
|
|
1290
|
|
1291 load_me = Qnil;
|
|
1292 if (!initialized)
|
|
1293 {
|
|
1294 /* Handle -l loadup-and-dump, args passed by Makefile. */
|
|
1295 if (argc > 2 + skip_args && !strcmp (argv[1 + skip_args], "-l"))
|
|
1296 load_me = build_string (argv[2 + skip_args]);
|
|
1297 #ifdef CANNOT_DUMP
|
|
1298 /* Unless next switch is -nl, load "loadup.el" first thing. */
|
|
1299 if (!(argc > 1 + skip_args && !strcmp (argv[1 + skip_args], "-nl")))
|
|
1300 load_me = build_string ("loadup.el");
|
|
1301 #endif /* CANNOT_DUMP */
|
|
1302 }
|
|
1303
|
|
1304 #ifdef QUANTIFY
|
|
1305 if (initialized)
|
|
1306 quantify_start_recording_data ();
|
|
1307 #endif /* QUANTIFY */
|
|
1308
|
|
1309 initialized = 1;
|
|
1310
|
|
1311 /* This never returns. */
|
|
1312 initial_command_loop (load_me);
|
|
1313 /* NOTREACHED */
|
|
1314 }
|
|
1315
|
|
1316 static JMP_BUF run_temacs_catch;
|
|
1317
|
|
1318 static int run_temacs_argc;
|
|
1319 static char **run_temacs_argv;
|
|
1320 static char *run_temacs_args;
|
|
1321 static int run_temacs_argv_size;
|
|
1322 static int run_temacs_args_size;
|
|
1323
|
|
1324 extern int gc_in_progress;
|
|
1325
|
|
1326 DEFUN ("running-temacs-p",
|
|
1327 Frunning_temacs_p, Srunning_temacs_p, 0, 0, 0 /*
|
|
1328 True if running temacs. This means we are in the dumping stage.
|
|
1329 This is false during normal execution of the `xemacs' program, and
|
|
1330 becomes false once `run-emacs-from-temacs' is run.
|
|
1331 */ )
|
|
1332 ()
|
|
1333 {
|
|
1334 return run_temacs_argc >= 0 ? Qt : Qnil;
|
|
1335 }
|
|
1336
|
|
1337 DEFUN ("run-emacs-from-temacs",
|
|
1338 Frun_emacs_from_temacs, Srun_emacs_from_temacs, 0, MANY, 0 /*
|
|
1339 Do not call this. It will reinitialize your XEmacs. You'll be sorry.
|
|
1340 */ )
|
|
1341 /* If this function is called from startup.el, it will be possible to run
|
|
1342 temacs as an editor using 'temacs -batch -l loadup.el run-temacs', instead
|
|
1343 of having to dump an emacs and then run that (when debugging emacs itself,
|
|
1344 this can be much faster). [Actually, the speed difference isn't that
|
|
1345 much as long as your filesystem is local, and you don't end up with
|
|
1346 a dumped version in case you want to rerun it. This function is most
|
|
1347 useful when used as part of the `make all-elc' command. --ben]
|
|
1348 This will \"restart\" emacs with the specified command-line arguments.
|
|
1349 */
|
|
1350 (nargs, args)
|
|
1351 int nargs;
|
|
1352 Lisp_Object *args;
|
|
1353 {
|
|
1354 int ac;
|
|
1355 Extbyte *wampum;
|
|
1356 int namesize;
|
|
1357 int total_len;
|
|
1358 Lisp_Object orig_invoc_name = Fcar (Vcommand_line_args);
|
|
1359 Extbyte **wampum_all = (Extbyte **) alloca (nargs * sizeof (Extbyte *));
|
|
1360 int *wampum_all_len = (int *) alloca (nargs * sizeof (int));
|
|
1361
|
|
1362 assert (!gc_in_progress);
|
|
1363
|
|
1364 if (run_temacs_argc < 0)
|
|
1365 error ("I've lost my temacs-hood.");
|
|
1366
|
|
1367 /* Need to convert the orig_invoc_name and all of the arguments
|
|
1368 to external format. */
|
|
1369
|
|
1370 GET_STRING_EXT_DATA_ALLOCA (orig_invoc_name, FORMAT_OS, wampum,
|
|
1371 namesize);
|
|
1372 namesize++;
|
|
1373
|
|
1374 for (ac = 0, total_len = namesize; ac < nargs; ac++)
|
|
1375 {
|
|
1376 CHECK_STRING (args[ac]);
|
|
1377 GET_STRING_EXT_DATA_ALLOCA (args[ac], FORMAT_OS,
|
|
1378 wampum_all[ac],
|
|
1379 wampum_all_len[ac]);
|
|
1380 wampum_all_len[ac]++;
|
|
1381 total_len += wampum_all_len[ac];
|
|
1382 }
|
|
1383 DO_REALLOC (run_temacs_args, run_temacs_args_size, total_len, char);
|
|
1384 DO_REALLOC (run_temacs_argv, run_temacs_argv_size, nargs+1, char *);
|
|
1385
|
|
1386 memcpy (run_temacs_args, wampum, namesize);
|
|
1387 run_temacs_argv [0] = run_temacs_args;
|
|
1388 for (ac = 0; ac < nargs; ac++)
|
|
1389 {
|
|
1390 memcpy (run_temacs_args + namesize,
|
|
1391 wampum_all[ac], wampum_all_len[ac]);
|
|
1392 run_temacs_argv [ac + 1] = run_temacs_args + namesize;
|
|
1393 namesize += wampum_all_len[ac];
|
|
1394 }
|
|
1395 run_temacs_argv [nargs + 1] = 0;
|
|
1396 catchlist = NULL; /* Important! Otherwise free_cons() calls in
|
|
1397 condition_case_unwind() may lead to GC death. */
|
|
1398 unbind_to (0, Qnil); /* this closes loadup.el */
|
|
1399 purify_flag = 0;
|
|
1400 run_temacs_argc = nargs + 1;
|
|
1401 report_pure_usage (1, 0);
|
|
1402 LONGJMP (run_temacs_catch, 1);
|
|
1403 return Qnil; /* not reached; warning suppression */
|
|
1404 }
|
|
1405
|
|
1406 /* ARGSUSED */
|
|
1407 DOESNT_RETURN
|
|
1408 main (int argc, char **argv, char **envp)
|
|
1409 {
|
|
1410 #ifdef QUANTIFY
|
|
1411 quantify_stop_recording_data ();
|
|
1412 quantify_clear_data ();
|
|
1413 #endif /* QUANTIFY */
|
|
1414
|
|
1415 suppress_early_backtrace = 0;
|
|
1416 lim_data = 0; /* force reinitialization of this variable */
|
|
1417
|
|
1418 if (sizeof (Lisp_Object) != sizeof (void *))
|
|
1419 abort (); /* Lisp_Object must fit in a word;
|
|
1420 check VALBITS and GCTYPEBITS */
|
|
1421 if (!initialized)
|
|
1422 {
|
|
1423 run_temacs_argc = 0;
|
|
1424 if (! SETJMP (run_temacs_catch))
|
|
1425 main_1 (argc, argv, envp);
|
|
1426 /* run-emacs-from-temacs called */
|
|
1427 argc = run_temacs_argc;
|
|
1428 run_temacs_argc = 0;
|
|
1429 argv = run_temacs_argv;
|
|
1430 #ifdef _SCO_DS
|
|
1431 /*
|
|
1432 This makes absolutely no sense to anyone involved.
|
|
1433 There are several people using this stuff. We've
|
|
1434 compared versions on everything we can think of. We
|
|
1435 can find no difference. However, on both my systems
|
|
1436 environ is a plain old global variable initialized to
|
|
1437 zero. _environ is the one that contains pointers to
|
|
1438 the actual environment.
|
|
1439 Since we can't figure out the difference (and we're
|
|
1440 hours away from a release), this takes a very cowardly
|
|
1441 approach and is bracketed with both a system specific
|
|
1442 preprocessor test and a runtime "do you have this
|
|
1443 problem" test
|
|
1444 06/20/96 robertl@dgii.com
|
|
1445 */
|
|
1446 {
|
|
1447 extern char *_environ ;
|
|
1448 if ((unsigned) environ == 0)
|
|
1449 environ=_environ;
|
|
1450 }
|
|
1451 #endif
|
|
1452 envp = environ;
|
|
1453 }
|
|
1454 run_temacs_argc = -1;
|
|
1455
|
|
1456 main_1 (argc, argv, envp);
|
|
1457 }
|
|
1458
|
|
1459
|
|
1460 DEFUN ("kill-emacs", Fkill_emacs, Skill_emacs, 0, 1, "P" /*
|
|
1461 Exit the XEmacs job and kill it. Ask for confirmation, without argument.
|
|
1462 If ARG is an integer, return ARG as the exit program code.
|
|
1463 If ARG is a string, stuff it as keyboard input.
|
|
1464
|
|
1465 The value of `kill-emacs-hook', if not void,
|
|
1466 is a list of functions (of no args),
|
|
1467 all of which are called before XEmacs is actually killed.
|
|
1468 */ )
|
|
1469 (arg)
|
|
1470 Lisp_Object arg;
|
|
1471 {
|
|
1472 /* This function can GC */
|
|
1473 struct gcpro gcpro1;
|
|
1474
|
|
1475 GCPRO1 (arg);
|
|
1476
|
|
1477 if (feof (stdin))
|
|
1478 arg = Qt;
|
|
1479
|
|
1480 if (!preparing_for_armageddon && !noninteractive)
|
|
1481 run_hook (Qkill_emacs_hook);
|
|
1482
|
|
1483 /* make sure no quitting from now on!! */
|
|
1484 dont_check_for_quit = 1;
|
|
1485 Vinhibit_quit = Qt;
|
|
1486
|
|
1487 if (!preparing_for_armageddon)
|
|
1488 {
|
|
1489 Lisp_Object concons;
|
|
1490
|
|
1491 /* Normally, go ahead and delete all the consoles now.
|
|
1492 Some unmentionably lame window systems (MS Wwwww...... eek,
|
|
1493 I can't even say it) don't properly clean up after themselves,
|
|
1494 and even for those that do, it might be cleaner this way.
|
|
1495 If we're going down, however, we don't do this (might
|
|
1496 be too dangerous), and if we get a crash somewhere within
|
|
1497 this loop, we'll still autosave and won't try this again. */
|
|
1498 CONSOLE_LOOP (concons)
|
|
1499 delete_console_internal (XCONSOLE (XCAR (concons)), 1, 1, 0);
|
|
1500 }
|
|
1501
|
|
1502 UNGCPRO;
|
|
1503
|
|
1504 shut_down_emacs (0, ((STRINGP (arg)) ? arg : Qnil));
|
|
1505
|
|
1506 exit ((INTP (arg)) ? XINT (arg)
|
|
1507 #ifdef VMS
|
|
1508 : 1
|
|
1509 #else
|
|
1510 : 0
|
|
1511 #endif
|
|
1512 );
|
|
1513 /* NOTREACHED */
|
|
1514 return Qnil; /* I'm sick of the compiler warning */
|
|
1515 }
|
|
1516
|
|
1517 /* Perform an orderly shutdown of XEmacs. Autosave any modified
|
|
1518 buffers, kill any child processes, clean up the terminal modes (if
|
|
1519 we're in the foreground), and other stuff like that. Don't perform
|
|
1520 any redisplay; this may be called when XEmacs is shutting down in
|
|
1521 the background, or after its X connection has died.
|
|
1522
|
|
1523 If SIG is a signal number, print a message for it.
|
|
1524
|
|
1525 This is called by fatal signal handlers, X protocol error handlers,
|
|
1526 and Fkill_emacs. */
|
|
1527 static void
|
|
1528 shut_down_emacs (int sig, Lisp_Object stuff)
|
|
1529 {
|
|
1530 /* This function can GC */
|
|
1531 /* Prevent running of hooks and other non-essential stuff
|
|
1532 from now on. */
|
|
1533 preparing_for_armageddon = 1;
|
|
1534
|
|
1535 /* In case frames or windows are screwed up, avoid assertion
|
|
1536 failures here */
|
|
1537 Vinhibit_quit = Qt;
|
|
1538
|
|
1539 #ifdef QUANTIFY
|
|
1540 quantify_stop_recording_data ();
|
|
1541 #endif /* QUANTIFY */
|
|
1542
|
|
1543 /* This is absolutely the most important thing to do, so make sure
|
|
1544 we do it now, before anything else. We might have crashed and
|
|
1545 be in a weird inconsistent state, and potentially anything could
|
|
1546 set off another protection fault and cause us to bail out
|
|
1547 immediately. */
|
|
1548 Fdo_auto_save (Qt, Qnil); /* do this before anything hazardous */
|
|
1549
|
|
1550 fflush (stdout);
|
|
1551 reset_all_consoles ();
|
|
1552 if (sig && sig != SIGTERM)
|
|
1553 {
|
|
1554 stderr_out ("\nFatal error (%d).\n", sig);
|
|
1555 stderr_out
|
|
1556 ("Your files have been auto-saved.\n"
|
|
1557 "Use `M-x recover-session' to recover them.\n"
|
|
1558 "\n"
|
|
1559 "Please report this bug to the address `crashes@xemacs.org'.\n"
|
2
|
1560 "*MAKE SURE* to include as much configuration information as\n"
|
|
1561 "possible; at the very least what OS and hardware you are running\n"
|
|
1562 "on, and hopefully also what compiler and compiler options the\n"
|
|
1563 "binary was compiled with, what options XEmacs was compiled with,\n"
|
|
1564 "whether you are using a prebuilt binary from ftp.xemacs.org or\n"
|
|
1565 "compiled XEmacs yourself for your system, etc.\n"
|
|
1566 "\n"
|
0
|
1567 "If at all possible, *please* try to obtain a C stack backtrace;\n"
|
|
1568 "it will help us immensely in determining what went wrong.\n"
|
|
1569 "To do this, locate the core file that was produced as a result\n"
|
|
1570 "of this crash (it's usually called `core' and is located in the\n"
|
|
1571 "directory in which you started XEmacs, or maybe in your home\n"
|
|
1572 "directory), and type\n"
|
|
1573 "\n"
|
|
1574 " gdb ");
|
|
1575 {
|
2
|
1576 CONST char *name;
|
0
|
1577 char *dir = 0;
|
|
1578
|
|
1579 /* Now try to determine the actual path to the executable,
|
|
1580 to try to make the backtrace-determination process as foolproof
|
|
1581 as possible. */
|
|
1582 if (GC_STRINGP (Vinvocation_name))
|
14
|
1583 name = (char *) XSTRING_DATA (Vinvocation_name);
|
0
|
1584 else
|
|
1585 name = "xemacs";
|
|
1586 if (GC_STRINGP (Vinvocation_directory))
|
14
|
1587 dir = (char *) XSTRING_DATA (Vinvocation_directory);
|
0
|
1588 if (!dir || dir[0] != '/')
|
|
1589 stderr_out ("`which %s`", name);
|
|
1590 else if (dir[strlen (dir) - 1] != '/')
|
|
1591 stderr_out ("%s/%s", dir, name);
|
|
1592 else
|
|
1593 stderr_out ("%s%s", dir, name);
|
|
1594 }
|
|
1595 stderr_out
|
|
1596 (" core\n\n"
|
|
1597 "then type `where' when the debugger prompt comes up.\n"
|
|
1598 "(If you don't have GDB on your system, you might have DBX,\n"
|
|
1599 "or XDB, or SDB. A similar procedure should work for all of\n"
|
|
1600 "these. Ask your system administrator if you need more help.)\n");
|
|
1601 }
|
|
1602
|
|
1603 stuff_buffered_input (stuff);
|
|
1604
|
|
1605 kill_buffer_processes (Qnil);
|
|
1606
|
|
1607 #ifdef CLASH_DETECTION
|
|
1608 unlock_all_files ();
|
|
1609 #endif
|
|
1610
|
|
1611 #ifdef TOOLTALK
|
|
1612 tt_session_quit (tt_default_session ());
|
2
|
1613 #if 0
|
|
1614 /* The following crashes when built on X11R5 and run on X11R6 */
|
0
|
1615 tt_close ();
|
|
1616 #endif
|
2
|
1617 #endif /* TOOLTALK */
|
0
|
1618
|
|
1619 #ifdef VMS
|
|
1620 kill_vms_processes ();
|
|
1621 #endif
|
|
1622 }
|
|
1623
|
|
1624
|
|
1625 #ifndef CANNOT_DUMP
|
|
1626 /* Nothing like this can be implemented on an Apollo.
|
|
1627 What a loss! */
|
|
1628
|
2
|
1629 extern char my_edata[];
|
0
|
1630
|
|
1631 #ifdef HAVE_SHM
|
|
1632
|
|
1633 DEFUN ("dump-emacs-data", Fdump_emacs_data, Sdump_emacs_data, 1, 1, 0 /*
|
|
1634 Dump current state of XEmacs into data file FILENAME.
|
|
1635 This function exists on systems that use HAVE_SHM.
|
|
1636 */ )
|
|
1637 (intoname)
|
|
1638 Lisp_Object intoname;
|
|
1639 {
|
|
1640 /* This function can GC */
|
|
1641 int opurify;
|
|
1642 struct gcpro gcpro1;
|
|
1643 GCPRO1 (intoname);
|
|
1644
|
|
1645 CHECK_STRING (intoname);
|
|
1646 intoname = Fexpand_file_name (intoname, Qnil);
|
|
1647
|
|
1648 opurify = purify_flag;
|
|
1649 purify_flag = 0;
|
|
1650
|
|
1651 fflush (stderr);
|
|
1652 fflush (stdout);
|
|
1653
|
|
1654 disksave_object_finalization ();
|
|
1655 release_breathing_space ();
|
|
1656
|
|
1657 /* Tell malloc where start of impure now is */
|
|
1658 /* Also arrange for warnings when nearly out of space. */
|
|
1659 #ifndef SYSTEM_MALLOC
|
|
1660 memory_warnings (&my_edata, malloc_warning);
|
|
1661 #endif
|
|
1662 UNGCPRO;
|
14
|
1663 map_out_data (XSTRING_DATA (intoname));
|
0
|
1664
|
|
1665 purify_flag = opurify;
|
|
1666
|
|
1667 return Qnil;
|
|
1668 }
|
|
1669
|
|
1670 #else /* not HAVE_SHM */
|
|
1671
|
|
1672 DEFUN ("dump-emacs", Fdump_emacs, Sdump_emacs, 2, 2, 0 /*
|
|
1673 Dump current state of XEmacs into executable file FILENAME.
|
|
1674 Take symbols from SYMFILE (presumably the file you executed to run XEmacs).
|
|
1675 This is used in the file `loadup.el' when building XEmacs.
|
|
1676
|
|
1677 Remember to set `command-line-processed' to nil before dumping
|
|
1678 if you want the dumped XEmacs to process its command line
|
|
1679 and announce itself normally when it is run.
|
|
1680 */ )
|
|
1681 (intoname, symname)
|
|
1682 Lisp_Object intoname, symname;
|
|
1683 {
|
|
1684 /* This function can GC */
|
|
1685 struct gcpro gcpro1, gcpro2;
|
|
1686 int opurify;
|
|
1687
|
|
1688 GCPRO2 (intoname, symname);
|
|
1689
|
|
1690 #ifdef FREE_CHECKING
|
|
1691 Freally_free (Qnil);
|
|
1692
|
|
1693 /* When we're dumping, we can't use the debugging free() */
|
|
1694
|
|
1695 disable_free_hook ();
|
|
1696 #endif
|
|
1697
|
|
1698 CHECK_STRING (intoname);
|
|
1699 intoname = Fexpand_file_name (intoname, Qnil);
|
|
1700 if (!NILP (symname))
|
|
1701 {
|
|
1702 CHECK_STRING (symname);
|
14
|
1703 if (XSTRING_LENGTH (symname) > 0)
|
0
|
1704 symname = Fexpand_file_name (symname, Qnil);
|
|
1705 else
|
|
1706 symname = Qnil;
|
|
1707 }
|
|
1708
|
|
1709 opurify = purify_flag;
|
|
1710 purify_flag = 0;
|
|
1711
|
|
1712 report_pure_usage (1, 1);
|
|
1713
|
|
1714 fflush (stderr);
|
|
1715 fflush (stdout);
|
|
1716
|
|
1717 disksave_object_finalization ();
|
|
1718 release_breathing_space ();
|
|
1719
|
|
1720 #ifdef VMS
|
14
|
1721 mapout_data (XSTRING_DATA (intoname));
|
0
|
1722 #else
|
|
1723 /* Tell malloc where start of impure now is */
|
|
1724 /* Also arrange for warnings when nearly out of space. */
|
|
1725 #ifndef SYSTEM_MALLOC
|
|
1726 memory_warnings (&my_edata, malloc_warning);
|
|
1727 #endif
|
|
1728
|
|
1729 UNGCPRO;
|
|
1730
|
|
1731 #if defined (MSDOS) && defined (EMX)
|
|
1732 {
|
14
|
1733 int fd = open ((char *) XSTRING_DATA (intoname),
|
0
|
1734 O_WRONLY|O_CREAT|O_TRUNC, S_IREAD|S_IWRITE);
|
|
1735 if (!fd) {
|
14
|
1736 error ("Failure operating on %s", XSTRING_DATA (intoname));
|
0
|
1737 } else {
|
|
1738 _core (fd);
|
|
1739 close (fd);
|
|
1740 }
|
|
1741 }
|
|
1742 #else /* not MSDOS and EMX */
|
|
1743 {
|
|
1744 CONST char *intoname_ext;
|
|
1745 CONST char *symname_ext;
|
|
1746
|
|
1747 GET_C_STRING_FILENAME_DATA_ALLOCA (intoname, intoname_ext);
|
|
1748 if (STRINGP (symname))
|
|
1749 GET_C_STRING_FILENAME_DATA_ALLOCA (symname, symname_ext);
|
|
1750 else
|
|
1751 symname_ext = 0;
|
|
1752 /* here we break our rule that the filename conversion should
|
|
1753 be performed at the actual time that the system call is made.
|
|
1754 It's a whole lot easier to do the conversion here than to
|
|
1755 modify all the unexec routines to ensure that filename
|
|
1756 conversion is applied everywhere. Don't worry about memory
|
|
1757 leakage because this call only happens once. */
|
|
1758 unexec ((char *) intoname_ext, (char *) symname_ext,
|
|
1759 (unsigned int) &my_edata,
|
|
1760 0, 0);
|
|
1761 }
|
|
1762 #endif /* not MSDOS and EMX */
|
|
1763 #endif /* not VMS */
|
|
1764
|
|
1765 purify_flag = opurify;
|
|
1766
|
|
1767 return Qnil;
|
|
1768 }
|
|
1769
|
|
1770 #endif /* not HAVE_SHM */
|
|
1771
|
|
1772 #endif /* not CANNOT_DUMP */
|
|
1773
|
|
1774 #ifndef SEPCHAR
|
|
1775 #define SEPCHAR ':'
|
|
1776 #endif
|
|
1777
|
|
1778 Lisp_Object
|
|
1779 decode_env_path (CONST char *evarname, CONST char *defalt)
|
|
1780 {
|
|
1781 REGISTER CONST char *path = 0;
|
|
1782 REGISTER CONST char *p;
|
|
1783 Lisp_Object lpath = Qnil;
|
|
1784
|
|
1785 if (evarname)
|
|
1786 path = (char *) egetenv (evarname);
|
|
1787 if (!path)
|
|
1788 path = defalt;
|
|
1789 if (!path)
|
|
1790 return (Qnil);
|
|
1791
|
|
1792 #if defined (MSDOS) || defined (WIN32)
|
|
1793 dostounix_filename (path);
|
|
1794 #endif
|
|
1795
|
|
1796 while (1)
|
|
1797 {
|
|
1798 p = strchr (path, SEPCHAR);
|
|
1799 if (!p) p = path + strlen (path);
|
|
1800 lpath = Fcons (((p != path)
|
|
1801 ? make_string ((CONST Bufbyte *) path, p - path)
|
|
1802 : Qnil),
|
|
1803 lpath);
|
|
1804 if (*p)
|
|
1805 path = p + 1;
|
|
1806 else
|
|
1807 break;
|
|
1808 }
|
|
1809 return Fnreverse (lpath);
|
|
1810 }
|
|
1811
|
|
1812 DEFUN ("noninteractive", Fnoninteractive, Snoninteractive, 0, 0, 0 /*
|
|
1813 Non-nil return value means XEmacs is running without interactive terminal.
|
|
1814 */ )
|
|
1815 ()
|
|
1816 {
|
|
1817 return ((noninteractive) ? Qt : Qnil);
|
|
1818 }
|
|
1819
|
|
1820 /* This flag is useful to define if you're under a debugger; this way, you
|
|
1821 can put a breakpoint of assert_failed() and debug multiple problems
|
|
1822 in one session without having to recompile. */
|
|
1823 /* #define ASSERTIONS_DONT_ABORT */
|
|
1824
|
|
1825 #ifdef USE_ASSERTIONS
|
|
1826 /* This highly dubious kludge ... shut up Jamie, I'm tired of your slagging. */
|
|
1827
|
|
1828 DOESNT_RETURN
|
|
1829 assert_failed (CONST char *file, int line, CONST char *expr)
|
|
1830 {
|
|
1831 stderr_out ("Fatal error: assertion failed, file %s, line %d, %s\n",
|
|
1832 file, line, expr);
|
|
1833 #undef abort /* avoid infinite #define loop... */
|
|
1834 #ifndef ASSERTIONS_DONT_ABORT
|
|
1835 abort ();
|
|
1836 #endif
|
|
1837 }
|
|
1838 #endif /* USE_ASSERTIONS */
|
|
1839
|
|
1840 #ifdef QUANTIFY
|
|
1841 DEFUN ("quantify-start-recording-data", Fquantify_start_recording_data,
|
|
1842 Squantify_start_recording_data, 0, 0, 0 /*
|
|
1843 Start recording Quantify data.
|
|
1844 */)
|
|
1845 ()
|
|
1846 {
|
|
1847 quantify_start_recording_data ();
|
|
1848 return Qnil;
|
|
1849 }
|
|
1850
|
|
1851 DEFUN ("quantify-stop-recording-data", Fquantify_stop_recording_data,
|
|
1852 Squantify_stop_recording_data, 0, 0, 0 /*
|
|
1853 Stop recording Quantify data.
|
|
1854 */)
|
|
1855 ()
|
|
1856 {
|
|
1857 quantify_stop_recording_data ();
|
|
1858 return Qnil;
|
|
1859 }
|
|
1860
|
|
1861 DEFUN ("quantify-clear-data", Fquantify_clear_data,
|
|
1862 Squantify_clear_data, 0, 0, 0 /*
|
|
1863 Clear all Quantify data.
|
|
1864 */)
|
|
1865 ()
|
|
1866 {
|
|
1867 quantify_clear_data ();
|
|
1868 return Qnil;
|
|
1869 }
|
|
1870 #endif /* QUANTIFY */
|
|
1871
|
|
1872 void
|
|
1873 syms_of_emacs (void)
|
|
1874 {
|
|
1875 #ifndef CANNOT_DUMP
|
|
1876 #ifdef HAVE_SHM
|
|
1877 defsubr (&Sdump_emacs_data);
|
|
1878 #else
|
|
1879 defsubr (&Sdump_emacs);
|
|
1880 #endif
|
|
1881 #endif /* !CANNOT_DUMP */
|
|
1882
|
|
1883 defsubr (&Srun_emacs_from_temacs);
|
|
1884 defsubr (&Srunning_temacs_p);
|
|
1885 defsubr (&Sinvocation_name);
|
|
1886 defsubr (&Skill_emacs);
|
|
1887 defsubr (&Snoninteractive);
|
|
1888
|
|
1889 #ifdef QUANTIFY
|
|
1890 defsubr (&Squantify_start_recording_data);
|
|
1891 defsubr (&Squantify_stop_recording_data);
|
|
1892 defsubr (&Squantify_clear_data);
|
|
1893 #endif /* QUANTIFY */
|
|
1894
|
|
1895 defsymbol (&Qkill_emacs_hook, "kill-emacs-hook");
|
|
1896 defsymbol (&Qsave_buffers_kill_emacs, "save-buffers-kill-emacs");
|
|
1897 }
|
|
1898
|
|
1899 void
|
|
1900 vars_of_emacs (void)
|
|
1901 {
|
|
1902 DEFVAR_BOOL ("suppress-early-error-handler-backtrace",
|
|
1903 &suppress_early_backtrace /*
|
|
1904 Non-nil means early error handler shouldn't print a backtrace
|
|
1905 */ );
|
|
1906
|
|
1907 DEFVAR_LISP ("command-line-args", &Vcommand_line_args /*
|
|
1908 Args passed by shell to XEmacs, as a list of strings.
|
|
1909 */ );
|
|
1910
|
|
1911 DEFVAR_LISP ("invocation-name", &Vinvocation_name /*
|
|
1912 The program name that was used to run XEmacs.
|
|
1913 Any directory names are omitted.
|
|
1914 */ );
|
|
1915
|
|
1916 DEFVAR_LISP ("invocation-directory", &Vinvocation_directory /*
|
|
1917 The directory in which the XEmacs executable was found, to run it.
|
|
1918 The value is simply the program name if that directory's name is not known.
|
|
1919 */ );
|
|
1920
|
|
1921 #if 0 /* FSFmacs */
|
|
1922 xxDEFVAR_LISP ("installation-directory", &Vinstallation_directory,
|
|
1923 "A directory within which to look for the `lib-src' and `etc' directories.\n"
|
|
1924 "This is non-nil when we can't find those directories in their standard\n"
|
|
1925 "installed locations, but we can find them\n"
|
|
1926 "near where the XEmacs executable was found.");
|
|
1927 #endif
|
|
1928
|
|
1929 DEFVAR_LISP ("system-type", &Vsystem_type /*
|
|
1930 Value is symbol indicating type of operating system you are using.
|
|
1931 */ );
|
|
1932 Vsystem_type = intern (SYSTEM_TYPE);
|
|
1933
|
|
1934 #ifndef EMACS_CONFIGURATION
|
|
1935 # define EMACS_CONFIGURATION "UNKNOWN"
|
|
1936 #endif
|
|
1937 DEFVAR_LISP ("system-configuration", &Vsystem_configuration /*
|
|
1938 Value is string indicating configuration XEmacs was built for.
|
|
1939 */ );
|
|
1940 Vsystem_configuration = Fpurecopy (build_string (EMACS_CONFIGURATION));
|
|
1941
|
|
1942 DEFVAR_BOOL ("noninteractive", &noninteractive1 /*
|
|
1943 Non-nil means XEmacs is running without interactive terminal.
|
|
1944 */ );
|
|
1945
|
|
1946 DEFVAR_INT ("emacs-priority", &emacs_priority /*
|
|
1947 Priority for XEmacs to run at.
|
|
1948 This value is effective only if set before XEmacs is dumped,
|
|
1949 and only if the XEmacs executable is installed with setuid to permit
|
|
1950 it to change priority. (XEmacs sets its uid back to the real uid.)
|
|
1951 Currently, you need to define SET_EMACS_PRIORITY in `config.h'
|
|
1952 before you compile XEmacs, to enable the code for this feature.
|
|
1953 */ );
|
|
1954 emacs_priority = 0;
|
|
1955 }
|