From 369f5cb910bf4ab8c1bee33bcec3669562e473ee Mon Sep 17 00:00:00 2001 From: yamaoka Date: Wed, 26 May 2004 08:24:19 +0000 Subject: [PATCH] Synch to No Gnus 200405260823. --- lisp/ChangeLog | 4 ++++ lisp/rfc2047.el | 4 +++- 2 files changed, 7 insertions(+), 1 deletion(-) 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)))))))) -- 1.7.10.4