[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: master aea9365 3/3: * lisp/gnus/gnus-search.el (gnus-search-contact-
From: |
Mattias Engdegård |
Subject: |
Re: master aea9365 3/3: * lisp/gnus/gnus-search.el (gnus-search-contact-tables): Fix type. |
Date: |
Fri, 6 Nov 2020 22:30:08 +0100 |
6 nov. 2020 kl. 18.17 skrev Eric Abrahamsen <eric@ericabrahamsen.net>:
>> - :type 'list)
>> + :type '(repeat sexp))
>
> Doesn't this type demand a list of lists? It could also be a list of
> hashtables, or functions, or a mix of alist/list/function/hashtable...
'sexp' means any Lisp type, thus (repeat sexp) is any list.
You may want to replace it with a smaller (more precise) type.