new version
[emacs.git] / lisp / loadup.el
blobb6651a5e97040975db851bf3441ff4129231a4b8
1 ;;; loadup.el --- load up standardly loaded Lisp files for Emacs.
3 ;; Copyright (C) 1985, 1986, 1992, 1994 Free Software Foundation, Inc.
5 ;; Maintainer: FSF
6 ;; Keywords: internal
8 ;; This file is part of GNU Emacs.
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
12 ;; the Free Software Foundation; either version 2, or (at your option)
13 ;; any later version.
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.
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 the
22 ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330,
23 ;; Boston, MA 02111-1307, USA.
25 ;;; Commentary:
27 ;; This is loaded into a bare Emacs to make a dumpable one.
29 ;;; Code:
31 (message "Using load-path %s" load-path)
33 ;;; We don't want to have any undo records in the dumped Emacs.
34 (buffer-disable-undo "*scratch*")
36 (load "subr")
38 ;; We specify .el in case someone compiled version.el by mistake.
39 (load "version.el")
41 (garbage-collect)
42 (load "byte-run")
43 (garbage-collect)
44 (load "map-ynp")
45 (garbage-collect)
46 (load "widget")
47 (garbage-collect)
48 (load "custom")
49 (load "cus-start")
50 (garbage-collect)
51 (load "loaddefs.el") ;Don't get confused if someone compiled this by mistake.
52 (garbage-collect)
53 (load "mule")
54 (garbage-collect)
55 (load "mule-conf.el") ;Don't get confused if someone compiled this by mistake.
56 (garbage-collect)
57 (load "bindings")
58 (setq load-source-file-function 'load-with-code-conversion)
59 (garbage-collect)
60 (load "simple")
61 (garbage-collect)
62 (load "help")
63 (garbage-collect)
64 (load "files")
65 (garbage-collect)
66 (load "format")
67 ;; Any Emacs Lisp source file (*.el) loaded here after can contain
68 ;; multilingual text.
69 (garbage-collect)
70 (load "mule-cmds")
71 (garbage-collect)
72 (load "characters")
73 (garbage-collect)
74 (load "case-table")
75 (let ((set-case-syntax-set-multibyte t))
76 (load "latin-1")
77 (load "latin-2")
78 (load "latin-3")
79 (load "latin-4"))
80 (garbage-collect)
81 ;; Load langauge specific files.
82 (load "language/chinese")
83 (garbage-collect)
84 (load "language/cyrillic")
85 (garbage-collect)
86 (load "language/indian")
87 (garbage-collect)
88 (load "language/devanagari") ; This should be loaded after indian.
89 (garbage-collect)
90 (load "language/english")
91 (garbage-collect)
92 (load "language/ethiopic")
93 (garbage-collect)
94 (load "language/european")
95 (garbage-collect)
96 (load "language/greek")
97 (garbage-collect)
98 (load "language/hebrew")
99 (garbage-collect)
100 (load "language/japanese")
101 (garbage-collect)
102 (load "language/korean")
103 (garbage-collect)
104 (load "language/lao")
105 (garbage-collect)
106 (load "language/thai")
107 (garbage-collect)
108 (load "language/tibetan")
109 (garbage-collect)
110 (load "language/vietnamese")
111 (garbage-collect)
112 (load "language/misc-lang")
113 (garbage-collect)
114 (load "indent")
115 (garbage-collect)
116 (load "isearch")
117 (garbage-collect)
118 (load "window")
119 (garbage-collect)
120 (load "frame")
121 (garbage-collect)
122 (load "faces")
123 (if (fboundp 'frame-face-alist)
124 (progn
125 (load "facemenu")))
126 (if (fboundp 'track-mouse)
127 (progn
128 (garbage-collect)
129 (load "mouse")
130 (garbage-collect)
131 (load "scroll-bar")
132 (load "select")))
133 (load "menu-bar")
134 (garbage-collect)
135 (load "paths.el") ;Don't get confused if someone compiled paths by mistake.
136 (garbage-collect)
137 (load "startup")
138 (garbage-collect)
139 (load "lisp")
140 (garbage-collect)
141 (load "page")
142 (garbage-collect)
143 (load "register")
144 (garbage-collect)
145 (load "paragraphs")
146 (garbage-collect)
147 (load "lisp-mode")
148 (garbage-collect)
149 (load "text-mode")
150 (garbage-collect)
151 (load "fill")
152 (garbage-collect)
153 (load "replace")
154 (if (eq system-type 'vax-vms)
155 (progn
156 (garbage-collect)
157 (load "vmsproc")))
158 (garbage-collect)
159 (load "abbrev")
160 (garbage-collect)
161 (load "buff-menu")
162 (if (eq system-type 'vax-vms)
163 (progn
164 (garbage-collect)
165 (load "vms-patch")))
166 (if (eq system-type 'windows-nt)
167 (progn
168 (garbage-collect)
169 (load "ls-lisp")
170 (garbage-collect)
171 (load "disp-table") ; needed to setup ibm-pc char set, see internal.el
172 (garbage-collect)
173 (load "dos-w32")
174 (garbage-collect)
175 (load "w32-fns")
176 (garbage-collect)))
177 (if (eq system-type 'ms-dos)
178 (progn
179 (load "ls-lisp")
180 (garbage-collect)
181 (load "dos-w32")
182 (garbage-collect)
183 (load "dos-fns")
184 (garbage-collect)
185 (load "disp-table") ; needed to setup ibm-pc char set, see internal.el
186 (garbage-collect)))
187 (if (fboundp 'atan) ; preload some constants and
188 (progn ; floating pt. functions if
189 (garbage-collect) ; we have float support.
190 (load "float-sup")))
192 (garbage-collect)
193 (load "vc-hooks")
194 (load "ediff-hook")
196 ;If you want additional libraries to be preloaded and their
197 ;doc strings kept in the DOC file rather than in core,
198 ;you may load them with a "site-load.el" file.
199 ;But you must also cause them to be scanned when the DOC file
200 ;is generated. For VMS, you must edit ../vms/makedoc.com.
201 ;For other systems, you must edit ../src/Makefile.in.
202 (if (load "site-load" t)
203 (garbage-collect))
205 (if (fboundp 'x-popup-menu)
206 (precompute-menubar-bindings))
207 ;; Turn on recording of which commands get rebound,
208 ;; for the sake of the next call to precompute-menubar-bindings.
209 (setq define-key-rebound-commands nil)
211 ;; Determine which last version number to use
212 ;; based on the executables that now exist.
213 (if (and (or (equal (nth 3 command-line-args) "dump")
214 (equal (nth 4 command-line-args) "dump"))
215 (not (eq system-type 'ms-dos)))
216 (let* ((base (concat "emacs-" emacs-version "."))
217 (files (file-name-all-completions base default-directory))
218 (versions (mapcar (function (lambda (name)
219 (string-to-int (substring name (length base)))))
220 files)))
221 (setq emacs-version (format "%s.%d"
222 emacs-version
223 (if versions
224 (1+ (apply 'max versions))
225 1)))))
227 ;; Note: all compiled Lisp files loaded above this point
228 ;; must be among the ones parsed by make-docfile
229 ;; to construct DOC. Any that are not processed
230 ;; for DOC will not have doc strings in the dumped Emacs.
232 (message "Finding pointers to doc strings...")
233 (if (or (equal (nth 3 command-line-args) "dump")
234 (equal (nth 4 command-line-args) "dump"))
235 (let ((name emacs-version))
236 (while (string-match "[^-+_.a-zA-Z0-9]+" name)
237 (setq name (concat (downcase (substring name 0 (match-beginning 0)))
239 (substring name (match-end 0)))))
240 (if (memq system-type '(ms-dos windows-nt))
241 (setq name (expand-file-name
242 (if (fboundp 'x-create-frame) "DOC-X" "DOC") "../etc"))
243 (setq name (concat (expand-file-name "../etc/DOC-") name))
244 (if (file-exists-p name)
245 (delete-file name))
246 (copy-file (expand-file-name "../etc/DOC") name t))
247 (Snarf-documentation (file-name-nondirectory name)))
248 (Snarf-documentation "DOC"))
249 (message "Finding pointers to doc strings...done")
251 ;Note: You can cause additional libraries to be preloaded
252 ;by writing a site-init.el that loads them.
253 ;See also "site-load" above.
254 (load "site-init" t)
255 (setq current-load-list nil)
256 (garbage-collect)
258 ;;; At this point, we're ready to resume undo recording for scratch.
259 (buffer-enable-undo "*scratch*")
261 (if (or (equal (nth 3 command-line-args) "dump")
262 (equal (nth 4 command-line-args) "dump"))
263 (if (eq system-type 'vax-vms)
264 (progn
265 (message "Dumping data as file temacs.dump")
266 (dump-emacs "temacs.dump" "temacs")
267 (kill-emacs))
268 (let ((name (concat "emacs-" emacs-version)))
269 (while (string-match "[^-+_.a-zA-Z0-9]+" name)
270 (setq name (concat (downcase (substring name 0 (match-beginning 0)))
272 (substring name (match-end 0)))))
273 (if (eq system-type 'ms-dos)
274 (message "Dumping under the name emacs")
275 (message "Dumping under names emacs and %s" name)))
276 (condition-case ()
277 (delete-file "emacs")
278 (file-error nil))
279 ;; We used to dump under the name xemacs, but that occasionally
280 ;; confused people installing Emacs (they'd install the file
281 ;; under the name `xemacs'), and it's inconsistent with every
282 ;; other GNU product's build process.
283 (dump-emacs "emacs" "temacs")
284 (message "%d pure bytes used" pure-bytes-used)
285 ;; Recompute NAME now, so that it isn't set when we dump.
286 (if (not (memq system-type '(ms-dos windows-nt)))
287 (let ((name (concat "emacs-" emacs-version)))
288 (while (string-match "[^-+_.a-zA-Z0-9]+" name)
289 (setq name (concat (downcase (substring name 0 (match-beginning 0)))
291 (substring name (match-end 0)))))
292 (add-name-to-file "emacs" name t)))
293 (kill-emacs)))
295 ;; Avoid error if user loads some more libraries now.
296 (setq purify-flag nil)
298 ;; For machines with CANNOT_DUMP defined in config.h,
299 ;; this file must be loaded each time Emacs is run.
300 ;; So run the startup code now.
302 (or (equal (nth 3 command-line-args) "dump")
303 (equal (nth 4 command-line-args) "dump")
304 (progn
305 ;; Avoid loading loadup.el a second time!
306 (setq command-line-args (cdr (cdr command-line-args)))
307 (eval top-level)))
309 ;;; loadup.el ends here