From 49de222b7899f01575a6ac00a26bc345864dc826 Mon Sep 17 00:00:00 2001 From: Kristaps Dzonsons Date: Thu, 21 Jul 2011 10:24:35 +0000 Subject: Finish the eqn syntactic parser. This correctly parses terms and does the proper `define' dance, which amounts to pure word-replace (you can, say, define `foo' as `define' then define `define' as something else). eqn.c is now ready for some semantic parsing of `box' and `eqn' productions as defined by the grammar. --- mandoc.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'mandoc.h') diff --git a/mandoc.h b/mandoc.h index fa301466..b16b1fc9 100644 --- a/mandoc.h +++ b/mandoc.h @@ -280,7 +280,7 @@ struct tbl_span { struct eqn { size_t sz; char *data; - int line; /* invocation line */ + int ln; /* invocation line */ int pos; /* invocation position */ }; -- cgit