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
)
33 ;;; We don't want to have any undo records in the dumped Emacs.
34 (buffer-disable-undo "*scratch*")
42 (load "loaddefs.el") ;Don't get confused if someone compiled loaddefs by mistake.
54 (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 (fboundp 'atan
) ; preload some constants and
98 (progn ; floating pt. functions if
99 (garbage-collect) ; we have float support.
104 ;If you want additional libraries to be preloaded and their
105 ;doc strings kept in the DOC file rather than in core,
106 ;you may load them with a "site-load.el" file.
107 ;But you must also cause them to be scanned when the DOC file
108 ;is generated. For VMS, you must edit ../vms/makedoc.com.
109 ;For other systems, you must edit ../src/ymakefile.
110 (if (load "site-load" t
)
113 (load "version.el") ;Don't get confused if someone compiled version.el by mistake.
115 ;; Note: all compiled Lisp files loaded above this point
116 ;; must be among the ones parsed by make-docfile
117 ;; to construct DOC. Any that are not processed
118 ;; for DOC will not have doc strings in the dumped Emacs.
120 (message "Finding pointers to doc strings...")
121 (if (fboundp 'dump-emacs
)
122 (let ((name emacs-version
))
123 (while (string-match "[^-+_.a-zA-Z0-9]+" name
)
124 (setq name
(concat (downcase (substring name
0 (match-beginning 0)))
126 (substring name
(match-end 0)))))
127 (setq name
(concat (expand-file-name "../etc/DOC-") name
))
128 (if (file-exists-p name
)
130 (copy-file (expand-file-name "../etc/DOC") name t
)
131 (Snarf-documentation (file-name-nondirectory name
)))
132 (Snarf-documentation "DOC"))
133 (message "Finding pointers to doc strings...done")
135 ;Note: You can cause additional libraries to be preloaded
136 ;by writing a site-init.el that loads them.
137 ;See also "site-load" above.
141 ;;; At this point, we're ready to resume undo recording for scratch.
142 (buffer-enable-undo "*scratch*")
144 (if (or (equal (nth 3 command-line-args
) "dump")
145 (equal (nth 4 command-line-args
) "dump"))
146 (if (eq system-type
'vax-vms
)
148 (message "Dumping data as file temacs.dump")
149 (dump-emacs "temacs.dump" "temacs")
151 (let ((name (concat "emacs-" emacs-version
)))
152 (while (string-match "[^-+_.a-zA-Z0-9]+" name
)
153 (setq name
(concat (downcase (substring name
0 (match-beginning 0)))
155 (substring name
(match-end 0)))))
156 (message "Dumping under names emacs and %s" name
))
158 (delete-file "emacs")
160 ;; We used to dump under the name xemacs, but that occasionally
161 ;; confused people installing Emacs (they'd install the file
162 ;; under the name `xemacs'), and it's inconsistent with every
163 ;; other GNU product's build process.
164 (dump-emacs "emacs" "temacs")
165 ;; Recompute NAME now, so that it isn't set when we dump.
166 (let ((name (concat "emacs-" emacs-version
)))
167 (while (string-match "[^-+_.a-zA-Z0-9]+" name
)
168 (setq name
(concat (downcase (substring name
0 (match-beginning 0)))
170 (substring name
(match-end 0)))))
171 (add-name-to-file "emacs" name t
))
174 ;; Avoid error if user loads some more libraries now.
175 (setq purify-flag nil
)
177 ;; For machines with CANNOT_DUMP defined in config.h,
178 ;; this file must be loaded each time Emacs is run.
179 ;; So run the startup code now.
181 (or (fboundp 'dump-emacs
)
184 ;;; loadup.el ends here