1
0
mirror of https://git.FreeBSD.org/src.git synced 2024-12-01 08:27:59 +00:00

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

2.2 candidate
This commit is contained in:
Andrey A. Chernov 1996-12-15 23:55:03 +00:00
parent 854569350f
commit 9263e09a24
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=20541

View File

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