emacs-diffs
[Top][All Lists]
Advanced

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

master ea8ff97 1/2: Add missing defcustom keywords to new variables


From: Dmitry Gutov
Subject: master ea8ff97 1/2: Add missing defcustom keywords to new variables
Date: Wed, 9 Dec 2020 15:57:03 -0500 (EST)

branch: master
commit ea8ff97536905ebc9157dd2194aaf68a17099b81
Author: Dmitry Gutov <dgutov@yandex.ru>
Commit: Dmitry Gutov <dgutov@yandex.ru>

    Add missing defcustom keywords to new variables
    
    * lisp/progmodes/xref.el (xref-search-program-alist)
    (xref-search-program): Add :version and :package-version.
---
 lisp/progmodes/xref.el | 8 ++++++--
 1 file changed, 6 insertions(+), 2 deletions(-)

diff --git a/lisp/progmodes/xref.el b/lisp/progmodes/xref.el
index 389b7cf..7255079 100644
--- a/lisp/progmodes/xref.el
+++ b/lisp/progmodes/xref.el
@@ -1355,7 +1355,9 @@ The template should have the following fields:
   <R> for the regexp itself (in Extended format)"
   :type '(repeat
           (cons (symbol :tag "Program identifier")
-                (string :tag "Command template"))))
+                (string :tag "Command template")))
+  :version "28.1"
+  :package-version '(xref . "1.0.4"))
 
 (defcustom xref-search-program 'grep
   "The program to use for regexp search inside files.
@@ -1364,7 +1366,9 @@ This must reference a corresponding entry in 
`xref-search-program-alist'."
   :type `(choice
           (const :tag "Use Grep" grep)
           (const :tag "Use ripgrep" ripgrep)
-          (symbol :tag "User defined")))
+          (symbol :tag "User defined"))
+  :version "28.1"
+  :package-version '(xref . "1.0.4"))
 
 ;;;###autoload
 (defun xref-matches-in-files (regexp files)



reply via email to

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