annotate src/emacs.c @ 32:e04119814345 r19-15b99

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