From fbf475778459bc3a6b088e05e6839dc66c2caab5 Mon Sep 17 00:00:00 2001 From: Glenn Morris Date: Mon, 24 Jan 2022 10:16:36 -0800 Subject: [PATCH] * lisp/minibuffer.el (completions-sort): Fix type. Flagged by test-custom-opts. --- lisp/minibuffer.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lisp/minibuffer.el b/lisp/minibuffer.el index ecede9479d8..917879fb692 100644 --- a/lisp/minibuffer.el +++ b/lisp/minibuffer.el @@ -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 -- 2.39.2