diff --git a/usr.bin/gencat/genlib.c b/usr.bin/gencat/genlib.c index 0827ede29b5e..3b429870bcfa 100644 --- a/usr.bin/gencat/genlib.c +++ b/usr.bin/gencat/genlib.c @@ -247,6 +247,10 @@ char quote; *tptr++ = '"'; ++cptr; break; + case '\'': + *tptr++ = '\''; + ++cptr; + break; case '\\': *tptr++ = '\\'; ++cptr;