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_term.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_term.c')
-rw-r--r-- | mdoc_term.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mdoc_term.c b/mdoc_term.c index ecda7c7f..81074b70 100644 --- a/mdoc_term.c +++ b/mdoc_term.c @@ -203,7 +203,7 @@ static const struct termact termacts[MDOC_MAX] = { { NULL, NULL }, /* Dc */ { termp_dq_pre, termp_dq_post }, /* Do */ { termp_dq_pre, termp_dq_post }, /* Dq */ - { NULL, NULL }, /* Ec */ + { NULL, NULL }, /* Ec */ /* FIXME: no space */ { NULL, NULL }, /* Ef */ { termp_under_pre, NULL }, /* Em */ { NULL, NULL }, /* Eo */ |