(mail-abbrev-syntax-table): Use `equal' instead of `=', in case elts
[emacs.git] / lisp / loadup.el
blobad2f40b925c890c4f964876a1e402b32a86db4fa
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 "format")
54 (garbage-collect)
55 (load "indent")
56 (garbage-collect)
57 (load "isearch")
58 (garbage-collect)
59 (load "window")
60 (if (fboundp 'delete-frame)
61 (progn
62 (garbage-collect)
63 (load "frame")))
64 (if (fboundp 'frame-face-alist)
65 (progn
66 (garbage-collect)
67 (load "faces")
68 (load "facemenu")))
69 (if (fboundp 'track-mouse)
70 (progn
71 (garbage-collect)
72 (load "mouse")
73 (garbage-collect)
74 (load "menu-bar")
75 (load "scroll-bar")
76 (load "select")))
77 (garbage-collect)
78 (load "paths.el") ;Don't get confused if someone compiled paths by mistake.
79 (garbage-collect)
80 (load "startup")
81 (garbage-collect)
82 (load "lisp")
83 (garbage-collect)
84 (load "page")
85 (garbage-collect)
86 (load "register")
87 (garbage-collect)
88 (load "paragraphs")
89 (garbage-collect)
90 (load "lisp-mode")
91 (garbage-collect)
92 (load "text-mode")
93 (garbage-collect)
94 (load "fill")
95 (garbage-collect)
96 (load "c-mode")
97 (garbage-collect)
98 (load "replace")
99 (if (eq system-type 'vax-vms)
100 (progn
101 (garbage-collect)
102 (load "vmsproc")))
103 (garbage-collect)
104 (load "abbrev")
105 (garbage-collect)
106 (load "buff-menu")
107 (if (eq system-type 'vax-vms)
108 (progn
109 (garbage-collect)
110 (load "vms-patch")))
111 (if (eq system-type 'windows-nt)
112 (progn
113 (garbage-collect)
114 (load "ls-lisp")
115 (garbage-collect)
116 (load "winnt")
117 (garbage-collect)))
118 (if (eq system-type 'ms-dos)
119 (progn
120 (load "ls-lisp")
121 (garbage-collect)
122 (load "dos-fns")
123 (garbage-collect)
124 (load "disp-table") ; needed to setup ibm-pc char set, see internal.el
125 (garbage-collect)))
126 (if (fboundp 'atan) ; preload some constants and
127 (progn ; floating pt. functions if
128 (garbage-collect) ; we have float support.
129 (load "float-sup")))
131 (garbage-collect)
132 (load "vc-hooks")
133 (load "ediff-hook")
135 ;If you want additional libraries to be preloaded and their
136 ;doc strings kept in the DOC file rather than in core,
137 ;you may load them with a "site-load.el" file.
138 ;But you must also cause them to be scanned when the DOC file
139 ;is generated. For VMS, you must edit ../vms/makedoc.com.
140 ;For other systems, you must edit ../src/Makefile.in.in.
141 (if (load "site-load" t)
142 (garbage-collect))
144 (if (fboundp 'x-popup-menu)
145 (precompute-menubar-bindings))
146 ;; Turn on recording of which commands get rebound,
147 ;; for the sake of the next call to precompute-menubar-bindings.
148 (setq define-key-rebound-commands nil)
150 ;; Determine which last version number to use
151 ;; based on the executables that now exist.
152 (if (and (or (equal (nth 3 command-line-args) "dump")
153 (equal (nth 4 command-line-args) "dump"))
154 (not (eq system-type 'ms-dos)))
155 (let* ((base (concat "emacs-" emacs-version))
156 (files (file-name-all-completions base default-directory))
157 (versions (mapcar (function (lambda (name)
158 (string-to-int (substring name (1+ (length base))))))
159 files)))
160 (setq emacs-version (format "%s.%d"
161 emacs-version
162 (if versions
163 (1+ (apply 'max versions))
164 1)))))
166 ;; Note: all compiled Lisp files loaded above this point
167 ;; must be among the ones parsed by make-docfile
168 ;; to construct DOC. Any that are not processed
169 ;; for DOC will not have doc strings in the dumped Emacs.
171 (message "Finding pointers to doc strings...")
172 (if (or (equal (nth 3 command-line-args) "dump")
173 (equal (nth 4 command-line-args) "dump"))
174 (let ((name emacs-version))
175 (while (string-match "[^-+_.a-zA-Z0-9]+" name)
176 (setq name (concat (downcase (substring name 0 (match-beginning 0)))
178 (substring name (match-end 0)))))
179 (if (memq system-type '(ms-dos windows-nt))
180 (setq name (expand-file-name
181 (if (fboundp 'make-frame) "DOC-X" "DOC") "../etc"))
182 (setq name (concat (expand-file-name "../etc/DOC-") name))
183 (if (file-exists-p name)
184 (delete-file name))
185 (copy-file (expand-file-name "../etc/DOC") name t))
186 (Snarf-documentation (file-name-nondirectory name)))
187 (Snarf-documentation "DOC"))
188 (message "Finding pointers to doc strings...done")
190 ;Note: You can cause additional libraries to be preloaded
191 ;by writing a site-init.el that loads them.
192 ;See also "site-load" above.
193 (load "site-init" t)
194 (setq current-load-list nil)
195 (garbage-collect)
197 ;;; At this point, we're ready to resume undo recording for scratch.
198 (buffer-enable-undo "*scratch*")
200 (if (or (equal (nth 3 command-line-args) "dump")
201 (equal (nth 4 command-line-args) "dump"))
202 (if (eq system-type 'vax-vms)
203 (progn
204 (message "Dumping data as file temacs.dump")
205 (dump-emacs "temacs.dump" "temacs")
206 (kill-emacs))
207 (let ((name (concat "emacs-" emacs-version)))
208 (while (string-match "[^-+_.a-zA-Z0-9]+" name)
209 (setq name (concat (downcase (substring name 0 (match-beginning 0)))
211 (substring name (match-end 0)))))
212 (if (eq system-type 'ms-dos)
213 (message "Dumping under the name emacs")
214 (message "Dumping under names emacs and %s" name)))
215 (condition-case ()
216 (delete-file "emacs")
217 (file-error nil))
218 ;; We used to dump under the name xemacs, but that occasionally
219 ;; confused people installing Emacs (they'd install the file
220 ;; under the name `xemacs'), and it's inconsistent with every
221 ;; other GNU product's build process.
222 (dump-emacs "emacs" "temacs")
223 (message "%d pure bytes used" pure-bytes-used)
224 ;; Recompute NAME now, so that it isn't set when we dump.
225 (if (not (memq system-type '(ms-dos windows-nt)))
226 (let ((name (concat "emacs-" emacs-version)))
227 (while (string-match "[^-+_.a-zA-Z0-9]+" name)
228 (setq name (concat (downcase (substring name 0 (match-beginning 0)))
230 (substring name (match-end 0)))))
231 (add-name-to-file "emacs" name t)))
232 (kill-emacs)))
234 ;; Avoid error if user loads some more libraries now.
235 (setq purify-flag nil)
237 ;; For machines with CANNOT_DUMP defined in config.h,
238 ;; this file must be loaded each time Emacs is run.
239 ;; So run the startup code now.
241 (or (equal (nth 3 command-line-args) "dump")
242 (equal (nth 4 command-line-args) "dump")
243 (progn
244 ;; Avoid loading loadup.el a second time!
245 (setq command-line-args (cdr (cdr command-line-args)))
246 (eval top-level)))
248 ;;; loadup.el ends here