Variable: vc-rcs-register-switches

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

Value

nil

Documentation

Switches for registering a file in RCS.

A string or list of strings passed to the checkin program by C-x v i (vc-register). If nil, use the value of vc-register-switches. If t, use no switches.

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

Source Code

;; Defined in /usr/src/emacs/lisp/vc/vc-rcs.el.gz
(defcustom vc-rcs-register-switches nil
  "Switches for registering a file in RCS.
A string or list of strings passed to the checkin program by
\\[vc-register].  If nil, use the value of `vc-register-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 "21.1")