diff options
author | Kristaps Dzonsons <kristaps@bsd.lv> | 2009-11-05 07:21:01 +0000 |
---|---|---|
committer | Kristaps Dzonsons <kristaps@bsd.lv> | 2009-11-05 07:21:01 +0000 |
commit | 0c78894c64ebea8f4ab0917e43506b712921a05d (patch) | |
tree | b7bb07cd90c4bde5dc23981dfc32d3c033c55929 /chars.c | |
parent | f9109fa61e7b814ab140124e035d7e7f813e0995 (diff) | |
download | mandoc-0c78894c64ebea8f4ab0917e43506b712921a05d.tar.gz |
Added functionality of -Tascii non-breaking `\~' space.
Diffstat (limited to 'chars.c')
-rw-r--r-- | chars.c | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -47,9 +47,10 @@ struct ln { #define BOTH(w, x, y, z, a, b) \ { NULL, (w), (y), (a), (x), (z), (b), CHARS_BOTH }, -static struct ln lines[LINES_MAX] = { +#define CHAR_TBL_START static struct ln lines[LINES_MAX] = { +#define CHAR_TBL_END }; + #include "chars.in" -}; struct tbl { enum chars type; |