Function: vc-annotate-prev-revision

vc-annotate-prev-revision is an interactive and byte-compiled function defined in vc-annotate.el.gz.

Signature

(vc-annotate-prev-revision PREFIX)

Documentation

Visit the annotation of the revision previous to this one.

With a numeric prefix argument, annotate the revision that many revisions previous.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/vc/vc-annotate.el.gz
(defun vc-annotate-prev-revision (prefix)
  "Visit the annotation of the revision previous to this one.

With a numeric prefix argument, annotate the revision that many
revisions previous."
  (interactive "p")
  (vc-annotate-warp-revision (- 0 prefix)))