diff options
author | Kristaps Dzonsons <kristaps@bsd.lv> | 2009-09-24 11:55:28 +0000 |
---|---|---|
committer | Kristaps Dzonsons <kristaps@bsd.lv> | 2009-09-24 11:55:28 +0000 |
commit | 0371d94639d271317d0697e7eefe5cb79df85fb7 (patch) | |
tree | d585e0c9978240817fc4183c33d9deff2ac20086 /mdoc_term.c | |
parent | f31eee34a29f6fcdb8fe0640095473ede5982887 (diff) | |
download | mandoc-0371d94639d271317d0697e7eefe5cb79df85fb7.tar.gz |
Fix in -Tascii where `Lb' causes line-break in any section (should only happen in LIBRARY).
`Fn' first parameter is broken apart into ftype and fname in -Thtml (for correct style application).
Fixed \0 special character.
Diffstat (limited to 'mdoc_term.c')
-rw-r--r-- | mdoc_term.c | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/mdoc_term.c b/mdoc_term.c index f50149bf..ab098b2b 100644 --- a/mdoc_term.c +++ b/mdoc_term.c @@ -1519,10 +1519,6 @@ termp_fn_pre(DECL_ARGS) { const struct mdoc_node *n; - assert(node->child && MDOC_TEXT == node->child->type); - - /* FIXME: can be "type funcname" "type varname"... */ - p->bold++; term_word(p, node->child->string); p->bold--; |