This commit is contained in:
john30
2017-02-18 11:40:20 +01:00
parent 6b7325efce
commit de66ead9a6
+1 -1
View File
@@ -288,7 +288,7 @@ class FileReader {
field << TEXT_SEPARATOR; // single dquote in the middle of formerly quoted text
quotedText = true;
} else if (quotedText && pos == 0 && field.tellp() > 0 && *(field.str().end()-1) != VALUE_SEPARATOR) {
field << VALUE_SEPARATOR;
field << VALUE_SEPARATOR; // add separator in between multiline field parts
}
field << ch;
break;