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