diff -r ae8775e0bc7a -r 372b161669e4 src/BasicEscapingProcessor.h --- a/src/BasicEscapingProcessor.h Sat Dec 12 00:01:57 2020 +0100 +++ b/src/BasicEscapingProcessor.h Sat Dec 12 14:42:36 2020 +0100 @@ -41,6 +41,7 @@ else if (ch == L'\t') result.put(ESC).put(L't'); else if (ch == L'"' && quotingType != QuotingType::Apostrophes) result.put(ESC).put(ch); else if (ch == L'\'' && quotingType != QuotingType::Quotes) result.put(ESC).put(ch); + else if (ch == L'=' && quotingType == QuotingType::None) result.put(ESC).put(ch); else result.put(ch); }