Mercurial > hg > xemacs-beta
annotate src/emacs.c @ 5602:c9e5612f5424
Support the MP library on recent FreeBSD, have it pass relevant tests.
src/ChangeLog addition:
2011-11-26 Aidan Kehoe <kehoea@parhasard.net>
* number-mp.c (bignum_to_string):
Don't overwrite the accumulator we've just set up for this
function.
* number-mp.c (BIGNUM_TO_TYPE):
mp_itom() doesn't necessarily do what this code used to think with
negative numbers, it can treat them as unsigned ints. Subtract
numbers from bignum_zero instead of multiplying them by -1 to
convert them to their negative equivalents.
* number-mp.c (bignum_to_int):
* number-mp.c (bignum_to_uint):
* number-mp.c (bignum_to_long):
* number-mp.c (bignum_to_ulong):
* number-mp.c (bignum_to_double):
Use the changed BIGNUM_TO_TYPE() in these functions.
* number-mp.c (bignum_ceil):
* number-mp.c (bignum_floor):
In these functions, be more careful about rounding to positive and
negative infinity, respectively. Don't use the sign of QUOTIENT
when working out out whether to add or subtract one, rather use
the sign QUOTIENT would have if arbitrary-precision division were
done.
* number-mp.h:
* number-mp.h (MP_GCD):
Wrap #include <mp.h> in BEGIN_C_DECLS/END_C_DECLS.
* number.c (Fbigfloat_get_precision):
* number.c (Fbigfloat_set_precision):
Don't attempt to call XBIGFLOAT_GET_PREC if this build doesn't
support big floats.
author | Aidan Kehoe <kehoea@parhasard.net> |
---|---|
date | Sat, 26 Nov 2011 17:59:14 +0000 |
parents | 56144c8593a8 |
children | 1a507c4c6c42 |
rev | line source |
---|---|
428 | 1 /* XEmacs -- Fully extensible Emacs, running on Unix and other platforms. |
2 Copyright (C) 1985, 1986, 1987, 1992, 1993, 1994 | |
3 Free Software Foundation, Inc. | |
4 Copyright (C) 1995 Sun Microsystems, Inc. | |
5023
838630c0734f
error-checking, Windows shutdown changes
Ben Wing <ben@xemacs.org>
parents:
5014
diff
changeset
|
5 Copyright (C) 2000, 2001, 2002, 2003, 2004, 2005, 2010 Ben Wing. |
428 | 6 |
7 This file is part of XEmacs. | |
8 | |
5405
2aa9cd456ae7
Move src/ to GPLv3.
Mike Sperber <sperber@deinprogramm.de>
parents:
5255
diff
changeset
|
9 XEmacs is free software: you can redistribute it and/or modify it |
428 | 10 under the terms of the GNU General Public License as published by the |
5405
2aa9cd456ae7
Move src/ to GPLv3.
Mike Sperber <sperber@deinprogramm.de>
parents:
5255
diff
changeset
|
11 Free Software Foundation, either version 3 of the License, or (at your |
2aa9cd456ae7
Move src/ to GPLv3.
Mike Sperber <sperber@deinprogramm.de>
parents:
5255
diff
changeset
|
12 option) any later version. |
428 | 13 |
14 XEmacs is distributed in the hope that it will be useful, but WITHOUT | |
15 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or | |
16 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License | |
17 for more details. | |
18 | |
19 You should have received a copy of the GNU General Public License | |
5405
2aa9cd456ae7
Move src/ to GPLv3.
Mike Sperber <sperber@deinprogramm.de>
parents:
5255
diff
changeset
|
20 along with XEmacs. If not, see <http://www.gnu.org/licenses/>. */ |
428 | 21 |
22 /* Synched up with: Mule 2.0, FSF 19.28. */ | |
23 | |
2367 | 24 /* This file has been Mule-ized, Ben Wing, 10-7-04. */ |
25 | |
442 | 26 /* Capsule summary of the various releases of Lucid Emacs/XEmacs and |
771 | 27 FSF/GNU Emacs. (Copied from the Internals Manual, where the |
28 canonical version lives.) Provided here for use in cross-referencing | |
29 version releases and dates in comments, esp. in the authorship | |
30 comments at the beginning of each file. More information about | |
31 history can be found in the beginning of the Internals Manual and | |
32 in the About page. | |
442 | 33 |
34 | |
35 -- A time line for Lucid Emacs/XEmacs is | |
36 | |
2517 | 37 Version 19.0 shipped with Energize 1.0, April 1992. |
38 Version 19.1 released June 4, 1992. | |
39 Version 19.2 released June 19, 1992. | |
40 Version 19.3 released September 9, 1992. | |
41 Version 19.4 released January 21, 1993. | |
42 Version 19.5 released February 5, 1993. This was a repackaging of 19.4 with a | |
43 few bug fixes and shipped with Energize 2.0. It was a trade-show giveaway | |
44 and never released to the net. | |
45 Version 19.6 released April 9, 1993. | |
46 Version 19.7 was a repackaging of 19.6 with a few bug fixes and | |
442 | 47 shipped with Energize 2.1. Never released to the net. |
2517 | 48 Version 19.8 released September 6, 1993. (Epoch merger, preliminary I18N |
49 support) | |
50 Version 19.9 released January 12, 1994. (Scrollbars, Athena.) | |
51 Version 19.10 released May 27, 1994. Known as "Lucid Emacs" when | |
52 shipped by Lucid, and as "XEmacs" when shipped by Sun; but Lucid | |
53 went out of business a few days later and it's unclear very many | |
54 copies of 19.10 were released by Lucid. (Last release by Jamie Zawinski.) | |
55 Version 19.11 (first XEmacs) released September 13, 1994. | |
56 Version 19.12 released June 23, 1995. | |
57 Version 19.13 released September 1, 1995. | |
58 Version 19.14 released June 23, 1996. | |
59 Version 20.0 released February 9, 1997. | |
60 Version 19.15 released March 28, 1997. | |
61 Version 20.1 (not released to the net) April 15, 1997. | |
62 Version 20.2 released May 16, 1997. | |
63 Version 19.16 released October 31, 1997; retiring of v19 series. | |
64 Version 20.3 (the first stable version of XEmacs 20.x) released November 30, | |
65 1997. | |
66 Version 20.4 released February 28, 1998. (Jamie claims this version is the | |
67 "first reasonably stable release with MULE support" and says that "XEmacs | |
68 'core' and 'packages' now packaged separately.") | |
69 Version 21.0-pre5 released July 18, 1998. (Jamie says "Numbering scheme goes | |
70 wonky due to switch to stable + unstable branches.") | |
71 Version 21.0.60 released December 10, 1998. (The version naming scheme was | |
72 changed at this point: [a] the second version number is odd for stable | |
73 versions, even for beta versions; [b] a third version number is added, | |
74 replacing the "beta xxx" ending for beta versions and allowing for | |
75 periodic maintenance releases for stable versions. Therefore, 21.0 was | |
76 never "officially" released; similarly for 21.2, etc.) | |
77 Version 21.0.61 released January 4, 1999. | |
78 Version 21.0.63 released February 3, 1999. | |
79 Version 21.0.64 released March 1, 1999. | |
80 Version 21.0.65 released March 5, 1999. | |
81 Version 21.0.66 released March 12, 1999. | |
82 Version 21.0.67 released March 25, 1999. | |
83 Version 21.1.2 released May 14, 1999; on comp.emacs, May 28. (This is | |
788 | 84 the followup to 21.0.67. The second version number was bumped to indicate |
85 the beginning of the "stable" series.) | |
2517 | 86 Version 21.1.3 released June 26, 1999. |
87 Version 21.1.4 released July 8, 1999. | |
88 Version 21.1.6 released August 14, 1999. (There was no 21.1.5.) | |
89 Version 21.1.7 released September 26, 1999. | |
90 Version 21.1.8 released November 2, 1999. | |
91 Version 21.1.9 released February 13, 2000. | |
92 Version 21.1.10 released May 7, 2000. | |
93 Version 21.1.10a released June 24, 2000. | |
94 Version 21.1.11 released July 18, 2000. | |
95 Version 21.1.12 released August 5, 2000. | |
96 Version 21.1.13 released January 7, 2001. | |
97 Version 21.1.14 released January 27, 2001. | |
98 Version 21.2.9 released February 3, 1999. | |
99 Version 21.2.10 released February 5, 1999. | |
100 Version 21.2.11 released March 1, 1999. | |
101 Version 21.2.12 released March 5, 1999. | |
102 Version 21.2.13 released March 12, 1999. | |
103 Version 21.2.14 released May 14, 1999. | |
104 Version 21.2.15 released June 4, 1999. | |
105 Version 21.2.16 released June 11, 1999. | |
106 Version 21.2.17 released June 22, 1999. | |
107 Version 21.2.18 released July 14, 1999. | |
108 Version 21.2.19 released July 30, 1999. | |
109 Version 21.2.20 released November 10, 1999. | |
110 Version 21.2.21 released November 28, 1999. | |
111 Version 21.2.22 released November 29, 1999. | |
112 Version 21.2.23 released December 7, 1999. | |
113 Version 21.2.24 released December 14, 1999. | |
114 Version 21.2.25 released December 24, 1999. | |
115 Version 21.2.26 released December 31, 1999. | |
116 Version 21.2.27 released January 18, 2000. | |
117 Version 21.2.28 released February 7, 2000. | |
118 Version 21.2.29 released February 16, 2000. | |
119 Version 21.2.30 released February 21, 2000. | |
120 Version 21.2.31 released February 23, 2000. | |
121 Version 21.2.32 released March 20, 2000. | |
122 Version 21.2.33 released May 1, 2000. | |
123 Version 21.2.34 released May 28, 2000. | |
124 Version 21.2.35 released July 19, 2000. | |
125 Version 21.2.36 released October 4, 2000. | |
126 Version 21.2.37 released November 14, 2000. | |
127 Version 21.2.38 released December 5, 2000. | |
128 Version 21.2.39 released December 31, 2000. | |
129 Version 21.2.40 released January 8, 2001. | |
130 Version 21.2.41 "Polyhymnia" released January 17, 2001. | |
131 Version 21.2.42 "Poseidon" released January 20, 2001. | |
132 Version 21.2.43 "Terspichore" released January 26, 2001. | |
133 Version 21.2.44 "Thalia" released February 8, 2001. | |
134 Version 21.2.45 "Thelxepeia" released February 23, 2001. | |
135 Version 21.2.46 "Urania" released March 21, 2001. | |
136 Version 21.2.47 "Zephir" released April 14, 2001. | |
137 Version 21.4.0 "Solid Vapor" released April 16, 2001. | |
138 Version 21.4.1 "Copyleft" released April 19, 2001. | |
139 Version 21.4.2 "Developer-Friendly Unix APIs" released May 10, 2001. | |
140 Version 21.4.3 "Academic Rigor" released May 17, 2001. | |
141 Version 21.4.4 "Artificial Intelligence" released July 28, 2001. | |
142 Version 21.4.5 "Civil Service" released October 23, 2001. | |
143 Version 21.4.6 "Common Lisp" released December 17, 2001. | |
144 Version 21.4.7 "Economic Science" released May 4, 2002. | |
145 Version 21.4.8 "Honest Recruiter" released May 9, 2002. | |
146 Version 21.4.9 "Informed Management" released August 23, 2002. | |
147 Version 21.4.10 "Military Intelligence" released November 2, 2002. | |
148 Version 21.4.11 "Native Windows TTY Support" released January 3, 2003. | |
149 Version 21.4.12 "Portable Code" released January 15, 2003. | |
150 Version 21.4.13 "Rational FORTRAN" released May 25, 2003. | |
151 Version 21.4.14 "Reasonable Discussion" released September 3, 2003. | |
152 Version 21.4.15 "Security Through Obscurity" released February 2, 2004. | |
153 Version 21.5.0 "alfalfa" released April 18, 2001. | |
154 Version 21.5.1 "anise" released May 9, 2001. | |
155 Version 21.5.2 "artichoke" released July 28, 2001. | |
156 Version 21.5.3 "asparagus" released September 7, 2001. | |
157 Version 21.5.4 "bamboo" released January 8, 2002. | |
158 Version 21.5.5 "beets" released March 5, 2002. | |
159 Version 21.5.6 "bok choi" released April 5, 2002. | |
160 Version 21.5.7 "broccoflower" released July 2, 2002. | |
161 Version 21.5.8 "broccoli" released July 27, 2002. | |
162 Version 21.5.9 "brussels sprouts" released August 30, 2002. | |
163 Version 21.5.10 "burdock" released January 4, 2003. | |
164 Version 21.5.11 "cabbage" released February 16, 2003. | |
165 Version 21.5.12 "carrot" released April 24, 2003. | |
166 Version 21.5.13 "cauliflower" released May 10, 2003. | |
167 Version 21.5.14 "cassava" released June 1, 2003. | |
168 Version 21.5.15 "celery" released September 3, 2003. | |
169 Version 21.5.16 "celeriac" released September 26, 2003. | |
170 Version 21.5.17 "chayote" released March 22, 2004. | |
171 Version 21.5.18 "chestnut" released October 22, 2004. | |
442 | 172 |
173 | |
174 -- A time line for GNU Emacs version 19 is | |
175 | |
176 version 19.7 (beta) (first beta release) released ??????; prob. late May 1993. | |
177 version 19.8 (beta) released May 27, 1993. | |
178 version 19.9 (beta) released May 27, 1993. | |
179 version 19.10 (beta) released May 30, 1993. | |
180 version 19.11 (beta) released June 1, 1993. | |
181 version 19.12 (beta) released June 2, 1993. | |
182 version 19.13 (beta) released June 8, 1993. | |
183 version 19.14 (beta) released June 17, 1993. | |
184 version 19.15 (beta) released June 19, 1993. | |
185 version 19.16 (beta) released July 6, 1993. | |
186 version 19.17 (beta) released late July, 1993. | |
187 version 19.18 (beta) released August 9, 1993. | |
188 version 19.19 (beta) released August 15, 1993. | |
189 version 19.20 (beta) released November 17, 1993. | |
190 version 19.21 (beta) released November 17, 1993. | |
191 version 19.22 (beta) released November 28, 1993. | |
788 | 192 version 19.23 (beta) released on comp.emacs, May 17, 1994. |
442 | 193 version 19.24 (beta) released May 16, 1994. |
194 version 19.25 (beta) released June 3, 1994. | |
195 version 19.26 (beta) released September 11, 1994. | |
196 version 19.27 (beta) released September 14, 1994. | |
197 version 19.28 (first ``official'' release) released November 1, 1994. | |
198 version 19.29 released June 21, 1995. | |
199 version 19.30 released November 24, 1995. | |
200 version 19.31 released May 25, 1996. | |
201 version 19.32 released July 31, 1996. | |
202 version 19.33 released August 11, 1996. | |
788 | 203 version 19.34 released August 21, 1996; on comp.emacs, August 22. |
442 | 204 version 19.34b released September 6, 1996. |
205 | |
206 | |
788 | 207 -- A time line for GNU Emacs versions 20 and 21 is |
442 | 208 |
209 version 20.1 released September 17, 1997. | |
210 version 20.2 released September 20, 1997. | |
211 version 20.3 released August 19, 1998. | |
788 | 212 version 20.4 released July 12, 1999; on comp.emacs, July 27. |
213 version 21.1 released October 20, 2001. | |
2517 | 214 Version 21.2 released March 16, 2002. |
215 Version 21.3 released March 19, 2003. | |
442 | 216 |
217 | |
218 -- A time line for GNU Emacs version 18 and older is | |
219 | |
220 GNU Emacs version 15 (15.34) was released sometime in 1984 or 1985 and | |
221 shared some code with a version of Emacs written by James Gosling (the | |
222 same James Gosling who later created the Java language). | |
223 GNU Emacs version 16 (first released version was 16.56) was released on | |
224 July 15, 1985. All Gosling code was removed due to potential copyright | |
225 problems with the code. | |
226 version 16.57: released on September 16, 1985. | |
227 versions 16.58, 16.59: released on September 17, 1985. | |
228 version 16.60: released on September 19, 1985. These later version 16's | |
229 incorporated patches from the net, esp. for getting Emacs to work under | |
230 System V. | |
231 version 17.36 (first official v17 release) released on December 20, 1985. | |
232 Included a TeX-able user manual. First official unpatched version that | |
233 worked on vanilla System V machines. | |
234 version 17.43 (second official v17 release) released on January 25, 1986. | |
235 version 17.45 released on January 30, 1986. | |
236 version 17.46 released on February 4, 1986. | |
237 version 17.48 released on February 10, 1986. | |
238 version 17.49 released on February 12, 1986. | |
239 version 17.55 released on March 18, 1986. | |
240 version 17.57 released on March 27, 1986. | |
241 version 17.58 released on April 4, 1986. | |
242 version 17.61 released on April 12, 1986. | |
243 version 17.63 released on May 7, 1986. | |
244 version 17.64 released on May 12, 1986. | |
245 version 18.24 (a beta version) released on October 2, 1986. | |
246 version 18.30 (a beta version) released on November 15, 1986. | |
247 version 18.31 (a beta version) released on November 23, 1986. | |
248 version 18.32 (a beta version) released on December 7, 1986. | |
249 version 18.33 (a beta version) released on December 12, 1986. | |
250 version 18.35 (a beta version) released on January 5, 1987. | |
251 version 18.36 (a beta version) released on January 21, 1987. | |
252 January 27, 1987: The Great Usenet Renaming. net.emacs is now comp.emacs. | |
253 version 18.37 (a beta version) released on February 12, 1987. | |
254 version 18.38 (a beta version) released on March 3, 1987. | |
255 version 18.39 (a beta version) released on March 14, 1987. | |
256 version 18.40 (a beta version) released on March 18, 1987. | |
257 version 18.41 (the first ``official'' release) released on March 22, 1987. | |
258 version 18.45 released on June 2, 1987. | |
259 version 18.46 released on June 9, 1987. | |
260 version 18.47 released on June 18, 1987. | |
261 version 18.48 released on September 3, 1987. | |
262 version 18.49 released on September 18, 1987. | |
263 version 18.50 released on February 13, 1988. | |
264 version 18.51 released on May 7, 1988. | |
265 version 18.52 released on September 1, 1988. | |
266 version 18.53 released on February 24, 1989. | |
267 version 18.54 released on April 26, 1989. | |
268 version 18.55 released on August 23, 1989. This is the earliest version | |
269 that is still available by FTP. | |
270 version 18.56 released on January 17, 1991. | |
271 version 18.57 released late January, 1991. | |
272 version 18.58 released ?????. | |
273 version 18.59 released October 31, 1992. | |
274 | |
2517 | 275 |
276 -- A time line for Epoch is | |
277 | |
278 Epoch 1.0 released December 14, 1989. (by Simon Kaplan, Chris Love, et al.) | |
279 Epoch 2.0 released December 23, 1989. | |
280 Epoch 3.1 released February 6, 1990. | |
281 Epoch 3.2 released December[????] 11, 1990. | |
282 Epoch 4.0 released August 27, 1990. | |
283 | |
442 | 284 */ |
854 | 285 |
2367 | 286 /* Sources for further information: |
287 | |
288 ----------------------------------- | |
289 1. Using XEmacs, Programming Elisp: | |
290 ----------------------------------- | |
291 | |
292 ;;; -- the XEmacs User's Manual (Access using the online Info browser: | |
293 ;;; Use `Help->Info (Online Docs)->XEmacs User's Manual' (if | |
294 ;;; there is such an entry); or get to the Info contents page | |
295 ;;; using `Help->Info Contents' or `C-h i', and then | |
296 ;;; *middle-click* the XEmacs link or move the cursor into the | |
297 ;;; link and hit ENTER. This manual contains a great deal of | |
298 ;;; documentation on customization: Scroll down to the | |
299 ;;; Customization link and select it in the same fashion as for | |
300 ;;; the XEmacs link just mentioned.) | |
301 | |
302 ;;; -- the XEmacs FAQ (`C-h F' for the local version; get either the | |
303 ;;; local version or the very latest version off the net using | |
304 ;;; the Help menu) | |
305 | |
306 ;;; -- the XEmacs Lisp Reference Manual, containing detailed | |
307 ;;; documentation on Elisp. (Access using Info, just like for the | |
308 ;;; XEmacs User's Manual.) | |
309 | |
310 ;;; -- the documentation strings for specific commands, functions, | |
311 ;;; key sequences, and variables. NOTE: This is *not* the same | |
312 ;;; information as in the XEmacs User's Manual or XEmacs Lisp | |
313 ;;; Reference Manual! In general, the doc strings are more | |
314 ;;; terse and more up-to-date than what is found in the manuals. | |
315 ;;; Once you understand the general concepts, these doc strings | |
316 ;;; should be your first point of reference for further | |
317 ;;; info. (Access using menu entries under `Help->Commands, | |
318 ;;; Variables, Keys' or using the keyboard: `C-h k' for a key | |
319 ;;; sequence, `C-h f' for a named command or Elisp function, | |
320 ;;; `C-h v' for a variable. There is various other useful | |
321 ;;; information accessible similarly, such as `C-h a' | |
322 ;;; ["Apropos", i.e. search for a command, function, or variable | |
323 ;;; by name]; `C-h C-a' ["Apropos Docs", i.e. search through the | |
324 ;;; text of the doc strings]; `C-h b' to list all key bindings; | |
325 ;;; `C-h m' to describe the current major and minor modes; etc. | |
326 ;;; Type `C-h ? ?' for a complete list.) | |
327 | |
328 ;;; -- Getting Started with XEmacs [aka the "New User's Guide"], a | |
329 ;;; more introductory manual than the XEmacs User's Manual. | |
330 ;;; (Access using Info, just like for the XEmacs User's Manual. | |
331 ;;; There are some sections on customization here.) | |
332 | |
333 ;;; -- the XEmacs tutorial, a very simple introduction to XEmacs for | |
334 ;;; total beginners. (`C-h t' for English; get the version in | |
335 ;;; various languages from the Help menu) | |
336 | |
337 ;;; -- the XEmacs web site, www.xemacs.org. | |
338 | |
339 ;;; -- the XEmacs mailing lists (xemacs-FOO@xemacs.org; | |
340 ;;; see http://www.xemacs.org/Lists/ for more info. Before | |
341 ;;; posting, consider looking through the archives -- they go back | |
342 ;;; years and there is a powerful searching interface. Currently | |
343 ;;; the archives are at http://list-archive.xemacs.org/, but if | |
344 ;;; this doesn't work, you can always access them through | |
345 ;;; www.xemacs.org.) | |
346 | |
347 ;;; -- the XEmacs newsgroup, comp.emacs.xemacs. This is | |
348 ;;; bi-directionally gatewayed with xemacs@xemacs.org. WARNING: | |
349 ;;; The developers do not normally hang out on this newsgroup. If | |
350 ;;; you need to contact them, use xemacs-beta@xemacs.org. | |
351 | |
352 ;;; -- the XEmacs internals manual, for those interested in working on | |
353 ;;; the XEmacs C code. (Available through Info.) | |
354 | |
355 ;;; -- `Help->About XEmacs' to find out who the maintainers are. | |
356 | |
357 --------------------- | |
358 2. Developing XEmacs: | |
359 --------------------- | |
360 | |
361 -- the internals manual, man/internals/internals.texi | |
362 | |
363 -- long comments at the head of certain files: | |
364 | |
365 emacs.c | |
366 extents.c | |
367 text.c | |
368 text.h | |
369 lisp.h | |
370 redisplay.h | |
371 dynarr.c | |
372 blocktype.c | |
373 eval.c | |
374 event-Xt.c (sort of) | |
375 event-stream.c (command event queue) | |
376 frame.c | |
377 intl-encap-win32.c | |
378 keymap.c | |
379 line-number.c (a little bit) | |
380 menubar-msw.c (sort of) | |
381 menubar-x.c (sort of) | |
382 mule-canna.c (sort of) | |
383 mule-ccl.c | |
384 mule-coding.c (scattered in the file) | |
385 mule-wnn.c (in japanese) | |
386 ntheap.c (near the top) | |
387 redisplay.c (various scattered) | |
388 regex.c (various scattered) | |
389 sysdep.c (maybe; wait_for_termination) | |
390 unexec.c | |
391 unicode.c | |
4917 | 392 gccache-x.c (a bit) |
2367 | 393 |
394 #### review .h files; write a perl program to look for long comments | |
395 throughout the files, ignoring stuff inside of DEFUN's. | |
396 | |
397 #### elsewhere? | |
398 | |
399 -- comments scattered throughout the sources (#### should be grouped | |
400 together if feasible). For example, lrecord.h (pdump and object- | |
401 creation), alloc.c (fixed-type allocation), etc. #### fill in. | |
402 | |
403 -- Ben's Architecting XEmacs web site. | |
404 (http://www.xemacs.org/Architecting-XEmacs/index.html; #### should be | |
405 integrated into the sources) | |
406 | |
407 -- Back discussions on xemacs-beta (#### The juiciest tidbits, esp. | |
408 those with specific proposals, should be extracted and stuck in | |
409 the source) | |
410 | |
411 -- README.* in the src/ directory (and maybe other directories) | |
412 | |
413 -- The ChangeLog files, sometimes. | |
414 | |
415 */ | |
416 | |
417 | |
418 | |
428 | 419 /* Note: It is necessary to specify <config.h> and not "config.h" in |
420 order for the --srcdir type of compilation to work properly. | |
421 Otherwise the config.h from the srcdir, rather than the one from | |
422 the build dir, will be used. */ | |
423 | |
424 #include <config.h> | |
425 #include "lisp.h" | |
426 | |
427 #include "backtrace.h" /* run-emacs-from-temacs needs this */ | |
428 #include "buffer.h" | |
429 #include "commands.h" | |
430 #include "console.h" | |
431 #include "process.h" | |
432 #include "redisplay.h" | |
438 | 433 #include "frame.h" |
428 | 434 #include "sysdep.h" |
435 | |
436 #include "systty.h" | |
437 #include "sysfile.h" | |
438 #include "systime.h" | |
771 | 439 #include "sysproc.h" /* for qxe_getpid() */ |
428 | 440 |
441 #ifdef QUANTIFY | |
442 #include <quantify.h> | |
443 #endif | |
444 | |
445 #ifdef HAVE_SHLIB | |
446 #include "sysdll.h" | |
447 #endif | |
448 | |
449 #ifdef TOOLTALK | |
442 | 450 #include TT_C_H_FILE |
428 | 451 #endif |
452 | |
1315 | 453 #ifdef WIN32_ANY |
872 | 454 #include "console-msw.h" |
428 | 455 #endif |
456 | |
2720 | 457 #ifdef DUMP_IN_EXEC |
2015 | 458 #ifndef WIN32_NATIVE |
459 #include "dump-data.h" | |
460 #endif | |
2720 | 461 #endif |
2015 | 462 |
428 | 463 /* For PATH_EXEC */ |
464 #include <paths.h> | |
465 | |
826 | 466 #if defined (HEAP_IN_DATA) && !defined (PDUMP) |
428 | 467 void report_sheap_usage (int die_if_pure_storage_exceeded); |
468 #endif | |
469 | |
470 #if !defined (SYSTEM_MALLOC) && !defined (DOUG_LEA_MALLOC) | |
471 extern void *(*__malloc_hook)(size_t); | |
472 extern void *(*__realloc_hook)(void *, size_t); | |
473 extern void (*__free_hook)(void *); | |
474 #endif /* not SYSTEM_MALLOC && not DOUG_LEA_MALLOC */ | |
475 | |
476 /* Command line args from shell, as list of strings */ | |
477 Lisp_Object Vcommand_line_args; | |
478 | |
479 /* Set nonzero after XEmacs has started up the first time. | |
480 Prevents reinitialization of the Lisp world and keymaps | |
481 on subsequent starts. */ | |
482 int initialized; | |
483 | |
484 #ifdef DOUG_LEA_MALLOC | |
485 # include <malloc.h> | |
486 /* Preserves a pointer to the memory allocated that copies that | |
487 static data inside glibc's malloc. */ | |
488 static void *malloc_state_ptr; | |
489 #endif /* DOUG_LEA_MALLOC */ | |
490 | |
491 # ifdef REL_ALLOC | |
492 void r_alloc_reinit (void); | |
493 # endif | |
494 | |
495 /* Variable whose value is symbol giving operating system type. */ | |
496 Lisp_Object Vsystem_type; | |
497 | |
498 /* Variable whose value is string giving configuration built for. */ | |
499 Lisp_Object Vsystem_configuration; | |
500 | |
501 /* Variable whose value is string containing the configuration options | |
502 XEmacs was built with. */ | |
503 Lisp_Object Vsystem_configuration_options; | |
504 | |
505 /* Version numbers and strings */ | |
506 Lisp_Object Vemacs_major_version; | |
507 Lisp_Object Vemacs_minor_version; | |
508 Lisp_Object Vemacs_patch_level; | |
509 Lisp_Object Vemacs_beta_version; | |
510 Lisp_Object Vxemacs_codename; | |
975 | 511 Lisp_Object Vxemacs_extra_name; |
2602 | 512 Lisp_Object Vxemacs_release_date; |
428 | 513 |
514 /* The path under which XEmacs was invoked. */ | |
515 Lisp_Object Vinvocation_path; | |
516 | |
517 /* The name under which XEmacs was invoked, with any leading directory | |
518 names discarded. */ | |
519 Lisp_Object Vinvocation_name; | |
520 | |
521 /* The directory name from which XEmacs was invoked. */ | |
522 Lisp_Object Vinvocation_directory; | |
523 | |
524 #if 0 /* FSFmacs */ | |
525 /* The directory name in which to find subdirs such as lisp and etc. | |
526 nil means get them only from PATH_LOADSEARCH. */ | |
527 Lisp_Object Vinstallation_directory; | |
528 #endif | |
529 | |
530 Lisp_Object Vemacs_program_name, Vemacs_program_version; | |
531 Lisp_Object Vexec_path; | |
532 Lisp_Object Vexec_directory, Vconfigure_exec_directory; | |
533 Lisp_Object Vlisp_directory, Vconfigure_lisp_directory; | |
460 | 534 Lisp_Object Vmule_lisp_directory, Vconfigure_mule_lisp_directory; |
428 | 535 Lisp_Object Vmodule_directory, Vconfigure_module_directory; |
536 Lisp_Object Vsite_module_directory, Vconfigure_site_module_directory; | |
537 Lisp_Object Vconfigure_package_path; | |
3179 | 538 Lisp_Object Vconfigure_early_package_directories; |
539 Lisp_Object Vconfigure_late_package_directories; | |
540 Lisp_Object Vconfigure_last_package_directories; | |
428 | 541 Lisp_Object Vdata_directory, Vconfigure_data_directory; |
542 Lisp_Object Vdoc_directory, Vconfigure_doc_directory; | |
543 Lisp_Object Vconfigure_lock_directory; | |
544 Lisp_Object Vdata_directory_list; | |
545 Lisp_Object Vconfigure_info_directory; | |
546 Lisp_Object Vsite_directory, Vconfigure_site_directory; | |
547 Lisp_Object Vconfigure_info_path; | |
548 Lisp_Object Vinternal_error_checking; | |
438 | 549 Lisp_Object Vmail_lock_methods, Vconfigure_mail_lock_method; |
428 | 550 |
551 /* The default base directory XEmacs is installed under. */ | |
552 Lisp_Object Vconfigure_exec_prefix_directory, Vconfigure_prefix_directory; | |
553 | |
554 /* If nonzero, set XEmacs to run at this priority. This is also used | |
555 in child_setup and sys_suspend to make sure subshells run at normal | |
556 priority. */ | |
458 | 557 Fixnum emacs_priority; |
428 | 558 |
442 | 559 /* Some FSF junk with running_asynch_code, to preserve the match |
560 data. Not necessary because we don't call process filters | |
561 asynchronously (i.e. from within QUIT). */ | |
428 | 562 |
563 /* If non-zero, a window-system was specified on the command line. */ | |
564 int display_arg; | |
565 | |
566 /* Type of display specified. We cannot use a Lisp symbol here because | |
567 Lisp symbols may not initialized at the time that we set this | |
568 variable. */ | |
2367 | 569 const Ascbyte *display_use; |
428 | 570 |
571 /* If non-zero, then the early error handler will only print the error | |
572 message and exit. */ | |
573 int suppress_early_error_handler_backtrace; | |
574 | |
575 /* An address near the bottom of the stack. | |
576 Tells GC how to save a copy of the stack. */ | |
2367 | 577 Rawbyte *stack_bottom; |
428 | 578 |
579 #ifdef USG_SHARED_LIBRARIES | |
580 /* If nonzero, this is the place to put the end of the writable segment | |
581 at startup. */ | |
582 | |
583 uintptr_t bss_end = 0; | |
584 #endif | |
585 | |
647 | 586 /* Number of bytes of writable memory we can expect to be able to get: |
587 Leave this as an unsigned int because it could potentially be 4G */ | |
2132 | 588 unsigned long lim_data; |
428 | 589 |
442 | 590 /* WARNING! |
591 | |
592 Some LISP-visible command-line options are set by XEmacs _before_ the | |
593 data is dumped in building a --pdump XEmacs, but used _after_ it is | |
446 | 594 restored in normal operation. Thus the dump-time values overwrite the |
595 values XEmacs is getting at runtime. Such variables must be saved | |
442 | 596 before loading the dumpfile, and restored afterward. |
597 | |
446 | 598 Therefore these variables may not be initialized in vars_of_emacs(). |
599 | |
600 The save/restore is done immediately before and after pdump_load() in | |
601 main_1(). See that function for the current list of protected variables. | |
602 | |
603 Note that saving/restoring is only necessary for a few variables that are | |
604 o command line arguments effective at runtime (as opposed to dump-time), | |
605 o parsed before pdump_load, and | |
606 o exported to Lisp via a DEFVAR. | |
442 | 607 */ |
608 | |
428 | 609 /* Nonzero means running XEmacs without interactive terminal. */ |
610 | |
611 int noninteractive; | |
612 | |
613 /* Value of Lisp variable `noninteractive'. | |
614 Normally same as C variable `noninteractive' | |
442 | 615 but nothing terrible happens if user sets this one. |
616 | |
617 Shadowed from the pdumper by `noninteractive'. */ | |
428 | 618 |
619 int noninteractive1; | |
620 | |
621 /* Nonzero means don't perform site-lisp searches at startup */ | |
622 int inhibit_site_lisp; | |
623 | |
624 /* Nonzero means don't perform site-modules searches at startup */ | |
625 int inhibit_site_modules; | |
626 | |
776 | 627 /* Nonzero means don't load user-init or site-start file */ |
628 int vanilla_inhibiting; | |
629 | |
428 | 630 /* Nonzero means don't respect early packages at startup */ |
631 int inhibit_early_packages; | |
632 | |
776 | 633 /* Nonzero means don't respect any packages at startup -- act as if they |
634 don't exist. */ | |
635 int inhibit_all_packages; | |
636 | |
428 | 637 /* Nonzero means don't load package autoloads at startup */ |
638 int inhibit_autoloads; | |
639 | |
442 | 640 /* Nonzero means don't load the dump file (ignored if not PDUMP) */ |
641 | |
642 int nodumpfile; | |
643 | |
428 | 644 /* Nonzero means print debug information about path searching */ |
645 int debug_paths; | |
646 | |
647 /* Save argv and argc. */ | |
2367 | 648 static Wexttext **initial_argv; /* #### currently unused */ |
444 | 649 static int initial_argc; /* #### currently unused */ |
428 | 650 |
2367 | 651 static void sort_args (int argc, Wexttext **argv); |
428 | 652 |
653 Lisp_Object Qkill_emacs_hook; | |
654 Lisp_Object Qsave_buffers_kill_emacs; | |
655 | |
1315 | 656 Lisp_Object Qtemacs, Qdumping, Qrestarted, Qpdump, Qbatch; |
657 | |
442 | 658 /* Nonzero if handling a fatal error already. */ |
659 int fatal_error_in_progress; | |
660 | |
771 | 661 /* Nonzero means we're going down, so we better not run any hooks |
442 | 662 or do other non-essential stuff. */ |
663 int preparing_for_armageddon; | |
664 | |
771 | 665 /* Nonzero means we're in an unstable situation and need to skip |
5014
c2e0c3af5fe3
cleanups to debug-print, try harder to make it work during GC
Ben Wing <ben@xemacs.org>
parents:
5000
diff
changeset
|
666 internal->external conversions, QUIT checking and such. This gets set |
c2e0c3af5fe3
cleanups to debug-print, try harder to make it work during GC
Ben Wing <ben@xemacs.org>
parents:
5000
diff
changeset
|
667 during early startup, during shutdown, and when debug printing |
c2e0c3af5fe3
cleanups to debug-print, try harder to make it work during GC
Ben Wing <ben@xemacs.org>
parents:
5000
diff
changeset
|
668 (i.e. called from a debugger such as gdb to print Lisp objects or |
c2e0c3af5fe3
cleanups to debug-print, try harder to make it work during GC
Ben Wing <ben@xemacs.org>
parents:
5000
diff
changeset
|
669 backtraces). During printing we check for this, and during conversion |
c2e0c3af5fe3
cleanups to debug-print, try harder to make it work during GC
Ben Wing <ben@xemacs.org>
parents:
5000
diff
changeset
|
670 we abort if we see this. */ |
2367 | 671 int inhibit_non_essential_conversion_operations; |
442 | 672 |
673 static JMP_BUF run_temacs_catch; | |
674 | |
675 static int run_temacs_argc; | |
2367 | 676 static Wexttext **run_temacs_argv; |
442 | 677 |
678 #ifdef _MSC_VER | |
771 | 679 static DWORD mswindows_handle_hardware_exceptions (DWORD code); |
680 #endif | |
442 | 681 |
826 | 682 #ifdef WIN32_NATIVE |
683 static DWORD CALLBACK wait_for_termination_signal (LPVOID handle); | |
684 #endif | |
685 | |
442 | 686 |
771 | 687 /************************************************************************/ |
688 /* Functions to handle arguments */ | |
689 /************************************************************************/ | |
690 | |
428 | 691 /* Code for dealing with Lisp access to the Unix command line */ |
692 | |
693 static Lisp_Object | |
2367 | 694 make_arg_list_1 (int argc, Wexttext **argv, int skip_args) |
428 | 695 { |
696 Lisp_Object result = Qnil; | |
697 REGISTER int i; | |
698 | |
699 for (i = argc - 1; i >= 0; i--) | |
700 { | |
701 if (i == 0 || i > skip_args) | |
702 { | |
442 | 703 #ifdef WIN32_NATIVE |
428 | 704 if (i == 0) |
705 { | |
706 /* Do not trust to what crt0 has stuffed into argv[0] */ | |
814 | 707 Extbyte *full_exe_path; |
442 | 708 Lisp_Object fullpath; |
709 | |
814 | 710 full_exe_path = mswindows_get_module_file_name (); |
711 assert (full_exe_path); | |
771 | 712 fullpath = build_tstr_string (full_exe_path); |
4976
16112448d484
Rename xfree(FOO, TYPE) -> xfree(FOO)
Ben Wing <ben@xemacs.org>
parents:
4969
diff
changeset
|
713 xfree (full_exe_path); |
442 | 714 result = Fcons (fullpath, result); |
428 | 715 } |
716 else | |
717 #endif | |
2367 | 718 result = Fcons (build_wext_string (argv[i], |
719 Qcommand_argument_encoding), | |
440 | 720 result); |
428 | 721 } |
722 } | |
723 return result; | |
724 } | |
725 | |
726 Lisp_Object | |
2367 | 727 make_arg_list (int argc, Wexttext **argv) |
428 | 728 { |
729 return make_arg_list_1 (argc, argv, 0); | |
730 } | |
731 | |
732 /* Calling functions are also responsible for calling free_argc_argv | |
733 when they are done with the generated list. */ | |
734 void | |
2367 | 735 make_argc_argv (Lisp_Object argv_list, int *argc, Wexttext ***argv) |
428 | 736 { |
737 Lisp_Object next; | |
5581
56144c8593a8
Mechanically change INT to FIXNUM in our sources.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5560
diff
changeset
|
738 int n = XFIXNUM (Flength (argv_list)); |
428 | 739 REGISTER int i; |
2367 | 740 *argv = xnew_array (Wexttext *, n + 1); |
428 | 741 |
742 for (i = 0, next = argv_list; i < n; i++, next = XCDR (next)) | |
743 { | |
744 CHECK_STRING (XCAR (next)); | |
745 | |
5000
44d7bde26046
fix compile errors, fix revert-buffer bug on binary/Latin 1 files, Mule-ize some files
Ben Wing <ben@xemacs.org>
parents:
4982
diff
changeset
|
746 (*argv)[i] = |
44d7bde26046
fix compile errors, fix revert-buffer bug on binary/Latin 1 files, Mule-ize some files
Ben Wing <ben@xemacs.org>
parents:
4982
diff
changeset
|
747 (Wexttext *) LISP_STRING_TO_EXTERNAL_MALLOC |
44d7bde26046
fix compile errors, fix revert-buffer bug on binary/Latin 1 files, Mule-ize some files
Ben Wing <ben@xemacs.org>
parents:
4982
diff
changeset
|
748 (XCAR (next), Qcommand_argument_encoding); |
428 | 749 } |
750 (*argv) [n] = 0; | |
751 *argc = i; | |
752 } | |
753 | |
754 void | |
2367 | 755 free_argc_argv (Wexttext **argv) |
428 | 756 { |
757 int elt = 0; | |
758 | |
759 while (argv[elt]) | |
760 { | |
4976
16112448d484
Rename xfree(FOO, TYPE) -> xfree(FOO)
Ben Wing <ben@xemacs.org>
parents:
4969
diff
changeset
|
761 xfree (argv[elt]); |
5169
6c6d78781d59
cleanup of code related to xfree(), better KKCC backtrace capabilities, document XD_INLINE_LISP_OBJECT_BLOCK_PTR, fix some memory leaks, other code cleanup
Ben Wing <ben@xemacs.org>
parents:
5168
diff
changeset
|
762 argv[elt] = 0; |
428 | 763 elt++; |
764 } | |
4976
16112448d484
Rename xfree(FOO, TYPE) -> xfree(FOO)
Ben Wing <ben@xemacs.org>
parents:
4969
diff
changeset
|
765 xfree (argv); |
428 | 766 } |
767 | |
768 static void | |
2367 | 769 init_cmdargs (int argc, Wexttext **argv, int skip_args) |
428 | 770 { |
771 initial_argv = argv; | |
772 initial_argc = argc; | |
773 | |
774 Vcommand_line_args = make_arg_list_1 (argc, argv, skip_args); | |
775 } | |
776 | |
777 DEFUN ("invocation-name", Finvocation_name, 0, 0, 0, /* | |
778 Return the program name that was used to run XEmacs. | |
779 Any directory names are omitted. | |
780 */ | |
781 ()) | |
782 { | |
783 return Fcopy_sequence (Vinvocation_name); | |
784 } | |
785 | |
786 DEFUN ("invocation-directory", Finvocation_directory, 0, 0, 0, /* | |
787 Return the directory name in which the Emacs executable was located. | |
788 */ | |
789 ()) | |
790 { | |
791 return Fcopy_sequence (Vinvocation_directory); | |
792 } | |
793 | |
794 | |
795 | |
776 | 796 /* Test whether the next argument in ARGV matches SSTR or a prefix of LSTR |
797 (at least MINLEN characters; if MINLEN is 0, set to size of LSTR). If | |
798 so, then if VALPTR is non-null (the argument is supposed to have a | |
799 value) store in *VALPTR either the next argument or the portion of this | |
800 one after the equal sign. ARGV is read starting at position *SKIPPTR; | |
801 this index is advanced by the number of arguments used. | |
428 | 802 |
803 Too bad we can't just use getopt for all of this, but we don't have | |
804 enough information to do it right. */ | |
805 | |
806 static int | |
4528
726060ee587c
First draft of g++ 4.3 warning removal patch. Builds. *Needs ChangeLogs.*
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4522
diff
changeset
|
807 argmatch (Wexttext **argv, int argc, const Ascbyte *sstr, const Ascbyte *lstr, |
2367 | 808 int minlen, Wexttext **valptr, int *skipptr) |
428 | 809 { |
2367 | 810 Wexttext *p = NULL; |
811 Charcount arglen; | |
812 Wexttext *arg; | |
428 | 813 |
814 /* Don't access argv[argc]; give up in advance. */ | |
815 if (argc <= *skipptr + 1) | |
816 return 0; | |
817 | |
818 arg = argv[*skipptr+1]; | |
819 if (arg == NULL) | |
820 return 0; | |
2367 | 821 if (wext_strcmp_ascii (arg, sstr) == 0) |
428 | 822 { |
823 if (valptr != NULL) | |
824 { | |
825 *valptr = argv[*skipptr+2]; | |
826 *skipptr += 2; | |
827 } | |
828 else | |
829 *skipptr += 1; | |
830 return 1; | |
831 } | |
2367 | 832 arglen = (valptr != NULL && (p = wext_strchr (arg, '=')) != NULL |
833 ? p - arg : (Charcount) wext_strlen (arg)); | |
776 | 834 if (lstr && !minlen) |
835 minlen = strlen (lstr); | |
2367 | 836 if (lstr == 0 || arglen < minlen || |
837 wext_strncmp_ascii (arg, lstr, arglen) != 0) | |
428 | 838 return 0; |
839 else if (valptr == NULL) | |
840 { | |
841 *skipptr += 1; | |
842 return 1; | |
843 } | |
844 else if (p != NULL) | |
845 { | |
2367 | 846 *valptr = p + 1; |
428 | 847 *skipptr += 1; |
848 return 1; | |
849 } | |
2367 | 850 else if (argv[*skipptr + 2] != NULL) |
428 | 851 { |
2367 | 852 *valptr = argv[*skipptr + 2]; |
428 | 853 *skipptr += 2; |
854 return 1; | |
855 } | |
856 else | |
857 { | |
858 return 0; | |
859 } | |
860 } | |
861 | |
1315 | 862 static void |
4528
726060ee587c
First draft of g++ 4.3 warning removal patch. Builds. *Needs ChangeLogs.*
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4522
diff
changeset
|
863 check_compatible_window_system (const Ascbyte *must) |
1315 | 864 { |
865 if (display_use && strcmp (display_use, must)) | |
866 fatal ("Incompatible window system type `%s': `%s' already specified", | |
867 must, display_use); | |
868 display_use = must; | |
869 } | |
870 | |
771 | 871 |
872 /************************************************************************/ | |
873 /* main and friends: XEmacs startup */ | |
874 /************************************************************************/ | |
875 | |
428 | 876 /* Make stack traces always identify version + configuration */ |
877 #define main_1 STACK_TRACE_EYE_CATCHER | |
878 | |
879 /* This function is not static, so that the compiler is less likely to | |
446 | 880 inline it, which would make it not show up in stack traces. |
881 | |
882 The restart argument is a flag that indicates that main_1 is now | |
771 | 883 being called for the second time in this invocation of xemacs; this |
884 happens as a result of using `run-temacs' in the command line, when | |
885 invoking a bare (without dumped data) XEmacs (i.e. `temacs' with | |
886 the conventional dumper or `xemacs -nd' with the pdumper). See | |
446 | 887 Frun_emacs_from_temacs(). |
888 */ | |
2367 | 889 DECLARE_DOESNT_RETURN (main_1 (int, Wexttext **, Wexttext **, int)); |
428 | 890 DOESNT_RETURN |
2367 | 891 main_1 (int argc, Wexttext **argv, Wexttext **UNUSED (envp), int restart) |
428 | 892 { |
2367 | 893 Rawbyte stack_bottom_variable; |
428 | 894 int skip_args = 0; |
895 Lisp_Object load_me; | |
896 | |
897 #if (!defined (SYSTEM_MALLOC) && !defined (HAVE_LIBMCHECK) \ | |
898 && !defined (DOUG_LEA_MALLOC)) | |
899 /* Make sure that any libraries we link against haven't installed a | |
900 hook for a gmalloc of a potentially incompatible version. */ | |
901 /* If we're using libmcheck, the hooks have already been initialized, */ | |
902 /* don't touch them. -slb */ | |
903 __malloc_hook = NULL; | |
904 __realloc_hook = NULL; | |
905 __free_hook = NULL; | |
906 #endif /* not SYSTEM_MALLOC or HAVE_LIBMCHECK or DOUG_LEA_MALLOC */ | |
907 | |
908 noninteractive = 0; | |
3360 | 909 display_use = NULL; |
2367 | 910 inhibit_non_essential_conversion_operations = 1; |
428 | 911 |
3263 | 912 #ifdef NEW_GC |
2720 | 913 #ifndef PDUMP |
914 if (!initialized) | |
915 #endif | |
916 { | |
2723 | 917 if (!restart) |
918 { | |
919 init_mc_allocator (); | |
2994 | 920 #ifdef ALLOC_TYPE_STATS |
2723 | 921 init_lrecord_stats (); |
2994 | 922 #endif /* ALLOC_TYPE_STATS */ |
2723 | 923 } |
2720 | 924 } |
3263 | 925 #endif /* NEW_GC */ |
2720 | 926 |
1303 | 927 #if defined (LOSING_GCC_DESTRUCTOR_FREE_BUG) |
428 | 928 /* Prior to XEmacs 21, this was `#if 0'ed out. */ |
929 /* I'm enabling this because it is the only reliable way I've found to */ | |
1303 | 930 /* prevent a very annoying problem where GCC will attempt to free (3) */ |
428 | 931 /* memory at exit() and cause a coredump. */ |
932 init_free_hook (); | |
933 #endif | |
934 | |
4448
fd8a9a4d81d9
Support #!, to allow XEmacs to be called as a script interpreter.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4380
diff
changeset
|
935 #define SHEBANG_PROGNAME_LENGTH \ |
fd8a9a4d81d9
Support #!, to allow XEmacs to be called as a script interpreter.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4380
diff
changeset
|
936 (int)((sizeof (WEXTSTRING (SHEBANG_PROGNAME)) - sizeof (WEXTSTRING ("")))) |
4932 | 937 #define SHEBANG_EXE_PROGNAME_LENGTH \ |
4973 | 938 (int)(sizeof (WEXTSTRING (SHEBANG_PROGNAME) WEXTSTRING (".exe")) \ |
4448
fd8a9a4d81d9
Support #!, to allow XEmacs to be called as a script interpreter.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4380
diff
changeset
|
939 - sizeof (WEXTSTRING (""))) |
fd8a9a4d81d9
Support #!, to allow XEmacs to be called as a script interpreter.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4380
diff
changeset
|
940 |
fd8a9a4d81d9
Support #!, to allow XEmacs to be called as a script interpreter.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4380
diff
changeset
|
941 { |
fd8a9a4d81d9
Support #!, to allow XEmacs to be called as a script interpreter.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4380
diff
changeset
|
942 int progname_len = wext_strlen (argv[0]); |
fd8a9a4d81d9
Support #!, to allow XEmacs to be called as a script interpreter.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4380
diff
changeset
|
943 if (progname_len >= SHEBANG_PROGNAME_LENGTH) |
fd8a9a4d81d9
Support #!, to allow XEmacs to be called as a script interpreter.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4380
diff
changeset
|
944 { |
fd8a9a4d81d9
Support #!, to allow XEmacs to be called as a script interpreter.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4380
diff
changeset
|
945 if (!wext_strcmp_ascii (argv[0] + |
fd8a9a4d81d9
Support #!, to allow XEmacs to be called as a script interpreter.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4380
diff
changeset
|
946 (progname_len - SHEBANG_PROGNAME_LENGTH), |
fd8a9a4d81d9
Support #!, to allow XEmacs to be called as a script interpreter.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4380
diff
changeset
|
947 SHEBANG_PROGNAME) |
fd8a9a4d81d9
Support #!, to allow XEmacs to be called as a script interpreter.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4380
diff
changeset
|
948 /* Allow trailing .exe. Don't check it, it could also be |
fd8a9a4d81d9
Support #!, to allow XEmacs to be called as a script interpreter.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4380
diff
changeset
|
949 .com. */ |
fd8a9a4d81d9
Support #!, to allow XEmacs to be called as a script interpreter.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4380
diff
changeset
|
950 || (progname_len >= SHEBANG_EXE_PROGNAME_LENGTH && |
fd8a9a4d81d9
Support #!, to allow XEmacs to be called as a script interpreter.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4380
diff
changeset
|
951 !wext_strncmp_ascii |
fd8a9a4d81d9
Support #!, to allow XEmacs to be called as a script interpreter.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4380
diff
changeset
|
952 (argv[0] + (progname_len - SHEBANG_EXE_PROGNAME_LENGTH), |
fd8a9a4d81d9
Support #!, to allow XEmacs to be called as a script interpreter.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4380
diff
changeset
|
953 SHEBANG_PROGNAME, |
fd8a9a4d81d9
Support #!, to allow XEmacs to be called as a script interpreter.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4380
diff
changeset
|
954 SHEBANG_PROGNAME_LENGTH))) |
fd8a9a4d81d9
Support #!, to allow XEmacs to be called as a script interpreter.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4380
diff
changeset
|
955 { |
fd8a9a4d81d9
Support #!, to allow XEmacs to be called as a script interpreter.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4380
diff
changeset
|
956 Wexttext **newarr = alloca_array (Wexttext *, argc + 2); |
fd8a9a4d81d9
Support #!, to allow XEmacs to be called as a script interpreter.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4380
diff
changeset
|
957 int j; |
fd8a9a4d81d9
Support #!, to allow XEmacs to be called as a script interpreter.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4380
diff
changeset
|
958 |
fd8a9a4d81d9
Support #!, to allow XEmacs to be called as a script interpreter.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4380
diff
changeset
|
959 newarr[0] = argv[0]; |
4932 | 960 newarr[1] = (Wexttext *) WEXTSTRING ("--script"); |
4448
fd8a9a4d81d9
Support #!, to allow XEmacs to be called as a script interpreter.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4380
diff
changeset
|
961 for (j = 1; j < argc; ++j) |
fd8a9a4d81d9
Support #!, to allow XEmacs to be called as a script interpreter.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4380
diff
changeset
|
962 { |
fd8a9a4d81d9
Support #!, to allow XEmacs to be called as a script interpreter.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4380
diff
changeset
|
963 newarr[j + 1] = argv[j]; |
fd8a9a4d81d9
Support #!, to allow XEmacs to be called as a script interpreter.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4380
diff
changeset
|
964 } |
fd8a9a4d81d9
Support #!, to allow XEmacs to be called as a script interpreter.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4380
diff
changeset
|
965 argv = newarr; |
fd8a9a4d81d9
Support #!, to allow XEmacs to be called as a script interpreter.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4380
diff
changeset
|
966 argc++; |
fd8a9a4d81d9
Support #!, to allow XEmacs to be called as a script interpreter.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4380
diff
changeset
|
967 } |
fd8a9a4d81d9
Support #!, to allow XEmacs to be called as a script interpreter.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4380
diff
changeset
|
968 } |
fd8a9a4d81d9
Support #!, to allow XEmacs to be called as a script interpreter.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4380
diff
changeset
|
969 } |
fd8a9a4d81d9
Support #!, to allow XEmacs to be called as a script interpreter.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4380
diff
changeset
|
970 |
428 | 971 sort_args (argc, argv); |
972 | |
2367 | 973 #if 0 /* defined (_SCO_DS) |
974 #### Turn this off, we already have another SCO_DS hack in main(). | |
975 */ | |
428 | 976 environ = envp; |
977 #endif | |
978 | |
979 /* Record (approximately) where the stack begins. */ | |
980 stack_bottom = &stack_bottom_variable; | |
981 | |
982 #ifdef USG_SHARED_LIBRARIES | |
983 if (bss_end) | |
984 brk ((void *) bss_end); | |
985 #endif | |
986 | |
987 clearerr (stdin); | |
988 | |
989 #if defined (HAVE_MMAP) && defined (REL_ALLOC) | |
990 /* ralloc can only be used if using the GNU memory allocator. */ | |
991 init_ralloc (); | |
1303 | 992 #elif defined (REL_ALLOC) && !defined (DOUG_LEA_MALLOC) |
428 | 993 if (initialized) |
1303 | 994 init_ralloc (); |
428 | 995 #endif |
996 | |
997 #ifdef HAVE_SOCKS | |
998 if (initialized) | |
999 SOCKSinit (argv[0]); | |
1000 #endif /* HAVE_SOCKS */ | |
1001 | |
1002 #ifndef SYSTEM_MALLOC | |
1003 if (!initialized) | |
1004 /* Arrange to get warning messages as memory fills up. */ | |
1005 memory_warnings (0, malloc_warning); | |
1006 #endif /* not SYSTEM_MALLOC */ | |
1007 | |
1008 #ifdef SET_EMACS_PRIORITY | |
1009 if (emacs_priority != 0) | |
1010 nice (-emacs_priority); | |
1011 setuid (getuid ()); | |
1012 #endif /* SET_EMACS_PRIORITY */ | |
1013 | |
776 | 1014 /* NOTE NOTE NOTE: Keep the following args in sync with the big list of |
1015 arguments below in standard_args[], with the help text in startup.el, | |
1016 and with the list of non-clobbered variables near where pdump_load() | |
1017 is called! */ | |
854 | 1018 |
776 | 1019 /* Handle the -sd/--show-dump-id switch, which means show the hex dump_id |
1020 and quit */ | |
1021 if (argmatch (argv, argc, "-sd", "--show-dump-id", 0, NULL, &skip_args)) | |
442 | 1022 { |
1023 #ifdef PDUMP | |
1024 printf ("%08x\n", dump_id); | |
1025 #else | |
446 | 1026 printf ("Portable dumper not configured; -sd just forces exit.\n"); |
442 | 1027 #endif |
1028 exit (0); | |
1029 } | |
854 | 1030 |
2015 | 1031 /* Handle the -si/--show-inline-info switch, which means show the |
1032 alignment and max size of the inline data and quit */ | |
1033 if (argmatch (argv, argc, "-si", "--show-inline-info", 0, NULL, &skip_args)) | |
1034 { | |
2720 | 1035 #if defined (PDUMP) && defined (DUMP_IN_EXEC) && !defined (WIN32_NATIVE) |
3094 | 1036 /* #### We really should check for sizeof (size_t) > sizeof (long) */ |
1037 printf ("%lu %lu\n", (unsigned long) dumped_data_max_size (), | |
1038 (unsigned long) dumped_data_align_offset ()); | |
1039 | |
2015 | 1040 #else |
2720 | 1041 printf ("Portable dumper not configured for dumping into executable or windows native; -si just forces exit.\n"); |
2015 | 1042 #endif |
1043 exit (0); | |
1044 } | |
1045 | |
776 | 1046 /* Handle the --no-dump-file/-nd switch, which means don't load the dump |
1047 file (ignored when not using pdump) */ | |
1048 if (argmatch (argv, argc, "-nd", "--no-dump-file", 0, NULL, &skip_args)) | |
1049 nodumpfile = 1; | |
442 | 1050 |
428 | 1051 /* Handle the -batch switch, which means don't do interactive display. */ |
776 | 1052 if (argmatch (argv, argc, "-batch", "--batch", 0, NULL, &skip_args)) |
428 | 1053 { |
1054 #if 0 /* I don't think this is correct. */ | |
1055 inhibit_autoloads = 1; | |
1056 #endif | |
1057 noninteractive = 1; | |
1058 } | |
1059 | |
4448
fd8a9a4d81d9
Support #!, to allow XEmacs to be called as a script interpreter.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4380
diff
changeset
|
1060 { |
fd8a9a4d81d9
Support #!, to allow XEmacs to be called as a script interpreter.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4380
diff
changeset
|
1061 int count_before = skip_args; |
fd8a9a4d81d9
Support #!, to allow XEmacs to be called as a script interpreter.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4380
diff
changeset
|
1062 /* Handle the -script switch, which implies batch and vanilla. The -l |
fd8a9a4d81d9
Support #!, to allow XEmacs to be called as a script interpreter.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4380
diff
changeset
|
1063 part of its functionality is implemented in Lisp. */ |
fd8a9a4d81d9
Support #!, to allow XEmacs to be called as a script interpreter.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4380
diff
changeset
|
1064 if (argmatch (argv, argc, "-script", "--script", 0, NULL, |
fd8a9a4d81d9
Support #!, to allow XEmacs to be called as a script interpreter.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4380
diff
changeset
|
1065 &skip_args)) |
fd8a9a4d81d9
Support #!, to allow XEmacs to be called as a script interpreter.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4380
diff
changeset
|
1066 { |
fd8a9a4d81d9
Support #!, to allow XEmacs to be called as a script interpreter.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4380
diff
changeset
|
1067 noninteractive = 1; |
fd8a9a4d81d9
Support #!, to allow XEmacs to be called as a script interpreter.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4380
diff
changeset
|
1068 vanilla_inhibiting = 1; |
fd8a9a4d81d9
Support #!, to allow XEmacs to be called as a script interpreter.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4380
diff
changeset
|
1069 } |
fd8a9a4d81d9
Support #!, to allow XEmacs to be called as a script interpreter.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4380
diff
changeset
|
1070 |
fd8a9a4d81d9
Support #!, to allow XEmacs to be called as a script interpreter.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4380
diff
changeset
|
1071 /* Don't actually discard this argument. */ |
fd8a9a4d81d9
Support #!, to allow XEmacs to be called as a script interpreter.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4380
diff
changeset
|
1072 skip_args = count_before; |
fd8a9a4d81d9
Support #!, to allow XEmacs to be called as a script interpreter.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4380
diff
changeset
|
1073 } |
771 | 1074 #ifdef WIN32_NATIVE |
826 | 1075 { |
1076 /* Since we aren't a console application, we can't easily be terminated | |
1077 using ^C. (We aren't a console application to avoid Windows from | |
1078 automatically and unwantedly creating a console window for us. If | |
1079 only the Windows designers had some sense in them and didn't create | |
1080 this artificial console/non-console distinction!) Therefore, we set | |
1081 up a communication path with i.exe so that when a ^C is sent to it | |
1082 (using GenerateConsoleCtrlEvent), it in turn signals us to commit | |
1083 suicide. (This is cleaner than using TerminateProcess()). This | |
1084 makes (e.g.) the "Stop Build" command from VC++ correctly terminate | |
1085 XEmacs. */ | |
854 | 1086 |
2367 | 1087 Wexttext *heventstr; |
826 | 1088 if (argmatch (argv, argc, "-mswindows-termination-handle", 0, 0, |
1089 &heventstr, &skip_args)) | |
1090 { | |
2367 | 1091 HANDLE hevent = (HANDLE) wext_atol (heventstr); |
826 | 1092 DWORD unused; |
1093 HANDLE h_thread = CreateThread (NULL, 0, wait_for_termination_signal, | |
1094 (void *) hevent, 0, &unused); | |
1095 CloseHandle (h_thread); | |
1096 } | |
1097 } | |
1098 | |
771 | 1099 /* Handle the -nuni switch, which forces XEmacs to use the ANSI |
1100 versions of Unicode-split API's even on Windows NT, which has | |
1101 full Unicode support. This helps flush out problems in the code | |
1102 we've written to convert between ANSI and Unicode. */ | |
776 | 1103 if (argmatch (argv, argc, "-nuni", "--no-unicode-lib-calls", 0, NULL, |
771 | 1104 &skip_args)) |
1105 no_mswin_unicode_lib_calls = 1; | |
1106 #endif /* WIN32_NATIVE */ | |
1107 | |
428 | 1108 if (argmatch (argv, argc, "-debug-paths", "--debug-paths", |
776 | 1109 0, NULL, &skip_args)) |
1110 debug_paths = 1; | |
1111 | |
1112 /* Handle (maybe partially) some inhibiting flags. Packages are searched | |
1113 prior to the rest of the command line being parsed in startup.el. */ | |
1114 | |
1115 if (argmatch (argv, argc, "-no-packages", "--no-packages", | |
1116 0, NULL, &skip_args)) | |
1117 { | |
1118 inhibit_all_packages = 1; | |
1119 inhibit_early_packages = 1; | |
1120 vanilla_inhibiting = 1; | |
1121 } | |
1122 | |
428 | 1123 if (argmatch (argv, argc, "-no-early-packages", "--no-early-packages", |
776 | 1124 0, NULL, &skip_args)) |
1125 inhibit_early_packages = 1; | |
1126 | |
1127 #ifdef HAVE_SHLIB | |
1128 if (argmatch (argv, argc, "-no-site-modules", "--no-site-modules", | |
1129 0, NULL, &skip_args)) | |
1130 #endif | |
1131 inhibit_site_modules = 1; | |
854 | 1132 |
776 | 1133 if (argmatch (argv, argc, "-vanilla", "--vanilla", |
1134 0, NULL, &skip_args)) | |
428 | 1135 { |
1136 inhibit_early_packages = 1; | |
776 | 1137 vanilla_inhibiting = 1; |
428 | 1138 } |
1139 | |
1140 if (argmatch (argv, argc, "-no-autoloads", "--no-autoloads", | |
776 | 1141 0, NULL, &skip_args)) |
428 | 1142 { |
1143 inhibit_autoloads = 1; | |
776 | 1144 inhibit_early_packages = 1; |
1145 vanilla_inhibiting = 1; | |
428 | 1146 } |
1147 | |
1148 /* Partially handle the -version and -help switches: they imply -batch, | |
1149 but are not removed from the list. */ | |
1150 if (argmatch (argv, argc, "-help", "--help", 3, NULL, &skip_args)) | |
1151 noninteractive = 1, skip_args--; | |
1152 | |
1153 if (argmatch (argv, argc, "-version", "--version", 3, NULL, &skip_args) || | |
1154 argmatch (argv, argc, "-V", 0, 2, NULL, &skip_args)) | |
1155 noninteractive = 1, skip_args--; | |
1156 | |
1157 /* Now, figure out which type of console is our first console. */ | |
1158 | |
1159 if (noninteractive) | |
1160 display_use = "stream"; | |
1315 | 1161 |
1162 if (argmatch (argv, argc, "-nw", "--no-windows", 0, NULL, &skip_args) || | |
1163 argmatch (argv, argc, "-tty", "--use-tty", 0, NULL, &skip_args)) | |
1164 { | |
1165 check_compatible_window_system ("tty"); | |
428 | 1166 #ifndef HAVE_TTY |
1315 | 1167 fatal ("Sorry, this XEmacs was not compiled with TTY support"); |
1168 #endif | |
1169 } | |
1170 | |
1171 if (argmatch (argv, argc, "-x", "--use-x", 0, NULL, &skip_args)) | |
1172 { | |
1173 check_compatible_window_system ("x"); | |
1174 #ifndef HAVE_X_WINDOWS | |
1175 fatal ("Sorry, this XEmacs was not compiled with X support"); | |
1176 #endif | |
1177 } | |
1178 | |
1179 if (argmatch (argv, argc, "-gtk", "--use-gtk", 0, NULL, &skip_args) || | |
1180 argmatch (argv, argc, "-gnome", "--use-gnome", 0, NULL, &skip_args)) | |
1181 { | |
1182 check_compatible_window_system ("gtk"); | |
1183 #ifndef HAVE_GTK | |
1184 fatal ("Sorry, this XEmacs was not compiled with GTK support"); | |
1185 #endif | |
1186 } | |
1187 | |
1188 if (argmatch (argv, argc, "-msw", "--use-ms-windows", 0, NULL, &skip_args)) | |
1189 { | |
1190 check_compatible_window_system ("mswindows"); | |
1191 #ifndef HAVE_MS_WINDOWS | |
1192 fatal ("Sorry, this XEmacs was not compiled with MS Windows support"); | |
1193 #endif | |
1194 } | |
1195 | |
1196 /* Handle other switches implying particular window systems: */ | |
1197 | |
1198 /* Handle the -t switch, which specifies filename to use as terminal */ | |
1199 { | |
2367 | 1200 Wexttext *term; |
1315 | 1201 if (argmatch (argv, argc, "-t", "--terminal", 0, &term, &skip_args)) |
1202 { | |
2367 | 1203 int fd; |
1204 | |
1315 | 1205 check_compatible_window_system ("tty"); |
1206 #ifndef HAVE_TTY | |
1207 fatal ("Sorry, this XEmacs was not compiled with TTY support"); | |
1208 #endif | |
1209 | |
1210 retry_close (0); | |
1211 retry_close (1); | |
2367 | 1212 |
1213 fd = wext_retry_open (term, O_RDWR | OPEN_BINARY, 2); | |
1214 /* Conversions are not possible yet, and printing will be in | |
1215 external format, so strerror() and ttyname() are OK. */ | |
4710
3a87551bfeb5
Fixes for a number of minor warnings issued by gcc. See xemacs-patches message
Jerry James <james@xemacs.org>
parents:
4693
diff
changeset
|
1216 if (fd < 0 || dup (0) < 0) |
2367 | 1217 fatal ("%s: %s", WEXTTEXT_TO_8_BIT (term), strerror (errno)); |
1315 | 1218 if (! isatty (0)) |
2367 | 1219 fatal ("%s: not a tty", WEXTTEXT_TO_8_BIT (term)); |
1315 | 1220 |
1221 #if 0 | |
1222 stderr_out ("Using %s", ttyname (0)); | |
1223 #endif | |
2367 | 1224 stderr_out ("Using %s", WEXTTEXT_TO_8_BIT (term)); |
1315 | 1225 } |
1226 } | |
1227 | |
428 | 1228 /* Stupid kludge to catch command-line display spec. We can't |
1229 handle this argument entirely in window-system-dependent code | |
1230 because we don't even know which window-system-dependent code | |
1231 to run until we've recognized this argument. */ | |
1315 | 1232 { |
428 | 1233 #ifdef HAVE_X_WINDOWS |
2367 | 1234 Wexttext *dpy = 0; |
1315 | 1235 int count_before = skip_args; |
1236 | |
1237 if (argmatch (argv, argc, "-d", "--display", 3, &dpy, &skip_args) || | |
1238 argmatch (argv, argc, "-display", 0, 3, &dpy, &skip_args)) | |
1239 { | |
1240 check_compatible_window_system ("x"); | |
1241 display_arg = 1; | |
1242 } | |
428 | 1243 /* If we have the form --display=NAME, |
1244 convert it into -d name. | |
1245 This requires inserting a new element into argv. */ | |
1246 if (dpy != 0 && skip_args - count_before == 1) | |
1247 { | |
2994 | 1248 Wexttext **new_ = xnew_array (Wexttext *, argc + 2); |
428 | 1249 int j; |
1250 | |
1251 for (j = 0; j < count_before + 1; j++) | |
2994 | 1252 new_[j] = argv[j]; |
4932 | 1253 new_[count_before + 1] = (Wexttext *) WEXTSTRING ("-d"); |
2994 | 1254 new_[count_before + 2] = dpy; |
428 | 1255 for (j = count_before + 2; j <argc; j++) |
2994 | 1256 new_[j + 1] = argv[j]; |
1257 argv = new_; | |
428 | 1258 argc++; |
1259 } | |
1260 /* Change --display to -d, when its arg is separate. */ | |
1261 else if (dpy != 0 && skip_args > count_before | |
1262 && argv[count_before + 1][1] == '-') | |
4932 | 1263 argv[count_before + 1] = (Wexttext *) WEXTSTRING ("-d"); |
428 | 1264 |
1265 /* Don't actually discard this arg. */ | |
1266 skip_args = count_before; | |
1315 | 1267 #endif /* HAVE_X_WINDOWS */ |
1268 } | |
1269 | |
1270 /* If no switch telling us which window system to use, try other | |
1271 possibilities: */ | |
1272 | |
1273 #if defined (HAVE_X_WINDOWS) || defined (HAVE_GTK) | |
1274 if (!display_use) | |
1275 { | |
2367 | 1276 Wexttext *dpy; |
1315 | 1277 /* If there is a non-empty environment var DISPLAY, assume X or GTK, |
1278 but don't set `display_arg', which is only to be set if the | |
1279 display was specified on the command line. */ | |
2367 | 1280 if ((dpy = wext_getenv (WEXTSTRING ("DISPLAY"))) && dpy[0]) |
1315 | 1281 #ifdef HAVE_X_WINDOWS |
1282 /* #### Who gets precedence? X or GTK? For the moment, GTK support is | |
1283 unstable so use X. Maybe eventually we will switch this. */ | |
428 | 1284 display_use = "x"; |
1315 | 1285 #else |
1286 display_use = "gtk"; | |
1287 #endif | |
1288 } | |
1289 #endif /* defined (HAVE_X_WINDOWS) || defined (HAVE_GTK) */ | |
1290 | |
428 | 1291 #ifdef HAVE_MS_WINDOWS |
1315 | 1292 if (!display_use) |
1293 display_use = "mswindows"; | |
428 | 1294 #endif /* HAVE_MS_WINDOWS */ |
1315 | 1295 |
1296 #ifdef HAVE_TTY | |
1297 if (!display_use) | |
1298 display_use = "tty"; | |
1299 #endif /* HAVE_MS_WINDOWS */ | |
1300 | |
1301 if (!display_use) | |
1302 fatal ("No window systems and no TTY's in this XEmacs: Must specify " | |
1303 "-batch"); | |
428 | 1304 |
1305 noninteractive1 = noninteractive; | |
1306 | |
1307 /****** Now initialize everything *******/ | |
1308 | |
1204 | 1309 /* NOTE NOTE NOTE: |
1310 | |
1311 In the code below, there are three different states we are concerned | |
1312 about: | |
1313 | |
1314 "raw-temacs" == No dumped Lisp data present. `temacs', or (with pdump) | |
1315 `xemacs -nd'. | |
1316 | |
1317 "run-temacs" == We are restarting. run-emacs-from-temacs is called, | |
1318 aka `run-temacs' on the command line. | |
1319 | |
1320 "post-dump" == We are running an unexec()ed XEmacs, or we have loaded | |
1321 dump data using pdump_load(). | |
1322 | |
1323 initialized==0 => raw-temacs | |
1324 initialized!=0 && restart!=0 => run-temacs | |
1325 initialized!=0 && restart==0 => post-dump | |
1326 | |
1327 When post-pdump_load(), we need to reinitialize various structures. | |
1328 This case is noted in the code below by | |
1329 | |
1330 initialized + | |
1331 !restart + | |
1332 ifdef PDUMP. | |
1333 | |
1334 In the comments below, "dump time" or "dumping" == raw-temacs. | |
1335 "run time" == run-temacs or post-dump. | |
1336 */ | |
1337 | |
428 | 1338 /* First, do really basic environment initialization -- catching signals |
1339 and the like. These functions have no dependence on any part of | |
1340 the Lisp engine and need to be done both at dump time and at run time. */ | |
1341 | |
1342 init_signals_very_early (); | |
3092 | 1343 #ifdef NEW_GC |
1344 vdb_install_signal_handler (); | |
3263 | 1345 #endif /* NEW_GC */ |
428 | 1346 init_data_very_early (); /* Catch math errors. */ |
1347 init_floatfns_very_early (); /* Catch floating-point math errors. */ | |
1348 init_process_times_very_early (); /* Initialize our process timers. | |
1349 As early as possible, of course, | |
1350 so we can be fairly accurate. */ | |
771 | 1351 |
657 | 1352 #ifdef HAVE_MS_WINDOWS |
2367 | 1353 /* Depends on XEUNICODE_P */ |
771 | 1354 init_mswindows_dde_very_early (); /* DDE needs to be initialized early so |
1355 that the client doesn't give up | |
1356 waiting. */ | |
657 | 1357 #endif |
428 | 1358 |
1359 /* Now initialize the Lisp engine and the like. Done only during | |
1360 dumping. No dependence on anything that may be in the user's | |
1361 environment when the dumped XEmacs is run. | |
1362 | |
1363 We try to do things in an order that minimizes the non-obvious | |
1364 dependencies between functions. */ | |
1365 | |
1330 | 1366 /* purify_flag is set to indicate we are dumping (its name refers to |
1367 purespace, which no longer exists and was a way of marking some | |
1368 areas read-only so they could be shared among many processes). | |
1369 | |
1370 loadup.el will set to nil at end. */ | |
428 | 1371 |
1372 purify_flag = 0; | |
1373 #ifdef PDUMP | |
1204 | 1374 in_pdump = 0; |
428 | 1375 if (restart) |
1376 initialized = 1; | |
771 | 1377 else if (nodumpfile) |
1378 { | |
1379 initialized = 0; | |
442 | 1380 purify_flag = 1; |
771 | 1381 } |
1382 else | |
1383 { | |
1384 | |
1385 /* Keep command options from getting stomped. | |
1386 | |
1387 Some LISP-visible options are changed by XEmacs _after_ the data is | |
1388 dumped in building a --pdump XEmacs, but _before_ it is restored in | |
1389 normal operation. Thus the restored values overwrite the values | |
1390 XEmacs is getting at run-time. Such variables must be saved here, | |
1391 and restored after loading the dumped data. | |
1392 | |
776 | 1393 (Remember: Only LISP-visible options that are set up to this point |
1394 need to be listed here.) | |
771 | 1395 */ |
1396 | |
1397 /* noninteractive1 is saved in noninteractive, which isn't | |
1398 LISP-visible */ | |
1399 int inhibit_early_packages_save = inhibit_early_packages; | |
1400 int inhibit_autoloads_save = inhibit_autoloads; | |
776 | 1401 int inhibit_all_packages_save = inhibit_all_packages; |
1402 int vanilla_inhibiting_save = vanilla_inhibiting; | |
771 | 1403 int debug_paths_save = debug_paths; |
776 | 1404 int inhibit_site_lisp_save = inhibit_site_lisp; |
771 | 1405 int inhibit_site_modules_save = inhibit_site_modules; |
1406 | |
1407 initialized = pdump_load (argv[0]); | |
1408 | |
1409 /* Now unstomp everything */ | |
1410 noninteractive1 = noninteractive; | |
1411 inhibit_early_packages = inhibit_early_packages_save; | |
1412 inhibit_autoloads = inhibit_autoloads_save; | |
776 | 1413 inhibit_all_packages = inhibit_all_packages_save; |
1414 vanilla_inhibiting = vanilla_inhibiting_save; | |
771 | 1415 debug_paths = debug_paths_save; |
776 | 1416 inhibit_site_lisp = inhibit_site_lisp_save; |
771 | 1417 inhibit_site_modules = inhibit_site_modules_save; |
1418 | |
1419 if (initialized) | |
3466 | 1420 run_temacs_argc = -1; |
771 | 1421 else |
1422 purify_flag = 1; | |
1423 } | |
2367 | 1424 #else /* not PDUMP */ |
428 | 1425 if (!initialized) |
1426 purify_flag = 1; | |
1427 #endif | |
1428 | |
1204 | 1429 init_alloc_early (); |
1430 | |
3092 | 1431 init_gc_early (); |
1432 | |
428 | 1433 if (!initialized) |
1434 { | |
1435 /* Initialize things so that new Lisp objects | |
1436 can be created and objects can be staticpro'd. | |
1437 Must be basically the very first thing done | |
1438 because pretty much all of the initialization | |
1439 routines below create new objects. */ | |
1440 init_alloc_once_early (); | |
1441 | |
3092 | 1442 init_gc_once_early (); |
1443 | |
428 | 1444 /* Initialize Qnil, Qt, Qunbound, and the |
1445 obarray. After this, symbols can be | |
442 | 1446 interned. This depends on init_alloc_once_early(). */ |
428 | 1447 init_symbols_once_early (); |
1448 | |
1449 /* Declare the basic symbols pertaining to errors, | |
442 | 1450 So that DEFERROR*() can be called. */ |
428 | 1451 init_errors_once_early (); |
1452 | |
1453 /* Make sure that opaque pointers can be created. */ | |
1454 init_opaque_once_early (); | |
1455 | |
771 | 1456 /* Make sure that hash tables can be created. */ |
1457 init_elhash_once_early (); | |
1458 | |
1459 /* Make sure that eistrings can be created. */ | |
1460 init_eistring_once_early (); | |
5157
1fae11d56ad2
redo memory-usage mechanism, add way of dynamically initializing Lisp objects
Ben Wing <ben@xemacs.org>
parents:
5128
diff
changeset
|
1461 } |
1fae11d56ad2
redo memory-usage mechanism, add way of dynamically initializing Lisp objects
Ben Wing <ben@xemacs.org>
parents:
5128
diff
changeset
|
1462 #ifdef PDUMP |
1fae11d56ad2
redo memory-usage mechanism, add way of dynamically initializing Lisp objects
Ben Wing <ben@xemacs.org>
parents:
5128
diff
changeset
|
1463 else if (!restart) /* after successful pdump_load() |
1fae11d56ad2
redo memory-usage mechanism, add way of dynamically initializing Lisp objects
Ben Wing <ben@xemacs.org>
parents:
5128
diff
changeset
|
1464 (note, we are inside ifdef PDUMP) */ |
1fae11d56ad2
redo memory-usage mechanism, add way of dynamically initializing Lisp objects
Ben Wing <ben@xemacs.org>
parents:
5128
diff
changeset
|
1465 { |
1fae11d56ad2
redo memory-usage mechanism, add way of dynamically initializing Lisp objects
Ben Wing <ben@xemacs.org>
parents:
5128
diff
changeset
|
1466 reinit_alloc_early (); |
1fae11d56ad2
redo memory-usage mechanism, add way of dynamically initializing Lisp objects
Ben Wing <ben@xemacs.org>
parents:
5128
diff
changeset
|
1467 reinit_gc_early (); |
1fae11d56ad2
redo memory-usage mechanism, add way of dynamically initializing Lisp objects
Ben Wing <ben@xemacs.org>
parents:
5128
diff
changeset
|
1468 reinit_symbols_early (); |
5255
b5611afbcc76
Support process plists, for greater GNU compatibility.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5231
diff
changeset
|
1469 reinit_process_early (); |
5157
1fae11d56ad2
redo memory-usage mechanism, add way of dynamically initializing Lisp objects
Ben Wing <ben@xemacs.org>
parents:
5128
diff
changeset
|
1470 #ifndef NEW_GC |
1fae11d56ad2
redo memory-usage mechanism, add way of dynamically initializing Lisp objects
Ben Wing <ben@xemacs.org>
parents:
5128
diff
changeset
|
1471 reinit_opaque_early (); |
1fae11d56ad2
redo memory-usage mechanism, add way of dynamically initializing Lisp objects
Ben Wing <ben@xemacs.org>
parents:
5128
diff
changeset
|
1472 #endif /* not NEW_GC */ |
1fae11d56ad2
redo memory-usage mechanism, add way of dynamically initializing Lisp objects
Ben Wing <ben@xemacs.org>
parents:
5128
diff
changeset
|
1473 reinit_eistring_early (); |
1fae11d56ad2
redo memory-usage mechanism, add way of dynamically initializing Lisp objects
Ben Wing <ben@xemacs.org>
parents:
5128
diff
changeset
|
1474 #ifdef WITH_NUMBER_TYPES |
1fae11d56ad2
redo memory-usage mechanism, add way of dynamically initializing Lisp objects
Ben Wing <ben@xemacs.org>
parents:
5128
diff
changeset
|
1475 reinit_vars_of_number (); |
1fae11d56ad2
redo memory-usage mechanism, add way of dynamically initializing Lisp objects
Ben Wing <ben@xemacs.org>
parents:
5128
diff
changeset
|
1476 #endif |
1fae11d56ad2
redo memory-usage mechanism, add way of dynamically initializing Lisp objects
Ben Wing <ben@xemacs.org>
parents:
5128
diff
changeset
|
1477 } |
1fae11d56ad2
redo memory-usage mechanism, add way of dynamically initializing Lisp objects
Ben Wing <ben@xemacs.org>
parents:
5128
diff
changeset
|
1478 #endif /* PDUMP */ |
1fae11d56ad2
redo memory-usage mechanism, add way of dynamically initializing Lisp objects
Ben Wing <ben@xemacs.org>
parents:
5128
diff
changeset
|
1479 |
1fae11d56ad2
redo memory-usage mechanism, add way of dynamically initializing Lisp objects
Ben Wing <ben@xemacs.org>
parents:
5128
diff
changeset
|
1480 if (!initialized) |
1fae11d56ad2
redo memory-usage mechanism, add way of dynamically initializing Lisp objects
Ben Wing <ben@xemacs.org>
parents:
5128
diff
changeset
|
1481 { |
428 | 1482 /* Now declare all the symbols and define all the Lisp primitives. |
1483 | |
1484 The *only* thing that the syms_of_*() functions are allowed to do | |
442 | 1485 is call one of the following: |
1486 | |
5117
3742ea8250b5
Checking in final CVS version of workspace 'ben-lisp-object'
Ben Wing <ben@xemacs.org>
parents:
3024
diff
changeset
|
1487 INIT_LISP_OBJECT() |
442 | 1488 defsymbol(), DEFSYMBOL(), or DEFSYMBOL_MULTIWORD_PREDICATE() |
428 | 1489 defsubr() (i.e. DEFSUBR) |
442 | 1490 deferror(), DEFERROR(), or DEFERROR_STANDARD() |
1491 defkeyword() or DEFKEYWORD() | |
563 | 1492 Fput() |
428 | 1493 |
1494 Order does not matter in these functions. | |
1495 */ | |
1496 | |
1497 syms_of_abbrev (); | |
1498 syms_of_alloc (); | |
3263 | 1499 #ifdef NEW_GC |
2720 | 1500 syms_of_mc_alloc (); |
3263 | 1501 #endif /* NEW_GC */ |
3092 | 1502 syms_of_gc (); |
1503 #ifdef NEW_GC | |
1504 syms_of_vdb (); | |
1505 #endif /* NEW_GC */ | |
5168
cf900a2f1fa3
extract gap array from extents.c, use in range tables
Ben Wing <ben@xemacs.org>
parents:
5160
diff
changeset
|
1506 syms_of_array (); |
428 | 1507 syms_of_buffer (); |
1508 syms_of_bytecode (); | |
1509 syms_of_callint (); | |
1510 syms_of_casefiddle (); | |
1511 syms_of_casetab (); | |
1512 syms_of_chartab (); | |
1513 syms_of_cmdloop (); | |
1514 syms_of_cmds (); | |
1515 syms_of_console (); | |
1516 syms_of_data (); | |
1517 #ifdef DEBUG_XEMACS | |
1518 syms_of_debug (); | |
440 | 1519 syms_of_tests (); |
428 | 1520 #endif /* DEBUG_XEMACS */ |
1521 syms_of_device (); | |
1522 #ifdef HAVE_DIALOGS | |
1523 syms_of_dialog (); | |
1524 #endif | |
1525 syms_of_dired (); | |
1526 syms_of_doc (); | |
1527 syms_of_editfns (); | |
1528 syms_of_elhash (); | |
1529 syms_of_emacs (); | |
1530 syms_of_eval (); | |
1531 #ifdef HAVE_X_WINDOWS | |
1532 syms_of_event_Xt (); | |
1533 #endif | |
462 | 1534 #ifdef HAVE_GTK |
1535 syms_of_event_gtk (); | |
1536 #endif | |
428 | 1537 #ifdef HAVE_DRAGNDROP |
1538 syms_of_dragdrop (); | |
1539 #endif | |
1540 syms_of_event_stream (); | |
1541 syms_of_events (); | |
1542 syms_of_extents (); | |
1543 syms_of_faces (); | |
1544 syms_of_fileio (); | |
1545 #ifdef CLASH_DETECTION | |
1546 syms_of_filelock (); | |
1547 #endif /* CLASH_DETECTION */ | |
1548 syms_of_floatfns (); | |
1549 syms_of_fns (); | |
826 | 1550 #ifdef USE_C_FONT_LOCK |
428 | 1551 syms_of_font_lock (); |
826 | 1552 #endif /* USE_C_FONT_LOCK */ |
428 | 1553 syms_of_frame (); |
1554 syms_of_general (); | |
1555 syms_of_glyphs (); | |
5091 | 1556 #ifdef HAVE_WINDOW_SYSTEM |
428 | 1557 syms_of_glyphs_eimage (); |
563 | 1558 syms_of_glyphs_shared (); |
5091 | 1559 #endif |
428 | 1560 syms_of_glyphs_widget (); |
1561 syms_of_gui (); | |
1562 syms_of_gutter (); | |
1563 syms_of_indent (); | |
1564 syms_of_intl (); | |
1565 syms_of_keymap (); | |
1566 syms_of_lread (); | |
5157
1fae11d56ad2
redo memory-usage mechanism, add way of dynamically initializing Lisp objects
Ben Wing <ben@xemacs.org>
parents:
5128
diff
changeset
|
1567 syms_of_lstream (); |
428 | 1568 syms_of_macros (); |
1569 syms_of_marker (); | |
1570 syms_of_md5 (); | |
1571 #ifdef HAVE_DATABASE | |
1572 syms_of_database (); | |
1573 #endif | |
1574 #ifdef HAVE_MENUBARS | |
1575 syms_of_menubar (); | |
1576 #endif | |
1577 syms_of_minibuf (); | |
1578 #ifdef HAVE_SHLIB | |
1579 syms_of_module (); | |
1580 #endif | |
1983 | 1581 #ifdef WITH_NUMBER_TYPES |
1582 syms_of_number (); | |
1583 #endif | |
5176
8b2f75cecb89
rename objects* (.c, .h and .el files) to fontcolor*
Ben Wing <ben@xemacs.org>
parents:
5050
diff
changeset
|
1584 syms_of_fontcolor (); |
428 | 1585 syms_of_print (); |
1586 syms_of_process (); | |
1587 #ifdef HAVE_WIN32_PROCESSES | |
1588 syms_of_process_nt (); | |
1589 #endif | |
1590 syms_of_profile (); | |
1303 | 1591 #if defined (HAVE_MMAP) && defined (REL_ALLOC) && !defined (DOUG_LEA_MALLOC) |
428 | 1592 syms_of_ralloc (); |
1593 #endif /* HAVE_MMAP && REL_ALLOC */ | |
1594 syms_of_rangetab (); | |
1595 syms_of_redisplay (); | |
1596 syms_of_search (); | |
1597 syms_of_select (); | |
1598 syms_of_signal (); | |
1599 syms_of_sound (); | |
1600 syms_of_specifier (); | |
1601 syms_of_symbols (); | |
1602 syms_of_syntax (); | |
1603 #ifdef HAVE_SCROLLBARS | |
1604 syms_of_scrollbar (); | |
1605 #endif | |
771 | 1606 syms_of_text (); |
428 | 1607 #ifdef HAVE_TOOLBARS |
1608 syms_of_toolbar (); | |
1609 #endif | |
1610 syms_of_undo (); | |
1611 syms_of_widget (); | |
1612 syms_of_window (); | |
1613 | |
1614 #ifdef HAVE_TTY | |
1615 syms_of_console_tty (); | |
1616 syms_of_device_tty (); | |
771 | 1617 syms_of_frame_tty (); |
5176
8b2f75cecb89
rename objects* (.c, .h and .el files) to fontcolor*
Ben Wing <ben@xemacs.org>
parents:
5050
diff
changeset
|
1618 syms_of_fontcolor_tty (); |
428 | 1619 #endif |
1620 | |
462 | 1621 #ifdef HAVE_GTK |
1622 syms_of_device_gtk (); | |
1623 syms_of_frame_gtk (); | |
1624 syms_of_glyphs_gtk (); | |
5176
8b2f75cecb89
rename objects* (.c, .h and .el files) to fontcolor*
Ben Wing <ben@xemacs.org>
parents:
5050
diff
changeset
|
1625 syms_of_fontcolor_gtk (); |
462 | 1626 syms_of_ui_gtk (); |
1627 syms_of_select_gtk (); | |
1628 #ifdef HAVE_DIALOGS | |
1629 syms_of_dialog_gtk (); | |
1630 #endif | |
1631 #ifdef HAVE_MENUBARS | |
1632 syms_of_menubar_gtk (); | |
1633 #endif | |
1634 syms_of_select_gtk (); | |
854 | 1635 |
771 | 1636 #ifdef HAVE_GUI_OBJECTS |
462 | 1637 syms_of_gui_gtk (); |
1638 #endif | |
1639 #endif /* HAVE_GTK */ | |
1640 | |
428 | 1641 #ifdef HAVE_X_WINDOWS |
442 | 1642 #ifdef HAVE_BALLOON_HELP |
440 | 1643 syms_of_balloon_x (); |
442 | 1644 #endif |
428 | 1645 syms_of_device_x (); |
771 | 1646 #ifdef HAVE_X_DIALOGS |
428 | 1647 syms_of_dialog_x (); |
1648 #endif | |
1649 syms_of_frame_x (); | |
1650 syms_of_glyphs_x (); | |
5176
8b2f75cecb89
rename objects* (.c, .h and .el files) to fontcolor*
Ben Wing <ben@xemacs.org>
parents:
5050
diff
changeset
|
1651 syms_of_fontcolor_x (); |
428 | 1652 #ifdef HAVE_MENUBARS |
1653 syms_of_menubar_x (); | |
1654 #endif | |
440 | 1655 syms_of_select_x (); |
771 | 1656 #ifdef HAVE_GUI_OBJECTS |
428 | 1657 syms_of_gui_x (); |
1658 #endif | |
771 | 1659 syms_of_intl_x (); |
428 | 1660 #ifdef HAVE_XIM |
1661 #ifdef XIM_XLIB | |
1662 syms_of_input_method_xlib (); | |
1663 #endif | |
1664 #endif /* HAVE_XIM */ | |
3094 | 1665 |
4916
a6c778975d7d
split USE_XFT into HAVE_XFT/USE_XFT
Ben Wing <ben@xemacs.org>
parents:
4871
diff
changeset
|
1666 #ifdef HAVE_XFT |
3354 | 1667 syms_of_font_mgr(); |
3094 | 1668 #endif |
1669 | |
428 | 1670 #endif /* HAVE_X_WINDOWS */ |
1671 | |
1672 #ifdef HAVE_MS_WINDOWS | |
1673 syms_of_console_mswindows (); | |
1674 syms_of_device_mswindows (); | |
903 | 1675 syms_of_event_mswindows (); |
771 | 1676 #ifdef HAVE_DIALOGS |
442 | 1677 syms_of_dialog_mswindows (); |
771 | 1678 #endif |
428 | 1679 syms_of_frame_mswindows (); |
5176
8b2f75cecb89
rename objects* (.c, .h and .el files) to fontcolor*
Ben Wing <ben@xemacs.org>
parents:
5050
diff
changeset
|
1680 syms_of_fontcolor_mswindows (); |
428 | 1681 syms_of_select_mswindows (); |
1682 syms_of_glyphs_mswindows (); | |
771 | 1683 #ifdef HAVE_GUI_OBJECTS |
440 | 1684 syms_of_gui_mswindows (); |
771 | 1685 #endif |
428 | 1686 #ifdef HAVE_MENUBARS |
1687 syms_of_menubar_mswindows (); | |
1688 #endif | |
1689 #ifdef HAVE_SCROLLBARS | |
1690 syms_of_scrollbar_mswindows (); | |
1691 #endif | |
442 | 1692 #endif /* HAVE_MS_WINDOWS */ |
902 | 1693 #ifdef WIN32_NATIVE |
428 | 1694 syms_of_dired_mswindows (); |
771 | 1695 syms_of_nt (); |
428 | 1696 #endif |
1315 | 1697 #ifdef WIN32_ANY |
442 | 1698 syms_of_win32 (); |
1699 #endif | |
428 | 1700 |
771 | 1701 syms_of_file_coding (); |
1702 syms_of_unicode (); | |
428 | 1703 #ifdef MULE |
1704 syms_of_mule_ccl (); | |
1705 syms_of_mule_charset (); | |
771 | 1706 syms_of_mule_coding (); |
428 | 1707 #ifdef HAVE_WNN |
1708 syms_of_mule_wnn (); | |
1709 #endif | |
2973 | 1710 #if defined(HAVE_CANNA) && !defined (HAVE_SHLIB) |
1711 syms_of_canna_api (); | |
428 | 1712 #endif /* HAVE_CANNA */ |
1713 #endif /* MULE */ | |
1714 | |
1315 | 1715 #ifdef WIN32_ANY |
771 | 1716 syms_of_intl_win32 (); |
1717 #endif | |
1718 | |
428 | 1719 #ifdef SYMS_SYSTEM |
1720 SYMS_SYSTEM; | |
1721 #endif | |
1722 | |
1723 #ifdef SYMS_MACHINE | |
1724 SYMS_MACHINE; | |
1725 #endif | |
1726 | |
1727 /* Prior to XEmacs 21, this was `#if 0'ed out. -slb */ | |
1728 #if defined (LOSING_GCC_DESTRUCTOR_FREE_BUG) | |
1729 syms_of_free_hook (); | |
1730 #endif | |
1731 | |
1732 #ifdef TOOLTALK | |
1733 syms_of_tooltalk (); | |
1734 #endif | |
1735 | |
1736 #ifdef SUNPRO | |
1737 syms_of_sunpro (); | |
1738 #endif | |
1739 | |
996 | 1740 #if defined (HAVE_LDAP) && !defined (HAVE_SHLIB) |
428 | 1741 syms_of_eldap (); |
1742 #endif | |
1743 | |
1744 #ifdef HAVE_GPM | |
442 | 1745 syms_of_gpmevent (); |
1746 #endif | |
1747 | |
996 | 1748 #if defined (HAVE_POSTGRESQL) && !defined (HAVE_SHLIB) |
442 | 1749 syms_of_postgresql (); |
428 | 1750 #endif |
5157
1fae11d56ad2
redo memory-usage mechanism, add way of dynamically initializing Lisp objects
Ben Wing <ben@xemacs.org>
parents:
5128
diff
changeset
|
1751 } |
1fae11d56ad2
redo memory-usage mechanism, add way of dynamically initializing Lisp objects
Ben Wing <ben@xemacs.org>
parents:
5128
diff
changeset
|
1752 |
1fae11d56ad2
redo memory-usage mechanism, add way of dynamically initializing Lisp objects
Ben Wing <ben@xemacs.org>
parents:
5128
diff
changeset
|
1753 if (!initialized |
1fae11d56ad2
redo memory-usage mechanism, add way of dynamically initializing Lisp objects
Ben Wing <ben@xemacs.org>
parents:
5128
diff
changeset
|
1754 #ifdef PDUMP |
1fae11d56ad2
redo memory-usage mechanism, add way of dynamically initializing Lisp objects
Ben Wing <ben@xemacs.org>
parents:
5128
diff
changeset
|
1755 || !restart |
1fae11d56ad2
redo memory-usage mechanism, add way of dynamically initializing Lisp objects
Ben Wing <ben@xemacs.org>
parents:
5128
diff
changeset
|
1756 #endif |
1fae11d56ad2
redo memory-usage mechanism, add way of dynamically initializing Lisp objects
Ben Wing <ben@xemacs.org>
parents:
5128
diff
changeset
|
1757 ) |
1fae11d56ad2
redo memory-usage mechanism, add way of dynamically initializing Lisp objects
Ben Wing <ben@xemacs.org>
parents:
5128
diff
changeset
|
1758 { |
1fae11d56ad2
redo memory-usage mechanism, add way of dynamically initializing Lisp objects
Ben Wing <ben@xemacs.org>
parents:
5128
diff
changeset
|
1759 buffer_objects_create (); |
5560
58b38d5b32d0
Implement print-circle, allowing recursive and circular structures to be read.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5474
diff
changeset
|
1760 bytecode_objects_create (); |
5170
5ddbab03b0e6
various fixes to memory-usage stats
Ben Wing <ben@xemacs.org>
parents:
5169
diff
changeset
|
1761 casetab_objects_create (); |
5560
58b38d5b32d0
Implement print-circle, allowing recursive and circular structures to be read.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5474
diff
changeset
|
1762 chartab_objects_create (); |
5157
1fae11d56ad2
redo memory-usage mechanism, add way of dynamically initializing Lisp objects
Ben Wing <ben@xemacs.org>
parents:
5128
diff
changeset
|
1763 extent_objects_create (); |
1fae11d56ad2
redo memory-usage mechanism, add way of dynamically initializing Lisp objects
Ben Wing <ben@xemacs.org>
parents:
5128
diff
changeset
|
1764 face_objects_create (); |
5158
9e0b43d3095c
more cleanups to object-memory-usage stuff
Ben Wing <ben@xemacs.org>
parents:
5157
diff
changeset
|
1765 frame_objects_create (); |
5157
1fae11d56ad2
redo memory-usage mechanism, add way of dynamically initializing Lisp objects
Ben Wing <ben@xemacs.org>
parents:
5128
diff
changeset
|
1766 glyph_objects_create (); |
5158
9e0b43d3095c
more cleanups to object-memory-usage stuff
Ben Wing <ben@xemacs.org>
parents:
5157
diff
changeset
|
1767 hash_table_objects_create (); |
5157
1fae11d56ad2
redo memory-usage mechanism, add way of dynamically initializing Lisp objects
Ben Wing <ben@xemacs.org>
parents:
5128
diff
changeset
|
1768 lstream_objects_create (); |
5160
ab9ee10a53e4
fix various problems with allocation statistics, track overhead properly
Ben Wing <ben@xemacs.org>
parents:
5158
diff
changeset
|
1769 #ifdef MULE |
5157
1fae11d56ad2
redo memory-usage mechanism, add way of dynamically initializing Lisp objects
Ben Wing <ben@xemacs.org>
parents:
5128
diff
changeset
|
1770 mule_charset_objects_create (); |
5160
ab9ee10a53e4
fix various problems with allocation statistics, track overhead properly
Ben Wing <ben@xemacs.org>
parents:
5158
diff
changeset
|
1771 #endif |
5560
58b38d5b32d0
Implement print-circle, allowing recursive and circular structures to be read.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5474
diff
changeset
|
1772 rangetab_objects_create (); |
5170
5ddbab03b0e6
various fixes to memory-usage stats
Ben Wing <ben@xemacs.org>
parents:
5169
diff
changeset
|
1773 #ifdef HAVE_SCROLLBARS |
5ddbab03b0e6
various fixes to memory-usage stats
Ben Wing <ben@xemacs.org>
parents:
5169
diff
changeset
|
1774 scrollbar_objects_create (); |
5ddbab03b0e6
various fixes to memory-usage stats
Ben Wing <ben@xemacs.org>
parents:
5169
diff
changeset
|
1775 #endif |
5179
14fda1dbdb26
add memory usage info for specifiers
Ben Wing <ben@xemacs.org>
parents:
5170
diff
changeset
|
1776 specifier_objects_create (); |
5157
1fae11d56ad2
redo memory-usage mechanism, add way of dynamically initializing Lisp objects
Ben Wing <ben@xemacs.org>
parents:
5128
diff
changeset
|
1777 #ifdef HAVE_GTK |
1fae11d56ad2
redo memory-usage mechanism, add way of dynamically initializing Lisp objects
Ben Wing <ben@xemacs.org>
parents:
5128
diff
changeset
|
1778 ui_gtk_objects_create (); |
1fae11d56ad2
redo memory-usage mechanism, add way of dynamically initializing Lisp objects
Ben Wing <ben@xemacs.org>
parents:
5128
diff
changeset
|
1779 #endif |
1fae11d56ad2
redo memory-usage mechanism, add way of dynamically initializing Lisp objects
Ben Wing <ben@xemacs.org>
parents:
5128
diff
changeset
|
1780 window_objects_create (); |
1fae11d56ad2
redo memory-usage mechanism, add way of dynamically initializing Lisp objects
Ben Wing <ben@xemacs.org>
parents:
5128
diff
changeset
|
1781 } |
1fae11d56ad2
redo memory-usage mechanism, add way of dynamically initializing Lisp objects
Ben Wing <ben@xemacs.org>
parents:
5128
diff
changeset
|
1782 |
1fae11d56ad2
redo memory-usage mechanism, add way of dynamically initializing Lisp objects
Ben Wing <ben@xemacs.org>
parents:
5128
diff
changeset
|
1783 if (!initialized) |
1fae11d56ad2
redo memory-usage mechanism, add way of dynamically initializing Lisp objects
Ben Wing <ben@xemacs.org>
parents:
5128
diff
changeset
|
1784 { |
428 | 1785 /* Now create the subtypes for the types that have them. |
1786 We do this before the vars_*() because more symbols | |
1787 may get initialized here. */ | |
1788 | |
1789 /* Now initialize the console types and associated symbols. | |
1790 Other than the first function below, the functions may | |
1791 make exactly the following function/macro calls: | |
1792 | |
1793 INITIALIZE_CONSOLE_TYPE() | |
1794 CONSOLE_HAS_METHOD() | |
1795 | |
1796 For any given console type, the former macro must be called | |
1797 before the any calls to the latter macro. */ | |
1798 | |
1799 console_type_create (); | |
1800 | |
1801 console_type_create_stream (); | |
1802 | |
1803 #ifdef HAVE_TTY | |
1804 console_type_create_tty (); | |
1805 console_type_create_device_tty (); | |
1806 console_type_create_frame_tty (); | |
5176
8b2f75cecb89
rename objects* (.c, .h and .el files) to fontcolor*
Ben Wing <ben@xemacs.org>
parents:
5050
diff
changeset
|
1807 console_type_create_fontcolor_tty (); |
428 | 1808 console_type_create_redisplay_tty (); |
1809 #endif | |
1810 | |
462 | 1811 #ifdef HAVE_GTK |
1812 console_type_create_gtk (); | |
1813 console_type_create_select_gtk (); | |
1814 console_type_create_device_gtk (); | |
1815 console_type_create_frame_gtk (); | |
5176
8b2f75cecb89
rename objects* (.c, .h and .el files) to fontcolor*
Ben Wing <ben@xemacs.org>
parents:
5050
diff
changeset
|
1816 console_type_create_fontcolor_gtk (); |
462 | 1817 console_type_create_glyphs_gtk (); |
1818 console_type_create_redisplay_gtk (); | |
1819 #ifdef HAVE_MENUBARS | |
1820 console_type_create_menubar_gtk (); | |
1821 #endif | |
1822 #ifdef HAVE_SCROLLBARS | |
1823 console_type_create_scrollbar_gtk (); | |
1824 #endif | |
1825 #ifdef HAVE_TOOLBARS | |
1826 console_type_create_toolbar_gtk (); | |
1827 #endif | |
1828 #ifdef HAVE_DIALOGS | |
1829 console_type_create_dialog_gtk (); | |
1830 #endif | |
1831 #endif /* HAVE_GTK */ | |
1832 | |
428 | 1833 #ifdef HAVE_X_WINDOWS |
1834 console_type_create_x (); | |
1835 console_type_create_device_x (); | |
1836 console_type_create_frame_x (); | |
1837 console_type_create_glyphs_x (); | |
1838 console_type_create_select_x (); | |
1839 #ifdef HAVE_MENUBARS | |
1840 console_type_create_menubar_x (); | |
1841 #endif | |
5176
8b2f75cecb89
rename objects* (.c, .h and .el files) to fontcolor*
Ben Wing <ben@xemacs.org>
parents:
5050
diff
changeset
|
1842 console_type_create_fontcolor_x (); |
428 | 1843 console_type_create_redisplay_x (); |
1844 #ifdef HAVE_SCROLLBARS | |
1845 console_type_create_scrollbar_x (); | |
1846 #endif | |
1847 #ifdef HAVE_TOOLBARS | |
1848 console_type_create_toolbar_x (); | |
1849 #endif | |
771 | 1850 #ifdef HAVE_X_DIALOGS |
428 | 1851 console_type_create_dialog_x (); |
1852 #endif | |
1853 #endif /* HAVE_X_WINDOWS */ | |
1854 | |
1855 #ifdef HAVE_MS_WINDOWS | |
1856 console_type_create_mswindows (); | |
1857 console_type_create_device_mswindows (); | |
1858 console_type_create_frame_mswindows (); | |
5176
8b2f75cecb89
rename objects* (.c, .h and .el files) to fontcolor*
Ben Wing <ben@xemacs.org>
parents:
5050
diff
changeset
|
1859 console_type_create_fontcolor_mswindows (); |
428 | 1860 console_type_create_redisplay_mswindows (); |
1861 console_type_create_glyphs_mswindows (); | |
1862 console_type_create_select_mswindows (); | |
1863 # ifdef HAVE_SCROLLBARS | |
1864 console_type_create_scrollbar_mswindows (); | |
1865 # endif | |
1866 #ifdef HAVE_MENUBARS | |
1867 console_type_create_menubar_mswindows (); | |
1868 #endif | |
1869 #ifdef HAVE_TOOLBARS | |
1870 console_type_create_toolbar_mswindows (); | |
1871 #endif | |
1872 #ifdef HAVE_DIALOGS | |
1873 console_type_create_dialog_mswindows (); | |
1874 #endif | |
1875 #endif | |
1876 | |
1877 /* Now initialize the specifier types and associated symbols. | |
1878 Other than the first function below, the functions may | |
1879 make exactly the following function/macro calls: | |
1880 | |
1881 INITIALIZE_SPECIFIER_TYPE() | |
1882 SPECIFIER_HAS_METHOD() | |
1883 | |
1884 For any given specifier type, the former macro must be called | |
1885 before the any calls to the latter macro. */ | |
1886 | |
1887 specifier_type_create (); | |
1888 | |
1889 specifier_type_create_image (); | |
1890 specifier_type_create_gutter (); | |
5176
8b2f75cecb89
rename objects* (.c, .h and .el files) to fontcolor*
Ben Wing <ben@xemacs.org>
parents:
5050
diff
changeset
|
1891 specifier_type_create_fontcolor (); |
428 | 1892 #ifdef HAVE_TOOLBARS |
1893 specifier_type_create_toolbar (); | |
1894 #endif | |
1895 | |
771 | 1896 /* Now initialize the coding system types and associated symbols. |
1897 Other than the first function below, the functions may | |
1898 make exactly the following function/macro calls: | |
1899 | |
1900 INITIALIZE_CODING_SYSTEM_TYPE() | |
1901 CODING_SYSTEM_HAS_METHOD() | |
1902 | |
1903 For any given coding system type, the former macro must be called | |
1904 before the any calls to the latter macro. */ | |
1905 | |
1906 coding_system_type_create (); | |
1907 coding_system_type_create_unicode (); | |
1315 | 1908 #ifdef WIN32_ANY |
771 | 1909 coding_system_type_create_intl_win32 (); |
1910 #endif | |
1911 #ifdef MULE | |
1912 coding_system_type_create_mule_coding (); | |
1913 #endif | |
1914 | |
428 | 1915 /* Now initialize the image instantiator formats and associated symbols. |
1916 Other than the first function below, the functions may | |
1917 make exactly the following function/macro calls: | |
1918 | |
1919 INITIALIZE_IMAGE_INSTANTIATOR_FORMAT() | |
1920 IIFORMAT_HAS_METHOD() | |
1921 IIFORMAT_VALID_KEYWORD() | |
1922 | |
1923 For any given image instantiator format, the first macro must be | |
1924 called before the any calls to the other macros. */ | |
1925 | |
1926 image_instantiator_format_create (); | |
5091 | 1927 #ifdef HAVE_WINDOW_SYSTEM |
428 | 1928 image_instantiator_format_create_glyphs_eimage (); |
5091 | 1929 #endif |
428 | 1930 image_instantiator_format_create_glyphs_widget (); |
1931 #ifdef HAVE_TTY | |
1932 image_instantiator_format_create_glyphs_tty (); | |
1933 #endif | |
1934 #ifdef HAVE_X_WINDOWS | |
1935 image_instantiator_format_create_glyphs_x (); | |
1936 #endif /* HAVE_X_WINDOWS */ | |
1937 #ifdef HAVE_MS_WINDOWS | |
1938 image_instantiator_format_create_glyphs_mswindows (); | |
1204 | 1939 #endif /* HAVE_MS_WINDOWS */ |
462 | 1940 #ifdef HAVE_GTK |
1941 image_instantiator_format_create_glyphs_gtk (); | |
1942 #endif | |
2367 | 1943 } |
1944 #ifdef PDUMP | |
1945 else if (!restart) /* after successful pdump_load() | |
1946 (note, we are inside ifdef PDUMP) */ | |
1947 { | |
1948 reinit_console_type_create_stream (); | |
1949 #ifdef HAVE_TTY | |
1950 reinit_console_type_create_tty (); | |
1951 #endif | |
1952 #ifdef HAVE_X_WINDOWS | |
1953 reinit_console_type_create_x (); | |
1954 reinit_console_type_create_device_x (); | |
1955 #endif | |
1956 #ifdef HAVE_MS_WINDOWS | |
1957 reinit_console_type_create_mswindows (); | |
1958 #endif | |
1959 #ifdef HAVE_GTK | |
1960 reinit_console_type_create_gtk (); | |
1961 #endif | |
1962 | |
1963 reinit_specifier_type_create (); | |
1964 reinit_specifier_type_create_image (); | |
1965 reinit_specifier_type_create_gutter (); | |
5176
8b2f75cecb89
rename objects* (.c, .h and .el files) to fontcolor*
Ben Wing <ben@xemacs.org>
parents:
5050
diff
changeset
|
1966 reinit_specifier_type_create_fontcolor (); |
2367 | 1967 #ifdef HAVE_TOOLBARS |
1968 reinit_specifier_type_create_toolbar (); | |
1969 #endif | |
1970 | |
1971 reinit_coding_system_type_create (); | |
1972 reinit_coding_system_type_create_unicode (); | |
1973 #ifdef WIN32_ANY | |
1974 reinit_coding_system_type_create_intl_win32 (); | |
1975 #endif | |
1976 #ifdef MULE | |
1977 reinit_coding_system_type_create_mule_coding (); | |
1978 #endif | |
1979 } | |
1980 #endif /* PDUMP */ | |
1981 | |
1982 if (!initialized | |
1983 #ifdef PDUMP | |
1984 || !restart | |
1985 #endif | |
1986 ) | |
1987 { | |
1988 /* Now initialize the structure types and associated symbols. | |
1989 Other than the first function below, the functions may | |
1990 make exactly the following function/macro calls: | |
1991 | |
1992 define_structure_type() | |
1993 define_structure_type_keyword() | |
1994 | |
1995 */ | |
1996 | |
1997 structure_type_create (); | |
1998 | |
1999 structure_type_create_chartab (); | |
2000 structure_type_create_faces (); | |
2001 structure_type_create_rangetab (); | |
2002 structure_type_create_hash_table (); | |
428 | 2003 |
2004 /* Now initialize the lstream types and associated symbols. | |
2005 Other than the first function below, the functions may | |
2006 make exactly the following function/macro calls: | |
2007 | |
2008 LSTREAM_HAS_METHOD() | |
2009 | |
2010 */ | |
2011 | |
2012 lstream_type_create (); | |
2013 lstream_type_create_file_coding (); | |
853 | 2014 #if defined (HAVE_MS_WINDOWS) && !defined (HAVE_MSG_SELECT) |
428 | 2015 lstream_type_create_mswindows_selectable (); |
2016 #endif | |
2017 | |
2018 /* Initialize processes implementation. | |
2019 The functions may make exactly the following function/macro calls: | |
2020 | |
2021 PROCESS_HAS_METHOD() | |
2022 */ | |
2023 #ifdef HAVE_UNIX_PROCESSES | |
2024 process_type_create_unix (); | |
2025 #endif | |
2026 #ifdef HAVE_WIN32_PROCESSES | |
2027 process_type_create_nt (); | |
2028 #endif | |
2367 | 2029 } |
2030 | |
2031 if (!initialized) | |
2032 { | |
428 | 2033 /* Now initialize most variables. |
2034 | |
2035 These functions may do exactly the following: | |
2036 | |
771 | 2037 -- assigning a symbol or constant value to a variable |
2038 -- using a global variable that has been initialized | |
2039 earlier on in the same function | |
2040 -- DEFVAR_INT() | |
2041 -- DEFVAR_LISP() | |
2042 -- DEFVAR_BOOL() | |
2043 -- DEFER_GETTEXT() | |
2044 -- staticpro*() | |
2045 -- xmalloc*(), xnew*(), and friends | |
2046 -- Dynarr_*() | |
2047 -- Blocktype_*() | |
1303 | 2048 -- Fprovide (symbol) |
771 | 2049 -- intern() |
2050 -- Fput() | |
2051 -- dump_add_*() | |
2052 -- C library functions with no external dependencies, e.g. str*() | |
2053 -- defsymbol(), if it's absolutely necessary and you're sure that | |
2054 the symbol isn't referenced anywhere else in the initialization | |
2055 code | |
2056 -- Fset() on a symbol that is unbound | |
2057 -- Any of the object-creating functions in alloc.c: e.g. | |
2058 - make_string() | |
4953
304aebb79cd3
function renamings to track names of char typedefs
Ben Wing <ben@xemacs.org>
parents:
4952
diff
changeset
|
2059 - build_istring() |
304aebb79cd3
function renamings to track names of char typedefs
Ben Wing <ben@xemacs.org>
parents:
4952
diff
changeset
|
2060 - build_cistring() |
4952
19a72041c5ed
Mule-izing, various fixes related to char * arguments
Ben Wing <ben@xemacs.org>
parents:
4932
diff
changeset
|
2061 - build_ascstring() |
771 | 2062 - make_vector() |
5581
56144c8593a8
Mechanically change INT to FIXNUM in our sources.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5560
diff
changeset
|
2063 - make_fixnum() |
771 | 2064 - make_char() |
2065 - make_extent() | |
5127
a9c41067dd88
more cleanups, terminology clarification, lots of doc work
Ben Wing <ben@xemacs.org>
parents:
5126
diff
changeset
|
2066 - ALLOC_NORMAL_LISP_OBJECT() |
5117
3742ea8250b5
Checking in final CVS version of workspace 'ben-lisp-object'
Ben Wing <ben@xemacs.org>
parents:
3024
diff
changeset
|
2067 - ALLOC_SIZED_LISP_OBJECT() |
771 | 2068 - Fcons() |
2069 - listN() | |
2070 - make_lcrecord_list() | |
2071 -- make_opaque_ptr() | |
2072 -- make_lisp_hash_table() (not allowed in 21.4!) | |
2073 -- certain specifier creation functions (but be careful; see | |
2074 glyphs.c for examples) | |
428 | 2075 |
2076 perhaps a few others. | |
446 | 2077 |
771 | 2078 NO EXTERNAL-FORMAT CONVERSIONS. |
2079 | |
446 | 2080 NB: Initialization or assignment should not be done here to certain |
2081 variables settable from the command line. See the comment above | |
2082 the call to pdump_load() in main_1(). This caveat should only | |
2083 apply to vars_of_emacs(). | |
2367 | 2084 |
2085 Order should not matter in these functions. | |
428 | 2086 */ |
2087 | |
2088 /* Now allow Fprovide() statements to be made. */ | |
2089 init_provide_once (); | |
2090 | |
2091 /* Do that before any specifier creation (esp. vars_of_glyphs()) */ | |
2092 vars_of_specifier (); | |
2093 | |
2094 vars_of_abbrev (); | |
2095 vars_of_alloc (); | |
2096 vars_of_buffer (); | |
2097 vars_of_bytecode (); | |
2098 vars_of_callint (); | |
5170
5ddbab03b0e6
various fixes to memory-usage stats
Ben Wing <ben@xemacs.org>
parents:
5169
diff
changeset
|
2099 vars_of_casetab (); |
428 | 2100 vars_of_chartab (); |
2101 vars_of_cmdloop (); | |
2102 vars_of_cmds (); | |
2103 vars_of_console (); | |
2104 vars_of_data (); | |
2105 #ifdef DEBUG_XEMACS | |
2106 vars_of_debug (); | |
440 | 2107 vars_of_tests (); |
428 | 2108 #endif |
2109 vars_of_console_stream (); | |
2110 vars_of_device (); | |
2111 #ifdef HAVE_DIALOGS | |
2112 vars_of_dialog (); | |
2113 #endif | |
2114 vars_of_dired (); | |
2115 vars_of_doc (); | |
2116 #ifdef HAVE_DRAGNDROP | |
2117 vars_of_dragdrop (); | |
2118 #endif | |
2119 vars_of_editfns (); | |
5158
9e0b43d3095c
more cleanups to object-memory-usage stuff
Ben Wing <ben@xemacs.org>
parents:
5157
diff
changeset
|
2120 vars_of_elhash (); |
428 | 2121 vars_of_emacs (); |
2122 vars_of_eval (); | |
2123 | |
2124 #ifdef HAVE_X_WINDOWS | |
2125 vars_of_event_Xt (); | |
2126 #endif | |
1303 | 2127 #if defined (HAVE_TTY) && (defined (DEBUG_TTY_EVENT_STREAM) || !defined (HAVE_X_WINDOWS)) |
428 | 2128 vars_of_event_tty (); |
2129 #endif | |
2130 #ifdef HAVE_MS_WINDOWS | |
2131 vars_of_event_mswindows (); | |
2132 #endif | |
2133 vars_of_event_stream (); | |
2134 | |
2135 vars_of_events (); | |
2136 vars_of_extents (); | |
2137 vars_of_faces (); | |
771 | 2138 vars_of_file_coding (); |
428 | 2139 vars_of_fileio (); |
444 | 2140 #ifdef CLASH_DETECTION |
2141 vars_of_filelock (); | |
2142 #endif | |
428 | 2143 vars_of_floatfns (); |
771 | 2144 vars_of_fns (); |
826 | 2145 #ifdef USE_C_FONT_LOCK |
428 | 2146 vars_of_font_lock (); |
826 | 2147 #endif /* USE_C_FONT_LOCK */ |
428 | 2148 vars_of_frame (); |
3092 | 2149 vars_of_gc (); |
428 | 2150 vars_of_glyphs (); |
5091 | 2151 #ifdef HAVE_WINDOW_SYSTEM |
428 | 2152 vars_of_glyphs_eimage (); |
5091 | 2153 #endif |
428 | 2154 vars_of_glyphs_widget (); |
2155 vars_of_gui (); | |
2156 vars_of_gutter (); | |
2157 vars_of_indent (); | |
2158 vars_of_insdel (); | |
2159 vars_of_intl (); | |
1315 | 2160 #ifdef WIN32_ANY |
771 | 2161 vars_of_intl_win32 (); |
2162 #endif | |
428 | 2163 #ifdef HAVE_XIM |
2164 #ifdef XIM_MOTIF | |
2165 vars_of_input_method_motif (); | |
2166 #else /* XIM_XLIB */ | |
2167 vars_of_input_method_xlib (); | |
2168 #endif | |
2169 #endif /* HAVE_XIM */ | |
2170 vars_of_keymap (); | |
2171 vars_of_lread (); | |
2172 vars_of_lstream (); | |
2173 vars_of_macros (); | |
2174 vars_of_md5 (); | |
2175 #ifdef HAVE_DATABASE | |
2176 vars_of_database (); | |
2177 #endif | |
2178 #ifdef HAVE_MENUBARS | |
2179 vars_of_menubar (); | |
2180 #endif | |
2181 vars_of_minibuf (); | |
2182 vars_of_module (); | |
442 | 2183 #ifdef WIN32_NATIVE |
902 | 2184 vars_of_dired_mswindows (); |
440 | 2185 vars_of_nt (); |
428 | 2186 #endif |
1983 | 2187 #ifdef WITH_NUMBER_TYPES |
2188 vars_of_number (); | |
2189 #endif | |
5176
8b2f75cecb89
rename objects* (.c, .h and .el files) to fontcolor*
Ben Wing <ben@xemacs.org>
parents:
5050
diff
changeset
|
2190 vars_of_fontcolor (); |
428 | 2191 vars_of_print (); |
2192 | |
2193 vars_of_process (); | |
2194 #ifdef HAVE_UNIX_PROCESSES | |
2195 vars_of_process_unix (); | |
2196 #endif | |
2197 #ifdef HAVE_WIN32_PROCESSES | |
2198 vars_of_process_nt (); | |
2199 #endif | |
2200 | |
2201 vars_of_profile (); | |
1303 | 2202 #if defined (HAVE_MMAP) && defined (REL_ALLOC) && !defined (DOUG_LEA_MALLOC) |
428 | 2203 vars_of_ralloc (); |
2204 #endif /* HAVE_MMAP && REL_ALLOC */ | |
2526 | 2205 vars_of_realpath (); |
428 | 2206 vars_of_redisplay (); |
814 | 2207 vars_of_regex (); |
428 | 2208 #ifdef HAVE_SCROLLBARS |
2209 vars_of_scrollbar (); | |
2210 #endif | |
2211 vars_of_search (); | |
2212 vars_of_select (); | |
2213 vars_of_sound (); | |
2214 vars_of_symbols (); | |
2215 vars_of_syntax (); | |
771 | 2216 vars_of_text (); |
428 | 2217 #ifdef HAVE_TOOLBARS |
2218 vars_of_toolbar (); | |
2219 #endif | |
2220 vars_of_undo (); | |
2221 vars_of_window (); | |
1315 | 2222 #ifdef WIN32_ANY |
771 | 2223 vars_of_win32 (); |
2224 #endif | |
428 | 2225 |
2226 #ifdef HAVE_TTY | |
2227 vars_of_console_tty (); | |
2228 vars_of_frame_tty (); | |
5176
8b2f75cecb89
rename objects* (.c, .h and .el files) to fontcolor*
Ben Wing <ben@xemacs.org>
parents:
5050
diff
changeset
|
2229 vars_of_fontcolor_tty (); |
428 | 2230 #endif |
2231 | |
462 | 2232 #ifdef HAVE_GTK |
2233 vars_of_device_gtk (); | |
4380
461fdb92f3b6
Correct the perhaps_init_unseen_key_defaults GTK code; don't override X11 fonts.
Aidan Kehoe <kehoea@parhasard.net>
parents:
3466
diff
changeset
|
2234 vars_of_console_gtk (); |
462 | 2235 #ifdef HAVE_DIALOGS |
2236 vars_of_dialog_gtk (); | |
2237 #endif | |
2238 vars_of_event_gtk (); | |
2239 vars_of_frame_gtk (); | |
2240 vars_of_glyphs_gtk (); | |
2241 vars_of_ui_gtk (); | |
2242 #ifdef HAVE_MENUBARS | |
2243 vars_of_menubar_gtk (); | |
2244 #endif | |
5176
8b2f75cecb89
rename objects* (.c, .h and .el files) to fontcolor*
Ben Wing <ben@xemacs.org>
parents:
5050
diff
changeset
|
2245 vars_of_fontcolor_gtk (); |
462 | 2246 vars_of_select_gtk (); |
2247 #ifdef HAVE_SCROLLBARS | |
2248 vars_of_scrollbar_gtk (); | |
2249 #endif | |
2250 #if defined (HAVE_MENUBARS) || defined (HAVE_SCROLLBARS) || defined (HAVE_DIALOGS) || defined (HAVE_TOOLBARS) | |
2251 vars_of_gui_gtk (); | |
2252 #endif | |
2253 #endif /* HAVE_GTK */ | |
2254 | |
428 | 2255 #ifdef HAVE_X_WINDOWS |
442 | 2256 #ifdef HAVE_BALLOON_HELP |
440 | 2257 vars_of_balloon_x (); |
442 | 2258 #endif |
3381 | 2259 vars_of_console_x (); |
428 | 2260 vars_of_device_x (); |
771 | 2261 #ifdef HAVE_X_DIALOGS |
428 | 2262 vars_of_dialog_x (); |
2263 #endif | |
2264 vars_of_frame_x (); | |
2265 vars_of_glyphs_x (); | |
2266 #ifdef HAVE_MENUBARS | |
2267 vars_of_menubar_x (); | |
2268 #endif | |
5176
8b2f75cecb89
rename objects* (.c, .h and .el files) to fontcolor*
Ben Wing <ben@xemacs.org>
parents:
5050
diff
changeset
|
2269 vars_of_fontcolor_x (); |
440 | 2270 vars_of_select_x (); |
428 | 2271 #ifdef HAVE_SCROLLBARS |
2272 vars_of_scrollbar_x (); | |
2273 #endif | |
771 | 2274 #if defined (HAVE_MENUBARS) || defined (HAVE_SCROLLBARS) || defined (HAVE_X_DIALOGS) || defined (HAVE_TOOLBARS) |
428 | 2275 vars_of_gui_x (); |
2276 #endif | |
3094 | 2277 |
4916
a6c778975d7d
split USE_XFT into HAVE_XFT/USE_XFT
Ben Wing <ben@xemacs.org>
parents:
4871
diff
changeset
|
2278 #ifdef HAVE_XFT |
3354 | 2279 vars_of_font_mgr (); |
3094 | 2280 #endif |
2281 | |
440 | 2282 #endif /* HAVE_X_WINDOWS */ |
428 | 2283 |
462 | 2284 |
428 | 2285 #ifdef HAVE_MS_WINDOWS |
2286 vars_of_device_mswindows (); | |
2287 vars_of_console_mswindows (); | |
2288 vars_of_frame_mswindows (); | |
5176
8b2f75cecb89
rename objects* (.c, .h and .el files) to fontcolor*
Ben Wing <ben@xemacs.org>
parents:
5050
diff
changeset
|
2289 vars_of_fontcolor_mswindows (); |
428 | 2290 vars_of_select_mswindows (); |
2291 vars_of_glyphs_mswindows (); | |
2292 #ifdef HAVE_SCROLLBARS | |
2293 vars_of_scrollbar_mswindows (); | |
2294 #endif | |
2295 #ifdef HAVE_MENUBARS | |
2296 vars_of_menubar_mswindows (); | |
2297 #endif | |
2298 #ifdef HAVE_DIALOGS | |
2299 vars_of_dialog_mswindows (); | |
2300 #endif | |
2301 #endif /* HAVE_MS_WINDOWS */ | |
2302 | |
2303 #ifdef MULE | |
2304 vars_of_mule_ccl (); | |
2305 vars_of_mule_charset (); | |
2306 #endif | |
2307 vars_of_file_coding (); | |
771 | 2308 vars_of_unicode (); |
428 | 2309 #ifdef MULE |
771 | 2310 vars_of_mule_coding (); |
428 | 2311 #ifdef HAVE_WNN |
2312 vars_of_mule_wnn (); | |
2313 #endif | |
2973 | 2314 #if defined(HAVE_CANNA) && !defined (HAVE_SHLIB) |
2315 vars_of_canna_api (); | |
428 | 2316 #endif /* HAVE_CANNA */ |
2317 #endif /* MULE */ | |
2318 | |
2319 #ifdef TOOLTALK | |
2320 vars_of_tooltalk (); | |
2321 #endif | |
2322 | |
2323 #ifdef SUNPRO | |
2324 vars_of_sunpro (); | |
2325 #endif | |
2326 | |
996 | 2327 #if defined (HAVE_LDAP) && !defined (HAVE_SHLIB) |
428 | 2328 vars_of_eldap (); |
2329 #endif | |
2330 | |
996 | 2331 #if defined (HAVE_POSTGRESQL) && !defined (HAVE_SHLIB) |
771 | 2332 vars_of_postgresql (); |
442 | 2333 #endif |
2334 | |
428 | 2335 #ifdef HAVE_GPM |
442 | 2336 vars_of_gpmevent (); |
428 | 2337 #endif |
2367 | 2338 } |
2339 | |
2340 if (!initialized | |
2341 #ifdef PDUMP | |
2342 || !restart | |
2343 #endif | |
2344 ) | |
2345 { | |
2346 /* Now do additional vars_of_*() initialization that happens both | |
2347 at dump time and after pdump load. */ | |
5157
1fae11d56ad2
redo memory-usage mechanism, add way of dynamically initializing Lisp objects
Ben Wing <ben@xemacs.org>
parents:
5128
diff
changeset
|
2348 reinit_vars_of_alloc (); |
2367 | 2349 reinit_vars_of_buffer (); |
4921
17362f371cc2
add more byte-code assertions and better failure output
Ben Wing <ben@xemacs.org>
parents:
4871
diff
changeset
|
2350 reinit_vars_of_bytecode (); |
2367 | 2351 reinit_vars_of_console (); |
2352 #ifdef DEBUG_XEMACS | |
2353 reinit_vars_of_debug (); | |
2354 #endif | |
2355 reinit_vars_of_device (); | |
2356 reinit_vars_of_eval (); | |
2357 #if defined (HAVE_TTY) && (defined (DEBUG_TTY_EVENT_STREAM) || !defined (HAVE_X_WINDOWS)) | |
2358 reinit_vars_of_event_tty (); | |
2359 #endif | |
2360 reinit_vars_of_event_stream (); | |
2361 reinit_vars_of_events (); | |
2362 reinit_vars_of_file_coding (); | |
2363 reinit_vars_of_fileio (); | |
2364 #ifdef USE_C_FONT_LOCK | |
2365 reinit_vars_of_font_lock (); | |
2366 #endif /* USE_C_FONT_LOCK */ | |
2367 reinit_vars_of_glyphs (); | |
2368 reinit_vars_of_glyphs_widget (); | |
2369 reinit_vars_of_insdel (); | |
2370 reinit_vars_of_lread (); | |
3263 | 2371 #ifndef NEW_GC |
2367 | 2372 reinit_vars_of_lstream (); |
3263 | 2373 #endif /* not NEW_GC */ |
2367 | 2374 reinit_vars_of_minibuf (); |
2375 #ifdef HAVE_SHLIB | |
2376 reinit_vars_of_module (); | |
2377 #endif | |
5176
8b2f75cecb89
rename objects* (.c, .h and .el files) to fontcolor*
Ben Wing <ben@xemacs.org>
parents:
5050
diff
changeset
|
2378 reinit_vars_of_fontcolor (); |
2367 | 2379 reinit_vars_of_print (); |
2380 reinit_vars_of_search (); | |
2381 reinit_vars_of_text (); | |
2382 reinit_vars_of_undo (); | |
2383 reinit_vars_of_window (); | |
2384 | |
2385 #ifdef HAVE_MS_WINDOWS | |
2386 reinit_vars_of_event_mswindows (); | |
2387 reinit_vars_of_frame_mswindows (); | |
5176
8b2f75cecb89
rename objects* (.c, .h and .el files) to fontcolor*
Ben Wing <ben@xemacs.org>
parents:
5050
diff
changeset
|
2388 reinit_vars_of_fontcolor_mswindows (); |
2367 | 2389 #endif |
2390 | |
2391 #ifdef HAVE_GTK | |
2392 reinit_vars_of_event_gtk (); | |
2393 reinit_vars_of_menubar_gtk (); | |
2394 #endif | |
2395 | |
2396 #ifdef HAVE_X_WINDOWS | |
2397 reinit_vars_of_device_x (); | |
2398 reinit_vars_of_event_Xt (); | |
2399 #ifdef HAVE_SCROLLBARS | |
2400 reinit_vars_of_scrollbar_x (); | |
2401 #endif | |
2402 #ifdef HAVE_MENUBARS | |
2403 reinit_vars_of_menubar_x (); | |
2404 #endif | |
2405 reinit_vars_of_select_x (); | |
2406 #if defined (HAVE_MENUBARS) || defined (HAVE_SCROLLBARS) || defined (HAVE_X_DIALOGS) || defined (HAVE_TOOLBARS) | |
2407 reinit_vars_of_gui_x (); | |
2408 #endif | |
4916
a6c778975d7d
split USE_XFT into HAVE_XFT/USE_XFT
Ben Wing <ben@xemacs.org>
parents:
4871
diff
changeset
|
2409 #ifdef HAVE_XFT |
3354 | 2410 reinit_vars_of_font_mgr (); |
3094 | 2411 #endif |
2367 | 2412 #endif /* HAVE_X_WINDOWS */ |
2413 | |
2414 #ifdef MULE | |
2415 reinit_vars_of_mule_coding (); | |
2416 #endif | |
2417 #if defined (MULE) && defined (HAVE_WNN) | |
2418 reinit_vars_of_mule_wnn (); | |
2419 #endif | |
2420 } | |
2421 | |
2422 if (!initialized) | |
2423 { | |
428 | 2424 /* Now initialize any specifier variables. We do this later |
2425 because it has some dependence on the vars initialized | |
2426 above. | |
2427 | |
2428 These functions should *only* initialize specifier variables, | |
2429 and may make use of the following functions/macros in addition | |
2430 to the ones listed above: | |
2431 | |
2432 DEFVAR_SPECIFIER() | |
2433 Fmake_specifier() | |
2434 set_specifier_fallback() | |
2435 set_specifier_caching() | |
2436 */ | |
2437 | |
2438 specifier_vars_of_glyphs (); | |
863 | 2439 specifier_vars_of_glyphs_widget (); |
428 | 2440 specifier_vars_of_gutter (); |
2441 #ifdef HAVE_MENUBARS | |
2442 specifier_vars_of_menubar (); | |
2443 #endif | |
2444 specifier_vars_of_redisplay (); | |
2445 #ifdef HAVE_SCROLLBARS | |
2446 specifier_vars_of_scrollbar (); | |
2447 #endif | |
2448 #ifdef HAVE_TOOLBARS | |
2449 specifier_vars_of_toolbar (); | |
2450 #endif | |
2451 specifier_vars_of_window (); | |
2452 | |
2453 /* Now comes all the rest of the variables that couldn't | |
2454 be handled above. There may be dependencies on variables | |
2455 initialized above, and dependencies between one complex_vars_() | |
2456 function and another. */ | |
2457 | |
2458 #ifdef MULE | |
814 | 2459 /* This depends on vars initialized in vars_of_unicode(). */ |
428 | 2460 complex_vars_of_mule_charset (); |
2461 #endif | |
814 | 2462 /* This one doesn't depend on anything really, and could go into |
2463 vars_of_(), but lots of lots of code gets called and it's easily | |
2464 possible that it could get changed to require being a | |
2465 complex_vars_of_(), for example if a charset appears anywhere, | |
2466 then we suddenly have dependence on the previous call. */ | |
428 | 2467 complex_vars_of_file_coding (); |
1315 | 2468 #ifdef WIN32_ANY |
4834
b3ea9c582280
Use new cygwin_conv_path API with Cygwin 1.7 for converting names between Win32 and POSIX, UTF-8-aware, with attendant changes elsewhere
Ben Wing <ben@xemacs.org>
parents:
4804
diff
changeset
|
2469 /* Define MS-Windows Unicode coding systems */ |
771 | 2470 complex_vars_of_intl_win32 (); |
428 | 2471 #endif |
4834
b3ea9c582280
Use new cygwin_conv_path API with Cygwin 1.7 for converting names between Win32 and POSIX, UTF-8-aware, with attendant changes elsewhere
Ben Wing <ben@xemacs.org>
parents:
4804
diff
changeset
|
2472 /* Define UTF-8 coding system */ |
b3ea9c582280
Use new cygwin_conv_path API with Cygwin 1.7 for converting names between Win32 and POSIX, UTF-8-aware, with attendant changes elsewhere
Ben Wing <ben@xemacs.org>
parents:
4804
diff
changeset
|
2473 complex_vars_of_unicode (); |
428 | 2474 |
2367 | 2475 /* At this point we should be able to do conversion operations. |
2476 We have initialized things to the point that we can create Lisp | |
2477 objects and we have defined the basic coding systems (in the | |
2478 just-previous complex-vars calls). We will in fact do conversion | |
2479 quite soon, e.g. in complex_vars_of_glyphs_x(). */ | |
2480 inhibit_non_essential_conversion_operations = 0; | |
2481 | |
4916
a6c778975d7d
split USE_XFT into HAVE_XFT/USE_XFT
Ben Wing <ben@xemacs.org>
parents:
4871
diff
changeset
|
2482 #ifdef HAVE_XFT |
3094 | 2483 /* This uses coding systems. Must be done before faces are init'ed. */ |
2484 /* not in xft reloaded #3 */ | |
3354 | 2485 complex_vars_of_font_mgr (); |
3094 | 2486 #endif |
2487 | |
771 | 2488 /* Depends on specifiers. */ |
2489 complex_vars_of_faces (); | |
2490 | |
428 | 2491 /* This calls allocate_glyph(), which creates specifiers |
2492 and also relies on a variable (Vthe_nothing_vector) initialized | |
771 | 2493 above. */ |
428 | 2494 complex_vars_of_glyphs (); |
2495 | |
2496 /* These rely on the glyphs just created in the previous function, | |
2497 and call Fadd_spec_to_specifier(), which relies on various | |
2498 variables initialized above. */ | |
462 | 2499 #ifdef HAVE_GTK |
2500 complex_vars_of_glyphs_gtk (); | |
2501 #endif | |
428 | 2502 #ifdef HAVE_X_WINDOWS |
2503 complex_vars_of_glyphs_x (); | |
2504 #endif | |
2505 #ifdef HAVE_MS_WINDOWS | |
2506 complex_vars_of_glyphs_mswindows (); | |
2507 #endif | |
2508 | |
2509 /* This calls Fmake_glyph_internal(). */ | |
2510 #ifdef HAVE_MENUBARS | |
2511 complex_vars_of_menubar (); | |
2512 #endif | |
2513 | |
617 | 2514 #ifdef HAVE_SCROLLBARS |
428 | 2515 /* This calls Fmake_glyph_internal(). */ |
2516 complex_vars_of_scrollbar (); | |
2517 #endif | |
2518 | |
2519 /* This calls allocate_glyph(). */ | |
2520 complex_vars_of_frame (); | |
2521 | |
2522 /* This calls Fcopy_category_table() under Mule, which calls who | |
2523 knows what. */ | |
2524 complex_vars_of_chartab (); | |
2525 | |
826 | 2526 /* This calls Fput_char_table(), which (under Mule) depends on the |
428 | 2527 charsets being initialized. */ |
2528 complex_vars_of_casetab (); | |
2529 | |
2530 /* This calls Fcopy_syntax_table(), which relies on char tables. */ | |
2531 complex_vars_of_syntax (); | |
2532 | |
2533 /* This initializes buffer-local variables, sets things up so | |
2534 that buffers can be created, and creates a couple of basic | |
2535 buffers. This depends on Vstandard_syntax_table and | |
2536 Vstandard_category_table (initialized in the previous | |
2537 functions), as well as a whole horde of variables that may | |
2538 have been initialized above. */ | |
2539 complex_vars_of_buffer (); | |
2540 | |
2541 /* This initializes console-local variables. */ | |
2542 complex_vars_of_console (); | |
2543 | |
2544 /* This creates a couple more buffers, and depends on the | |
2545 previous function. */ | |
2546 complex_vars_of_minibuf (); | |
2547 | |
2548 /* These two might call Ffile_name_as_directory(), which | |
2549 might depend on all sorts of things; I'm not sure. */ | |
2550 complex_vars_of_emacs (); | |
2551 | |
3092 | 2552 complex_vars_of_gc (); |
2553 | |
428 | 2554 /* This creates a couple of basic keymaps and depends on Lisp |
2555 hash tables and Ffset() (both of which depend on some variables | |
2556 initialized in the vars_of_*() section) and possibly other | |
2557 stuff. */ | |
2558 complex_vars_of_keymap (); | |
2559 | |
2560 #ifdef ERROR_CHECK_GC | |
2561 { | |
2562 extern int always_gc; | |
2563 if (always_gc) /* purification debugging hack */ | |
3092 | 2564 #ifdef NEW_GC |
2565 gc_full (); | |
2566 #else /* not NEW_GC */ | |
428 | 2567 garbage_collect_1 (); |
3092 | 2568 #endif /* not NEW_GC */ |
428 | 2569 } |
2570 #endif | |
1204 | 2571 } |
2367 | 2572 else |
2573 { | |
2574 /* We are at the equivalent place where we reset this in the | |
2575 non-initialized case. */ | |
2576 inhibit_non_essential_conversion_operations = 0; | |
1204 | 2577 |
428 | 2578 #ifdef PDUMP |
2367 | 2579 if (!restart) /* after successful pdump_load() |
2580 (note, we are inside ifdef PDUMP) */ | |
2581 { | |
2582 reinit_complex_vars_of_buffer_runtime_only (); | |
2583 reinit_complex_vars_of_console_runtime_only (); | |
2584 reinit_complex_vars_of_minibuf (); | |
2585 } | |
2586 #endif /* PDUMP */ | |
1204 | 2587 } |
2367 | 2588 |
2589 if (initialized) | |
2590 init_eval_semi_early (); | |
428 | 2591 |
2592 /* CONGRATULATIONS!!! We have successfully initialized the Lisp | |
2593 engine. */ | |
2594 | |
2595 /* Now do further initialization/setup of stuff that is not needed by the | |
2596 syms_of_() routines. This involves stuff that only is enabled in | |
2597 an interactive run (redisplay, user input, etc.) and stuff that is | |
2598 not needed until we start loading Lisp code (the reader). A lot | |
2599 of this stuff involves querying the current environment and needs | |
771 | 2600 to be done both at dump time and at run time. Some will be done |
2367 | 2601 only at run time, by querying the `initialized' variable. |
2602 | |
2603 The ordering of these functions is critical, especially the early ones, | |
2604 where there is typically a dependency from each to the previous. | |
2605 */ | |
771 | 2606 |
1315 | 2607 #ifdef WIN32_ANY |
771 | 2608 init_intl_win32 (); /* Under Windows, determine whether we use Unicode |
2609 or ANSI to call the system routines -- i.e. | |
2610 determine what the coding system `mswindows-tstr' | |
2611 is aliased to */ | |
2612 #endif | |
2613 init_buffer_1 (); /* Create *scratch* buffer; init_intl() is going to | |
2614 call Lisp code (the very first code we call), | |
2615 and needs a current buffer */ | |
2616 #ifdef MULE | |
2617 init_intl (); /* Figure out the locale and set native and | |
2618 file-name coding systems, initialize the Unicode tables | |
2619 so that we will be able to process non-ASCII from here | |
2620 on out! */ | |
428 | 2621 #endif |
2622 | |
814 | 2623 init_xemacs_process (); /* Set up the process environment (so that |
2624 egetenv works), the basic directory variables | |
2625 (exec-directory and so on), and stuff related | |
2626 to subprocesses. This should be first because | |
2627 many of the functions below call egetenv() to | |
2628 get environment variables. */ | |
771 | 2629 |
2630 #ifdef WIN32_NATIVE | |
2631 /* | |
2632 * For Win32, call init_environment() to properly enter environment/registry | |
2633 * variables into Vprocess_environment. | |
2634 */ | |
814 | 2635 init_mswindows_environment (); |
771 | 2636 #endif |
2637 | |
2638 init_initial_directory (); /* get the directory to use for the | |
2639 "*scratch*" buffer, etc. */ | |
2640 | |
1983 | 2641 #ifdef WITH_NUMBER_TYPES |
2642 /* Set up bignums, ratios, bigfloats, complex numbers. | |
2643 This must be done before the Lisp reader is set up. */ | |
2644 init_number (); | |
2645 #endif | |
2646 | |
428 | 2647 init_lread (); /* Set up the Lisp reader. */ |
2367 | 2648 init_cmdargs (argc, argv, skip_args); /* Create list Vcommand_line_args */ |
771 | 2649 init_buffer_2 (); /* Set default directory of *scratch* buffer */ |
428 | 2650 |
442 | 2651 #ifdef WIN32_NATIVE |
814 | 2652 init_nt (); |
771 | 2653 init_select_mswindows (); |
428 | 2654 #endif |
2655 | |
2656 init_redisplay (); /* Determine terminal type. | |
2657 init_sys_modes uses results */ | |
438 | 2658 init_frame (); |
428 | 2659 init_event_stream (); /* Set up so we can get user input. */ |
2660 init_macros (); /* set up so we can run macros. */ | |
2661 init_editfns (); /* Determine the name of the user we're running as */ | |
2662 #ifdef SUNPRO | |
2663 init_sunpro (); /* Set up Sunpro usage tracking */ | |
2664 #endif | |
1315 | 2665 #ifdef WIN32_ANY |
442 | 2666 init_win32 (); |
2667 #endif | |
428 | 2668 #if defined (HAVE_NATIVE_SOUND) && defined (hp9000s800) |
2669 init_hpplay (); | |
2670 #endif | |
996 | 2671 #if defined (HAVE_POSTGRESQL) && !defined (HAVE_SHLIB) |
771 | 2672 /* Set some values taken from environment variables */ |
2673 init_postgresql_from_environment (); | |
2674 #endif | |
428 | 2675 #ifdef HAVE_TTY |
2676 init_device_tty (); | |
2677 #endif | |
442 | 2678 init_console_stream (restart); /* Create the first console */ |
428 | 2679 |
2680 /* try to get the actual pathname of the exec file we are running */ | |
2681 if (!restart) | |
771 | 2682 { |
2683 Vinvocation_name = Fcar (Vcommand_line_args); | |
1303 | 2684 if (XSTRING_DATA (Vinvocation_name)[0] == '-') |
771 | 2685 { |
2686 /* XEmacs as a login shell, oh goody! */ | |
4953
304aebb79cd3
function renamings to track names of char typedefs
Ben Wing <ben@xemacs.org>
parents:
4952
diff
changeset
|
2687 Vinvocation_name = build_istring (egetenv ("SHELL")); |
771 | 2688 } |
428 | 2689 Vinvocation_directory = Vinvocation_name; |
2690 | |
771 | 2691 if (!NILP (Ffile_name_directory (Vinvocation_name))) |
2692 { | |
2693 /* invocation-name includes a directory component -- presumably it | |
2694 is relative to cwd, not $PATH */ | |
2695 Vinvocation_directory = Fexpand_file_name (Vinvocation_name, | |
2696 Qnil); | |
2697 Vinvocation_path = Qnil; | |
2698 } | |
2699 else | |
2700 { | |
2701 Vinvocation_path = split_env_path ("PATH", NULL); | |
2702 locate_file (Vinvocation_path, Vinvocation_name, | |
2703 Vlisp_EXEC_SUFFIXES, | |
2704 &Vinvocation_directory, X_OK); | |
2705 } | |
2706 | |
2707 if (NILP (Vinvocation_directory)) | |
2708 Vinvocation_directory = Vinvocation_name; | |
2709 | |
2710 Vinvocation_name = Ffile_name_nondirectory (Vinvocation_directory); | |
2711 Vinvocation_directory = Ffile_name_directory (Vinvocation_directory); | |
2712 } | |
428 | 2713 |
2714 #if defined (LOCALTIME_CACHE) && defined (HAVE_TZSET) | |
2715 /* sun's localtime() has a bug. it caches the value of the time | |
2716 zone rather than looking it up every time. Since localtime() is | |
2717 called to bolt the undumping time into the undumped emacs, this | |
2718 results in localtime() ignoring the TZ environment variable. | |
2719 This flushes the new TZ value into localtime(). */ | |
2720 tzset (); | |
2721 #endif /* LOCALTIME_CACHE and TZSET */ | |
2722 | |
2723 load_me = Qnil; | |
2724 if (!initialized) | |
2725 { | |
2726 /* Handle -l loadup-and-dump, args passed by Makefile. */ | |
2367 | 2727 if (argc > 2 + skip_args && |
2728 !wext_strcmp_ascii (argv[1 + skip_args], "-l")) | |
2729 load_me = build_wext_string (argv[2 + skip_args], | |
2730 Qcommand_argument_encoding); | |
428 | 2731 } |
2732 | |
2733 #ifdef QUANTIFY | |
2734 if (initialized) | |
2735 quantify_start_recording_data (); | |
2736 #endif /* QUANTIFY */ | |
2737 | |
2738 initialized = 1; | |
2739 | |
2740 /* This never returns. */ | |
2741 initial_command_loop (load_me); | |
2742 /* NOTREACHED */ | |
2743 } | |
2744 | |
2745 | |
2746 /* Sort the args so we can find the most important ones | |
2747 at the beginning of argv. */ | |
2748 | |
2749 /* First, here's a table of all the standard options. */ | |
2750 | |
2751 struct standard_args | |
2752 { | |
2367 | 2753 const Ascbyte *name; |
2754 const Ascbyte *longname; | |
428 | 2755 int priority; |
2756 int nargs; | |
2757 }; | |
2758 | |
442 | 2759 static const struct standard_args standard_args[] = |
428 | 2760 { |
776 | 2761 /* Handled by main_1 above: Each must have its own priority and must be |
2762 in the order mentioned in main_1. */ | |
442 | 2763 { "-sd", "--show-dump-id", 105, 0 }, |
2764 { "-nd", "--no-dump-file", 95, 0 }, | |
826 | 2765 { "-batch", "--batch", 88, 0 }, |
4448
fd8a9a4d81d9
Support #!, to allow XEmacs to be called as a script interpreter.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4380
diff
changeset
|
2766 { "-script", "--script", 89, 1 }, |
771 | 2767 #ifdef WIN32_NATIVE |
826 | 2768 { "-mswindows-termination-handle", 0, 84, 1 }, |
771 | 2769 { "-nuni", "--no-unicode-lib-calls", 83, 0 }, |
2770 #endif /* WIN32_NATIVE */ | |
428 | 2771 { "-debug-paths", "--debug-paths", 82, 0 }, |
776 | 2772 { "-no-packages", "--no-packages", 81, 0 }, |
2773 { "-no-early-packages", "--no-early-packages", 80, 0 }, | |
2774 { "-no-site-modules", "--no-site-modules", 78, 0 }, | |
2775 { "-vanilla", "--vanilla", 76, 0 }, | |
2776 { "-no-autoloads", "--no-autoloads", 74, 0 }, | |
2777 { "-help", "--help", 72, 0 }, | |
2778 { "-version", "--version", 70, 0 }, | |
2779 { "-V", 0, 68, 0 }, | |
1315 | 2780 { "-nw", "--no-windows", 66, 0 }, |
2781 { "-tty", "--use-tty", 65, 0 }, | |
2782 { "-x", "--use-x", 64, 0 }, | |
2783 { "-gtk", "--use-gtk", 63, 0 }, | |
2784 { "-gnome", "--use-gnome", 62, 0 }, | |
2785 { "-msw", "--use-ms-windows", 61, 0 }, | |
2786 { "-t", "--terminal", 58, 1 }, | |
2787 { "-d", "--display", 57, 1 }, | |
2788 { "-display", 0, 56, 1 }, | |
428 | 2789 |
2790 /* Handled by command-line-early in startup.el: */ | |
2791 { "-q", "--no-init-file", 50, 0 }, | |
2792 { "-no-init-file", 0, 50, 0 }, | |
776 | 2793 { "-no-site-file", "--no-site-file", 50, 0 }, |
2794 { "-unmapped", "--unmapped", 50, 0 }, | |
2795 { "-u", "--user", 50, 1 }, | |
2796 { "-user", 0, 50, 1 }, | |
2797 { "-user-init-file", "--user-init-file", 50, 1 }, | |
2798 { "-user-init-directory", "--user-init-directory", 50, 1 }, | |
2799 { "-debug-init", "--debug-init", 50, 0 }, | |
428 | 2800 |
2801 /* Xt options: */ | |
2802 { "-i", "--icon-type", 15, 0 }, | |
2803 { "-itype", 0, 15, 0 }, | |
2804 { "-iconic", "--iconic", 15, 0 }, | |
2805 { "-bg", "--background-color", 10, 1 }, | |
2806 { "-background", 0, 10, 1 }, | |
2807 { "-fg", "--foreground-color", 10, 1 }, | |
2808 { "-foreground", 0, 10, 1 }, | |
2809 { "-bd", "--border-color", 10, 1 }, | |
2810 { "-bw", "--border-width", 10, 1 }, | |
2811 { "-ib", "--internal-border", 10, 1 }, | |
2812 { "-ms", "--mouse-color", 10, 1 }, | |
2813 { "-cr", "--cursor-color", 10, 1 }, | |
2814 { "-fn", "--font", 10, 1 }, | |
2815 { "-font", 0, 10, 1 }, | |
2816 { "-g", "--geometry", 10, 1 }, | |
2817 { "-geometry", 0, 10, 1 }, | |
2818 { "-T", "--title", 10, 1 }, | |
2819 { "-title", 0, 10, 1 }, | |
2820 { "-name", "--name", 10, 1 }, | |
2821 { "-xrm", "--xrm", 10, 1 }, | |
2822 { "-r", "--reverse-video", 5, 0 }, | |
2823 { "-rv", 0, 5, 0 }, | |
2824 { "-reverse", 0, 5, 0 }, | |
2825 { "-hb", "--horizontal-scroll-bars", 5, 0 }, | |
2826 { "-vb", "--vertical-scroll-bars", 5, 0 }, | |
2827 | |
776 | 2828 { "-eol", "--enable-eol-detection", 2, 0 }, |
2829 { "-enable-eol-detection", 0, 2, 0 }, | |
428 | 2830 /* These have the same priority as ordinary file name args, |
2831 so they are not reordered with respect to those. */ | |
2832 { "-L", "--directory", 0, 1 }, | |
2833 { "-directory", 0, 0, 1 }, | |
2834 { "-l", "--load", 0, 1 }, | |
2835 { "-load", 0, 0, 1 }, | |
2836 { "-f", "--funcall", 0, 1 }, | |
2837 { "-funcall", 0, 0, 1 }, | |
2838 { "-eval", "--eval", 0, 1 }, | |
2839 { "-insert", "--insert", 0, 1 }, | |
2840 /* This should be processed after ordinary file name args and the like. */ | |
2841 { "-kill", "--kill", -10, 0 }, | |
2842 }; | |
2843 | |
2844 /* Reorder the elements of ARGV (assumed to have ARGC elements) | |
2845 so that the highest priority ones come first. | |
2846 Do not change the order of elements of equal priority. | |
2847 If an option takes an argument, keep it and its argument together. */ | |
2848 | |
2849 static void | |
2367 | 2850 sort_args (int argc, Wexttext **argv) |
428 | 2851 { |
2367 | 2852 Wexttext **new_argv = xnew_array (Wexttext *, argc); |
428 | 2853 /* For each element of argv, |
2854 the corresponding element of options is: | |
2855 0 for an option that takes no arguments, | |
2856 1 for an option that takes one argument, etc. | |
2857 -1 for an ordinary non-option argument. */ | |
2858 int *options = xnew_array (int, argc); | |
2859 int *priority = xnew_array (int, argc); | |
2860 int to = 1; | |
2861 int from; | |
2862 int i; | |
2863 int end_of_options_p = 0; | |
2864 | |
2865 /* Categorize all the options, | |
2866 and figure out which argv elts are option arguments. */ | |
2867 for (from = 1; from < argc; from++) | |
2868 { | |
2869 options[from] = -1; | |
2870 priority[from] = 0; | |
2871 /* Pseudo options "--" and "run-temacs" indicate end of options */ | |
2367 | 2872 if (!wext_strcmp_ascii (argv[from], "--") || |
2873 !wext_strcmp_ascii (argv[from], "run-temacs")) | |
428 | 2874 end_of_options_p = 1; |
2875 if (!end_of_options_p && argv[from][0] == '-') | |
2876 { | |
2367 | 2877 int match; |
2878 Charcount thislen; | |
2879 Wexttext *equals; | |
428 | 2880 |
2881 /* Look for a match with a known old-fashioned option. */ | |
2882 for (i = 0; i < countof (standard_args); i++) | |
2367 | 2883 if (!wext_strcmp_ascii (argv[from], standard_args[i].name)) |
428 | 2884 { |
2885 options[from] = standard_args[i].nargs; | |
2886 priority[from] = standard_args[i].priority; | |
2887 if (from + standard_args[i].nargs >= argc) | |
2367 | 2888 fatal ("Option `%s' requires an argument\n", |
2889 WEXTTEXT_TO_8_BIT (argv[from])); | |
428 | 2890 from += standard_args[i].nargs; |
2891 goto done; | |
2892 } | |
2893 | |
2894 /* Look for a match with a known long option. | |
2895 MATCH is -1 if no match so far, -2 if two or more matches so far, | |
2896 >= 0 (the table index of the match) if just one match so far. */ | |
2897 if (argv[from][1] == '-') | |
2898 { | |
2899 match = -1; | |
2367 | 2900 thislen = wext_strlen (argv[from]); |
2901 equals = wext_strchr (argv[from], '='); | |
428 | 2902 if (equals != 0) |
2903 thislen = equals - argv[from]; | |
2904 | |
2905 for (i = 0; i < countof (standard_args); i++) | |
2906 if (standard_args[i].longname | |
2367 | 2907 && !wext_strncmp_ascii (argv[from], |
2908 standard_args[i].longname, | |
2909 thislen)) | |
428 | 2910 { |
2911 if (match == -1) | |
2912 match = i; | |
2913 else | |
2914 match = -2; | |
2915 } | |
2916 | |
2917 /* If we found exactly one match, use that. */ | |
2918 if (match >= 0) | |
2919 { | |
2920 options[from] = standard_args[match].nargs; | |
2921 priority[from] = standard_args[match].priority; | |
2922 /* If --OPTION=VALUE syntax is used, | |
2923 this option uses just one argv element. */ | |
2924 if (equals != 0) | |
2925 options[from] = 0; | |
2926 if (from + options[from] >= argc) | |
2367 | 2927 fatal ("Option `%s' requires an argument\n", |
2928 WEXTTEXT_TO_8_BIT (argv[from])); | |
428 | 2929 from += options[from]; |
2930 } | |
2931 } | |
2932 done: ; | |
2933 } | |
2934 } | |
2935 | |
2936 /* Copy the arguments, in order of decreasing priority, to NEW_ARGV. */ | |
2937 new_argv[0] = argv[0]; | |
2938 while (to < argc) | |
2939 { | |
2940 int best = -1; | |
2941 int best_priority = -9999; | |
2942 | |
2943 /* Find the highest priority remaining option. | |
2944 If several have equal priority, take the first of them. */ | |
2945 for (from = 1; from < argc; from++) | |
2946 { | |
2947 if (argv[from] != 0 && priority[from] > best_priority) | |
2948 { | |
2949 best_priority = priority[from]; | |
2950 best = from; | |
2951 } | |
2952 /* Skip option arguments--they are tied to the options. */ | |
2953 if (options[from] > 0) | |
2954 from += options[from]; | |
2955 } | |
2956 | |
5050
6f2158fa75ed
Fix quick-build, use asserts() in place of ABORT()
Ben Wing <ben@xemacs.org>
parents:
5023
diff
changeset
|
2957 assert (best >= 0); |
428 | 2958 |
1315 | 2959 /* Copy the highest priority remaining option, with its args, to |
2960 NEW_ARGV. */ | |
428 | 2961 new_argv[to++] = argv[best]; |
2962 for (i = 0; i < options[best]; i++) | |
2963 new_argv[to++] = argv[best + i + 1]; | |
2964 | |
2965 /* Clear out this option in ARGV. */ | |
2966 argv[best] = 0; | |
2967 for (i = 0; i < options[best]; i++) | |
2968 argv[best + i + 1] = 0; | |
2969 } | |
2970 | |
2367 | 2971 memcpy (argv, new_argv, sizeof (Wexttext *) * argc); |
4976
16112448d484
Rename xfree(FOO, TYPE) -> xfree(FOO)
Ben Wing <ben@xemacs.org>
parents:
4969
diff
changeset
|
2972 xfree (new_argv); |
16112448d484
Rename xfree(FOO, TYPE) -> xfree(FOO)
Ben Wing <ben@xemacs.org>
parents:
4969
diff
changeset
|
2973 xfree (options); |
16112448d484
Rename xfree(FOO, TYPE) -> xfree(FOO)
Ben Wing <ben@xemacs.org>
parents:
4969
diff
changeset
|
2974 xfree (priority); |
428 | 2975 } |
2976 | |
2977 DEFUN ("running-temacs-p", Frunning_temacs_p, 0, 0, 0, /* | |
2978 True if running temacs. This means we are in the dumping stage. | |
2979 This is false during normal execution of the `xemacs' program, and | |
2980 becomes false once `run-emacs-from-temacs' is run. | |
2981 */ | |
2982 ()) | |
2983 { | |
2984 return run_temacs_argc >= 0 ? Qt : Qnil; | |
2985 } | |
2986 | |
1315 | 2987 DEFUN ("emacs-run-status", Femacs_run_status, 0, 0, 0, /* |
2988 Plist of values indicating the current run status of this XEmacs. | |
2989 Currently defined values: | |
2990 | |
2991 `temacs' | |
2992 If non-nil, we are running a "raw temacs" (no dump data is present | |
2993 and `run-emacs-from-temacs' not called). (same as `running-temacs-p') | |
2994 | |
2995 `dumping' | |
2996 If non-nil, we are in the process of creating dump data. (same as | |
2997 `purify-flag') | |
2998 | |
2999 `restarted' | |
3000 If non-nil, `run-emacs-from-temacs' was called. | |
3001 | |
3002 `pdump' | |
3003 If non-nil, we were compiled with pdump (portable dumping) support. | |
3004 | |
3005 `batch' | |
3006 If non-nil, we are running non-interactively. (same as `noninteractive') | |
3007 */ | |
3008 ()) | |
3009 { | |
3010 Lisp_Object plist = Qnil; | |
3011 | |
3012 #define ADD_PLIST(key, val) plist = Fcons (val, Fcons (key, plist)) | |
3013 if (run_temacs_argc >= 0) | |
3014 ADD_PLIST (Qtemacs, Qt); | |
3015 if (purify_flag) | |
3016 ADD_PLIST (Qdumping, Qt); | |
3017 if (run_temacs_argc == -2) | |
3018 ADD_PLIST (Qrestarted, Qt); | |
3019 #ifdef PDUMP | |
3020 ADD_PLIST (Qpdump, Qt); | |
3021 #endif | |
3022 if (noninteractive) | |
3023 ADD_PLIST (Qbatch, Qt); | |
3024 | |
3025 #undef ADD_PLIST | |
3026 return Fnreverse (plist); | |
3027 } | |
3028 | |
2268 | 3029 DEFUN_NORETURN ("run-emacs-from-temacs", Frun_emacs_from_temacs, 0, MANY, 0, /* |
428 | 3030 Do not call this. It will reinitialize your XEmacs. You'll be sorry. |
4693
80cd90837ac5
Add argument information to remaining MANY or UNEVALLED C subrs.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4528
diff
changeset
|
3031 |
80cd90837ac5
Add argument information to remaining MANY or UNEVALLED C subrs.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4528
diff
changeset
|
3032 arguments: (&rest ARGS) |
428 | 3033 */ |
3034 /* If this function is called from startup.el, it will be possible to run | |
4477
e34711681f30
Don't determine whether to call general device-type code at startup,
Aidan Kehoe <kehoea@parhasard.net>
parents:
4458
diff
changeset
|
3035 temacs as an editor using `temacs -batch -l ../lisp/loadup.el |
e34711681f30
Don't determine whether to call general device-type code at startup,
Aidan Kehoe <kehoea@parhasard.net>
parents:
4458
diff
changeset
|
3036 run-temacs', instead of having to dump an emacs and then run that (when |
e34711681f30
Don't determine whether to call general device-type code at startup,
Aidan Kehoe <kehoea@parhasard.net>
parents:
4458
diff
changeset
|
3037 debugging emacs itself, this can be much faster)). [Actually, the speed |
e34711681f30
Don't determine whether to call general device-type code at startup,
Aidan Kehoe <kehoea@parhasard.net>
parents:
4458
diff
changeset
|
3038 difference isn't that much as long as your filesystem is local, and you |
e34711681f30
Don't determine whether to call general device-type code at startup,
Aidan Kehoe <kehoea@parhasard.net>
parents:
4458
diff
changeset
|
3039 don't end up with a dumped version in case you want to rerun it. This |
e34711681f30
Don't determine whether to call general device-type code at startup,
Aidan Kehoe <kehoea@parhasard.net>
parents:
4458
diff
changeset
|
3040 function is most useful when used as part of the `make all-elc' |
e34711681f30
Don't determine whether to call general device-type code at startup,
Aidan Kehoe <kehoea@parhasard.net>
parents:
4458
diff
changeset
|
3041 command. --ben] This will "restart" emacs with the specified command-line |
e34711681f30
Don't determine whether to call general device-type code at startup,
Aidan Kehoe <kehoea@parhasard.net>
parents:
4458
diff
changeset
|
3042 arguments. |
428 | 3043 |
3044 Martin thinks this function is most useful when using debugging | |
3045 tools like Purify or tcov that get confused by XEmacs' dumping. */ | |
3046 (int nargs, Lisp_Object *args)) | |
3047 { | |
2367 | 3048 int i; |
428 | 3049 |
3092 | 3050 #ifdef NEW_GC |
3051 if (gc_in_progress) gc_full (); | |
3052 #else /* not NEW_GC */ | |
428 | 3053 assert (!gc_in_progress); |
3092 | 3054 #endif /* not NEW_GC */ |
428 | 3055 |
3056 if (run_temacs_argc < 0) | |
2367 | 3057 invalid_operation ("I've lost my temacs-hood", Qunbound); |
3058 | |
3059 run_temacs_argc = nargs + 1; | |
3060 run_temacs_argv = xnew_array (Wexttext *, nargs + 2); | |
3061 | |
4981
4aebb0131297
Cleanups/renaming of EXTERNAL_TO_C_STRING and friends
Ben Wing <ben@xemacs.org>
parents:
4969
diff
changeset
|
3062 run_temacs_argv[0] = |
5000
44d7bde26046
fix compile errors, fix revert-buffer bug on binary/Latin 1 files, Mule-ize some files
Ben Wing <ben@xemacs.org>
parents:
4982
diff
changeset
|
3063 (Wexttext *) LISP_STRING_TO_EXTERNAL_MALLOC (Fcar (Vcommand_line_args), |
44d7bde26046
fix compile errors, fix revert-buffer bug on binary/Latin 1 files, Mule-ize some files
Ben Wing <ben@xemacs.org>
parents:
4982
diff
changeset
|
3064 Qcommand_argument_encoding); |
2367 | 3065 for (i = 0; i < nargs; i++) |
428 | 3066 { |
2367 | 3067 CHECK_STRING (args[i]); |
3068 | |
4981
4aebb0131297
Cleanups/renaming of EXTERNAL_TO_C_STRING and friends
Ben Wing <ben@xemacs.org>
parents:
4969
diff
changeset
|
3069 run_temacs_argv[i + 1] = |
5000
44d7bde26046
fix compile errors, fix revert-buffer bug on binary/Latin 1 files, Mule-ize some files
Ben Wing <ben@xemacs.org>
parents:
4982
diff
changeset
|
3070 (Wexttext *) |
4981
4aebb0131297
Cleanups/renaming of EXTERNAL_TO_C_STRING and friends
Ben Wing <ben@xemacs.org>
parents:
4969
diff
changeset
|
3071 LISP_STRING_TO_EXTERNAL_MALLOC (args[i], Qcommand_argument_encoding); |
428 | 3072 } |
2367 | 3073 run_temacs_argv[nargs + 1] = 0; |
3074 | |
428 | 3075 catchlist = NULL; /* Important! Otherwise free_cons() calls in |
3076 condition_case_unwind() may lead to GC death. */ | |
771 | 3077 unbind_to (0); /* this closes loadup.el */ |
428 | 3078 purify_flag = 0; |
1303 | 3079 #if defined (HEAP_IN_DATA) && !defined (PDUMP) |
428 | 3080 report_sheap_usage (0); |
3081 #endif | |
1315 | 3082 |
3083 /* run-temacs usually only occurs as a result of building, and in all such | |
3084 cases we want a backtrace, even if it occurs very early. */ | |
3085 if (NILP (Vstack_trace_on_error)) | |
3086 Vstack_trace_on_error = Qt; | |
3087 | |
428 | 3088 LONGJMP (run_temacs_catch, 1); |
1204 | 3089 RETURN_NOT_REACHED (Qnil); |
428 | 3090 } |
3091 | |
3092 /* ARGSUSED */ | |
3093 int | |
2367 | 3094 main (int argc, Extbyte **argv, Extbyte **UNUSED (envp)) |
428 | 3095 { |
442 | 3096 |
3097 #ifdef _MSC_VER | |
3098 /* Under VC++, access violations and the like are not sent through | |
3099 the standard signal() mechanism. Rather, they need to be handled | |
3100 using the Microsoft "structured exception handling" mechanism, | |
3101 which vaguely resembles the C++ mechanisms. */ | |
3102 __try | |
3103 { | |
3104 #endif | |
3105 | |
428 | 3106 int volatile vol_argc = argc; |
2367 | 3107 Wexttext ** volatile vol_argv; |
428 | 3108 /* This is hairy. We need to compute where the XEmacs binary was invoked |
3109 from because temacs initialization requires it to find the lisp | |
3110 directories. The code that recomputes the path is guarded by the | |
3111 restarted flag. There are three possible paths I've found so far | |
3112 through this: | |
3113 | |
3114 temacs -- When running temacs for basic build stuff, the first main_1 | |
3115 will be the only one invoked. It must compute the path else there | |
3116 will be a very ugly bomb in startup.el (can't find obvious location | |
3117 for doc-directory data-directory, etc.). | |
3118 | |
3119 temacs w/ run-temacs on the command line -- This is run to bytecompile | |
3120 all the out of date dumped lisp. It will execute both of the main_1 | |
3121 calls and the second one must not touch the first computation because | |
3122 argc/argv are hosed the second time through. | |
3123 | |
3124 xemacs -- Only the second main_1 is executed. The invocation path must | |
3125 computed but this only matters when running in place or when running | |
3126 as a login shell. | |
3127 | |
3128 As a bonus for straightening this out, XEmacs can now be run in place | |
3129 as a login shell. This never used to work. | |
3130 | |
3131 As another bonus, we can now guarantee that | |
3132 (concat invocation-directory invocation-name) contains the filename | |
3133 of the XEmacs binary we are running. This can now be used in a | |
3134 definite test for out of date dumped files. -slb */ | |
3135 int restarted = 0; | |
3136 #ifdef QUANTIFY | |
3137 quantify_stop_recording_data (); | |
3138 quantify_clear_data (); | |
3139 #endif /* QUANTIFY */ | |
3140 | |
2367 | 3141 inhibit_non_essential_conversion_operations = 1; |
428 | 3142 suppress_early_error_handler_backtrace = 0; |
3143 lim_data = 0; /* force reinitialization of this variable */ | |
3144 | |
3145 /* Lisp_Object must fit in a word; check VALBITS and GCTYPEBITS */ | |
3146 assert (sizeof (Lisp_Object) == sizeof (void *)); | |
3147 | |
3148 #ifdef LINUX_SBRK_BUG | |
3149 sbrk (1); | |
3150 #endif | |
3151 | |
2367 | 3152 #ifdef WIN32_ANY |
3153 /* Figure out which version we're running so XEUNICODE_P works */ | |
3154 init_win32_very_very_early (); | |
3155 #endif | |
3156 | |
3157 #ifdef WIN32_NATIVE | |
3158 #if 0 | |
3159 /* !!#### We should be doing something like this, but this messes up | |
3160 globbing. I tried using wmain() and linking with WSETARGV, but the | |
3161 routines for WSETARGV are left out of MSVCRT.DLL! | |
3162 | |
3163 To fix this we need to copy the argument-expanding and globbing code | |
3164 from Cygwin and Unicode-ize it. Yuck. */ | |
3165 if (XEUNICODE_P) | |
3166 /* Set up Unicode versions of the arguments. */ | |
3167 vol_argv = CommandLineToArgvW (GetCommandLineW (), &vol_argc); | |
3168 #else | |
3169 { | |
3170 int i; | |
3171 | |
3172 vol_argv = alloca_array (Wexttext *, argc); | |
3173 for (i = 0; i < argc; i++) | |
3174 vol_argv[i] = MULTIBYTE_TO_WEXTTEXT (argv[i]); | |
3175 } | |
3176 #endif | |
3177 #else | |
3178 vol_argv = (Wexttext **) argv; | |
3179 #endif /* WIN32_NATIVE */ | |
3180 | |
428 | 3181 if (!initialized) |
3182 { | |
3183 #ifdef DOUG_LEA_MALLOC | |
3184 mallopt (M_MMAP_MAX, 0); | |
3185 #endif | |
3186 run_temacs_argc = 0; | |
3187 if (! SETJMP (run_temacs_catch)) | |
3188 { | |
2367 | 3189 main_1 (vol_argc, vol_argv, NULL, 0); |
428 | 3190 } |
3191 /* run-emacs-from-temacs called */ | |
3192 restarted = 1; | |
3193 vol_argc = run_temacs_argc; | |
3194 vol_argv = run_temacs_argv; | |
3195 #ifdef _SCO_DS | |
3196 /* This makes absolutely no sense to anyone involved. There are | |
3197 several people using this stuff. We've compared versions on | |
3198 everything we can think of. We can find no difference. | |
3199 However, on both my systems environ is a plain old global | |
3200 variable initialized to zero. _environ is the one that | |
3201 contains pointers to the actual environment. | |
3202 | |
3203 Since we can't figure out the difference (and we're hours | |
3204 away from a release), this takes a very cowardly approach and | |
3205 is bracketed with both a system specific preprocessor test | |
3206 and a runtime "do you have this problem" test | |
3207 | |
3208 06/20/96 robertl@dgii.com */ | |
3209 { | |
2367 | 3210 extern Extbyte *_environ; |
3211 if (environ == NULL) | |
1315 | 3212 environ = _environ; |
428 | 3213 } |
3214 #endif /* _SCO_DS */ | |
3215 } | |
456 | 3216 #if defined (RUN_TIME_REMAP) && ! defined (PDUMP) |
428 | 3217 else |
3218 /* obviously no-one uses this because where it was before initialized was | |
3219 *always* true */ | |
3220 run_time_remap (argv[0]); | |
3221 #endif | |
3222 | |
3223 #ifdef DOUG_LEA_MALLOC | |
3224 if (initialized && (malloc_state_ptr != NULL)) | |
3225 { | |
3226 int rc = malloc_set_state (malloc_state_ptr); | |
3227 if (rc != 0) | |
3228 { | |
442 | 3229 stderr_out ("malloc_set_state failed, rc = %d\n", rc); |
2500 | 3230 ABORT (); |
428 | 3231 } |
3232 #if 0 | |
3233 free (malloc_state_ptr); | |
3234 #endif | |
3235 /* mmap works in glibc-2.1, glibc-2.0 (Non-Mule only) and Linux libc5 */ | |
1303 | 3236 #if (defined (__GLIBC__) && __GLIBC_MINOR__ >= 1) || \ |
3237 defined (_NO_MALLOC_WARNING_) || \ | |
3238 (defined (__GLIBC__) && __GLIBC_MINOR__ < 1 && !defined (MULE)) || \ | |
3239 defined (DEBUG_DOUG_LEA_MALLOC) | |
428 | 3240 mallopt (M_MMAP_MAX, 64); |
3241 #endif | |
3242 #ifdef REL_ALLOC | |
3243 r_alloc_reinit (); | |
3244 #endif | |
3245 } | |
3246 #endif /* DOUG_LEA_MALLOC */ | |
3247 | |
1315 | 3248 run_temacs_argc = -2; |
428 | 3249 |
2367 | 3250 main_1 (vol_argc, vol_argv, NULL, restarted); |
442 | 3251 |
3252 #ifdef _MSC_VER | |
3253 } | |
3254 /* VC++ documentation says that | |
3255 GetExceptionCode() cannot be called inside the filter itself. */ | |
3256 __except (mswindows_handle_hardware_exceptions (GetExceptionCode ())) {} | |
3257 #endif | |
3258 | |
1204 | 3259 RETURN_NOT_REACHED (0); |
428 | 3260 } |
3261 | |
3262 | |
771 | 3263 /************************************************************************/ |
3264 /* dumping XEmacs (to a new EXE file) */ | |
3265 /************************************************************************/ | |
3266 | |
1204 | 3267 #if !defined (PDUMP) || !defined (SYSTEM_MALLOC) |
2367 | 3268 extern Rawbyte my_edata[]; |
428 | 3269 #endif |
771 | 3270 |
3271 extern void disable_free_hook (void); | |
3272 | |
3273 DEFUN ("dump-emacs", Fdump_emacs, 2, 2, 0, /* | |
3274 Dump current state of XEmacs into executable file FILENAME. | |
3275 Take symbols from SYMFILE (presumably the file you executed to run XEmacs). | |
3276 This is used in the file `loadup.el' when building XEmacs. | |
3277 | |
3278 Remember to set `command-line-processed' to nil before dumping | |
3279 if you want the dumped XEmacs to process its command line | |
3280 and announce itself normally when it is run. | |
428 | 3281 */ |
771 | 3282 (filename, symfile)) |
428 | 3283 { |
3284 /* This function can GC */ | |
771 | 3285 struct gcpro gcpro1, gcpro2; |
3286 int opurify; | |
3287 | |
3288 GCPRO2 (filename, symfile); | |
3289 | |
3290 #ifdef FREE_CHECKING | |
3291 Freally_free (Qnil); | |
3292 | |
3293 /* When we're dumping, we can't use the debugging free() */ | |
3294 disable_free_hook (); | |
3295 #endif | |
3296 | |
3297 CHECK_STRING (filename); | |
3298 filename = Fexpand_file_name (filename, Qnil); | |
3299 if (!NILP (symfile)) | |
428 | 3300 { |
771 | 3301 CHECK_STRING (symfile); |
3302 if (XSTRING_LENGTH (symfile) > 0) | |
3303 symfile = Fexpand_file_name (symfile, Qnil); | |
3304 else | |
3305 symfile = Qnil; | |
428 | 3306 } |
3307 | |
771 | 3308 opurify = purify_flag; |
3309 purify_flag = 0; | |
3310 | |
1303 | 3311 #if defined (HEAP_IN_DATA) && !defined (PDUMP) |
771 | 3312 report_sheap_usage (1); |
3313 #endif | |
3314 | |
3315 clear_message (); | |
3316 | |
3317 fflush (stderr); | |
3318 fflush (stdout); | |
3319 | |
3320 disksave_object_finalization (); | |
3263 | 3321 #ifndef NEW_GC |
771 | 3322 release_breathing_space (); |
3263 | 3323 #endif /* not NEW_GC */ |
771 | 3324 |
3325 /* Tell malloc where start of impure now is */ | |
3326 /* Also arrange for warnings when nearly out of space. */ | |
3327 #ifndef SYSTEM_MALLOC | |
3328 memory_warnings (my_edata, malloc_warning); | |
3329 #endif | |
3330 | |
3092 | 3331 #ifdef NEW_GC |
3332 gc_full (); | |
3333 #else /* not NEW_GC */ | |
814 | 3334 garbage_collect_1 (); |
3092 | 3335 #endif /* not NEW_GC */ |
814 | 3336 |
3337 #ifdef PDUMP | |
3338 pdump (); | |
3339 #elif defined (WIN32_NATIVE) | |
3340 unexec (XSTRING_DATA (filename), | |
3341 STRINGP (symfile) ? XSTRING_DATA (symfile) : 0, | |
3342 (uintptr_t) my_edata, 0, 0); | |
3343 #else | |
771 | 3344 { |
3345 Extbyte *filename_ext; | |
3346 Extbyte *symfile_ext; | |
3347 | |
4981
4aebb0131297
Cleanups/renaming of EXTERNAL_TO_C_STRING and friends
Ben Wing <ben@xemacs.org>
parents:
4969
diff
changeset
|
3348 LISP_PATHNAME_CONVERT_OUT (filename, filename_ext); |
771 | 3349 |
3350 if (STRINGP (symfile)) | |
4981
4aebb0131297
Cleanups/renaming of EXTERNAL_TO_C_STRING and friends
Ben Wing <ben@xemacs.org>
parents:
4969
diff
changeset
|
3351 LISP_PATHNAME_CONVERT_OUT (symfile, symfile_ext); |
771 | 3352 else |
3353 symfile_ext = 0; | |
3354 | |
814 | 3355 # ifdef DOUG_LEA_MALLOC |
771 | 3356 malloc_state_ptr = malloc_get_state (); |
814 | 3357 # endif |
771 | 3358 /* here we break our rule that the filename conversion should |
3359 be performed at the actual time that the system call is made. | |
3360 It's a whole lot easier to do the conversion here than to | |
3361 modify all the unexec routines to ensure that filename | |
3362 conversion is applied everywhere. Don't worry about memory | |
3363 leakage because this call only happens once. */ | |
3364 unexec (filename_ext, symfile_ext, (uintptr_t) my_edata, 0, 0); | |
814 | 3365 # ifdef DOUG_LEA_MALLOC |
771 | 3366 free (malloc_state_ptr); |
814 | 3367 # endif |
771 | 3368 } |
814 | 3369 #endif /* not PDUMP, not WIN32_NATIVE */ |
771 | 3370 |
3371 purify_flag = opurify; | |
3372 | |
814 | 3373 UNGCPRO; |
771 | 3374 return Qnil; |
3375 } | |
3376 | |
3377 | |
3378 /************************************************************************/ | |
3379 /* exiting XEmacs (intended or not) */ | |
3380 /************************************************************************/ | |
3381 | |
5023
838630c0734f
error-checking, Windows shutdown changes
Ben Wing <ben@xemacs.org>
parents:
5014
diff
changeset
|
3382 /* Do we need to pause with a message box so that messages can be read |
838630c0734f
error-checking, Windows shutdown changes
Ben Wing <ben@xemacs.org>
parents:
5014
diff
changeset
|
3383 at shutdown? We do this is we have support for native Windows frames |
838630c0734f
error-checking, Windows shutdown changes
Ben Wing <ben@xemacs.org>
parents:
5014
diff
changeset
|
3384 and if we are native Windows. The first part is because only when compiled |
838630c0734f
error-checking, Windows shutdown changes
Ben Wing <ben@xemacs.org>
parents:
5014
diff
changeset
|
3385 for native Windows frames do we have Fmswindows_message_box(), and |
838630c0734f
error-checking, Windows shutdown changes
Ben Wing <ben@xemacs.org>
parents:
5014
diff
changeset
|
3386 the second part is because we don't want to do this under Cygwin, where |
838630c0734f
error-checking, Windows shutdown changes
Ben Wing <ben@xemacs.org>
parents:
5014
diff
changeset
|
3387 we have a Unix-like environment and a working stderr where the messages |
838630c0734f
error-checking, Windows shutdown changes
Ben Wing <ben@xemacs.org>
parents:
5014
diff
changeset
|
3388 go. The two conditions sound somewhat redundant (maybe we could just |
838630c0734f
error-checking, Windows shutdown changes
Ben Wing <ben@xemacs.org>
parents:
5014
diff
changeset
|
3389 use the second?) but they aren't completely: Theoretically (maybe with |
838630c0734f
error-checking, Windows shutdown changes
Ben Wing <ben@xemacs.org>
parents:
5014
diff
changeset
|
3390 MinGW?) we could imagine compiling under native Windows as the OS |
5384
3889ef128488
Fix misspelled words, and some grammar, across the entire source tree.
Jerry James <james@xemacs.org>
parents:
5255
diff
changeset
|
3391 but e.g. targeting only X Windows as the window system. --ben */ |
5023
838630c0734f
error-checking, Windows shutdown changes
Ben Wing <ben@xemacs.org>
parents:
5014
diff
changeset
|
3392 |
838630c0734f
error-checking, Windows shutdown changes
Ben Wing <ben@xemacs.org>
parents:
5014
diff
changeset
|
3393 #if defined (HAVE_MS_WINDOWS) && defined (WIN32_NATIVE) |
838630c0734f
error-checking, Windows shutdown changes
Ben Wing <ben@xemacs.org>
parents:
5014
diff
changeset
|
3394 # define NEED_WINDOWS_MESSAGE_PAUSE |
838630c0734f
error-checking, Windows shutdown changes
Ben Wing <ben@xemacs.org>
parents:
5014
diff
changeset
|
3395 #endif |
838630c0734f
error-checking, Windows shutdown changes
Ben Wing <ben@xemacs.org>
parents:
5014
diff
changeset
|
3396 |
2367 | 3397 /* |
3398 | |
3399 Info on intended/unintended exits: | |
3400 | |
3401 (Info-goto-node "(internals)Exiting") | |
771 | 3402 */ |
3403 | |
3404 /* ------------------------------- */ | |
3405 /* low-level debugging functions */ | |
3406 /* ------------------------------- */ | |
3407 | |
3408 #if defined (WIN32_NATIVE) && defined (DEBUG_XEMACS) | |
3409 #define debugging_breakpoint() DebugBreak () | |
3410 #else | |
3411 #define debugging_breakpoint() | |
3412 #endif | |
3413 | |
3414 void | |
3415 debug_break (void) | |
3416 { | |
3417 debugging_breakpoint (); | |
3418 } | |
3419 | |
1315 | 3420 #ifdef WIN32_ANY |
771 | 3421 |
3422 /* Return whether all bytes in the specified memory block can be read. */ | |
3423 int | |
4854 | 3424 debug_can_access_memory (const void *ptr, Bytecount len) |
771 | 3425 { |
3426 return !IsBadReadPtr (ptr, len); | |
3427 } | |
3428 | |
1315 | 3429 #else /* !WIN32_ANY */ |
771 | 3430 |
3431 /* #### There must be a better way!!!! */ | |
3432 | |
3433 static JMP_BUF memory_error_jump; | |
3434 | |
3435 static SIGTYPE | |
3436 debug_memory_error (int signum) | |
3437 { | |
3438 EMACS_REESTABLISH_SIGNAL (signum, debug_memory_error); | |
3439 EMACS_UNBLOCK_SIGNAL (signum); | |
3440 LONGJMP (memory_error_jump, 1); | |
3441 } | |
3442 | |
4871
d8d92ad084b8
rewrite check for bad memory in debug_can_save_memory
Ben Wing <ben@xemacs.org>
parents:
4854
diff
changeset
|
3443 /* Used in debug_can_access_memory(). Made into a global, externally |
d8d92ad084b8
rewrite check for bad memory in debug_can_save_memory
Ben Wing <ben@xemacs.org>
parents:
4854
diff
changeset
|
3444 accessible variable to make absolutely sure that no compiler will |
d8d92ad084b8
rewrite check for bad memory in debug_can_save_memory
Ben Wing <ben@xemacs.org>
parents:
4854
diff
changeset
|
3445 optimize away the memory-read function in debug_can_access_memory(); |
d8d92ad084b8
rewrite check for bad memory in debug_can_save_memory
Ben Wing <ben@xemacs.org>
parents:
4854
diff
changeset
|
3446 see comments there. */ |
d8d92ad084b8
rewrite check for bad memory in debug_can_save_memory
Ben Wing <ben@xemacs.org>
parents:
4854
diff
changeset
|
3447 |
d8d92ad084b8
rewrite check for bad memory in debug_can_save_memory
Ben Wing <ben@xemacs.org>
parents:
4854
diff
changeset
|
3448 volatile int dcam_saveval; |
d8d92ad084b8
rewrite check for bad memory in debug_can_save_memory
Ben Wing <ben@xemacs.org>
parents:
4854
diff
changeset
|
3449 |
771 | 3450 /* Return whether all bytes in the specified memory block can be read. */ |
3451 int | |
4854 | 3452 debug_can_access_memory (const void *ptr, Bytecount len) |
771 | 3453 { |
3454 /* Use volatile to protect variables from being clobbered by longjmp. */ | |
3455 SIGTYPE (*volatile old_sigbus) (int); | |
3456 SIGTYPE (*volatile old_sigsegv) (int); | |
3457 volatile int old_errno = errno; | |
3458 volatile int retval = 1; | |
3459 | |
4871
d8d92ad084b8
rewrite check for bad memory in debug_can_save_memory
Ben Wing <ben@xemacs.org>
parents:
4854
diff
changeset
|
3460 assert (len > 0); |
771 | 3461 if (!SETJMP (memory_error_jump)) |
3462 { | |
3463 old_sigbus = | |
3464 (SIGTYPE (*) (int)) EMACS_SIGNAL (SIGBUS, debug_memory_error); | |
3465 old_sigsegv = | |
3466 (SIGTYPE (*) (int)) EMACS_SIGNAL (SIGSEGV, debug_memory_error); | |
3467 | |
4871
d8d92ad084b8
rewrite check for bad memory in debug_can_save_memory
Ben Wing <ben@xemacs.org>
parents:
4854
diff
changeset
|
3468 /* We could just do memcmp (ptr, ptr, len), but we want to avoid any |
d8d92ad084b8
rewrite check for bad memory in debug_can_save_memory
Ben Wing <ben@xemacs.org>
parents:
4854
diff
changeset
|
3469 possibility that a super-optimizing compiler might optimize away such |
d8d92ad084b8
rewrite check for bad memory in debug_can_save_memory
Ben Wing <ben@xemacs.org>
parents:
4854
diff
changeset
|
3470 a call by concluding that its result is always 1. */ |
771 | 3471 if (len > 1) |
4871
d8d92ad084b8
rewrite check for bad memory in debug_can_save_memory
Ben Wing <ben@xemacs.org>
parents:
4854
diff
changeset
|
3472 /* Instead, if length is > 1, do off-by-one comparison. |
d8d92ad084b8
rewrite check for bad memory in debug_can_save_memory
Ben Wing <ben@xemacs.org>
parents:
4854
diff
changeset
|
3473 We save the value somewhere that is externally accessible to |
d8d92ad084b8
rewrite check for bad memory in debug_can_save_memory
Ben Wing <ben@xemacs.org>
parents:
4854
diff
changeset
|
3474 make absolutely sure that a compiler won't optimize away the |
d8d92ad084b8
rewrite check for bad memory in debug_can_save_memory
Ben Wing <ben@xemacs.org>
parents:
4854
diff
changeset
|
3475 call by concluding that the return value isn't really used. |
d8d92ad084b8
rewrite check for bad memory in debug_can_save_memory
Ben Wing <ben@xemacs.org>
parents:
4854
diff
changeset
|
3476 */ |
d8d92ad084b8
rewrite check for bad memory in debug_can_save_memory
Ben Wing <ben@xemacs.org>
parents:
4854
diff
changeset
|
3477 dcam_saveval = memcmp (ptr, (Rawbyte *) ptr + 1, len - 1); |
771 | 3478 else |
4871
d8d92ad084b8
rewrite check for bad memory in debug_can_save_memory
Ben Wing <ben@xemacs.org>
parents:
4854
diff
changeset
|
3479 { |
d8d92ad084b8
rewrite check for bad memory in debug_can_save_memory
Ben Wing <ben@xemacs.org>
parents:
4854
diff
changeset
|
3480 /* We can't do the off-by-one trick with only one byte, so instead, |
d8d92ad084b8
rewrite check for bad memory in debug_can_save_memory
Ben Wing <ben@xemacs.org>
parents:
4854
diff
changeset
|
3481 we compare to a fixed-sized buffer. */ |
5000
44d7bde26046
fix compile errors, fix revert-buffer bug on binary/Latin 1 files, Mule-ize some files
Ben Wing <ben@xemacs.org>
parents:
4982
diff
changeset
|
3482 Rawbyte randval[1]; |
4871
d8d92ad084b8
rewrite check for bad memory in debug_can_save_memory
Ben Wing <ben@xemacs.org>
parents:
4854
diff
changeset
|
3483 randval[0] = 0; |
d8d92ad084b8
rewrite check for bad memory in debug_can_save_memory
Ben Wing <ben@xemacs.org>
parents:
4854
diff
changeset
|
3484 dcam_saveval = memcmp (randval, ptr, len); |
d8d92ad084b8
rewrite check for bad memory in debug_can_save_memory
Ben Wing <ben@xemacs.org>
parents:
4854
diff
changeset
|
3485 } |
771 | 3486 } |
3487 else | |
3488 retval = 0; | |
3489 EMACS_SIGNAL (SIGBUS, old_sigbus); | |
3490 EMACS_SIGNAL (SIGSEGV, old_sigsegv); | |
3491 errno = old_errno; | |
854 | 3492 |
771 | 3493 return retval; |
3494 } | |
3495 | |
1315 | 3496 #endif /* WIN32_ANY */ |
771 | 3497 |
3498 #ifdef DEBUG_XEMACS | |
3499 | |
3500 DEFUN ("force-debugging-signal", Fforce_debugging_signal, 0, 1, 0, /* | |
3501 Cause XEmacs to enter the debugger. | |
3502 On some systems, there may be no way to do this gracefully; if so, | |
3503 nothing happens unless ABORT is non-nil, in which case XEmacs will | |
2500 | 3504 ABORT() -- a sure-fire way to immediately get back to the debugger, |
771 | 3505 but also a sure-fire way to kill XEmacs (and dump core on Unix |
3506 systems)! | |
3507 */ | |
3508 (abort_)) | |
3509 { | |
3510 debugging_breakpoint (); | |
3511 if (!NILP (abort_)) | |
2500 | 3512 ABORT (); |
771 | 3513 return Qnil; |
3514 } | |
3515 | |
3516 #endif /* DEBUG_XEMACS */ | |
3517 | |
3518 /* ------------------------------- */ | |
3519 /* some helper functions */ | |
3520 /* ------------------------------- */ | |
3521 | |
3522 static void | |
3523 ensure_no_quitting_from_now_on (void) | |
3524 { | |
3525 /* make sure no quitting from now on!! */ | |
3526 dont_check_for_quit = 1; | |
3527 Vinhibit_quit = Qt; | |
3528 Vquit_flag = Qnil; | |
3529 } | |
3530 | |
5023
838630c0734f
error-checking, Windows shutdown changes
Ben Wing <ben@xemacs.org>
parents:
5014
diff
changeset
|
3531 #ifdef NEED_WINDOWS_MESSAGE_PAUSE |
771 | 3532 static void |
3533 pause_so_user_can_read_messages (int allow_further) | |
3534 { | |
3535 static int already_paused; | |
3536 | |
1315 | 3537 if (already_paused) |
771 | 3538 return; |
3539 if (!allow_further) | |
3540 already_paused = 1; | |
442 | 3541 /* If we displayed a message on the console, then we must allow the |
3542 user to see this message. This may be unnecessary, but can't hurt, | |
3543 and we can't necessarily check arg; e.g. xemacs --help kills with | |
3544 argument 0. */ | |
1315 | 3545 if (mswindows_message_outputted && |
3546 /* noninteractive, we always show the box. Else, | |
3547 do it when there is not yet an initial frame -- in such case, | |
3548 XEmacs will just die immediately and we wouldn't see anything. */ | |
3549 (noninteractive || NILP (Fselected_frame (Qnil)))) | |
771 | 3550 Fmswindows_message_box |
3551 (build_msg_string ("Messages outputted. XEmacs is exiting."), | |
3552 Qnil, Qnil); | |
3553 } | |
442 | 3554 #endif |
3555 | |
826 | 3556 #ifdef WIN32_NATIVE |
3557 | |
3558 static DWORD CALLBACK | |
3559 wait_for_termination_signal (LPVOID handle) | |
3560 { | |
3561 HANDLE hevent = (HANDLE) handle; | |
3562 WaitForSingleObject (hevent, INFINITE); | |
3563 ExitProcess (0); | |
3564 return 0; /* not reached */ | |
3565 } | |
3566 | |
3567 #endif | |
771 | 3568 /* -------------------------------- */ |
3569 /* a (more-or-less) normal shutdown */ | |
3570 /* -------------------------------- */ | |
428 | 3571 |
3572 /* Perform an orderly shutdown of XEmacs. Autosave any modified | |
3573 buffers, kill any child processes, clean up the terminal modes (if | |
3574 we're in the foreground), and other stuff like that. Don't perform | |
3575 any redisplay; this may be called when XEmacs is shutting down in | |
3576 the background, or after its X connection has died. | |
3577 | |
3578 If SIG is a signal number, print a message for it. | |
3579 | |
442 | 3580 This is called by fatal signal handlers and Fkill_emacs. It used to |
3581 be called by X protocol error handlers, but instead they now call | |
3582 Fkill_emacs. */ | |
771 | 3583 |
428 | 3584 static void |
442 | 3585 shut_down_emacs (int sig, Lisp_Object stuff, int no_auto_save) |
428 | 3586 { |
3587 /* This function can GC */ | |
3588 /* Prevent running of hooks and other non-essential stuff | |
3589 from now on. */ | |
3590 preparing_for_armageddon = 1; | |
3591 | |
442 | 3592 ensure_no_quitting_from_now_on (); |
428 | 3593 |
3594 #ifdef QUANTIFY | |
3595 quantify_stop_recording_data (); | |
3596 #endif /* QUANTIFY */ | |
3597 | |
3598 /* This is absolutely the most important thing to do, so make sure | |
3599 we do it now, before anything else. We might have crashed and | |
3600 be in a weird inconsistent state, and potentially anything could | |
3601 set off another protection fault and cause us to bail out | |
3602 immediately. */ | |
442 | 3603 /* Steve writes the following: |
3604 | |
3605 [[I'm not removing the code entirely, yet. We have run up against | |
428 | 3606 a spate of problems in diagnosing crashes due to crashes within |
3607 crashes. It has very definitely been determined that code called | |
3608 during auto-saving cannot work if XEmacs crashed inside of GC. | |
3609 We already auto-save on an itimer so there cannot be too much | |
3610 unsaved stuff around, and if we get better crash reports we might | |
442 | 3611 be able to get more problems fixed so I'm disabling this. -slb]] |
3612 | |
3613 and DISABLES AUTO-SAVING ENTIRELY during crashes! Way way bad idea. | |
3614 | |
3615 Instead let's just be more intelligent about avoiding crashing | |
3616 when possible, esp. nested crashes. | |
3617 */ | |
3618 if (!no_auto_save) | |
3619 Fdo_auto_save (Qt, Qnil); /* do this before anything hazardous */ | |
428 | 3620 |
3621 fflush (stdout); | |
3622 reset_all_consoles (); | |
3623 if (sig && sig != SIGTERM) | |
3624 { | |
442 | 3625 if (sig == -1) |
3626 stderr_out ("\nFatal error.\n\n"); | |
3627 else | |
3628 stderr_out ("\nFatal error (%d).\n\n", sig); | |
428 | 3629 stderr_out |
3630 ("Your files have been auto-saved.\n" | |
1204 | 3631 "Use `M-x recover-session' to recover them.\n" |
3632 "\n" | |
3633 "Your version of XEmacs was distributed with a PROBLEMS file that may describe\n" | |
3634 "your crash, and with luck a workaround. Please check it first, but do report\n" | |
3635 "the crash anyway.\n\n" | |
3636 "Please report this bug by invoking M-x report-emacs-bug, or by selecting\n" | |
3637 "`Send Bug Report' from the Help menu. If that won't work, send ordinary\n" | |
2994 | 3638 "email to `xemacs-beta@xemacs.org'." |
3639 " *MAKE SURE* to include this entire\n" | |
3640 "output from this crash, especially including the Lisp backtrace, as well as\n" | |
3641 "the XEmacs configuration from M-x describe-installation (or equivalently,\n" | |
3642 "the file `Installation' in the top of the build tree).\n" | |
1204 | 3643 #ifdef _MSC_VER |
3644 "\n" | |
3645 "If you are fortunate enough to have some sort of debugging aid installed\n" | |
3646 "on your system, for example Visual C++, and you can get a C stack backtrace,\n" | |
3647 "*please* include it, as it will make our life far easier.\n" | |
3648 "\n" | |
3649 #else | |
3650 "\n" | |
3651 "*Please* try *hard* to obtain a C stack backtrace; without it, we are unlikely\n" | |
3652 "to be able to analyze the problem. Locate the core file produced as a result\n" | |
3653 "of this crash (often called `core' or `core.<process-id>', and located in\n" | |
3654 "the directory in which you started XEmacs or your home directory), and type\n" | |
3655 "\n" | |
3656 " gdb " | |
442 | 3657 #endif |
3658 ); | |
3659 #ifndef _MSC_VER | |
428 | 3660 { |
2367 | 3661 const Ibyte *name; |
3662 Ibyte *dir = 0; | |
428 | 3663 |
3664 /* Now try to determine the actual path to the executable, | |
3665 to try to make the backtrace-determination process as foolproof | |
3666 as possible. */ | |
3667 if (STRINGP (Vinvocation_name)) | |
2367 | 3668 name = XSTRING_DATA (Vinvocation_name); |
428 | 3669 else |
2367 | 3670 name = (const Ibyte *) "xemacs"; |
428 | 3671 if (STRINGP (Vinvocation_directory)) |
2367 | 3672 dir = XSTRING_DATA (Vinvocation_directory); |
428 | 3673 if (!dir || dir[0] != '/') |
3674 stderr_out ("`which %s`", name); | |
2367 | 3675 else if (dir[qxestrlen (dir) - 1] != '/') |
428 | 3676 stderr_out ("%s/%s", dir, name); |
3677 else | |
3678 stderr_out ("%s%s", dir, name); | |
3679 } | |
3680 stderr_out | |
1097 | 3681 (" core\n" |
3682 "\n" | |
1204 | 3683 "then type `where' at the debugger prompt. No GDB on your system? You may\n" |
3684 "have DBX, or XDB, or SDB. (Ask your system administrator if you need help.)\n" | |
3685 "If no core file was produced, enable them (often with `ulimit -c unlimited')\n" | |
5384
3889ef128488
Fix misspelled words, and some grammar, across the entire source tree.
Jerry James <james@xemacs.org>
parents:
5255
diff
changeset
|
3686 "in case of future reoccurrence of the crash.\n"); |
442 | 3687 #endif /* _MSC_VER */ |
428 | 3688 } |
3689 | |
3690 stuff_buffered_input (stuff); | |
3691 | |
3692 kill_buffer_processes (Qnil); | |
3693 | |
3694 #ifdef CLASH_DETECTION | |
3695 unlock_all_files (); | |
3696 #endif | |
3697 | |
3698 #ifdef TOOLTALK | |
3699 tt_session_quit (tt_default_session ()); | |
3700 #if 0 | |
3701 /* The following crashes when built on X11R5 and run on X11R6 */ | |
3702 tt_close (); | |
3703 #endif | |
3704 #endif /* TOOLTALK */ | |
3705 } | |
3706 | |
771 | 3707 /* Dumping apparently isn't supported by versions of GCC >= 2.8. */ |
3708 /* The following needs conditionalization on whether either XEmacs or */ | |
3709 /* various system shared libraries have been built and linked with */ | |
3710 /* GCC >= 2.8. -slb */ | |
4735
80d74fed5399
Remove "old" GNU malloc in src/malloc.c, and all references to it. Drop the
Jerry James <james@xemacs.org>
parents:
4710
diff
changeset
|
3711 #ifndef SYSTEM_MALLOC |
771 | 3712 static void |
2286 | 3713 voodoo_free_hook (void *UNUSED (mem)) |
771 | 3714 { |
3715 /* Disable all calls to free() when XEmacs is exiting and it doesn't */ | |
3716 /* matter. */ | |
3717 __free_hook = | |
2286 | 3718 #if defined (TYPEOF) && !defined (UNO) |
1792 | 3719 /* prototype of __free_hook varies with glibc version */ |
1799 | 3720 (TYPEOF (__free_hook)) |
440 | 3721 #endif |
771 | 3722 voodoo_free_hook; |
3723 } | |
4735
80d74fed5399
Remove "old" GNU malloc in src/malloc.c, and all references to it. Drop the
Jerry James <james@xemacs.org>
parents:
4710
diff
changeset
|
3724 #endif /* SYSTEM_MALLOC */ |
771 | 3725 |
2268 | 3726 DEFUN_NORETURN ("kill-emacs", Fkill_emacs, 0, 1, "P", /* |
771 | 3727 Exit the XEmacs job and kill it. Ask for confirmation, without argument. |
3728 If ARG is an integer, return ARG as the exit program code. | |
3729 If ARG is a string, stuff it as keyboard input. | |
3730 | |
3731 The value of `kill-emacs-hook', if not void, | |
3732 is a list of functions (of no args), | |
3733 all of which are called before XEmacs is actually killed. | |
428 | 3734 */ |
771 | 3735 (arg)) |
428 | 3736 { |
3737 /* This function can GC */ | |
771 | 3738 struct gcpro gcpro1; |
3739 | |
3740 GCPRO1 (arg); | |
3741 | |
3742 if (feof (stdin)) | |
3743 arg = Qt; | |
3744 | |
3745 if (!preparing_for_armageddon && !noninteractive) | |
3746 run_hook (Qkill_emacs_hook); | |
3747 | |
3748 ensure_no_quitting_from_now_on (); | |
3749 | |
3750 if (!preparing_for_armageddon) | |
428 | 3751 { |
771 | 3752 Lisp_Object concons, nextcons; |
3753 | |
3754 /* Normally, go ahead and delete all the consoles now. | |
3755 Some unmentionably lame window systems (MS Wwwww...... eek, | |
3756 I can't even say it) don't properly clean up after themselves, | |
3757 and even for those that do, it might be cleaner this way. | |
3758 If we're going down, however, we don't do this (might | |
3759 be too dangerous), and if we get a crash somewhere within | |
3760 this loop, we'll still autosave and won't try this again. */ | |
3761 | |
3762 LIST_LOOP_DELETING (concons, nextcons, Vconsole_list) | |
3763 { | |
3764 /* There is very little point in deleting the stream console. | |
3765 It uses stdio, which should flush any buffered output and | |
3766 something can only go wrong. -slb */ | |
3767 /* I changed my mind. There's a stupid hack in close to add | |
3768 a trailing newline. */ | |
3769 /*if (!CONSOLE_STREAM_P (XCONSOLE (XCAR (concons))))*/ | |
3770 delete_console_internal (XCONSOLE (XCAR (concons)), 1, 1, 0); | |
3771 } | |
428 | 3772 } |
3773 | |
3774 UNGCPRO; | |
3775 | |
5023
838630c0734f
error-checking, Windows shutdown changes
Ben Wing <ben@xemacs.org>
parents:
5014
diff
changeset
|
3776 #ifdef NEED_WINDOWS_MESSAGE_PAUSE |
771 | 3777 pause_so_user_can_read_messages (1); |
428 | 3778 #endif |
854 | 3779 |
771 | 3780 shut_down_emacs (0, STRINGP (arg) ? arg : Qnil, 0); |
3781 | |
4735
80d74fed5399
Remove "old" GNU malloc in src/malloc.c, and all references to it. Drop the
Jerry James <james@xemacs.org>
parents:
4710
diff
changeset
|
3782 #ifndef SYSTEM_MALLOC |
771 | 3783 __free_hook = |
2286 | 3784 #if defined (TYPEOF) && !defined (UNO) |
1792 | 3785 /* prototype of __free_hook varies with glibc version */ |
1799 | 3786 (TYPEOF (__free_hook)) |
771 | 3787 #endif |
3788 voodoo_free_hook; | |
428 | 3789 #endif |
771 | 3790 |
5581
56144c8593a8
Mechanically change INT to FIXNUM in our sources.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5560
diff
changeset
|
3791 exit (FIXNUMP (arg) ? XFIXNUM (arg) : 0); |
2268 | 3792 RETURN_NOT_REACHED (Qnil); |
428 | 3793 } |
3794 | |
771 | 3795 /* -------------------------------- */ |
3796 /* abnormal shutdowns: GP faults */ | |
3797 /* -------------------------------- */ | |
3798 | |
814 | 3799 /* This is somewhat ad-hoc ... figure out whether the user is developing |
3800 XEmacs, which means (under MS Windows) they have a system debugger | |
3801 installed that catches GP faults in any application and lets them open | |
3802 up MS Dev Studio and start debugging the application -- similar to | |
3803 producing a core dump and then going back with a debugger to investigate | |
3804 the core dump, except that the program is still running. When this is | |
3805 installed, it's better not to "pause so user gets messages" because the | |
3806 debugger will pause anyway; and in case we're currently with a menu | |
3807 popped up or somewhere else inside of an internal modal loop, we will | |
3808 get wedged when we output the "pause". (It seems that the two modal | |
3809 loops will fight each other and the return key will never be passed to | |
3810 the "pause" handler so that XEmacs's GPF handler can return, resignal | |
3811 the GPF, and properly go into the debugger.) */ | |
5023
838630c0734f
error-checking, Windows shutdown changes
Ben Wing <ben@xemacs.org>
parents:
5014
diff
changeset
|
3812 #ifdef ERROR_CHECK_ANY |
814 | 3813 #define USER_IS_DEVELOPING_XEMACS |
3814 #endif | |
3815 | |
854 | 3816 |
771 | 3817 /* Handle bus errors, illegal instruction, etc: actual implementation. */ |
3818 static void | |
3819 guts_of_fatal_error_signal (int sig) | |
428 | 3820 { |
771 | 3821 fatal_error_in_progress++; |
2367 | 3822 inhibit_non_essential_conversion_operations = 1; |
771 | 3823 preparing_for_armageddon = 1; |
3824 | |
3825 ensure_no_quitting_from_now_on (); | |
3826 | |
3827 /* Only try auto-saving first time through. If we crash in auto-saving, | |
3828 don't do it again. */ | |
3829 if (fatal_error_in_progress == 1) | |
428 | 3830 { |
771 | 3831 Fdo_auto_save (Qt, Qnil); /* do this before anything hazardous */ |
3832 /* Do this so that the variable has the same value of 2 regardless of | |
3833 whether we made it through auto-saving correctly. */ | |
3834 fatal_error_in_progress++; | |
428 | 3835 } |
771 | 3836 else if (fatal_error_in_progress == 2) |
3837 stderr_out ("WARNING: Unable to auto-save your files properly.\n" | |
3838 "Some or all may in fact have been auto-saved.\n" | |
3839 "\n"); | |
3840 | |
3841 /* Now, reset our signal handler, so the next time, we just die. | |
3842 Don't do this before auto-saving. */ | |
3843 if (sig >= 0) | |
3844 EMACS_SIGNAL (sig, SIG_DFL); | |
3845 | |
3846 /* Keep in mind that there's more than one signal that we can crash | |
3847 on. */ | |
3848 /* If fatal error occurs in code below, avoid infinite recursion. */ | |
3849 if (fatal_error_in_progress <= 2) | |
3850 { | |
3851 shut_down_emacs (sig, Qnil, 1); | |
3852 stderr_out ("\nLisp backtrace follows:\n\n"); | |
3853 debug_backtrace (); | |
3854 # if 0 /* This is evil, rarely useful, and causes grief in some cases. */ | |
3855 /* Check for Sun-style stack printing via /proc */ | |
3856 { | |
2367 | 3857 const Ascbyte *pstack = "/usr/proc/bin/pstack"; |
771 | 3858 if (access (pstack, X_OK) == 0) |
3859 { | |
2367 | 3860 Ascbyte buf[100]; |
771 | 3861 stderr_out ("\nC backtrace follows:\n" |
3862 "(A real debugger may provide better information)\n\n"); | |
2367 | 3863 sprintf (buf, "%s %d >&2", pstack, (int) getpid()); |
771 | 3864 system (buf); |
3865 } | |
3866 } | |
3867 # endif | |
5023
838630c0734f
error-checking, Windows shutdown changes
Ben Wing <ben@xemacs.org>
parents:
5014
diff
changeset
|
3868 #if defined (NEED_WINDOWS_MESSAGE_PAUSE) && !defined (USER_IS_DEVELOPING_XEMACS) |
771 | 3869 pause_so_user_can_read_messages (0); |
3870 #endif | |
3871 } | |
428 | 3872 } |
3873 | |
771 | 3874 /* This is called when a fatal signal (SIGBUS aka "bus error", SIGSEGV aka |
3875 "segmentation violation", SIGILL aka "illegal instruction", and many | |
3876 others) is sent to the program. This generally happens under Unix, | |
3877 not MS Windows. */ | |
3878 SIGTYPE | |
3879 fatal_error_signal (int sig) | |
428 | 3880 { |
771 | 3881 /* Unblock the signal so that if the same signal gets sent in the |
3882 code below, we avoid a deadlock. */ | |
3883 EMACS_UNBLOCK_SIGNAL (sig); | |
3884 | |
3885 guts_of_fatal_error_signal (sig); | |
3886 | |
3092 | 3887 #ifdef NEW_GC |
3888 /* This time the signal will really be fatal. To be able to debug | |
3889 SIGSEGV and SIGBUS also during write barrier, send SIGABRT. */ | |
3890 #ifdef WIN32_NATIVE | |
3891 if (sig == SIGSEGV) | |
3892 raise (SIGABRT); | |
3893 else | |
3894 raise (sig); | |
3895 #else | |
3896 if ((sig == SIGSEGV) || (sig == SIGBUS)) | |
3897 kill (qxe_getpid (), SIGABRT); | |
3898 else | |
3899 kill (qxe_getpid (), sig); | |
3900 #endif | |
3901 #else /* not NEW_GC */ | |
771 | 3902 /* Signal the same code; this time it will really be fatal. */ |
3903 #ifdef WIN32_NATIVE | |
3904 raise (sig); | |
3905 #else | |
3906 kill (qxe_getpid (), sig); | |
3907 #endif | |
3092 | 3908 #endif /* not NEW_GC */ |
771 | 3909 SIGRETURN; |
428 | 3910 } |
3911 | |
771 | 3912 #ifdef _MSC_VER |
3913 | |
3914 #define STATUS_ASSERTION_FAILURE 0xE0000001 | |
3915 | |
3916 static DWORD | |
3917 mswindows_handle_hardware_exceptions_1 (void) | |
428 | 3918 { |
2367 | 3919 inhibit_non_essential_conversion_operations = 1; |
793 | 3920 preparing_for_armageddon = 1; |
814 | 3921 #if !defined (USER_IS_DEVELOPING_XEMACS) |
771 | 3922 pause_so_user_can_read_messages (0); |
814 | 3923 #endif |
771 | 3924 return EXCEPTION_EXECUTE_HANDLER; |
428 | 3925 } |
3926 | |
771 | 3927 /* This is called under MS Windows when an exception (this encompasses both |
3928 user-defined exceptions and hardware exceptions such as GP faults aka | |
3929 SIGBUS or SIGSEGV) is triggered. */ | |
3930 | |
3931 static DWORD | |
3932 mswindows_handle_hardware_exceptions (DWORD code) | |
428 | 3933 { |
771 | 3934 if (code != STATUS_ACCESS_VIOLATION && code != STATUS_ILLEGAL_INSTRUCTION |
3935 && code != STATUS_PRIVILEGED_INSTRUCTION | |
3936 && code != STATUS_DATATYPE_MISALIGNMENT | |
3937 && code != STATUS_ASSERTION_FAILURE) | |
3938 return EXCEPTION_CONTINUE_SEARCH; | |
3939 | |
3940 /* I don't know if this filter is still wrapped in the outer __try, but | |
3941 it doesn't hurt to have another one, and it lets us control more | |
3942 exactly what we really want to do in such a situation. What we do is | |
3943 pause, if we haven't already done so, so that the user can see what's | |
3944 output. This is critical because otherwise the output is gone. */ | |
3945 __try | |
3946 { | |
3947 guts_of_fatal_error_signal (-1); | |
3948 } | |
3949 /* VC++ documentation says that | |
3950 GetExceptionCode() cannot be called inside the filter itself. */ | |
3951 | |
3952 /* __except (mswindows_handle_hardware_exceptions (GetExceptionCode ())) {} | |
3953 | |
3954 The line above is original. Unfortunately, when an error is tripped | |
3955 inside of the handler (e.g. during Fbacktrace()), and the handler for | |
3956 the handler is invoked, it correctly notices that something is amiss | |
3957 and it should just return -- but it returns EXCEPTION_CONTINUE_SEARCH, | |
3958 which causes the debugger to be invoked debugging the handler code in | |
3959 this function -- and WITH THE STACK UNWOUND so that you see main() | |
3960 calling mswindows_handle_hardware_exceptions(), calling Fbacktrace(), | |
3961 and a crash a couple of frames in -- AND NO SIGN OF THE ORIGINAL CRASH! | |
3962 | |
3963 There's some real weirdness going on in the stack handling -- unlike | |
3964 in Unix, where further crashes just keep adding to the stack, it seems | |
3965 that under the structured-exception-handling, the stack can actually | |
3966 bounce back and forth between the full stack at the location of the | |
3967 exception and the unwound stack at the place where the __try clause was | |
3968 established. I don't completely understand it. What I do know is that | |
3969 returning EXCEPTION_EXECUTE_HANDLER on nested crash has the effect of | |
3970 aborting execution of the handler and going back to the outer filter | |
3971 function, which returns EXCEPTION_CONTINUE_SEARCH and everything is | |
3972 hunky-dorey -- your debugger sees a crash at the right location with | |
3973 the right stack. | |
3974 | |
3975 I'm leaving in the trickier Unix-like code in the handler; someone who | |
3976 understands better than me how the stack works in these handlers could | |
3977 fix it up more. As it is, it works pretty well, so I'm not likely to | |
3978 touch it more. --ben | |
3979 */ | |
3980 | |
3981 __except (mswindows_handle_hardware_exceptions_1 ()) {} | |
3982 | |
3983 /* pretend we didn't handle this, so that the debugger is invoked and/or | |
3984 the normal GPF box appears. */ | |
3985 return EXCEPTION_CONTINUE_SEARCH; | |
428 | 3986 } |
3987 | |
771 | 3988 #endif /* _MSC_VER */ |
3989 | |
3990 /* -------------------------------------- */ | |
3991 /* abnormal shutdowns: assertion failures */ | |
3992 /* -------------------------------------- */ | |
428 | 3993 |
3994 /* This flag is useful to define if you're under a debugger; this way, you | |
3995 can put a breakpoint of assert_failed() and debug multiple problems | |
3996 in one session without having to recompile. */ | |
3997 /* #define ASSERTIONS_DONT_ABORT */ | |
3998 | |
3999 /* This highly dubious kludge ... shut up Jamie, I'm tired of your slagging. */ | |
4000 | |
771 | 4001 /* Nonzero if handling an assertion failure. (Bumped by one each time |
4002 we recursively hit such a failure.) */ | |
442 | 4003 static int in_assert_failed; |
771 | 4004 |
2367 | 4005 static const Ascbyte *assert_failed_file; |
442 | 4006 static int assert_failed_line; |
2367 | 4007 static const Ascbyte *assert_failed_expr; |
442 | 4008 |
4009 #ifdef fprintf | |
4010 #undef fprintf | |
4011 #endif | |
4012 | |
2500 | 4013 /* This is called when an assert() fails or when ABORT() is called -- both |
771 | 4014 of those are defined in the preprocessor to an expansion involving |
4015 assert_failed(). */ | |
442 | 4016 void |
2367 | 4017 assert_failed (const Ascbyte *file, int line, const Ascbyte *expr) |
428 | 4018 { |
442 | 4019 /* If we're already crashing, let's not crash again. This might be |
4020 critical to getting auto-saving working properly. */ | |
4021 if (fatal_error_in_progress) | |
4022 return; | |
4023 | |
4024 /* We are extremely paranoid so we sensibly deal with recursive | |
4025 assertion failures. */ | |
4026 in_assert_failed++; | |
5014
c2e0c3af5fe3
cleanups to debug-print, try harder to make it work during GC
Ben Wing <ben@xemacs.org>
parents:
5000
diff
changeset
|
4027 inhibit_non_essential_conversion_operations++; |
442 | 4028 |
4029 if (in_assert_failed >= 4) | |
4030 _exit (-1); | |
4031 else if (in_assert_failed == 3) | |
4032 { | |
771 | 4033 debugging_breakpoint (); |
442 | 4034 _exit (-1); |
4035 } | |
4036 else if (in_assert_failed == 2) | |
4037 { | |
771 | 4038 /* Ultra-paranoia. stderr_out() tries very hard not to do |
4039 anything during assertion failures that might trigger more | |
4040 failures; but we might have messed up somewhere. fprintf was | |
4041 undeffed above, in case it was encapsulated. */ | |
442 | 4042 fprintf (stderr, |
4043 "Fatal error: recursive assertion failure, " | |
4044 "file %s, line %d, %s\n", | |
4045 file, line, expr); | |
4046 fprintf (stderr, | |
4047 "Original assertion failure: file %s, line %d, %s\n", | |
4048 assert_failed_file, assert_failed_line, assert_failed_expr); | |
4049 } | |
4050 else | |
4051 { | |
4052 assert_failed_file = file; | |
4053 assert_failed_line = line; | |
4054 assert_failed_expr = expr; | |
4055 | |
771 | 4056 stderr_out ("\nFatal error: assertion failed, file %s, line %d, %s\n", |
4057 file, line, expr); | |
442 | 4058 } |
4059 | |
771 | 4060 /* Enable the following if you want a breakpoint right away to the |
4061 debugger, without the whole shutdown processing first. This can be | |
4062 useful if you're afraid the shutdown processing will modify state that | |
4063 you're trying to debug (generally fairly unlikely); but you then don't | |
4064 get the auto-save behavior, which may be extremely important if you | |
4065 were in the middle of doing something */ | |
4066 /* debugging_breakpoint (); */ | |
442 | 4067 #if !defined (ASSERTIONS_DONT_ABORT) |
1346 | 4068 #if defined (_MSC_VER) || defined (CYGWIN) |
4069 /* In VC++, calling abort() directly just seems to exit, in a way we can't | |
1303 | 4070 trap. (#### The docs say it does raise (SIGABRT), which we should be |
771 | 4071 able to trap. Perhaps we're messing up somewhere? Or perhaps MS is |
4072 messed up.) | |
4073 | |
4074 So, instead we cause an exception and enter into the structured | |
4075 exception-handling mechanism, which is just like what happens when a | |
4076 GPF occurs, and is cleaner anyway. (If we entered into one of the | |
4077 signal handlers, a crash in there would enter anyway into the | |
4078 structured exception stuff, and you'd get some weird mixture. Cleaner | |
4079 to keep it all in the expected way.) | |
4080 */ | |
4081 /* Either of the following work in terms of causing an exception. The | |
4082 second one looks cleaner but you get an odd message about "Unknown | |
4083 software exception ..." without the obvious "OK to terminate", "Cancel | |
4084 to debug"; instead, you just get OK/Cancel, which in fact do those | |
4085 same things. */ | |
1346 | 4086 /* In Cygwin, abort() doesn't get trapped properly in gdb but seg faults |
4087 do, so we resort to the same trick. */ | |
771 | 4088 * ((int *) 0) = 666; |
4089 /* RaiseException (STATUS_ASSERTION_FAILURE, EXCEPTION_NONCONTINUABLE, 0, | |
4090 0); */ | |
4091 #else | |
4092 really_abort (); | |
1346 | 4093 #endif /* defined (_MSC_VER) || defined (CYGWIN) */ |
771 | 4094 #endif /* !defined (ASSERTIONS_DONT_ABORT) */ |
5014
c2e0c3af5fe3
cleanups to debug-print, try harder to make it work during GC
Ben Wing <ben@xemacs.org>
parents:
5000
diff
changeset
|
4095 inhibit_non_essential_conversion_operations--; |
c2e0c3af5fe3
cleanups to debug-print, try harder to make it work during GC
Ben Wing <ben@xemacs.org>
parents:
5000
diff
changeset
|
4096 in_assert_failed--; |
428 | 4097 } |
4098 | |
5090 | 4099 /* This is called when an assert() fails or when ABORT() is called -- both |
4100 of those are defined in the preprocessor to an expansion involving | |
4101 assert_failed(). */ | |
4102 void | |
4103 assert_equal_failed (const Ascbyte *file, int line, EMACS_INT x, EMACS_INT y, | |
4104 const Ascbyte *exprx, const Ascbyte *expry) | |
4105 { | |
4106 Ascbyte bigstr[1000]; /* #### Could overflow, but avoids any need to do any | |
4107 allocation, even alloca(), hence safer */ | |
4108 sprintf (bigstr, "%s (%ld) should == %s (%ld) but doesn't", | |
4109 exprx, x, expry, y); | |
4110 assert_failed (file, line, bigstr); | |
4111 } | |
4112 | |
771 | 4113 /* -------------------------------------- */ |
4114 /* low-memory notification */ | |
4115 /* -------------------------------------- */ | |
4116 | |
4117 #ifdef SIGDANGER | |
4118 | |
4119 /* Handler for SIGDANGER. */ | |
4120 SIGTYPE | |
4121 memory_warning_signal (int sig) | |
4122 { | |
4123 /* #### bad bad bad; this function shouldn't do anything except | |
4124 set a flag, or weird corruption could happen. */ | |
4125 EMACS_SIGNAL (sig, memory_warning_signal); | |
4126 | |
4127 malloc_warning | |
4128 (GETTEXT ("Operating system warns that virtual memory is running low.\n")); | |
4129 | |
4130 /* It might be unsafe to call do_auto_save now. */ | |
4131 force_auto_save_soon (); | |
4132 } | |
4133 #endif /* SIGDANGER */ | |
4134 | |
4135 | |
4136 /************************************************************************/ | |
4137 /* Miscellaneous */ | |
4138 /************************************************************************/ | |
4139 | |
4140 DEFUN ("noninteractive", Fnoninteractive, 0, 0, 0, /* | |
4141 Non-nil return value means XEmacs is running without interactive terminal. | |
528 | 4142 */ |
771 | 4143 ()) |
528 | 4144 { |
771 | 4145 return noninteractive ? Qt : Qnil; |
528 | 4146 } |
4147 | |
428 | 4148 #ifdef QUANTIFY |
4149 DEFUN ("quantify-start-recording-data", Fquantify_start_recording_data, | |
4150 0, 0, "", /* | |
4151 Start recording Quantify data. | |
4152 */ | |
4153 ()) | |
4154 { | |
4155 quantify_start_recording_data (); | |
4156 return Qnil; | |
4157 } | |
4158 | |
4159 DEFUN ("quantify-stop-recording-data", Fquantify_stop_recording_data, | |
4160 0, 0, "", /* | |
4161 Stop recording Quantify data. | |
4162 */ | |
4163 ()) | |
4164 { | |
4165 quantify_stop_recording_data (); | |
4166 return Qnil; | |
4167 } | |
4168 | |
4169 DEFUN ("quantify-clear-data", Fquantify_clear_data, 0, 0, "", /* | |
4170 Clear all Quantify data. | |
4171 */ | |
4172 ()) | |
4173 { | |
4174 quantify_clear_data (); | |
4175 return Qnil; | |
4176 } | |
4177 #endif /* QUANTIFY */ | |
4178 | |
4179 void | |
4180 syms_of_emacs (void) | |
4181 { | |
4182 DEFSUBR (Fdump_emacs); | |
4183 | |
4184 DEFSUBR (Frun_emacs_from_temacs); | |
4185 DEFSUBR (Frunning_temacs_p); | |
1315 | 4186 DEFSUBR (Femacs_run_status); |
428 | 4187 DEFSUBR (Finvocation_name); |
4188 DEFSUBR (Finvocation_directory); | |
4189 DEFSUBR (Fkill_emacs); | |
4190 DEFSUBR (Fnoninteractive); | |
4191 | |
528 | 4192 #ifdef DEBUG_XEMACS |
4193 DEFSUBR (Fforce_debugging_signal); | |
4194 #endif | |
4195 | |
428 | 4196 #ifdef QUANTIFY |
4197 DEFSUBR (Fquantify_start_recording_data); | |
4198 DEFSUBR (Fquantify_stop_recording_data); | |
4199 DEFSUBR (Fquantify_clear_data); | |
4200 #endif /* QUANTIFY */ | |
4201 | |
563 | 4202 DEFSYMBOL (Qkill_emacs_hook); |
4203 DEFSYMBOL (Qsave_buffers_kill_emacs); | |
1315 | 4204 |
4205 DEFSYMBOL (Qtemacs); | |
4206 DEFSYMBOL (Qdumping); | |
4207 DEFSYMBOL (Qrestarted); | |
4208 DEFSYMBOL (Qpdump); | |
4209 DEFSYMBOL (Qbatch); | |
428 | 4210 } |
4211 | |
776 | 4212 /* Yuck! These variables may get set from command-line options when |
4213 dumping; if we don't clear them, they will still be on once the dumped | |
4214 XEmacs reloads. (not an issue with pdump, as we kludge around this in | |
4215 main_1().) */ | |
4216 | |
4217 void | |
4218 zero_out_command_line_status_vars (void) | |
4219 { | |
4220 vanilla_inhibiting = 0; | |
4221 inhibit_early_packages = 0; | |
4222 inhibit_all_packages = 0; | |
4223 inhibit_autoloads = 0; | |
4224 debug_paths = 0; | |
4225 #ifndef INHIBIT_SITE_LISP | |
4226 inhibit_site_lisp = 0; | |
4227 #else | |
4228 inhibit_site_lisp = 1; | |
4229 #endif | |
4230 #ifndef INHIBIT_SITE_MODULES | |
4231 inhibit_site_modules = 0; | |
4232 #else | |
4233 inhibit_site_modules = 1; | |
4234 #endif | |
4235 } | |
4236 | |
428 | 4237 void |
4238 vars_of_emacs (void) | |
4239 { | |
4240 DEFVAR_BOOL ("suppress-early-error-handler-backtrace", | |
4241 &suppress_early_error_handler_backtrace /* | |
4242 Non-nil means early error handler shouldn't print a backtrace. | |
4243 */ ); | |
4244 | |
4245 DEFVAR_LISP ("command-line-args", &Vcommand_line_args /* | |
4246 Args passed by shell to XEmacs, as a list of strings. | |
4247 */ ); | |
4248 | |
4249 DEFVAR_LISP ("invocation-name", &Vinvocation_name /* | |
4250 The program name that was used to run XEmacs. | |
4251 Any directory names are omitted. | |
4252 */ ); | |
4253 | |
4254 DEFVAR_LISP ("invocation-directory", &Vinvocation_directory /* | |
4255 The directory in which the XEmacs executable was found, to run it. | |
4256 The value is simply the program name if that directory's name is not known. | |
4257 */ ); | |
4258 | |
4259 DEFVAR_LISP ("invocation-path", &Vinvocation_path /* | |
4260 The path in which the XEmacs executable was found, to run it. | |
4261 The value is simply the value of environment variable PATH on startup | |
4262 if XEmacs was found there. | |
4263 */ ); | |
4264 | |
4265 #if 0 /* FSFmacs */ | |
776 | 4266 xxDEFVAR_LISP ("installation-directory", &Vinstallation_directory /* |
4267 A directory within which to look for the `lib-src' and `etc' directories. | |
4268 This is non-nil when we can't find those directories in their standard | |
4269 installed locations, but we can find them ear where the XEmacs executable | |
4270 was found. | |
4271 */ ); | |
428 | 4272 #endif |
4273 | |
4274 DEFVAR_LISP ("system-type", &Vsystem_type /* | |
4275 Symbol indicating type of operating system you are using. | |
4276 */ ); | |
4277 Vsystem_type = intern (SYSTEM_TYPE); | |
771 | 4278 Fprovide (Vsystem_type); |
428 | 4279 |
4280 #ifndef EMACS_CONFIGURATION | |
4281 # define EMACS_CONFIGURATION "UNKNOWN" | |
4282 #endif | |
4283 DEFVAR_LISP ("system-configuration", &Vsystem_configuration /* | |
4284 String naming the configuration XEmacs was built for. | |
4285 */ ); | |
4952
19a72041c5ed
Mule-izing, various fixes related to char * arguments
Ben Wing <ben@xemacs.org>
parents:
4932
diff
changeset
|
4286 Vsystem_configuration = build_ascstring (EMACS_CONFIGURATION); |
428 | 4287 |
4288 #ifndef EMACS_CONFIG_OPTIONS | |
4289 # define EMACS_CONFIG_OPTIONS "UNKNOWN" | |
4290 #endif | |
4291 DEFVAR_LISP ("system-configuration-options", &Vsystem_configuration_options /* | |
4292 String containing the configuration options XEmacs was built with. | |
4293 */ ); | |
4952
19a72041c5ed
Mule-izing, various fixes related to char * arguments
Ben Wing <ben@xemacs.org>
parents:
4932
diff
changeset
|
4294 Vsystem_configuration_options = build_ascstring (EMACS_CONFIG_OPTIONS); |
428 | 4295 |
4296 DEFVAR_LISP ("emacs-major-version", &Vemacs_major_version /* | |
4297 Major version number of this version of Emacs, as an integer. | |
4298 Warning: this variable did not exist in Emacs versions earlier than: | |
4299 FSF Emacs: 19.23 | |
4300 XEmacs: 19.10 | |
4301 */ ); | |
5581
56144c8593a8
Mechanically change INT to FIXNUM in our sources.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5560
diff
changeset
|
4302 Vemacs_major_version = make_fixnum (EMACS_MAJOR_VERSION); |
428 | 4303 |
4304 DEFVAR_LISP ("emacs-minor-version", &Vemacs_minor_version /* | |
4305 Minor version number of this version of Emacs, as an integer. | |
4306 Warning: this variable did not exist in Emacs versions earlier than: | |
4307 FSF Emacs: 19.23 | |
4308 XEmacs: 19.10 | |
4309 */ ); | |
5581
56144c8593a8
Mechanically change INT to FIXNUM in our sources.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5560
diff
changeset
|
4310 Vemacs_minor_version = make_fixnum (EMACS_MINOR_VERSION); |
428 | 4311 |
4312 DEFVAR_LISP ("emacs-patch-level", &Vemacs_patch_level /* | |
4313 The patch level of this version of Emacs, as an integer. | |
4314 The value is non-nil if this version of XEmacs is part of a series of | |
4315 stable XEmacsen, but has bug fixes applied. | |
4316 Warning: this variable does not exist in FSF Emacs or in XEmacs versions | |
4317 earlier than 21.1.1 | |
4318 */ ); | |
4319 #ifdef EMACS_PATCH_LEVEL | |
5581
56144c8593a8
Mechanically change INT to FIXNUM in our sources.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5560
diff
changeset
|
4320 Vemacs_patch_level = make_fixnum (EMACS_PATCH_LEVEL); |
428 | 4321 #else |
4322 Vemacs_patch_level = Qnil; | |
4323 #endif | |
4324 | |
4325 DEFVAR_LISP ("emacs-beta-version", &Vemacs_beta_version /* | |
4326 Beta number of this version of Emacs, as an integer. | |
4327 The value is nil if this is an officially released version of XEmacs. | |
4328 Warning: this variable does not exist in FSF Emacs or in XEmacs versions | |
4329 earlier than 20.3. | |
4330 */ ); | |
4331 #ifdef EMACS_BETA_VERSION | |
5581
56144c8593a8
Mechanically change INT to FIXNUM in our sources.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5560
diff
changeset
|
4332 Vemacs_beta_version = make_fixnum (EMACS_BETA_VERSION); |
428 | 4333 #else |
4334 Vemacs_beta_version = Qnil; | |
4335 #endif | |
4336 | |
4337 | |
4338 DEFVAR_LISP ("xemacs-codename", &Vxemacs_codename /* | |
4339 Codename of this version of Emacs (a string). | |
4340 */ ); | |
4341 #ifndef XEMACS_CODENAME | |
4342 #define XEMACS_CODENAME "Noname" | |
4343 #endif | |
4952
19a72041c5ed
Mule-izing, various fixes related to char * arguments
Ben Wing <ben@xemacs.org>
parents:
4932
diff
changeset
|
4344 Vxemacs_codename = build_ascstring (XEMACS_CODENAME); |
428 | 4345 |
975 | 4346 DEFVAR_LISP ("xemacs-extra-name", &Vxemacs_extra_name /* |
2602 | 4347 Arbitrary string to place in the version string after the codename. |
4348 | |
4349 Appropriate surrounding whitespace will be added, but typically looks best | |
4350 if enclosed in parentheses. | |
4351 | |
4419
eb82fbb675ea
Use Mercurial changeset hash to identify build version.
Mike Sperber <sperber@deinprogramm.de>
parents:
4380
diff
changeset
|
4352 A standard use is to indicate the topmost hash id of the Mercurial |
eb82fbb675ea
Use Mercurial changeset hash to identify build version.
Mike Sperber <sperber@deinprogramm.de>
parents:
4380
diff
changeset
|
4353 changeset from which XEmacs was compiled. Developers may also use it |
eb82fbb675ea
Use Mercurial changeset hash to identify build version.
Mike Sperber <sperber@deinprogramm.de>
parents:
4380
diff
changeset
|
4354 to indicate particular branches, etc. |
975 | 4355 */ ); |
4356 #ifdef XEMACS_EXTRA_NAME | |
4952
19a72041c5ed
Mule-izing, various fixes related to char * arguments
Ben Wing <ben@xemacs.org>
parents:
4932
diff
changeset
|
4357 Vxemacs_extra_name = build_ascstring (XEMACS_EXTRA_NAME); |
975 | 4358 #endif |
4359 | |
2602 | 4360 DEFVAR_LISP ("xemacs-release-date", &Vxemacs_release_date /* |
4361 ISO 8601 format date string giving the date of latest release in series. | |
4362 | |
4363 The time may optionally be given. The time zone may not be given, and | |
4364 is (implicitly) UTC. Currently not included in the version string. | |
4365 */ ); | |
4366 #ifndef XEMACS_RELEASE_DATE | |
4367 #define XEMACS_RELEASE_DATE "2005-02-18 (defaulted in emacs.c)" | |
4368 #endif | |
4952
19a72041c5ed
Mule-izing, various fixes related to char * arguments
Ben Wing <ben@xemacs.org>
parents:
4932
diff
changeset
|
4369 Vxemacs_release_date = build_ascstring (XEMACS_RELEASE_DATE); |
2602 | 4370 |
442 | 4371 /* Lisp variables which contain command line flags. |
4372 | |
4373 The portable dumper stomps on these; they must be saved and restored | |
4374 if they are processed before the call to pdump_load() in main_1(). | |
4375 */ | |
428 | 4376 DEFVAR_BOOL ("noninteractive", &noninteractive1 /* |
4377 Non-nil means XEmacs is running without interactive terminal. | |
4378 */ ); | |
4379 | |
776 | 4380 DEFVAR_BOOL ("vanilla-inhibiting", &vanilla_inhibiting /* |
4381 Set to non-nil when the user-init and site-start files should not be loaded. | |
4382 */ ); | |
4383 | |
428 | 4384 DEFVAR_BOOL ("inhibit-early-packages", &inhibit_early_packages /* |
2602 | 4385 Set to non-nil when the early packages should be ignored at startup. |
4386 Early package directories will not be added to `load-path', nor set up as | |
4387 autoloads, nothing. | |
428 | 4388 */ ); |
4389 | |
776 | 4390 DEFVAR_BOOL ("inhibit-all-packages", &inhibit_all_packages /* |
2602 | 4391 Set to non-nil when all packages should be ignored at startup. |
4392 Package directories will not be added to `load-path', nor set up as | |
776 | 4393 autoloads, nothing. |
4394 */ ); | |
4395 | |
428 | 4396 DEFVAR_BOOL ("inhibit-autoloads", &inhibit_autoloads /* |
4397 Set to non-nil when autoloads should not be loaded at startup. | |
4398 */ ); | |
4399 | |
4400 DEFVAR_BOOL ("debug-paths", &debug_paths /* | |
4401 Set to non-nil when debug information about paths should be printed. | |
4402 */ ); | |
4403 | |
4404 DEFVAR_BOOL ("inhibit-site-lisp", &inhibit_site_lisp /* | |
4405 Set to non-nil when the site-lisp should not be searched at startup. | |
4406 */ ); | |
4407 #ifdef INHIBIT_SITE_LISP | |
4408 inhibit_site_lisp = 1; | |
4409 #endif | |
4410 | |
4411 DEFVAR_BOOL ("inhibit-site-modules", &inhibit_site_modules /* | |
4412 Set to non-nil when site-modules should not be searched at startup. | |
4413 */ ); | |
4414 #ifdef INHIBIT_SITE_MODULES | |
4415 inhibit_site_modules = 1; | |
4416 #endif | |
4417 | |
4418 DEFVAR_INT ("emacs-priority", &emacs_priority /* | |
4419 Priority for XEmacs to run at. | |
4420 This value is effective only if set before XEmacs is dumped, | |
4421 and only if the XEmacs executable is installed with setuid to permit | |
4422 it to change priority. (XEmacs sets its uid back to the real uid.) | |
4423 Currently, you need to define SET_EMACS_PRIORITY in `config.h' | |
4424 before you compile XEmacs, to enable the code for this feature. | |
4425 */ ); | |
4426 emacs_priority = 0; | |
4427 | |
4428 DEFVAR_CONST_LISP ("internal-error-checking", &Vinternal_error_checking /* | |
4429 Internal error checking built-in into this instance of XEmacs. | |
4430 This is a list of symbols, initialized at build-time. Legal symbols | |
4431 are: | |
4432 | |
4433 extents - check extents prior to each extent change; | |
800 | 4434 types - check types strictly; |
428 | 4435 malloc - check operation of malloc; |
4436 gc - check garbage collection; | |
800 | 4437 text - check text and buffer positions; |
4438 display - check redisplay structure consistency; | |
4439 glyphs - check glyph structure consistency; | |
4440 byte-code - check byte-code consistency;. | |
4441 structures - check other structure consistency. | |
442 | 4442 |
4443 quick-build - user has requested the "quick-build" configure option. | |
428 | 4444 */ ); |
4445 Vinternal_error_checking = Qnil; | |
4446 #ifdef ERROR_CHECK_EXTENTS | |
4447 Vinternal_error_checking = Fcons (intern ("extents"), | |
4448 Vinternal_error_checking); | |
4449 #endif | |
800 | 4450 #ifdef ERROR_CHECK_TYPES |
4451 Vinternal_error_checking = Fcons (intern ("types"), | |
428 | 4452 Vinternal_error_checking); |
4453 #endif | |
4454 #ifdef ERROR_CHECK_MALLOC | |
4455 Vinternal_error_checking = Fcons (intern ("malloc"), | |
4456 Vinternal_error_checking); | |
4457 #endif | |
4458 #ifdef ERROR_CHECK_GC | |
4459 Vinternal_error_checking = Fcons (intern ("gc"), | |
4460 Vinternal_error_checking); | |
4461 #endif | |
800 | 4462 #ifdef ERROR_CHECK_TEXT |
4463 Vinternal_error_checking = Fcons (intern ("text"), | |
4464 Vinternal_error_checking); | |
4465 #endif | |
4466 #ifdef ERROR_CHECK_DISPLAY | |
4467 Vinternal_error_checking = Fcons (intern ("display"), | |
4468 Vinternal_error_checking); | |
4469 #endif | |
4470 #ifdef ERROR_CHECK_GLYPHS | |
4471 Vinternal_error_checking = Fcons (intern ("glyphs"), | |
4472 Vinternal_error_checking); | |
4473 #endif | |
4474 #ifdef ERROR_CHECK_BYTE_CODE | |
4475 Vinternal_error_checking = Fcons (intern ("byte-code"), | |
4476 Vinternal_error_checking); | |
4477 #endif | |
4478 #ifdef ERROR_CHECK_STRUCTURES | |
4479 Vinternal_error_checking = Fcons (intern ("structures"), | |
428 | 4480 Vinternal_error_checking); |
4481 #endif | |
442 | 4482 #ifdef QUICK_BUILD |
4483 Vinternal_error_checking = Fcons (intern ("quick-build"), | |
4484 Vinternal_error_checking); | |
4485 #endif | |
428 | 4486 |
438 | 4487 DEFVAR_CONST_LISP ("mail-lock-methods", &Vmail_lock_methods /* |
4488 Mail spool locking methods supported by this instance of XEmacs. | |
4489 This is a list of symbols. Each of the symbols is one of the | |
4490 following: dot, lockf, flock, locking, mmdf. | |
4491 */ ); | |
4492 { | |
4493 Vmail_lock_methods = Qnil; | |
4494 Vmail_lock_methods = Fcons (intern ("dot"), Vmail_lock_methods); | |
4495 #ifdef HAVE_LOCKF | |
4496 Vmail_lock_methods = Fcons (intern ("lockf"), Vmail_lock_methods); | |
4497 #endif | |
4498 #ifdef HAVE_FLOCK | |
4499 Vmail_lock_methods = Fcons (intern ("flock"), Vmail_lock_methods); | |
4500 #endif | |
4501 #ifdef HAVE_MMDF | |
4502 Vmail_lock_methods = Fcons (intern ("mmdf"), Vmail_lock_methods); | |
4503 #endif | |
4504 #ifdef HAVE_LOCKING | |
4505 Vmail_lock_methods = Fcons (intern ("locking"), Vmail_lock_methods); | |
4506 #endif | |
4507 } | |
442 | 4508 |
438 | 4509 DEFVAR_CONST_LISP ("configure-mail-lock-method", &Vconfigure_mail_lock_method /* |
4510 Mail spool locking method suggested by configure. This is one | |
4511 of the symbols in MAIL-LOCK-METHODS. | |
4512 */ ); | |
4513 { | |
1303 | 4514 #if defined (MAIL_LOCK_FLOCK) && defined (HAVE_FLOCK) |
771 | 4515 Vconfigure_mail_lock_method = intern ("flock"); |
1303 | 4516 #elif defined (MAIL_LOCK_LOCKF) && defined (HAVE_LOCKF) |
771 | 4517 Vconfigure_mail_lock_method = intern ("lockf"); |
1303 | 4518 #elif defined (MAIL_LOCK_MMDF) && defined (HAVE_MMDF) |
771 | 4519 Vconfigure_mail_lock_method = intern ("mmdf"); |
1303 | 4520 #elif defined (MAIL_LOCK_LOCKING) && defined (HAVE_LOCKING) |
771 | 4521 Vconfigure_mail_lock_method = intern ("locking"); |
438 | 4522 #else |
771 | 4523 Vconfigure_mail_lock_method = intern ("dot"); |
438 | 4524 #endif |
4525 } | |
428 | 4526 } |
4527 | |
4528 void | |
4529 complex_vars_of_emacs (void) | |
4530 { | |
4531 /* This is all related to path searching. */ | |
4532 | |
4533 DEFVAR_LISP ("emacs-program-name", &Vemacs_program_name /* | |
4534 *Name of the Emacs variant. | |
4535 This is mainly meant for use in path searching. | |
4536 */ ); | |
4953
304aebb79cd3
function renamings to track names of char typedefs
Ben Wing <ben@xemacs.org>
parents:
4952
diff
changeset
|
4537 Vemacs_program_name = build_extstring (PATH_PROGNAME, Qfile_name); |
428 | 4538 |
4539 DEFVAR_LISP ("emacs-program-version", &Vemacs_program_version /* | |
4540 *Version of the Emacs variant. | |
444 | 4541 This typically has the form NN.NN-bNN. |
428 | 4542 This is mainly meant for use in path searching. |
4543 */ ); | |
4953
304aebb79cd3
function renamings to track names of char typedefs
Ben Wing <ben@xemacs.org>
parents:
4952
diff
changeset
|
4544 Vemacs_program_version = build_extstring (PATH_VERSION, Qfile_name); |
428 | 4545 |
4546 DEFVAR_LISP ("exec-path", &Vexec_path /* | |
4547 *List of directories to search programs to run in subprocesses. | |
4548 Each element is a string (directory name) or nil (try default directory). | |
4549 */ ); | |
4550 Vexec_path = Qnil; | |
4551 | |
4552 DEFVAR_LISP ("exec-directory", &Vexec_directory /* | |
4553 *Directory of architecture-dependent files that come with XEmacs, | |
4554 especially executable programs intended for XEmacs to invoke. | |
4555 */ ); | |
4556 Vexec_directory = Qnil; | |
4557 | |
4558 DEFVAR_LISP ("configure-exec-directory", &Vconfigure_exec_directory /* | |
4559 For internal use by the build procedure only. | |
444 | 4560 configure's idea of what `exec-directory' will be. |
428 | 4561 */ ); |
4562 #ifdef PATH_EXEC | |
4563 Vconfigure_exec_directory = Ffile_name_as_directory | |
4953
304aebb79cd3
function renamings to track names of char typedefs
Ben Wing <ben@xemacs.org>
parents:
4952
diff
changeset
|
4564 (build_extstring (PATH_EXEC, Qfile_name)); |
428 | 4565 #else |
4566 Vconfigure_exec_directory = Qnil; | |
4567 #endif | |
4568 | |
4569 DEFVAR_LISP ("lisp-directory", &Vlisp_directory /* | |
4570 *Directory of core Lisp files that come with XEmacs. | |
4571 */ ); | |
4572 Vlisp_directory = Qnil; | |
4573 | |
4574 DEFVAR_LISP ("configure-lisp-directory", &Vconfigure_lisp_directory /* | |
4575 For internal use by the build procedure only. | |
444 | 4576 configure's idea of what `lisp-directory' will be. |
428 | 4577 */ ); |
4578 #ifdef PATH_LOADSEARCH | |
4579 Vconfigure_lisp_directory = Ffile_name_as_directory | |
4953
304aebb79cd3
function renamings to track names of char typedefs
Ben Wing <ben@xemacs.org>
parents:
4952
diff
changeset
|
4580 (build_extstring (PATH_LOADSEARCH, Qfile_name)); |
428 | 4581 #else |
4582 Vconfigure_lisp_directory = Qnil; | |
4583 #endif | |
4584 | |
460 | 4585 DEFVAR_LISP ("mule-lisp-directory", &Vmule_lisp_directory /* |
4586 *Directory of Mule Lisp files that come with XEmacs. | |
4587 */ ); | |
4588 Vmule_lisp_directory = Qnil; | |
4589 | |
4590 DEFVAR_LISP ("configure-mule-lisp-directory", &Vconfigure_mule_lisp_directory /* | |
4591 For internal use by the build procedure only. | |
4592 configure's idea of what `mule-lisp-directory' will be. | |
4593 */ ); | |
4594 #ifdef PATH_MULELOADSEARCH | |
4595 Vconfigure_mule_lisp_directory = Ffile_name_as_directory | |
4953
304aebb79cd3
function renamings to track names of char typedefs
Ben Wing <ben@xemacs.org>
parents:
4952
diff
changeset
|
4596 (build_extstring (PATH_MULELOADSEARCH, Qfile_name); |
460 | 4597 #else |
4598 Vconfigure_mule_lisp_directory = Qnil; | |
4599 #endif | |
4600 | |
428 | 4601 DEFVAR_LISP ("module-directory", &Vmodule_directory /* |
4602 *Directory of core dynamic modules that come with XEmacs. | |
4603 */ ); | |
4604 Vmodule_directory = Qnil; | |
4605 | |
4606 DEFVAR_LISP ("configure-module-directory", &Vconfigure_module_directory /* | |
4607 For internal use by the build procedure only. | |
444 | 4608 configure's idea of what `module-directory' will be. |
428 | 4609 */ ); |
4610 #ifdef PATH_MODULESEARCH | |
4611 Vconfigure_module_directory = Ffile_name_as_directory | |
4953
304aebb79cd3
function renamings to track names of char typedefs
Ben Wing <ben@xemacs.org>
parents:
4952
diff
changeset
|
4612 (build_extstring (PATH_MODULESEARCH, Qfile_name)); |
428 | 4613 #else |
4614 Vconfigure_module_directory = Qnil; | |
4615 #endif | |
4616 | |
3179 | 4617 DEFVAR_LISP ("configure-early-package-directories", &Vconfigure_early_package_directories /* |
4618 For internal use by the build procedure only. | |
4619 configure's idea of what the early package directories will be. | |
4620 */ ); | |
4621 #ifdef PATH_EARLY_PACKAGE_DIRECTORIES | |
4622 Vconfigure_early_package_directories = split_external_path (PATH_EARLY_PACKAGE_DIRECTORIES); | |
4623 #else | |
4624 Vconfigure_early_package_directories = Qnil; | |
4625 #endif | |
4626 | |
4627 DEFVAR_LISP ("configure-late-package-directories", &Vconfigure_late_package_directories /* | |
4628 For internal use by the build procedure only. | |
4629 configure's idea of what the late package directories will be. | |
4630 */ ); | |
4631 #ifdef PATH_LATE_PACKAGE_DIRECTORIES | |
4632 Vconfigure_late_package_directories = split_external_path (PATH_LATE_PACKAGE_DIRECTORIES); | |
4633 #else | |
4634 Vconfigure_late_package_directories = Qnil; | |
4635 #endif | |
4636 | |
4637 DEFVAR_LISP ("configure-last-package-directories", &Vconfigure_last_package_directories /* | |
4638 For internal use by the build procedure only. | |
4639 configure's idea of what the last package directories will be. | |
4640 */ ); | |
4641 #ifdef PATH_LAST_PACKAGE_DIRECTORIES | |
4642 Vconfigure_last_package_directories = split_external_path (PATH_LAST_PACKAGE_DIRECTORIES); | |
4643 #else | |
4644 Vconfigure_last_package_directories = Qnil; | |
4645 #endif | |
4646 | |
428 | 4647 DEFVAR_LISP ("configure-package-path", &Vconfigure_package_path /* |
4648 For internal use by the build procedure only. | |
4649 configure's idea of what the package path will be. | |
4650 */ ); | |
4651 #ifdef PATH_PACKAGEPATH | |
771 | 4652 Vconfigure_package_path = split_external_path (PATH_PACKAGEPATH); |
428 | 4653 #else |
4654 Vconfigure_package_path = Qnil; | |
4655 #endif | |
4656 | |
4657 DEFVAR_LISP ("data-directory", &Vdata_directory /* | |
4658 *Directory of architecture-independent files that come with XEmacs, | |
4659 intended for XEmacs to use. | |
4660 Use of this variable in new code is almost never correct. See the | |
442 | 4661 functions `locate-data-file' and `locate-data-directory' and the variable |
4662 `data-directory-list'. | |
428 | 4663 */ ); |
4664 Vdata_directory = Qnil; | |
4665 | |
4666 DEFVAR_LISP ("configure-data-directory", &Vconfigure_data_directory /* | |
4667 For internal use by the build procedure only. | |
444 | 4668 configure's idea of what `data-directory' will be. |
428 | 4669 */ ); |
4670 #ifdef PATH_DATA | |
4671 Vconfigure_data_directory = Ffile_name_as_directory | |
4953
304aebb79cd3
function renamings to track names of char typedefs
Ben Wing <ben@xemacs.org>
parents:
4952
diff
changeset
|
4672 (build_extstring (PATH_DATA, Qfile_name)); |
428 | 4673 #else |
4674 Vconfigure_data_directory = Qnil; | |
4675 #endif | |
4676 | |
4677 DEFVAR_LISP ("data-directory-list", &Vdata_directory_list /* | |
4678 *List of directories of architecture-independent files that come with XEmacs | |
4679 or were installed as packages, and are intended for XEmacs to use. | |
4680 */ ); | |
4681 Vdata_directory_list = Qnil; | |
4682 | |
4683 DEFVAR_LISP ("site-directory", &Vsite_directory /* | |
4684 *Directory of site-specific Lisp files that come with XEmacs. | |
4685 */ ); | |
4686 Vsite_directory = Qnil; | |
4687 | |
4688 DEFVAR_LISP ("configure-site-directory", &Vconfigure_site_directory /* | |
4689 For internal use by the build procedure only. | |
444 | 4690 configure's idea of what `site-directory' will be. |
428 | 4691 */ ); |
4692 #ifdef PATH_SITE | |
4693 Vconfigure_site_directory = Ffile_name_as_directory | |
4953
304aebb79cd3
function renamings to track names of char typedefs
Ben Wing <ben@xemacs.org>
parents:
4952
diff
changeset
|
4694 (build_extstring (PATH_SITE, Qfile_name)); |
428 | 4695 #else |
4696 Vconfigure_site_directory = Qnil; | |
4697 #endif | |
4698 | |
4699 DEFVAR_LISP ("site-module-directory", &Vsite_module_directory /* | |
4700 *Directory of site-specific loadable modules that come with XEmacs. | |
4701 */ ); | |
4702 Vsite_module_directory = Qnil; | |
4703 | |
4704 DEFVAR_LISP ("configure-site-module-directory", &Vconfigure_site_module_directory /* | |
4705 For internal use by the build procedure only. | |
444 | 4706 configure's idea of what `site-directory' will be. |
428 | 4707 */ ); |
4708 #ifdef PATH_SITE_MODULES | |
4709 Vconfigure_site_module_directory = Ffile_name_as_directory | |
4953
304aebb79cd3
function renamings to track names of char typedefs
Ben Wing <ben@xemacs.org>
parents:
4952
diff
changeset
|
4710 (build_extstring (PATH_SITE_MODULES, Qfile_name)); |
428 | 4711 #else |
4712 Vconfigure_site_module_directory = Qnil; | |
4713 #endif | |
4714 | |
4715 DEFVAR_LISP ("doc-directory", &Vdoc_directory /* | |
4716 *Directory containing the DOC file that comes with XEmacs. | |
444 | 4717 This is usually the same as `exec-directory'. |
428 | 4718 */ ); |
4719 Vdoc_directory = Qnil; | |
4720 | |
4721 DEFVAR_LISP ("configure-doc-directory", &Vconfigure_doc_directory /* | |
4722 For internal use by the build procedure only. | |
444 | 4723 configure's idea of what `doc-directory' will be. |
428 | 4724 */ ); |
4725 #ifdef PATH_DOC | |
4726 Vconfigure_doc_directory = Ffile_name_as_directory | |
4953
304aebb79cd3
function renamings to track names of char typedefs
Ben Wing <ben@xemacs.org>
parents:
4952
diff
changeset
|
4727 (build_extstring (PATH_DOC, Qfile_name)); |
428 | 4728 #else |
4729 Vconfigure_doc_directory = Qnil; | |
4730 #endif | |
4731 | |
4732 DEFVAR_LISP ("configure-exec-prefix-directory", &Vconfigure_exec_prefix_directory /* | |
4733 For internal use by the build procedure only. | |
444 | 4734 configure's idea of what `exec-prefix-directory' will be. |
428 | 4735 */ ); |
4736 #ifdef PATH_EXEC_PREFIX | |
4737 Vconfigure_exec_prefix_directory = Ffile_name_as_directory | |
4953
304aebb79cd3
function renamings to track names of char typedefs
Ben Wing <ben@xemacs.org>
parents:
4952
diff
changeset
|
4738 (build_extstring (PATH_EXEC_PREFIX, Qfile_name)); |
428 | 4739 #else |
4740 Vconfigure_exec_prefix_directory = Qnil; | |
4741 #endif | |
4742 | |
4743 DEFVAR_LISP ("configure-prefix-directory", &Vconfigure_prefix_directory /* | |
4744 For internal use by the build procedure only. | |
444 | 4745 configure's idea of what `prefix-directory' will be. |
428 | 4746 */ ); |
4747 #ifdef PATH_PREFIX | |
4748 Vconfigure_prefix_directory = Ffile_name_as_directory | |
4953
304aebb79cd3
function renamings to track names of char typedefs
Ben Wing <ben@xemacs.org>
parents:
4952
diff
changeset
|
4749 (build_extstring (PATH_PREFIX, Qfile_name)); |
428 | 4750 #else |
4751 Vconfigure_prefix_directory = Qnil; | |
4752 #endif | |
4753 | |
4754 DEFVAR_LISP ("configure-info-directory", &Vconfigure_info_directory /* | |
4755 For internal use by the build procedure only. | |
4756 This is the name of the directory in which the build procedure installed | |
4757 Emacs's info files; the default value for Info-default-directory-list | |
4758 includes this. | |
4759 */ ); | |
4760 #ifdef PATH_INFO | |
4761 Vconfigure_info_directory = | |
4953
304aebb79cd3
function renamings to track names of char typedefs
Ben Wing <ben@xemacs.org>
parents:
4952
diff
changeset
|
4762 Ffile_name_as_directory (build_extstring (PATH_INFO, Qfile_name)); |
428 | 4763 #else |
4764 Vconfigure_info_directory = Qnil; | |
4765 #endif | |
4766 | |
4767 DEFVAR_LISP ("configure-info-path", &Vconfigure_info_path /* | |
4768 The configured initial path for info documentation. | |
4769 */ ); | |
4770 #ifdef PATH_INFOPATH | |
771 | 4771 Vconfigure_info_path = split_external_path (PATH_INFOPATH); |
428 | 4772 #else |
4773 Vconfigure_info_path = Qnil; | |
4774 #endif | |
4775 } | |
4776 | |
1303 | 4777 #if defined (__sgi) && !defined (PDUMP) |
428 | 4778 /* This is so tremendously ugly I'd puke. But then, it works. |
4779 * The target is to override the static constructor from the | |
442 | 4780 * libiflPNG.so library which is masquerading as libz, and |
428 | 4781 * cores on us when re-started from the dumped executable. |
4782 * This will have to go for 21.1 -- OG. | |
4783 */ | |
446 | 4784 void __sti__iflPNGFile_c___ (void); |
4785 void | |
4786 __sti__iflPNGFile_c___ (void) | |
428 | 4787 { |
4788 } | |
4789 | |
4790 #endif | |
771 | 4791 |
2210 | 4792 DOESNT_RETURN |
771 | 4793 really_abort (void) |
4794 { | |
4795 abort (); | |
4796 } |