(loaddefs.el): Load that much later.
[bpt/emacs.git] / lisp / loadup.el
CommitLineData
6594deb0
ER
1;;; loadup.el --- load up standardly loaded Lisp files for Emacs.
2
d733c5ec 3;; Copyright (C) 1985, 1986, 1992, 1994 Free Software Foundation, Inc.
eea8d4ef 4
e5167999 5;; Maintainer: FSF
fd7fa35a 6;; Keywords: internal
e5167999 7
0d20f9a0
JB
8;; This file is part of GNU Emacs.
9
10;; GNU Emacs is free software; you can redistribute it and/or modify
11;; it under the terms of the GNU General Public License as published by
e5167999 12;; the Free Software Foundation; either version 2, or (at your option)
0d20f9a0
JB
13;; any later version.
14
15;; GNU Emacs is distributed in the hope that it will be useful,
16;; but WITHOUT ANY WARRANTY; without even the implied warranty of
17;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18;; GNU General Public License for more details.
19
20;; You should have received a copy of the GNU General Public License
b578f267
EN
21;; along with GNU Emacs; see the file COPYING. If not, write to the
22;; Free Software Foundation, Inc., 59 Temple Place - Suite 330,
23;; Boston, MA 02111-1307, USA.
0d20f9a0 24
eea8d4ef
ER
25;;; Commentary:
26
27;; This is loaded into a bare Emacs to make a dumpable one.
28
e5167999
ER
29;;; Code:
30
8c74709f 31(message "Using load-path %s" load-path)
8c74709f 32
ffd56f97
JB
33;;; We don't want to have any undo records in the dumped Emacs.
34(buffer-disable-undo "*scratch*")
0d20f9a0
JB
35
36(load "subr")
15897347
RS
37
38;; We specify .el in case someone compiled version.el by mistake.
39(load "version.el")
40
79058860 41(garbage-collect)
70e1dad8 42(load "byte-run")
7047ec77 43(garbage-collect)
d47099af 44(load "map-ynp")
0d20f9a0 45(garbage-collect)
d038ca1d
RS
46(load "widget")
47(garbage-collect)
48(load "custom")
4d100a01 49(load "cus-start")
d038ca1d 50(garbage-collect)
5dcd1261 51(load "international/mule")
9b73022f 52(garbage-collect)
5dcd1261 53(load "international/mule-conf.el") ;Don't get confused if someone compiled this by mistake.
9b73022f
RS
54(garbage-collect)
55(load "bindings")
56(setq load-source-file-function 'load-with-code-conversion)
57(garbage-collect)
0d20f9a0
JB
58(load "simple")
59(garbage-collect)
60(load "help")
61(garbage-collect)
62(load "files")
63(garbage-collect)
5b6988a0 64(load "format")
5e14f0f5
KH
65;; Any Emacs Lisp source file (*.el) loaded here after can contain
66;; multilingual text.
67(garbage-collect)
5dcd1261 68(load "international/mule-cmds")
5e14f0f5 69(garbage-collect)
5dcd1261 70(load "international/characters")
5e14f0f5 71(garbage-collect)
939f6e3f
RS
72(load "case-table")
73(let ((set-case-syntax-set-multibyte t))
5dcd1261
RS
74 (load "international/latin-1")
75 (load "international/latin-2")
76 (load "international/latin-3")
77 (load "international/latin-4")
78 (load "international/latin-5"))
939f6e3f 79(garbage-collect)
5e14f0f5
KH
80;; Load langauge specific files.
81(load "language/chinese")
82(garbage-collect)
83(load "language/cyrillic")
84(garbage-collect)
85(load "language/indian")
86(garbage-collect)
ba114d2f 87(load "language/devanagari") ; This should be loaded after indian.
5e14f0f5 88(garbage-collect)
4366b45e
KH
89(load "language/english")
90(garbage-collect)
5e14f0f5
KH
91(load "language/ethiopic")
92(garbage-collect)
93(load "language/european")
94(garbage-collect)
95(load "language/greek")
96(garbage-collect)
97(load "language/hebrew")
98(garbage-collect)
99(load "language/japanese")
100(garbage-collect)
101(load "language/korean")
102(garbage-collect)
f35c859c
KH
103(load "language/lao")
104(garbage-collect)
5e14f0f5
KH
105(load "language/thai")
106(garbage-collect)
4366b45e
KH
107(load "language/tibetan")
108(garbage-collect)
5e14f0f5
KH
109(load "language/vietnamese")
110(garbage-collect)
111(load "language/misc-lang")
112(garbage-collect)
0d20f9a0 113(load "indent")
79058860 114(garbage-collect)
6ac403a4
RS
115(load "isearch")
116(garbage-collect)
0d20f9a0 117(load "window")
fd727f4a
RS
118(garbage-collect)
119(load "frame")
06b296ce
RS
120(garbage-collect)
121(load "faces")
7a701b9f
KH
122(if (fboundp 'frame-face-alist)
123 (progn
7a701b9f
KH
124 (load "facemenu")))
125(if (fboundp 'track-mouse)
126 (progn
127 (garbage-collect)
128 (load "mouse")
95227eb2 129 (garbage-collect)
36974751
RS
130 (load "scroll-bar")
131 (load "select")))
afcd9910 132(load "menu-bar")
79058860 133(garbage-collect)
0d20f9a0
JB
134(load "paths.el") ;Don't get confused if someone compiled paths by mistake.
135(garbage-collect)
136(load "startup")
79058860 137(garbage-collect)
5dcd1261 138(load "emacs-lisp/lisp")
0d20f9a0 139(garbage-collect)
5dcd1261 140(load "textmodes/page")
79058860 141(garbage-collect)
0d20f9a0
JB
142(load "register")
143(garbage-collect)
5dcd1261 144(load "textmodes/paragraphs")
79058860 145(garbage-collect)
5dcd1261 146(load "emacs-lisp/lisp-mode")
0d20f9a0 147(garbage-collect)
5dcd1261 148(load "textmodes/text-mode")
79058860 149(garbage-collect)
5dcd1261 150(load "textmodes/fill")
0d20f9a0 151(garbage-collect)
0d20f9a0
JB
152(load "replace")
153(if (eq system-type 'vax-vms)
154 (progn
155 (garbage-collect)
156 (load "vmsproc")))
157(garbage-collect)
158(load "abbrev")
159(garbage-collect)
160(load "buff-menu")
161(if (eq system-type 'vax-vms)
162 (progn
163 (garbage-collect)
164 (load "vms-patch")))
b7521474
RS
165(if (eq system-type 'windows-nt)
166 (progn
167 (garbage-collect)
168 (load "ls-lisp")
dd3240b7 169 (garbage-collect)
234ae99a
RS
170 (load "disp-table") ; needed to setup ibm-pc char set, see internal.el
171 (garbage-collect)
489f9371 172 (load "dos-w32")
424aad23 173 (garbage-collect)
489f9371 174 (load "w32-fns")
fa7a4531 175 (garbage-collect)))
ed10e0ab
RS
176(if (eq system-type 'ms-dos)
177 (progn
178 (load "ls-lisp")
179 (garbage-collect)
489f9371 180 (load "dos-w32")
424aad23 181 (garbage-collect)
ed10e0ab
RS
182 (load "dos-fns")
183 (garbage-collect)
184 (load "disp-table") ; needed to setup ibm-pc char set, see internal.el
fa7a4531 185 (garbage-collect)))
0d20f9a0
JB
186(if (fboundp 'atan) ; preload some constants and
187 (progn ; floating pt. functions if
188 (garbage-collect) ; we have float support.
189 (load "float-sup")))
02c33131
RS
190(garbage-collect)
191(load "loaddefs.el") ;Don't get confused if someone compiled this by mistake.
e4636528 192
637a8ae9
JB
193(garbage-collect)
194(load "vc-hooks")
a63926db 195(load "ediff-hook")
0d20f9a0
JB
196
197;If you want additional libraries to be preloaded and their
198;doc strings kept in the DOC file rather than in core,
199;you may load them with a "site-load.el" file.
200;But you must also cause them to be scanned when the DOC file
87855006 201;is generated. For VMS, you must edit ../vms/makedoc.com.
fd322fae 202;For other systems, you must edit ../src/Makefile.in.
0d20f9a0
JB
203(if (load "site-load" t)
204 (garbage-collect))
205
f5263a5c
RS
206(if (fboundp 'x-popup-menu)
207 (precompute-menubar-bindings))
208;; Turn on recording of which commands get rebound,
209;; for the sake of the next call to precompute-menubar-bindings.
210(setq define-key-rebound-commands nil)
211
de78a7ba
RS
212;; Determine which last version number to use
213;; based on the executables that now exist.
24cffc68
RS
214(if (and (or (equal (nth 3 command-line-args) "dump")
215 (equal (nth 4 command-line-args) "dump"))
216 (not (eq system-type 'ms-dos)))
0c39a403 217 (let* ((base (concat "emacs-" emacs-version "."))
de78a7ba
RS
218 (files (file-name-all-completions base default-directory))
219 (versions (mapcar (function (lambda (name)
9b04b1b7 220 (string-to-int (substring name (length base)))))
de78a7ba
RS
221 files)))
222 (setq emacs-version (format "%s.%d"
223 emacs-version
7120d5c8
RS
224 (if versions
225 (1+ (apply 'max versions))
226 1)))))
de78a7ba 227
0d20f9a0
JB
228;; Note: all compiled Lisp files loaded above this point
229;; must be among the ones parsed by make-docfile
230;; to construct DOC. Any that are not processed
231;; for DOC will not have doc strings in the dumped Emacs.
232
233(message "Finding pointers to doc strings...")
24cffc68
RS
234(if (or (equal (nth 3 command-line-args) "dump")
235 (equal (nth 4 command-line-args) "dump"))
0d20f9a0
JB
236 (let ((name emacs-version))
237 (while (string-match "[^-+_.a-zA-Z0-9]+" name)
238 (setq name (concat (downcase (substring name 0 (match-beginning 0)))
239 "-"
240 (substring name (match-end 0)))))
b7521474 241 (if (memq system-type '(ms-dos windows-nt))
87485d6f 242 (setq name (expand-file-name
753a134f 243 (if (fboundp 'x-create-frame) "DOC-X" "DOC") "../etc"))
ed10e0ab
RS
244 (setq name (concat (expand-file-name "../etc/DOC-") name))
245 (if (file-exists-p name)
246 (delete-file name))
247 (copy-file (expand-file-name "../etc/DOC") name t))
450a90e2 248 (Snarf-documentation (file-name-nondirectory name)))
ec558adc 249 (Snarf-documentation "DOC"))
0d20f9a0
JB
250(message "Finding pointers to doc strings...done")
251
252;Note: You can cause additional libraries to be preloaded
253;by writing a site-init.el that loads them.
254;See also "site-load" above.
255(load "site-init" t)
95227eb2 256(setq current-load-list nil)
0d20f9a0
JB
257(garbage-collect)
258
ffd56f97
JB
259;;; At this point, we're ready to resume undo recording for scratch.
260(buffer-enable-undo "*scratch*")
261
0d20f9a0
JB
262(if (or (equal (nth 3 command-line-args) "dump")
263 (equal (nth 4 command-line-args) "dump"))
264 (if (eq system-type 'vax-vms)
265 (progn
266 (message "Dumping data as file temacs.dump")
267 (dump-emacs "temacs.dump" "temacs")
268 (kill-emacs))
269 (let ((name (concat "emacs-" emacs-version)))
270 (while (string-match "[^-+_.a-zA-Z0-9]+" name)
271 (setq name (concat (downcase (substring name 0 (match-beginning 0)))
272 "-"
273 (substring name (match-end 0)))))
ed10e0ab
RS
274 (if (eq system-type 'ms-dos)
275 (message "Dumping under the name emacs")
276 (message "Dumping under names emacs and %s" name)))
0d20f9a0 277 (condition-case ()
59f3e9a2 278 (delete-file "emacs")
0d20f9a0 279 (file-error nil))
59f3e9a2
JB
280 ;; We used to dump under the name xemacs, but that occasionally
281 ;; confused people installing Emacs (they'd install the file
282 ;; under the name `xemacs'), and it's inconsistent with every
283 ;; other GNU product's build process.
284 (dump-emacs "emacs" "temacs")
4d337390 285 (message "%d pure bytes used" pure-bytes-used)
0d20f9a0 286 ;; Recompute NAME now, so that it isn't set when we dump.
ea3e2043 287 (if (not (memq system-type '(ms-dos windows-nt)))
ed10e0ab
RS
288 (let ((name (concat "emacs-" emacs-version)))
289 (while (string-match "[^-+_.a-zA-Z0-9]+" name)
290 (setq name (concat (downcase (substring name 0 (match-beginning 0)))
291 "-"
292 (substring name (match-end 0)))))
293 (add-name-to-file "emacs" name t)))
0d20f9a0
JB
294 (kill-emacs)))
295
296;; Avoid error if user loads some more libraries now.
297(setq purify-flag nil)
298
299;; For machines with CANNOT_DUMP defined in config.h,
300;; this file must be loaded each time Emacs is run.
301;; So run the startup code now.
302
0a4df539
RS
303(or (equal (nth 3 command-line-args) "dump")
304 (equal (nth 4 command-line-args) "dump")
305 (progn
306 ;; Avoid loading loadup.el a second time!
307 (setq command-line-args (cdr (cdr command-line-args)))
308 (eval top-level)))
6594deb0
ER
309
310;;; loadup.el ends here