-
Notifications
You must be signed in to change notification settings - Fork 34
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
function rmh-elfeed-org-filter-subscriptions
is missing in latest version
#78
Comments
In my case With the caveat that I'm very new to Emacs/Org/Lisp, and am not knowledgeable as to the potential ill side effects!
The function from that file;;;; Custom Functions
;; *DONE* Replace the missing function from elfeed-org's latest available version(s).
(defun rmh-elfeed-org-filter-subscriptions (headlines)
"(Replacement) Filter subscriptions to rss feeds from the HEADLINES in the tree."
(-non-nil (-map
(lambda (headline)
(let* ((text (car headline))
(link-and-title (s-match "^\\[\\[\\(http.+?\\)\\]\\[\\(.+?\\)\\]\\]" text))
(hyperlink (s-match "^\\[\\[\\(http.+?\\)\\]\\(?:\\[.+?\\]\\)?\\]" text)))
(cond ((s-starts-with? "http" text) headline)
(link-and-title (-concat (list (nth 1 hyperlink))
(cdr headline)
(list (nth 2 link-and-title))))
(hyperlink (-concat (list (nth 1 hyperlink)) (cdr headline))))))
headlines))) |
Hi. I'm working on this bug in my PR #81. Currently I have removed that function call as it seems to have been replaced with other functions elsewhere in the code. Right now I'm working on another issue where it seems the tag hooks are being exported twice: |
Man. There were a lot of bugs but I finally finished fixing this package and addressed this issue in PR #81. |
Currently, there is no
rmh-elfeed-org-filter-subscriptions
function in the latest version of elfeed-org, might be related with #76.elfeed-org/elfeed-org.el
Line 260 in 3242ec0
The text was updated successfully, but these errors were encountered: