Function: log-edit-changelog-entry
log-edit-changelog-entry is a byte-compiled function defined in
log-edit.el.gz.
Signature
(log-edit-changelog-entry)
Documentation
Return the bounds of the ChangeLog entry containing point.
The variable log-edit-changelog-full-paragraphs determines whether an
"entry" is a paragraph or a subparagraph; see its documentation string
for more details.
Source Code
;; Defined in /usr/src/emacs/lisp/vc/log-edit.el.gz
(defun log-edit-changelog-entry ()
"Return the bounds of the ChangeLog entry containing point.
The variable `log-edit-changelog-full-paragraphs' determines whether an
\"entry\" is a paragraph or a subparagraph; see its documentation string
for more details."
(save-excursion
(if log-edit-changelog-full-paragraphs
(log-edit-changelog-paragraph)
(log-edit-changelog-subparagraph))))