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