commit dd583bc92c00994ef41b384f40ff8b9da11dec84
parent b67d770226c84c0cd5869a352622ebbd3b0e7ba4
Author: vin <git@vineetk.net>
Date: Mon, 8 Dec 2025 17:15:48 -0500
muh
Diffstat:
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/elfeed-custom-feeds-github.el b/elfeed-custom-feeds-github.el
@@ -126,7 +126,7 @@ Call COMPLETION-CALLBACK with (repo display-name new-entries) when done."
(run-with-idle-timer 0 nil #'process-next-chunk)
;; All done - call completion callback
(funcall completion-callback repo display-name (nreverse new-entries)))))))
- (process-next-chunk))))
+ (process-next-chunk)))))
;;;###autoload
(defun elfeed-custom-feeds-github-update ()
@@ -168,7 +168,7 @@ Batches all entries and updates UI once at the end to avoid blocking."
(lambda ()
(when (get-buffer "*elfeed-search*")
(with-current-buffer "*elfeed-search*"
- (elfeed-search-update--force)))))))))))
+ (elfeed-search-update--force)))))))))))))
;; Start all async fetches
(cl-loop for (repo query display-name) in elfeed-custom-github-pr-queries
@@ -179,7 +179,7 @@ Batches all entries and updates UI once at the end to avoid blocking."
(lambda (r dn items)
(elfeed-custom-feeds-github--prs-to-elfeed r dn items completion-callback))
delay)))
- nil))
+ nil)
(provide 'elfeed-custom-feeds-github)