1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2025-12-15 10:30:25 -08:00

Fix more defcustom :type errors

* lisp/vc/vc-src.el (vc-src-master-templates):
* lisp/vc/vc-rcs.el (vc-rcs-master-templates): Remove quote
characters inserted by mistake.
This commit is contained in:
Lars Ingebrigtsen 2022-05-11 02:25:14 +02:00
parent 474241f356
commit cd7f7c2c33
2 changed files with 2 additions and 2 deletions

View 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)))

View 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))))