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