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