From: Glenn Morris Date: Mon, 24 Jan 2022 18:16:36 +0000 (-0800) Subject: * lisp/minibuffer.el (completions-sort): Fix type. X-Git-Tag: emacs-29.0.90~2784 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=fbf475778459bc3a6b088e05e6839dc66c2caab5;p=emacs.git * lisp/minibuffer.el (completions-sort): Fix type. Flagged by test-custom-opts. --- 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