diff options
author | Glenn Morris <rgm@gnu.org> | 2022-01-24 10:16:36 -0800 |
---|---|---|
committer | Glenn Morris <rgm@gnu.org> | 2022-01-24 10:16:36 -0800 |
commit | fbf475778459bc3a6b088e05e6839dc66c2caab5 (patch) | |
tree | 9709917949b197305b8c97d0a7fb66293deb724d /lisp/minibuffer.el | |
parent | 701ec0bda2b15fc97af6ca68fb842fb1ec9aac35 (diff) | |
download | emacs-fbf475778459bc3a6b088e05e6839dc66c2caab5.tar.gz emacs-fbf475778459bc3a6b088e05e6839dc66c2caab5.tar.bz2 emacs-fbf475778459bc3a6b088e05e6839dc66c2caab5.zip |
* lisp/minibuffer.el (completions-sort): Fix type.
Flagged by test-custom-opts.
Diffstat (limited to 'lisp/minibuffer.el')
-rw-r--r-- | lisp/minibuffer.el | 2 |
1 files changed, 1 insertions, 1 deletions
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 |