From 66f6840e4956c3f5a7f50abeb65500ec9bc1950b Mon Sep 17 00:00:00 2001 From: yamaoka Date: Tue, 2 Sep 2003 02:13:11 +0000 Subject: [PATCH] Synch to Gnus 200309020218. --- lisp/ChangeLog | 5 +++++ lisp/rfc2047.el | 4 +++- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/lisp/ChangeLog b/lisp/ChangeLog index cb283e9..db96494 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,3 +1,8 @@ +2003-09-02 Jesper Harder + + * rfc2047.el (rfc2047-fold-region): Don't fold at the beginning + of the field. + 2003-09-01 Simon Josefsson * mml.el (mml-insert-mime-headers-always): New variable. diff --git a/lisp/rfc2047.el b/lisp/rfc2047.el index bf4328d..f22fc63 100644 --- a/lisp/rfc2047.el +++ b/lisp/rfc2047.el @@ -492,7 +492,9 @@ By default, the region is treated as containing addresses (see (if (eq (char-after) ?=) (forward-char 1) (skip-chars-forward "^ \t\n\r=")) - (setq qword-break (point)) + ;; Don't break at the start of the field. + (unless (= (point) b) + (setq qword-break (point))) (skip-chars-forward "^ \t\n\r"))) (t (skip-chars-forward "^ \t\n\r")))) -- 1.7.10.4