Mercurial > emacs
annotate lisp/loadup.el @ 1054:f6f13367d93c
*** empty log message ***
author | Richard M. Stallman <rms@gnu.org> |
---|---|
date | Sat, 29 Aug 1992 08:27:31 +0000 |
parents | 587a08c3a70b |
children | e699ce19609f |
rev | line source |
---|---|
659
505130d1ddf8
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
648
diff
changeset
|
1 ;;; loadup.el --- load up standardly loaded Lisp files for Emacs. |
505130d1ddf8
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
648
diff
changeset
|
2 |
840
113281b361ec
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
811
diff
changeset
|
3 ;; Copyright (C) 1985, 1986, 1992 Free Software Foundation, Inc. |
113281b361ec
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
811
diff
changeset
|
4 |
807
4f28bd14272c
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
779
diff
changeset
|
5 ;; Maintainer: FSF |
811
e694e0879463
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
807
diff
changeset
|
6 ;; Keywords: internal |
807
4f28bd14272c
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
779
diff
changeset
|
7 |
35 | 8 ;; This file is part of GNU Emacs. |
9 | |
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 | |
807
4f28bd14272c
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
779
diff
changeset
|
12 ;; the Free Software Foundation; either version 2, or (at your option) |
35 | 13 ;; any later version. |
14 | |
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. | |
19 | |
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. | |
23 | |
840
113281b361ec
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
811
diff
changeset
|
24 ;;; Commentary: |
113281b361ec
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
811
diff
changeset
|
25 |
113281b361ec
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
811
diff
changeset
|
26 ;; This is loaded into a bare Emacs to make a dumpable one. |
113281b361ec
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
811
diff
changeset
|
27 |
807
4f28bd14272c
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
779
diff
changeset
|
28 ;;; Code: |
4f28bd14272c
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
779
diff
changeset
|
29 |
648 | 30 ;;; We don't want to have any undo records in the dumped Emacs. |
31 (buffer-disable-undo "*scratch*") | |
35 | 32 |
33 (load "subr") | |
755 | 34 (garbage-collect) |
767
02bfc9709961
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
758
diff
changeset
|
35 (load "byte-run") |
758 | 36 (garbage-collect) |
408
66f3891c43fd
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
393
diff
changeset
|
37 (load "map-ynp") |
35 | 38 (garbage-collect) |
39 (load "loaddefs.el") ;Don't get confused if someone compiled loaddefs by mistake. | |
40 (garbage-collect) | |
41 (load "simple") | |
42 (garbage-collect) | |
43 (load "help") | |
44 (garbage-collect) | |
45 (load "files") | |
46 (garbage-collect) | |
47 (load "indent") | |
755 | 48 (garbage-collect) |
35 | 49 (load "window") |
393 | 50 (garbage-collect) |
779 | 51 (if (fboundp 'delete-frame) |
52 (load "frame")) | |
755 | 53 (garbage-collect) |
35 | 54 (load "paths.el") ;Don't get confused if someone compiled paths by mistake. |
55 (garbage-collect) | |
56 (load "startup") | |
755 | 57 (garbage-collect) |
35 | 58 (load "lisp") |
59 (garbage-collect) | |
60 (load "page") | |
755 | 61 (garbage-collect) |
35 | 62 (load "register") |
63 (garbage-collect) | |
64 (load "paragraphs") | |
755 | 65 (garbage-collect) |
35 | 66 (load "lisp-mode") |
67 (garbage-collect) | |
68 (load "text-mode") | |
755 | 69 (garbage-collect) |
35 | 70 (load "fill") |
71 (garbage-collect) | |
72 (load "c-mode") | |
73 (garbage-collect) | |
74 (load "isearch") | |
75 (garbage-collect) | |
76 (load "replace") | |
77 (if (eq system-type 'vax-vms) | |
78 (progn | |
79 (garbage-collect) | |
80 (load "vmsproc"))) | |
81 (garbage-collect) | |
82 (load "abbrev") | |
83 (garbage-collect) | |
84 (load "buff-menu") | |
85 (if (eq system-type 'vax-vms) | |
86 (progn | |
87 (garbage-collect) | |
88 (load "vms-patch"))) | |
89 (if (fboundp 'atan) ; preload some constants and | |
90 (progn ; floating pt. functions if | |
91 (garbage-collect) ; we have float support. | |
92 (load "float-sup"))) | |
927 | 93 (garbage-collect) |
94 (load "vc-hooks") | |
35 | 95 |
96 ;If you want additional libraries to be preloaded and their | |
97 ;doc strings kept in the DOC file rather than in core, | |
98 ;you may load them with a "site-load.el" file. | |
99 ;But you must also cause them to be scanned when the DOC file | |
445 | 100 ;is generated. For VMS, you must edit ../vms/makedoc.com. |
35 | 101 ;For other systems, you must edit ../src/ymakefile. |
102 (if (load "site-load" t) | |
103 (garbage-collect)) | |
104 | |
105 (load "version.el") ;Don't get confused if someone compiled version.el by mistake. | |
106 | |
107 ;; Note: all compiled Lisp files loaded above this point | |
108 ;; must be among the ones parsed by make-docfile | |
109 ;; to construct DOC. Any that are not processed | |
110 ;; for DOC will not have doc strings in the dumped Emacs. | |
111 | |
112 (message "Finding pointers to doc strings...") | |
113 (if (fboundp 'dump-emacs) | |
114 (let ((name emacs-version)) | |
115 (while (string-match "[^-+_.a-zA-Z0-9]+" name) | |
116 (setq name (concat (downcase (substring name 0 (match-beginning 0))) | |
117 "-" | |
118 (substring name (match-end 0))))) | |
604 | 119 (copy-file (expand-file-name "../etc/DOC") |
120 (concat (expand-file-name "../etc/DOC-") name) | |
35 | 121 t) |
122 (Snarf-documentation (concat "DOC-" name))) | |
123 (Snarf-documentation "DOC")) | |
124 (message "Finding pointers to doc strings...done") | |
125 | |
126 ;Note: You can cause additional libraries to be preloaded | |
127 ;by writing a site-init.el that loads them. | |
128 ;See also "site-load" above. | |
129 (load "site-init" t) | |
130 (garbage-collect) | |
131 | |
648 | 132 ;;; At this point, we're ready to resume undo recording for scratch. |
133 (buffer-enable-undo "*scratch*") | |
134 | |
35 | 135 (if (or (equal (nth 3 command-line-args) "dump") |
136 (equal (nth 4 command-line-args) "dump")) | |
137 (if (eq system-type 'vax-vms) | |
138 (progn | |
139 (message "Dumping data as file temacs.dump") | |
140 (dump-emacs "temacs.dump" "temacs") | |
141 (kill-emacs)) | |
142 (let ((name (concat "emacs-" emacs-version))) | |
143 (while (string-match "[^-+_.a-zA-Z0-9]+" name) | |
144 (setq name (concat (downcase (substring name 0 (match-beginning 0))) | |
145 "-" | |
146 (substring name (match-end 0))))) | |
147 (message "Dumping under names xemacs and %s" name)) | |
148 (condition-case () | |
149 (delete-file "xemacs") | |
150 (file-error nil)) | |
151 (dump-emacs "xemacs" "temacs") | |
152 ;; Recompute NAME now, so that it isn't set when we dump. | |
153 (let ((name (concat "emacs-" emacs-version))) | |
154 (while (string-match "[^-+_.a-zA-Z0-9]+" name) | |
155 (setq name (concat (downcase (substring name 0 (match-beginning 0))) | |
156 "-" | |
157 (substring name (match-end 0))))) | |
158 (add-name-to-file "xemacs" name t)) | |
159 (kill-emacs))) | |
160 | |
161 ;; Avoid error if user loads some more libraries now. | |
162 (setq purify-flag nil) | |
163 | |
164 ;; For machines with CANNOT_DUMP defined in config.h, | |
165 ;; this file must be loaded each time Emacs is run. | |
166 ;; So run the startup code now. | |
167 | |
168 (or (fboundp 'dump-emacs) | |
169 (eval top-level)) | |
659
505130d1ddf8
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
648
diff
changeset
|
170 |
505130d1ddf8
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
648
diff
changeset
|
171 ;;; loadup.el ends here |