Variable: vc-cvs-global-switches

vc-cvs-global-switches is a customizable variable defined in vc-cvs.el.gz.

Value

nil

Documentation

Global switches to pass to any CVS command.

This variable was added, or its default value changed, in Emacs 22.1.

Probably introduced at or before Emacs version 22.1.

Source Code

;; Defined in /usr/src/emacs/lisp/vc/vc-cvs.el.gz
(defcustom vc-cvs-global-switches nil
  "Global switches to pass to any CVS command."
  :type '(choice (const :tag "None" nil)
		 (string :tag "Argument String")
		 (repeat :tag "Argument List"
			 :value ("")
			 string))
  :version "22.1")