Accept escaped quotes in msg catalogs.

This commit is contained in:
Jordan K. Hubbard 1995-08-26 18:37:49 +00:00
parent 58ab1c7453
commit 6193bf6046
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=10340

View file

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