diff options
-rw-r--r-- | eqn_html.c | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -231,6 +231,9 @@ print_eqn(struct html *p, const struct eqn_box *bp) { struct tag *t; + if (bp->first == NULL) + return; + t = print_otag(p, TAG_MATH, "c", "eqn"); p->flags |= HTML_NONOSPACE; |