mirror of
https://github.com/freebsd/freebsd-src.git
synced 2024-11-28 04:43:32 +00:00
Accept escaped quotes in msg catalogs.
This commit is contained in:
parent
58ab1c7453
commit
6193bf6046
Notes:
svn2git
2020-12-20 02:59:44 +00:00
svn path=/head/; revision=10340
@ -243,6 +243,10 @@ char quote;
|
||||
*tptr++ = '\f';
|
||||
++cptr;
|
||||
break;
|
||||
case '"':
|
||||
*tptr++ = '"';
|
||||
++cptr;
|
||||
break;
|
||||
case '\\':
|
||||
*tptr++ = '\\';
|
||||
++cptr;
|
||||
|
Loading…
Reference in New Issue
Block a user