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