diff options
Diffstat (limited to 'mandoc.c')
-rw-r--r-- | mandoc.c | 7 |
1 files changed, 7 insertions, 0 deletions
@@ -171,6 +171,13 @@ mandoc_special(char *p) case ('['): term = ']'; break; + case ('z'): + len = 1; + if ('\\' == *p) { + p += mandoc_special(p); + return(*p ? (int)(p - sv) : 0); + } + break; default: len = 1; p--; |