Merged in changes from CVS HEAD
[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 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., 59 Temple Place - Suite 330,
23 ;; Boston, MA 02111-1307, 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 (buffer-disable-undo "*scratch*")
50
51 (load "emacs-lisp/byte-run")
52 (load "emacs-lisp/backquote")
53 (load "subr")
54
55 ;; We specify .el in case someone compiled version.el by mistake.
56 (load "version.el")
57
58 (load "widget")
59 (load "custom")
60 (load "emacs-lisp/map-ynp")
61 (load "env")
62 (load "cus-start")
63 (load "international/mule")
64 (load "international/mule-conf.el") ;Don't get confused if someone compiled this by mistake.
65 (load "format")
66 (load "bindings")
67 (setq load-source-file-function 'load-with-code-conversion)
68 (load "files")
69
70 (load "startup")
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
136 (if (fboundp 'frame-face-alist)
137 (progn
138 (load "facemenu")))
139 (if (fboundp 'track-mouse)
140 (progn
141 (load "mouse")
142 (and (boundp 'x-toolkit-scroll-bars)
143 (load "scroll-bar"))
144 (load "select")))
145 (load "emacs-lisp/timer")
146 (load "isearch")
147
148 (message "%s" (garbage-collect))
149 (load "menu-bar")
150 (load "paths.el") ;Don't get confused if someone compiled paths by mistake.
151 (load "emacs-lisp/lisp")
152 (load "textmodes/page")
153 (load "register")
154 (load "textmodes/paragraphs")
155 (load "emacs-lisp/lisp-mode")
156 (load "textmodes/text-mode")
157 (load "textmodes/fill")
158 (message "%s" (garbage-collect))
159
160 (load "replace")
161 (if (eq system-type 'vax-vms)
162 (progn
163 (load "vmsproc")))
164 (load "abbrev")
165 (load "buff-menu")
166 (if (eq system-type 'vax-vms)
167 (progn
168 (load "vms-patch")))
169 (if (eq system-type 'windows-nt)
170 (progn
171 (load "ls-lisp")
172 (load "disp-table") ; needed to setup ibm-pc char set, see internal.el
173 (load "dos-w32")
174 (load "w32-vars")
175 (load "w32-fns")))
176 (if (eq system-type 'ms-dos)
177 (progn
178 (load "ls-lisp")
179 (load "dos-w32")
180 (load "dos-fns")
181 (load "dos-vars")
182 (load "international/ccl") ; codepage.el uses CCL en/decoder
183 (load "international/codepage") ; internal.el uses cpNNN coding systems
184 (load "disp-table"))) ; needed to setup ibm-pc char set, see internal.el
185 (if (eq system-type 'macos)
186 (progn
187 (load "ls-lisp")))
188 (if (fboundp 'atan) ; preload some constants and
189 (progn ; floating pt. functions if we have float support.
190 (load "emacs-lisp/float-sup")))
191 (message "%s" (garbage-collect))
192
193 (when (fboundp 'x-create-frame)
194 (load "mouse")
195 (load "international/fontset")
196 (load "term/x-win"))
197
198 (message "%s" (garbage-collect))
199
200 (load "vc-hooks")
201 (load "ediff-hook")
202 (message "%s" (garbage-collect))
203
204 ;If you want additional libraries to be preloaded and their
205 ;doc strings kept in the DOC file rather than in core,
206 ;you may load them with a "site-load.el" file.
207 ;But you must also cause them to be scanned when the DOC file
208 ;is generated. For VMS, you must edit ../vms/makedoc.com.
209 ;For other systems, you must edit ../src/Makefile.in.
210 (if (load "site-load" t)
211 (garbage-collect))
212
213 (if (fboundp 'x-popup-menu)
214 (precompute-menubar-bindings))
215 ;; Turn on recording of which commands get rebound,
216 ;; for the sake of the next call to precompute-menubar-bindings.
217 (setq define-key-rebound-commands nil)
218
219 ;; Determine which last version number to use
220 ;; based on the executables that now exist.
221 (if (and (or (equal (nth 3 command-line-args) "dump")
222 (equal (nth 4 command-line-args) "dump"))
223 (not (eq system-type 'ms-dos)))
224 (let* ((base (concat "emacs-" emacs-version "."))
225 (files (file-name-all-completions base default-directory))
226 (versions (mapcar (function (lambda (name)
227 (string-to-int (substring name (length base)))))
228 files)))
229 ;; `emacs-version' is a constant, so we shouldn't change it with `setq'.
230 (defconst emacs-version
231 (format "%s.%d"
232 emacs-version (if versions (1+ (apply 'max versions)) 1)))))
233
234 ;; Note: all compiled Lisp files loaded above this point
235 ;; must be among the ones parsed by make-docfile
236 ;; to construct DOC. Any that are not processed
237 ;; for DOC will not have doc strings in the dumped Emacs.
238
239 (message "Finding pointers to doc strings...")
240 (if (or (equal (nth 3 command-line-args) "dump")
241 (equal (nth 4 command-line-args) "dump"))
242 (let ((name emacs-version))
243 (while (string-match "[^-+_.a-zA-Z0-9]+" name)
244 (setq name (concat (downcase (substring name 0 (match-beginning 0)))
245 "-"
246 (substring name (match-end 0)))))
247 (if (memq system-type '(ms-dos windows-nt))
248 (setq name (expand-file-name
249 (if (fboundp 'x-create-frame) "DOC-X" "DOC") "../etc"))
250 (setq name (concat (expand-file-name "../etc/DOC-") name))
251 (if (file-exists-p name)
252 (delete-file name))
253 (copy-file (expand-file-name "../etc/DOC") name t))
254 (Snarf-documentation (file-name-nondirectory name)))
255 (condition-case nil
256 (Snarf-documentation "DOC")
257 (error nil)))
258 (message "Finding pointers to doc strings...done")
259
260 ;;;Note: You can cause additional libraries to be preloaded
261 ;;;by writing a site-init.el that loads them.
262 ;;;See also "site-load" above.
263 (load "site-init" t)
264 (setq current-load-list nil)
265
266 ;; Write the value of load-history into fns-VERSION.el,
267 ;; then clear out load-history.
268 ;; (if (or (equal (nth 3 command-line-args) "dump")
269 ;; (equal (nth 4 command-line-args) "dump"))
270 ;; (let ((buffer-undo-list t))
271 ;; (princ "(setq load-history\n" (current-buffer))
272 ;; (princ " (nconc load-history\n" (current-buffer))
273 ;; (princ " '(" (current-buffer))
274 ;; (let ((tem load-history))
275 ;; (while tem
276 ;; (prin1 (car tem) (current-buffer))
277 ;; (terpri (current-buffer))
278 ;; (if (cdr tem)
279 ;; (princ " " (current-buffer)))
280 ;; (setq tem (cdr tem))))
281 ;; (princ ")))\n" (current-buffer))
282 ;; (write-region (point-min) (point-max)
283 ;; (expand-file-name
284 ;; (cond
285 ;; ((eq system-type 'ms-dos)
286 ;; "../lib-src/fns.el")
287 ;; ((eq system-type 'windows-nt)
288 ;; (format "../../../lib-src/fns-%s.el" emacs-version))
289 ;; (t
290 ;; (format "../lib-src/fns-%s.el" emacs-version)))
291 ;; invocation-directory))
292 ;; (erase-buffer)
293 ;; (setq load-history nil))
294 ;; (setq symbol-file-load-history-loaded t))
295 ;; We don't use this fns-*.el file. Instead we keep the data in PURE space.
296 ;; Make sure that the spine of the list is not in pure space because it can
297 ;; be destructively mutated in lread.c:build_load_history.
298 (setq load-history (mapcar 'purecopy load-history))
299 (setq symbol-file-load-history-loaded t)
300
301 (set-buffer-modified-p nil)
302
303 ;; reset the load-path. See lread.c:init_lread why.
304 (if (or (equal (nth 3 command-line-args) "bootstrap")
305 (equal (nth 4 command-line-args) "bootstrap"))
306 (setcdr load-path nil))
307
308 (garbage-collect)
309
310 ;;; At this point, we're ready to resume undo recording for scratch.
311 (buffer-enable-undo "*scratch*")
312
313 (if (null (garbage-collect))
314 (setq pure-space-overflow t))
315
316 (if (or (member (nth 3 command-line-args) '("dump" "bootstrap"))
317 (member (nth 4 command-line-args) '("dump" "bootstrap")))
318 (if (eq system-type 'vax-vms)
319 (progn
320 (message "Dumping data as file temacs.dump")
321 (dump-emacs "temacs.dump" "temacs")
322 (kill-emacs))
323 (let ((name (concat "emacs-" emacs-version)))
324 (while (string-match "[^-+_.a-zA-Z0-9]+" name)
325 (setq name (concat (downcase (substring name 0 (match-beginning 0)))
326 "-"
327 (substring name (match-end 0)))))
328 (if (eq system-type 'ms-dos)
329 (message "Dumping under the name emacs")
330 (message "Dumping under names emacs and %s" name)))
331 (condition-case ()
332 (delete-file "emacs")
333 (file-error nil))
334 ;; We used to dump under the name xemacs, but that occasionally
335 ;; confused people installing Emacs (they'd install the file
336 ;; under the name `xemacs'), and it's inconsistent with every
337 ;; other GNU program's build process.
338 (dump-emacs "emacs" "temacs")
339 (message "%d pure bytes used" pure-bytes-used)
340 ;; Recompute NAME now, so that it isn't set when we dump.
341 (if (not (memq system-type '(ms-dos windows-nt)))
342 (let ((name (concat "emacs-" emacs-version)))
343 (while (string-match "[^-+_.a-zA-Z0-9]+" name)
344 (setq name (concat (downcase (substring name 0 (match-beginning 0)))
345 "-"
346 (substring name (match-end 0)))))
347 (add-name-to-file "emacs" name t)))
348 (kill-emacs)))
349
350 ;; Avoid error if user loads some more libraries now.
351 (setq purify-flag nil)
352
353 ;; For machines with CANNOT_DUMP defined in config.h,
354 ;; this file must be loaded each time Emacs is run.
355 ;; So run the startup code now. First, remove `-l loadup' from args.
356
357 (if (and (equal (nth 1 command-line-args) "-l")
358 (equal (nth 2 command-line-args) "loadup"))
359 (setcdr command-line-args (nthcdr 3 command-line-args)))
360
361 (eval top-level)
362
363 \f
364 ;;; Local Variables:
365 ;;; no-byte-compile: t
366 ;;; no-update-autoloads: t
367 ;;; End:
368
369 ;;; arch-tag: 121e1dd4-36e1-45ac-860e-239f577a6335
370 ;;; loadup.el ends here