1 ;;; loadup.el --- load up standardly loaded Lisp files for Emacs.
3 ;; Copyright (C) 1985, 1986, 1992, 1994 Free Software Foundation, Inc.
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)
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.
27 ;; This is loaded into a bare Emacs to make a dumpable one.
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*")
38 ;; We specify .el in case someone compiled version.el by mistake.
51 (load "loaddefs.el") ;Don't get confused if someone compiled this by mistake.
53 (load "international/mule")
55 (load "international/mule-conf.el") ;Don't get confused if someone compiled this by mistake.
58 (setq load-source-file-function
'load-with-code-conversion
)
67 ;; Any Emacs Lisp source file (*.el) loaded here after can contain
70 (load "international/mule-cmds")
72 (load "international/characters")
75 (let ((set-case-syntax-set-multibyte t
))
76 (load "international/latin-1")
77 (load "international/latin-2")
78 (load "international/latin-3")
79 (load "international/latin-4")
80 (load "international/latin-5"))
82 ;; Load langauge specific files.
83 (load "language/chinese")
85 (load "language/cyrillic")
87 (load "language/indian")
89 (load "language/devanagari") ; This should be loaded after indian.
91 (load "language/english")
93 (load "language/ethiopic")
95 (load "language/european")
97 (load "language/greek")
99 (load "language/hebrew")
101 (load "language/japanese")
103 (load "language/korean")
105 (load "language/lao")
107 (load "language/thai")
109 (load "language/tibetan")
111 (load "language/vietnamese")
113 (load "language/misc-lang")
124 (if (fboundp 'frame-face-alist
)
127 (if (fboundp 'track-mouse
)
136 (load "paths.el") ;Don't get confused if someone compiled paths by mistake.
140 (load "emacs-lisp/lisp")
142 (load "textmodes/page")
146 (load "textmodes/paragraphs")
148 (load "emacs-lisp/lisp-mode")
150 (load "textmodes/text-mode")
152 (load "textmodes/fill")
155 (if (eq system-type
'vax-vms
)
163 (if (eq system-type
'vax-vms
)
167 (if (eq system-type
'windows-nt
)
172 (load "disp-table") ; needed to setup ibm-pc char set, see internal.el
178 (if (eq system-type
'ms-dos
)
186 (load "disp-table") ; needed to setup ibm-pc char set, see internal.el
188 (if (fboundp 'atan
) ; preload some constants and
189 (progn ; floating pt. functions if
190 (garbage-collect) ; we have float support.
197 ;If you want additional libraries to be preloaded and their
198 ;doc strings kept in the DOC file rather than in core,
199 ;you may load them with a "site-load.el" file.
200 ;But you must also cause them to be scanned when the DOC file
201 ;is generated. For VMS, you must edit ../vms/makedoc.com.
202 ;For other systems, you must edit ../src/Makefile.in.
203 (if (load "site-load" t
)
206 (if (fboundp 'x-popup-menu
)
207 (precompute-menubar-bindings))
208 ;; Turn on recording of which commands get rebound,
209 ;; for the sake of the next call to precompute-menubar-bindings.
210 (setq define-key-rebound-commands nil
)
212 ;; Determine which last version number to use
213 ;; based on the executables that now exist.
214 (if (and (or (equal (nth 3 command-line-args
) "dump")
215 (equal (nth 4 command-line-args
) "dump"))
216 (not (eq system-type
'ms-dos
)))
217 (let* ((base (concat "emacs-" emacs-version
"."))
218 (files (file-name-all-completions base default-directory
))
219 (versions (mapcar (function (lambda (name)
220 (string-to-int (substring name
(length base
)))))
222 (setq emacs-version
(format "%s.%d"
225 (1+ (apply 'max versions
))
228 ;; Note: all compiled Lisp files loaded above this point
229 ;; must be among the ones parsed by make-docfile
230 ;; to construct DOC. Any that are not processed
231 ;; for DOC will not have doc strings in the dumped Emacs.
233 (message "Finding pointers to doc strings...")
234 (if (or (equal (nth 3 command-line-args
) "dump")
235 (equal (nth 4 command-line-args
) "dump"))
236 (let ((name emacs-version
))
237 (while (string-match "[^-+_.a-zA-Z0-9]+" name
)
238 (setq name
(concat (downcase (substring name
0 (match-beginning 0)))
240 (substring name
(match-end 0)))))
241 (if (memq system-type
'(ms-dos windows-nt
))
242 (setq name
(expand-file-name
243 (if (fboundp 'x-create-frame
) "DOC-X" "DOC") "../etc"))
244 (setq name
(concat (expand-file-name "../etc/DOC-") name
))
245 (if (file-exists-p name
)
247 (copy-file (expand-file-name "../etc/DOC") name t
))
248 (Snarf-documentation (file-name-nondirectory name
)))
249 (Snarf-documentation "DOC"))
250 (message "Finding pointers to doc strings...done")
252 ;Note: You can cause additional libraries to be preloaded
253 ;by writing a site-init.el that loads them.
254 ;See also "site-load" above.
256 (setq current-load-list nil
)
259 ;;; At this point, we're ready to resume undo recording for scratch.
260 (buffer-enable-undo "*scratch*")
262 (if (or (equal (nth 3 command-line-args
) "dump")
263 (equal (nth 4 command-line-args
) "dump"))
264 (if (eq system-type
'vax-vms
)
266 (message "Dumping data as file temacs.dump")
267 (dump-emacs "temacs.dump" "temacs")
269 (let ((name (concat "emacs-" emacs-version
)))
270 (while (string-match "[^-+_.a-zA-Z0-9]+" name
)
271 (setq name
(concat (downcase (substring name
0 (match-beginning 0)))
273 (substring name
(match-end 0)))))
274 (if (eq system-type
'ms-dos
)
275 (message "Dumping under the name emacs")
276 (message "Dumping under names emacs and %s" name
)))
278 (delete-file "emacs")
280 ;; We used to dump under the name xemacs, but that occasionally
281 ;; confused people installing Emacs (they'd install the file
282 ;; under the name `xemacs'), and it's inconsistent with every
283 ;; other GNU product's build process.
284 (dump-emacs "emacs" "temacs")
285 (message "%d pure bytes used" pure-bytes-used
)
286 ;; Recompute NAME now, so that it isn't set when we dump.
287 (if (not (memq system-type
'(ms-dos windows-nt
)))
288 (let ((name (concat "emacs-" emacs-version
)))
289 (while (string-match "[^-+_.a-zA-Z0-9]+" name
)
290 (setq name
(concat (downcase (substring name
0 (match-beginning 0)))
292 (substring name
(match-end 0)))))
293 (add-name-to-file "emacs" name t
)))
296 ;; Avoid error if user loads some more libraries now.
297 (setq purify-flag nil
)
299 ;; For machines with CANNOT_DUMP defined in config.h,
300 ;; this file must be loaded each time Emacs is run.
301 ;; So run the startup code now.
303 (or (equal (nth 3 command-line-args
) "dump")
304 (equal (nth 4 command-line-args
) "dump")
306 ;; Avoid loading loadup.el a second time!
307 (setq command-line-args
(cdr (cdr command-line-args
)))
310 ;;; loadup.el ends here