209
|
1 ;;; loadup.el --- load up standardly loaded Lisp files for XEmacs.
|
|
2
|
223
|
3 ;; Copyright (C) 1985, 1986, 1992, 1994, 1997 Free Software Foundation, Inc.
|
209
|
4 ;; Copyright (C) 1996 Richard Mlynarik.
|
|
5 ;; Copyright (C) 1995, 1996 Ben Wing.
|
|
6
|
223
|
7 ;; Maintainer: XEmacs Development Team
|
|
8 ;; Keywords: internal, dumped
|
209
|
9
|
|
10 ;; This file is part of XEmacs.
|
|
11
|
|
12 ;; XEmacs is free software; you can redistribute it and/or modify it
|
|
13 ;; under the terms of the GNU General Public License as published by
|
|
14 ;; the Free Software Foundation; either version 2, or (at your option)
|
|
15 ;; any later version.
|
|
16
|
|
17 ;; XEmacs is distributed in the hope that it will be useful, but
|
|
18 ;; WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
19 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
20 ;; General Public License for more details.
|
|
21
|
|
22 ;; You should have received a copy of the GNU General Public License
|
|
23 ;; along with XEmacs; see the file COPYING. If not, write to the Free
|
|
24 ;; Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
|
|
25 ;; 02111-1307, USA.
|
|
26
|
|
27 ;;; Synched up with: Last synched with FSF 19.30, with wild divergence since.
|
|
28
|
|
29 ;;; Commentary:
|
|
30
|
223
|
31 ;; Please do not edit this file. Use site-init.el, site-load.el, or
|
|
32 ;; packaged dumped-lisp.el's instead.
|
|
33
|
|
34 ;; This is loaded into a bare XEmacs to make a dumpable one.
|
209
|
35
|
|
36 ;;; Code:
|
|
37
|
|
38 (if (fboundp 'error)
|
|
39 (error "loadup.el already loaded!"))
|
|
40
|
|
41 (define-function 'defalias 'define-function)
|
|
42 (defvar running-xemacs t
|
|
43 "Non-nil when the current emacsen is XEmacs.")
|
|
44 (defvar preloaded-file-list nil
|
|
45 "List of files preloaded into the XEmacs binary image.")
|
|
46
|
227
|
47 ;; This is awfully damn early to be getting an error, right?
|
|
48 (call-with-condition-handler 'really-early-error-handler
|
|
49 #'(lambda ()
|
|
50 ;; message not defined yet ...
|
|
51 (external-debugging-output (format "\nUsing load-path %s" load-path))
|
209
|
52
|
227
|
53 ;; We don't want to have any undo records in the dumped XEmacs.
|
|
54 (buffer-disable-undo (get-buffer "*scratch*"))
|
209
|
55
|
227
|
56 ;; lread.c (or src/Makefile.in.in) has prepended
|
|
57 ;; "${srcdir}/../lisp/" to load-path, which is how this file
|
|
58 ;; has been found. At this point, enough of XEmacs has been
|
|
59 ;; initialized that we can start dumping "standard" lisp.
|
|
60 ;; Dumped lisp from external packages is added when we search
|
|
61 ;; the `package-path'.
|
|
62 ;; #### This code is duplicated in two other places.
|
|
63 (let ((temp-path (expand-file-name "." (car load-path))))
|
|
64 (setq source-directory temp-path)
|
|
65 (setq load-path (nconc (mapcar
|
|
66 #'(lambda (i) (concat i "/"))
|
|
67 (directory-files temp-path t "^[^-.]"
|
|
68 nil 'dirs-only))
|
|
69 (cons (file-name-as-directory temp-path)
|
|
70 load-path))))
|
209
|
71
|
227
|
72 (setq load-warn-when-source-newer t ; Used to be set to nil at the end
|
|
73 load-warn-when-source-only t) ; Set to nil at the end
|
209
|
74
|
227
|
75 ;; Inserted for debugging. Something is corrupting a single symbol
|
|
76 ;; somewhere to have an integer 0 property list. -slb 6/28/1997.
|
|
77 (defun test-atoms ()
|
|
78 (mapatoms
|
|
79 #'(lambda (symbol)
|
|
80 (condition-case nil
|
|
81 (get symbol 'custom-group)
|
|
82 (t (princ
|
|
83 (format "Bad plist in %s, %s\n"
|
|
84 (symbol-name symbol)
|
|
85 (prin1-to-string (object-plist symbol)))))))))
|
209
|
86
|
227
|
87 ;; garbage collect after loading every file in an attempt to
|
|
88 ;; minimize the size of the dumped image (if we don't do this,
|
|
89 ;; there will be lots of extra space in the data segment filled
|
|
90 ;; with garbage-collected junk)
|
|
91 (defmacro load-gc (file)
|
|
92 (list 'prog1
|
|
93 (list 'load
|
|
94 (list 'locate-file file
|
|
95 'load-path
|
|
96 (list 'if 'load-ignore-elc-files
|
|
97 ".el:"
|
|
98 ".elc:.el:")))
|
|
99 ;; '(test-atoms)
|
|
100 '(garbage-collect)))
|
209
|
101
|
227
|
102 (load (concat default-directory "../lisp/dumped-lisp.el"))
|
|
103 (let ((dumped-lisp-packages preloaded-file-list)
|
|
104 file)
|
|
105 (while (setq file (car dumped-lisp-packages))
|
|
106 (load-gc file)
|
|
107 (setq dumped-lisp-packages (cdr dumped-lisp-packages)))
|
|
108 (if (not (featurep 'toolbar))
|
|
109 (progn
|
|
110 ;; else still define a few functions.
|
|
111 (defun toolbar-button-p (obj) "No toolbar support." nil)
|
|
112 (defun toolbar-specifier-p (obj) "No toolbar support." nil)))
|
|
113 (fmakunbound 'load-gc))
|
|
114 )) ;; end of call-with-condition-handler
|
209
|
115
|
|
116 ;; Fix up the preloaded file list
|
|
117 (setq preloaded-file-list (mapcar #'file-name-sans-extension
|
|
118 preloaded-file-list))
|
|
119
|
|
120 (setq load-warn-when-source-newer t ; set to t at top of file
|
|
121 load-warn-when-source-only nil)
|
|
122
|
|
123 (setq debugger 'debug)
|
|
124
|
|
125 (when (member "no-site-file" command-line-args)
|
|
126 (setq site-start-file nil))
|
|
127
|
|
128 ;; If you want additional libraries to be preloaded and their
|
|
129 ;; doc strings kept in the DOC file rather than in core,
|
|
130 ;; you may load them with a "site-load.el" file.
|
|
131 ;; But you must also cause them to be scanned when the DOC file
|
|
132 ;; is generated. For VMS, you must edit ../../vms/makedoc.com.
|
|
133 ;; For other systems, you must edit ../../src/Makefile.in.in.
|
|
134 (if (load "site-load" t)
|
|
135 (garbage-collect))
|
|
136
|
|
137 ;;FSFmacs randomness
|
|
138 ;;(if (fboundp 'x-popup-menu)
|
|
139 ;; (precompute-menubar-bindings))
|
|
140 ;;; Turn on recording of which commands get rebound,
|
|
141 ;;; for the sake of the next call to precompute-menubar-bindings.
|
|
142 ;(setq define-key-rebound-commands nil)
|
|
143
|
|
144
|
|
145 ;; Note: all compiled Lisp files loaded above this point
|
|
146 ;; must be among the ones parsed by make-docfile
|
|
147 ;; to construct DOC. Any that are not processed
|
|
148 ;; for DOC will not have doc strings in the dumped XEmacs.
|
|
149
|
|
150 ;; Don't bother with these if we're running temacs, i.e. if we're
|
|
151 ;; just debugging don't waste time finding doc strings.
|
|
152
|
|
153 ;; purify-flag is nil if called from loadup-el.el.
|
|
154 (when purify-flag
|
|
155 (message "Finding pointers to doc strings...")
|
|
156 ;; (test-atoms) ; Debug -- Doesn't happen here
|
|
157 (Snarf-documentation "DOC")
|
|
158 ;; (test-atoms) ; Debug -- Doesn't happen here
|
|
159 (message "Finding pointers to doc strings...done")
|
|
160 (Verify-documentation)
|
|
161 ;; (test-atoms) ; Debug -- Doesn't happen here
|
|
162 )
|
|
163
|
|
164 ;; Note: You can cause additional libraries to be preloaded
|
|
165 ;; by writing a site-init.el that loads them.
|
|
166 ;; See also "site-load" above.
|
|
167 (if (stringp site-start-file)
|
|
168 (load "site-init" t))
|
|
169 (setq current-load-list nil)
|
|
170 (garbage-collect)
|
|
171
|
|
172 ;;; At this point, we're ready to resume undo recording for scratch.
|
|
173 (buffer-enable-undo "*scratch*")
|
|
174
|
|
175 ;; Dump into the name `xemacs' (only)
|
|
176 (when (member "dump" command-line-args)
|
|
177 (message "Dumping under the name xemacs")
|
|
178 (condition-case () (delete-file "xemacs") (file-error nil))
|
|
179 (when (fboundp 'really-free)
|
|
180 (really-free))
|
|
181 (dump-emacs "xemacs" "temacs")
|
|
182 (kill-emacs))
|
|
183
|
|
184 (when (member "run-temacs" command-line-args)
|
|
185 (message "\nBootstrapping from temacs...")
|
|
186 (setq purify-flag nil)
|
215
|
187 (setq inhibit-package-init t)
|
235
|
188 (setq inhibit-update-dumped-lisp t)
|
|
189 (setq inhibit-update-autoloads t)
|
209
|
190 ;; Remove all args up to and including "run-temacs"
|
|
191 (apply #'run-emacs-from-temacs (cdr (member "run-temacs" command-line-args)))
|
|
192 ;; run-emacs-from-temacs doesn't actually return anyway.
|
|
193 (kill-emacs))
|
|
194
|
|
195 ;; Avoid error if user loads some more libraries now.
|
|
196 (setq purify-flag nil)
|
|
197
|
|
198 ;; XEmacs change
|
|
199 ;; If you are using 'recompile', then you should have used -l loadup-el.el
|
|
200 ;; so that the .el files always get loaded (the .elc files may be out-of-
|
|
201 ;; date or bad).
|
|
202 (when (member "recompile" command-line-args)
|
|
203 (let ((command-line-args-left (cdr (member "recompile" command-line-args))))
|
|
204 (batch-byte-recompile-directory)
|
|
205 (kill-emacs)))
|
|
206
|
|
207 ;; For machines with CANNOT_DUMP defined in config.h,
|
|
208 ;; this file must be loaded each time Emacs is run.
|
|
209 ;; So run the startup code now.
|
|
210
|
|
211 (when (not (fboundp 'dump-emacs))
|
|
212 ;; Avoid loading loadup.el a second time!
|
|
213 (setq command-line-args (cdr (cdr command-line-args)))
|
|
214 (eval top-level))
|
|
215
|
|
216 ;;; loadup.el ends here
|