diff options
| author | Glenn Morris | 2007-09-21 03:32:47 +0000 |
|---|---|---|
| committer | Glenn Morris | 2007-09-21 03:32:47 +0000 |
| commit | d01b355036f694de92fd930272488714eabe8980 (patch) | |
| tree | ca3f0706c7690523d484cb34e26f112a705a0d9e | |
| parent | c1b8e8966d550f11fc14aeffe59fbed73ae1cbd8 (diff) | |
| download | emacs-d01b355036f694de92fd930272488714eabe8980.tar.gz emacs-d01b355036f694de92fd930272488714eabe8980.zip | |
Diane Murray <disumu at x3y2z1.net>
(url-news-fetch-newsgroup): Fix formatting of Gnus method.
| -rw-r--r-- | lisp/url/ChangeLog | 3 | ||||
| -rw-r--r-- | lisp/url/url-news.el | 4 |
2 files changed, 5 insertions, 2 deletions
diff --git a/lisp/url/ChangeLog b/lisp/url/ChangeLog index d8f3a512d1c..e7b441bf55e 100644 --- a/lisp/url/ChangeLog +++ b/lisp/url/ChangeLog | |||
| @@ -1,5 +1,8 @@ | |||
| 1 | 2007-09-21 Diane Murray <disumu@x3y2z1.net> | 1 | 2007-09-21 Diane Murray <disumu@x3y2z1.net> |
| 2 | 2 | ||
| 3 | * url-news.el (url-news-fetch-newsgroup): Fix formatting of Gnus | ||
| 4 | method. | ||
| 5 | |||
| 3 | * url-util.el (url-get-normalized-date): Pass full timezone | 6 | * url-util.el (url-get-normalized-date): Pass full timezone |
| 4 | information to timezone-make-date-arpa-standard, since zone name | 7 | information to timezone-make-date-arpa-standard, since zone name |
| 5 | may be unknown. | 8 | may be unknown. |
diff --git a/lisp/url/url-news.el b/lisp/url/url-news.el index 48f332fe7a0..d774270aced 100644 --- a/lisp/url/url-news.el +++ b/lisp/url/url-news.el | |||
| @@ -102,8 +102,8 @@ | |||
| 102 | (goto-char (point-min)) | 102 | (goto-char (point-min)) |
| 103 | (gnus-group-read-ephemeral-group newsgroup | 103 | (gnus-group-read-ephemeral-group newsgroup |
| 104 | (list 'nntp host | 104 | (list 'nntp host |
| 105 | 'nntp-open-connection-function | 105 | (list 'nntp-open-connection-function |
| 106 | nntp-open-connection-function) | 106 | nntp-open-connection-function)) |
| 107 | nil | 107 | nil |
| 108 | (cons (current-buffer) 'browse))) | 108 | (cons (current-buffer) 'browse))) |
| 109 | 109 | ||