Function: log-view-msg-and-diff-next
log-view-msg-and-diff-next is an interactive and byte-compiled
function defined in log-view.el.gz.
Signature
(log-view-msg-and-diff-next COUNT)
Documentation
Go to next COUNT'th entry, expand it if possible, and show its diff.
Interactively, COUNT is the numeric prefix argument, and defaults to 1.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/vc/log-view.el.gz
(defun log-view-msg-and-diff-next (count)
"Go to next COUNT'th entry, expand it if possible, and show its diff.
Interactively, COUNT is the numeric prefix argument, and defaults to 1."
(interactive "p")
(log-view-msg-next count)
(log-view-display-entry-and-diff))