Variable: vc-register-switches

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

Value

nil

Documentation

A string or list of strings; extra switches for registering a file.

These are passed to the checkin program by C-x v i (vc-register).

Source Code

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