From 14d90681383cc9a1c4a9eee4f86b43b062d14639 Mon Sep 17 00:00:00 2001 From: Ali Gholami Rudi Date: Sat, 7 Mar 2015 16:53:17 +0330 Subject: [PATCH] eqn: EQN_TOP is no longer necessary --- eqn.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/eqn.c b/eqn.c index 1677102..2e87094 100644 --- a/eqn.c +++ b/eqn.c @@ -13,7 +13,6 @@ /* flags passed to eqn_box() */ #define EQN_TSMASK 0x00ffff /* style mask */ -#define EQN_TOP 0x010000 /* top-level boxes */ #define EQN_SUB 0x020000 /* this is a subscript */ #define EQN_FROM 0x040000 /* this is a from block */ @@ -479,7 +478,7 @@ static struct box *eqn_read(int style) escarg(EQNMK), nreg(eqn_lineupreg)); continue; } - sub = eqn_box(style | EQN_TOP, box, szreg, NULL); + sub = eqn_box(style, box, szreg, NULL); box_merge(box, sub, 1); box_free(sub); } -- 2.11.4.GIT