From 581b17ce0c02a39a5fd6e297867f2ade9b2f3c63 Mon Sep 17 00:00:00 2001 From: Kristaps Dzonsons Date: Sat, 23 Jul 2011 12:01:54 +0000 Subject: Add matrix support. Also remove "above" notion, as all elements in a list are delimited by their "aboveness" and it's superfluous. --- eqn_term.c | 6 ------ 1 file changed, 6 deletions(-) (limited to 'eqn_term.c') diff --git a/eqn_term.c b/eqn_term.c index 8e49b729..0b00979c 100644 --- a/eqn_term.c +++ b/eqn_term.c @@ -61,8 +61,6 @@ static void eqn_box_pre(struct termp *p, const struct eqn_box *bp) { - if (EQN_LIST == bp->type) - term_word(p, "{"); if (bp->left) term_word(p, bp->left); } @@ -71,12 +69,8 @@ static void eqn_box_post(struct termp *p, const struct eqn_box *bp) { - if (EQN_LIST == bp->type) - term_word(p, "}"); if (bp->right) term_word(p, bp->right); - if (bp->above) - term_word(p, "|"); } static void -- cgit