From 55f7a1bb810a50ae908e12dbfb5d837f290db001 Mon Sep 17 00:00:00 2001 From: Bram Schoenmakers Date: Tue, 2 Jul 2024 06:40:35 +0200 Subject: [PATCH] Add docstring --- elfeed-prune.el | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/elfeed-prune.el b/elfeed-prune.el index 8450968..148187f 100644 --- a/elfeed-prune.el +++ b/elfeed-prune.el @@ -83,7 +83,8 @@ return t when the entry should be kept." :group 'elfeed-prune :type '(repeat function)) -(defun elfeed-prune--feed-unlisted-p (entry feed) +(defun elfeed-prune--feed-unlisted-p (_ feed) + "Return t when the entry of the given FEED should be pruned." (not (seq-contains-p (mapcar #'car elfeed-feeds) (elfeed-feed-url feed) #'string=)))