]> code.delx.au - gnu-emacs/blob - lisp/loadup.el
Merged from miles@gnu.org--gnu-2005 (patch 469)
[gnu-emacs] / lisp / loadup.el
1 ;;; loadup.el --- load up standardly loaded Lisp files for Emacs
2
3 ;; Copyright (C) 1985, 1986, 1992, 1994, 2001 Free Software Foundation, Inc.
4
5 ;; Maintainer: FSF
6 ;; Keywords: internal
7
8 ;; This file is part of GNU Emacs.
9
10 ;; GNU Emacs is free software; you can redistribute it and/or modify
11 ;; it under the terms of the GNU General Public License as published by
12 ;; the Free Software Foundation; either version 2, or (at your option)
13 ;; any later version.
14
15 ;; GNU Emacs is distributed in the hope that it will be useful,
16 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
17 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 ;; GNU General Public License for more details.
19
20 ;; You should have received a copy of the GNU General Public License
21 ;; along with GNU Emacs; see the file COPYING. If not, write to the
22 ;; Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
23 ;; Boston, MA 02110-1301, USA.
24
25 ;;; Commentary:
26
27 ;; This is loaded into a bare Emacs to make a dumpable one.
28
29 ;;; Code:
30
31 ;; add subdirectories to the load-path for files that might
32 ;; get autoloaded when bootstrapping
33 (if (or (equal (nth 3 command-line-args) "bootstrap")
34 (equal (nth 4 command-line-args) "bootstrap")
35 ;; in case CANNOT_DUMP
36 (equal (nth 0 command-line-args) "../src/bootstrap-emacs"))
37 (let ((dir (car load-path)))
38 ;; We'll probably overflow the pure space.
39 (setq purify-flag nil)
40 (setq load-path (list dir
41 (expand-file-name "emacs-lisp" dir)
42 (expand-file-name "language" dir)
43 (expand-file-name "international" dir)
44 (expand-file-name "textmodes" dir)))))
45
46 (message "Using load-path %s" load-path)
47
48 ;; We don't want to have any undo records in the dumped Emacs.
49 (set-buffer "*scratch*")
50 (setq buffer-undo-list t)
51
52 (load "emacs-lisp/byte-run")
53 (load "emacs-lisp/backquote")
54 (load "subr")
55
56 ;; We specify .el in case someone compiled version.el by mistake.
57 (load "version.el")
58
59 (load "widget")
60 (load "custom")
61 (load "emacs-lisp/map-ynp")
62 (load "env")
63 (load "cus-start")
64 (load "international/mule")
65 (load "international/mule-conf.el") ;Don't get confused if someone compiled this by mistake.
66 (load "format")
67 (load "bindings")
68 (setq load-source-file-function 'load-with-code-conversion)
69 (load "files")
70
71 (load "startup")
72
73 (load "cus-face")
74 (load "faces") ; after here, `defface' may be used.
75
76 (message "Lists of integers (garbage collection statistics) are normal output")
77 (message "while building Emacs; they do not indicate a problem.")
78 (message "%s" (garbage-collect))
79 (load "loaddefs.el") ;Don't get confused if someone compiled this by mistake.
80 (message "%s" (garbage-collect))
81 (load "simple")
82
83 (load "help")
84
85 ;; Any Emacs Lisp source file (*.el) loaded here after can contain
86 ;; multilingual text.
87 (load "international/mule-cmds")
88 (load "case-table")
89 (load "international/utf-8")
90 (load "international/utf-16")
91 (load "international/characters")
92
93 (let ((set-case-syntax-set-multibyte t))
94 (load "international/latin-1")
95 (load "international/latin-2")
96 (load "international/latin-3")
97 (load "international/latin-4")
98 (load "international/latin-5")
99 (load "international/latin-8")
100 (load "international/latin-9"))
101 ;; Load language-specific files.
102 (load "language/chinese")
103 (load "language/cyrillic")
104 (load "language/indian")
105 (load "language/devanagari") ; This should be loaded after indian.
106 (load "language/malayalam") ; This should be loaded after indian.
107 (load "language/tamil") ; This should be loaded after indian.
108 (load "language/kannada") ; This should be loaded after indian.
109 (load "language/english")
110 (load "language/ethiopic")
111 (load "language/european")
112 (load "language/czech")
113 (load "language/slovak")
114 (load "language/romanian")
115 (load "language/greek")
116 (load "language/hebrew")
117 (load "language/japanese")
118 (load "language/korean")
119 (load "language/lao")
120 (load "language/thai")
121 (load "language/tibetan")
122 (load "language/vietnamese")
123 (load "language/misc-lang")
124 (load "language/utf-8-lang")
125 (load "language/georgian")
126
127 (load "international/ucs-tables")
128
129 (update-coding-systems-internal)
130
131 (load "indent")
132 (load "window")
133 (load "frame")
134 (load "term/tty-colors")
135 (load "font-core")
136
137 (if (fboundp 'frame-face-alist)
138 (progn
139 (load "facemenu")))
140 (if (fboundp 'track-mouse)
141 (progn
142 (load "mouse")
143 (and (boundp 'x-toolkit-scroll-bars)
144 (load "scroll-bar"))
145 (load "select")))
146 (load "emacs-lisp/timer")
147 (load "isearch")
148
149 (message "%s" (garbage-collect))
150 (load "menu-bar")
151 (load "paths.el") ;Don't get confused if someone compiled paths by mistake.
152 (load "emacs-lisp/lisp")
153 (load "textmodes/page")
154 (load "register")
155 (load "textmodes/paragraphs")
156 (load "emacs-lisp/lisp-mode")
157 (load "textmodes/text-mode")
158 (load "textmodes/fill")
159 (message "%s" (garbage-collect))
160
161 (load "replace")
162 (if (eq system-type 'vax-vms)
163 (progn
164 (load "vmsproc")))
165 (load "abbrev")
166 (load "buff-menu")
167 (load "server") ; server-getenv is used throughout the terminal initialization code
168 (if (eq system-type 'vax-vms)
169 (progn
170 (load "vms-patch")))
171 (if (eq system-type 'windows-nt)
172 (progn
173 (load "ls-lisp")
174 (load "disp-table") ; needed to setup ibm-pc char set, see internal.el
175 (load "dos-w32")
176 (load "w32-vars")
177 (load "w32-fns")))
178 (if (eq system-type 'ms-dos)
179 (progn
180 (load "ls-lisp")
181 (load "dos-w32")
182 (load "dos-fns")
183 (load "dos-vars")
184 (load "international/ccl") ; codepage.el uses CCL en/decoder
185 (load "international/codepage") ; internal.el uses cpNNN coding systems
186 (load "disp-table"))) ; needed to setup ibm-pc char set, see internal.el
187 (if (eq system-type 'macos)
188 (progn
189 (load "ls-lisp")))
190 (if (fboundp 'atan) ; preload some constants and
191 (progn ; floating pt. functions if we have float support.
192 (load "emacs-lisp/float-sup")))
193 (message "%s" (garbage-collect))
194
195 ;; Load auxiliary settings for X displays if we support them.
196 (when (fboundp 'x-create-frame)
197 (load "mouse")
198 (load "international/fontset")
199 (load "dnd")
200 (load "x-dnd")
201 (load "term/x-win"))
202
203 (message "%s" (garbage-collect))
204
205 (load "vc-hooks")
206 (load "jka-cmpr-hook")
207 (load "ediff-hook")
208 (if (fboundp 'x-show-tip) (load "tooltip"))
209 (message "%s" (garbage-collect))
210
211 ;If you want additional libraries to be preloaded and their
212 ;doc strings kept in the DOC file rather than in core,
213 ;you may load them with a "site-load.el" file.
214 ;But you must also cause them to be scanned when the DOC file
215 ;is generated. For VMS, you must edit ../vms/makedoc.com.
216 ;For other systems, you must edit ../src/Makefile.in.
217 (if (load "site-load" t)
218 (garbage-collect))
219
220 (if (fboundp 'x-popup-menu)
221 (precompute-menubar-bindings))
222 ;; Turn on recording of which commands get rebound,
223 ;; for the sake of the next call to precompute-menubar-bindings.
224 (setq define-key-rebound-commands nil)
225
226 ;; Determine which last version number to use
227 ;; based on the executables that now exist.
228 (if (and (or (equal (nth 3 command-line-args) "dump")
229 (equal (nth 4 command-line-args) "dump"))
230 (not (eq system-type 'ms-dos)))
231 (let* ((base (concat "emacs-" emacs-version "."))
232 (files (file-name-all-completions base default-directory))
233 (versions (mapcar (function (lambda (name)
234 (string-to-int (substring name (length base)))))
235 files)))
236 ;; `emacs-version' is a constant, so we shouldn't change it with `setq'.
237 (defconst emacs-version
238 (format "%s.%d"
239 emacs-version (if versions (1+ (apply 'max versions)) 1)))))
240
241 ;; Note: all compiled Lisp files loaded above this point
242 ;; must be among the ones parsed by make-docfile
243 ;; to construct DOC. Any that are not processed
244 ;; for DOC will not have doc strings in the dumped Emacs.
245
246 (message "Finding pointers to doc strings...")
247 (if (or (equal (nth 3 command-line-args) "dump")
248 (equal (nth 4 command-line-args) "dump"))
249 (let ((name emacs-version))
250 (while (string-match "[^-+_.a-zA-Z0-9]+" name)
251 (setq name (concat (downcase (substring name 0 (match-beginning 0)))
252 "-"
253 (substring name (match-end 0)))))
254 (if (memq system-type '(ms-dos windows-nt))
255 (setq name (expand-file-name
256 (if (fboundp 'x-create-frame) "DOC-X" "DOC") "../etc"))
257 (setq name (concat (expand-file-name "../etc/DOC-") name))
258 (if (file-exists-p name)
259 (delete-file name))
260 (copy-file (expand-file-name "../etc/DOC") name t))
261 (Snarf-documentation (file-name-nondirectory name)))
262 (condition-case nil
263 (Snarf-documentation "DOC")
264 (error nil)))
265 (message "Finding pointers to doc strings...done")
266
267 ;;;Note: You can cause additional libraries to be preloaded
268 ;;;by writing a site-init.el that loads them.
269 ;;;See also "site-load" above.
270 (load "site-init" t)
271 (setq current-load-list nil)
272
273 ;; Write the value of load-history into fns-VERSION.el,
274 ;; then clear out load-history.
275 ;; (if (or (equal (nth 3 command-line-args) "dump")
276 ;; (equal (nth 4 command-line-args) "dump"))
277 ;; (let ((buffer-undo-list t))
278 ;; (princ "(setq load-history\n" (current-buffer))
279 ;; (princ " (nconc load-history\n" (current-buffer))
280 ;; (princ " '(" (current-buffer))
281 ;; (let ((tem load-history))
282 ;; (while tem
283 ;; (prin1 (car tem) (current-buffer))
284 ;; (terpri (current-buffer))
285 ;; (if (cdr tem)
286 ;; (princ " " (current-buffer)))
287 ;; (setq tem (cdr tem))))
288 ;; (princ ")))\n" (current-buffer))
289 ;; (write-region (point-min) (point-max)
290 ;; (expand-file-name
291 ;; (cond
292 ;; ((eq system-type 'ms-dos)
293 ;; "../lib-src/fns.el")
294 ;; ((eq system-type 'windows-nt)
295 ;; (format "../../../lib-src/fns-%s.el" emacs-version))
296 ;; (t
297 ;; (format "../lib-src/fns-%s.el" emacs-version)))
298 ;; invocation-directory))
299 ;; (erase-buffer)
300 ;; (setq load-history nil))
301 ;; (setq symbol-file-load-history-loaded t))
302 ;; We don't use this fns-*.el file. Instead we keep the data in PURE space.
303 ;; Make sure that the spine of the list is not in pure space because it can
304 ;; be destructively mutated in lread.c:build_load_history.
305 (setq load-history (mapcar 'purecopy load-history))
306 (setq symbol-file-load-history-loaded t)
307
308 (set-buffer-modified-p nil)
309
310 ;; reset the load-path. See lread.c:init_lread why.
311 (if (or (equal (nth 3 command-line-args) "bootstrap")
312 (equal (nth 4 command-line-args) "bootstrap"))
313 (setcdr load-path nil))
314
315 (garbage-collect)
316
317 ;;; At this point, we're ready to resume undo recording for scratch.
318 (buffer-enable-undo "*scratch*")
319
320 (if (null (garbage-collect))
321 (setq pure-space-overflow t))
322
323 (if (or (member (nth 3 command-line-args) '("dump" "bootstrap"))
324 (member (nth 4 command-line-args) '("dump" "bootstrap")))
325 (if (eq system-type 'vax-vms)
326 (progn
327 (message "Dumping data as file temacs.dump")
328 (dump-emacs "temacs.dump" "temacs")
329 (kill-emacs))
330 (let ((name (concat "emacs-" emacs-version)))
331 (while (string-match "[^-+_.a-zA-Z0-9]+" name)
332 (setq name (concat (downcase (substring name 0 (match-beginning 0)))
333 "-"
334 (substring name (match-end 0)))))
335 (if (memq system-type '(ms-dos windows-nt cygwin))
336 (message "Dumping under the name emacs")
337 (message "Dumping under names emacs and %s" name)))
338 (condition-case ()
339 (delete-file "emacs")
340 (file-error nil))
341 ;; We used to dump under the name xemacs, but that occasionally
342 ;; confused people installing Emacs (they'd install the file
343 ;; under the name `xemacs'), and it's inconsistent with every
344 ;; other GNU program's build process.
345 (dump-emacs "emacs" "temacs")
346 (message "%d pure bytes used" pure-bytes-used)
347 ;; Recompute NAME now, so that it isn't set when we dump.
348 (if (not (memq system-type '(ms-dos windows-nt cygwin)))
349 (let ((name (concat "emacs-" emacs-version)))
350 (while (string-match "[^-+_.a-zA-Z0-9]+" name)
351 (setq name (concat (downcase (substring name 0 (match-beginning 0)))
352 "-"
353 (substring name (match-end 0)))))
354 (add-name-to-file "emacs" name t)))
355 (kill-emacs)))
356
357 ;; Avoid error if user loads some more libraries now.
358 (setq purify-flag nil)
359
360 ;; For machines with CANNOT_DUMP defined in config.h,
361 ;; this file must be loaded each time Emacs is run.
362 ;; So run the startup code now. First, remove `-l loadup' from args.
363
364 (if (and (equal (nth 1 command-line-args) "-l")
365 (equal (nth 2 command-line-args) "loadup"))
366 (setcdr command-line-args (nthcdr 3 command-line-args)))
367
368 (eval top-level)
369
370 \f
371 ;;; Local Variables:
372 ;;; no-byte-compile: t
373 ;;; no-update-autoloads: t
374 ;;; End:
375
376 ;;; arch-tag: 121e1dd4-36e1-45ac-860e-239f577a6335
377 ;;; loadup.el ends here