* url-news sends wrongly formatted argument to gnus
@ 2007-09-17 14:32 Diane Murray
2007-09-21 3:32 ` Glenn Morris
0 siblings, 1 reply; 2+ messages in thread
From: Diane Murray @ 2007-09-17 14:32 UTC (permalink / raw)
To: emacs-devel
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 <disumu@x3y2z1.net>
* 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)))
^ permalink raw reply [flat|nested] 2+ messages in thread
* Re: url-news sends wrongly formatted argument to gnus
2007-09-17 14:32 url-news sends wrongly formatted argument to gnus Diane Murray
@ 2007-09-21 3:32 ` Glenn Morris
0 siblings, 0 replies; 2+ messages in thread
From: Glenn Morris @ 2007-09-21 3:32 UTC (permalink / raw)
To: Diane Murray; +Cc: emacs-devel
Diane Murray wrote:
> 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.
Thanks; applied.
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2007-09-21 3:32 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2007-09-17 14:32 url-news sends wrongly formatted argument to gnus Diane Murray
2007-09-21 3:32 ` Glenn Morris
Code repositories for project(s) associated with this public inbox
https://git.savannah.gnu.org/cgit/emacs.git
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).