Load version.el early on.
[emacs.git] / lisp / loadup.el
blob71d23f4a0a4e4f0a3819a8ac5678bd6c8eee8b8c
1 ;;; loadup.el --- load up standardly loaded Lisp files for Emacs.
3 ;; Copyright (C) 1985, 1986, 1992, 1994 Free Software Foundation, Inc.
5 ;; Maintainer: FSF
6 ;; Keywords: internal
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)
13 ;; any later version.
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
22 ;; the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
24 ;;; Commentary:
26 ;; This is loaded into a bare Emacs to make a dumpable one.
28 ;;; Code:
30 (message "Using load-path %s" load-path)
32 ;;; We don't want to have any undo records in the dumped Emacs.
33 (buffer-disable-undo "*scratch*")
35 (load "subr")
37 ;; We specify .el in case someone compiled version.el by mistake.
38 (load "version.el")
40 (garbage-collect)
41 (load "byte-run")
42 (garbage-collect)
43 (load "map-ynp")
44 (garbage-collect)
45 (load "loaddefs.el") ;Don't get confused if someone compiled loaddefs by mistake.
46 (garbage-collect)
47 (load "simple")
48 (garbage-collect)
49 (load "help")
50 (garbage-collect)
51 (load "files")
52 (garbage-collect)
53 (load "indent")
54 (garbage-collect)
55 (load "window")
56 (garbage-collect)
57 (if (fboundp 'delete-frame)
58 (progn
59 (load "frame")
60 (load "mouse")
61 (garbage-collect)
62 (load "faces")
63 (load "facemenu")
64 (garbage-collect)
65 (load "menu-bar")
66 (load "scroll-bar")
67 (load "select")))
68 (garbage-collect)
69 (load "paths.el") ;Don't get confused if someone compiled paths by mistake.
70 (garbage-collect)
71 (load "startup")
72 (garbage-collect)
73 (load "lisp")
74 (garbage-collect)
75 (load "page")
76 (garbage-collect)
77 (load "register")
78 (garbage-collect)
79 (load "paragraphs")
80 (garbage-collect)
81 (load "lisp-mode")
82 (garbage-collect)
83 (load "text-mode")
84 (garbage-collect)
85 (load "fill")
86 (garbage-collect)
87 (load "c-mode")
88 (garbage-collect)
89 (load "isearch")
90 (garbage-collect)
91 (load "replace")
92 (if (eq system-type 'vax-vms)
93 (progn
94 (garbage-collect)
95 (load "vmsproc")))
96 (garbage-collect)
97 (load "abbrev")
98 (garbage-collect)
99 (load "buff-menu")
100 (if (eq system-type 'vax-vms)
101 (progn
102 (garbage-collect)
103 (load "vms-patch")))
104 (if (eq system-type 'windows-nt)
105 (progn
106 (garbage-collect)
107 (load "ls-lisp")
108 (garbage-collect)
109 (load "winnt")
110 (garbage-collect)
111 (if (not (featurep 'mouse))
112 (progn
113 (load "mouse")
114 (garbage-collect)))))
115 (if (eq system-type 'ms-dos)
116 (progn
117 (load "ls-lisp")
118 (garbage-collect)
119 (load "dos-fns")
120 (garbage-collect)
121 (load "disp-table") ; needed to setup ibm-pc char set, see internal.el
122 (garbage-collect)
123 (if (not (fboundp 'delete-frame))
124 (progn
125 (load "mouse")
126 (garbage-collect)
127 (load "faces")
128 (garbage-collect)))))
129 (if (fboundp 'atan) ; preload some constants and
130 (progn ; floating pt. functions if
131 (garbage-collect) ; we have float support.
132 (load "float-sup")))
134 (garbage-collect)
135 (load "vc-hooks")
137 ;If you want additional libraries to be preloaded and their
138 ;doc strings kept in the DOC file rather than in core,
139 ;you may load them with a "site-load.el" file.
140 ;But you must also cause them to be scanned when the DOC file
141 ;is generated. For VMS, you must edit ../vms/makedoc.com.
142 ;For other systems, you must edit ../src/Makefile.in.in.
143 (if (load "site-load" t)
144 (garbage-collect))
146 ;; Determine which last version number to use
147 ;; based on the executables that now exist.
148 (if (and (or (equal (nth 3 command-line-args) "dump")
149 (equal (nth 4 command-line-args) "dump"))
150 (not (eq system-type 'ms-dos)))
151 (let* ((base (concat "emacs-" emacs-version))
152 (files (file-name-all-completions base default-directory))
153 (versions (mapcar (function (lambda (name)
154 (string-to-int (substring name (1+ (length base))))))
155 files)))
156 (setq emacs-version (format "%s.%d"
157 emacs-version
158 (if versions
159 (1+ (apply 'max versions))
160 1)))))
162 ;; Note: all compiled Lisp files loaded above this point
163 ;; must be among the ones parsed by make-docfile
164 ;; to construct DOC. Any that are not processed
165 ;; for DOC will not have doc strings in the dumped Emacs.
167 (message "Finding pointers to doc strings...")
168 (if (or (equal (nth 3 command-line-args) "dump")
169 (equal (nth 4 command-line-args) "dump"))
170 (let ((name emacs-version))
171 (while (string-match "[^-+_.a-zA-Z0-9]+" name)
172 (setq name (concat (downcase (substring name 0 (match-beginning 0)))
174 (substring name (match-end 0)))))
175 (if (memq system-type '(ms-dos windows-nt))
176 (setq name (expand-file-name
177 (if (fboundp 'make-frame) "DOC-X" "DOC") "../etc"))
178 (setq name (concat (expand-file-name "../etc/DOC-") name))
179 (if (file-exists-p name)
180 (delete-file name))
181 (copy-file (expand-file-name "../etc/DOC") name t))
182 (Snarf-documentation (file-name-nondirectory name)))
183 (Snarf-documentation "DOC"))
184 (message "Finding pointers to doc strings...done")
186 ;Note: You can cause additional libraries to be preloaded
187 ;by writing a site-init.el that loads them.
188 ;See also "site-load" above.
189 (load "site-init" t)
190 (setq current-load-list nil)
191 (garbage-collect)
193 ;;; At this point, we're ready to resume undo recording for scratch.
194 (buffer-enable-undo "*scratch*")
196 (if (or (equal (nth 3 command-line-args) "dump")
197 (equal (nth 4 command-line-args) "dump"))
198 (if (eq system-type 'vax-vms)
199 (progn
200 (message "Dumping data as file temacs.dump")
201 (dump-emacs "temacs.dump" "temacs")
202 (kill-emacs))
203 (let ((name (concat "emacs-" emacs-version)))
204 (while (string-match "[^-+_.a-zA-Z0-9]+" name)
205 (setq name (concat (downcase (substring name 0 (match-beginning 0)))
207 (substring name (match-end 0)))))
208 (if (eq system-type 'ms-dos)
209 (message "Dumping under the name emacs")
210 (message "Dumping under names emacs and %s" name)))
211 (condition-case ()
212 (delete-file "emacs")
213 (file-error nil))
214 ;; We used to dump under the name xemacs, but that occasionally
215 ;; confused people installing Emacs (they'd install the file
216 ;; under the name `xemacs'), and it's inconsistent with every
217 ;; other GNU product's build process.
218 (dump-emacs "emacs" "temacs")
219 (message "%d pure bytes used" pure-bytes-used)
220 ;; Recompute NAME now, so that it isn't set when we dump.
221 (if (not (eq system-type 'ms-dos))
222 (let ((name (concat "emacs-" emacs-version)))
223 (while (string-match "[^-+_.a-zA-Z0-9]+" name)
224 (setq name (concat (downcase (substring name 0 (match-beginning 0)))
226 (substring name (match-end 0)))))
227 (add-name-to-file "emacs" name t)))
228 (kill-emacs)))
230 ;; Avoid error if user loads some more libraries now.
231 (setq purify-flag nil)
233 ;; For machines with CANNOT_DUMP defined in config.h,
234 ;; this file must be loaded each time Emacs is run.
235 ;; So run the startup code now.
237 (or (equal (nth 3 command-line-args) "dump")
238 (equal (nth 4 command-line-args) "dump")
239 (progn
240 ;; Avoid loading loadup.el a second time!
241 (setq command-line-args (cdr (cdr command-line-args)))
242 (eval top-level)))
244 ;;; loadup.el ends here