diff options
| author | Andrey A. Chernov <ache@FreeBSD.org> | 1996-12-15 23:55:03 +0000 |
|---|---|---|
| committer | Andrey A. Chernov <ache@FreeBSD.org> | 1996-12-15 23:55:03 +0000 |
| commit | 9263e09a247b12a1891ac363c78dfc664acccd46 (patch) | |
| tree | 5fa453299964b348a98600926a3a445b6d367cd0 /usr.bin/gencat | |
| parent | 854569350fde3ca5107f253e730f258341eb6fd3 (diff) | |
Notes
Diffstat (limited to 'usr.bin/gencat')
| -rw-r--r-- | usr.bin/gencat/genlib.c | 4 |
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; |
