diff options
author | jao <jao@gnu.org> | 2021-04-01 17:15:02 +0100 |
---|---|---|
committer | jao <jao@gnu.org> | 2021-04-01 17:15:02 +0100 |
commit | 41654113d80344a8b11ac9d34c801b67a4109eda (patch) | |
tree | 4f15034bd219c80ec2fe326df5dc5fd82d22c63d | |
parent | ac0715587b1ae684812bf2e1387918554ca25c86 (diff) | |
download | elibs-41654113d80344a8b11ac9d34c801b67a4109eda.tar.gz elibs-41654113d80344a8b11ac9d34c801b67a4109eda.tar.bz2 |
fix for rss subscriber
-rw-r--r-- | init.org | 3 |
1 files changed, 1 insertions, 2 deletions
@@ -2281,8 +2281,7 @@ (defun jao-rss-subscribe () (interactive) - (let* ((url (or (jao-rss--find-url) - (jao-url-around-point) + (let* ((url (or (jao-url-around-point) (read-string "Feed URL: "))) (url+title (if url (cons url "") (jao-rss--find-url))) (url (car url+title)) |