Mercurial > emacs
annotate lisp/loadup.el @ 9486:66079477d0e6
* texinfo.el: (texinfo-mode): Set font-lock-defaults.
author | Simon Marshall <simon@gnu.org> |
---|---|
date | Wed, 12 Oct 1994 09:21:47 +0000 |
parents | 973eafd9f349 |
children | b2aaf43191aa |
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 | |
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 |
648 | 32 ;;; We don't want to have any undo records in the dumped Emacs. |
33 (buffer-disable-undo "*scratch*") | |
35 | 34 |
35 (load "subr") | |
755 | 36 (garbage-collect) |
767
02bfc9709961
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
758
diff
changeset
|
37 (load "byte-run") |
758 | 38 (garbage-collect) |
408
66f3891c43fd
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
393
diff
changeset
|
39 (load "map-ynp") |
35 | 40 (garbage-collect) |
41 (load "loaddefs.el") ;Don't get confused if someone compiled loaddefs by mistake. | |
42 (garbage-collect) | |
43 (load "simple") | |
44 (garbage-collect) | |
45 (load "help") | |
46 (garbage-collect) | |
47 (load "files") | |
48 (garbage-collect) | |
49 (load "indent") | |
755 | 50 (garbage-collect) |
35 | 51 (load "window") |
393 | 52 (garbage-collect) |
779 | 53 (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
|
54 (progn |
fc90a9d80b5f
Preload mouse, scroll-bar and select if have multi-frames.
Richard M. Stallman <rms@gnu.org>
parents:
1703
diff
changeset
|
55 (load "frame") |
fc90a9d80b5f
Preload mouse, scroll-bar and select if have multi-frames.
Richard M. Stallman <rms@gnu.org>
parents:
1703
diff
changeset
|
56 (load "mouse") |
fc90a9d80b5f
Preload mouse, scroll-bar and select if have multi-frames.
Richard M. Stallman <rms@gnu.org>
parents:
1703
diff
changeset
|
57 (garbage-collect) |
8184
8ccef13ebe58
(current-load-list): Set it to nil.
Richard M. Stallman <rms@gnu.org>
parents:
7372
diff
changeset
|
58 (load "faces") |
8ccef13ebe58
(current-load-list): Set it to nil.
Richard M. Stallman <rms@gnu.org>
parents:
7372
diff
changeset
|
59 (garbage-collect) |
6318 | 60 (load "menu-bar") |
2806
fc90a9d80b5f
Preload mouse, scroll-bar and select if have multi-frames.
Richard M. Stallman <rms@gnu.org>
parents:
1703
diff
changeset
|
61 (load "scroll-bar") |
fc90a9d80b5f
Preload mouse, scroll-bar and select if have multi-frames.
Richard M. Stallman <rms@gnu.org>
parents:
1703
diff
changeset
|
62 (load "select"))) |
755 | 63 (garbage-collect) |
35 | 64 (load "paths.el") ;Don't get confused if someone compiled paths by mistake. |
65 (garbage-collect) | |
66 (load "startup") | |
755 | 67 (garbage-collect) |
35 | 68 (load "lisp") |
69 (garbage-collect) | |
70 (load "page") | |
755 | 71 (garbage-collect) |
35 | 72 (load "register") |
73 (garbage-collect) | |
74 (load "paragraphs") | |
755 | 75 (garbage-collect) |
35 | 76 (load "lisp-mode") |
77 (garbage-collect) | |
78 (load "text-mode") | |
755 | 79 (garbage-collect) |
35 | 80 (load "fill") |
81 (garbage-collect) | |
82 (load "c-mode") | |
83 (garbage-collect) | |
84 (load "isearch") | |
85 (garbage-collect) | |
86 (load "replace") | |
87 (if (eq system-type 'vax-vms) | |
88 (progn | |
89 (garbage-collect) | |
90 (load "vmsproc"))) | |
91 (garbage-collect) | |
92 (load "abbrev") | |
93 (garbage-collect) | |
94 (load "buff-menu") | |
95 (if (eq system-type 'vax-vms) | |
96 (progn | |
97 (garbage-collect) | |
98 (load "vms-patch"))) | |
5459
ff128e39003b
[ms-dos]: Preload mouse.el, dos-fns.el,
Richard M. Stallman <rms@gnu.org>
parents:
2806
diff
changeset
|
99 (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
|
100 (progn |
ff128e39003b
[ms-dos]: Preload mouse.el, dos-fns.el,
Richard M. Stallman <rms@gnu.org>
parents:
2806
diff
changeset
|
101 (load "ls-lisp") |
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 "mouse") |
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 "dos-fns") |
ff128e39003b
[ms-dos]: Preload mouse.el, dos-fns.el,
Richard M. Stallman <rms@gnu.org>
parents:
2806
diff
changeset
|
106 (garbage-collect) |
ff128e39003b
[ms-dos]: Preload mouse.el, dos-fns.el,
Richard M. Stallman <rms@gnu.org>
parents:
2806
diff
changeset
|
107 (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
|
108 (garbage-collect))) |
35 | 109 (if (fboundp 'atan) ; preload some constants and |
110 (progn ; floating pt. functions if | |
111 (garbage-collect) ; we have float support. | |
112 (load "float-sup"))) | |
9442
973eafd9f349
Write the subdirs.el file.
Richard M. Stallman <rms@gnu.org>
parents:
8184
diff
changeset
|
113 |
927 | 114 (garbage-collect) |
115 (load "vc-hooks") | |
35 | 116 |
9442
973eafd9f349
Write the subdirs.el file.
Richard M. Stallman <rms@gnu.org>
parents:
8184
diff
changeset
|
117 ;; Write a file subdirs.el into the Lisp directory |
973eafd9f349
Write the subdirs.el file.
Richard M. Stallman <rms@gnu.org>
parents:
8184
diff
changeset
|
118 ;; containing the names of the subdirs of that directory |
973eafd9f349
Write the subdirs.el file.
Richard M. Stallman <rms@gnu.org>
parents:
8184
diff
changeset
|
119 ;; which we should check for Lisp files. |
973eafd9f349
Write the subdirs.el file.
Richard M. Stallman <rms@gnu.org>
parents:
8184
diff
changeset
|
120 (message "Writing subdirs.el...") |
973eafd9f349
Write the subdirs.el file.
Richard M. Stallman <rms@gnu.org>
parents:
8184
diff
changeset
|
121 (let ((files (directory-files "../lisp/" nil nil t)) |
973eafd9f349
Write the subdirs.el file.
Richard M. Stallman <rms@gnu.org>
parents:
8184
diff
changeset
|
122 (buffer-undo-list t) |
973eafd9f349
Write the subdirs.el file.
Richard M. Stallman <rms@gnu.org>
parents:
8184
diff
changeset
|
123 new) |
973eafd9f349
Write the subdirs.el file.
Richard M. Stallman <rms@gnu.org>
parents:
8184
diff
changeset
|
124 (while files |
973eafd9f349
Write the subdirs.el file.
Richard M. Stallman <rms@gnu.org>
parents:
8184
diff
changeset
|
125 (if (and (not (member (car files) '("." ".." "term" "RCS"))) |
973eafd9f349
Write the subdirs.el file.
Richard M. Stallman <rms@gnu.org>
parents:
8184
diff
changeset
|
126 (not (string-match "\\.elc?$" (car files))) |
973eafd9f349
Write the subdirs.el file.
Richard M. Stallman <rms@gnu.org>
parents:
8184
diff
changeset
|
127 (file-directory-p (expand-file-name (car files) "../lisp/"))) |
973eafd9f349
Write the subdirs.el file.
Richard M. Stallman <rms@gnu.org>
parents:
8184
diff
changeset
|
128 (setq new (cons (car files) new))) |
973eafd9f349
Write the subdirs.el file.
Richard M. Stallman <rms@gnu.org>
parents:
8184
diff
changeset
|
129 (setq files (cdr files))) |
973eafd9f349
Write the subdirs.el file.
Richard M. Stallman <rms@gnu.org>
parents:
8184
diff
changeset
|
130 (insert ";; In load-path, after this directory should come\n") |
973eafd9f349
Write the subdirs.el file.
Richard M. Stallman <rms@gnu.org>
parents:
8184
diff
changeset
|
131 (insert ";; certain of its subdirectories. Here we specify them.\n") |
973eafd9f349
Write the subdirs.el file.
Richard M. Stallman <rms@gnu.org>
parents:
8184
diff
changeset
|
132 (prin1 (list 'normal-top-level-add-to-load-path |
973eafd9f349
Write the subdirs.el file.
Richard M. Stallman <rms@gnu.org>
parents:
8184
diff
changeset
|
133 (list 'quote new)) (current-buffer)) |
973eafd9f349
Write the subdirs.el file.
Richard M. Stallman <rms@gnu.org>
parents:
8184
diff
changeset
|
134 (write-region (point-min) (point-max) |
973eafd9f349
Write the subdirs.el file.
Richard M. Stallman <rms@gnu.org>
parents:
8184
diff
changeset
|
135 (expand-file-name "subdirs.el" "../lisp/")) |
973eafd9f349
Write the subdirs.el file.
Richard M. Stallman <rms@gnu.org>
parents:
8184
diff
changeset
|
136 (erase-buffer)) |
973eafd9f349
Write the subdirs.el file.
Richard M. Stallman <rms@gnu.org>
parents:
8184
diff
changeset
|
137 |
5505
3e7c458f3d7f
Load version.el before site-load.el.
Richard M. Stallman <rms@gnu.org>
parents:
5489
diff
changeset
|
138 ;; 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
|
139 (load "version.el") |
3e7c458f3d7f
Load version.el before site-load.el.
Richard M. Stallman <rms@gnu.org>
parents:
5489
diff
changeset
|
140 |
35 | 141 ;If you want additional libraries to be preloaded and their |
142 ;doc strings kept in the DOC file rather than in core, | |
143 ;you may load them with a "site-load.el" file. | |
144 ;But you must also cause them to be scanned when the DOC file | |
445 | 145 ;is generated. For VMS, you must edit ../vms/makedoc.com. |
6946 | 146 ;For other systems, you must edit ../src/Makefile.in.in. |
35 | 147 (if (load "site-load" t) |
148 (garbage-collect)) | |
149 | |
5489
3f6777439468
Extend emacs-version based on which executable files exist.
Richard M. Stallman <rms@gnu.org>
parents:
5459
diff
changeset
|
150 ;; 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
|
151 ;; 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
|
152 (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
|
153 (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
|
154 (not (eq system-type 'ms-dos))) |
5489
3f6777439468
Extend emacs-version based on which executable files exist.
Richard M. Stallman <rms@gnu.org>
parents:
5459
diff
changeset
|
155 (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
|
156 (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
|
157 (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
|
158 (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
|
159 files))) |
3f6777439468
Extend emacs-version based on which executable files exist.
Richard M. Stallman <rms@gnu.org>
parents:
5459
diff
changeset
|
160 (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
|
161 emacs-version |
5509
5d907d4216ce
If there are no subversions yet, use 1.
Richard M. Stallman <rms@gnu.org>
parents:
5505
diff
changeset
|
162 (if versions |
5d907d4216ce
If there are no subversions yet, use 1.
Richard M. Stallman <rms@gnu.org>
parents:
5505
diff
changeset
|
163 (1+ (apply 'max versions)) |
5d907d4216ce
If there are no subversions yet, use 1.
Richard M. Stallman <rms@gnu.org>
parents:
5505
diff
changeset
|
164 1))))) |
5489
3f6777439468
Extend emacs-version based on which executable files exist.
Richard M. Stallman <rms@gnu.org>
parents:
5459
diff
changeset
|
165 |
35 | 166 ;; Note: all compiled Lisp files loaded above this point |
167 ;; must be among the ones parsed by make-docfile | |
168 ;; to construct DOC. Any that are not processed | |
169 ;; for DOC will not have doc strings in the dumped Emacs. | |
170 | |
171 (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
|
172 (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
|
173 (equal (nth 4 command-line-args) "dump")) |
35 | 174 (let ((name emacs-version)) |
175 (while (string-match "[^-+_.a-zA-Z0-9]+" name) | |
176 (setq name (concat (downcase (substring name 0 (match-beginning 0))) | |
177 "-" | |
178 (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
|
179 (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
|
180 (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
|
181 (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
|
182 (if (file-exists-p name) |
ff128e39003b
[ms-dos]: Preload mouse.el, dos-fns.el,
Richard M. Stallman <rms@gnu.org>
parents:
2806
diff
changeset
|
183 (delete-file name)) |
ff128e39003b
[ms-dos]: Preload mouse.el, dos-fns.el,
Richard M. Stallman <rms@gnu.org>
parents:
2806
diff
changeset
|
184 (copy-file (expand-file-name "../etc/DOC") name t)) |
1065 | 185 (Snarf-documentation (file-name-nondirectory name))) |
1113 | 186 (Snarf-documentation "DOC")) |
35 | 187 (message "Finding pointers to doc strings...done") |
188 | |
189 ;Note: You can cause additional libraries to be preloaded | |
190 ;by writing a site-init.el that loads them. | |
191 ;See also "site-load" above. | |
192 (load "site-init" t) | |
8184
8ccef13ebe58
(current-load-list): Set it to nil.
Richard M. Stallman <rms@gnu.org>
parents:
7372
diff
changeset
|
193 (setq current-load-list nil) |
35 | 194 (garbage-collect) |
195 | |
648 | 196 ;;; At this point, we're ready to resume undo recording for scratch. |
197 (buffer-enable-undo "*scratch*") | |
198 | |
35 | 199 (if (or (equal (nth 3 command-line-args) "dump") |
200 (equal (nth 4 command-line-args) "dump")) | |
201 (if (eq system-type 'vax-vms) | |
202 (progn | |
203 (message "Dumping data as file temacs.dump") | |
204 (dump-emacs "temacs.dump" "temacs") | |
205 (kill-emacs)) | |
206 (let ((name (concat "emacs-" emacs-version))) | |
207 (while (string-match "[^-+_.a-zA-Z0-9]+" name) | |
208 (setq name (concat (downcase (substring name 0 (match-beginning 0))) | |
209 "-" | |
210 (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
|
211 (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
|
212 (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
|
213 (message "Dumping under names emacs and %s" name))) |
35 | 214 (condition-case () |
1703
b5fbc3880aa3
* loadup.el: Dump under the name `emacs', not `xemacs'.
Jim Blandy <jimb@redhat.com>
parents:
1692
diff
changeset
|
215 (delete-file "emacs") |
35 | 216 (file-error nil)) |
1703
b5fbc3880aa3
* loadup.el: Dump under the name `emacs', not `xemacs'.
Jim Blandy <jimb@redhat.com>
parents:
1692
diff
changeset
|
217 ;; 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
|
218 ;; 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
|
219 ;; 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
|
220 ;; 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
|
221 (dump-emacs "emacs" "temacs") |
35 | 222 ;; 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
|
223 (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
|
224 (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
|
225 (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
|
226 (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
|
227 "-" |
ff128e39003b
[ms-dos]: Preload mouse.el, dos-fns.el,
Richard M. Stallman <rms@gnu.org>
parents:
2806
diff
changeset
|
228 (substring name (match-end 0))))) |
ff128e39003b
[ms-dos]: Preload mouse.el, dos-fns.el,
Richard M. Stallman <rms@gnu.org>
parents:
2806
diff
changeset
|
229 (add-name-to-file "emacs" name t))) |
35 | 230 (kill-emacs))) |
231 | |
232 ;; Avoid error if user loads some more libraries now. | |
233 (setq purify-flag nil) | |
234 | |
235 ;; For machines with CANNOT_DUMP defined in config.h, | |
236 ;; this file must be loaded each time Emacs is run. | |
237 ;; So run the startup code now. | |
238 | |
6540
fd0c4b42a63b
Don't test for presence of dump-emacs.
Richard M. Stallman <rms@gnu.org>
parents:
6318
diff
changeset
|
239 (or (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
|
240 (equal (nth 4 command-line-args) "dump")) |
35 | 241 (eval top-level)) |
659
505130d1ddf8
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
648
diff
changeset
|
242 |
505130d1ddf8
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
648
diff
changeset
|
243 ;;; loadup.el ends here |