From: Lars Ingebrigtsen Date: Tue, 4 Aug 2020 16:52:31 +0000 (+0200) Subject: Mark unused Gnus util function as obsolete X-Git-Tag: emacs-28.0.90~6828 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=9eb04d87409db48ce63ef5d40201c92bc9e7028c;p=emacs.git Mark unused Gnus util function as obsolete * lisp/gnus/gnus-util.el (gnus-test-list): Mark utility function as obsolete -- there are no in-tree usage. --- diff --git a/lisp/gnus/gnus-util.el b/lisp/gnus/gnus-util.el index 8d8956f1fb9..abe546b8cb6 100644 --- a/lisp/gnus/gnus-util.el +++ b/lisp/gnus/gnus-util.el @@ -1654,6 +1654,7 @@ The first found will be returned if a file has hard or symbolic links." "To each element of LIST apply PREDICATE. Return nil if LIST is no list or is empty or some test returns nil; otherwise, return t." + (declare (obsolete nil "28.1")) (when (and list (listp list)) (let ((result (mapcar predicate list))) (not (memq nil result)))))