Fix maintainer address.
[emacs.git] / lisp / loadup.el
blob86122146a6ebc96cfd83ca9105a2edfd69c96cad
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 "byte-run")
37 (load "subr")
39 ;; We specify .el in case someone compiled version.el by mistake.
40 (load "version.el")
42 (load "map-ynp")
43 (load "widget")
44 (load "custom")
45 (load "cus-start")
46 (load "international/mule")
47 (load "international/mule-conf.el") ;Don't get confused if someone compiled this by mistake.
48 (load "format")
49 (load "bindings")
50 (setq load-source-file-function 'load-with-code-conversion)
51 (load "simple")
52 (load "help")
53 (load "files")
54 ;; Any Emacs Lisp source file (*.el) loaded here after can contain
55 ;; multilingual text.
56 (load "international/mule-cmds")
57 (load "case-table")
58 (load "international/characters")
60 (message "Lists of integers (garbage collection statistics) are normal output")
61 (message "while building Emacs; they do not indicate a problem.")
62 (message "%s" (garbage-collect))
63 (load "loaddefs.el") ;Don't get confused if someone compiled this by mistake.
64 (message "%s" (garbage-collect))
66 (let ((set-case-syntax-set-multibyte t))
67 (load "international/latin-1")
68 (load "international/latin-2")
69 (load "international/latin-3")
70 (load "international/latin-4")
71 (load "international/latin-5"))
72 ;; Load language-specific files.
73 (load "language/chinese")
74 (load "language/cyrillic")
75 (load "language/indian")
76 (load "language/devanagari") ; This should be loaded after indian.
77 (load "language/english")
78 (load "language/ethiopic")
79 (load "language/european")
80 (load "language/czech")
81 (load "language/slovak")
82 (load "language/romanian")
83 (load "language/greek")
84 (load "language/hebrew")
85 (load "language/japanese")
86 (load "language/korean")
87 (load "language/lao")
88 (load "language/thai")
89 (load "language/tibetan")
90 (load "language/vietnamese")
91 (load "language/misc-lang")
92 (update-coding-systems-internal)
94 (load "indent")
95 (load "isearch")
96 (load "window")
97 (load "frame")
98 (load "faces")
99 (if (fboundp 'frame-face-alist)
100 (progn
101 (load "facemenu")))
102 (if (fboundp 'track-mouse)
103 (progn
104 (load "mouse")
105 (and (boundp 'x-toolkit-scroll-bars-p)
106 (load "scroll-bar"))
107 (load "select")))
109 (message "%s" (garbage-collect))
110 (load "menu-bar")
111 (load "paths.el") ;Don't get confused if someone compiled paths by mistake.
112 (load "startup")
113 (load "emacs-lisp/lisp")
114 (load "textmodes/page")
115 (load "register")
116 (load "textmodes/paragraphs")
117 (load "emacs-lisp/lisp-mode")
118 (load "textmodes/text-mode")
119 (load "textmodes/fill")
120 (message "%s" (garbage-collect))
122 (load "replace")
123 (if (eq system-type 'vax-vms)
124 (progn
125 (load "vmsproc")))
126 (load "abbrev")
127 (load "buff-menu")
128 (if (eq system-type 'vax-vms)
129 (progn
130 (load "vms-patch")))
131 (if (eq system-type 'windows-nt)
132 (progn
133 (load "ls-lisp")
134 (load "disp-table") ; needed to setup ibm-pc char set, see internal.el
135 (load "dos-w32")
136 (load "w32-fns")))
137 (if (eq system-type 'ms-dos)
138 (progn
139 (load "ls-lisp")
140 (load "dos-w32")
141 (load "dos-fns")
142 (load "dos-vars")
143 (load "international/ccl") ; for cpNNN coding systems in codepage.el
144 (load "international/codepage") ; internal.el uses cpNNN coding systems
145 (load "disp-table"))) ; needed to setup ibm-pc char set, see internal.el
146 (if (fboundp 'atan) ; preload some constants and
147 (progn ; floating pt. functions if we have float support.
148 (load "float-sup")))
149 (message "%s" (garbage-collect))
151 (load "vc-hooks")
152 (load "ediff-hook")
153 (message "%s" (garbage-collect))
155 ;If you want additional libraries to be preloaded and their
156 ;doc strings kept in the DOC file rather than in core,
157 ;you may load them with a "site-load.el" file.
158 ;But you must also cause them to be scanned when the DOC file
159 ;is generated. For VMS, you must edit ../vms/makedoc.com.
160 ;For other systems, you must edit ../src/Makefile.in.
161 (if (load "site-load" t)
162 (garbage-collect))
164 (if (fboundp 'x-popup-menu)
165 (precompute-menubar-bindings))
166 ;; Turn on recording of which commands get rebound,
167 ;; for the sake of the next call to precompute-menubar-bindings.
168 (setq define-key-rebound-commands nil)
170 ;; Determine which last version number to use
171 ;; based on the executables that now exist.
172 (if (and (or (equal (nth 3 command-line-args) "dump")
173 (equal (nth 4 command-line-args) "dump"))
174 (not (eq system-type 'ms-dos)))
175 (let* ((base (concat "emacs-" emacs-version "."))
176 (files (file-name-all-completions base default-directory))
177 (versions (mapcar (function (lambda (name)
178 (string-to-int (substring name (length base)))))
179 files)))
180 (setq emacs-version (format "%s.%d"
181 emacs-version
182 (if versions
183 (1+ (apply 'max versions))
184 1)))))
186 ;; Note: all compiled Lisp files loaded above this point
187 ;; must be among the ones parsed by make-docfile
188 ;; to construct DOC. Any that are not processed
189 ;; for DOC will not have doc strings in the dumped Emacs.
191 (message "Finding pointers to doc strings...")
192 (if (or (equal (nth 3 command-line-args) "dump")
193 (equal (nth 4 command-line-args) "dump"))
194 (let ((name emacs-version))
195 (while (string-match "[^-+_.a-zA-Z0-9]+" name)
196 (setq name (concat (downcase (substring name 0 (match-beginning 0)))
198 (substring name (match-end 0)))))
199 (if (memq system-type '(ms-dos windows-nt))
200 (setq name (expand-file-name
201 (if (fboundp 'x-create-frame) "DOC-X" "DOC") "../etc"))
202 (setq name (concat (expand-file-name "../etc/DOC-") name))
203 (if (file-exists-p name)
204 (delete-file name))
205 (copy-file (expand-file-name "../etc/DOC") name t))
206 (Snarf-documentation (file-name-nondirectory name)))
207 (Snarf-documentation "DOC"))
208 (message "Finding pointers to doc strings...done")
210 ;;;Note: You can cause additional libraries to be preloaded
211 ;;;by writing a site-init.el that loads them.
212 ;;;See also "site-load" above.
213 (load "site-init" t)
214 (setq current-load-list nil)
216 ;; Write the value of load-history into fns-VERSION.el,
217 ;; then clear out load-history.
218 (if (or (equal (nth 3 command-line-args) "dump")
219 (equal (nth 4 command-line-args) "dump"))
220 (let ((buffer-undo-list t))
221 (princ "(setq load-history\n" (current-buffer))
222 (princ " (nconc load-history\n" (current-buffer))
223 (princ " '(" (current-buffer))
224 (let ((tem load-history))
225 (while tem
226 (prin1 (car tem) (current-buffer))
227 (terpri (current-buffer))
228 (if (cdr tem)
229 (princ " " (current-buffer)))
230 (setq tem (cdr tem))))
231 (princ ")))\n" (current-buffer))
232 (write-region (point-min) (point-max)
233 (expand-file-name
234 (cond
235 ((eq system-type 'ms-dos)
236 "../lib-src/fns.el")
237 ((eq system-type 'windows-nt)
238 (format "../../../lib-src/fns-%s.el" emacs-version))
240 (format "../lib-src/fns-%s.el" emacs-version)))
241 invocation-directory))
242 (erase-buffer)
243 (setq load-history nil))
244 (setq symbol-file-load-history-loaded t))
245 (set-buffer-modified-p nil)
247 (garbage-collect)
249 ;;; At this point, we're ready to resume undo recording for scratch.
250 (buffer-enable-undo "*scratch*")
252 (if (or (equal (nth 3 command-line-args) "dump")
253 (equal (nth 4 command-line-args) "dump"))
254 (if (eq system-type 'vax-vms)
255 (progn
256 (message "Dumping data as file temacs.dump")
257 (dump-emacs "temacs.dump" "temacs")
258 (kill-emacs))
259 (let ((name (concat "emacs-" emacs-version)))
260 (while (string-match "[^-+_.a-zA-Z0-9]+" name)
261 (setq name (concat (downcase (substring name 0 (match-beginning 0)))
263 (substring name (match-end 0)))))
264 (if (eq system-type 'ms-dos)
265 (message "Dumping under the name emacs")
266 (message "Dumping under names emacs and %s" name)))
267 (condition-case ()
268 (delete-file "emacs")
269 (file-error nil))
270 ;; We used to dump under the name xemacs, but that occasionally
271 ;; confused people installing Emacs (they'd install the file
272 ;; under the name `xemacs'), and it's inconsistent with every
273 ;; other GNU program's build process.
274 (dump-emacs "emacs" "temacs")
275 (message "%d pure bytes used" pure-bytes-used)
276 ;; Recompute NAME now, so that it isn't set when we dump.
277 (if (not (memq system-type '(ms-dos windows-nt)))
278 (let ((name (concat "emacs-" emacs-version)))
279 (while (string-match "[^-+_.a-zA-Z0-9]+" name)
280 (setq name (concat (downcase (substring name 0 (match-beginning 0)))
282 (substring name (match-end 0)))))
283 (add-name-to-file "emacs" name t)))
284 (kill-emacs)))
286 ;; Avoid error if user loads some more libraries now.
287 (setq purify-flag nil)
289 ;; For machines with CANNOT_DUMP defined in config.h,
290 ;; this file must be loaded each time Emacs is run.
291 ;; So run the startup code now. First, remove `-l loadup' from args.
293 (if (and (equal (nth 1 command-line-args) "-l")
294 (equal (nth 2 command-line-args) "loadup"))
295 (setcdr command-line-args (nthcdr 3 command-line-args)))
297 (eval top-level)
299 ;;; loadup.el ends here