]> git.cameronkatri.com Git - mandoc.git/blobdiff - tree.c
Rudimentary implementation of the .it request (input line trap).
[mandoc.git] / tree.c
diff --git a/tree.c b/tree.c
index 1430c737e00e5791e3cc010b2bcd4faff3c7bb9d..dccbe37f750d1e900a022e3d136f0cd77e691acf 100644 (file)
--- a/tree.c
+++ b/tree.c
@@ -1,4 +1,4 @@
-/*     $Id: tree.c,v 1.47 2011/09/18 14:14:15 schwarze Exp $ */
+/*     $Id: tree.c,v 1.48 2013/05/18 17:08:43 schwarze Exp $ */
 /*
  * Copyright (c) 2008, 2009, 2011 Kristaps Dzonsons <kristaps@bsd.lv>
  *
 /*
  * Copyright (c) 2008, 2009, 2011 Kristaps Dzonsons <kristaps@bsd.lv>
  *
@@ -58,13 +58,11 @@ print_mdoc(const struct mdoc_node *n, int indent)
 {
        const char       *p, *t;
        int               i, j;
 {
        const char       *p, *t;
        int               i, j;
-       size_t            argc, sz;
-       char            **params;
+       size_t            argc;
        struct mdoc_argv *argv;
 
        argv = NULL;
        struct mdoc_argv *argv;
 
        argv = NULL;
-       argc = sz = 0;
-       params = NULL;
+       argc = 0;
        t = p = NULL;
 
        switch (n->type) {
        t = p = NULL;
 
        switch (n->type) {
@@ -162,9 +160,6 @@ print_mdoc(const struct mdoc_node *n, int indent)
                                printf(" ]");
                }
                
                                printf(" ]");
                }
                
-               for (i = 0; i < (int)sz; i++)
-                       printf(" [%s]", params[i]);
-
                printf(" %d:%d\n", n->line, n->pos);
        }
 
                printf(" %d:%d\n", n->line, n->pos);
        }