aboutsummaryrefslogtreecommitdiffstats
path: root/lisp/vc
diff options
context:
space:
mode:
authorGlenn Morris <[email protected]>2012-09-29 11:28:01 -0700
committerGlenn Morris <[email protected]>2012-09-29 11:28:01 -0700
commit2923922f5ec17c2ccd38d7d7c7d3d98de357443d (patch)
treed04c33127f2daa728780bcaad9685941baeffd6a /lisp/vc
parentced0838266516d9fb1b8a4576c077d0f710ff90c (diff)
No need to autoload vc-rcs, vc-sccs defcustoms.
* lisp/vc/vc-rcs.el (vc-rcs-master-templates): * lisp/vc/vc-sccs.el (vc-sccs-master-templates): No need to autoload.
Diffstat (limited to 'lisp/vc')
-rw-r--r--lisp/vc/vc-rcs.el4
-rw-r--r--lisp/vc/vc-sccs.el3
2 files changed, 2 insertions, 5 deletions
diff --git a/lisp/vc/vc-rcs.el b/lisp/vc/vc-rcs.el
index ecd7b82643..083089834a 100644
--- a/lisp/vc/vc-rcs.el
+++ b/lisp/vc/vc-rcs.el
@@ -89,9 +89,7 @@ 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)
-;;;###autoload
-(defcustom vc-rcs-master-templates
- (purecopy '("%sRCS/%s,v" "%s%s,v" "%sRCS/%s"))
+(defcustom vc-rcs-master-templates '("%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 a34222f723..d283425a97 100644
--- a/lisp/vc/vc-sccs.el
+++ b/lisp/vc/vc-sccs.el
@@ -74,9 +74,8 @@ 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
- (purecopy '("%sSCCS/s.%s" "%ss.%s" vc-sccs-search-project-dir))
+ '("%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"