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