emacs-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

url-news sends wrongly formatted argument to gnus


From: Diane Murray
Subject: url-news sends wrongly formatted argument to gnus
Date: Mon, 17 Sep 2007 16:32:22 +0200

An error occurs when `url-news' trys to open URLs like
<news:alt.music.saxophone>, because `url-news-fetch-newsgroup' sends a
poorly formatted connection method to
`gnus-group-read-ephemeral-group'.  The following patch fixes this.


2007-09-17  Diane Murray  <address@hidden>

        * url-news.el (url-news-fetch-newsgroup): Fixed formatting of gnus
        method.


--- url-news.el 02 Aug 2007 18:43:27 +0200      1.14.2.1
+++ url-news.el 17 Sep 2007 16:23:16 +0200      
@@ -102,8 +102,8 @@
   (goto-char (point-min))
   (gnus-group-read-ephemeral-group newsgroup
                                   (list 'nntp host
-                                        'nntp-open-connection-function
-                                        nntp-open-connection-function)
+                                        (list 'nntp-open-connection-function
+                                               nntp-open-connection-function))
                                   nil
                                   (cons (current-buffer) 'browse)))
 




reply via email to

[Prev in Thread] Current Thread [Next in Thread]