1 ;;; loadup.el --- load up standardly loaded Lisp files for Emacs
3 ;; Copyright (C) 1985, 1986, 1992, 1994, 2001, 2002, 2003,
4 ;; 2004, 2005, 2006, 2007, 2008 Free Software Foundation, Inc.
9 ;; This file is part of GNU Emacs.
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)
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.
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.
28 ;; This is loaded into a bare Emacs to make a dumpable one.
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 ;; in case CANNOT_DUMP
37 (equal (nth 0 command-line-args
) "../src/bootstrap-emacs"))
38 (let ((dir (car load-path
)))
39 ;; We'll probably overflow the pure space.
40 (setq purify-flag nil
)
41 (setq load-path
(list dir
42 (expand-file-name "emacs-lisp" dir
)
43 (expand-file-name "language" dir
)
44 (expand-file-name "international" dir
)
45 (expand-file-name "textmodes" dir
)))))
47 (message "Using load-path %s" load-path
)
49 ;; We don't want to have any undo records in the dumped Emacs.
50 (set-buffer "*scratch*")
51 (setq buffer-undo-list t
)
53 (load "emacs-lisp/byte-run")
54 (load "emacs-lisp/backquote")
57 ;; We specify .el in case someone compiled version.el by mistake.
62 (load "emacs-lisp/map-ynp")
64 (load "international/mule")
65 (load "international/mule-conf.el") ;Don't get confused if someone compiled this by mistake.
69 (setq load-source-file-function
'load-with-code-conversion
)
73 (load "faces") ; after here, `defface' may be used.
78 (message "Lists of integers (garbage collection statistics) are normal output")
79 (message "while building Emacs; they do not indicate a problem.")
80 (message "%s" (garbage-collect))
81 (load "loaddefs.el") ;Don't get confused if someone compiled this by mistake.
82 (message "%s" (garbage-collect))
87 (load "jka-cmpr-hook")
88 ;; Any Emacs Lisp source file (*.el) loaded here after can contain
90 (load "international/mule-cmds")
92 (load "international/utf-8")
93 (load "international/utf-16")
94 (load "international/characters")
96 (let ((set-case-syntax-set-multibyte t
))
97 (load "international/latin-1")
98 (load "international/latin-2")
99 (load "international/latin-3")
100 (load "international/latin-4")
101 (load "international/latin-5")
102 (load "international/latin-8")
103 (load "international/latin-9"))
104 ;; Load language-specific files.
105 (load "language/chinese")
106 (load "language/cyrillic")
107 (load "language/indian")
108 (load "language/devanagari") ; This should be loaded after indian.
109 (load "language/malayalam") ; This should be loaded after indian.
110 (load "language/tamil") ; This should be loaded after indian.
111 (load "language/kannada") ; This should be loaded after indian.
112 (load "language/english")
113 (load "language/ethiopic")
114 (load "language/european")
115 (load "language/czech")
116 (load "language/slovak")
117 (load "language/romanian")
118 (load "language/greek")
119 (load "language/hebrew")
120 (load "language/japanese")
121 (load "language/korean")
122 (load "language/lao")
123 (load "language/thai")
124 (load "language/tibetan")
125 (load "language/vietnamese")
126 (load "language/misc-lang")
127 (load "language/utf-8-lang")
128 (load "language/georgian")
130 (load "international/ucs-tables")
132 (update-coding-systems-internal)
137 (load "term/tty-colors")
139 ;; facemenu must be loaded before font-lock, because `facemenu-keymap'
140 ;; needs to be defined when font-lock is loaded.
142 (load "emacs-lisp/syntax")
146 (if (fboundp 'track-mouse
)
149 (and (boundp 'x-toolkit-scroll-bars
)
152 (load "emacs-lisp/timer")
156 (message "%s" (garbage-collect))
158 (load "paths.el") ;Don't get confused if someone compiled paths by mistake.
159 (load "emacs-lisp/lisp")
160 (load "textmodes/page")
162 (load "textmodes/paragraphs")
163 (load "abbrev") ;lisp-mode.el uses define-abbrev-table.
164 (load "emacs-lisp/lisp-mode")
165 (load "textmodes/text-mode")
166 (load "textmodes/fill")
167 (message "%s" (garbage-collect))
170 (if (eq system-type
'vax-vms
)
175 (if (fboundp 'x-create-frame
)
179 (load "international/fontset")
186 (load "term/x-win")))
188 (message "%s" (garbage-collect))
190 (if (eq system-type
'vax-vms
)
193 (if (eq system-type
'windows-nt
)
195 (load "international/ccl")
196 (load "international/code-pages")
198 (load "term/w32-win")
200 (load "disp-table") ; needed to setup ibm-pc char set, see internal.el
203 (if (eq system-type
'ms-dos
)
209 (load "international/ccl") ; codepage.el uses CCL en/decoder
210 (load "international/codepage") ; internal.el uses cpNNN coding systems
211 (load "disp-table"))) ; needed to setup ibm-pc char set, see internal.el
212 (if (eq system-type
'macos
)
215 (if (featurep 'mac-carbon
)
217 (load "term/mac-win")))
218 (if (fboundp 'atan
) ; preload some constants and
219 (progn ; floating pt. functions if we have float support.
220 (load "emacs-lisp/float-sup")))
221 (message "%s" (garbage-collect))
225 (if (fboundp 'x-show-tip
) (load "tooltip"))
227 (message "%s" (garbage-collect))
229 ;If you want additional libraries to be preloaded and their
230 ;doc strings kept in the DOC file rather than in core,
231 ;you may load them with a "site-load.el" file.
232 ;But you must also cause them to be scanned when the DOC file
233 ;is generated. For VMS, you must edit ../vms/makedoc.com.
234 ;For other systems, you must edit ../src/Makefile.in.
235 (if (load "site-load" t
)
238 (if (fboundp 'x-popup-menu
)
239 (precompute-menubar-bindings))
240 ;; Turn on recording of which commands get rebound,
241 ;; for the sake of the next call to precompute-menubar-bindings.
242 (setq define-key-rebound-commands nil
)
244 ;; Determine which last version number to use
245 ;; based on the executables that now exist.
246 (if (and (or (equal (nth 3 command-line-args
) "dump")
247 (equal (nth 4 command-line-args
) "dump"))
248 (not (eq system-type
'ms-dos
)))
249 (let* ((base (concat "emacs-" emacs-version
"."))
250 (files (file-name-all-completions base default-directory
))
251 (versions (mapcar (function (lambda (name)
252 (string-to-int (substring name
(length base
)))))
254 ;; `emacs-version' is a constant, so we shouldn't change it with `setq'.
255 (defconst emacs-version
257 emacs-version
(if versions
(1+ (apply 'max versions
)) 1)))))
259 ;; Note: all compiled Lisp files loaded above this point
260 ;; must be among the ones parsed by make-docfile
261 ;; to construct DOC. Any that are not processed
262 ;; for DOC will not have doc strings in the dumped Emacs.
264 (message "Finding pointers to doc strings...")
265 (if (or (equal (nth 3 command-line-args
) "dump")
266 (equal (nth 4 command-line-args
) "dump"))
267 (let ((name emacs-version
))
268 (while (string-match "[^-+_.a-zA-Z0-9]+" name
)
269 (setq name
(concat (downcase (substring name
0 (match-beginning 0)))
271 (substring name
(match-end 0)))))
272 (if (memq system-type
'(ms-dos windows-nt
))
273 (setq name
(expand-file-name
274 (if (fboundp 'x-create-frame
) "DOC-X" "DOC") "../etc"))
275 (setq name
(concat (expand-file-name "../etc/DOC-") name
))
276 (if (file-exists-p name
)
278 (copy-file (expand-file-name "../etc/DOC") name t
))
279 (Snarf-documentation (file-name-nondirectory name
)))
281 (Snarf-documentation "DOC")
283 (message "Finding pointers to doc strings...done")
285 ;;;Note: You can cause additional libraries to be preloaded
286 ;;;by writing a site-init.el that loads them.
287 ;;;See also "site-load" above.
289 (setq current-load-list nil
)
291 ;; Write the value of load-history into fns-VERSION.el,
292 ;; then clear out load-history.
293 ;; (if (or (equal (nth 3 command-line-args) "dump")
294 ;; (equal (nth 4 command-line-args) "dump"))
295 ;; (let ((buffer-undo-list t))
296 ;; (princ "(setq load-history\n" (current-buffer))
297 ;; (princ " (nconc load-history\n" (current-buffer))
298 ;; (princ " '(" (current-buffer))
299 ;; (let ((tem load-history))
301 ;; (prin1 (car tem) (current-buffer))
302 ;; (terpri (current-buffer))
304 ;; (princ " " (current-buffer)))
305 ;; (setq tem (cdr tem))))
306 ;; (princ ")))\n" (current-buffer))
307 ;; (write-region (point-min) (point-max)
310 ;; ((eq system-type 'ms-dos)
311 ;; "../lib-src/fns.el")
312 ;; ((eq system-type 'windows-nt)
313 ;; (format "../../../lib-src/fns-%s.el" emacs-version))
315 ;; (format "../lib-src/fns-%s.el" emacs-version)))
316 ;; invocation-directory))
318 ;; (setq load-history nil))
319 ;; (setq symbol-file-load-history-loaded t))
320 ;; We don't use this fns-*.el file. Instead we keep the data in PURE space.
321 ;; Make sure that the spine of the list is not in pure space because it can
322 ;; be destructively mutated in lread.c:build_load_history.
323 (setq load-history
(mapcar 'purecopy load-history
))
324 (setq symbol-file-load-history-loaded t
)
326 (set-buffer-modified-p nil
)
328 ;; reset the load-path. See lread.c:init_lread why.
329 (if (or (equal (nth 3 command-line-args
) "bootstrap")
330 (equal (nth 4 command-line-args
) "bootstrap"))
331 (setcdr load-path nil
))
335 ;;; At this point, we're ready to resume undo recording for scratch.
336 (buffer-enable-undo "*scratch*")
338 (if (null (garbage-collect))
339 (setq pure-space-overflow t
))
341 (if (or (member (nth 3 command-line-args
) '("dump" "bootstrap"))
342 (member (nth 4 command-line-args
) '("dump" "bootstrap")))
343 (if (eq system-type
'vax-vms
)
345 (message "Dumping data as file temacs.dump")
346 (dump-emacs "temacs.dump" "temacs")
348 (let ((name (concat "emacs-" emacs-version
)))
349 (while (string-match "[^-+_.a-zA-Z0-9]+" name
)
350 (setq name
(concat (downcase (substring name
0 (match-beginning 0)))
352 (substring name
(match-end 0)))))
353 (if (memq system-type
'(ms-dos windows-nt cygwin
))
354 (message "Dumping under the name emacs")
355 (message "Dumping under names emacs and %s" name
)))
357 (delete-file "emacs")
359 ;; We used to dump under the name xemacs, but that occasionally
360 ;; confused people installing Emacs (they'd install the file
361 ;; under the name `xemacs'), and it's inconsistent with every
362 ;; other GNU program's build process.
363 (dump-emacs "emacs" "temacs")
364 (message "%d pure bytes used" pure-bytes-used
)
365 ;; Recompute NAME now, so that it isn't set when we dump.
366 (if (not (memq system-type
'(ms-dos windows-nt cygwin
)))
367 (let ((name (concat "emacs-" emacs-version
)))
368 (while (string-match "[^-+_.a-zA-Z0-9]+" name
)
369 (setq name
(concat (downcase (substring name
0 (match-beginning 0)))
371 (substring name
(match-end 0)))))
372 (add-name-to-file "emacs" name t
)))
375 ;; Avoid error if user loads some more libraries now.
376 (setq purify-flag nil
)
378 ;; For machines with CANNOT_DUMP defined in config.h,
379 ;; this file must be loaded each time Emacs is run.
380 ;; So run the startup code now. First, remove `-l loadup' from args.
382 (if (and (equal (nth 1 command-line-args
) "-l")
383 (equal (nth 2 command-line-args
) "loadup"))
384 (setcdr command-line-args
(nthcdr 3 command-line-args
)))
390 ;;; no-byte-compile: t
391 ;;; no-update-autoloads: t
394 ;;; arch-tag: 121e1dd4-36e1-45ac-860e-239f577a6335
395 ;;; loadup.el ends here