From 0b12f1977d44f87e23d6f3b9af10dab8178764f5 Mon Sep 17 00:00:00 2001 From: yamaoka Date: Wed, 17 Dec 2003 07:03:33 +0000 Subject: [PATCH] Synch to Gnus 200312170658. --- lisp/ChangeLog | 7 +++++++ lisp/message.el | 5 ++++- 2 files changed, 11 insertions(+), 1 deletion(-) diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 05192e8..11cff3b 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,3 +1,10 @@ +2003-12-17 Katsumi Yamaoka + + * message.el (message-forward-subject-name-subject): Use + gnus-extract-address-components instead of + mail-header-parse-address because it may be called with non-ascii + text. + 2003-12-16 Per Abrahamsen * nnmail.el (nnmail-split-fancy): The widget now supports diff --git a/lisp/message.el b/lisp/message.el index 02e3a24..7e8a95a 100644 --- a/lisp/message.el +++ b/lisp/message.el @@ -1769,6 +1769,9 @@ no, only reply back to the author." (autoload 'rmail-output "rmailout") (autoload 'gnus-delay-article "gnus-delay") (autoload 'gnus-make-local-hook "gnus-util") + (autoload 'gnus-extract-address-components "gnus-util")) + +(eval-and-compile (autoload 'mu-cite-original "mu-cite")) @@ -6784,7 +6787,7 @@ news, Source is the list of newsgroups is was posted to." (if group (gnus-group-decoded-name group) (or (and (setq from (message-fetch-field "from")) - (car (std11-extract-address-components + (car (std11-extract-address-components (nnheader-decode-from from)))) "(nowhere)"))) "] " subject)) -- 1.7.10.4