diff options
author | Kristaps Dzonsons <kristaps@bsd.lv> | 2011-07-27 12:41:02 +0000 |
---|---|---|
committer | Kristaps Dzonsons <kristaps@bsd.lv> | 2011-07-27 12:41:02 +0000 |
commit | 96482854006a9cdd85cb178e59313f4d7edfe4ec (patch) | |
tree | eec8748897d6708025c7de6ac0e464cba8c0136d /libmandoc.h | |
parent | 65468ee42d485b8372e1b89f1ce668498f00a1cb (diff) | |
download | mandoc-96482854006a9cdd85cb178e59313f4d7edfe4ec.tar.gz |
Disable in-line eqn processing for a bit.
Diffstat (limited to 'libmandoc.h')
-rw-r--r-- | libmandoc.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libmandoc.h b/libmandoc.h index ad657337..a3da4afb 100644 --- a/libmandoc.h +++ b/libmandoc.h @@ -75,10 +75,12 @@ void roff_endparse(struct roff *); int roff_regisset(const struct roff *, enum regs); unsigned int roff_regget(const struct roff *, enum regs); void roff_regunset(struct roff *, enum regs); +#if 0 char roff_eqndelim(const struct roff *); void roff_openeqn(struct roff *, const char *, int, int, const char *); int roff_closeeqn(struct roff *); +#endif const struct tbl_span *roff_span(const struct roff *); const struct eqn *roff_eqn(const struct roff *); |