Variable: vc-svn-annotate-switches
vc-svn-annotate-switches is a customizable variable defined in
vc-svn.el.gz.
Value
nil
Documentation
String or list of strings specifying switches for svn annotate under VC.
If nil, use the value of vc-annotate-switches. If t, use no
switches.
This variable was added, or its default value changed, in Emacs 25.1.
Source Code
;; Defined in /usr/src/emacs/lisp/vc/vc-svn.el.gz
(defcustom vc-svn-annotate-switches nil
"String or list of strings specifying switches for svn annotate under VC.
If nil, use the value of `vc-annotate-switches'. If t, use no
switches."
:type '(choice (const :tag "Unspecified" nil)
(const :tag "None" t)
(string :tag "Argument String")
(repeat :tag "Argument List" :value ("") string))
:version "25.1")