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