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