diff options
| author | Stefan Monnier | 2019-07-27 17:53:46 -0400 |
|---|---|---|
| committer | Stefan Monnier | 2019-07-27 17:53:46 -0400 |
| commit | 77ee23d1ede9eece3eab4cc67d7f2e72d30a1117 (patch) | |
| tree | d053851227f018ba2de7ce52b38cf528f0d2d8f7 | |
| parent | 1c8405e33e814a372fa349313521b015c3601605 (diff) | |
| download | emacs-77ee23d1ede9eece3eab4cc67d7f2e72d30a1117.tar.gz emacs-77ee23d1ede9eece3eab4cc67d7f2e72d30a1117.zip | |
* lisp/emacs-lisp/autoload.el: Make progress info more informative.
(update-directory-autoloads): Include the name of the target file.
| -rw-r--r-- | lisp/emacs-lisp/autoload.el | 5 |
1 files changed, 4 insertions, 1 deletions
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." | |||
| 1125 | ;; Elements remaining in FILES have no existing autoload sections yet. | 1125 | ;; Elements remaining in FILES have no existing autoload sections yet. |
| 1126 | (let ((no-autoloads-time (or last-time '(0 0 0 0))) | 1126 | (let ((no-autoloads-time (or last-time '(0 0 0 0))) |
| 1127 | (progress (make-progress-reporter | 1127 | (progress (make-progress-reporter |
| 1128 | (byte-compile-info-string "Scraping files for autoloads") | 1128 | (byte-compile-info-string |
| 1129 | (concat "Scraping files for " | ||
| 1130 | (file-relative-name | ||
| 1131 | generated-autoload-file))) | ||
| 1129 | 0 (length files) nil 10)) | 1132 | 0 (length files) nil 10)) |
| 1130 | (file-count 0) | 1133 | (file-count 0) |
| 1131 | file-time) | 1134 | file-time) |