1 ;;; loadup.el --- load up standardly loaded Lisp files for Emacs.
3 ;; This is loaded into a bare Emacs to make a dumpable one.
4 ;; Copyright (C) 1985, 1986, 1992 Free Software Foundation, Inc.
6 ;; This file is part of GNU Emacs.
8 ;; GNU Emacs is free software; you can redistribute it and/or modify
9 ;; it under the terms of the GNU General Public License as published by
10 ;; the Free Software Foundation; either version 1, or (at your option)
13 ;; GNU Emacs is distributed in the hope that it will be useful,
14 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
15 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 ;; GNU General Public License for more details.
18 ;; You should have received a copy of the GNU General Public License
19 ;; along with GNU Emacs; see the file COPYING. If not, write to
20 ;; the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
22 ;;; We don't want to have any undo records in the dumped Emacs.
23 (buffer-disable-undo "*scratch*")
28 (load "loaddefs.el") ;Don't get confused if someone compiled loaddefs by mistake.
39 (if (fboundp 'delete-screen
)
41 (load "paths.el") ;Don't get confused if someone compiled paths by mistake.
60 (if (eq system-type
'vax-vms
)
68 (if (eq system-type
'vax-vms
)
72 (if (fboundp 'atan
) ; preload some constants and
73 (progn ; floating pt. functions if
74 (garbage-collect) ; we have float support.
77 ;If you want additional libraries to be preloaded and their
78 ;doc strings kept in the DOC file rather than in core,
79 ;you may load them with a "site-load.el" file.
80 ;But you must also cause them to be scanned when the DOC file
81 ;is generated. For VMS, you must edit ../vms/makedoc.com.
82 ;For other systems, you must edit ../src/ymakefile.
83 (if (load "site-load" t
)
86 (load "version.el") ;Don't get confused if someone compiled version.el by mistake.
88 ;; Note: all compiled Lisp files loaded above this point
89 ;; must be among the ones parsed by make-docfile
90 ;; to construct DOC. Any that are not processed
91 ;; for DOC will not have doc strings in the dumped Emacs.
93 (message "Finding pointers to doc strings...")
94 (if (fboundp 'dump-emacs
)
95 (let ((name emacs-version
))
96 (while (string-match "[^-+_.a-zA-Z0-9]+" name
)
97 (setq name
(concat (downcase (substring name
0 (match-beginning 0)))
99 (substring name
(match-end 0)))))
100 (copy-file (expand-file-name "../etc/DOC")
101 (concat (expand-file-name "../etc/DOC-") name
)
103 (Snarf-documentation (concat "DOC-" name
)))
104 (Snarf-documentation "DOC"))
105 (message "Finding pointers to doc strings...done")
107 ;Note: You can cause additional libraries to be preloaded
108 ;by writing a site-init.el that loads them.
109 ;See also "site-load" above.
113 ;;; At this point, we're ready to resume undo recording for scratch.
114 (buffer-enable-undo "*scratch*")
116 (if (or (equal (nth 3 command-line-args
) "dump")
117 (equal (nth 4 command-line-args
) "dump"))
118 (if (eq system-type
'vax-vms
)
120 (message "Dumping data as file temacs.dump")
121 (dump-emacs "temacs.dump" "temacs")
123 (let ((name (concat "emacs-" emacs-version
)))
124 (while (string-match "[^-+_.a-zA-Z0-9]+" name
)
125 (setq name
(concat (downcase (substring name
0 (match-beginning 0)))
127 (substring name
(match-end 0)))))
128 (message "Dumping under names xemacs and %s" name
))
130 (delete-file "xemacs")
132 (dump-emacs "xemacs" "temacs")
133 ;; Recompute NAME now, so that it isn't set when we dump.
134 (let ((name (concat "emacs-" emacs-version
)))
135 (while (string-match "[^-+_.a-zA-Z0-9]+" name
)
136 (setq name
(concat (downcase (substring name
0 (match-beginning 0)))
138 (substring name
(match-end 0)))))
139 (add-name-to-file "xemacs" name t
))
142 ;; Avoid error if user loads some more libraries now.
143 (setq purify-flag nil
)
145 ;; For machines with CANNOT_DUMP defined in config.h,
146 ;; this file must be loaded each time Emacs is run.
147 ;; So run the startup code now.
149 (or (fboundp 'dump-emacs
)
152 ;;; loadup.el ends here