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