From dbb6de8eeb39ebe8ccbc4067d3b1b5cd60997c9e Mon Sep 17 00:00:00 2001 From: yamaoka Date: Tue, 21 Oct 2003 07:53:57 +0000 Subject: [PATCH] Synch to Gnus 200310210749. --- lisp/ChangeLog | 5 +++++ lisp/gnus-picon.el | 7 +++++-- 2 files changed, 10 insertions(+), 2 deletions(-) diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 586dc2f..366fa07 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,3 +1,8 @@ +2003-10-21 Lars Magne Ingebrigtsen + + * gnus-picon.el (gnus-picon-transform-address): Protect against + errors. + 2003-10-20 Katsumi Yamaoka * gnus-msg.el (nnspool-rejected-article-hook): Remove defvar. diff --git a/lisp/gnus-picon.el b/lisp/gnus-picon.el index c32fb52..7c6c5e1 100644 --- a/lisp/gnus-picon.el +++ b/lisp/gnus-picon.el @@ -158,8 +158,11 @@ GLYPH can be either a glyph or a string." (mail-header-parse-addresses ;; mail-header-parse-addresses does not work (reliably) on ;; decoded headers. - (mail-encode-encoded-word-string - (or (mail-fetch-field header) "")))) + (or + (ignore-errors + (mail-encode-encoded-word-string + (or (mail-fetch-field header) ""))) + (mail-fetch-field header)))) spec file point cache) (dolist (address addresses) (setq address (car address)) -- 1.7.10.4