Workaround for bug #2264

Reverting back to previous behavior to get proper
escaping.
This commit is contained in:
Leland Lucius 2020-01-06 22:01:08 -06:00
parent d8b878f163
commit 5ba6072bbb
1 changed files with 1 additions and 1 deletions

View File

@ -209,7 +209,7 @@ LOCAL void putqstring(LVAL fptr, LVAL str)
for (p = getstring(str); (ch = *p) != '\0'; ++p)
/* check for a control character */
if (ch < 040 || ch == '\\' || ch > 0176 || ch == '"') {
if (ch < 040 || ch == '\\' || ch > 0176 /* || ch == '"' */) {
xlputc(fptr,'\\');
switch (ch) {
case '\011':