diff options
author | Kristaps Dzonsons <kristaps@bsd.lv> | 2009-10-03 19:57:53 +0000 |
---|---|---|
committer | Kristaps Dzonsons <kristaps@bsd.lv> | 2009-10-03 19:57:53 +0000 |
commit | bb9117cebf92c336a1e35630fabcf98352ffda47 (patch) | |
tree | 708e4094eb82c6ba3f6b28c2d1e0ac9aecbd1234 /man_term.c | |
parent | a2f67c7d18ceda8536106b49b654d813a881dbd0 (diff) | |
download | mandoc-bb9117cebf92c336a1e35630fabcf98352ffda47.tar.gz |
Added initial -man framework for -Thtml.
Diffstat (limited to 'man_term.c')
-rw-r--r-- | man_term.c | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -91,7 +91,7 @@ static void post_SS(DECL_ARGS); static void post_TP(DECL_ARGS); static void post_i(DECL_ARGS); -static const struct termact termacts[MAN_MAX] = { +static const struct termact termacts[MAN_MAX] = { { pre_br, NULL }, /* br */ { NULL, NULL }, /* TH */ { pre_SH, post_SH }, /* SH */ @@ -160,6 +160,7 @@ man_run(struct termp *p, const struct man *m) static void + fmt_block_vspace(struct termp *p, const struct man_node *n) { term_newln(p); |