diff options
author | Mattias EngdegÄrd <mattiase@acm.org> | 2020-11-06 13:43:53 +0100 |
---|---|---|
committer | Mattias EngdegÄrd <mattiase@acm.org> | 2020-11-06 13:55:33 +0100 |
commit | aea936562b033899f0b7160cc492bbea1006863b (patch) | |
tree | 093f0ca02bfc7cb0e5fff6665da8ace8f61f905a /lisp/gnus | |
parent | 1b9e159525409d6a1ad41686c34f66aa2effa71e (diff) | |
download | emacs-aea936562b033899f0b7160cc492bbea1006863b.tar.gz emacs-aea936562b033899f0b7160cc492bbea1006863b.tar.bz2 emacs-aea936562b033899f0b7160cc492bbea1006863b.zip |
* lisp/gnus/gnus-search.el (gnus-search-contact-tables): Fix type.
A more precise type is desirable but at it is now correct ('list' is not).
Diffstat (limited to 'lisp/gnus')
-rw-r--r-- | lisp/gnus/gnus-search.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/gnus/gnus-search.el b/lisp/gnus/gnus-search.el index 15d96e3e0c8..7ee7c53aca5 100644 --- a/lisp/gnus/gnus-search.el +++ b/lisp/gnus/gnus-search.el @@ -410,7 +410,7 @@ returned by `completion-at-point-functions'. That usually means a list of strings, a hash table, or an alist." :group 'gnus-search :version "28.1" - :type 'list) + :type '(repeat sexp)) ;;; Search language |