Function: change-log-read-entries

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

Signature

(change-log-read-entries &optional END)

Documentation

Read ChangeLog entries at point until END.

Move point to the end of entries that were read. Return a list in the same form as diff-add-log-current-defuns.

Source Code

;; Defined in /usr/src/emacs/lisp/vc/add-log.el.gz
(defun change-log-read-entries (&optional end)
  "Read ChangeLog entries at point until END.
Move point to the end of entries that were read.  Return a list
in the same form as `diff-add-log-current-defuns'."
  (cl-loop while (and (or (not end) (< (point) end))
                      (looking-at change-log-unindented-file-names-re))
           do (goto-char (match-end 0))
           collect (cons (match-string-no-properties 1)
                         (change-log-read-defuns end))))