1 ;;; loadup.el --- load up standardly loaded Lisp files for Emacs.
3 ;; Copyright (C) 1985, 1986, 1992 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
22 ;; the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
26 ;; This is loaded into a bare Emacs to make a dumpable one.
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*")
41 (load "loaddefs.el") ;Don't get confused if someone compiled loaddefs by mistake.
53 (if (fboundp 'delete-frame
)
62 (load "paths.el") ;Don't get confused if someone compiled paths by mistake.
85 (if (eq system-type
'vax-vms
)
93 (if (eq system-type
'vax-vms
)
97 (if (eq system-type
'ms-dos
)
105 (load "disp-table") ; needed to setup ibm-pc char set, see internal.el
107 (if (fboundp 'atan
) ; preload some constants and
108 (progn ; floating pt. functions if
109 (garbage-collect) ; we have float support.
114 ;; We specify .el in case someone compiled version.el by mistake.
117 ;; Precompute the keyboard equivalents in the menu bar items.
118 (if (fboundp 'x-popup-menu
)
119 (let ((submap (lookup-key global-map
[menu-bar
])))
121 (and (consp (car submap
))
122 (symbolp (car (car submap
)))
123 (stringp (car-safe (cdr (car submap
))))
124 (keymapp (cdr (cdr (car submap
))))
125 (x-popup-menu nil
(cdr (cdr (car submap
)))))
126 (setq submap
(cdr submap
)))))
128 ;If you want additional libraries to be preloaded and their
129 ;doc strings kept in the DOC file rather than in core,
130 ;you may load them with a "site-load.el" file.
131 ;But you must also cause them to be scanned when the DOC file
132 ;is generated. For VMS, you must edit ../vms/makedoc.com.
133 ;For other systems, you must edit ../src/ymakefile.
134 (if (load "site-load" t
)
137 ;; Determine which last version number to use
138 ;; based on the executables that now exist.
139 (if (and (or (equal (nth 3 command-line-args
) "dump")
140 (equal (nth 4 command-line-args
) "dump"))
141 (not (eq system-type
'ms-dos
)))
142 (let* ((base (concat "emacs-" emacs-version
))
143 (files (file-name-all-completions base default-directory
))
144 (versions (mapcar (function (lambda (name)
145 (string-to-int (substring name
(1+ (length base
))))))
147 (setq emacs-version
(format "%s.%d"
150 (1+ (apply 'max versions
))
153 ;; Note: all compiled Lisp files loaded above this point
154 ;; must be among the ones parsed by make-docfile
155 ;; to construct DOC. Any that are not processed
156 ;; for DOC will not have doc strings in the dumped Emacs.
158 (message "Finding pointers to doc strings...")
159 (if (or (equal (nth 3 command-line-args
) "dump")
160 (equal (nth 4 command-line-args
) "dump"))
161 (let ((name emacs-version
))
162 (while (string-match "[^-+_.a-zA-Z0-9]+" name
)
163 (setq name
(concat (downcase (substring name
0 (match-beginning 0)))
165 (substring name
(match-end 0)))))
166 (if (eq system-type
'ms-dos
)
167 (setq name
(expand-file-name "../etc/DOC"))
168 (setq name
(concat (expand-file-name "../etc/DOC-") name
))
169 (if (file-exists-p name
)
171 (copy-file (expand-file-name "../etc/DOC") name t
))
172 (Snarf-documentation (file-name-nondirectory name
)))
173 (Snarf-documentation "DOC"))
174 (message "Finding pointers to doc strings...done")
176 ;Note: You can cause additional libraries to be preloaded
177 ;by writing a site-init.el that loads them.
178 ;See also "site-load" above.
182 ;;; At this point, we're ready to resume undo recording for scratch.
183 (buffer-enable-undo "*scratch*")
185 (if (or (equal (nth 3 command-line-args
) "dump")
186 (equal (nth 4 command-line-args
) "dump"))
187 (if (eq system-type
'vax-vms
)
189 (message "Dumping data as file temacs.dump")
190 (dump-emacs "temacs.dump" "temacs")
192 (let ((name (concat "emacs-" emacs-version
)))
193 (while (string-match "[^-+_.a-zA-Z0-9]+" name
)
194 (setq name
(concat (downcase (substring name
0 (match-beginning 0)))
196 (substring name
(match-end 0)))))
197 (if (eq system-type
'ms-dos
)
198 (message "Dumping under the name emacs")
199 (message "Dumping under names emacs and %s" name
)))
201 (delete-file "emacs")
203 ;; We used to dump under the name xemacs, but that occasionally
204 ;; confused people installing Emacs (they'd install the file
205 ;; under the name `xemacs'), and it's inconsistent with every
206 ;; other GNU product's build process.
207 (dump-emacs "emacs" "temacs")
208 ;; Recompute NAME now, so that it isn't set when we dump.
209 (if (not (eq system-type
'ms-dos
))
210 (let ((name (concat "emacs-" emacs-version
)))
211 (while (string-match "[^-+_.a-zA-Z0-9]+" name
)
212 (setq name
(concat (downcase (substring name
0 (match-beginning 0)))
214 (substring name
(match-end 0)))))
215 (add-name-to-file "emacs" name t
)))
218 ;; Avoid error if user loads some more libraries now.
219 (setq purify-flag nil
)
221 ;; For machines with CANNOT_DUMP defined in config.h,
222 ;; this file must be loaded each time Emacs is run.
223 ;; So run the startup code now.
225 (or (or (equal (nth 3 command-line-args
) "dump")
226 (equal (nth 4 command-line-args
) "dump"))
229 ;;; loadup.el ends here