Add a comment giving version of obsolescence.
[bpt/emacs.git] / lisp / loadup.el
... / ...
CommitLineData
1;;; loadup.el --- load up standardly loaded Lisp files for Emacs
2
3;; Copyright (C) 1985, 1986, 1992, 1994, 2001, 2002, 2003,
4;; 2004, 2005, 2006, 2007, 2008 Free Software Foundation, Inc.
5
6;; Maintainer: FSF
7;; Keywords: internal
8
9;; This file is part of GNU Emacs.
10
11;; GNU Emacs is free software; you can redistribute it and/or modify
12;; it under the terms of the GNU General Public License as published by
13;; the Free Software Foundation; either version 3, or (at your option)
14;; any later version.
15
16;; GNU Emacs is distributed in the hope that it will be useful,
17;; but WITHOUT ANY WARRANTY; without even the implied warranty of
18;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19;; GNU General Public License for more details.
20
21;; You should have received a copy of the GNU General Public License
22;; along with GNU Emacs; see the file COPYING. If not, write to the
23;; Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
24;; Boston, MA 02110-1301, USA.
25
26;;; Commentary:
27
28;; This is loaded into a bare Emacs to make a dumpable one.
29
30;;; Code:
31
32;; add subdirectories to the load-path for files that might
33;; get autoloaded when bootstrapping
34(if (or (equal (nth 3 command-line-args) "bootstrap")
35 (equal (nth 4 command-line-args) "bootstrap")
36 (equal (nth 3 command-line-args) "unidata-gen.el")
37 (equal (nth 4 command-line-args) "unidata-gen-files")
38 ;; in case CANNOT_DUMP
39 (equal (nth 0 command-line-args) "../src/bootstrap-emacs"))
40 (let ((dir (car load-path)))
41 ;; We'll probably overflow the pure space.
42 (setq purify-flag nil)
43 (setq load-path (list dir
44 (expand-file-name "emacs-lisp" dir)
45 (expand-file-name "language" dir)
46 (expand-file-name "international" dir)
47 (expand-file-name "textmodes" dir)))))
48
49(message "Using load-path %s" load-path)
50
51;; We don't want to have any undo records in the dumped Emacs.
52(set-buffer "*scratch*")
53(setq buffer-undo-list t)
54
55(load "emacs-lisp/byte-run")
56(load "emacs-lisp/backquote")
57(load "subr")
58
59;; We specify .el in case someone compiled version.el by mistake.
60(load "version.el")
61
62(load "widget")
63(load "custom")
64(load "emacs-lisp/map-ynp")
65(load "cus-start")
66(load "international/mule")
67(load "international/mule-conf.el") ;Don't get confused if someone compiled this by mistake.
68(load "env")
69(load "format")
70(load "minibuffer")
71(load "bindings")
72(setq load-source-file-function 'load-with-code-conversion)
73(load "files")
74
75(load "cus-face")
76(load "faces") ; after here, `defface' may be used.
77
78(load "button")
79(load "startup")
80
81(message "Lists of integers (garbage collection statistics) are normal output")
82(message "while building Emacs; they do not indicate a problem.")
83(message "%s" (garbage-collect))
84(load "loaddefs.el") ;Don't get confused if someone compiled this by mistake.
85(message "%s" (garbage-collect))
86(load "simple")
87
88(load "help")
89
90(load "jka-cmpr-hook")
91;; Any Emacs Lisp source file (*.el) loaded here after can contain
92;; multilingual text.
93(load "international/mule-cmds")
94(load "case-table")
95(load "international/characters")
96(load "composite")
97;; This file doesn't exist when building Emacs from CVS. It is
98;; generated just after temacs is build.
99(load "international/charprop.el" t)
100
101;; Load language-specific files.
102(load "language/chinese")
103(load "language/cyrillic")
104(load "language/indian")
105(load "language/sinhala")
106(load "language/english")
107(load "language/ethiopic")
108(load "language/european")
109(load "language/czech")
110(load "language/slovak")
111(load "language/romanian")
112(load "language/greek")
113(load "language/hebrew")
114(load "language/japanese")
115(load "language/korean")
116(load "language/lao")
117(load "language/tai-viet")
118(load "language/thai")
119(load "language/tibetan")
120(load "language/vietnamese")
121(load "language/misc-lang")
122(load "language/utf-8-lang")
123(load "language/georgian")
124(load "language/khmer")
125(load "language/burmese")
126(load "language/cham")
127
128(load "indent")
129(load "window")
130(load "frame")
131(load "term/tty-colors")
132(load "font-core")
133;; facemenu must be loaded before font-lock, because `facemenu-keymap'
134;; needs to be defined when font-lock is loaded.
135(load "facemenu")
136(load "emacs-lisp/syntax")
137(load "font-lock")
138(load "jit-lock")
139
140(if (fboundp 'track-mouse)
141 (progn
142 (load "mouse")
143 (and (boundp 'x-toolkit-scroll-bars)
144 (load "scroll-bar"))
145 (load "select")))
146(load "emacs-lisp/timer")
147(load "isearch")
148(load "rfn-eshadow")
149
150(message "%s" (garbage-collect))
151(load "menu-bar")
152(load "paths.el") ;Don't get confused if someone compiled paths by mistake.
153(load "emacs-lisp/lisp")
154(load "textmodes/page")
155(load "register")
156(load "textmodes/paragraphs")
157(load "abbrev") ;lisp-mode.el uses define-abbrev-table.
158(load "emacs-lisp/lisp-mode")
159(load "textmodes/text-mode")
160(load "textmodes/fill")
161(message "%s" (garbage-collect))
162
163(load "replace")
164(if (eq system-type 'vax-vms)
165 (progn
166 (load "vmsproc")))
167(load "buff-menu")
168
169(if (fboundp 'x-create-frame)
170 (progn
171 (load "fringe")
172 (load "image")
173 (load "international/fontset")
174 (load "dnd")
175 (load "mwheel")
176 (load "tool-bar")))
177(if (featurep 'x)
178 (progn
179 (load "x-dnd")
180 (load "term/x-win")))
181
182(message "%s" (garbage-collect))
183
184(if (eq system-type 'vax-vms)
185 (progn
186 (load "vms-patch")))
187(if (eq system-type 'windows-nt)
188 (progn
189 (load "w32-vars")
190 (load "term/w32-win")
191 (load "ls-lisp")
192 (load "disp-table") ; needed to setup ibm-pc char set, see internal.el
193 (load "dos-w32")
194 (load "w32-fns")))
195(if (eq system-type 'ms-dos)
196 (progn
197 (load "ls-lisp")
198 (load "dos-w32")
199 (load "dos-fns")
200 (load "dos-vars")
201 (load "international/ccl") ; codepage.el uses CCL en/decoder
202 (load "international/codepage") ; internal.el uses cpNNN coding systems
203 (load "disp-table"))) ; needed to setup ibm-pc char set, see internal.el
204(if (eq system-type 'macos)
205 (progn
206 (load "ls-lisp")))
207(if (featurep 'mac-carbon)
208 (progn
209 (load "term/mac-win")))
210(if (fboundp 'atan) ; preload some constants and
211 (progn ; floating pt. functions if we have float support.
212 (load "emacs-lisp/float-sup")))
213(message "%s" (garbage-collect))
214
215(load "vc-hooks")
216(load "ediff-hook")
217(if (fboundp 'x-show-tip) (load "tooltip"))
218
219(message "%s" (garbage-collect))
220
221;If you want additional libraries to be preloaded and their
222;doc strings kept in the DOC file rather than in core,
223;you may load them with a "site-load.el" file.
224;But you must also cause them to be scanned when the DOC file
225;is generated. For VMS, you must edit ../vms/makedoc.com.
226;For other systems, you must edit ../src/Makefile.in.
227(if (load "site-load" t)
228 (garbage-collect))
229
230(if (fboundp 'x-popup-menu)
231 (precompute-menubar-bindings))
232;; Turn on recording of which commands get rebound,
233;; for the sake of the next call to precompute-menubar-bindings.
234(setq define-key-rebound-commands nil)
235
236;; Determine which last version number to use
237;; based on the executables that now exist.
238(if (and (or (equal (nth 3 command-line-args) "dump")
239 (equal (nth 4 command-line-args) "dump"))
240 (not (eq system-type 'ms-dos)))
241 (let* ((base (concat "emacs-" emacs-version "."))
242 (files (file-name-all-completions base default-directory))
243 (versions (mapcar (function (lambda (name)
244 (string-to-int (substring name (length base)))))
245 files)))
246 ;; `emacs-version' is a constant, so we shouldn't change it with `setq'.
247 (defconst emacs-version
248 (format "%s.%d"
249 emacs-version (if versions (1+ (apply 'max versions)) 1)))))
250
251;; Note: all compiled Lisp files loaded above this point
252;; must be among the ones parsed by make-docfile
253;; to construct DOC. Any that are not processed
254;; for DOC will not have doc strings in the dumped Emacs.
255
256(message "Finding pointers to doc strings...")
257(if (or (equal (nth 3 command-line-args) "dump")
258 (equal (nth 4 command-line-args) "dump"))
259 (let ((name emacs-version))
260 (while (string-match "[^-+_.a-zA-Z0-9]+" name)
261 (setq name (concat (downcase (substring name 0 (match-beginning 0)))
262 "-"
263 (substring name (match-end 0)))))
264 (if (memq system-type '(ms-dos windows-nt))
265 (setq name (expand-file-name
266 (if (fboundp 'x-create-frame) "DOC-X" "DOC") "../etc"))
267 (setq name (concat (expand-file-name "../etc/DOC-") name))
268 (if (file-exists-p name)
269 (delete-file name))
270 (copy-file (expand-file-name "../etc/DOC") name t))
271 (Snarf-documentation (file-name-nondirectory name)))
272 (condition-case nil
273 (Snarf-documentation "DOC")
274 (error nil)))
275(message "Finding pointers to doc strings...done")
276
277;;;Note: You can cause additional libraries to be preloaded
278;;;by writing a site-init.el that loads them.
279;;;See also "site-load" above.
280(load "site-init" t)
281(setq current-load-list nil)
282
283;; Write the value of load-history into fns-VERSION.el,
284;; then clear out load-history.
285;; (if (or (equal (nth 3 command-line-args) "dump")
286;; (equal (nth 4 command-line-args) "dump"))
287;; (let ((buffer-undo-list t))
288;; (princ "(setq load-history\n" (current-buffer))
289;; (princ " (nconc load-history\n" (current-buffer))
290;; (princ " '(" (current-buffer))
291;; (let ((tem load-history))
292;; (while tem
293;; (prin1 (car tem) (current-buffer))
294;; (terpri (current-buffer))
295;; (if (cdr tem)
296;; (princ " " (current-buffer)))
297;; (setq tem (cdr tem))))
298;; (princ ")))\n" (current-buffer))
299;; (write-region (point-min) (point-max)
300;; (expand-file-name
301;; (cond
302;; ((eq system-type 'ms-dos)
303;; "../lib-src/fns.el")
304;; ((eq system-type 'windows-nt)
305;; (format "../../../lib-src/fns-%s.el" emacs-version))
306;; (t
307;; (format "../lib-src/fns-%s.el" emacs-version)))
308;; invocation-directory))
309;; (erase-buffer)
310;; (setq load-history nil))
311;; (setq symbol-file-load-history-loaded t))
312;; We don't use this fns-*.el file. Instead we keep the data in PURE space.
313;; Make sure that the spine of the list is not in pure space because it can
314;; be destructively mutated in lread.c:build_load_history.
315(setq load-history (mapcar 'purecopy load-history))
316(setq symbol-file-load-history-loaded t)
317
318(set-buffer-modified-p nil)
319
320;; reset the load-path. See lread.c:init_lread why.
321(if (or (equal (nth 3 command-line-args) "bootstrap")
322 (equal (nth 4 command-line-args) "bootstrap"))
323 (setcdr load-path nil))
324
325(clear-charset-maps)
326(garbage-collect)
327
328;;; At this point, we're ready to resume undo recording for scratch.
329(buffer-enable-undo "*scratch*")
330
331(if (null (garbage-collect))
332 (setq pure-space-overflow t))
333
334(if (or (member (nth 3 command-line-args) '("dump" "bootstrap"))
335 (member (nth 4 command-line-args) '("dump" "bootstrap")))
336 (if (eq system-type 'vax-vms)
337 (progn
338 (message "Dumping data as file temacs.dump")
339 (dump-emacs "temacs.dump" "temacs")
340 (kill-emacs))
341 (let ((name (concat "emacs-" emacs-version)))
342 (while (string-match "[^-+_.a-zA-Z0-9]+" name)
343 (setq name (concat (downcase (substring name 0 (match-beginning 0)))
344 "-"
345 (substring name (match-end 0)))))
346 (if (memq system-type '(ms-dos windows-nt cygwin))
347 (message "Dumping under the name emacs")
348 (message "Dumping under names emacs and %s" name)))
349 (condition-case ()
350 (delete-file "emacs")
351 (file-error nil))
352 ;; We used to dump under the name xemacs, but that occasionally
353 ;; confused people installing Emacs (they'd install the file
354 ;; under the name `xemacs'), and it's inconsistent with every
355 ;; other GNU program's build process.
356 (dump-emacs "emacs" "temacs")
357 (message "%d pure bytes used" pure-bytes-used)
358 ;; Recompute NAME now, so that it isn't set when we dump.
359 (if (not (memq system-type '(ms-dos windows-nt cygwin)))
360 (let ((name (concat "emacs-" emacs-version)))
361 (while (string-match "[^-+_.a-zA-Z0-9]+" name)
362 (setq name (concat (downcase (substring name 0 (match-beginning 0)))
363 "-"
364 (substring name (match-end 0)))))
365 (add-name-to-file "emacs" name t)))
366 (kill-emacs)))
367
368;; Avoid error if user loads some more libraries now.
369(setq purify-flag nil)
370
371;; For machines with CANNOT_DUMP defined in config.h,
372;; this file must be loaded each time Emacs is run.
373;; So run the startup code now. First, remove `-l loadup' from args.
374
375(if (and (equal (nth 1 command-line-args) "-l")
376 (equal (nth 2 command-line-args) "loadup"))
377 (setcdr command-line-args (nthcdr 3 command-line-args)))
378
379(eval top-level)
380
381\f
382;; Local Variables:
383;; no-byte-compile: t
384;; no-update-autoloads: t
385;; End:
386
387;; arch-tag: 121e1dd4-36e1-45ac-860e-239f577a6335
388;;; loadup.el ends here