]> git.cameronkatri.com Git - mandoc.git/blobdiff - eqn.c
Enable generation of the desired delim/basic output with groff(1).
[mandoc.git] / eqn.c
diff --git a/eqn.c b/eqn.c
index a210aec26766b69f9cab7cf2672a07c1f93822f5..3d63382ab31b8318396b87b32bee6afd6ff904fc 100644 (file)
--- a/eqn.c
+++ b/eqn.c
@@ -1,4 +1,4 @@
-/*     $Id: eqn.c,v 1.82 2018/12/14 05:18:02 schwarze Exp $ */
+/*     $Id: eqn.c,v 1.83 2018/12/14 06:33:14 schwarze Exp $ */
 /*
  * Copyright (c) 2011, 2014 Kristaps Dzonsons <kristaps@bsd.lv>
  * Copyright (c) 2014, 2015, 2017, 2018 Ingo Schwarze <schwarze@openbsd.org>
@@ -303,12 +303,11 @@ static    void             eqn_undef(struct eqn_node *);
 
 
 struct eqn_node *
-eqn_alloc(struct mparse *parse)
+eqn_alloc(void)
 {
        struct eqn_node *ep;
 
        ep = mandoc_calloc(1, sizeof(*ep));
-       ep->parse = parse;
        ep->gsize = EQN_DEFSIZE;
        return ep;
 }