Merge from emacs--rel--22
[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, 2006, 2007, 2008 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 3 of the License, or
14 ;; (at your option) 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. If not, see <http://www.gnu.org/licenses/>.
23
24 ;;; Commentary:
25
26 ;; This is loaded into a bare Emacs to make a dumpable one.
27
28 ;;; Code:
29
30 ;; add subdirectories to the load-path for files that might
31 ;; get autoloaded when bootstrapping
32 (if (or (equal (nth 3 command-line-args) "bootstrap")
33 (equal (nth 4 command-line-args) "bootstrap")
34 (equal (nth 3 command-line-args) "unidata-gen.el")
35 (equal (nth 4 command-line-args) "unidata-gen-files")
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 "cus-start")
64 (load "international/mule")
65 (load "international/mule-conf.el") ;Don't get confused if someone compiled this by mistake.
66 (load "env")
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 (load "minibuffer")
75
76 (load "button")
77 (load "startup")
78
79 (message "Lists of integers (garbage collection statistics) are normal output")
80 (message "while building Emacs; they do not indicate a problem.")
81 (message "%s" (garbage-collect))
82
83 (condition-case nil
84 ;; Don't get confused if someone compiled this by mistake.
85 (load "loaddefs.el")
86 ;; In case loaddefs hasn't been generated yet.
87 (file-error (load "ldefs-boot.el")))
88
89 (message "%s" (garbage-collect))
90 (load "abbrev") ;lisp-mode.el and simple.el use define-abbrev-table.
91 (load "simple")
92
93 (load "help")
94
95 (load "jka-cmpr-hook")
96 (load "epa-hook")
97 ;; Any Emacs Lisp source file (*.el) loaded here after can contain
98 ;; multilingual text.
99 (load "international/mule-cmds")
100 (load "case-table")
101 (load "international/characters")
102 (load "composite")
103 ;; This file doesn't exist when building Emacs from CVS. It is
104 ;; generated just after temacs is build.
105 (load "international/charprop.el" t)
106
107 ;; Load language-specific files.
108 (load "language/chinese")
109 (load "language/cyrillic")
110 (load "language/indian")
111 (load "language/sinhala")
112 (load "language/english")
113 (load "language/ethiopic")
114 (load "language/european")
115 (load "language/czech")
116 (load "language/slovak")
117 (load "language/romanian")
118 (load "language/greek")
119 (load "language/hebrew")
120 (load "language/japanese")
121 (load "language/korean")
122 (load "language/lao")
123 (load "language/tai-viet")
124 (load "language/thai")
125 (load "language/tibetan")
126 (load "language/vietnamese")
127 (load "language/misc-lang")
128 (load "language/utf-8-lang")
129 (load "language/georgian")
130 (load "language/khmer")
131 (load "language/burmese")
132 (load "language/cham")
133
134 (load "indent")
135 (load "window")
136 (load "frame")
137 (load "term/tty-colors")
138 (load "font-core")
139 ;; facemenu must be loaded before font-lock, because `facemenu-keymap'
140 ;; needs to be defined when font-lock is loaded.
141 (load "facemenu")
142 (load "emacs-lisp/syntax")
143 (load "font-lock")
144 (load "jit-lock")
145
146 (if (fboundp 'track-mouse)
147 (progn
148 (load "mouse")
149 (and (boundp 'x-toolkit-scroll-bars)
150 (load "scroll-bar"))
151 (load "select")))
152 (load "emacs-lisp/timer")
153 (load "isearch")
154 (load "rfn-eshadow")
155
156 (message "%s" (garbage-collect))
157 (load "menu-bar")
158 (load "paths.el") ;Don't get confused if someone compiled paths by mistake.
159 (load "emacs-lisp/lisp")
160 (load "textmodes/page")
161 (load "register")
162 (load "textmodes/paragraphs")
163 (load "emacs-lisp/lisp-mode")
164 (load "textmodes/text-mode")
165 (load "textmodes/fill")
166 (message "%s" (garbage-collect))
167
168 (load "replace")
169 (if (eq system-type 'vax-vms)
170 (progn
171 (load "vmsproc")))
172 (load "buff-menu")
173
174 (if (fboundp 'x-create-frame)
175 (progn
176 (load "fringe")
177 (load "image")
178 (load "international/fontset")
179 (load "dnd")
180 (load "mwheel")
181 (load "tool-bar")))
182 (if (featurep 'x)
183 (progn
184 (load "x-dnd")
185 (load "term/common-win")
186 (load "term/x-win")))
187
188 (message "%s" (garbage-collect))
189
190 (if (eq system-type 'vax-vms)
191 (progn
192 (load "vms-patch")))
193 (if (eq system-type 'windows-nt)
194 (progn
195 (load "w32-vars")
196 (load "term/common-win")
197 (load "term/w32-win")
198 (load "ls-lisp")
199 (load "disp-table") ; needed to setup ibm-pc char set, see internal.el
200 (load "dos-w32")
201 (load "w32-fns")))
202 (if (eq system-type 'ms-dos)
203 (progn
204 (load "ls-lisp")
205 (load "dos-w32")
206 (load "dos-fns")
207 (load "dos-vars")
208 (load "international/ccl") ; codepage.el uses CCL en/decoder
209 (load "international/codepage") ; internal.el uses cpNNN coding systems
210 (load "disp-table"))) ; needed to setup ibm-pc char set, see internal.el
211 (if (eq system-type 'macos)
212 (progn
213 (load "ls-lisp")))
214 (if (featurep 'mac-carbon)
215 (progn
216 (load "term/mac-win")))
217 (if (featurep 'ns)
218 (progn
219 (load "emacs-lisp/easymenu") ;; for platform-related menu adjustments
220 (load "term/ns-win")))
221 (if (fboundp 'atan) ; preload some constants and
222 (progn ; floating pt. functions if we have float support.
223 (load "emacs-lisp/float-sup")))
224 (message "%s" (garbage-collect))
225
226 (load "vc-hooks")
227 (load "ediff-hook")
228 (if (fboundp 'x-show-tip) (load "tooltip"))
229
230 (message "%s" (garbage-collect))
231
232 ;If you want additional libraries to be preloaded and their
233 ;doc strings kept in the DOC file rather than in core,
234 ;you may load them with a "site-load.el" file.
235 ;But you must also cause them to be scanned when the DOC file
236 ;is generated. For VMS, you must edit ../vms/makedoc.com.
237 ;For other systems, you must edit ../src/Makefile.in.
238 (if (load "site-load" t)
239 (garbage-collect))
240
241 (if (fboundp 'x-popup-menu)
242 (precompute-menubar-bindings))
243 ;; Turn on recording of which commands get rebound,
244 ;; for the sake of the next call to precompute-menubar-bindings.
245 (setq define-key-rebound-commands nil)
246
247 ;; Determine which last version number to use
248 ;; based on the executables that now exist.
249 (if (and (or (equal (nth 3 command-line-args) "dump")
250 (equal (nth 4 command-line-args) "dump"))
251 (not (eq system-type 'ms-dos)))
252 (let* ((base (concat "emacs-" emacs-version "."))
253 (files (file-name-all-completions base default-directory))
254 (versions (mapcar (function (lambda (name)
255 (string-to-int (substring name (length base)))))
256 files)))
257 ;; `emacs-version' is a constant, so we shouldn't change it with `setq'.
258 (defconst emacs-version
259 (format "%s.%d"
260 emacs-version (if versions (1+ (apply 'max versions)) 1)))))
261
262 ;; Note: all compiled Lisp files loaded above this point
263 ;; must be among the ones parsed by make-docfile
264 ;; to construct DOC. Any that are not processed
265 ;; for DOC will not have doc strings in the dumped Emacs.
266
267 (message "Finding pointers to doc strings...")
268 (if (or (equal (nth 3 command-line-args) "dump")
269 (equal (nth 4 command-line-args) "dump"))
270 (let ((name emacs-version))
271 (while (string-match "[^-+_.a-zA-Z0-9]+" name)
272 (setq name (concat (downcase (substring name 0 (match-beginning 0)))
273 "-"
274 (substring name (match-end 0)))))
275 (if (memq system-type '(ms-dos windows-nt))
276 (setq name (expand-file-name
277 (if (fboundp 'x-create-frame) "DOC-X" "DOC") "../etc"))
278 (setq name (concat (expand-file-name "../etc/DOC-") name))
279 (if (file-exists-p name)
280 (delete-file name))
281 (copy-file (expand-file-name "../etc/DOC") name t))
282 (Snarf-documentation (file-name-nondirectory name)))
283 (condition-case nil
284 (Snarf-documentation "DOC")
285 (error nil)))
286 (message "Finding pointers to doc strings...done")
287
288 ;;;Note: You can cause additional libraries to be preloaded
289 ;;;by writing a site-init.el that loads them.
290 ;;;See also "site-load" above.
291 (load "site-init" t)
292 (setq current-load-list nil)
293
294 ;; Write the value of load-history into fns-VERSION.el,
295 ;; then clear out load-history.
296 ;; (if (or (equal (nth 3 command-line-args) "dump")
297 ;; (equal (nth 4 command-line-args) "dump"))
298 ;; (let ((buffer-undo-list t))
299 ;; (princ "(setq load-history\n" (current-buffer))
300 ;; (princ " (nconc load-history\n" (current-buffer))
301 ;; (princ " '(" (current-buffer))
302 ;; (let ((tem load-history))
303 ;; (while tem
304 ;; (prin1 (car tem) (current-buffer))
305 ;; (terpri (current-buffer))
306 ;; (if (cdr tem)
307 ;; (princ " " (current-buffer)))
308 ;; (setq tem (cdr tem))))
309 ;; (princ ")))\n" (current-buffer))
310 ;; (write-region (point-min) (point-max)
311 ;; (expand-file-name
312 ;; (cond
313 ;; ((eq system-type 'ms-dos)
314 ;; "../lib-src/fns.el")
315 ;; ((eq system-type 'windows-nt)
316 ;; (format "../../../lib-src/fns-%s.el" emacs-version))
317 ;; (t
318 ;; (format "../lib-src/fns-%s.el" emacs-version)))
319 ;; invocation-directory))
320 ;; (erase-buffer)
321 ;; (setq load-history nil))
322 ;; (setq symbol-file-load-history-loaded t))
323 ;; We don't use this fns-*.el file. Instead we keep the data in PURE space.
324 ;; Make sure that the spine of the list is not in pure space because it can
325 ;; be destructively mutated in lread.c:build_load_history.
326 (setq load-history (mapcar 'purecopy load-history))
327 (setq symbol-file-load-history-loaded t)
328
329 (set-buffer-modified-p nil)
330
331 ;; reset the load-path. See lread.c:init_lread why.
332 (if (or (equal (nth 3 command-line-args) "bootstrap")
333 (equal (nth 4 command-line-args) "bootstrap"))
334 (setcdr load-path nil))
335
336 (clear-charset-maps)
337 (garbage-collect)
338
339 ;;; At this point, we're ready to resume undo recording for scratch.
340 (buffer-enable-undo "*scratch*")
341
342 (if (null (garbage-collect))
343 (setq pure-space-overflow t))
344
345 (if (or (member (nth 3 command-line-args) '("dump" "bootstrap"))
346 (member (nth 4 command-line-args) '("dump" "bootstrap")))
347 (if (eq system-type 'vax-vms)
348 (progn
349 (message "Dumping data as file temacs.dump")
350 (dump-emacs "temacs.dump" "temacs")
351 (kill-emacs))
352 (if (memq system-type '(ms-dos windows-nt cygwin))
353 (message "Dumping under the name emacs")
354 (message "Dumping under the name emacs"))
355 (condition-case ()
356 (delete-file "emacs")
357 (file-error nil))
358 ;; We used to dump under the name xemacs, but that occasionally
359 ;; confused people installing Emacs (they'd install the file
360 ;; under the name `xemacs'), and it's inconsistent with every
361 ;; other GNU program's build process.
362 (dump-emacs "emacs" "temacs")
363 (message "%d pure bytes used" pure-bytes-used)
364 ;; Recompute NAME now, so that it isn't set when we dump.
365 (if (not (or (memq system-type '(ms-dos windows-nt cygwin))
366 ;; Don't bother adding another name if we're just
367 ;; building bootstrap-emacs.
368 (equal (nth 3 command-line-args) "bootstrap")
369 (equal (nth 4 command-line-args) "bootstrap")))
370 (let ((name (concat "emacs-" emacs-version)))
371 (while (string-match "[^-+_.a-zA-Z0-9]+" name)
372 (setq name (concat (downcase (substring name 0 (match-beginning 0)))
373 "-"
374 (substring name (match-end 0)))))
375 (message "Adding name %s" name)
376 (add-name-to-file "emacs" name t)))
377 (kill-emacs)))
378
379 ;; Avoid error if user loads some more libraries now.
380 (setq purify-flag nil)
381
382 ;; For machines with CANNOT_DUMP defined in config.h,
383 ;; this file must be loaded each time Emacs is run.
384 ;; So run the startup code now. First, remove `-l loadup' from args.
385
386 (if (and (equal (nth 1 command-line-args) "-l")
387 (equal (nth 2 command-line-args) "loadup"))
388 (setcdr command-line-args (nthcdr 3 command-line-args)))
389
390 (eval top-level)
391
392 \f
393 ;; Local Variables:
394 ;; no-byte-compile: t
395 ;; no-update-autoloads: t
396 ;; End:
397
398 ;; arch-tag: 121e1dd4-36e1-45ac-860e-239f577a6335
399 ;;; loadup.el ends here