38412
|
1 ;;; loadup.el --- load up standardly loaded Lisp files for Emacs
|
659
|
2
|
64762
|
3 ;; Copyright (C) 1985, 1986, 1992, 1994, 2001, 2002, 2003,
|
79721
|
4 ;; 2004, 2005, 2006, 2007, 2008 Free Software Foundation, Inc.
|
840
|
5
|
807
|
6 ;; Maintainer: FSF
|
811
|
7 ;; Keywords: internal
|
807
|
8
|
35
|
9 ;; This file is part of GNU Emacs.
|
|
10
|
|
11 ;; GNU Emacs is free software; you can redistribute it and/or modify
|
|
12 ;; it under the terms of the GNU General Public License as published by
|
78236
|
13 ;; the Free Software Foundation; either version 3, or (at your option)
|
35
|
14 ;; any later version.
|
|
15
|
|
16 ;; GNU Emacs is distributed in the hope that it will be useful,
|
|
17 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
18 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
19 ;; GNU General Public License for more details.
|
|
20
|
|
21 ;; You should have received a copy of the GNU General Public License
|
14169
|
22 ;; along with GNU Emacs; see the file COPYING. If not, write to the
|
64091
|
23 ;; Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
|
|
24 ;; Boston, MA 02110-1301, USA.
|
35
|
25
|
840
|
26 ;;; Commentary:
|
|
27
|
|
28 ;; This is loaded into a bare Emacs to make a dumpable one.
|
|
29
|
807
|
30 ;;; Code:
|
|
31
|
26002
4f46db3c9d7d
* subr.el (with-current-buffer): don't use backquotes to avoid
Stefan Monnier <monnier@iro.umontreal.ca>
diff
changeset
|
32 ;; add subdirectories to the load-path for files that might
|
4f46db3c9d7d
* subr.el (with-current-buffer): don't use backquotes to avoid
Stefan Monnier <monnier@iro.umontreal.ca>
diff
changeset
|
33 ;; get autoloaded when bootstrapping
|
4f46db3c9d7d
* subr.el (with-current-buffer): don't use backquotes to avoid
Stefan Monnier <monnier@iro.umontreal.ca>
diff
changeset
|
34 (if (or (equal (nth 3 command-line-args) "bootstrap")
|
33103
|
35 (equal (nth 4 command-line-args) "bootstrap")
|
90171
|
36 (equal (nth 3 command-line-args) "unidata-gen.el")
|
|
37 (equal (nth 4 command-line-args) "unidata-gen-files")
|
33103
|
38 ;; in case CANNOT_DUMP
|
|
39 (equal (nth 0 command-line-args) "../src/bootstrap-emacs"))
|
49333
|
40 (let ((dir (car load-path)))
|
44595
|
41 ;; We'll probably overflow the pure space.
|
|
42 (setq purify-flag nil)
|
49333
|
43 (setq load-path (list dir
|
|
44 (expand-file-name "emacs-lisp" dir)
|
|
45 (expand-file-name "language" dir)
|
|
46 (expand-file-name "international" dir)
|
|
47 (expand-file-name "textmodes" dir)))))
|
26002
4f46db3c9d7d
* subr.el (with-current-buffer): don't use backquotes to avoid
Stefan Monnier <monnier@iro.umontreal.ca>
diff
changeset
|
48
|
1692
|
49 (message "Using load-path %s" load-path)
|
|
50
|
44015
|
51 ;; We don't want to have any undo records in the dumped Emacs.
|
59126
|
52 (set-buffer "*scratch*")
|
|
53 (setq buffer-undo-list t)
|
35
|
54
|
51354
abad152707e5
Load byte-run.el, map-ynp.el, timer.el and float-sup.el from emacs-lisp.
Juanma Barranquero <lekktu@gmail.com>
diff
changeset
|
55 (load "emacs-lisp/byte-run")
|
44015
|
56 (load "emacs-lisp/backquote")
|
35
|
57 (load "subr")
|
10806
|
58
|
|
59 ;; We specify .el in case someone compiled version.el by mistake.
|
|
60 (load "version.el")
|
|
61
|
17397
|
62 (load "widget")
|
|
63 (load "custom")
|
51354
abad152707e5
Load byte-run.el, map-ynp.el, timer.el and float-sup.el from emacs-lisp.
Juanma Barranquero <lekktu@gmail.com>
diff
changeset
|
64 (load "emacs-lisp/map-ynp")
|
17427
|
65 (load "cus-start")
|
18595
|
66 (load "international/mule")
|
|
67 (load "international/mule-conf.el") ;Don't get confused if someone compiled this by mistake.
|
83465
|
68 (load "env")
|
22965
|
69 (load "format")
|
17783
|
70 (load "bindings")
|
|
71 (setq load-source-file-function 'load-with-code-conversion)
|
35
|
72 (load "files")
|
22258
|
73
|
44894
|
74 (load "cus-face")
|
39650
|
75 (load "faces") ; after here, `defface' may be used.
|
94040
|
76 (load "minibuffer")
|
39650
|
77
|
79367
|
78 (load "button")
|
|
79 (load "startup")
|
|
80
|
23013
|
81 (message "Lists of integers (garbage collection statistics) are normal output")
|
|
82 (message "while building Emacs; they do not indicate a problem.")
|
22258
|
83 (message "%s" (garbage-collect))
|
94001
96f9ff09bbb0
* Makefile.in (bootstrap-prepare): Don't copy ldefs-boot over loaddefs.
Stefan Monnier <monnier@iro.umontreal.ca>
diff
changeset
|
84
|
96f9ff09bbb0
* Makefile.in (bootstrap-prepare): Don't copy ldefs-boot over loaddefs.
Stefan Monnier <monnier@iro.umontreal.ca>
diff
changeset
|
85 (condition-case nil
|
96f9ff09bbb0
* Makefile.in (bootstrap-prepare): Don't copy ldefs-boot over loaddefs.
Stefan Monnier <monnier@iro.umontreal.ca>
diff
changeset
|
86 ;; Don't get confused if someone compiled this by mistake.
|
96f9ff09bbb0
* Makefile.in (bootstrap-prepare): Don't copy ldefs-boot over loaddefs.
Stefan Monnier <monnier@iro.umontreal.ca>
diff
changeset
|
87 (load "loaddefs.el")
|
96f9ff09bbb0
* Makefile.in (bootstrap-prepare): Don't copy ldefs-boot over loaddefs.
Stefan Monnier <monnier@iro.umontreal.ca>
diff
changeset
|
88 ;; In case loaddefs hasn't been generated yet.
|
96f9ff09bbb0
* Makefile.in (bootstrap-prepare): Don't copy ldefs-boot over loaddefs.
Stefan Monnier <monnier@iro.umontreal.ca>
diff
changeset
|
89 (file-error (load "ldefs-boot.el")))
|
96f9ff09bbb0
* Makefile.in (bootstrap-prepare): Don't copy ldefs-boot over loaddefs.
Stefan Monnier <monnier@iro.umontreal.ca>
diff
changeset
|
90
|
22258
|
91 (message "%s" (garbage-collect))
|
94062
9fefa536be58
* minibuffer.el (completion-all-completion-with-base-size): New var.
Stefan Monnier <monnier@iro.umontreal.ca>
diff
changeset
|
92 (load "abbrev") ;lisp-mode.el and simple.el use define-abbrev-table.
|
47407
|
93 (load "simple")
|
22258
|
94
|
32205
|
95 (load "help")
|
39650
|
96
|
70886
|
97 (load "jka-cmpr-hook")
|
32205
|
98 ;; Any Emacs Lisp source file (*.el) loaded here after can contain
|
|
99 ;; multilingual text.
|
|
100 (load "international/mule-cmds")
|
|
101 (load "case-table")
|
|
102 (load "international/characters")
|
89305
|
103 (load "composite")
|
90164
|
104 ;; This file doesn't exist when building Emacs from CVS. It is
|
|
105 ;; generated just after temacs is build.
|
|
106 (load "international/charprop.el" t)
|
32205
|
107
|
22965
|
108 ;; Load language-specific files.
|
17007
|
109 (load "language/chinese")
|
|
110 (load "language/cyrillic")
|
|
111 (load "language/indian")
|
92070
|
112 (load "language/sinhala")
|
17292
|
113 (load "language/english")
|
17007
|
114 (load "language/ethiopic")
|
|
115 (load "language/european")
|
21208
|
116 (load "language/czech")
|
|
117 (load "language/slovak")
|
21541
|
118 (load "language/romanian")
|
17007
|
119 (load "language/greek")
|
|
120 (load "language/hebrew")
|
|
121 (load "language/japanese")
|
|
122 (load "language/korean")
|
17089
|
123 (load "language/lao")
|
90940
|
124 (load "language/tai-viet")
|
17007
|
125 (load "language/thai")
|
17292
|
126 (load "language/tibetan")
|
17007
|
127 (load "language/vietnamese")
|
|
128 (load "language/misc-lang")
|
42143
|
129 (load "language/utf-8-lang")
|
|
130 (load "language/georgian")
|
91313
|
131 (load "language/khmer")
|
91383
|
132 (load "language/burmese")
|
91361
|
133 (load "language/cham")
|
22258
|
134
|
35
|
135 (load "indent")
|
|
136 (load "window")
|
16174
|
137 (load "frame")
|
26736
|
138 (load "term/tty-colors")
|
45446
|
139 (load "font-core")
|
67199
3964a8b287a0
Add comment explaining why facemenu must be loaded before font-lock.
Luc Teirlinck <teirllm@auburn.edu>
diff
changeset
|
140 ;; facemenu must be loaded before font-lock, because `facemenu-keymap'
|
3964a8b287a0
Add comment explaining why facemenu must be loaded before font-lock.
Luc Teirlinck <teirllm@auburn.edu>
diff
changeset
|
141 ;; needs to be defined when font-lock is loaded.
|
67173
|
142 (load "facemenu")
|
66579
|
143 (load "emacs-lisp/syntax")
|
|
144 (load "font-lock")
|
|
145 (load "jit-lock")
|
39650
|
146
|
11040
|
147 (if (fboundp 'track-mouse)
|
|
148 (progn
|
|
149 (load "mouse")
|
34872
|
150 (and (boundp 'x-toolkit-scroll-bars)
|
25121
|
151 (load "scroll-bar"))
|
2806
|
152 (load "select")))
|
51354
abad152707e5
Load byte-run.el, map-ynp.el, timer.el and float-sup.el from emacs-lisp.
Juanma Barranquero <lekktu@gmail.com>
diff
changeset
|
153 (load "emacs-lisp/timer")
|
32081
|
154 (load "isearch")
|
66906
|
155 (load "rfn-eshadow")
|
22258
|
156
|
|
157 (message "%s" (garbage-collect))
|
13375
|
158 (load "menu-bar")
|
35
|
159 (load "paths.el") ;Don't get confused if someone compiled paths by mistake.
|
18595
|
160 (load "emacs-lisp/lisp")
|
|
161 (load "textmodes/page")
|
35
|
162 (load "register")
|
18595
|
163 (load "textmodes/paragraphs")
|
|
164 (load "emacs-lisp/lisp-mode")
|
|
165 (load "textmodes/text-mode")
|
|
166 (load "textmodes/fill")
|
22258
|
167 (message "%s" (garbage-collect))
|
|
168
|
35
|
169 (load "replace")
|
|
170 (if (eq system-type 'vax-vms)
|
|
171 (progn
|
|
172 (load "vmsproc")))
|
|
173 (load "buff-menu")
|
66491
|
174
|
|
175 (if (fboundp 'x-create-frame)
|
|
176 (progn
|
69051
|
177 (load "fringe")
|
66491
|
178 (load "image")
|
|
179 (load "international/fontset")
|
|
180 (load "dnd")
|
|
181 (load "mwheel")
|
|
182 (load "tool-bar")))
|
|
183 (if (featurep 'x)
|
83588
|
184 (progn
|
83398
|
185 (load "x-dnd")
|
83397
|
186 (load "term/x-win")))
|
83588
|
187
|
66491
|
188 (message "%s" (garbage-collect))
|
|
189
|
35
|
190 (if (eq system-type 'vax-vms)
|
|
191 (progn
|
|
192 (load "vms-patch")))
|
9783
|
193 (if (eq system-type 'windows-nt)
|
|
194 (progn
|
85500
|
195 (load "w32-vars")
|
83588
|
196 (load "term/w32-win")
|
9783
|
197 (load "ls-lisp")
|
15086
|
198 (load "disp-table") ; needed to setup ibm-pc char set, see internal.el
|
16593
|
199 (load "dos-w32")
|
19356
|
200 (load "w32-fns")))
|
5459
|
201 (if (eq system-type 'ms-dos)
|
|
202 (progn
|
|
203 (load "ls-lisp")
|
16593
|
204 (load "dos-w32")
|
5459
|
205 (load "dos-fns")
|
22071
|
206 (load "dos-vars")
|
35952
|
207 (load "international/ccl") ; codepage.el uses CCL en/decoder
|
24709
|
208 (load "international/codepage") ; internal.el uses cpNNN coding systems
|
19356
|
209 (load "disp-table"))) ; needed to setup ibm-pc char set, see internal.el
|
34467
|
210 (if (eq system-type 'macos)
|
|
211 (progn
|
|
212 (load "ls-lisp")))
|
83630
28201311b297
* term.c (init_tty): Use terminal specific mouse_position_hook.
Dan Nicolaescu <dann@ics.uci.edu>
diff
changeset
|
213 (if (featurep 'mac-carbon)
|
83619
|
214 (progn
|
|
215 (load "term/mac-win")))
|
34351
|
216 (if (fboundp 'atan) ; preload some constants and
|
19356
|
217 (progn ; floating pt. functions if we have float support.
|
51354
abad152707e5
Load byte-run.el, map-ynp.el, timer.el and float-sup.el from emacs-lisp.
Juanma Barranquero <lekktu@gmail.com>
diff
changeset
|
218 (load "emacs-lisp/float-sup")))
|
22258
|
219 (message "%s" (garbage-collect))
|
9442
|
220
|
927
|
221 (load "vc-hooks")
|
13134
|
222 (load "ediff-hook")
|
61567
|
223 (if (fboundp 'x-show-tip) (load "tooltip"))
|
66491
|
224
|
22258
|
225 (message "%s" (garbage-collect))
|
35
|
226
|
|
227 ;If you want additional libraries to be preloaded and their
|
|
228 ;doc strings kept in the DOC file rather than in core,
|
|
229 ;you may load them with a "site-load.el" file.
|
|
230 ;But you must also cause them to be scanned when the DOC file
|
445
|
231 ;is generated. For VMS, you must edit ../vms/makedoc.com.
|
13316
|
232 ;For other systems, you must edit ../src/Makefile.in.
|
35
|
233 (if (load "site-load" t)
|
|
234 (garbage-collect))
|
|
235
|
12299
|
236 (if (fboundp 'x-popup-menu)
|
|
237 (precompute-menubar-bindings))
|
|
238 ;; Turn on recording of which commands get rebound,
|
|
239 ;; for the sake of the next call to precompute-menubar-bindings.
|
|
240 (setq define-key-rebound-commands nil)
|
|
241
|
5489
|
242 ;; Determine which last version number to use
|
|
243 ;; based on the executables that now exist.
|
6540
|
244 (if (and (or (equal (nth 3 command-line-args) "dump")
|
|
245 (equal (nth 4 command-line-args) "dump"))
|
|
246 (not (eq system-type 'ms-dos)))
|
13342
f68eab5a63d2
(finding existing executable versions): Add a period to the end of BASE.
Richard M. Stallman <rms@gnu.org>
diff
changeset
|
247 (let* ((base (concat "emacs-" emacs-version "."))
|
5489
|
248 (files (file-name-all-completions base default-directory))
|
|
249 (versions (mapcar (function (lambda (name)
|
13366
|
250 (string-to-int (substring name (length base)))))
|
5489
|
251 files)))
|
44015
|
252 ;; `emacs-version' is a constant, so we shouldn't change it with `setq'.
|
|
253 (defconst emacs-version
|
|
254 (format "%s.%d"
|
|
255 emacs-version (if versions (1+ (apply 'max versions)) 1)))))
|
5489
|
256
|
35
|
257 ;; Note: all compiled Lisp files loaded above this point
|
|
258 ;; must be among the ones parsed by make-docfile
|
|
259 ;; to construct DOC. Any that are not processed
|
|
260 ;; for DOC will not have doc strings in the dumped Emacs.
|
|
261
|
|
262 (message "Finding pointers to doc strings...")
|
6540
|
263 (if (or (equal (nth 3 command-line-args) "dump")
|
|
264 (equal (nth 4 command-line-args) "dump"))
|
35
|
265 (let ((name emacs-version))
|
|
266 (while (string-match "[^-+_.a-zA-Z0-9]+" name)
|
|
267 (setq name (concat (downcase (substring name 0 (match-beginning 0)))
|
|
268 "-"
|
|
269 (substring name (match-end 0)))))
|
9783
|
270 (if (memq system-type '(ms-dos windows-nt))
|
9572
|
271 (setq name (expand-file-name
|
15398
e0d50fe661c0
On MSDOS, don't assume that `make-frame' is only bound under an X
Richard M. Stallman <rms@gnu.org>
diff
changeset
|
272 (if (fboundp 'x-create-frame) "DOC-X" "DOC") "../etc"))
|
5459
|
273 (setq name (concat (expand-file-name "../etc/DOC-") name))
|
|
274 (if (file-exists-p name)
|
|
275 (delete-file name))
|
|
276 (copy-file (expand-file-name "../etc/DOC") name t))
|
1065
|
277 (Snarf-documentation (file-name-nondirectory name)))
|
26002
4f46db3c9d7d
* subr.el (with-current-buffer): don't use backquotes to avoid
Stefan Monnier <monnier@iro.umontreal.ca>
diff
changeset
|
278 (condition-case nil
|
4f46db3c9d7d
* subr.el (with-current-buffer): don't use backquotes to avoid
Stefan Monnier <monnier@iro.umontreal.ca>
diff
changeset
|
279 (Snarf-documentation "DOC")
|
4f46db3c9d7d
* subr.el (with-current-buffer): don't use backquotes to avoid
Stefan Monnier <monnier@iro.umontreal.ca>
diff
changeset
|
280 (error nil)))
|
35
|
281 (message "Finding pointers to doc strings...done")
|
|
282
|
22357
|
283 ;;;Note: You can cause additional libraries to be preloaded
|
|
284 ;;;by writing a site-init.el that loads them.
|
|
285 ;;;See also "site-load" above.
|
35
|
286 (load "site-init" t)
|
8184
|
287 (setq current-load-list nil)
|
23286
|
288
|
23575
|
289 ;; Write the value of load-history into fns-VERSION.el,
|
|
290 ;; then clear out load-history.
|
44444
377def17ab0f
Call ucs-unify-8859 directly rather than unify-8859-on-encoding-mode.
Stefan Monnier <monnier@iro.umontreal.ca>
diff
changeset
|
291 ;; (if (or (equal (nth 3 command-line-args) "dump")
|
377def17ab0f
Call ucs-unify-8859 directly rather than unify-8859-on-encoding-mode.
Stefan Monnier <monnier@iro.umontreal.ca>
diff
changeset
|
292 ;; (equal (nth 4 command-line-args) "dump"))
|
377def17ab0f
Call ucs-unify-8859 directly rather than unify-8859-on-encoding-mode.
Stefan Monnier <monnier@iro.umontreal.ca>
diff
changeset
|
293 ;; (let ((buffer-undo-list t))
|
377def17ab0f
Call ucs-unify-8859 directly rather than unify-8859-on-encoding-mode.
Stefan Monnier <monnier@iro.umontreal.ca>
diff
changeset
|
294 ;; (princ "(setq load-history\n" (current-buffer))
|
377def17ab0f
Call ucs-unify-8859 directly rather than unify-8859-on-encoding-mode.
Stefan Monnier <monnier@iro.umontreal.ca>
diff
changeset
|
295 ;; (princ " (nconc load-history\n" (current-buffer))
|
377def17ab0f
Call ucs-unify-8859 directly rather than unify-8859-on-encoding-mode.
Stefan Monnier <monnier@iro.umontreal.ca>
diff
changeset
|
296 ;; (princ " '(" (current-buffer))
|
377def17ab0f
Call ucs-unify-8859 directly rather than unify-8859-on-encoding-mode.
Stefan Monnier <monnier@iro.umontreal.ca>
diff
changeset
|
297 ;; (let ((tem load-history))
|
377def17ab0f
Call ucs-unify-8859 directly rather than unify-8859-on-encoding-mode.
Stefan Monnier <monnier@iro.umontreal.ca>
diff
changeset
|
298 ;; (while tem
|
377def17ab0f
Call ucs-unify-8859 directly rather than unify-8859-on-encoding-mode.
Stefan Monnier <monnier@iro.umontreal.ca>
diff
changeset
|
299 ;; (prin1 (car tem) (current-buffer))
|
377def17ab0f
Call ucs-unify-8859 directly rather than unify-8859-on-encoding-mode.
Stefan Monnier <monnier@iro.umontreal.ca>
diff
changeset
|
300 ;; (terpri (current-buffer))
|
377def17ab0f
Call ucs-unify-8859 directly rather than unify-8859-on-encoding-mode.
Stefan Monnier <monnier@iro.umontreal.ca>
diff
changeset
|
301 ;; (if (cdr tem)
|
377def17ab0f
Call ucs-unify-8859 directly rather than unify-8859-on-encoding-mode.
Stefan Monnier <monnier@iro.umontreal.ca>
diff
changeset
|
302 ;; (princ " " (current-buffer)))
|
377def17ab0f
Call ucs-unify-8859 directly rather than unify-8859-on-encoding-mode.
Stefan Monnier <monnier@iro.umontreal.ca>
diff
changeset
|
303 ;; (setq tem (cdr tem))))
|
377def17ab0f
Call ucs-unify-8859 directly rather than unify-8859-on-encoding-mode.
Stefan Monnier <monnier@iro.umontreal.ca>
diff
changeset
|
304 ;; (princ ")))\n" (current-buffer))
|
377def17ab0f
Call ucs-unify-8859 directly rather than unify-8859-on-encoding-mode.
Stefan Monnier <monnier@iro.umontreal.ca>
diff
changeset
|
305 ;; (write-region (point-min) (point-max)
|
377def17ab0f
Call ucs-unify-8859 directly rather than unify-8859-on-encoding-mode.
Stefan Monnier <monnier@iro.umontreal.ca>
diff
changeset
|
306 ;; (expand-file-name
|
377def17ab0f
Call ucs-unify-8859 directly rather than unify-8859-on-encoding-mode.
Stefan Monnier <monnier@iro.umontreal.ca>
diff
changeset
|
307 ;; (cond
|
377def17ab0f
Call ucs-unify-8859 directly rather than unify-8859-on-encoding-mode.
Stefan Monnier <monnier@iro.umontreal.ca>
diff
changeset
|
308 ;; ((eq system-type 'ms-dos)
|
377def17ab0f
Call ucs-unify-8859 directly rather than unify-8859-on-encoding-mode.
Stefan Monnier <monnier@iro.umontreal.ca>
diff
changeset
|
309 ;; "../lib-src/fns.el")
|
377def17ab0f
Call ucs-unify-8859 directly rather than unify-8859-on-encoding-mode.
Stefan Monnier <monnier@iro.umontreal.ca>
diff
changeset
|
310 ;; ((eq system-type 'windows-nt)
|
377def17ab0f
Call ucs-unify-8859 directly rather than unify-8859-on-encoding-mode.
Stefan Monnier <monnier@iro.umontreal.ca>
diff
changeset
|
311 ;; (format "../../../lib-src/fns-%s.el" emacs-version))
|
377def17ab0f
Call ucs-unify-8859 directly rather than unify-8859-on-encoding-mode.
Stefan Monnier <monnier@iro.umontreal.ca>
diff
changeset
|
312 ;; (t
|
377def17ab0f
Call ucs-unify-8859 directly rather than unify-8859-on-encoding-mode.
Stefan Monnier <monnier@iro.umontreal.ca>
diff
changeset
|
313 ;; (format "../lib-src/fns-%s.el" emacs-version)))
|
377def17ab0f
Call ucs-unify-8859 directly rather than unify-8859-on-encoding-mode.
Stefan Monnier <monnier@iro.umontreal.ca>
diff
changeset
|
314 ;; invocation-directory))
|
377def17ab0f
Call ucs-unify-8859 directly rather than unify-8859-on-encoding-mode.
Stefan Monnier <monnier@iro.umontreal.ca>
diff
changeset
|
315 ;; (erase-buffer)
|
377def17ab0f
Call ucs-unify-8859 directly rather than unify-8859-on-encoding-mode.
Stefan Monnier <monnier@iro.umontreal.ca>
diff
changeset
|
316 ;; (setq load-history nil))
|
377def17ab0f
Call ucs-unify-8859 directly rather than unify-8859-on-encoding-mode.
Stefan Monnier <monnier@iro.umontreal.ca>
diff
changeset
|
317 ;; (setq symbol-file-load-history-loaded t))
|
377def17ab0f
Call ucs-unify-8859 directly rather than unify-8859-on-encoding-mode.
Stefan Monnier <monnier@iro.umontreal.ca>
diff
changeset
|
318 ;; We don't use this fns-*.el file. Instead we keep the data in PURE space.
|
377def17ab0f
Call ucs-unify-8859 directly rather than unify-8859-on-encoding-mode.
Stefan Monnier <monnier@iro.umontreal.ca>
diff
changeset
|
319 ;; Make sure that the spine of the list is not in pure space because it can
|
377def17ab0f
Call ucs-unify-8859 directly rather than unify-8859-on-encoding-mode.
Stefan Monnier <monnier@iro.umontreal.ca>
diff
changeset
|
320 ;; be destructively mutated in lread.c:build_load_history.
|
377def17ab0f
Call ucs-unify-8859 directly rather than unify-8859-on-encoding-mode.
Stefan Monnier <monnier@iro.umontreal.ca>
diff
changeset
|
321 (setq load-history (mapcar 'purecopy load-history))
|
377def17ab0f
Call ucs-unify-8859 directly rather than unify-8859-on-encoding-mode.
Stefan Monnier <monnier@iro.umontreal.ca>
diff
changeset
|
322 (setq symbol-file-load-history-loaded t)
|
377def17ab0f
Call ucs-unify-8859 directly rather than unify-8859-on-encoding-mode.
Stefan Monnier <monnier@iro.umontreal.ca>
diff
changeset
|
323
|
23575
|
324 (set-buffer-modified-p nil)
|
23286
|
325
|
26002
4f46db3c9d7d
* subr.el (with-current-buffer): don't use backquotes to avoid
Stefan Monnier <monnier@iro.umontreal.ca>
diff
changeset
|
326 ;; reset the load-path. See lread.c:init_lread why.
|
4f46db3c9d7d
* subr.el (with-current-buffer): don't use backquotes to avoid
Stefan Monnier <monnier@iro.umontreal.ca>
diff
changeset
|
327 (if (or (equal (nth 3 command-line-args) "bootstrap")
|
4f46db3c9d7d
* subr.el (with-current-buffer): don't use backquotes to avoid
Stefan Monnier <monnier@iro.umontreal.ca>
diff
changeset
|
328 (equal (nth 4 command-line-args) "bootstrap"))
|
4f46db3c9d7d
* subr.el (with-current-buffer): don't use backquotes to avoid
Stefan Monnier <monnier@iro.umontreal.ca>
diff
changeset
|
329 (setcdr load-path nil))
|
4f46db3c9d7d
* subr.el (with-current-buffer): don't use backquotes to avoid
Stefan Monnier <monnier@iro.umontreal.ca>
diff
changeset
|
330
|
88399
|
331 (clear-charset-maps)
|
35
|
332 (garbage-collect)
|
|
333
|
648
|
334 ;;; At this point, we're ready to resume undo recording for scratch.
|
|
335 (buffer-enable-undo "*scratch*")
|
|
336
|
51699
|
337 (if (null (garbage-collect))
|
|
338 (setq pure-space-overflow t))
|
|
339
|
26002
4f46db3c9d7d
* subr.el (with-current-buffer): don't use backquotes to avoid
Stefan Monnier <monnier@iro.umontreal.ca>
diff
changeset
|
340 (if (or (member (nth 3 command-line-args) '("dump" "bootstrap"))
|
4f46db3c9d7d
* subr.el (with-current-buffer): don't use backquotes to avoid
Stefan Monnier <monnier@iro.umontreal.ca>
diff
changeset
|
341 (member (nth 4 command-line-args) '("dump" "bootstrap")))
|
35
|
342 (if (eq system-type 'vax-vms)
|
34351
|
343 (progn
|
35
|
344 (message "Dumping data as file temacs.dump")
|
|
345 (dump-emacs "temacs.dump" "temacs")
|
|
346 (kill-emacs))
|
|
347 (let ((name (concat "emacs-" emacs-version)))
|
|
348 (while (string-match "[^-+_.a-zA-Z0-9]+" name)
|
|
349 (setq name (concat (downcase (substring name 0 (match-beginning 0)))
|
|
350 "-"
|
|
351 (substring name (match-end 0)))))
|
63343
|
352 (if (memq system-type '(ms-dos windows-nt cygwin))
|
5459
|
353 (message "Dumping under the name emacs")
|
|
354 (message "Dumping under names emacs and %s" name)))
|
35
|
355 (condition-case ()
|
1703
|
356 (delete-file "emacs")
|
35
|
357 (file-error nil))
|
1703
|
358 ;; We used to dump under the name xemacs, but that occasionally
|
|
359 ;; confused people installing Emacs (they'd install the file
|
|
360 ;; under the name `xemacs'), and it's inconsistent with every
|
22357
|
361 ;; other GNU program's build process.
|
1703
|
362 (dump-emacs "emacs" "temacs")
|
9752
|
363 (message "%d pure bytes used" pure-bytes-used)
|
35
|
364 ;; Recompute NAME now, so that it isn't set when we dump.
|
54821
|
365 (if (not (memq system-type '(ms-dos windows-nt cygwin)))
|
5459
|
366 (let ((name (concat "emacs-" emacs-version)))
|
|
367 (while (string-match "[^-+_.a-zA-Z0-9]+" name)
|
|
368 (setq name (concat (downcase (substring name 0 (match-beginning 0)))
|
|
369 "-"
|
|
370 (substring name (match-end 0)))))
|
|
371 (add-name-to-file "emacs" name t)))
|
35
|
372 (kill-emacs)))
|
|
373
|
|
374 ;; Avoid error if user loads some more libraries now.
|
|
375 (setq purify-flag nil)
|
|
376
|
|
377 ;; For machines with CANNOT_DUMP defined in config.h,
|
|
378 ;; this file must be loaded each time Emacs is run.
|
22358
|
379 ;; So run the startup code now. First, remove `-l loadup' from args.
|
35
|
380
|
22358
|
381 (if (and (equal (nth 1 command-line-args) "-l")
|
|
382 (equal (nth 2 command-line-args) "loadup"))
|
|
383 (setcdr command-line-args (nthcdr 3 command-line-args)))
|
|
384
|
|
385 (eval top-level)
|
659
|
386
|
44015
|
387
|
93888
|
388 ;; Local Variables:
|
|
389 ;; no-byte-compile: t
|
|
390 ;; no-update-autoloads: t
|
|
391 ;; End:
|
52401
|
392
|
93888
|
393 ;; arch-tag: 121e1dd4-36e1-45ac-860e-239f577a6335
|
659
|
394 ;;; loadup.el ends here
|