]> git.eshelyaron.com Git - emacs.git/commitdiff
* lisp/emacs-lisp/autoload.el: Make progress info more informative.
authorStefan Monnier <monnier@iro.umontreal.ca>
Sat, 27 Jul 2019 21:53:46 +0000 (17:53 -0400)
committerStefan Monnier <monnier@iro.umontreal.ca>
Sat, 27 Jul 2019 21:53:46 +0000 (17:53 -0400)
(update-directory-autoloads): Include the name of the target file.

lisp/emacs-lisp/autoload.el

index fa2c6cdd0395484589575ef08dafcb0549dd3eb7..541b22e3eea80fd12ecc1f283b4eacc5d0edc7a3 100644 (file)
@@ -1125,7 +1125,10 @@ write its autoloads into the specified file instead."
       ;; Elements remaining in FILES have no existing autoload sections yet.
       (let ((no-autoloads-time (or last-time '(0 0 0 0)))
             (progress (make-progress-reporter
-                       (byte-compile-info-string "Scraping files for autoloads")
+                       (byte-compile-info-string
+                        (concat "Scraping files for "
+                                (file-relative-name
+                                 generated-autoload-file)))
                        0 (length files) nil 10))
             (file-count 0)
             file-time)