aboutsummaryrefslogtreecommitdiffstats
path: root/lisp/vc
diff options
context:
space:
mode:
authorGlenn Morris <[email protected]>2012-09-29 12:19:17 -0700
committerGlenn Morris <[email protected]>2012-09-29 12:19:17 -0700
commitd2a54f135f49226ceb27b4caf3806af4ce84467b (patch)
tree73ce6a04ee7a1ffdae119c90950c0454391e71b0 /lisp/vc
parent3ef6d50528bf31c40b0f5c5b4be9f871d8d7e392 (diff)
Revert bogus vc autoloads change
Diffstat (limited to 'lisp/vc')
-rw-r--r--lisp/vc/vc-rcs.el4
-rw-r--r--lisp/vc/vc-sccs.el3
2 files changed, 5 insertions, 2 deletions
diff --git a/lisp/vc/vc-rcs.el b/lisp/vc/vc-rcs.el
index 083089834a..ecd7b82643 100644
--- a/lisp/vc/vc-rcs.el
+++ b/lisp/vc/vc-rcs.el
@@ -89,7 +89,9 @@ to use --brief and sets this variable to remember whether it worked."
:type '(choice (const :tag "Work out" nil) (const yes) (const no))
:group 'vc-rcs)
-(defcustom vc-rcs-master-templates '("%sRCS/%s,v" "%s%s,v" "%sRCS/%s")
+;;;###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"
diff --git a/lisp/vc/vc-sccs.el b/lisp/vc/vc-sccs.el
index d283425a97..a34222f723 100644
--- a/lisp/vc/vc-sccs.el
+++ b/lisp/vc/vc-sccs.el
@@ -74,8 +74,9 @@ If nil, use the value of `vc-diff-switches'. If t, use no switches."
:version "24.1" ; no longer consult the obsolete vc-header-alist
:group 'vc-sccs)
+;;;###autoload
(defcustom vc-sccs-master-templates
- '("%sSCCS/s.%s" "%ss.%s" vc-sccs-search-project-dir)
+ (purecopy '("%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"