From 31585348ea96dc3d531dd9a8fdbea4ad5ce4b927 Mon Sep 17 00:00:00 2001 From: Kristaps Dzonsons Date: Wed, 9 Feb 2011 09:05:52 +0000 Subject: Allow EQN data to be pushed down into libmdoc via mdoc_addeqn(). Only the adding itself is implemented; equation data is not yet shown. --- mandoc.h | 2 ++ 1 file changed, 2 insertions(+) (limited to 'mandoc.h') diff --git a/mandoc.h b/mandoc.h index e8286aee..af4632c1 100644 --- a/mandoc.h +++ b/mandoc.h @@ -271,6 +271,8 @@ struct tbl_span { struct eqn { size_t sz; char *data; + int line; /* invocation line */ + int pos; /* invocation position */ }; /* -- cgit