]> git.eshelyaron.com Git - emacs.git/commitdiff
Fix more defcustom :type errors
authorLars Ingebrigtsen <larsi@gnus.org>
Wed, 11 May 2022 00:25:14 +0000 (02:25 +0200)
committerLars Ingebrigtsen <larsi@gnus.org>
Wed, 11 May 2022 09:58:24 +0000 (11:58 +0200)
* lisp/vc/vc-src.el (vc-src-master-templates):
* lisp/vc/vc-rcs.el (vc-rcs-master-templates): Remove quote
characters inserted by mistake.

lisp/vc/vc-rcs.el
lisp/vc/vc-src.el

index 0a2b8fa53c3eb5c833fc4b3e6f75eab166aaed2a..a4345c7d7e22c5303e793646f3e3eded89bd5911 100644 (file)
@@ -100,7 +100,7 @@ to use --brief and sets this variable to remember whether it worked."
   "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"))
+                       ("%sRCS/%s,v" "%s%s,v" "%sRCS/%s"))
                 (repeat :tag "User-specified"
                         (choice string
                                 function)))
index 5a252c55cb2817bd78df651015f6d6def4ad5f7d..432448bde58c83d1d0abca1dbd499b46c4dbb1e8 100644 (file)
@@ -120,7 +120,7 @@ If nil, use the value of `vc-diff-switches'.  If t, use no switches."
   "Where to look for SRC master files.
 For a description of possible values, see `vc-check-master-templates'."
   :type '(choice (const :tag "Use standard SRC file names"
-                       '("%s.src/%s,v"))
+                       ("%s.src/%s,v"))
                 (repeat :tag "User-specified"
                         (choice string
                                 function))))