From d3a3f1bd1196509f332761e989a946231722f47b Mon Sep 17 00:00:00 2001 From: yamaoka Date: Thu, 24 Jun 2004 06:14:48 +0000 Subject: [PATCH] Synch to No Gnus 200406240614. --- lisp/ChangeLog | 6 ++++++ lisp/rfc2047.el | 3 ++- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 6fd6cfb..627bad4 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,3 +1,9 @@ +2004-06-24 Katsumi Yamaoka + + * rfc2047.el (rfc2047-encode-region): Move point to the end of the + region after encoding. + Suggested by IRIE Tetsuya . + 2004-06-23 Katsumi Yamaoka * gnus-cite.el (gnus-cite-parse): Don't ignore case when finding diff --git a/lisp/rfc2047.el b/lisp/rfc2047.el index 61aee15..a6c071d 100644 --- a/lisp/rfc2047.el +++ b/lisp/rfc2047.el @@ -431,7 +431,8 @@ Dynamically bind `rfc2047-encoding-type' to change that." (error (error "Invalid data for rfc2047 encoding: %s" (mm-replace-in-string orig-text "[ \t\n]+" " "))))))) - (rfc2047-fold-region b (point)))) + (rfc2047-fold-region b (point)) + (goto-char (point-max)))) (defun rfc2047-encode-string (string) "Encode words in STRING. -- 1.7.10.4