diff options
author | Kristaps Dzonsons <kristaps@bsd.lv> | 2010-03-29 19:28:04 +0000 |
---|---|---|
committer | Kristaps Dzonsons <kristaps@bsd.lv> | 2010-03-29 19:28:04 +0000 |
commit | c3b989ab9fc89a8c8b709c612e5f9a40e523c983 (patch) | |
tree | 39688525345676226553f1fee8e89006e0ab1dea /mdoc_html.c | |
parent | e34909a15faed90ad1d9efd5e6d44270ab386b5c (diff) | |
download | mandoc-c3b989ab9fc89a8c8b709c612e5f9a40e523c983.tar.gz |
Integrate Ingo Schwarze's patch for mdoc_iscdelim() (tri-state for opening and closing macro punctuation).
Modify blk_part_exp() to correctly handle leading punctuation before HEAD.
Significantly clean up and document blk_part_exp().
Modify blk_part_imp() for to correctly handle leading punctuation before HEAD.
Significantly clean up and document blk_part_imp().
Integrate Ingo Schwarze's patch for args() (using new mdoc_iscdelim() format).
Documented bad `Ec' handling for later work in mdoc_term.c/mdoc_html.c.
Diffstat (limited to 'mdoc_html.c')
-rw-r--r-- | mdoc_html.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mdoc_html.c b/mdoc_html.c index 9305b508..8a3e26b8 100644 --- a/mdoc_html.c +++ b/mdoc_html.c @@ -200,7 +200,7 @@ static const struct htmlmdoc mdocs[MDOC_MAX] = { {NULL, NULL}, /* Dc */ {mdoc_dq_pre, mdoc_dq_post}, /* Do */ {mdoc_dq_pre, mdoc_dq_post}, /* Dq */ - {NULL, NULL}, /* Ec */ + {NULL, NULL}, /* Ec */ /* FIXME: no space */ {NULL, NULL}, /* Ef */ {mdoc_em_pre, NULL}, /* Em */ {NULL, NULL}, /* Eo */ |