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