From 7869a38c2f603cd65c8ee47083ccd2d004abbd8e Mon Sep 17 00:00:00 2001 From: yamaoka Date: Fri, 26 Dec 2003 00:10:32 +0000 Subject: [PATCH] Synch to Gnus 200312260007. --- lisp/ChangeLog | 5 +++++ lisp/mm-bodies.el | 2 ++ 2 files changed, 7 insertions(+) diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 0f0ce41..be20d47 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,3 +1,8 @@ +2003-12-26 Jesper Harder + + * mm-bodies.el (mm-body-encoding): Don't use 7bit if the body + contains "^From " and mm-use-ultra-safe-encoding is true. + 2003-12-25 Jesper Harder * mml1991.el (mml1991-pgg-sign): Encode and decode according to diff --git a/lisp/mm-bodies.el b/lisp/mm-bodies.el index 810185c..3475168 100644 --- a/lisp/mm-bodies.el +++ b/lisp/mm-bodies.el @@ -131,6 +131,8 @@ If no encoding was done, nil is returned." (require 'message) (cond ((and (not longp) + (not (and mm-use-ultra-safe-encoding + (save-excursion (re-search-forward "^From " nil t)))) (eq bits '7bit)) bits) ((and (not mm-use-ultra-safe-encoding) -- 1.7.10.4