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 (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
)))))
49 (message "Using load-path %s" load-path
)
51 ;; We don't want to have any undo records in the dumped Emacs.
52 (set-buffer "*scratch*")
53 (setq buffer-undo-list t
)
55 (load "emacs-lisp/byte-run")
56 (load "emacs-lisp/backquote")
59 ;; We specify .el in case someone compiled version.el by mistake.
64 (load "emacs-lisp/map-ynp")
66 (load "international/mule")
67 (load "international/mule-conf.el") ;Don't get confused if someone compiled this by mistake.
71 (setq load-source-file-function
'load-with-code-conversion
)
75 (load "faces") ; after here, `defface' may be used.
80 (message "Lists of integers (garbage collection statistics) are normal output")
81 (message "while building Emacs; they do not indicate a problem.")
82 (message "%s" (garbage-collect))
83 (load "loaddefs.el") ;Don't get confused if someone compiled this by mistake.
84 (message "%s" (garbage-collect))
89 (load "jka-cmpr-hook")
90 ;; Any Emacs Lisp source file (*.el) loaded here after can contain
92 (load "international/mule-cmds")
94 (load "international/characters")
96 ;; This file doesn't exist when building Emacs from CVS. It is
97 ;; generated just after temacs is build.
98 (load "international/charprop.el" t
)
100 ;; Load language-specific files.
101 (load "language/chinese")
102 (load "language/cyrillic")
103 (load "language/indian")
104 (load "language/devanagari") ; This should be loaded after indian.
105 (load "language/malayalam") ; This should be loaded after indian.
106 (load "language/tamil") ; This should be loaded after indian.
107 (load "language/kannada") ; This should be loaded after indian.
108 (load "language/english")
109 (load "language/ethiopic")
110 (load "language/european")
111 (load "language/czech")
112 (load "language/slovak")
113 (load "language/romanian")
114 (load "language/greek")
115 (load "language/hebrew")
116 (load "language/japanese")
117 (load "language/korean")
118 (load "language/lao")
119 (load "language/tai-viet")
120 (load "language/thai")
121 (load "language/tibetan")
122 (load "language/vietnamese")
123 (load "language/misc-lang")
124 (load "language/utf-8-lang")
125 (load "language/georgian")
126 (load "language/khmer")
127 (load "language/burmese")
128 (load "language/cham")
133 (load "term/tty-colors")
135 ;; facemenu must be loaded before font-lock, because `facemenu-keymap'
136 ;; needs to be defined when font-lock is loaded.
138 (load "emacs-lisp/syntax")
142 (if (fboundp 'track-mouse
)
145 (and (boundp 'x-toolkit-scroll-bars
)
148 (load "emacs-lisp/timer")
152 (message "%s" (garbage-collect))
154 (load "paths.el") ;Don't get confused if someone compiled paths by mistake.
155 (load "emacs-lisp/lisp")
156 (load "textmodes/page")
158 (load "textmodes/paragraphs")
159 (load "abbrev") ;lisp-mode.el uses define-abbrev-table.
160 (load "emacs-lisp/lisp-mode")
161 (load "textmodes/text-mode")
162 (load "textmodes/fill")
163 (message "%s" (garbage-collect))
166 (if (eq system-type
'vax-vms
)
171 (if (fboundp 'x-create-frame
)
175 (load "international/fontset")
182 (load "term/x-win")))
184 (message "%s" (garbage-collect))
186 (if (eq system-type
'vax-vms
)
189 (if (eq system-type
'windows-nt
)
192 (load "term/w32-win")
194 (load "disp-table") ; needed to setup ibm-pc char set, see internal.el
197 (if (eq system-type
'ms-dos
)
203 (load "international/ccl") ; codepage.el uses CCL en/decoder
204 (load "international/codepage") ; internal.el uses cpNNN coding systems
205 (load "disp-table"))) ; needed to setup ibm-pc char set, see internal.el
206 (if (eq system-type
'macos
)
209 (if (featurep 'mac-carbon
)
211 (load "term/mac-win")))
212 (if (fboundp 'atan
) ; preload some constants and
213 (progn ; floating pt. functions if we have float support.
214 (load "emacs-lisp/float-sup")))
215 (message "%s" (garbage-collect))
219 (if (fboundp 'x-show-tip
) (load "tooltip"))
221 (message "%s" (garbage-collect))
223 ;If you want additional libraries to be preloaded and their
224 ;doc strings kept in the DOC file rather than in core,
225 ;you may load them with a "site-load.el" file.
226 ;But you must also cause them to be scanned when the DOC file
227 ;is generated. For VMS, you must edit ../vms/makedoc.com.
228 ;For other systems, you must edit ../src/Makefile.in.
229 (if (load "site-load" t
)
232 (if (fboundp 'x-popup-menu
)
233 (precompute-menubar-bindings))
234 ;; Turn on recording of which commands get rebound,
235 ;; for the sake of the next call to precompute-menubar-bindings.
236 (setq define-key-rebound-commands nil
)
238 ;; Determine which last version number to use
239 ;; based on the executables that now exist.
240 (if (and (or (equal (nth 3 command-line-args
) "dump")
241 (equal (nth 4 command-line-args
) "dump"))
242 (not (eq system-type
'ms-dos
)))
243 (let* ((base (concat "emacs-" emacs-version
"."))
244 (files (file-name-all-completions base default-directory
))
245 (versions (mapcar (function (lambda (name)
246 (string-to-int (substring name
(length base
)))))
248 ;; `emacs-version' is a constant, so we shouldn't change it with `setq'.
249 (defconst emacs-version
251 emacs-version
(if versions
(1+ (apply 'max versions
)) 1)))))
253 ;; Note: all compiled Lisp files loaded above this point
254 ;; must be among the ones parsed by make-docfile
255 ;; to construct DOC. Any that are not processed
256 ;; for DOC will not have doc strings in the dumped Emacs.
258 (message "Finding pointers to doc strings...")
259 (if (or (equal (nth 3 command-line-args
) "dump")
260 (equal (nth 4 command-line-args
) "dump"))
261 (let ((name emacs-version
))
262 (while (string-match "[^-+_.a-zA-Z0-9]+" name
)
263 (setq name
(concat (downcase (substring name
0 (match-beginning 0)))
265 (substring name
(match-end 0)))))
266 (if (memq system-type
'(ms-dos windows-nt
))
267 (setq name
(expand-file-name
268 (if (fboundp 'x-create-frame
) "DOC-X" "DOC") "../etc"))
269 (setq name
(concat (expand-file-name "../etc/DOC-") name
))
270 (if (file-exists-p name
)
272 (copy-file (expand-file-name "../etc/DOC") name t
))
273 (Snarf-documentation (file-name-nondirectory name
)))
275 (Snarf-documentation "DOC")
277 (message "Finding pointers to doc strings...done")
279 ;;;Note: You can cause additional libraries to be preloaded
280 ;;;by writing a site-init.el that loads them.
281 ;;;See also "site-load" above.
283 (setq current-load-list nil
)
285 ;; Write the value of load-history into fns-VERSION.el,
286 ;; then clear out load-history.
287 ;; (if (or (equal (nth 3 command-line-args) "dump")
288 ;; (equal (nth 4 command-line-args) "dump"))
289 ;; (let ((buffer-undo-list t))
290 ;; (princ "(setq load-history\n" (current-buffer))
291 ;; (princ " (nconc load-history\n" (current-buffer))
292 ;; (princ " '(" (current-buffer))
293 ;; (let ((tem load-history))
295 ;; (prin1 (car tem) (current-buffer))
296 ;; (terpri (current-buffer))
298 ;; (princ " " (current-buffer)))
299 ;; (setq tem (cdr tem))))
300 ;; (princ ")))\n" (current-buffer))
301 ;; (write-region (point-min) (point-max)
304 ;; ((eq system-type 'ms-dos)
305 ;; "../lib-src/fns.el")
306 ;; ((eq system-type 'windows-nt)
307 ;; (format "../../../lib-src/fns-%s.el" emacs-version))
309 ;; (format "../lib-src/fns-%s.el" emacs-version)))
310 ;; invocation-directory))
312 ;; (setq load-history nil))
313 ;; (setq symbol-file-load-history-loaded t))
314 ;; We don't use this fns-*.el file. Instead we keep the data in PURE space.
315 ;; Make sure that the spine of the list is not in pure space because it can
316 ;; be destructively mutated in lread.c:build_load_history.
317 (setq load-history
(mapcar 'purecopy load-history
))
318 (setq symbol-file-load-history-loaded t
)
320 (set-buffer-modified-p nil
)
322 ;; reset the load-path. See lread.c:init_lread why.
323 (if (or (equal (nth 3 command-line-args
) "bootstrap")
324 (equal (nth 4 command-line-args
) "bootstrap"))
325 (setcdr load-path nil
))
330 ;;; At this point, we're ready to resume undo recording for scratch.
331 (buffer-enable-undo "*scratch*")
333 (if (null (garbage-collect))
334 (setq pure-space-overflow t
))
336 (if (or (member (nth 3 command-line-args
) '("dump" "bootstrap"))
337 (member (nth 4 command-line-args
) '("dump" "bootstrap")))
338 (if (eq system-type
'vax-vms
)
340 (message "Dumping data as file temacs.dump")
341 (dump-emacs "temacs.dump" "temacs")
343 (let ((name (concat "emacs-" emacs-version
)))
344 (while (string-match "[^-+_.a-zA-Z0-9]+" name
)
345 (setq name
(concat (downcase (substring name
0 (match-beginning 0)))
347 (substring name
(match-end 0)))))
348 (if (memq system-type
'(ms-dos windows-nt cygwin
))
349 (message "Dumping under the name emacs")
350 (message "Dumping under names emacs and %s" name
)))
352 (delete-file "emacs")
354 ;; We used to dump under the name xemacs, but that occasionally
355 ;; confused people installing Emacs (they'd install the file
356 ;; under the name `xemacs'), and it's inconsistent with every
357 ;; other GNU program's build process.
358 (dump-emacs "emacs" "temacs")
359 (message "%d pure bytes used" pure-bytes-used
)
360 ;; Recompute NAME now, so that it isn't set when we dump.
361 (if (not (memq system-type
'(ms-dos windows-nt cygwin
)))
362 (let ((name (concat "emacs-" emacs-version
)))
363 (while (string-match "[^-+_.a-zA-Z0-9]+" name
)
364 (setq name
(concat (downcase (substring name
0 (match-beginning 0)))
366 (substring name
(match-end 0)))))
367 (add-name-to-file "emacs" name t
)))
370 ;; Avoid error if user loads some more libraries now.
371 (setq purify-flag nil
)
373 ;; For machines with CANNOT_DUMP defined in config.h,
374 ;; this file must be loaded each time Emacs is run.
375 ;; So run the startup code now. First, remove `-l loadup' from args.
377 (if (and (equal (nth 1 command-line-args
) "-l")
378 (equal (nth 2 command-line-args
) "loadup"))
379 (setcdr command-line-args
(nthcdr 3 command-line-args
)))
385 ;;; no-byte-compile: t
386 ;;; no-update-autoloads: t
389 ;;; arch-tag: 121e1dd4-36e1-45ac-860e-239f577a6335
390 ;;; loadup.el ends here