Mercurial > emacs
annotate lisp/loadup.el @ 5923:ee06aa87f729
Fix misspelled symbol LD_SWITCH_X_SITE_AUX.
author | Karl Heuer <kwzh@gnu.org> |
---|---|
date | Sat, 12 Feb 1994 02:26:44 +0000 |
parents | 5d907d4216ce |
children | 8ed445c84d3c |
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 |
1692
9befcd596286
Display load-path at start.
Richard M. Stallman <rms@gnu.org>
parents:
1113
diff
changeset
|
30 (message "Using load-path %s" load-path) |
9befcd596286
Display load-path at start.
Richard M. Stallman <rms@gnu.org>
parents:
1113
diff
changeset
|
31 (sleep-for 1) |
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") | |
755 | 37 (garbage-collect) |
767
02bfc9709961
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
758
diff
changeset
|
38 (load "byte-run") |
758 | 39 (garbage-collect) |
408
66f3891c43fd
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
393
diff
changeset
|
40 (load "map-ynp") |
35 | 41 (garbage-collect) |
42 (load "loaddefs.el") ;Don't get confused if someone compiled loaddefs by mistake. | |
43 (garbage-collect) | |
44 (load "simple") | |
45 (garbage-collect) | |
46 (load "help") | |
47 (garbage-collect) | |
48 (load "files") | |
49 (garbage-collect) | |
50 (load "indent") | |
755 | 51 (garbage-collect) |
35 | 52 (load "window") |
393 | 53 (garbage-collect) |
779 | 54 (if (fboundp 'delete-frame) |
2806
fc90a9d80b5f
Preload mouse, scroll-bar and select if have multi-frames.
Richard M. Stallman <rms@gnu.org>
parents:
1703
diff
changeset
|
55 (progn |
fc90a9d80b5f
Preload mouse, scroll-bar and select if have multi-frames.
Richard M. Stallman <rms@gnu.org>
parents:
1703
diff
changeset
|
56 (load "frame") |
fc90a9d80b5f
Preload mouse, scroll-bar and select if have multi-frames.
Richard M. Stallman <rms@gnu.org>
parents:
1703
diff
changeset
|
57 (load "mouse") |
fc90a9d80b5f
Preload mouse, scroll-bar and select if have multi-frames.
Richard M. Stallman <rms@gnu.org>
parents:
1703
diff
changeset
|
58 (garbage-collect) |
fc90a9d80b5f
Preload mouse, scroll-bar and select if have multi-frames.
Richard M. Stallman <rms@gnu.org>
parents:
1703
diff
changeset
|
59 (load "scroll-bar") |
fc90a9d80b5f
Preload mouse, scroll-bar and select if have multi-frames.
Richard M. Stallman <rms@gnu.org>
parents:
1703
diff
changeset
|
60 (load "select"))) |
755 | 61 (garbage-collect) |
35 | 62 (load "paths.el") ;Don't get confused if someone compiled paths by mistake. |
63 (garbage-collect) | |
64 (load "startup") | |
755 | 65 (garbage-collect) |
35 | 66 (load "lisp") |
67 (garbage-collect) | |
68 (load "page") | |
755 | 69 (garbage-collect) |
35 | 70 (load "register") |
71 (garbage-collect) | |
72 (load "paragraphs") | |
755 | 73 (garbage-collect) |
35 | 74 (load "lisp-mode") |
75 (garbage-collect) | |
76 (load "text-mode") | |
755 | 77 (garbage-collect) |
35 | 78 (load "fill") |
79 (garbage-collect) | |
80 (load "c-mode") | |
81 (garbage-collect) | |
82 (load "isearch") | |
83 (garbage-collect) | |
84 (load "replace") | |
85 (if (eq system-type 'vax-vms) | |
86 (progn | |
87 (garbage-collect) | |
88 (load "vmsproc"))) | |
89 (garbage-collect) | |
90 (load "abbrev") | |
91 (garbage-collect) | |
92 (load "buff-menu") | |
93 (if (eq system-type 'vax-vms) | |
94 (progn | |
95 (garbage-collect) | |
96 (load "vms-patch"))) | |
5459
ff128e39003b
[ms-dos]: Preload mouse.el, dos-fns.el,
Richard M. Stallman <rms@gnu.org>
parents:
2806
diff
changeset
|
97 (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
|
98 (progn |
ff128e39003b
[ms-dos]: Preload mouse.el, dos-fns.el,
Richard M. Stallman <rms@gnu.org>
parents:
2806
diff
changeset
|
99 (load "ls-lisp") |
ff128e39003b
[ms-dos]: Preload mouse.el, dos-fns.el,
Richard M. Stallman <rms@gnu.org>
parents:
2806
diff
changeset
|
100 (garbage-collect) |
ff128e39003b
[ms-dos]: Preload mouse.el, dos-fns.el,
Richard M. Stallman <rms@gnu.org>
parents:
2806
diff
changeset
|
101 (load "mouse") |
ff128e39003b
[ms-dos]: Preload mouse.el, dos-fns.el,
Richard M. Stallman <rms@gnu.org>
parents:
2806
diff
changeset
|
102 (garbage-collect) |
ff128e39003b
[ms-dos]: Preload mouse.el, dos-fns.el,
Richard M. Stallman <rms@gnu.org>
parents:
2806
diff
changeset
|
103 (load "dos-fns") |
ff128e39003b
[ms-dos]: Preload mouse.el, dos-fns.el,
Richard M. Stallman <rms@gnu.org>
parents:
2806
diff
changeset
|
104 (garbage-collect) |
ff128e39003b
[ms-dos]: Preload mouse.el, dos-fns.el,
Richard M. Stallman <rms@gnu.org>
parents:
2806
diff
changeset
|
105 (load "disp-table") ; needed to setup ibm-pc char set, see internal.el |
ff128e39003b
[ms-dos]: Preload mouse.el, dos-fns.el,
Richard M. Stallman <rms@gnu.org>
parents:
2806
diff
changeset
|
106 (garbage-collect))) |
35 | 107 (if (fboundp 'atan) ; preload some constants and |
108 (progn ; floating pt. functions if | |
109 (garbage-collect) ; we have float support. | |
110 (load "float-sup"))) | |
927 | 111 (garbage-collect) |
112 (load "vc-hooks") | |
35 | 113 |
5505
3e7c458f3d7f
Load version.el before site-load.el.
Richard M. Stallman <rms@gnu.org>
parents:
5489
diff
changeset
|
114 ;; We specify .el in case someone compiled version.el by mistake. |
3e7c458f3d7f
Load version.el before site-load.el.
Richard M. Stallman <rms@gnu.org>
parents:
5489
diff
changeset
|
115 (load "version.el") |
3e7c458f3d7f
Load version.el before site-load.el.
Richard M. Stallman <rms@gnu.org>
parents:
5489
diff
changeset
|
116 |
35 | 117 ;If you want additional libraries to be preloaded and their |
118 ;doc strings kept in the DOC file rather than in core, | |
119 ;you may load them with a "site-load.el" file. | |
120 ;But you must also cause them to be scanned when the DOC file | |
445 | 121 ;is generated. For VMS, you must edit ../vms/makedoc.com. |
35 | 122 ;For other systems, you must edit ../src/ymakefile. |
123 (if (load "site-load" t) | |
124 (garbage-collect)) | |
125 | |
5489
3f6777439468
Extend emacs-version based on which executable files exist.
Richard M. Stallman <rms@gnu.org>
parents:
5459
diff
changeset
|
126 ;; 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
|
127 ;; based on the executables that now exist. |
3f6777439468
Extend emacs-version based on which executable files exist.
Richard M. Stallman <rms@gnu.org>
parents:
5459
diff
changeset
|
128 (if (and (fboundp 'dump-emacs) (not (eq system-type 'ms-dos))) |
3f6777439468
Extend emacs-version based on which executable files exist.
Richard M. Stallman <rms@gnu.org>
parents:
5459
diff
changeset
|
129 (let* ((base (concat "emacs-" emacs-version)) |
3f6777439468
Extend emacs-version based on which executable files exist.
Richard M. Stallman <rms@gnu.org>
parents:
5459
diff
changeset
|
130 (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
|
131 (versions (mapcar (function (lambda (name) |
3f6777439468
Extend emacs-version based on which executable files exist.
Richard M. Stallman <rms@gnu.org>
parents:
5459
diff
changeset
|
132 (string-to-int (substring name (1+ (length base)))))) |
3f6777439468
Extend emacs-version based on which executable files exist.
Richard M. Stallman <rms@gnu.org>
parents:
5459
diff
changeset
|
133 files))) |
3f6777439468
Extend emacs-version based on which executable files exist.
Richard M. Stallman <rms@gnu.org>
parents:
5459
diff
changeset
|
134 (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
|
135 emacs-version |
5509
5d907d4216ce
If there are no subversions yet, use 1.
Richard M. Stallman <rms@gnu.org>
parents:
5505
diff
changeset
|
136 (if versions |
5d907d4216ce
If there are no subversions yet, use 1.
Richard M. Stallman <rms@gnu.org>
parents:
5505
diff
changeset
|
137 (1+ (apply 'max versions)) |
5d907d4216ce
If there are no subversions yet, use 1.
Richard M. Stallman <rms@gnu.org>
parents:
5505
diff
changeset
|
138 1))))) |
5489
3f6777439468
Extend emacs-version based on which executable files exist.
Richard M. Stallman <rms@gnu.org>
parents:
5459
diff
changeset
|
139 |
35 | 140 ;; Note: all compiled Lisp files loaded above this point |
141 ;; must be among the ones parsed by make-docfile | |
142 ;; to construct DOC. Any that are not processed | |
143 ;; for DOC will not have doc strings in the dumped Emacs. | |
144 | |
145 (message "Finding pointers to doc strings...") | |
146 (if (fboundp 'dump-emacs) | |
147 (let ((name emacs-version)) | |
148 (while (string-match "[^-+_.a-zA-Z0-9]+" name) | |
149 (setq name (concat (downcase (substring name 0 (match-beginning 0))) | |
150 "-" | |
151 (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
|
152 (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
|
153 (setq name (expand-file-name "../etc/DOC")) |
ff128e39003b
[ms-dos]: Preload mouse.el, dos-fns.el,
Richard M. Stallman <rms@gnu.org>
parents:
2806
diff
changeset
|
154 (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
|
155 (if (file-exists-p name) |
ff128e39003b
[ms-dos]: Preload mouse.el, dos-fns.el,
Richard M. Stallman <rms@gnu.org>
parents:
2806
diff
changeset
|
156 (delete-file name)) |
ff128e39003b
[ms-dos]: Preload mouse.el, dos-fns.el,
Richard M. Stallman <rms@gnu.org>
parents:
2806
diff
changeset
|
157 (copy-file (expand-file-name "../etc/DOC") name t)) |
1065 | 158 (Snarf-documentation (file-name-nondirectory name))) |
1113 | 159 (Snarf-documentation "DOC")) |
35 | 160 (message "Finding pointers to doc strings...done") |
161 | |
162 ;Note: You can cause additional libraries to be preloaded | |
163 ;by writing a site-init.el that loads them. | |
164 ;See also "site-load" above. | |
165 (load "site-init" t) | |
166 (garbage-collect) | |
167 | |
648 | 168 ;;; At this point, we're ready to resume undo recording for scratch. |
169 (buffer-enable-undo "*scratch*") | |
170 | |
35 | 171 (if (or (equal (nth 3 command-line-args) "dump") |
172 (equal (nth 4 command-line-args) "dump")) | |
173 (if (eq system-type 'vax-vms) | |
174 (progn | |
175 (message "Dumping data as file temacs.dump") | |
176 (dump-emacs "temacs.dump" "temacs") | |
177 (kill-emacs)) | |
178 (let ((name (concat "emacs-" emacs-version))) | |
179 (while (string-match "[^-+_.a-zA-Z0-9]+" name) | |
180 (setq name (concat (downcase (substring name 0 (match-beginning 0))) | |
181 "-" | |
182 (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
|
183 (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
|
184 (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
|
185 (message "Dumping under names emacs and %s" name))) |
35 | 186 (condition-case () |
1703
b5fbc3880aa3
* loadup.el: Dump under the name `emacs', not `xemacs'.
Jim Blandy <jimb@redhat.com>
parents:
1692
diff
changeset
|
187 (delete-file "emacs") |
35 | 188 (file-error nil)) |
1703
b5fbc3880aa3
* loadup.el: Dump under the name `emacs', not `xemacs'.
Jim Blandy <jimb@redhat.com>
parents:
1692
diff
changeset
|
189 ;; 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
|
190 ;; 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
|
191 ;; 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
|
192 ;; 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
|
193 (dump-emacs "emacs" "temacs") |
35 | 194 ;; Recompute NAME now, so that it isn't set when we dump. |
5459
ff128e39003b
[ms-dos]: Preload mouse.el, dos-fns.el,
Richard M. Stallman <rms@gnu.org>
parents:
2806
diff
changeset
|
195 (if (not (eq system-type 'ms-dos)) |
ff128e39003b
[ms-dos]: Preload mouse.el, dos-fns.el,
Richard M. Stallman <rms@gnu.org>
parents:
2806
diff
changeset
|
196 (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
|
197 (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
|
198 (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
|
199 "-" |
ff128e39003b
[ms-dos]: Preload mouse.el, dos-fns.el,
Richard M. Stallman <rms@gnu.org>
parents:
2806
diff
changeset
|
200 (substring name (match-end 0))))) |
ff128e39003b
[ms-dos]: Preload mouse.el, dos-fns.el,
Richard M. Stallman <rms@gnu.org>
parents:
2806
diff
changeset
|
201 (add-name-to-file "emacs" name t))) |
35 | 202 (kill-emacs))) |
203 | |
204 ;; Avoid error if user loads some more libraries now. | |
205 (setq purify-flag nil) | |
206 | |
207 ;; For machines with CANNOT_DUMP defined in config.h, | |
208 ;; this file must be loaded each time Emacs is run. | |
209 ;; So run the startup code now. | |
210 | |
211 (or (fboundp 'dump-emacs) | |
212 (eval top-level)) | |
659
505130d1ddf8
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
648
diff
changeset
|
213 |
505130d1ddf8
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
648
diff
changeset
|
214 ;;; loadup.el ends here |