1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2025-01-17 17:42:26 +00:00

gnus-html.el (gnus-html-wash-tags): Decode URL entities to avoid handing broken links to browse-url.

nnimap.el (nnimap-request-accept-article): Message the error on error.
This commit is contained in:
Gnus developers 2010-09-27 12:22:22 +00:00 committed by Katsumi Yamaoka
parent 1d77b63e65
commit 062eae9968
3 changed files with 15 additions and 2 deletions

View File

@ -2,10 +2,20 @@
* nnmail.el (nnmail-fancy-expiry-targets): Fix typo in docstring.
2010-09-27 Lars Magne Ingebrigtsen <larsi@gnus.org>
* nnimap.el (nnimap-request-accept-article): Message the error on
error.
2010-09-27 Katsumi Yamaoka <yamaoka@jpl.org>
* gnus-art.el (gnus-mime-delete-part): Fix Lisp type of byte(s).
2010-09-26 Florian Ragwitz <rafl@debian.org>
* gnus-html.el (gnus-html-wash-tags): Decode URL entities to avoid
handing broken links to browse-url.
2010-09-26 Lars Magne Ingebrigtsen <larsi@gnus.org>
* nndoc.el (nndoc-request-list): Return success always.

View File

@ -286,7 +286,7 @@ Use ALT-TEXT for the image string."
(setq url (match-string 1 parameters))
(gnus-message 8 "gnus-html-wash-tags: fetching link URL %s" url)
(gnus-article-add-button start end
'browse-url url
'browse-url (mm-url-decode-entities-string url)
url)
(let ((overlay (gnus-make-overlay start end)))
(gnus-overlay-put overlay 'evaporate t)

View File

@ -772,7 +772,10 @@ some servers.")
"\n"
"\r\n"))
(let ((result (nnimap-get-response sequence)))
(when result
(if (not (car result))
(progn
(message "%s" (nnheader-get-report-string 'nnimap))
nil)
(cons group
(nnimap-find-article-by-message-id group message-id))))))))