]> git.eshelyaron.com Git - emacs.git/commitdiff
Don't include the other loaddef files in the no-autoloads section
authorLars Ingebrigtsen <larsi@gnus.org>
Wed, 1 Dec 2021 02:55:17 +0000 (03:55 +0100)
committerLars Ingebrigtsen <larsi@gnus.org>
Wed, 1 Dec 2021 03:55:18 +0000 (04:55 +0100)
* lisp/emacs-lisp/autoload.el (make-directory-autoloads): Don't
include the other loaddef files in the no-autoloads section.

lisp/emacs-lisp/autoload.el

index 23fb400249960581f3f02303b8291f45a90a4eaa..5857aa557179ff6e8ab5488a9efd679c7cf16af9 100644 (file)
@@ -1196,9 +1196,17 @@ directory or directories specified."
          (goto-char (point-max))
          (search-backward "\f" nil t)
          (autoload-insert-section-header
-          (current-buffer) nil nil no-autoloads (if autoload-timestamps
-                                                    no-autoloads-time
-                                                  autoload--non-timestamp))
+          (current-buffer) nil nil
+           ;; Filter out the other loaddefs files, because it makes
+           ;; the list unstable (and leads to spurious changes in
+           ;; ldefs-boot.el) since the loaddef files can be created in
+           ;; any order.
+           (seq-filter (lambda (file)
+                         (not (string-match-p "[/-]loaddefs.el" file)))
+                       no-autoloads)
+           (if autoload-timestamps
+              no-autoloads-time
+            autoload--non-timestamp))
          (insert generate-autoload-section-trailer)))
 
       ;; Don't modify the file if its content has not been changed, so `make'