mm-bodies.el (mm-decode-content-transfer-encoding): Allow leading whitespace in base6...
[bpt/emacs.git] / lisp / loadup.el
CommitLineData
55535639 1;;; loadup.el --- load up standardly loaded Lisp files for Emacs
6594deb0 2
95df8112
GM
3;; Copyright (C) 1985-1986, 1992, 1994, 2001-2011
4;; Free Software Foundation, Inc.
eea8d4ef 5
e5167999 6;; Maintainer: FSF
fd7fa35a 7;; Keywords: internal
bd78fa1d 8;; Package: emacs
e5167999 9
0d20f9a0
JB
10;; This file is part of GNU Emacs.
11
eb3fa2cf 12;; GNU Emacs is free software: you can redistribute it and/or modify
0d20f9a0 13;; it under the terms of the GNU General Public License as published by
eb3fa2cf
GM
14;; the Free Software Foundation, either version 3 of the License, or
15;; (at your option) any later version.
0d20f9a0
JB
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
eb3fa2cf 23;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
0d20f9a0 24
eea8d4ef
ER
25;;; Commentary:
26
27;; This is loaded into a bare Emacs to make a dumpable one.
28
607b8307
GM
29;; If you add/remove Lisp files to be loaded here, consider the
30;; following issues:
31
4a720484
GM
32;; i) Any file loaded on any platform should appear in $lisp and
33;; $shortlisp in src/Makefile.in. Use the .el or .elc version as
607b8307
GM
34;; appropriate.
35
4a720484
GM
36;; This ensures both that the Lisp files are compiled (if necessary)
37;; before the emacs executable is dumped, and that they are passed to
38;; make-docfile. (Any that are not processed for DOC will not have
39;; doc strings in the dumped Emacs.) Because of this:
607b8307 40
4a720484 41;; ii) If the file is loaded uncompiled, it should (where possible)
607b8307
GM
42;; obey the doc-string conventions expected by make-docfile.
43
e5167999
ER
44;;; Code:
45
607b8307
GM
46;; Add subdirectories to the load-path for files that might get
47;; autoloaded when bootstrapping.
ce87039d 48(if (or (equal (nth 3 command-line-args) "bootstrap")
49fc4500 49 (equal (nth 4 command-line-args) "bootstrap")
3579a658
KH
50 (equal (nth 3 command-line-args) "unidata-gen.el")
51 (equal (nth 4 command-line-args) "unidata-gen-files")
607b8307 52 ;; In case CANNOT_DUMP.
969e684a 53 (string-match "src/bootstrap-emacs" (nth 0 command-line-args)))
ceec5b6d 54 (let ((dir (car load-path)))
397869a4
SM
55 ;; We'll probably overflow the pure space.
56 (setq purify-flag nil)
ceec5b6d
RS
57 (setq load-path (list dir
58 (expand-file-name "emacs-lisp" dir)
59 (expand-file-name "language" dir)
60 (expand-file-name "international" dir)
61 (expand-file-name "textmodes" dir)))))
ce87039d 62
e9515805
SM
63(if (eq t purify-flag)
64 ;; Hash consing saved around 11% of pure space in my tests.
65 (setq purify-flag (make-hash-table :test 'equal)))
66
8c74709f 67(message "Using load-path %s" load-path)
8c74709f 68
8c766df1
KH
69(if (or (member (nth 3 command-line-args) '("dump" "bootstrap"))
70 (member (nth 4 command-line-args) '("dump" "bootstrap")))
71 ;; To reduce the size of dumped Emacs, we avoid making huge
72 ;; char-tables.
73 (setq inhibit-load-charset-map t))
74
86db31d5 75;; We don't want to have any undo records in the dumped Emacs.
f6e43712
RS
76(set-buffer "*scratch*")
77(setq buffer-undo-list t)
0d20f9a0 78
693e59d6 79(load "emacs-lisp/byte-run")
86db31d5 80(load "emacs-lisp/backquote")
0d20f9a0 81(load "subr")
15897347 82
0e328d37
SM
83;; Do it after subr, since both after-load-functions and add-hook are
84;; implemented in subr.el.
85(add-hook 'after-load-functions '(lambda (f) (garbage-collect)))
86
15897347
RS
87;; We specify .el in case someone compiled version.el by mistake.
88(load "version.el")
89
d038ca1d 90(load "widget")
d038ca1d 91(load "custom")
693e59d6 92(load "emacs-lisp/map-ynp")
4d100a01 93(load "cus-start")
5dcd1261 94(load "international/mule")
a042de45 95(load "international/mule-conf")
911650d2 96(load "env")
8f89dc56 97(load "format")
9b73022f
RS
98(load "bindings")
99(setq load-source-file-function 'load-with-code-conversion)
0d20f9a0 100(load "files")
838d57f6 101
3fad47d8 102(load "cus-face")
d6af189a
MB
103(load "faces") ; after here, `defface' may be used.
104
d4e9f067
JL
105(load "button")
106(load "startup")
107
23c2e0e4
SM
108(condition-case nil
109 ;; Don't get confused if someone compiled this by mistake.
110 (load "loaddefs.el")
111 ;; In case loaddefs hasn't been generated yet.
112 (file-error (load "ldefs-boot.el")))
113
c82b2579 114(load "minibuffer")
e2947429 115(load "abbrev") ;lisp-mode.el and simple.el use define-abbrev-table.
3bce0243 116(load "simple")
838d57f6 117
301d6830 118(load "help")
d6af189a 119
274925df 120(load "jka-cmpr-hook")
8900c52c 121(load "epa-hook")
301d6830
GM
122;; Any Emacs Lisp source file (*.el) loaded here after can contain
123;; multilingual text.
124(load "international/mule-cmds")
125(load "case-table")
b0c654c0 126(load "international/characters")
d8b52430 127(load "composite")
33208532
GM
128;; This file doesn't exist when building a development version of Emacs
129;; from the repository. It is generated just after temacs is built.
90ce1bb9 130(load "international/charprop.el" t)
301d6830 131
8f89dc56 132;; Load language-specific files.
5e14f0f5 133(load "language/chinese")
5e14f0f5 134(load "language/cyrillic")
5e14f0f5 135(load "language/indian")
43d8c495 136(load "language/sinhala")
4366b45e 137(load "language/english")
5e14f0f5 138(load "language/ethiopic")
5e14f0f5 139(load "language/european")
c90c0be0
RS
140(load "language/czech")
141(load "language/slovak")
23e7714e 142(load "language/romanian")
5e14f0f5 143(load "language/greek")
5e14f0f5 144(load "language/hebrew")
5e14f0f5 145(load "language/japanese")
5e14f0f5 146(load "language/korean")
f35c859c 147(load "language/lao")
201bc379 148(load "language/tai-viet")
5e14f0f5 149(load "language/thai")
4366b45e 150(load "language/tibetan")
5e14f0f5 151(load "language/vietnamese")
5e14f0f5 152(load "language/misc-lang")
69c34764
DL
153(load "language/utf-8-lang")
154(load "language/georgian")
44f44190 155(load "language/khmer")
f81e37a0 156(load "language/burmese")
b03e8a93 157(load "language/cham")
86db31d5 158
0d20f9a0
JB
159(load "indent")
160(load "window")
fd727f4a 161(load "frame")
f795f633 162(load "term/tty-colors")
63a29a5d 163(load "font-core")
633537d7
LT
164;; facemenu must be loaded before font-lock, because `facemenu-keymap'
165;; needs to be defined when font-lock is loaded.
a4a19809 166(load "facemenu")
c94f08ff
DN
167(load "emacs-lisp/syntax")
168(load "font-lock")
169(load "jit-lock")
d6af189a 170
7a701b9f
KH
171(if (fboundp 'track-mouse)
172 (progn
7a701b9f 173 (load "mouse")
9315353b 174 (and (boundp 'x-toolkit-scroll-bars)
449ab688 175 (load "scroll-bar"))
36974751 176 (load "select")))
693e59d6 177(load "emacs-lisp/timer")
01c86c56 178(load "isearch")
1f423851 179(load "rfn-eshadow")
838d57f6 180
afcd9910 181(load "menu-bar")
0d20f9a0 182(load "paths.el") ;Don't get confused if someone compiled paths by mistake.
5dcd1261 183(load "emacs-lisp/lisp")
5dcd1261 184(load "textmodes/page")
0d20f9a0 185(load "register")
5dcd1261 186(load "textmodes/paragraphs")
5dcd1261 187(load "emacs-lisp/lisp-mode")
5dcd1261 188(load "textmodes/text-mode")
5dcd1261 189(load "textmodes/fill")
838d57f6 190
0d20f9a0 191(load "replace")
0d20f9a0 192(load "buff-menu")
165b0fa0
RS
193
194(if (fboundp 'x-create-frame)
195 (progn
e541cbfc 196 (load "fringe")
165b0fa0
RS
197 (load "image")
198 (load "international/fontset")
199 (load "dnd")
165b0fa0 200 (load "tool-bar")))
637fa988 201
f904c0f9
JD
202(if (featurep 'dynamic-setting)
203 (load "dynamic-setting"))
637fa988 204
165b0fa0 205(if (featurep 'x)
ddaa8057 206 (progn
9d488d86 207 (load "x-dnd")
d5e4dda5 208 (load "term/common-win")
79c3172f 209 (load "term/x-win")))
d5e4dda5 210
b7521474
RS
211(if (eq system-type 'windows-nt)
212 (progn
729f1525 213 (load "w32-vars")
d5e4dda5 214 (load "term/common-win")
ddaa8057 215 (load "term/w32-win")
b7521474 216 (load "ls-lisp")
bbe44805 217 (load "disp-table")
489f9371 218 (load "dos-w32")
63abf612 219 (load "w32-fns")))
ed10e0ab
RS
220(if (eq system-type 'ms-dos)
221 (progn
489f9371 222 (load "dos-w32")
ed10e0ab 223 (load "dos-fns")
7298263a 224 (load "dos-vars")
bbe44805
EZ
225 ;; Don't load term/common-win: it isn't appropriate for the `pc'
226 ;; ``window system'', which generally behaves like a terminal.
227 (load "term/pc-win")
228 (load "ls-lisp")
63abf612 229 (load "disp-table"))) ; needed to setup ibm-pc char set, see internal.el
601fb9b8 230(if (featurep 'ns)
725513b7
GM
231 (progn
232 (load "term/common-win")
233 (load "term/ns-win")))
ab5c0fcd
SM
234(if (fboundp 'x-create-frame)
235 ;; Do it after loading term/foo-win.el since the value of the
236 ;; mouse-wheel-*-event vars depends on those files being loaded or not.
237 (load "mwheel"))
9a0dd02d
GM
238;; Preload some constants and floating point functions.
239(load "emacs-lisp/float-sup")
e4636528 240
69f18acc
JB
241(load "vc/vc-hooks")
242(load "vc/ediff-hook")
8a902fd2 243(if (fboundp 'x-show-tip) (load "tooltip"))
165b0fa0 244
0d20f9a0
JB
245;If you want additional libraries to be preloaded and their
246;doc strings kept in the DOC file rather than in core,
247;you may load them with a "site-load.el" file.
248;But you must also cause them to be scanned when the DOC file
7c2fb837 249;is generated.
fd322fae 250;For other systems, you must edit ../src/Makefile.in.
0e328d37 251(load "site-load" t)
0d20f9a0 252
de78a7ba
RS
253;; Determine which last version number to use
254;; based on the executables that now exist.
24cffc68
RS
255(if (and (or (equal (nth 3 command-line-args) "dump")
256 (equal (nth 4 command-line-args) "dump"))
257 (not (eq system-type 'ms-dos)))
0c39a403 258 (let* ((base (concat "emacs-" emacs-version "."))
de78a7ba
RS
259 (files (file-name-all-completions base default-directory))
260 (versions (mapcar (function (lambda (name)
49093f60 261 (string-to-number (substring name (length base)))))
de78a7ba 262 files)))
86db31d5
SM
263 ;; `emacs-version' is a constant, so we shouldn't change it with `setq'.
264 (defconst emacs-version
265 (format "%s.%d"
266 emacs-version (if versions (1+ (apply 'max versions)) 1)))))
de78a7ba 267
0d20f9a0
JB
268
269(message "Finding pointers to doc strings...")
24cffc68
RS
270(if (or (equal (nth 3 command-line-args) "dump")
271 (equal (nth 4 command-line-args) "dump"))
0d20f9a0
JB
272 (let ((name emacs-version))
273 (while (string-match "[^-+_.a-zA-Z0-9]+" name)
274 (setq name (concat (downcase (substring name 0 (match-beginning 0)))
275 "-"
276 (substring name (match-end 0)))))
b7521474 277 (if (memq system-type '(ms-dos windows-nt))
87485d6f 278 (setq name (expand-file-name
753a134f 279 (if (fboundp 'x-create-frame) "DOC-X" "DOC") "../etc"))
ed10e0ab
RS
280 (setq name (concat (expand-file-name "../etc/DOC-") name))
281 (if (file-exists-p name)
282 (delete-file name))
283 (copy-file (expand-file-name "../etc/DOC") name t))
450a90e2 284 (Snarf-documentation (file-name-nondirectory name)))
ce87039d
SM
285 (condition-case nil
286 (Snarf-documentation "DOC")
287 (error nil)))
0d20f9a0
JB
288(message "Finding pointers to doc strings...done")
289
68251e16
GM
290;; Note: You can cause additional libraries to be preloaded
291;; by writing a site-init.el that loads them.
292;; See also "site-load" above.
0d20f9a0 293(load "site-init" t)
95227eb2 294(setq current-load-list nil)
c2509060 295
68251e16 296;; We keep the load-history data in PURE space.
4744f265
SM
297;; Make sure that the spine of the list is not in pure space because it can
298;; be destructively mutated in lread.c:build_load_history.
299(setq load-history (mapcar 'purecopy load-history))
4744f265 300
b7b75652 301(set-buffer-modified-p nil)
c2509060 302
ce87039d
SM
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
0e328d37
SM
308(remove-hook 'after-load-functions '(lambda (f) (garbage-collect)))
309
8c766df1 310(setq inhibit-load-charset-map nil)
5bb65bd4 311(clear-charset-maps)
0d20f9a0
JB
312(garbage-collect)
313
0e328d37 314;; At this point, we're ready to resume undo recording for scratch.
ffd56f97
JB
315(buffer-enable-undo "*scratch*")
316
e9515805
SM
317;; Avoid error if user loads some more libraries now and make sure the
318;; hash-consing hash table is GC'd.
319(setq purify-flag nil)
320
6a4803ec
RS
321(if (null (garbage-collect))
322 (setq pure-space-overflow t))
323
ce87039d
SM
324(if (or (member (nth 3 command-line-args) '("dump" "bootstrap"))
325 (member (nth 4 command-line-args) '("dump" "bootstrap")))
7c2fb837 326 (progn
fc46d219
SM
327 (if (memq system-type '(ms-dos windows-nt cygwin))
328 (message "Dumping under the name emacs")
329 (message "Dumping under the name emacs"))
0d20f9a0 330 (condition-case ()
59f3e9a2 331 (delete-file "emacs")
0d20f9a0 332 (file-error nil))
59f3e9a2
JB
333 ;; We used to dump under the name xemacs, but that occasionally
334 ;; confused people installing Emacs (they'd install the file
335 ;; under the name `xemacs'), and it's inconsistent with every
0f4b266c 336 ;; other GNU program's build process.
59f3e9a2 337 (dump-emacs "emacs" "temacs")
4d337390 338 (message "%d pure bytes used" pure-bytes-used)
0d20f9a0 339 ;; Recompute NAME now, so that it isn't set when we dump.
2e306b39 340 (if (not (or (memq system-type '(ms-dos windows-nt))
fc46d219
SM
341 ;; Don't bother adding another name if we're just
342 ;; building bootstrap-emacs.
343 (equal (nth 3 command-line-args) "bootstrap")
344 (equal (nth 4 command-line-args) "bootstrap")))
ed10e0ab
RS
345 (let ((name (concat "emacs-" emacs-version)))
346 (while (string-match "[^-+_.a-zA-Z0-9]+" name)
347 (setq name (concat (downcase (substring name 0 (match-beginning 0)))
348 "-"
349 (substring name (match-end 0)))))
fc46d219 350 (message "Adding name %s" name)
ed10e0ab 351 (add-name-to-file "emacs" name t)))
0d20f9a0
JB
352 (kill-emacs)))
353
0d20f9a0
JB
354;; For machines with CANNOT_DUMP defined in config.h,
355;; this file must be loaded each time Emacs is run.
7fa26c0a 356;; So run the startup code now. First, remove `-l loadup' from args.
0d20f9a0 357
7fa26c0a
KH
358(if (and (equal (nth 1 command-line-args) "-l")
359 (equal (nth 2 command-line-args) "loadup"))
360 (setcdr command-line-args (nthcdr 3 command-line-args)))
361
362(eval top-level)
6594deb0 363
86db31d5 364\f
6e6c6aaf
SM
365;; Local Variables:
366;; no-byte-compile: t
367;; no-update-autoloads: t
368;; End:
6b61353c 369
6594deb0 370;;; loadup.el ends here