From: Stefan Monnier Date: Sat, 27 Jul 2019 21:53:46 +0000 (-0400) Subject: * lisp/emacs-lisp/autoload.el: Make progress info more informative. X-Git-Tag: emacs-27.0.90~1817^2~62 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=77ee23d1ede9eece3eab4cc67d7f2e72d30a1117;p=emacs.git * lisp/emacs-lisp/autoload.el: Make progress info more informative. (update-directory-autoloads): Include the name of the target file. --- diff --git a/lisp/emacs-lisp/autoload.el b/lisp/emacs-lisp/autoload.el index fa2c6cdd039..541b22e3eea 100644 --- a/lisp/emacs-lisp/autoload.el +++ b/lisp/emacs-lisp/autoload.el @@ -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)