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