src/BasicEscapingProcessor.h
branchv_0
changeset 4 372b161669e4
parent 3 ae8775e0bc7a
child 7 bda9d3c83cb7
--- 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);
 		}