Mercurial > emacs
annotate lisp/loadup.el @ 17885:be1ba0978de9
(xdisp.o): Add coding.h in dependency list.
author | Kenichi Handa <handa@m17n.org> |
---|---|
date | Mon, 19 May 1997 07:17:38 +0000 |
parents | 1a6cc382caff |
children | c13285663c82 |
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 |
7298 | 3 ;; Copyright (C) 1985, 1986, 1992, 1994 Free Software Foundation, Inc. |
840
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 | |
14169 | 21 ;; along with GNU Emacs; see the file COPYING. If not, write to the |
22 ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330, | |
23 ;; Boston, MA 02111-1307, USA. | |
35 | 24 |
840
113281b361ec
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
811
diff
changeset
|
25 ;;; Commentary: |
113281b361ec
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
811
diff
changeset
|
26 |
113281b361ec
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
811
diff
changeset
|
27 ;; 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
|
28 |
807
4f28bd14272c
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
779
diff
changeset
|
29 ;;; Code: |
4f28bd14272c
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
779
diff
changeset
|
30 |
1692
9befcd596286
Display load-path at start.
Richard M. Stallman <rms@gnu.org>
parents:
1113
diff
changeset
|
31 (message "Using load-path %s" load-path) |
9befcd596286
Display load-path at start.
Richard M. Stallman <rms@gnu.org>
parents:
1113
diff
changeset
|
32 |
648 | 33 ;;; We don't want to have any undo records in the dumped Emacs. |
34 (buffer-disable-undo "*scratch*") | |
35 | 35 |
36 (load "subr") | |
10806
9e59d5bdaab8
Load version.el early on.
Richard M. Stallman <rms@gnu.org>
parents:
9906
diff
changeset
|
37 |
9e59d5bdaab8
Load version.el early on.
Richard M. Stallman <rms@gnu.org>
parents:
9906
diff
changeset
|
38 ;; We specify .el in case someone compiled version.el by mistake. |
9e59d5bdaab8
Load version.el early on.
Richard M. Stallman <rms@gnu.org>
parents:
9906
diff
changeset
|
39 (load "version.el") |
9e59d5bdaab8
Load version.el early on.
Richard M. Stallman <rms@gnu.org>
parents:
9906
diff
changeset
|
40 |
755 | 41 (garbage-collect) |
767
02bfc9709961
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
758
diff
changeset
|
42 (load "byte-run") |
758 | 43 (garbage-collect) |
408
66f3891c43fd
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
393
diff
changeset
|
44 (load "map-ynp") |
35 | 45 (garbage-collect) |
17397
e1bc0ba41a50
Load widget and custom packages.
Richard M. Stallman <rms@gnu.org>
parents:
17292
diff
changeset
|
46 (load "widget") |
e1bc0ba41a50
Load widget and custom packages.
Richard M. Stallman <rms@gnu.org>
parents:
17292
diff
changeset
|
47 (garbage-collect) |
e1bc0ba41a50
Load widget and custom packages.
Richard M. Stallman <rms@gnu.org>
parents:
17292
diff
changeset
|
48 (load "custom") |
17427 | 49 (load "cus-start") |
17397
e1bc0ba41a50
Load widget and custom packages.
Richard M. Stallman <rms@gnu.org>
parents:
17292
diff
changeset
|
50 (garbage-collect) |
17783
1a6cc382caff
Move bindings.el after mule-conf.el.
Richard M. Stallman <rms@gnu.org>
parents:
17427
diff
changeset
|
51 (load "loaddefs.el") ;Don't get confused if someone compiled this by mistake. |
1a6cc382caff
Move bindings.el after mule-conf.el.
Richard M. Stallman <rms@gnu.org>
parents:
17427
diff
changeset
|
52 (garbage-collect) |
1a6cc382caff
Move bindings.el after mule-conf.el.
Richard M. Stallman <rms@gnu.org>
parents:
17427
diff
changeset
|
53 (load "mule") |
16162 | 54 (garbage-collect) |
17783
1a6cc382caff
Move bindings.el after mule-conf.el.
Richard M. Stallman <rms@gnu.org>
parents:
17427
diff
changeset
|
55 (load "mule-conf.el") ;Don't get confused if someone compiled this by mistake. |
1a6cc382caff
Move bindings.el after mule-conf.el.
Richard M. Stallman <rms@gnu.org>
parents:
17427
diff
changeset
|
56 (garbage-collect) |
1a6cc382caff
Move bindings.el after mule-conf.el.
Richard M. Stallman <rms@gnu.org>
parents:
17427
diff
changeset
|
57 (load "bindings") |
1a6cc382caff
Move bindings.el after mule-conf.el.
Richard M. Stallman <rms@gnu.org>
parents:
17427
diff
changeset
|
58 (setq load-source-file-function 'load-with-code-conversion) |
35 | 59 (garbage-collect) |
60 (load "simple") | |
61 (garbage-collect) | |
62 (load "help") | |
63 (garbage-collect) | |
64 (load "files") | |
65 (garbage-collect) | |
11050 | 66 (load "format") |
17007 | 67 ;; Any Emacs Lisp source file (*.el) loaded here after can contain |
68 ;; multilingual text. | |
69 (garbage-collect) | |
70 (load "mule-cmds") | |
71 (garbage-collect) | |
72 (load "characters") | |
73 (garbage-collect) | |
74 ;; Load langauge specific files. | |
75 (load "language/chinese") | |
76 (garbage-collect) | |
77 (load "language/cyrillic") | |
78 (garbage-collect) | |
79 (load "language/indian") | |
80 (garbage-collect) | |
81 (load "language/devanagari") | |
82 (garbage-collect) | |
17292
a84bd5962283
Load language/english and language/tibetan.
Kenichi Handa <handa@m17n.org>
parents:
17089
diff
changeset
|
83 (load "language/english") |
a84bd5962283
Load language/english and language/tibetan.
Kenichi Handa <handa@m17n.org>
parents:
17089
diff
changeset
|
84 (garbage-collect) |
17007 | 85 (load "language/ethiopic") |
86 (garbage-collect) | |
87 (load "language/european") | |
88 (garbage-collect) | |
89 (load "language/greek") | |
90 (garbage-collect) | |
91 (load "language/hebrew") | |
92 (garbage-collect) | |
93 (load "language/japanese") | |
94 (garbage-collect) | |
95 (load "language/korean") | |
96 (garbage-collect) | |
17089 | 97 (load "language/lao") |
98 (garbage-collect) | |
17007 | 99 (load "language/thai") |
100 (garbage-collect) | |
17292
a84bd5962283
Load language/english and language/tibetan.
Kenichi Handa <handa@m17n.org>
parents:
17089
diff
changeset
|
101 (load "language/tibetan") |
a84bd5962283
Load language/english and language/tibetan.
Kenichi Handa <handa@m17n.org>
parents:
17089
diff
changeset
|
102 (garbage-collect) |
17007 | 103 (load "language/vietnamese") |
104 (garbage-collect) | |
105 (load "language/misc-lang") | |
106 (garbage-collect) | |
35 | 107 (load "indent") |
755 | 108 (garbage-collect) |
12426
abf6a9c6e139
Put isearch before menu-bar.
Richard M. Stallman <rms@gnu.org>
parents:
12299
diff
changeset
|
109 (load "isearch") |
abf6a9c6e139
Put isearch before menu-bar.
Richard M. Stallman <rms@gnu.org>
parents:
12299
diff
changeset
|
110 (garbage-collect) |
35 | 111 (load "window") |
16174
4bbcbff8c3da
Load frame.elc unconditionally.
Richard M. Stallman <rms@gnu.org>
parents:
16162
diff
changeset
|
112 (garbage-collect) |
4bbcbff8c3da
Load frame.elc unconditionally.
Richard M. Stallman <rms@gnu.org>
parents:
16162
diff
changeset
|
113 (load "frame") |
11040
2ea19d4d0b4b
Use appropriate `fboundp' tests to decide what to load.
Karl Heuer <kwzh@gnu.org>
parents:
10806
diff
changeset
|
114 (if (fboundp 'frame-face-alist) |
2ea19d4d0b4b
Use appropriate `fboundp' tests to decide what to load.
Karl Heuer <kwzh@gnu.org>
parents:
10806
diff
changeset
|
115 (progn |
2806
fc90a9d80b5f
Preload mouse, scroll-bar and select if have multi-frames.
Richard M. Stallman <rms@gnu.org>
parents:
1703
diff
changeset
|
116 (garbage-collect) |
8184
8ccef13ebe58
(current-load-list): Set it to nil.
Richard M. Stallman <rms@gnu.org>
parents:
7372
diff
changeset
|
117 (load "faces") |
11040
2ea19d4d0b4b
Use appropriate `fboundp' tests to decide what to load.
Karl Heuer <kwzh@gnu.org>
parents:
10806
diff
changeset
|
118 (load "facemenu"))) |
2ea19d4d0b4b
Use appropriate `fboundp' tests to decide what to load.
Karl Heuer <kwzh@gnu.org>
parents:
10806
diff
changeset
|
119 (if (fboundp 'track-mouse) |
2ea19d4d0b4b
Use appropriate `fboundp' tests to decide what to load.
Karl Heuer <kwzh@gnu.org>
parents:
10806
diff
changeset
|
120 (progn |
2ea19d4d0b4b
Use appropriate `fboundp' tests to decide what to load.
Karl Heuer <kwzh@gnu.org>
parents:
10806
diff
changeset
|
121 (garbage-collect) |
2ea19d4d0b4b
Use appropriate `fboundp' tests to decide what to load.
Karl Heuer <kwzh@gnu.org>
parents:
10806
diff
changeset
|
122 (load "mouse") |
8184
8ccef13ebe58
(current-load-list): Set it to nil.
Richard M. Stallman <rms@gnu.org>
parents:
7372
diff
changeset
|
123 (garbage-collect) |
2806
fc90a9d80b5f
Preload mouse, scroll-bar and select if have multi-frames.
Richard M. Stallman <rms@gnu.org>
parents:
1703
diff
changeset
|
124 (load "scroll-bar") |
fc90a9d80b5f
Preload mouse, scroll-bar and select if have multi-frames.
Richard M. Stallman <rms@gnu.org>
parents:
1703
diff
changeset
|
125 (load "select"))) |
13375 | 126 (load "menu-bar") |
755 | 127 (garbage-collect) |
35 | 128 (load "paths.el") ;Don't get confused if someone compiled paths by mistake. |
129 (garbage-collect) | |
130 (load "startup") | |
755 | 131 (garbage-collect) |
35 | 132 (load "lisp") |
133 (garbage-collect) | |
134 (load "page") | |
755 | 135 (garbage-collect) |
35 | 136 (load "register") |
137 (garbage-collect) | |
138 (load "paragraphs") | |
755 | 139 (garbage-collect) |
35 | 140 (load "lisp-mode") |
141 (garbage-collect) | |
142 (load "text-mode") | |
755 | 143 (garbage-collect) |
35 | 144 (load "fill") |
145 (garbage-collect) | |
146 (load "replace") | |
147 (if (eq system-type 'vax-vms) | |
148 (progn | |
149 (garbage-collect) | |
150 (load "vmsproc"))) | |
151 (garbage-collect) | |
152 (load "abbrev") | |
153 (garbage-collect) | |
154 (load "buff-menu") | |
155 (if (eq system-type 'vax-vms) | |
156 (progn | |
157 (garbage-collect) | |
158 (load "vms-patch"))) | |
9783
7d8fc4b4f60d
On windows-nt, load ls-lisp and winnt.
Richard M. Stallman <rms@gnu.org>
parents:
9752
diff
changeset
|
159 (if (eq system-type 'windows-nt) |
7d8fc4b4f60d
On windows-nt, load ls-lisp and winnt.
Richard M. Stallman <rms@gnu.org>
parents:
9752
diff
changeset
|
160 (progn |
7d8fc4b4f60d
On windows-nt, load ls-lisp and winnt.
Richard M. Stallman <rms@gnu.org>
parents:
9752
diff
changeset
|
161 (garbage-collect) |
7d8fc4b4f60d
On windows-nt, load ls-lisp and winnt.
Richard M. Stallman <rms@gnu.org>
parents:
9752
diff
changeset
|
162 (load "ls-lisp") |
9906
c062f5bc946a
For windows-nt, load mouse.
Richard M. Stallman <rms@gnu.org>
parents:
9783
diff
changeset
|
163 (garbage-collect) |
15086
f3024d637562
[windows-nt]: Load disp-table.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
164 (load "disp-table") ; needed to setup ibm-pc char set, see internal.el |
f3024d637562
[windows-nt]: Load disp-table.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
165 (garbage-collect) |
16593
4ed80eda6fac
Use new names for w32 files
Geoff Voelker <voelker@cs.washington.edu>
parents:
16174
diff
changeset
|
166 (load "dos-w32") |
16029
84a1657666be
[windows-nt, ms-dos]: Load dos-nt.
Richard M. Stallman <rms@gnu.org>
parents:
15398
diff
changeset
|
167 (garbage-collect) |
16593
4ed80eda6fac
Use new names for w32 files
Geoff Voelker <voelker@cs.washington.edu>
parents:
16174
diff
changeset
|
168 (load "w32-fns") |
11107
5358a0febe7a
Don't load mouse and face files in system-specific
Karl Heuer <kwzh@gnu.org>
parents:
11050
diff
changeset
|
169 (garbage-collect))) |
5459
ff128e39003b
[ms-dos]: Preload mouse.el, dos-fns.el,
Richard M. Stallman <rms@gnu.org>
parents:
2806
diff
changeset
|
170 (if (eq system-type 'ms-dos) |
ff128e39003b
[ms-dos]: Preload mouse.el, dos-fns.el,
Richard M. Stallman <rms@gnu.org>
parents:
2806
diff
changeset
|
171 (progn |
ff128e39003b
[ms-dos]: Preload mouse.el, dos-fns.el,
Richard M. Stallman <rms@gnu.org>
parents:
2806
diff
changeset
|
172 (load "ls-lisp") |
ff128e39003b
[ms-dos]: Preload mouse.el, dos-fns.el,
Richard M. Stallman <rms@gnu.org>
parents:
2806
diff
changeset
|
173 (garbage-collect) |
16593
4ed80eda6fac
Use new names for w32 files
Geoff Voelker <voelker@cs.washington.edu>
parents:
16174
diff
changeset
|
174 (load "dos-w32") |
16029
84a1657666be
[windows-nt, ms-dos]: Load dos-nt.
Richard M. Stallman <rms@gnu.org>
parents:
15398
diff
changeset
|
175 (garbage-collect) |
5459
ff128e39003b
[ms-dos]: Preload mouse.el, dos-fns.el,
Richard M. Stallman <rms@gnu.org>
parents:
2806
diff
changeset
|
176 (load "dos-fns") |
ff128e39003b
[ms-dos]: Preload mouse.el, dos-fns.el,
Richard M. Stallman <rms@gnu.org>
parents:
2806
diff
changeset
|
177 (garbage-collect) |
ff128e39003b
[ms-dos]: Preload mouse.el, dos-fns.el,
Richard M. Stallman <rms@gnu.org>
parents:
2806
diff
changeset
|
178 (load "disp-table") ; needed to setup ibm-pc char set, see internal.el |
11107
5358a0febe7a
Don't load mouse and face files in system-specific
Karl Heuer <kwzh@gnu.org>
parents:
11050
diff
changeset
|
179 (garbage-collect))) |
35 | 180 (if (fboundp 'atan) ; preload some constants and |
181 (progn ; floating pt. functions if | |
182 (garbage-collect) ; we have float support. | |
183 (load "float-sup"))) | |
9442
973eafd9f349
Write the subdirs.el file.
Richard M. Stallman <rms@gnu.org>
parents:
8184
diff
changeset
|
184 |
927 | 185 (garbage-collect) |
186 (load "vc-hooks") | |
13134
a880e9199b57
Added (load "ediff-hook") after loading vc-hook.
Michael Kifer <kifer@cs.stonybrook.edu>
parents:
12426
diff
changeset
|
187 (load "ediff-hook") |
35 | 188 |
189 ;If you want additional libraries to be preloaded and their | |
190 ;doc strings kept in the DOC file rather than in core, | |
191 ;you may load them with a "site-load.el" file. | |
192 ;But you must also cause them to be scanned when the DOC file | |
445 | 193 ;is generated. For VMS, you must edit ../vms/makedoc.com. |
13316 | 194 ;For other systems, you must edit ../src/Makefile.in. |
35 | 195 (if (load "site-load" t) |
196 (garbage-collect)) | |
197 | |
12299
d4e2494f12cb
Call precompute-menubar-bindings.
Richard M. Stallman <rms@gnu.org>
parents:
11398
diff
changeset
|
198 (if (fboundp 'x-popup-menu) |
d4e2494f12cb
Call precompute-menubar-bindings.
Richard M. Stallman <rms@gnu.org>
parents:
11398
diff
changeset
|
199 (precompute-menubar-bindings)) |
d4e2494f12cb
Call precompute-menubar-bindings.
Richard M. Stallman <rms@gnu.org>
parents:
11398
diff
changeset
|
200 ;; Turn on recording of which commands get rebound, |
d4e2494f12cb
Call precompute-menubar-bindings.
Richard M. Stallman <rms@gnu.org>
parents:
11398
diff
changeset
|
201 ;; for the sake of the next call to precompute-menubar-bindings. |
d4e2494f12cb
Call precompute-menubar-bindings.
Richard M. Stallman <rms@gnu.org>
parents:
11398
diff
changeset
|
202 (setq define-key-rebound-commands nil) |
d4e2494f12cb
Call precompute-menubar-bindings.
Richard M. Stallman <rms@gnu.org>
parents:
11398
diff
changeset
|
203 |
5489
3f6777439468
Extend emacs-version based on which executable files exist.
Richard M. Stallman <rms@gnu.org>
parents:
5459
diff
changeset
|
204 ;; Determine which last version number to use |
3f6777439468
Extend emacs-version based on which executable files exist.
Richard M. Stallman <rms@gnu.org>
parents:
5459
diff
changeset
|
205 ;; based on the executables that now exist. |
6540
fd0c4b42a63b
Don't test for presence of dump-emacs.
Richard M. Stallman <rms@gnu.org>
parents:
6318
diff
changeset
|
206 (if (and (or (equal (nth 3 command-line-args) "dump") |
fd0c4b42a63b
Don't test for presence of dump-emacs.
Richard M. Stallman <rms@gnu.org>
parents:
6318
diff
changeset
|
207 (equal (nth 4 command-line-args) "dump")) |
fd0c4b42a63b
Don't test for presence of dump-emacs.
Richard M. Stallman <rms@gnu.org>
parents:
6318
diff
changeset
|
208 (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>
parents:
13316
diff
changeset
|
209 (let* ((base (concat "emacs-" emacs-version ".")) |
5489
3f6777439468
Extend emacs-version based on which executable files exist.
Richard M. Stallman <rms@gnu.org>
parents:
5459
diff
changeset
|
210 (files (file-name-all-completions base default-directory)) |
3f6777439468
Extend emacs-version based on which executable files exist.
Richard M. Stallman <rms@gnu.org>
parents:
5459
diff
changeset
|
211 (versions (mapcar (function (lambda (name) |
13366 | 212 (string-to-int (substring name (length base))))) |
5489
3f6777439468
Extend emacs-version based on which executable files exist.
Richard M. Stallman <rms@gnu.org>
parents:
5459
diff
changeset
|
213 files))) |
3f6777439468
Extend emacs-version based on which executable files exist.
Richard M. Stallman <rms@gnu.org>
parents:
5459
diff
changeset
|
214 (setq emacs-version (format "%s.%d" |
3f6777439468
Extend emacs-version based on which executable files exist.
Richard M. Stallman <rms@gnu.org>
parents:
5459
diff
changeset
|
215 emacs-version |
5509
5d907d4216ce
If there are no subversions yet, use 1.
Richard M. Stallman <rms@gnu.org>
parents:
5505
diff
changeset
|
216 (if versions |
5d907d4216ce
If there are no subversions yet, use 1.
Richard M. Stallman <rms@gnu.org>
parents:
5505
diff
changeset
|
217 (1+ (apply 'max versions)) |
5d907d4216ce
If there are no subversions yet, use 1.
Richard M. Stallman <rms@gnu.org>
parents:
5505
diff
changeset
|
218 1))))) |
5489
3f6777439468
Extend emacs-version based on which executable files exist.
Richard M. Stallman <rms@gnu.org>
parents:
5459
diff
changeset
|
219 |
35 | 220 ;; Note: all compiled Lisp files loaded above this point |
221 ;; must be among the ones parsed by make-docfile | |
222 ;; to construct DOC. Any that are not processed | |
223 ;; for DOC will not have doc strings in the dumped Emacs. | |
224 | |
225 (message "Finding pointers to doc strings...") | |
6540
fd0c4b42a63b
Don't test for presence of dump-emacs.
Richard M. Stallman <rms@gnu.org>
parents:
6318
diff
changeset
|
226 (if (or (equal (nth 3 command-line-args) "dump") |
fd0c4b42a63b
Don't test for presence of dump-emacs.
Richard M. Stallman <rms@gnu.org>
parents:
6318
diff
changeset
|
227 (equal (nth 4 command-line-args) "dump")) |
35 | 228 (let ((name emacs-version)) |
229 (while (string-match "[^-+_.a-zA-Z0-9]+" name) | |
230 (setq name (concat (downcase (substring name 0 (match-beginning 0))) | |
231 "-" | |
232 (substring name (match-end 0))))) | |
9783
7d8fc4b4f60d
On windows-nt, load ls-lisp and winnt.
Richard M. Stallman <rms@gnu.org>
parents:
9752
diff
changeset
|
233 (if (memq system-type '(ms-dos windows-nt)) |
9572 | 234 (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>
parents:
15257
diff
changeset
|
235 (if (fboundp 'x-create-frame) "DOC-X" "DOC") "../etc")) |
5459
ff128e39003b
[ms-dos]: Preload mouse.el, dos-fns.el,
Richard M. Stallman <rms@gnu.org>
parents:
2806
diff
changeset
|
236 (setq name (concat (expand-file-name "../etc/DOC-") name)) |
ff128e39003b
[ms-dos]: Preload mouse.el, dos-fns.el,
Richard M. Stallman <rms@gnu.org>
parents:
2806
diff
changeset
|
237 (if (file-exists-p name) |
ff128e39003b
[ms-dos]: Preload mouse.el, dos-fns.el,
Richard M. Stallman <rms@gnu.org>
parents:
2806
diff
changeset
|
238 (delete-file name)) |
ff128e39003b
[ms-dos]: Preload mouse.el, dos-fns.el,
Richard M. Stallman <rms@gnu.org>
parents:
2806
diff
changeset
|
239 (copy-file (expand-file-name "../etc/DOC") name t)) |
1065 | 240 (Snarf-documentation (file-name-nondirectory name))) |
1113 | 241 (Snarf-documentation "DOC")) |
35 | 242 (message "Finding pointers to doc strings...done") |
243 | |
244 ;Note: You can cause additional libraries to be preloaded | |
245 ;by writing a site-init.el that loads them. | |
246 ;See also "site-load" above. | |
247 (load "site-init" t) | |
8184
8ccef13ebe58
(current-load-list): Set it to nil.
Richard M. Stallman <rms@gnu.org>
parents:
7372
diff
changeset
|
248 (setq current-load-list nil) |
35 | 249 (garbage-collect) |
250 | |
648 | 251 ;;; At this point, we're ready to resume undo recording for scratch. |
252 (buffer-enable-undo "*scratch*") | |
253 | |
35 | 254 (if (or (equal (nth 3 command-line-args) "dump") |
255 (equal (nth 4 command-line-args) "dump")) | |
256 (if (eq system-type 'vax-vms) | |
257 (progn | |
258 (message "Dumping data as file temacs.dump") | |
259 (dump-emacs "temacs.dump" "temacs") | |
260 (kill-emacs)) | |
261 (let ((name (concat "emacs-" emacs-version))) | |
262 (while (string-match "[^-+_.a-zA-Z0-9]+" name) | |
263 (setq name (concat (downcase (substring name 0 (match-beginning 0))) | |
264 "-" | |
265 (substring name (match-end 0))))) | |
5459
ff128e39003b
[ms-dos]: Preload mouse.el, dos-fns.el,
Richard M. Stallman <rms@gnu.org>
parents:
2806
diff
changeset
|
266 (if (eq system-type 'ms-dos) |
ff128e39003b
[ms-dos]: Preload mouse.el, dos-fns.el,
Richard M. Stallman <rms@gnu.org>
parents:
2806
diff
changeset
|
267 (message "Dumping under the name emacs") |
ff128e39003b
[ms-dos]: Preload mouse.el, dos-fns.el,
Richard M. Stallman <rms@gnu.org>
parents:
2806
diff
changeset
|
268 (message "Dumping under names emacs and %s" name))) |
35 | 269 (condition-case () |
1703
b5fbc3880aa3
* loadup.el: Dump under the name `emacs', not `xemacs'.
Jim Blandy <jimb@redhat.com>
parents:
1692
diff
changeset
|
270 (delete-file "emacs") |
35 | 271 (file-error nil)) |
1703
b5fbc3880aa3
* loadup.el: Dump under the name `emacs', not `xemacs'.
Jim Blandy <jimb@redhat.com>
parents:
1692
diff
changeset
|
272 ;; We used to dump under the name xemacs, but that occasionally |
b5fbc3880aa3
* loadup.el: Dump under the name `emacs', not `xemacs'.
Jim Blandy <jimb@redhat.com>
parents:
1692
diff
changeset
|
273 ;; confused people installing Emacs (they'd install the file |
b5fbc3880aa3
* loadup.el: Dump under the name `emacs', not `xemacs'.
Jim Blandy <jimb@redhat.com>
parents:
1692
diff
changeset
|
274 ;; under the name `xemacs'), and it's inconsistent with every |
b5fbc3880aa3
* loadup.el: Dump under the name `emacs', not `xemacs'.
Jim Blandy <jimb@redhat.com>
parents:
1692
diff
changeset
|
275 ;; other GNU product's build process. |
b5fbc3880aa3
* loadup.el: Dump under the name `emacs', not `xemacs'.
Jim Blandy <jimb@redhat.com>
parents:
1692
diff
changeset
|
276 (dump-emacs "emacs" "temacs") |
9752
113f20118cc3
Load facemenu if have X.
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
277 (message "%d pure bytes used" pure-bytes-used) |
35 | 278 ;; Recompute NAME now, so that it isn't set when we dump. |
11398 | 279 (if (not (memq system-type '(ms-dos windows-nt))) |
5459
ff128e39003b
[ms-dos]: Preload mouse.el, dos-fns.el,
Richard M. Stallman <rms@gnu.org>
parents:
2806
diff
changeset
|
280 (let ((name (concat "emacs-" emacs-version))) |
ff128e39003b
[ms-dos]: Preload mouse.el, dos-fns.el,
Richard M. Stallman <rms@gnu.org>
parents:
2806
diff
changeset
|
281 (while (string-match "[^-+_.a-zA-Z0-9]+" name) |
ff128e39003b
[ms-dos]: Preload mouse.el, dos-fns.el,
Richard M. Stallman <rms@gnu.org>
parents:
2806
diff
changeset
|
282 (setq name (concat (downcase (substring name 0 (match-beginning 0))) |
ff128e39003b
[ms-dos]: Preload mouse.el, dos-fns.el,
Richard M. Stallman <rms@gnu.org>
parents:
2806
diff
changeset
|
283 "-" |
ff128e39003b
[ms-dos]: Preload mouse.el, dos-fns.el,
Richard M. Stallman <rms@gnu.org>
parents:
2806
diff
changeset
|
284 (substring name (match-end 0))))) |
ff128e39003b
[ms-dos]: Preload mouse.el, dos-fns.el,
Richard M. Stallman <rms@gnu.org>
parents:
2806
diff
changeset
|
285 (add-name-to-file "emacs" name t))) |
35 | 286 (kill-emacs))) |
287 | |
288 ;; Avoid error if user loads some more libraries now. | |
289 (setq purify-flag nil) | |
290 | |
291 ;; For machines with CANNOT_DUMP defined in config.h, | |
292 ;; this file must be loaded each time Emacs is run. | |
293 ;; So run the startup code now. | |
294 | |
9515
64a4d29fb831
(Evaluating top-level): Don't load loadup.el again.
Richard M. Stallman <rms@gnu.org>
parents:
9512
diff
changeset
|
295 (or (equal (nth 3 command-line-args) "dump") |
64a4d29fb831
(Evaluating top-level): Don't load loadup.el again.
Richard M. Stallman <rms@gnu.org>
parents:
9512
diff
changeset
|
296 (equal (nth 4 command-line-args) "dump") |
64a4d29fb831
(Evaluating top-level): Don't load loadup.el again.
Richard M. Stallman <rms@gnu.org>
parents:
9512
diff
changeset
|
297 (progn |
64a4d29fb831
(Evaluating top-level): Don't load loadup.el again.
Richard M. Stallman <rms@gnu.org>
parents:
9512
diff
changeset
|
298 ;; Avoid loading loadup.el a second time! |
64a4d29fb831
(Evaluating top-level): Don't load loadup.el again.
Richard M. Stallman <rms@gnu.org>
parents:
9512
diff
changeset
|
299 (setq command-line-args (cdr (cdr command-line-args))) |
64a4d29fb831
(Evaluating top-level): Don't load loadup.el again.
Richard M. Stallman <rms@gnu.org>
parents:
9512
diff
changeset
|
300 (eval top-level))) |
659
505130d1ddf8
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
648
diff
changeset
|
301 |
505130d1ddf8
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
648
diff
changeset
|
302 ;;; loadup.el ends here |