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