Function: add-log-edit-next-comment
add-log-edit-next-comment is an interactive and byte-compiled function
defined in add-log.el.gz.
Signature
(add-log-edit-next-comment ARG)
Documentation
Cycle forward through Log-Edit mode comment history.
With a numeric prefix ARG, go back ARG comments.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/vc/add-log.el.gz
(defun add-log-edit-next-comment (arg)
"Cycle forward through Log-Edit mode comment history.
With a numeric prefix ARG, go back ARG comments."
(interactive "*p")
(add-log-edit-prev-comment (- arg)))