emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

master 4791042: Tweak the autoloads scrape output slightly


From: Lars Ingebrigtsen
Subject: master 4791042: Tweak the autoloads scrape output slightly
Date: Thu, 6 Aug 2020 02:25:05 -0400 (EDT)

branch: master
commit 47910420c0fd62976ffa075e35da8a8e3398a836
Author: Lars Ingebrigtsen <larsi@gnus.org>
Commit: Lars Ingebrigtsen <larsi@gnus.org>

    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.
---
 lisp/emacs-lisp/autoload.el | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/lisp/emacs-lisp/autoload.el b/lisp/emacs-lisp/autoload.el
index 222a378..c76de43 100644
--- a/lisp/emacs-lisp/autoload.el
+++ b/lisp/emacs-lisp/autoload.el
@@ -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)



reply via email to

[Prev in Thread] Current Thread [Next in Thread]