diff options
Diffstat (limited to 'src/text.cpp')
-rw-r--r-- | src/text.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
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; |