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