diff options
Diffstat (limited to 'mdoc_action.c')
-rw-r--r-- | mdoc_action.c | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/mdoc_action.c b/mdoc_action.c index 5b4a9564..b3e471fc 100644 --- a/mdoc_action.c +++ b/mdoc_action.c @@ -298,11 +298,6 @@ post_lb(POST_ARGS) char *buf; size_t sz; - /* - * FIXME: this must be broken apart into a series of TEXT nodes, - * each containing a single word. - */ - assert(MDOC_TEXT == m->last->child->type); p = mdoc_a2lib(m->last->child->string); if (NULL == p) { @@ -331,11 +326,6 @@ post_st(POST_ARGS) { const char *p; - /* - * FIXME: this must be broken apart into a series of TEXT nodes, - * each containing a single word. - */ - assert(MDOC_TEXT == m->last->child->type); p = mdoc_a2st(m->last->child->string); assert(p); @@ -353,11 +343,6 @@ post_at(POST_ARGS) struct mdoc_node *n; const char *p; - /* - * FIXME: this must be broken apart into a series of TEXT nodes, - * each containing a single word. - */ - if (m->last->child) { assert(MDOC_TEXT == m->last->child->type); p = mdoc_a2att(m->last->child->string); |