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