* lisp/progmodes/xref.el (xref-push-marker-stack): Add optional arg.
[emacs.git] / lisp / loadup.el
blobbfec75fc2c9c8043141f47837b7f6058b63eec4e
1 ;;; loadup.el --- load up standardly loaded Lisp files for Emacs
3 ;; Copyright (C) 1985-1986, 1992, 1994, 2001-2015 Free Software
4 ;; Foundation, Inc.
6 ;; Maintainer: emacs-devel@gnu.org
7 ;; Keywords: internal
8 ;; Package: emacs
10 ;; This file is part of GNU Emacs.
12 ;; GNU Emacs is free software: you can redistribute it and/or modify
13 ;; it under the terms of the GNU General Public License as published by
14 ;; the Free Software Foundation, either version 3 of the License, or
15 ;; (at your option) any later version.
17 ;; GNU Emacs is distributed in the hope that it will be useful,
18 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
19 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20 ;; GNU General Public License for more details.
22 ;; You should have received a copy of the GNU General Public License
23 ;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
25 ;;; Commentary:
27 ;; This is loaded into a bare Emacs to make a dumpable one.
29 ;; If you add/remove Lisp files to be loaded here, consider the
30 ;; following issues:
32 ;; i) Any file loaded on any platform should appear in $lisp in src/lisp.mk.
33 ;; Use the .el or .elc version as appropriate.
35 ;; This ensures both that the Lisp files are compiled (if necessary)
36 ;; before the emacs executable is dumped, and that they are passed to
37 ;; make-docfile. (Any that are not processed for DOC will not have
38 ;; doc strings in the dumped Emacs.) Because of this:
40 ;; ii) If the file is loaded uncompiled, it should (where possible)
41 ;; obey the doc-string conventions expected by make-docfile. It
42 ;; should also be added to the uncompiled[] list in make-docfile.c.
44 ;;; Code:
46 ;; Add subdirectories to the load-path for files that might get
47 ;; autoloaded when bootstrapping.
48 ;; This is because PATH_DUMPLOADSEARCH is just "../lisp".
49 (if (or (equal (member "bootstrap" command-line-args) '("bootstrap"))
50 ;; FIXME this is irritatingly fragile.
51 (equal (nth 4 command-line-args) "unidata-gen.el")
52 (equal (nth 7 command-line-args) "unidata-gen-files")
53 (if (fboundp 'dump-emacs)
54 (string-match "src/bootstrap-emacs" (nth 0 command-line-args))
55 t))
56 (let ((dir (car load-path)))
57 ;; We'll probably overflow the pure space.
58 (setq purify-flag nil)
59 (setq load-path (list (expand-file-name "." dir)
60 (expand-file-name "emacs-lisp" dir)
61 (expand-file-name "language" dir)
62 (expand-file-name "international" dir)
63 (expand-file-name "textmodes" dir)
64 (expand-file-name "vc" dir)))))
66 (if (eq t purify-flag)
67 ;; Hash consing saved around 11% of pure space in my tests.
68 (setq purify-flag (make-hash-table :test 'equal :size 70000)))
70 (message "Using load-path %s" load-path)
72 ;; This is a poor man's `last', since we haven't loaded subr.el yet.
73 (if (or (equal (member "bootstrap" command-line-args) '("bootstrap"))
74 (equal (member "dump" command-line-args) '("dump")))
75 (progn
76 ;; To reduce the size of dumped Emacs, we avoid making huge char-tables.
77 (setq inhibit-load-charset-map t)
78 ;; --eval gets handled too late.
79 (defvar load--prefer-newer load-prefer-newer)
80 (setq load-prefer-newer t)))
82 ;; We don't want to have any undo records in the dumped Emacs.
83 (set-buffer "*scratch*")
84 (setq buffer-undo-list t)
86 (load "emacs-lisp/byte-run")
87 (load "emacs-lisp/backquote")
88 (load "subr")
90 ;; Do it after subr, since both after-load-functions and add-hook are
91 ;; implemented in subr.el.
92 (add-hook 'after-load-functions (lambda (f) (garbage-collect)))
94 (load "version")
96 (load "widget")
97 (load "custom")
98 (load "emacs-lisp/map-ynp")
99 (load "international/mule")
100 (load "international/mule-conf")
101 (load "env")
102 (load "format")
103 (load "bindings")
104 (load "window") ; Needed here for `replace-buffer-in-windows'.
105 (setq load-source-file-function 'load-with-code-conversion)
106 (load "files")
108 ;; Load-time macro-expansion can only take effect after setting
109 ;; load-source-file-function because of where it is called in lread.c.
110 (load "emacs-lisp/macroexp")
111 (if (byte-code-function-p (symbol-function 'macroexpand-all))
113 ;; Since loaddefs is not yet loaded, macroexp's uses of pcase will simply
114 ;; fail until pcase is explicitly loaded. This also means that we have to
115 ;; disable eager macro-expansion while loading pcase.
116 (let ((macroexp--pending-eager-loads '(skip)))
117 (load "emacs-lisp/pcase"))
118 ;; Re-load macroexp so as to eagerly macro-expand its uses of pcase.
119 (let ((max-lisp-eval-depth (* 2 max-lisp-eval-depth)))
120 (load "emacs-lisp/macroexp")))
122 (load "cus-face")
123 (load "faces") ; after here, `defface' may be used.
125 (load "button")
127 ;; We don't want to store loaddefs.el in the repository because it is
128 ;; a generated file; but it is required in order to compile the lisp files.
129 ;; When bootstrapping, we cannot generate loaddefs.el until an
130 ;; emacs binary has been built. We therefore compromise and keep
131 ;; ldefs-boot.el in the repository. This does not need to be updated
132 ;; as often as the real loaddefs.el would. Bootstrap should always
133 ;; work with ldefs-boot.el. Therefore, Whenever a new autoload cookie
134 ;; gets added that is necessary during bootstrapping, ldefs-boot.el
135 ;; should be updated by overwriting it with an up-to-date copy of
136 ;; loaddefs.el that is uncorrupted by local changes.
137 ;; autogen/update_autogen can be used to periodically update ldefs-boot.
138 (condition-case nil
139 ;; Don't get confused if someone compiled this by mistake.
140 (load "loaddefs.el")
141 ;; In case loaddefs hasn't been generated yet.
142 (file-error (load "ldefs-boot.el")))
144 (load "emacs-lisp/nadvice")
145 (load "emacs-lisp/cl-preloaded")
146 (load "minibuffer") ;After loaddefs, for define-minor-mode.
147 (load "abbrev") ;lisp-mode.el and simple.el use define-abbrev-table.
148 (load "simple")
150 (load "help")
152 (load "jka-cmpr-hook")
153 (load "epa-hook")
154 ;; Any Emacs Lisp source file (*.el) loaded here after can contain
155 ;; multilingual text.
156 (load "international/mule-cmds")
157 (load "case-table")
158 ;; This file doesn't exist when building a development version of Emacs
159 ;; from the repository. It is generated just after temacs is built.
160 (load "international/charprop.el" t)
161 (load "international/characters")
162 (load "composite")
164 ;; Load language-specific files.
165 (load "language/chinese")
166 (load "language/cyrillic")
167 (load "language/indian")
168 (load "language/sinhala")
169 (load "language/english")
170 (load "language/ethiopic")
171 (load "language/european")
172 (load "language/czech")
173 (load "language/slovak")
174 (load "language/romanian")
175 (load "language/greek")
176 (load "language/hebrew")
177 (load "language/japanese")
178 (load "language/korean")
179 (load "language/lao")
180 (load "language/tai-viet")
181 (load "language/thai")
182 (load "language/tibetan")
183 (load "language/vietnamese")
184 (load "language/misc-lang")
185 (load "language/utf-8-lang")
186 (load "language/georgian")
187 (load "language/khmer")
188 (load "language/burmese")
189 (load "language/cham")
191 (load "indent")
192 (load "frame")
193 (load "startup")
194 (load "term/tty-colors")
195 (load "font-core")
196 ;; facemenu must be loaded before font-lock, because `facemenu-keymap'
197 ;; needs to be defined when font-lock is loaded.
198 (load "facemenu")
199 (load "emacs-lisp/syntax")
200 (load "font-lock")
201 (load "jit-lock")
203 (load "mouse")
204 (if (boundp 'x-toolkit-scroll-bars)
205 (load "scroll-bar"))
206 (load "select")
207 (load "emacs-lisp/timer")
208 (load "isearch")
209 (load "rfn-eshadow")
211 (load "menu-bar")
212 (load "emacs-lisp/lisp")
213 (load "textmodes/page")
214 (load "register")
215 (load "textmodes/paragraphs")
216 (load "progmodes/prog-mode")
217 (load "emacs-lisp/lisp-mode")
218 (load "progmodes/elisp-mode")
219 (load "textmodes/text-mode")
220 (load "textmodes/fill")
221 (load "newcomment")
223 (load "replace")
224 (load "emacs-lisp/tabulated-list")
225 (load "buff-menu")
227 (if (fboundp 'x-create-frame)
228 (progn
229 (load "fringe")
230 ;; Needed by `imagemagick-register-types'
231 (load "emacs-lisp/regexp-opt")
232 (load "image")
233 (load "international/fontset")
234 (load "dnd")
235 (load "tool-bar")))
237 (if (featurep 'dynamic-setting)
238 (load "dynamic-setting"))
240 (if (featurep 'x)
241 (progn
242 (load "x-dnd")
243 (load "term/common-win")
244 (load "term/x-win")))
246 (if (or (eq system-type 'windows-nt)
247 (featurep 'w32))
248 (progn
249 (load "term/common-win")
250 (load "w32-vars")
251 (load "term/w32-win")
252 (load "disp-table")
253 (when (eq system-type 'windows-nt)
254 (load "w32-fns")
255 (load "ls-lisp")
256 (load "dos-w32"))))
257 (if (eq system-type 'ms-dos)
258 (progn
259 (load "dos-w32")
260 (load "dos-fns")
261 (load "dos-vars")
262 ;; Don't load term/common-win: it isn't appropriate for the `pc'
263 ;; ``window system'', which generally behaves like a terminal.
264 (load "term/internal")
265 (load "term/pc-win")
266 (load "ls-lisp")
267 (load "disp-table"))) ; needed to setup ibm-pc char set, see internal.el
268 (if (featurep 'ns)
269 (progn
270 (load "term/common-win")
271 (load "term/ns-win")))
272 (if (fboundp 'x-create-frame)
273 ;; Do it after loading term/foo-win.el since the value of the
274 ;; mouse-wheel-*-event vars depends on those files being loaded or not.
275 (load "mwheel"))
276 ;; Preload some constants and floating point functions.
277 (load "emacs-lisp/float-sup")
279 (load "vc/vc-hooks")
280 (load "vc/ediff-hook")
281 (load "uniquify")
282 (load "electric")
283 (load "emacs-lisp/eldoc")
284 (load "cus-start") ;Late to reduce customize-rogue (needs loaddefs.el anyway)
285 (if (not (eq system-type 'ms-dos)) (load "tooltip"))
287 ;; This file doesn't exist when building a development version of Emacs
288 ;; from the repository. It is generated just after temacs is built.
289 (load "leim/leim-list.el" t)
291 ;; If you want additional libraries to be preloaded and their
292 ;; doc strings kept in the DOC file rather than in core,
293 ;; you may load them with a "site-load.el" file.
294 ;; But you must also cause them to be scanned when the DOC file
295 ;; is generated.
296 (let ((lp load-path))
297 (load "site-load" t)
298 ;; We reset load-path after dumping.
299 ;; For a permanent change in load-path, use configure's
300 ;; --enable-locallisppath option.
301 ;; See http://debbugs.gnu.org/16107 for more details.
302 (or (equal lp load-path)
303 (message "Warning: Change in load-path due to site-load will be \
304 lost after dumping")))
306 ;; Make sure default-directory is unibyte when dumping. This is
307 ;; because we cannot decode and encode it correctly (since the locale
308 ;; environment is not, and should not be, set up). default-directory
309 ;; is used every time we call expand-file-name, which we do in every
310 ;; file primitive. So the only workable solution to support building
311 ;; in non-ASCII directories is to manipulate unibyte strings in the
312 ;; current locale's encoding.
313 (if (and (member (car (last command-line-args)) '("dump" "bootstrap"))
314 (multibyte-string-p default-directory))
315 (error "default-directory must be unibyte when dumping Emacs!"))
317 ;; Determine which last version number to use
318 ;; based on the executables that now exist.
319 (if (and (equal (last command-line-args) '("dump"))
320 (not (eq system-type 'ms-dos)))
321 (let* ((base (concat "emacs-" emacs-version "."))
322 (exelen (if (eq system-type 'windows-nt) -4))
323 (files (file-name-all-completions base default-directory))
324 (versions (mapcar (function
325 (lambda (name)
326 (string-to-number
327 (substring name (length base) exelen))))
328 files)))
329 (setq emacs-repository-version (condition-case nil (emacs-repository-get-version)
330 (error nil)))
331 ;; `emacs-version' is a constant, so we shouldn't change it with `setq'.
332 (defconst emacs-version
333 (format "%s.%d"
334 emacs-version (if versions (1+ (apply 'max versions)) 1)))))
337 (message "Finding pointers to doc strings...")
338 (if (equal (last command-line-args) '("dump"))
339 (Snarf-documentation "DOC")
340 (condition-case nil
341 (Snarf-documentation "DOC")
342 (error nil)))
343 (message "Finding pointers to doc strings...done")
345 ;; Note: You can cause additional libraries to be preloaded
346 ;; by writing a site-init.el that loads them.
347 ;; See also "site-load" above
348 (let ((lp load-path))
349 (load "site-init" t)
350 (or (equal lp load-path)
351 (message "Warning: Change in load-path due to site-init will be \
352 lost after dumping")))
354 (setq current-load-list nil)
356 ;; We keep the load-history data in PURE space.
357 ;; Make sure that the spine of the list is not in pure space because it can
358 ;; be destructively mutated in lread.c:build_load_history.
359 (setq load-history (mapcar 'purecopy load-history))
361 (set-buffer-modified-p nil)
363 (remove-hook 'after-load-functions (lambda (f) (garbage-collect)))
365 (if (boundp 'load--prefer-newer)
366 (progn
367 (setq load-prefer-newer load--prefer-newer)
368 (put 'load-prefer-newer 'standard-value load--prefer-newer)
369 (makunbound 'load--prefer-newer)))
371 (setq inhibit-load-charset-map nil)
372 (clear-charset-maps)
373 (garbage-collect)
375 ;; At this point, we're ready to resume undo recording for scratch.
376 (buffer-enable-undo "*scratch*")
378 (when (hash-table-p purify-flag)
379 (let ((strings 0)
380 (vectors 0)
381 (bytecodes 0)
382 (conses 0)
383 (others 0))
384 (maphash (lambda (k v)
385 (cond
386 ((stringp k) (setq strings (1+ strings)))
387 ((vectorp k) (setq vectors (1+ vectors)))
388 ((consp k) (setq conses (1+ conses)))
389 ((byte-code-function-p v) (setq bytecodes (1+ bytecodes)))
390 (t (setq others (1+ others)))))
391 purify-flag)
392 (message "Pure-hashed: %d strings, %d vectors, %d conses, %d bytecodes, %d others"
393 strings vectors conses bytecodes others)))
395 ;; Avoid error if user loads some more libraries now and make sure the
396 ;; hash-consing hash table is GC'd.
397 (setq purify-flag nil)
399 (if (null (garbage-collect))
400 (setq pure-space-overflow t))
402 (if (member (car (last command-line-args)) '("dump" "bootstrap"))
403 (progn
404 (message "Dumping under the name emacs")
405 (condition-case ()
406 (delete-file "emacs")
407 (file-error nil))
408 ;; We used to dump under the name xemacs, but that occasionally
409 ;; confused people installing Emacs (they'd install the file
410 ;; under the name `xemacs'), and it's inconsistent with every
411 ;; other GNU program's build process.
412 (dump-emacs "emacs" "temacs")
413 (message "%d pure bytes used" pure-bytes-used)
414 ;; Recompute NAME now, so that it isn't set when we dump.
415 (if (not (or (eq system-type 'ms-dos)
416 ;; Don't bother adding another name if we're just
417 ;; building bootstrap-emacs.
418 (equal (last command-line-args) '("bootstrap"))))
419 (let ((name (concat "emacs-" emacs-version))
420 (exe (if (eq system-type 'windows-nt) ".exe" "")))
421 (while (string-match "[^-+_.a-zA-Z0-9]+" name)
422 (setq name (concat (downcase (substring name 0 (match-beginning 0)))
424 (substring name (match-end 0)))))
425 (setq name (concat name exe))
426 (message "Adding name %s" name)
427 ;; When this runs on Windows, invocation-directory is not
428 ;; necessarily the current directory.
429 (add-name-to-file (expand-file-name (concat "emacs" exe)
430 invocation-directory)
431 (expand-file-name name invocation-directory)
432 t)))
433 (kill-emacs)))
435 ;; For machines with CANNOT_DUMP defined in config.h,
436 ;; this file must be loaded each time Emacs is run.
437 ;; So run the startup code now. First, remove `-l loadup' from args.
439 (if (and (member (nth 1 command-line-args) '("-l" "--load"))
440 (equal (nth 2 command-line-args) "loadup"))
441 (setcdr command-line-args (nthcdr 3 command-line-args)))
443 (eval top-level)
446 ;; Local Variables:
447 ;; no-byte-compile: t
448 ;; no-update-autoloads: t
449 ;; End:
451 ;;; loadup.el ends here