diff options
author | Kristaps Dzonsons <kristaps@bsd.lv> | 2011-07-23 12:01:54 +0000 |
---|---|---|
committer | Kristaps Dzonsons <kristaps@bsd.lv> | 2011-07-23 12:01:54 +0000 |
commit | 581b17ce0c02a39a5fd6e297867f2ade9b2f3c63 (patch) | |
tree | cef51f2be08f7d2ae3a32b594b759ec0f7b63f7e /eqn_term.c | |
parent | 2252d1a2cee8d276065b3b219c4566d375827af8 (diff) | |
download | mandoc-581b17ce0c02a39a5fd6e297867f2ade9b2f3c63.tar.gz |
Add matrix support. Also remove "above" notion, as all elements in a
list are delimited by their "aboveness" and it's superfluous.
Diffstat (limited to 'eqn_term.c')
-rw-r--r-- | eqn_term.c | 6 |
1 files changed, 0 insertions, 6 deletions
@@ -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 |