From: yamaoka Date: Wed, 26 May 2004 08:24:19 +0000 (+0000) Subject: Synch to No Gnus 200405260823. X-Git-Tag: t-gnus-6_17_4-quimby-~897 X-Git-Url: http://git.chise.org/gitweb/?a=commitdiff_plain;h=369f5cb910bf4ab8c1bee33bcec3669562e473ee;p=elisp%2Fgnus.git- Synch to No Gnus 200405260823. --- diff --git a/lisp/ChangeLog b/lisp/ChangeLog index b359dac..087019e 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,3 +1,7 @@ +2004-05-26 Katsumi Yamaoka + + * rfc2047.el (rfc2047-encodable-p): Don't move point. + 2004-05-25 Teodor Zlatanov * gnus-sum.el (gnus-summary-delete-article): invoke hook with diff --git a/lisp/rfc2047.el b/lisp/rfc2047.el index 2493bba..0f74b68 100644 --- a/lisp/rfc2047.el +++ b/lisp/rfc2047.el @@ -242,7 +242,9 @@ The buffer may be narrowed." (mm-find-mime-charset-region (point-min) (point-max)))) (goto-char (point-min)) (or (and rfc2047-encode-encoded-words - (search-forward "=?" nil t)) + (prog1 + (search-forward "=?" nil t) + (goto-char (point-min)))) (and charsets (not (equal charsets (list (car message-posting-charset))))))))