]> git.eshelyaron.com Git - emacs.git/commitdiff
Don't update loaddefs.el timestamps uselessly in loaddefs-generate
authorLars Ingebrigtsen <larsi@gnus.org>
Fri, 12 Aug 2022 18:22:26 +0000 (20:22 +0200)
committerLars Ingebrigtsen <larsi@gnus.org>
Fri, 12 Aug 2022 18:22:26 +0000 (20:22 +0200)
* lisp/emacs-lisp/loaddefs-gen.el (loaddefs-generate): Don't
re-write the loaddefs.el file when there's no reason to.

lisp/emacs-lisp/loaddefs-gen.el

index 0c9bc4832b4350237b272212b5fbd6e1c07b3adf..6cb5d00782f2eca883ae460c76721b11f62ef757 100644 (file)
@@ -589,7 +589,8 @@ instead of just updating them with the new/changed autoloads."
       ;; We have some data, so generate the loaddef files.  First
       ;; group per output file.
       (dolist (fdefs (seq-group-by #'car defs))
-        (let ((loaddefs-file (car fdefs)))
+        (let ((loaddefs-file (car fdefs))
+              hash)
           (with-temp-buffer
             (if (and updating (file-exists-p loaddefs-file))
                 (insert-file-contents loaddefs-file)
@@ -599,6 +600,7 @@ instead of just updating them with the new/changed autoloads."
               (when extra-data
                 (insert extra-data)
                 (ensure-empty-lines 1)))
+            (setq hash (buffer-hash))
             ;; Then group by source file (and sort alphabetically).
             (dolist (section (sort (seq-group-by #'cadr (cdr fdefs))
                                    (lambda (e1 e2)
@@ -635,9 +637,11 @@ instead of just updating them with the new/changed autoloads."
                     (loaddefs-generate--print-form def))
                   (unless (bolp)
                     (insert "\n")))))
-            (write-region (point-min) (point-max) loaddefs-file nil 'silent)
-            (byte-compile-info (file-relative-name loaddefs-file lisp-directory)
-                               t "GEN")))))))
+            ;; Only write the file if we actually made a change.
+            (unless (equal (buffer-hash) hash)
+              (write-region (point-min) (point-max) loaddefs-file nil 'silent)
+              (byte-compile-info
+               (file-relative-name loaddefs-file lisp-directory) t "GEN"))))))))
 
 (defun loaddefs-generate--print-form (def)
   "Print DEF in a format that makes sense for version control."