aboutsummaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
-rw-r--r--roff.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/roff.c b/roff.c
index 86dc402a..71ffe27e 100644
--- a/roff.c
+++ b/roff.c
@@ -1,4 +1,4 @@
-/* $Id: roff.c,v 1.235 2014/10/25 14:35:37 schwarze Exp $ */
+/* $Id: roff.c,v 1.236 2014/10/25 15:23:56 schwarze Exp $ */
/*
* Copyright (c) 2010, 2011, 2012 Kristaps Dzonsons <kristaps@bsd.lv>
* Copyright (c) 2010-2014 Ingo Schwarze <schwarze@openbsd.org>
@@ -730,7 +730,8 @@ roff_parseln(struct roff *r, int ln, char **bufp,
/* Handle in-line equation delimiters. */
- if (r->last_eqn != NULL && r->last_eqn->delim &&
+ if (r->tbl == NULL &&
+ r->last_eqn != NULL && r->last_eqn->delim &&
(r->eqn == NULL || r->eqn_inline)) {
e = roff_eqndelim(r, bufp, szp, pos);
if (e == ROFF_REPARSE)