Add \' to valid escapes list to be compatible with printf
2.2 candidate
This commit is contained in:
parent
e90f4998f6
commit
d6af96c622
@ -247,6 +247,10 @@ char quote;
|
||||
*tptr++ = '"';
|
||||
++cptr;
|
||||
break;
|
||||
case '\'':
|
||||
*tptr++ = '\'';
|
||||
++cptr;
|
||||
break;
|
||||
case '\\':
|
||||
*tptr++ = '\\';
|
||||
++cptr;
|
||||
|
Loading…
Reference in New Issue
Block a user