diff options
author | 2010-10-15 20:45:03 +0000 | |
---|---|---|
committer | 2010-10-15 20:45:03 +0000 | |
commit | 69615b3529bd47f73a5c431c091fb8baf554096c (patch) | |
tree | 2e5629aa7c957885af7c81d74231a8431075c39f /usr.bin/mandoc/man_validate.c | |
parent | Remove redundant definition (diff) | |
download | wireguard-openbsd-69615b3529bd47f73a5c431c091fb8baf554096c.tar.xz wireguard-openbsd-69615b3529bd47f73a5c431c091fb8baf554096c.zip |
Minimal glue to integrate tbl into the mandoc man(7) parser and formatter.
The output dosn't look nice yet, escape handling is still missing,
but will follow soon.
"move forward aggressively :-)" deraadt@
Diffstat (limited to 'usr.bin/mandoc/man_validate.c')
-rw-r--r-- | usr.bin/mandoc/man_validate.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/usr.bin/mandoc/man_validate.c b/usr.bin/mandoc/man_validate.c index 873c625c549..4b838feadfe 100644 --- a/usr.bin/mandoc/man_validate.c +++ b/usr.bin/mandoc/man_validate.c @@ -1,4 +1,4 @@ -/* $Id: man_validate.c,v 1.29 2010/08/20 00:53:35 schwarze Exp $ */ +/* $Id: man_validate.c,v 1.30 2010/10/15 20:45:03 schwarze Exp $ */ /* * Copyright (c) 2008, 2009, 2010 Kristaps Dzonsons <kristaps@bsd.lv> * @@ -95,6 +95,8 @@ static const struct man_valid man_valids[MAN_MAX] = { { pres_bline, posts_eq0 }, /* Ve */ { NULL, NULL }, /* AT */ { NULL, NULL }, /* in */ + { NULL, NULL }, /* TS */ + { NULL, NULL }, /* TE */ }; |