Add \' to valid escapes list to be compatible with printf

2.2 candidate
This commit is contained in:
ache 1996-12-15 23:55:03 +00:00
parent e90f4998f6
commit d6af96c622

View File

@ -247,6 +247,10 @@ char quote;
*tptr++ = '"';
++cptr;
break;
case '\'':
*tptr++ = '\'';
++cptr;
break;
case '\\':
*tptr++ = '\\';
++cptr;