Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 8 additions & 7 deletions elfeed-link.el
Original file line number Diff line number Diff line change
Expand Up @@ -39,13 +39,14 @@ of available props."
(car (elfeed-entry-id elfeed-show-entry))
(cdr (elfeed-entry-id elfeed-show-entry)))
:description (elfeed-entry-title elfeed-show-entry)
(cl-loop for prop in
(list 'id 'title 'link 'date 'content 'content-type 'enclosures 'tags 'feed-id 'meta)
nconc (list
(intern (concat ":elfeed-entry-" (symbol-name prop)))
(funcall
(intern (concat "elfeed-entry-" (symbol-name prop)))
elfeed-show-entry)))))))
:elfeed-entry-content (elfeed-deref (elfeed-entry-content elfeed-show-entry))
(cl-loop for prop in
(list 'id 'title 'link 'date 'content-type 'enclosures 'tags 'feed-id 'meta)
nconc (list
(intern (concat ":elfeed-entry-" (symbol-name prop)))
(funcall
(intern (concat "elfeed-entry-" (symbol-name prop)))
elfeed-show-entry)))))))

;;;###autoload
(defun elfeed-link-open (filter-or-id)
Expand Down