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