]> git.eshelyaron.com Git - emacs.git/commitdiff
Add missing defcustom keywords to new variables
authorDmitry Gutov <dgutov@yandex.ru>
Wed, 9 Dec 2020 19:42:19 +0000 (21:42 +0200)
committerDmitry Gutov <dgutov@yandex.ru>
Wed, 9 Dec 2020 20:56:48 +0000 (22:56 +0200)
* lisp/progmodes/xref.el (xref-search-program-alist)
(xref-search-program): Add :version and :package-version.

lisp/progmodes/xref.el

index 389b7cf24783a6dcd37f6a337d8a850225ed3578..7255079e87d3facff74bae77cbd6b603c41452e3 100644 (file)
@@ -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)