Function: log-view-msg-and-diff-prev

log-view-msg-and-diff-prev is an interactive and byte-compiled function defined in log-view.el.gz.

Signature

(log-view-msg-and-diff-prev COUNT)

Documentation

Go to previous 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-prev (count)
  "Go to previous 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))