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 /mandoc.c | |
parent | 66d75094ce5444c76b0a0e54353e0043d11e8e04 (diff) | |
download | mandoc-600f607aef5b555ce32a82f81cefbe0ecdf8b6b1.tar.gz |
Stripping out of `\w' groff escape. Yet another for pod2man...
Diffstat (limited to 'mandoc.c')
-rw-r--r-- | mandoc.c | 8 |
1 files changed, 6 insertions, 2 deletions
@@ -55,8 +55,6 @@ mandoc_special(char *p) /* FALLTHROUGH */ case ('x'): /* FALLTHROUGH */ - case ('w'): - /* FALLTHROUGH */ case ('S'): /* FALLTHROUGH */ case ('R'): @@ -178,6 +176,12 @@ mandoc_special(char *p) return(*p ? (int)(p - sv) : 0); } break; + case ('w'): + if ('\'' == *p++) { + term = '\''; + break; + } + /* FALLTHROUGH */ default: len = 1; p--; |