diff options
author | Kristaps Dzonsons <kristaps@bsd.lv> | 2009-07-24 20:22:24 +0000 |
---|---|---|
committer | Kristaps Dzonsons <kristaps@bsd.lv> | 2009-07-24 20:22:24 +0000 |
commit | 0d8aacabe1e3f7fd5a9be49188ca96e229c4fb6a (patch) | |
tree | 2078783f3427b073da8982323c2ff70ceae4e3da /mandoc.c | |
parent | 01f69fb32c4ca7b2a3feed66a73e89239f256947 (diff) | |
download | mandoc-0d8aacabe1e3f7fd5a9be49188ca96e229c4fb6a.tar.gz |
Added `sp' support to libman.
Added `\c' to known escapes (only used in man, but still).
Diffstat (limited to 'mandoc.c')
-rw-r--r-- | mandoc.c | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -59,6 +59,8 @@ mandoc_special(const char *p) /* FALLTHROUGH */ case (':'): /* FALLTHROUGH */ + case ('c'): + return(2); case ('e'): return(2); case ('f'): |