]> git.eshelyaron.com Git - emacs.git/commitdiff
Tweak the autoloads scrape output slightly
authorLars Ingebrigtsen <larsi@gnus.org>
Thu, 6 Aug 2020 06:24:56 +0000 (08:24 +0200)
committerLars Ingebrigtsen <larsi@gnus.org>
Thu, 6 Aug 2020 06:24:56 +0000 (08:24 +0200)
* lisp/emacs-lisp/autoload.el (batch-update-autoloads--summary):
Output " ..." at the end of the non-concluding lines to signify
that the output continues.

lisp/emacs-lisp/autoload.el

index 222a378566fe5778e986e50fb7dda8d5f514bb54..c76de43be918168eabaaaccc2bf0b971670dfab9 100644 (file)
@@ -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)