diff --git a/elfeed-export.el b/elfeed-export.el index f605789..cd5674a 100644 --- a/elfeed-export.el +++ b/elfeed-export.el @@ -55,8 +55,7 @@ The function takes an entry argument for extracting the desired value." :group 'elfeed-export) (defcustom elfeed-export-predicates - (list #'elfeed-export--include-entry-by-date-p - #'elfeed-export--include-entry-by-tag-p) + (list #'elfeed-export--include-entry-by-tag-p) "Entries that match all of these predicates are exported. Each predicate accepts an entry and a feed object and should @@ -82,11 +81,6 @@ return t when the entry should be exported." (or (not elfeed-export-exclude-tags) (not (seq-intersection elfeed-export-exclude-tags tags)))))) -(defun elfeed-export--include-entry-by-date-p (entry _) - (let ((date (elfeed-entry-date entry))) - ;; TODO - t)) - (defun elfeed-export--entry-date (entry) "Return an ISO formatted date string for the given ENTRY." (format-time-string "%F %T" (elfeed-entry-date entry)))