Variable: vc-checkout-switches

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

Value

nil

Documentation

A string or list of strings specifying extra switches for checkout.

These are passed to the checkout program by M-x vc-checkout (vc-checkout).

Source Code

;; Defined in /usr/src/emacs/lisp/vc/vc.el.gz
(defcustom vc-checkout-switches nil
  "A string or list of strings specifying extra switches for checkout.
These are passed to the checkout program by \\[vc-checkout]."
  :type '(choice (const :tag "None" nil)
		 (string :tag "Argument String")
		 (repeat :tag "Argument List"
			 :value ("")
			 string)))