mirror of
https://github.com/cookiengineer/audacity
synced 2025-04-29 23:29:41 +02:00
Workaround for bug #2264
Reverting back to previous behavior to get proper escaping.
This commit is contained in:
parent
d8b878f163
commit
5ba6072bbb
@ -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':
|
||||
|
Loading…
x
Reference in New Issue
Block a user