Tweak the autoloads scrape output slightly
* lisp/emacs-lisp/autoload.el (batch-update-autoloads--summary): Output " ..." at the end of the non-concluding lines to signify that the output continues.
This commit is contained in:
parent
104dd3b641
commit
47910420c0
1 changed files with 2 additions and 2 deletions
|
@ -1170,8 +1170,8 @@ write its autoloads into the specified file instead."
|
|||
(defun batch-update-autoloads--summary (strings)
|
||||
(let ((message ""))
|
||||
(while strings
|
||||
(when (> (length (concat message " " (car strings))) 68)
|
||||
(byte-compile-info message t "SCRAPE")
|
||||
(when (> (length (concat message " " (car strings))) 64)
|
||||
(byte-compile-info (concat message " ...") t "SCRAPE")
|
||||
(setq message ""))
|
||||
(setq message (if (zerop (length message))
|
||||
(car strings)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue