From 5b638bbfdf2ca6a5b8ba189a179d07a062c3d6cb Mon Sep 17 00:00:00 2001 From: Vincent Richard Date: Mon, 14 Mar 2005 21:37:28 +0000 Subject: [PATCH] Fixed bug with CRLF between two encoded words. --- src/text.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/text.cpp b/src/text.cpp index daf79d44..e510da12 100644 --- a/src/text.cpp +++ b/src/text.cpp @@ -690,7 +690,7 @@ void text::decodeAndUnfold(const string::const_iterator& inStart, const string:: for ( ; ; ) { - if (p == end || *p == '\n') + if (p == end) // || *p == '\n') { string::const_iterator textEnd = p;