diff options
author | Lars Ingebrigtsen <larsi@gnus.org> | 2020-08-04 18:52:31 +0200 |
---|---|---|
committer | Lars Ingebrigtsen <larsi@gnus.org> | 2020-08-04 19:28:51 +0200 |
commit | 9eb04d87409db48ce63ef5d40201c92bc9e7028c (patch) | |
tree | b3c9a361fc71f35a4113331a3a6e0d13c0b9519f | |
parent | b0e828da4f55d0dddcd8f8fc2e21e4b02a12852e (diff) | |
download | emacs-9eb04d87409db48ce63ef5d40201c92bc9e7028c.tar.gz emacs-9eb04d87409db48ce63ef5d40201c92bc9e7028c.tar.bz2 emacs-9eb04d87409db48ce63ef5d40201c92bc9e7028c.zip |
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.
-rw-r--r-- | lisp/gnus/gnus-util.el | 1 |
1 files changed, 1 insertions, 0 deletions
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))))) |