]> git.eshelyaron.com Git - emacs.git/commitdiff
Mark unused Gnus util function as obsolete
authorLars Ingebrigtsen <larsi@gnus.org>
Tue, 4 Aug 2020 16:52:31 +0000 (18:52 +0200)
committerLars Ingebrigtsen <larsi@gnus.org>
Tue, 4 Aug 2020 17:28:51 +0000 (19:28 +0200)
* lisp/gnus/gnus-util.el (gnus-test-list): Mark utility function
as obsolete -- there are no in-tree usage.

lisp/gnus/gnus-util.el

index 8d8956f1fb9b313faba4ee8fc9a09d9f1bf853c2..abe546b8cb671d264efbad059582b7a3bad8cabb 100644 (file)
@@ -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)))))