diff options
author | Lars Ingebrigtsen <larsi@gnus.org> | 2022-08-03 14:22:08 +0200 |
---|---|---|
committer | Lars Ingebrigtsen <larsi@gnus.org> | 2022-08-03 14:22:16 +0200 |
commit | 261d6afd6e6f3ba2bbf4db0d9ac57b0cbacc0137 (patch) | |
tree | cd5ffb82678413d429e82285b6f849b6ea8f1e19 /lisp/loadup.el | |
parent | 6fb206329f9c3f14154bd425e08b2e72e7f31855 (diff) | |
download | emacs-261d6afd6e6f3ba2bbf4db0d9ac57b0cbacc0137.tar.gz emacs-261d6afd6e6f3ba2bbf4db0d9ac57b0cbacc0137.tar.bz2 emacs-261d6afd6e6f3ba2bbf4db0d9ac57b0cbacc0137.zip |
Byte-compile the in-tree loaddefs.el files
* lisp/Makefile.in (all): Add "autoloads", which now otherwise
won't be done.
($(lisp)/loaddefs.el): Remove this target, since it's always done,
and would then trigger a re-compilation of loaddefs.elc.
* lisp/loadup.el: Load loaddefs.elc (if it exists).
* lisp/emacs-lisp/loaddefs-gen.el (loaddefs-generate): Don't
include no-byte-compile cookies in the Emacs build.
* src/Makefile.in ($(pdmp)): Depend on loaddefs.elc to ensure that
it's built by this point.
($(etc)/DOC): Don't scan loaddefs.el for doc strings, since they
are now picked up from the .elc file (bug#53024).
Diffstat (limited to 'lisp/loadup.el')
-rw-r--r-- | lisp/loadup.el | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/lisp/loadup.el b/lisp/loadup.el index 21a87dbd77b..a65c1724aee 100644 --- a/lisp/loadup.el +++ b/lisp/loadup.el @@ -185,9 +185,10 @@ ;; should be updated by overwriting it with an up-to-date copy of ;; loaddefs.el that is not corrupted by local changes. ;; admin/update_autogen can be used to update ldefs-boot.el periodically. -(condition-case nil (load "loaddefs.el") - ;; In case loaddefs hasn't been generated yet. - (file-error (load "ldefs-boot.el"))) +(condition-case nil + (load "loaddefs") + (file-error + (load "ldefs-boot.el"))) (let ((new (make-hash-table :test #'equal))) ;; Now that loaddefs has populated definition-prefixes, purify its contents. |