summaryrefslogtreecommitdiff
path: root/lisp/net/newst-backend.el
diff options
context:
space:
mode:
authorUlf Jasper <ulf.jasper@web.de>2021-02-23 19:23:50 +0100
committerUlf Jasper <ulf.jasper@web.de>2021-02-23 19:23:50 +0100
commit5ae02894640bc7bd5a88610e11c7bdce9040c3fe (patch)
tree491e16d8498778be11430403e9a1235f18003802 /lisp/net/newst-backend.el
parenta283996fc728e249816d3bd43a6da1f3c0eab837 (diff)
downloademacs-5ae02894640bc7bd5a88610e11c7bdce9040c3fe.tar.gz
Fix invalid interactive-statement
* lisp/net/newst-backend.el (newsticker-customize): Fix invalid interactive-statement.
Diffstat (limited to 'lisp/net/newst-backend.el')
-rw-r--r--lisp/net/newst-backend.el3
1 files changed, 1 insertions, 2 deletions
diff --git a/lisp/net/newst-backend.el b/lisp/net/newst-backend.el
index 4ff950fc5c1..c2809ea9181 100644
--- a/lisp/net/newst-backend.el
+++ b/lisp/net/newst-backend.el
@@ -649,8 +649,7 @@ If URL is nil it is searched at point."
"Open customization buffer for `newsticker-url-list' and jump to FEED-NAME."
(interactive
(list (completing-read "Name of feed or group to edit: "
- (append (mapcar #'car newsticker-url-list)
- nil t feed-name))))
+ (mapcar #'car newsticker-url-list))))
(customize-variable 'newsticker-url-list)
(delete-other-windows)
(when (re-search-forward (concat "Label: " feed-name) nil t)