From 6193bf60468aad8ca134fc03917d633997fe479b Mon Sep 17 00:00:00 2001 From: "Jordan K. Hubbard" Date: Sat, 26 Aug 1995 18:37:49 +0000 Subject: [PATCH] Accept escaped quotes in msg catalogs. --- usr.bin/gencat/genlib.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/usr.bin/gencat/genlib.c b/usr.bin/gencat/genlib.c index f592be003c13..0827ede29b5e 100644 --- a/usr.bin/gencat/genlib.c +++ b/usr.bin/gencat/genlib.c @@ -243,6 +243,10 @@ char quote; *tptr++ = '\f'; ++cptr; break; + case '"': + *tptr++ = '"'; + ++cptr; + break; case '\\': *tptr++ = '\\'; ++cptr;