Variable: vc-sccs-master-templates

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

Value

("%sSCCS/s.%s" "%ss.%s" vc-sccs-search-project-dir)

Documentation

Where to look for SCCS 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-sccs.el.gz
  :version "24.1")     ; no longer consult the obsolete vc-header-alist

;; This needs to be autoloaded because vc-sccs-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-sccs-master-templates
  '("%sSCCS/s.%s" "%ss.%s" vc-sccs-search-project-dir)
  "Where to look for SCCS master files.
For a description of possible values, see `vc-check-master-templates'."
  :type '(choice (const :tag "Use standard SCCS file names"
			("%sSCCS/s.%s" "%ss.%s" vc-sccs-search-project-dir))
		 (repeat :tag "User-specified"
			 (choice string
				 function)))
  :version "21.1")