From: yamaoka Date: Tue, 2 Sep 2003 02:13:11 +0000 (+0000) Subject: Synch to Gnus 200309020218. X-Git-Url: http://git.chise.org/gitweb/?a=commitdiff_plain;h=66f6840e4956c3f5a7f50abeb65500ec9bc1950b;p=elisp%2Fgnus.git- Synch to Gnus 200309020218. --- 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"))))