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