Variable: vc-rcs-master-templates

vc-rcs-master-templates is a customizable variable defined in vc-rcs.el.gz.

Value

("%sRCS/%s,v" "%s%s,v" "%sRCS/%s")

Documentation

Where to look for RCS master files.

For a description of possible values, see vc-check-master-templates.

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
;; This needs to be autoloaded because vc-rcs-registered uses it (via
;; vc-default-registered), and vc-hooks needs to be able to check
;; for a registered backend without loading every backend.
;;;###autoload
(defcustom vc-rcs-master-templates
  (purecopy '("%sRCS/%s,v" "%s%s,v" "%sRCS/%s"))
  "Where to look for RCS master files.
For a description of possible values, see `vc-check-master-templates'."
  :type '(choice (const :tag "Use standard RCS file names"
			'("%sRCS/%s,v" "%s%s,v" "%sRCS/%s"))
		 (repeat :tag "User-specified"
			 (choice string
				 function)))
  :version "21.1")