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