* lisp/emacs-lisp/autoload.el: Make progress info more informative.

(update-directory-autoloads): Include the name of the target file.
This commit is contained in:
Stefan Monnier 2019-07-27 17:53:46 -04:00
parent 1c8405e33e
commit 77ee23d1ed

View 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)