*** empty log message ***
[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
ce87039d
SM
31;; add subdirectories to the load-path for files that might
32;; get autoloaded when bootstrapping
33(if (or (equal (nth 3 command-line-args) "bootstrap")
49fc4500
KR
34 (equal (nth 4 command-line-args) "bootstrap")
35 ;; in case CANNOT_DUMP
36 (equal (nth 0 command-line-args) "../src/bootstrap-emacs"))
ce87039d
SM
37 (let ((path (car load-path)))
38 (setq load-path (list path
39 (expand-file-name "emacs-lisp" path)
40 (expand-file-name "international" path)))))
41
8c74709f 42(message "Using load-path %s" load-path)
8c74709f 43
ffd56f97
JB
44;;; We don't want to have any undo records in the dumped Emacs.
45(buffer-disable-undo "*scratch*")
0d20f9a0 46
8f89dc56 47(load "byte-run")
0d20f9a0 48(load "subr")
15897347
RS
49
50;; We specify .el in case someone compiled version.el by mistake.
51(load "version.el")
52
d038ca1d 53(load "widget")
d038ca1d 54(load "custom")
ce87039d
SM
55(autoload '\` "emacs-lisp/backquote" nil nil 'macro)
56(load "map-ynp")
b27f23c1 57(load "env")
4d100a01 58(load "cus-start")
5dcd1261 59(load "international/mule")
5dcd1261 60(load "international/mule-conf.el") ;Don't get confused if someone compiled this by mistake.
8f89dc56 61(load "format")
9b73022f
RS
62(load "bindings")
63(setq load-source-file-function 'load-with-code-conversion)
0d20f9a0 64(load "simple")
0d20f9a0 65(load "files")
838d57f6 66
6f76277f
RS
67(message "Lists of integers (garbage collection statistics) are normal output")
68(message "while building Emacs; they do not indicate a problem.")
838d57f6
RS
69(message "%s" (garbage-collect))
70(load "loaddefs.el") ;Don't get confused if someone compiled this by mistake.
71(message "%s" (garbage-collect))
72
301d6830
GM
73(load "help")
74;; Any Emacs Lisp source file (*.el) loaded here after can contain
75;; multilingual text.
76(load "international/mule-cmds")
77(load "case-table")
78(load "international/characters")
79
939f6e3f 80(let ((set-case-syntax-set-multibyte t))
5dcd1261
RS
81 (load "international/latin-1")
82 (load "international/latin-2")
83 (load "international/latin-3")
84 (load "international/latin-4")
902e7be8
DL
85 (load "international/latin-5")
86 (load "international/latin-8")
87 (load "international/latin-9"))
8f89dc56 88;; Load language-specific files.
5e14f0f5 89(load "language/chinese")
5e14f0f5 90(load "language/cyrillic")
5e14f0f5 91(load "language/indian")
ba114d2f 92(load "language/devanagari") ; This should be loaded after indian.
4366b45e 93(load "language/english")
5e14f0f5 94(load "language/ethiopic")
5e14f0f5 95(load "language/european")
c90c0be0
RS
96(load "language/czech")
97(load "language/slovak")
23e7714e 98(load "language/romanian")
5e14f0f5 99(load "language/greek")
5e14f0f5 100(load "language/hebrew")
5e14f0f5 101(load "language/japanese")
5e14f0f5 102(load "language/korean")
f35c859c 103(load "language/lao")
5e14f0f5 104(load "language/thai")
4366b45e 105(load "language/tibetan")
5e14f0f5 106(load "language/vietnamese")
5e14f0f5 107(load "language/misc-lang")
4298d95e 108(update-coding-systems-internal)
838d57f6 109
0d20f9a0
JB
110(load "indent")
111(load "window")
fd727f4a 112(load "frame")
f795f633 113(load "term/tty-colors")
06b296ce 114(load "faces")
7a701b9f
KH
115(if (fboundp 'frame-face-alist)
116 (progn
7a701b9f
KH
117 (load "facemenu")))
118(if (fboundp 'track-mouse)
119 (progn
7a701b9f 120 (load "mouse")
449ab688
EZ
121 (and (boundp 'x-toolkit-scroll-bars-p)
122 (load "scroll-bar"))
36974751 123 (load "select")))
01c86c56 124(load "isearch")
838d57f6
RS
125
126(message "%s" (garbage-collect))
afcd9910 127(load "menu-bar")
0d20f9a0 128(load "paths.el") ;Don't get confused if someone compiled paths by mistake.
0d20f9a0 129(load "startup")
5dcd1261 130(load "emacs-lisp/lisp")
5dcd1261 131(load "textmodes/page")
0d20f9a0 132(load "register")
5dcd1261 133(load "textmodes/paragraphs")
5dcd1261 134(load "emacs-lisp/lisp-mode")
5dcd1261 135(load "textmodes/text-mode")
5dcd1261 136(load "textmodes/fill")
838d57f6
RS
137(message "%s" (garbage-collect))
138
0d20f9a0
JB
139(load "replace")
140(if (eq system-type 'vax-vms)
141 (progn
0d20f9a0 142 (load "vmsproc")))
0d20f9a0 143(load "abbrev")
0d20f9a0
JB
144(load "buff-menu")
145(if (eq system-type 'vax-vms)
146 (progn
0d20f9a0 147 (load "vms-patch")))
b7521474
RS
148(if (eq system-type 'windows-nt)
149 (progn
b7521474 150 (load "ls-lisp")
234ae99a 151 (load "disp-table") ; needed to setup ibm-pc char set, see internal.el
489f9371 152 (load "dos-w32")
63abf612 153 (load "w32-fns")))
ed10e0ab
RS
154(if (eq system-type 'ms-dos)
155 (progn
156 (load "ls-lisp")
489f9371 157 (load "dos-w32")
ed10e0ab 158 (load "dos-fns")
7298263a 159 (load "dos-vars")
aea543b4
EZ
160 (load "international/ccl") ; for cpNNN coding systems in codepage.el
161 (load "international/codepage") ; internal.el uses cpNNN coding systems
63abf612 162 (load "disp-table"))) ; needed to setup ibm-pc char set, see internal.el
0d20f9a0 163(if (fboundp 'atan) ; preload some constants and
63abf612 164 (progn ; floating pt. functions if we have float support.
0d20f9a0 165 (load "float-sup")))
838d57f6 166(message "%s" (garbage-collect))
e4636528 167
637a8ae9 168(load "vc-hooks")
a63926db 169(load "ediff-hook")
838d57f6 170(message "%s" (garbage-collect))
0d20f9a0
JB
171
172;If you want additional libraries to be preloaded and their
173;doc strings kept in the DOC file rather than in core,
174;you may load them with a "site-load.el" file.
175;But you must also cause them to be scanned when the DOC file
87855006 176;is generated. For VMS, you must edit ../vms/makedoc.com.
fd322fae 177;For other systems, you must edit ../src/Makefile.in.
0d20f9a0
JB
178(if (load "site-load" t)
179 (garbage-collect))
180
f5263a5c
RS
181(if (fboundp 'x-popup-menu)
182 (precompute-menubar-bindings))
183;; Turn on recording of which commands get rebound,
184;; for the sake of the next call to precompute-menubar-bindings.
185(setq define-key-rebound-commands nil)
186
de78a7ba
RS
187;; Determine which last version number to use
188;; based on the executables that now exist.
24cffc68
RS
189(if (and (or (equal (nth 3 command-line-args) "dump")
190 (equal (nth 4 command-line-args) "dump"))
191 (not (eq system-type 'ms-dos)))
0c39a403 192 (let* ((base (concat "emacs-" emacs-version "."))
de78a7ba
RS
193 (files (file-name-all-completions base default-directory))
194 (versions (mapcar (function (lambda (name)
9b04b1b7 195 (string-to-int (substring name (length base)))))
de78a7ba
RS
196 files)))
197 (setq emacs-version (format "%s.%d"
198 emacs-version
7120d5c8
RS
199 (if versions
200 (1+ (apply 'max versions))
201 1)))))
de78a7ba 202
0d20f9a0
JB
203;; Note: all compiled Lisp files loaded above this point
204;; must be among the ones parsed by make-docfile
205;; to construct DOC. Any that are not processed
206;; for DOC will not have doc strings in the dumped Emacs.
207
208(message "Finding pointers to doc strings...")
24cffc68
RS
209(if (or (equal (nth 3 command-line-args) "dump")
210 (equal (nth 4 command-line-args) "dump"))
0d20f9a0
JB
211 (let ((name emacs-version))
212 (while (string-match "[^-+_.a-zA-Z0-9]+" name)
213 (setq name (concat (downcase (substring name 0 (match-beginning 0)))
214 "-"
215 (substring name (match-end 0)))))
b7521474 216 (if (memq system-type '(ms-dos windows-nt))
87485d6f 217 (setq name (expand-file-name
753a134f 218 (if (fboundp 'x-create-frame) "DOC-X" "DOC") "../etc"))
ed10e0ab
RS
219 (setq name (concat (expand-file-name "../etc/DOC-") name))
220 (if (file-exists-p name)
221 (delete-file name))
222 (copy-file (expand-file-name "../etc/DOC") name t))
450a90e2 223 (Snarf-documentation (file-name-nondirectory name)))
ce87039d
SM
224 (condition-case nil
225 (Snarf-documentation "DOC")
226 (error nil)))
0d20f9a0
JB
227(message "Finding pointers to doc strings...done")
228
0f4b266c
KH
229;;;Note: You can cause additional libraries to be preloaded
230;;;by writing a site-init.el that loads them.
231;;;See also "site-load" above.
0d20f9a0 232(load "site-init" t)
95227eb2 233(setq current-load-list nil)
c2509060 234
b7b75652
AS
235;; Write the value of load-history into fns-VERSION.el,
236;; then clear out load-history.
684c38fc
RS
237(if (or (equal (nth 3 command-line-args) "dump")
238 (equal (nth 4 command-line-args) "dump"))
239 (let ((buffer-undo-list t))
240 (princ "(setq load-history\n" (current-buffer))
241 (princ " (nconc load-history\n" (current-buffer))
242 (princ " '(" (current-buffer))
243 (let ((tem load-history))
244 (while tem
245 (prin1 (car tem) (current-buffer))
246 (terpri (current-buffer))
247 (if (cdr tem)
248 (princ " " (current-buffer)))
249 (setq tem (cdr tem))))
250 (princ ")))\n" (current-buffer))
251 (write-region (point-min) (point-max)
252 (expand-file-name
253 (cond
254 ((eq system-type 'ms-dos)
255 "../lib-src/fns.el")
256 ((eq system-type 'windows-nt)
257 (format "../../../lib-src/fns-%s.el" emacs-version))
258 (t
259 (format "../lib-src/fns-%s.el" emacs-version)))
260 invocation-directory))
261 (erase-buffer)
262 (setq load-history nil))
263 (setq symbol-file-load-history-loaded t))
b7b75652 264(set-buffer-modified-p nil)
c2509060 265
ce87039d
SM
266;; reset the load-path. See lread.c:init_lread why.
267(if (or (equal (nth 3 command-line-args) "bootstrap")
268 (equal (nth 4 command-line-args) "bootstrap"))
269 (setcdr load-path nil))
270
0d20f9a0
JB
271(garbage-collect)
272
ffd56f97
JB
273;;; At this point, we're ready to resume undo recording for scratch.
274(buffer-enable-undo "*scratch*")
275
ce87039d
SM
276(if (or (member (nth 3 command-line-args) '("dump" "bootstrap"))
277 (member (nth 4 command-line-args) '("dump" "bootstrap")))
0d20f9a0
JB
278 (if (eq system-type 'vax-vms)
279 (progn
280 (message "Dumping data as file temacs.dump")
281 (dump-emacs "temacs.dump" "temacs")
282 (kill-emacs))
283 (let ((name (concat "emacs-" emacs-version)))
284 (while (string-match "[^-+_.a-zA-Z0-9]+" name)
285 (setq name (concat (downcase (substring name 0 (match-beginning 0)))
286 "-"
287 (substring name (match-end 0)))))
ed10e0ab
RS
288 (if (eq system-type 'ms-dos)
289 (message "Dumping under the name emacs")
290 (message "Dumping under names emacs and %s" name)))
0d20f9a0 291 (condition-case ()
59f3e9a2 292 (delete-file "emacs")
0d20f9a0 293 (file-error nil))
59f3e9a2
JB
294 ;; We used to dump under the name xemacs, but that occasionally
295 ;; confused people installing Emacs (they'd install the file
296 ;; under the name `xemacs'), and it's inconsistent with every
0f4b266c 297 ;; other GNU program's build process.
59f3e9a2 298 (dump-emacs "emacs" "temacs")
4d337390 299 (message "%d pure bytes used" pure-bytes-used)
0d20f9a0 300 ;; Recompute NAME now, so that it isn't set when we dump.
ea3e2043 301 (if (not (memq system-type '(ms-dos windows-nt)))
ed10e0ab
RS
302 (let ((name (concat "emacs-" emacs-version)))
303 (while (string-match "[^-+_.a-zA-Z0-9]+" name)
304 (setq name (concat (downcase (substring name 0 (match-beginning 0)))
305 "-"
306 (substring name (match-end 0)))))
307 (add-name-to-file "emacs" name t)))
0d20f9a0
JB
308 (kill-emacs)))
309
310;; Avoid error if user loads some more libraries now.
311(setq purify-flag nil)
312
313;; For machines with CANNOT_DUMP defined in config.h,
314;; this file must be loaded each time Emacs is run.
7fa26c0a 315;; So run the startup code now. First, remove `-l loadup' from args.
0d20f9a0 316
7fa26c0a
KH
317(if (and (equal (nth 1 command-line-args) "-l")
318 (equal (nth 2 command-line-args) "loadup"))
319 (setcdr command-line-args (nthcdr 3 command-line-args)))
320
321(eval top-level)
6594deb0
ER
322
323;;; loadup.el ends here