From a03ada82544c8419c243f11f16b3aefd27e3e577 Mon Sep 17 00:00:00 2001 From: Kristaps Dzonsons Date: Wed, 15 Jul 2009 15:53:57 +0000 Subject: Removed assertion (disregarded blank literal lines). --- mdoc_action.c | 17 ++++++++++++++++- term.c | 3 +-- 2 files changed, 17 insertions(+), 3 deletions(-) diff --git a/mdoc_action.c b/mdoc_action.c index dcb938e5..8bc981fe 100644 --- a/mdoc_action.c +++ b/mdoc_action.c @@ -1,4 +1,4 @@ -/* $Id: mdoc_action.c,v 1.27 2009/07/12 20:50:08 kristaps Exp $ */ +/* $Id: mdoc_action.c,v 1.28 2009/07/15 15:53:57 kristaps Exp $ */ /* * Copyright (c) 2008, 2009 Kristaps Dzonsons * @@ -298,6 +298,11 @@ 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) { @@ -326,6 +331,11 @@ 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); @@ -343,6 +353,11 @@ 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); diff --git a/term.c b/term.c index e67a99e4..066013d6 100644 --- a/term.c +++ b/term.c @@ -1,4 +1,4 @@ -/* $Id: term.c,v 1.86 2009/07/15 15:37:48 kristaps Exp $ */ +/* $Id: term.c,v 1.87 2009/07/15 15:53:57 kristaps Exp $ */ /* * Copyright (c) 2008, 2009 Kristaps Dzonsons * @@ -496,7 +496,6 @@ void term_word(struct termp *p, const char *word) { - assert(*word); if (term_isclosedelim(word)) if ( ! (TERMP_IGNDELIM & p->flags)) p->flags |= TERMP_NOSPACE; -- cgit v1.2.3-56-ge451