(unexec): Don't print number of pure bytes used.
[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
21;; along with GNU Emacs; see the file COPYING. If not, write to
22;; the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
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
8c74709f 30(message "Using load-path %s" load-path)
8c74709f 31
ffd56f97
JB
32;;; We don't want to have any undo records in the dumped Emacs.
33(buffer-disable-undo "*scratch*")
0d20f9a0
JB
34
35(load "subr")
79058860 36(garbage-collect)
70e1dad8 37(load "byte-run")
7047ec77 38(garbage-collect)
d47099af 39(load "map-ynp")
0d20f9a0
JB
40(garbage-collect)
41(load "loaddefs.el") ;Don't get confused if someone compiled loaddefs by mistake.
42(garbage-collect)
43(load "simple")
44(garbage-collect)
45(load "help")
46(garbage-collect)
47(load "files")
48(garbage-collect)
49(load "indent")
79058860 50(garbage-collect)
0d20f9a0 51(load "window")
996896e6 52(garbage-collect)
0cc89026 53(if (fboundp 'delete-frame)
36974751
RS
54 (progn
55 (load "frame")
56 (load "mouse")
57 (garbage-collect)
95227eb2
RS
58 (load "faces")
59 (garbage-collect)
b2cd1a6e 60 (load "menu-bar")
36974751
RS
61 (load "scroll-bar")
62 (load "select")))
79058860 63(garbage-collect)
0d20f9a0
JB
64(load "paths.el") ;Don't get confused if someone compiled paths by mistake.
65(garbage-collect)
66(load "startup")
79058860 67(garbage-collect)
0d20f9a0
JB
68(load "lisp")
69(garbage-collect)
70(load "page")
79058860 71(garbage-collect)
0d20f9a0
JB
72(load "register")
73(garbage-collect)
74(load "paragraphs")
79058860 75(garbage-collect)
0d20f9a0
JB
76(load "lisp-mode")
77(garbage-collect)
78(load "text-mode")
79058860 79(garbage-collect)
0d20f9a0
JB
80(load "fill")
81(garbage-collect)
82(load "c-mode")
83(garbage-collect)
84(load "isearch")
85(garbage-collect)
86(load "replace")
87(if (eq system-type 'vax-vms)
88 (progn
89 (garbage-collect)
90 (load "vmsproc")))
91(garbage-collect)
92(load "abbrev")
93(garbage-collect)
94(load "buff-menu")
95(if (eq system-type 'vax-vms)
96 (progn
97 (garbage-collect)
98 (load "vms-patch")))
ed10e0ab
RS
99(if (eq system-type 'ms-dos)
100 (progn
101 (load "ls-lisp")
102 (garbage-collect)
ed10e0ab
RS
103 (load "dos-fns")
104 (garbage-collect)
105 (load "disp-table") ; needed to setup ibm-pc char set, see internal.el
87485d6f
MW
106 (garbage-collect)
107 (if (not (fboundp 'delete-frame))
108 (progn
109 (load "mouse")
110 (garbage-collect)
111 (load "faces")
112 (garbage-collect)))))
0d20f9a0
JB
113(if (fboundp 'atan) ; preload some constants and
114 (progn ; floating pt. functions if
115 (garbage-collect) ; we have float support.
116 (load "float-sup")))
e4636528 117
637a8ae9
JB
118(garbage-collect)
119(load "vc-hooks")
0d20f9a0 120
7d606649
RS
121;; We specify .el in case someone compiled version.el by mistake.
122(load "version.el")
123
0d20f9a0
JB
124;If you want additional libraries to be preloaded and their
125;doc strings kept in the DOC file rather than in core,
126;you may load them with a "site-load.el" file.
127;But you must also cause them to be scanned when the DOC file
87855006 128;is generated. For VMS, you must edit ../vms/makedoc.com.
31c5ee7b 129;For other systems, you must edit ../src/Makefile.in.in.
0d20f9a0
JB
130(if (load "site-load" t)
131 (garbage-collect))
132
de78a7ba
RS
133;; Determine which last version number to use
134;; based on the executables that now exist.
24cffc68
RS
135(if (and (or (equal (nth 3 command-line-args) "dump")
136 (equal (nth 4 command-line-args) "dump"))
137 (not (eq system-type 'ms-dos)))
de78a7ba
RS
138 (let* ((base (concat "emacs-" emacs-version))
139 (files (file-name-all-completions base default-directory))
140 (versions (mapcar (function (lambda (name)
141 (string-to-int (substring name (1+ (length base))))))
142 files)))
143 (setq emacs-version (format "%s.%d"
144 emacs-version
7120d5c8
RS
145 (if versions
146 (1+ (apply 'max versions))
147 1)))))
de78a7ba 148
0d20f9a0
JB
149;; Note: all compiled Lisp files loaded above this point
150;; must be among the ones parsed by make-docfile
151;; to construct DOC. Any that are not processed
152;; for DOC will not have doc strings in the dumped Emacs.
153
154(message "Finding pointers to doc strings...")
24cffc68
RS
155(if (or (equal (nth 3 command-line-args) "dump")
156 (equal (nth 4 command-line-args) "dump"))
0d20f9a0
JB
157 (let ((name emacs-version))
158 (while (string-match "[^-+_.a-zA-Z0-9]+" name)
159 (setq name (concat (downcase (substring name 0 (match-beginning 0)))
160 "-"
161 (substring name (match-end 0)))))
ed10e0ab 162 (if (eq system-type 'ms-dos)
87485d6f
MW
163 (setq name (expand-file-name
164 (if (fboundp 'make-frame) "DOC-X" "DOC") "../etc"))
ed10e0ab
RS
165 (setq name (concat (expand-file-name "../etc/DOC-") name))
166 (if (file-exists-p name)
167 (delete-file name))
168 (copy-file (expand-file-name "../etc/DOC") name t))
450a90e2 169 (Snarf-documentation (file-name-nondirectory name)))
ec558adc 170 (Snarf-documentation "DOC"))
0d20f9a0
JB
171(message "Finding pointers to doc strings...done")
172
173;Note: You can cause additional libraries to be preloaded
174;by writing a site-init.el that loads them.
175;See also "site-load" above.
176(load "site-init" t)
95227eb2 177(setq current-load-list nil)
0d20f9a0
JB
178(garbage-collect)
179
ffd56f97
JB
180;;; At this point, we're ready to resume undo recording for scratch.
181(buffer-enable-undo "*scratch*")
182
0d20f9a0
JB
183(if (or (equal (nth 3 command-line-args) "dump")
184 (equal (nth 4 command-line-args) "dump"))
185 (if (eq system-type 'vax-vms)
186 (progn
187 (message "Dumping data as file temacs.dump")
188 (dump-emacs "temacs.dump" "temacs")
189 (kill-emacs))
190 (let ((name (concat "emacs-" emacs-version)))
191 (while (string-match "[^-+_.a-zA-Z0-9]+" name)
192 (setq name (concat (downcase (substring name 0 (match-beginning 0)))
193 "-"
194 (substring name (match-end 0)))))
ed10e0ab
RS
195 (if (eq system-type 'ms-dos)
196 (message "Dumping under the name emacs")
197 (message "Dumping under names emacs and %s" name)))
0d20f9a0 198 (condition-case ()
59f3e9a2 199 (delete-file "emacs")
0d20f9a0 200 (file-error nil))
59f3e9a2
JB
201 ;; We used to dump under the name xemacs, but that occasionally
202 ;; confused people installing Emacs (they'd install the file
203 ;; under the name `xemacs'), and it's inconsistent with every
204 ;; other GNU product's build process.
205 (dump-emacs "emacs" "temacs")
0d20f9a0 206 ;; Recompute NAME now, so that it isn't set when we dump.
ed10e0ab
RS
207 (if (not (eq system-type 'ms-dos))
208 (let ((name (concat "emacs-" emacs-version)))
209 (while (string-match "[^-+_.a-zA-Z0-9]+" name)
210 (setq name (concat (downcase (substring name 0 (match-beginning 0)))
211 "-"
212 (substring name (match-end 0)))))
213 (add-name-to-file "emacs" name t)))
0d20f9a0
JB
214 (kill-emacs)))
215
216;; Avoid error if user loads some more libraries now.
217(setq purify-flag nil)
218
219;; For machines with CANNOT_DUMP defined in config.h,
220;; this file must be loaded each time Emacs is run.
221;; So run the startup code now.
222
0a4df539
RS
223(or (equal (nth 3 command-line-args) "dump")
224 (equal (nth 4 command-line-args) "dump")
225 (progn
226 ;; Avoid loading loadup.el a second time!
227 (setq command-line-args (cdr (cdr command-line-args)))
228 (eval top-level)))
6594deb0
ER
229
230;;; loadup.el ends here