From 1cf73acae8b791e214dc347c2adf7ec17e8ff41a Mon Sep 17 00:00:00 2001 From: SqrtMinusOne Date: Sat, 4 Jun 2022 11:50:17 +0300 Subject: [PATCH] feat: always update elfeed-org on `elfeed-summary' --- elfeed-summary.el | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/elfeed-summary.el b/elfeed-summary.el index 3a3d986..f342698 100644 --- a/elfeed-summary.el +++ b/elfeed-summary.el @@ -554,9 +554,8 @@ PARAMS is a form as described in `elfeed-summary-settings'." (defun elfeed-summary--ensure () "Ensure that elfeed database is loaded and feeds are set up." (elfeed-db-ensure) - (when (and (not elfeed-feeds) - (fboundp #'rmh-elfeed-org-process) - ;; To shut up the byte compiler + (when (and (fboundp #'rmh-elfeed-org-process) + ;; To silence the byte compiler (boundp 'rmh-elfeed-org-files) (boundp 'rmh-elfeed-org-tree-id)) (rmh-elfeed-org-process rmh-elfeed-org-files rmh-elfeed-org-tree-id)))