Function: batch-update-autoloads--summary
batch-update-autoloads--summary is a byte-compiled function defined in
autoload.el.gz.
Signature
(batch-update-autoloads--summary STRINGS)
Source Code
;; Defined in /usr/src/emacs/lisp/obsolete/autoload.el.gz
(defun batch-update-autoloads--summary (strings)
(let ((message ""))
(while strings
(when (> (length (concat message " " (car strings))) 64)
(byte-compile-info (concat message " ...") t "SCRAPE")
(setq message ""))
(setq message (if (zerop (length message))
(car strings)
(concat message " " (car strings))))
(setq strings (cdr strings)))
(when (> (length message) 0)
(byte-compile-info message t "SCRAPE"))))