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