Function: vc-svn-annotate-command
vc-svn-annotate-command is a byte-compiled function defined in
vc-svn.el.gz.
Signature
(vc-svn-annotate-command FILE BUF &optional REV)
Source Code
;; Defined in /usr/src/emacs/lisp/vc/vc-svn.el.gz
;; Support for `svn annotate'
(defun vc-svn-annotate-command (file buf &optional rev)
(apply #'vc-svn-command buf 'async file "annotate"
(append (vc-switches 'svn 'annotate)
(if rev (list (concat "-r" rev))))))