aboutsummaryrefslogtreecommitdiff
path: root/usr.bin/gencat
diff options
context:
space:
mode:
authorAndrey A. Chernov <ache@FreeBSD.org>1996-12-15 23:55:03 +0000
committerAndrey A. Chernov <ache@FreeBSD.org>1996-12-15 23:55:03 +0000
commit9263e09a247b12a1891ac363c78dfc664acccd46 (patch)
tree5fa453299964b348a98600926a3a445b6d367cd0 /usr.bin/gencat
parent854569350fde3ca5107f253e730f258341eb6fd3 (diff)
Notes
Diffstat (limited to 'usr.bin/gencat')
-rw-r--r--usr.bin/gencat/genlib.c4
1 files changed, 4 insertions, 0 deletions
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;