Merge from trunk.
[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-2013 Free Software
4 ;; Foundation, Inc.
5
6 ;; Maintainer: FSF
7 ;; Keywords: internal
8 ;; Package: emacs
9
10 ;; This file is part of GNU Emacs.
11
12 ;; GNU Emacs is free software: you can redistribute it and/or modify
13 ;; it under the terms of the GNU General Public License as published by
14 ;; the Free Software Foundation, either version 3 of the License, or
15 ;; (at your option) any later version.
16
17 ;; GNU Emacs is distributed in the hope that it will be useful,
18 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
19 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20 ;; GNU General Public License for more details.
21
22 ;; You should have received a copy of the GNU General Public License
23 ;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
24
25 ;;; Commentary:
26
27 ;; This is loaded into a bare Emacs to make a dumpable one.
28
29 ;; If you add/remove Lisp files to be loaded here, consider the
30 ;; following issues:
31
32 ;; i) Any file loaded on any platform should appear in $lisp in src/lisp.mk.
33 ;; Use the .el or .elc version as appropriate.
34
35 ;; This ensures both that the Lisp files are compiled (if necessary)
36 ;; before the emacs executable is dumped, and that they are passed to
37 ;; make-docfile. (Any that are not processed for DOC will not have
38 ;; doc strings in the dumped Emacs.) Because of this:
39
40 ;; ii) If the file is loaded uncompiled, it should (where possible)
41 ;; obey the doc-string conventions expected by make-docfile. It
42 ;; should also be added to the uncompiled[] list in make-docfile.c.
43
44 ;;; Code:
45
46 ;; Add subdirectories to the load-path for files that might get
47 ;; autoloaded when bootstrapping.
48 ;; This is because PATH_DUMPLOADSEARCH is just "../lisp".
49 ;; Note that we reset load-path below just before dumping,
50 ;; since lread.c:init_lread checks for changes to load-path
51 ;; in deciding whether to modify it.
52 (if (or (equal (nth 3 command-line-args) "bootstrap")
53 (equal (nth 4 command-line-args) "bootstrap")
54 (equal (nth 3 command-line-args) "unidata-gen.el")
55 (equal (nth 4 command-line-args) "unidata-gen-files")
56 ;; In case CANNOT_DUMP.
57 (string-match "src/bootstrap-emacs" (nth 0 command-line-args)))
58 (let ((dir (car load-path)))
59 ;; We'll probably overflow the pure space.
60 (setq purify-flag nil)
61 (setq load-path (list dir
62 (expand-file-name "emacs-lisp" dir)
63 (expand-file-name "language" dir)
64 (expand-file-name "international" dir)
65 (expand-file-name "textmodes" dir)))))
66
67 (if (eq t purify-flag)
68 ;; Hash consing saved around 11% of pure space in my tests.
69 (setq purify-flag (make-hash-table :test 'equal :size 70000)))
70
71 (message "Using load-path %s" load-path)
72
73 (if (or (member (nth 3 command-line-args) '("dump" "bootstrap"))
74 (member (nth 4 command-line-args) '("dump" "bootstrap")))
75 ;; To reduce the size of dumped Emacs, we avoid making huge
76 ;; char-tables.
77 (setq inhibit-load-charset-map t))
78
79 ;; We don't want to have any undo records in the dumped Emacs.
80 (set-buffer "*scratch*")
81 (setq buffer-undo-list t)
82
83 (load "emacs-lisp/byte-run")
84 (load "emacs-lisp/backquote")
85 (load "subr")
86
87 ;; Do it after subr, since both after-load-functions and add-hook are
88 ;; implemented in subr.el.
89 (add-hook 'after-load-functions (lambda (f) (garbage-collect)))
90
91 (load "version")
92
93 (load "widget")
94 (load "custom")
95 (load "emacs-lisp/map-ynp")
96 (load "international/mule")
97 (load "international/mule-conf")
98 (load "env")
99 (load "format")
100 (load "bindings")
101 (load "cus-start")
102 (load "window") ; Needed here for `replace-buffer-in-windows'.
103 (setq load-source-file-function 'load-with-code-conversion)
104 (load "files")
105
106 ;; Load-time macro-expansion can only take effect after setting
107 ;; load-source-file-function because of where it is called in lread.c.
108 (load "emacs-lisp/macroexp")
109 (if (byte-code-function-p (symbol-function 'macroexpand-all))
110 nil
111 ;; Since loaddefs is not yet loaded, macroexp's uses of pcase will simply
112 ;; fail until pcase is explicitly loaded. This also means that we have to
113 ;; disable eager macro-expansion while loading pcase.
114 (let ((macroexp--pending-eager-loads '(skip)))
115 (load "emacs-lisp/pcase"))
116 ;; Re-load macroexp so as to eagerly macro-expand its uses of pcase.
117 (load "emacs-lisp/macroexp"))
118
119 (load "cus-face")
120 (load "faces") ; after here, `defface' may be used.
121
122 (load "button")
123 (load "startup")
124
125 ;; We don't want to store loaddefs.el in the repository because it is
126 ;; a generated file; but it is required in order to compile the lisp files.
127 ;; When bootstrapping, we cannot generate loaddefs.el until an
128 ;; emacs binary has been built. We therefore compromise and keep
129 ;; ldefs-boot.el in the repository. This does not need to be updated
130 ;; as often as the real loaddefs.el would. Bootstrap should always
131 ;; work with ldefs-boot.el. Therefore, Whenever a new autoload cookie
132 ;; gets added that is necessary during bootstrapping, ldefs-boot.el
133 ;; should be updated by overwriting it with an up-to-date copy of
134 ;; loaddefs.el that is uncorrupted by local changes.
135 ;; autogen/update_autogen can be used to periodically update ldefs-boot.
136 (condition-case nil
137 ;; Don't get confused if someone compiled this by mistake.
138 (load "loaddefs.el")
139 ;; In case loaddefs hasn't been generated yet.
140 (file-error (load "ldefs-boot.el")))
141
142 (load "minibuffer")
143 (load "abbrev") ;lisp-mode.el and simple.el use define-abbrev-table.
144 (load "simple")
145
146 (load "help")
147
148 (load "jka-cmpr-hook")
149 (load "epa-hook")
150 ;; Any Emacs Lisp source file (*.el) loaded here after can contain
151 ;; multilingual text.
152 (load "international/mule-cmds")
153 (load "case-table")
154 ;; This file doesn't exist when building a development version of Emacs
155 ;; from the repository. It is generated just after temacs is built.
156 (load "international/charprop.el" t)
157 (load "international/characters")
158 (load "composite")
159
160 ;; Load language-specific files.
161 (load "language/chinese")
162 (load "language/cyrillic")
163 (load "language/indian")
164 (load "language/sinhala")
165 (load "language/english")
166 (load "language/ethiopic")
167 (load "language/european")
168 (load "language/czech")
169 (load "language/slovak")
170 (load "language/romanian")
171 (load "language/greek")
172 (load "language/hebrew")
173 (load "language/japanese")
174 (load "language/korean")
175 (load "language/lao")
176 (load "language/tai-viet")
177 (load "language/thai")
178 (load "language/tibetan")
179 (load "language/vietnamese")
180 (load "language/misc-lang")
181 (load "language/utf-8-lang")
182 (load "language/georgian")
183 (load "language/khmer")
184 (load "language/burmese")
185 (load "language/cham")
186
187 (load "indent")
188 (load "frame")
189 (load "term/tty-colors")
190 (load "font-core")
191 ;; facemenu must be loaded before font-lock, because `facemenu-keymap'
192 ;; needs to be defined when font-lock is loaded.
193 (load "facemenu")
194 (load "emacs-lisp/syntax")
195 (load "font-lock")
196 (load "jit-lock")
197
198 (if (fboundp 'track-mouse)
199 (progn
200 (load "mouse")
201 (and (boundp 'x-toolkit-scroll-bars)
202 (load "scroll-bar"))
203 (load "select")))
204 (load "emacs-lisp/timer")
205 (load "isearch")
206 (load "rfn-eshadow")
207
208 (load "menu-bar")
209 (load "emacs-lisp/lisp")
210 (load "textmodes/page")
211 (load "register")
212 (load "textmodes/paragraphs")
213 (load "progmodes/prog-mode")
214 (load "emacs-lisp/lisp-mode")
215 (load "textmodes/text-mode")
216 (load "textmodes/fill")
217 (load "newcomment")
218
219 (load "replace")
220 (load "emacs-lisp/tabulated-list")
221 (load "buff-menu")
222
223 (if (fboundp 'x-create-frame)
224 (progn
225 (load "fringe")
226 ;; Needed by `imagemagick-register-types'
227 (load "emacs-lisp/regexp-opt")
228 (load "image")
229 (load "international/fontset")
230 (load "dnd")
231 (load "tool-bar")))
232
233 (if (featurep 'dynamic-setting)
234 (load "dynamic-setting"))
235
236 (if (featurep 'x)
237 (progn
238 (load "x-dnd")
239 (load "term/common-win")
240 (load "term/x-win")))
241
242 (if (or (eq system-type 'windows-nt)
243 (featurep 'w32))
244 (progn
245 (load "term/common-win")
246 (load "w32-vars")
247 (load "term/w32-win")
248 (load "disp-table")
249 (load "w32-common-fns")
250 (when (eq system-type 'windows-nt)
251 (load "w32-fns")
252 (load "ls-lisp")
253 (load "dos-w32"))))
254 (if (eq system-type 'ms-dos)
255 (progn
256 (load "dos-w32")
257 (load "dos-fns")
258 (load "dos-vars")
259 ;; Don't load term/common-win: it isn't appropriate for the `pc'
260 ;; ``window system'', which generally behaves like a terminal.
261 (load "term/internal")
262 (load "term/pc-win")
263 (load "ls-lisp")
264 (load "disp-table"))) ; needed to setup ibm-pc char set, see internal.el
265 (if (featurep 'ns)
266 (progn
267 (load "term/common-win")
268 (load "term/ns-win")))
269 (if (fboundp 'x-create-frame)
270 ;; Do it after loading term/foo-win.el since the value of the
271 ;; mouse-wheel-*-event vars depends on those files being loaded or not.
272 (load "mwheel"))
273 ;; Preload some constants and floating point functions.
274 (load "emacs-lisp/float-sup")
275
276 (load "vc/vc-hooks")
277 (load "vc/ediff-hook")
278 (if (fboundp 'x-show-tip) (load "tooltip"))
279
280 ;If you want additional libraries to be preloaded and their
281 ;doc strings kept in the DOC file rather than in core,
282 ;you may load them with a "site-load.el" file.
283 ;But you must also cause them to be scanned when the DOC file
284 ;is generated.
285 ;For other systems, you must edit ../src/Makefile.in.
286 (load "site-load" t)
287
288 ;; Determine which last version number to use
289 ;; based on the executables that now exist.
290 (if (and (or (equal (nth 3 command-line-args) "dump")
291 (equal (nth 4 command-line-args) "dump"))
292 (not (eq system-type 'ms-dos)))
293 (let* ((base (concat "emacs-" emacs-version "."))
294 (exelen (if (eq system-type 'windows-nt) -4))
295 (files (file-name-all-completions base default-directory))
296 (versions (mapcar (function
297 (lambda (name)
298 (string-to-number
299 (substring name (length base) exelen))))
300 files)))
301 (setq emacs-bzr-version (condition-case nil (emacs-bzr-get-version)
302 (error nil)))
303 ;; `emacs-version' is a constant, so we shouldn't change it with `setq'.
304 (defconst emacs-version
305 (format "%s.%d"
306 emacs-version (if versions (1+ (apply 'max versions)) 1)))))
307
308
309 (message "Finding pointers to doc strings...")
310 (if (or (equal (nth 3 command-line-args) "dump")
311 (equal (nth 4 command-line-args) "dump"))
312 (Snarf-documentation "DOC")
313 (condition-case nil
314 (Snarf-documentation "DOC")
315 (error nil)))
316 (message "Finding pointers to doc strings...done")
317
318 ;; Note: You can cause additional libraries to be preloaded
319 ;; by writing a site-init.el that loads them.
320 ;; See also "site-load" above.
321 (load "site-init" t)
322 (setq current-load-list nil)
323
324 ;; We keep the load-history data in PURE space.
325 ;; Make sure that the spine of the list is not in pure space because it can
326 ;; be destructively mutated in lread.c:build_load_history.
327 (setq load-history (mapcar 'purecopy load-history))
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 (remove-hook 'after-load-functions (lambda (f) (garbage-collect)))
337
338 (setq inhibit-load-charset-map nil)
339 (clear-charset-maps)
340 (garbage-collect)
341
342 ;; At this point, we're ready to resume undo recording for scratch.
343 (buffer-enable-undo "*scratch*")
344
345 (when (hash-table-p purify-flag)
346 (let ((strings 0)
347 (vectors 0)
348 (bytecodes 0)
349 (conses 0)
350 (others 0))
351 (maphash (lambda (k v)
352 (cond
353 ((stringp k) (setq strings (1+ strings)))
354 ((vectorp k) (setq vectors (1+ vectors)))
355 ((consp k) (setq conses (1+ conses)))
356 ((byte-code-function-p v) (setq bytecodes (1+ bytecodes)))
357 (t (setq others (1+ others)))))
358 purify-flag)
359 (message "Pure-hashed: %d strings, %d vectors, %d conses, %d bytecodes, %d others"
360 strings vectors conses bytecodes others)))
361
362 ;; Avoid error if user loads some more libraries now and make sure the
363 ;; hash-consing hash table is GC'd.
364 (setq purify-flag nil)
365
366 (if (null (garbage-collect))
367 (setq pure-space-overflow t))
368
369 (if (or (member (nth 3 command-line-args) '("dump" "bootstrap"))
370 (member (nth 4 command-line-args) '("dump" "bootstrap")))
371 (progn
372 (message "Dumping under the name emacs")
373 (condition-case ()
374 (delete-file "emacs")
375 (file-error nil))
376 ;; We used to dump under the name xemacs, but that occasionally
377 ;; confused people installing Emacs (they'd install the file
378 ;; under the name `xemacs'), and it's inconsistent with every
379 ;; other GNU program's build process.
380 (dump-emacs "emacs" "temacs")
381 (message "%d pure bytes used" pure-bytes-used)
382 ;; Recompute NAME now, so that it isn't set when we dump.
383 (if (not (or (eq system-type 'ms-dos)
384 ;; Don't bother adding another name if we're just
385 ;; building bootstrap-emacs.
386 (equal (nth 3 command-line-args) "bootstrap")
387 (equal (nth 4 command-line-args) "bootstrap")))
388 (let ((name (concat "emacs-" emacs-version))
389 (exe (if (eq system-type 'windows-nt) ".exe" "")))
390 (while (string-match "[^-+_.a-zA-Z0-9]+" name)
391 (setq name (concat (downcase (substring name 0 (match-beginning 0)))
392 "-"
393 (substring name (match-end 0)))))
394 (setq name (concat name exe))
395 (message "Adding name %s" name)
396 ;; When this runs on Windows, invocation-directory is not
397 ;; necessarily the current directory.
398 (add-name-to-file (expand-file-name (concat "emacs" exe)
399 invocation-directory)
400 (expand-file-name name invocation-directory)
401 t)))
402 (kill-emacs)))
403
404 ;; For machines with CANNOT_DUMP defined in config.h,
405 ;; this file must be loaded each time Emacs is run.
406 ;; So run the startup code now. First, remove `-l loadup' from args.
407
408 (if (and (equal (nth 1 command-line-args) "-l")
409 (equal (nth 2 command-line-args) "loadup"))
410 (setcdr command-line-args (nthcdr 3 command-line-args)))
411
412 (eval top-level)
413
414 \f
415 ;; Local Variables:
416 ;; no-byte-compile: t
417 ;; no-update-autoloads: t
418 ;; End:
419
420 ;;; loadup.el ends here