]> git.cameronkatri.com Git - mandoc.git/blobdiff - tbl.c
Third step towards parser unification:
[mandoc.git] / tbl.c
diff --git a/tbl.c b/tbl.c
index 3a0dfe07c7441c8b32f9f5aab2b2553092f4044f..00ee4661254b49b00ef3de7f515a0a144fa90e08 100644 (file)
--- a/tbl.c
+++ b/tbl.c
@@ -1,4 +1,4 @@
-/*     $Id: tbl.c,v 1.37 2015/01/30 02:09:04 schwarze Exp $ */
+/*     $Id: tbl.c,v 1.39 2015/01/30 17:32:16 schwarze Exp $ */
 /*
  * Copyright (c) 2009, 2010, 2011 Kristaps Dzonsons <kristaps@bsd.lv>
  * Copyright (c) 2011, 2015 Ingo Schwarze <schwarze@openbsd.org>
 /*
  * Copyright (c) 2009, 2010, 2011 Kristaps Dzonsons <kristaps@bsd.lv>
  * Copyright (c) 2011, 2015 Ingo Schwarze <schwarze@openbsd.org>
@@ -108,7 +108,6 @@ tbl_free(struct tbl_node *tbl)
        struct tbl_cell *cp;
        struct tbl_span *sp;
        struct tbl_dat  *dp;
        struct tbl_cell *cp;
        struct tbl_span *sp;
        struct tbl_dat  *dp;
-       struct tbl_head *hp;
 
        while ((rp = tbl->first_row) != NULL) {
                tbl->first_row = rp->next;
 
        while ((rp = tbl->first_row) != NULL) {
                tbl->first_row = rp->next;
@@ -131,11 +130,6 @@ tbl_free(struct tbl_node *tbl)
                free(sp);
        }
 
                free(sp);
        }
 
-       while ((hp = tbl->first_head) != NULL) {
-               tbl->first_head = hp->next;
-               free(hp);
-       }
-
        free(tbl);
 }
 
        free(tbl);
 }
 
@@ -185,9 +179,5 @@ tbl_end(struct tbl_node **tblp)
                    tbl->line, tbl->pos, NULL);
                return(0);
        }
                    tbl->line, tbl->pos, NULL);
                return(0);
        }
-
-       if (tbl->last_span != NULL)
-               tbl->last_span->flags |= TBL_SPAN_LAST;
-
        return(1);
 }
        return(1);
 }