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 ;;; We don't want to have any undo records in the dumped Emacs.
31 (buffer-disable-undo "*scratch*")
39 (load "loaddefs.el") ;Don't get confused if someone compiled loaddefs by mistake.
51 (if (fboundp 'delete-frame
)
54 (load "paths.el") ;Don't get confused if someone compiled paths by mistake.
77 (if (eq system-type
'vax-vms
)
85 (if (eq system-type
'vax-vms
)
89 (if (fboundp 'atan
) ; preload some constants and
90 (progn ; floating pt. functions if
91 (garbage-collect) ; we have float support.
94 ;If you want additional libraries to be preloaded and their
95 ;doc strings kept in the DOC file rather than in core,
96 ;you may load them with a "site-load.el" file.
97 ;But you must also cause them to be scanned when the DOC file
98 ;is generated. For VMS, you must edit ../vms/makedoc.com.
99 ;For other systems, you must edit ../src/ymakefile.
100 (if (load "site-load" t
)
103 (load "version.el") ;Don't get confused if someone compiled version.el by mistake.
105 ;; Note: all compiled Lisp files loaded above this point
106 ;; must be among the ones parsed by make-docfile
107 ;; to construct DOC. Any that are not processed
108 ;; for DOC will not have doc strings in the dumped Emacs.
110 (message "Finding pointers to doc strings...")
111 (if (fboundp 'dump-emacs
)
112 (let ((name emacs-version
))
113 (while (string-match "[^-+_.a-zA-Z0-9]+" name
)
114 (setq name
(concat (downcase (substring name
0 (match-beginning 0)))
116 (substring name
(match-end 0)))))
117 (copy-file (expand-file-name "../etc/DOC")
118 (concat (expand-file-name "../etc/DOC-") name
)
120 (Snarf-documentation (concat "DOC-" name
)))
121 (Snarf-documentation "DOC"))
122 (message "Finding pointers to doc strings...done")
124 ;Note: You can cause additional libraries to be preloaded
125 ;by writing a site-init.el that loads them.
126 ;See also "site-load" above.
130 ;;; At this point, we're ready to resume undo recording for scratch.
131 (buffer-enable-undo "*scratch*")
133 (if (or (equal (nth 3 command-line-args
) "dump")
134 (equal (nth 4 command-line-args
) "dump"))
135 (if (eq system-type
'vax-vms
)
137 (message "Dumping data as file temacs.dump")
138 (dump-emacs "temacs.dump" "temacs")
140 (let ((name (concat "emacs-" emacs-version
)))
141 (while (string-match "[^-+_.a-zA-Z0-9]+" name
)
142 (setq name
(concat (downcase (substring name
0 (match-beginning 0)))
144 (substring name
(match-end 0)))))
145 (message "Dumping under names xemacs and %s" name
))
147 (delete-file "xemacs")
149 (dump-emacs "xemacs" "temacs")
150 ;; Recompute NAME now, so that it isn't set when we dump.
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 (add-name-to-file "xemacs" name t
))
159 ;; Avoid error if user loads some more libraries now.
160 (setq purify-flag nil
)
162 ;; For machines with CANNOT_DUMP defined in config.h,
163 ;; this file must be loaded each time Emacs is run.
164 ;; So run the startup code now.
166 (or (fboundp 'dump-emacs
)
169 ;;; loadup.el ends here