mirror of
https://github.com/SqrtMinusOne/elfeed-summary.git
synced 2025-12-10 17:43:03 +03:00
fix: use rx-to-string for opening sections
This commit is contained in:
parent
1cf73acae8
commit
012f6fee58
1 changed files with 2 additions and 6 deletions
|
|
@ -747,8 +747,7 @@ items."
|
||||||
show-read)
|
show-read)
|
||||||
(format "+%s " elfeed-summary-unread-tag))
|
(format "+%s " elfeed-summary-unread-tag))
|
||||||
"="
|
"="
|
||||||
(rx-to-string (elfeed-feed-id feed) t)
|
(rx-to-string (elfeed-feed-id feed) t))))
|
||||||
)))
|
|
||||||
|
|
||||||
(defun elfeed-summary--search-feed-notify (widget &rest _)
|
(defun elfeed-summary--search-feed-notify (widget &rest _)
|
||||||
"A function to run in `:notify' in a feed widget button.
|
"A function to run in `:notify' in a feed widget button.
|
||||||
|
|
@ -790,10 +789,7 @@ SECTION is an instance of `elfeed-summary-group-section'."
|
||||||
(format "+%s " elfeed-summary-unread-tag))
|
(format "+%s " elfeed-summary-unread-tag))
|
||||||
(mapconcat
|
(mapconcat
|
||||||
(lambda (feed)
|
(lambda (feed)
|
||||||
(format "=%s" (replace-regexp-in-string
|
(format "=%s" (rx-to-string (elfeed-feed-id feed) t)))
|
||||||
(rx "?" (* not-newline) eos)
|
|
||||||
""
|
|
||||||
(elfeed-feed-id feed))))
|
|
||||||
feeds
|
feeds
|
||||||
" ")))))))
|
" ")))))))
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue