]> git.eshelyaron.com Git - emacs.git/commitdiff
* lisp/minibuffer.el (completions-sort): Fix type.
authorGlenn Morris <rgm@gnu.org>
Mon, 24 Jan 2022 18:16:36 +0000 (10:16 -0800)
committerGlenn Morris <rgm@gnu.org>
Mon, 24 Jan 2022 18:16:36 +0000 (10:16 -0800)
Flagged by test-custom-opts.

lisp/minibuffer.el

index ecede9479d8146d0d9278e6a7475e087cb24dabc..917879fb69285c1a275375c70487e545c3d333ba 100644 (file)
@@ -1182,7 +1182,7 @@ function takes and returns a list of completion candidate
 strings."
   :type '(choice (const :tag "No sorting" nil)
                  (const :tag "Alphabetical sorting" alphabetical)
-                 function :tag "Custom function")
+                 (function :tag "Custom function"))
   :version "29.1")
 
 (defcustom completions-group nil