diff options
author | Kristaps Dzonsons <kristaps@bsd.lv> | 2010-08-24 13:07:01 +0000 |
---|---|---|
committer | Kristaps Dzonsons <kristaps@bsd.lv> | 2010-08-24 13:07:01 +0000 |
commit | 600f607aef5b555ce32a82f81cefbe0ecdf8b6b1 (patch) | |
tree | 514470ecf651c908e207da8e1f229ce943e06fbc /out.c | |
parent | 66d75094ce5444c76b0a0e54353e0043d11e8e04 (diff) | |
download | mandoc-600f607aef5b555ce32a82f81cefbe0ecdf8b6b1.tar.gz |
Stripping out of `\w' groff escape. Yet another for pod2man...
Diffstat (limited to 'out.c')
-rw-r--r-- | out.c | 6 |
1 files changed, 6 insertions, 0 deletions
@@ -293,6 +293,12 @@ a2roffdeco(enum roffdeco *d, const char **word, size_t *sz) } else lim = 1; break; + case ('w'): + if ('\'' == wp[i++]) { + term = '\''; + break; + } + /* FALLTHROUGH */ default: *d = DECO_SSPECIAL; i--; |