From ad65fd82badffccc03d23a670fcca78d0441df6b Mon Sep 17 00:00:00 2001 From: Kristaps Dzonsons Date: Tue, 12 Jul 2011 21:32:43 +0000 Subject: Have equation be allocated with mparse. Will be needed for logging of messages. --- roff.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'roff.c') diff --git a/roff.c b/roff.c index 488751a6..2d931ca2 100644 --- a/roff.c +++ b/roff.c @@ -1179,7 +1179,7 @@ roff_EQ(ROFF_ARGS) struct eqn_node *e; assert(NULL == r->eqn); - e = eqn_alloc(ppos, ln); + e = eqn_alloc(ppos, ln, r->parse); if (r->last_eqn) r->last_eqn->next = e; -- cgit