diff options
author | Kristaps Dzonsons <kristaps@bsd.lv> | 2011-07-23 22:57:13 +0000 |
---|---|---|
committer | Kristaps Dzonsons <kristaps@bsd.lv> | 2011-07-23 22:57:13 +0000 |
commit | 7151bb8eeed729397435c0c693efc5546cfda123 (patch) | |
tree | e7cd99eb9b42eff87848d69b74a100ce56ee7332 /eqn_term.c | |
parent | d01207bfc948fdba1c7d2b8e9b46db9f3a91f3e9 (diff) | |
download | mandoc-7151bb8eeed729397435c0c693efc5546cfda123.tar.gz |
Flip on equation printing for -T[x]html.
Diffstat (limited to 'eqn_term.c')
-rw-r--r-- | eqn_term.c | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -27,10 +27,10 @@ #include "out.h" #include "term.h" -static void eqn_box(struct termp *p, const struct eqn_box *); -static void eqn_box_post(struct termp *p, const struct eqn_box *); -static void eqn_box_pre(struct termp *p, const struct eqn_box *); -static void eqn_text(struct termp *p, const struct eqn_box *); +static void eqn_box(struct termp *, const struct eqn_box *); +static void eqn_box_post(struct termp *, const struct eqn_box *); +static void eqn_box_pre(struct termp *, const struct eqn_box *); +static void eqn_text(struct termp *, const struct eqn_box *); void term_eqn(struct termp *p, const struct eqn *ep) |