emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

master cd7f7c2c33 1/4: Fix more defcustom :type errors


From: Lars Ingebrigtsen
Subject: master cd7f7c2c33 1/4: Fix more defcustom :type errors
Date: Wed, 11 May 2022 06:53:56 -0400 (EDT)

branch: master
commit cd7f7c2c33b9bfec1090e88b173adf7788b76bb3
Author: Lars Ingebrigtsen <larsi@gnus.org>
Commit: Lars Ingebrigtsen <larsi@gnus.org>

    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.
---
 lisp/vc/vc-rcs.el | 2 +-
 lisp/vc/vc-src.el | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/lisp/vc/vc-rcs.el b/lisp/vc/vc-rcs.el
index 0a2b8fa53c..a4345c7d7e 100644
--- a/lisp/vc/vc-rcs.el
+++ b/lisp/vc/vc-rcs.el
@@ -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)))
diff --git a/lisp/vc/vc-src.el b/lisp/vc/vc-src.el
index 5a252c55cb..432448bde5 100644
--- a/lisp/vc/vc-src.el
+++ b/lisp/vc/vc-src.el
@@ -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))))



reply via email to

[Prev in Thread] Current Thread [Next in Thread]