Function: vc-annotate-display-default

vc-annotate-display-default is an interactive and byte-compiled function defined in vc-annotate.el.gz.

Signature

(vc-annotate-display-default RATIO)

Documentation

Display the output of C-x v g (vc-annotate) using the default color range.

The color range is given by vc-annotate-color-map, scaled by RATIO. The current time is used as the offset.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/vc/vc-annotate.el.gz
(defun vc-annotate-display-default (ratio)
  "Display the output of \\[vc-annotate] using the default color range.
The color range is given by `vc-annotate-color-map', scaled by RATIO.
The current time is used as the offset."
  (interactive (progn (kill-local-variable 'vc-annotate-color-map) '(1.0)))
  (message "Redisplaying annotation...")
  (vc-annotate-display ratio)
  (message "Redisplaying annotation...done"))