Function: change-log-insert-entries

change-log-insert-entries is a byte-compiled function defined in add-log.el.gz.

Signature

(change-log-insert-entries CHANGELOGS)

Documentation

Format and insert CHANGELOGS into current buffer.

CHANGELOGS is a list in the form returned by diff-add-log-current-defuns.

Source Code

;; Defined in /usr/src/emacs/lisp/vc/add-log.el.gz
(defun change-log-insert-entries (changelogs)
  "Format and insert CHANGELOGS into current buffer.
CHANGELOGS is a list in the form returned by
`diff-add-log-current-defuns'."
  (cl-loop for (file . defuns) in changelogs do
           (insert "* " file)
           (if (not defuns)
               (insert ":\n")
             (insert " ")
             (cl-loop for def in defuns
                      do (insert "(" def "):\n")))))