diff options
author | Ingo Schwarze <schwarze@cvs.openbsd.org> | 2010-10-16 13:38:30 +0000 |
---|---|---|
committer | Ingo Schwarze <schwarze@cvs.openbsd.org> | 2010-10-16 13:38:30 +0000 |
commit | 67109423dbbc5dceafdb4ed7394ac6ed336210b5 (patch) | |
tree | 5816e1ce1de3b3993927f5e66eb1dac8241f11c2 /usr.bin/mandoc/mdoc_html.c | |
parent | d9a3f1256d9f3713dffb2640546f03d48b2192b2 (diff) |
Support tbl(1) code embedded into mdoc(7) input files.
Very similar to what i have done in man(7) yesterday.
Allows to build cpu(4) on HPPA, wi(4), and phantasia(6).
Now we are able to build all tbl code in base.
Diffstat (limited to 'usr.bin/mandoc/mdoc_html.c')
-rw-r--r-- | usr.bin/mandoc/mdoc_html.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/usr.bin/mandoc/mdoc_html.c b/usr.bin/mandoc/mdoc_html.c index 2295e26a24d..0ea7b2b118c 100644 --- a/usr.bin/mandoc/mdoc_html.c +++ b/usr.bin/mandoc/mdoc_html.c @@ -1,4 +1,4 @@ -/* $Id: mdoc_html.c,v 1.34 2010/10/01 21:38:26 schwarze Exp $ */ +/* $Id: mdoc_html.c,v 1.35 2010/10/16 13:38:29 schwarze Exp $ */ /* * Copyright (c) 2008, 2009, 2010 Kristaps Dzonsons <kristaps@bsd.lv> * @@ -245,6 +245,8 @@ static const struct htmlmdoc mdocs[MDOC_MAX] = { {mdoc_sp_pre, NULL}, /* sp */ {mdoc__x_pre, mdoc__x_post}, /* %U */ {NULL, NULL}, /* Ta */ + {NULL, NULL}, /* TS */ + {NULL, NULL}, /* TE */ }; |