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