[BACK]Return to tbl.c CVS log [TXT][DIR] Up to [cvsweb.bsd.lv] / mandoc

Diff for /mandoc/tbl.c between version 1.43 and 1.44

version 1.43, 2018/12/12 21:54:35 version 1.44, 2018/12/13 02:06:07
Line 29 
Line 29 
 #include "mandoc.h"  #include "mandoc.h"
 #include "tbl.h"  #include "tbl.h"
 #include "libmandoc.h"  #include "libmandoc.h"
 #include "libroff.h"  #include "tbl_parse.h"
   #include "tbl_int.h"
   
   
 void  void
Line 87  tbl_read(struct tbl_node *tbl, int ln, const char *p, 
Line 88  tbl_read(struct tbl_node *tbl, int ln, const char *p, 
 }  }
   
 struct tbl_node *  struct tbl_node *
 tbl_alloc(int pos, int line, struct mparse *parse)  tbl_alloc(int pos, int line, struct mparse *parse, struct tbl_node *last_tbl)
 {  {
         struct tbl_node *tbl;          struct tbl_node *tbl;
   
         tbl = mandoc_calloc(1, sizeof(*tbl));          tbl = mandoc_calloc(1, sizeof(*tbl));
           if (last_tbl != NULL)
                   last_tbl->next = tbl;
         tbl->line = line;          tbl->line = line;
         tbl->pos = pos;          tbl->pos = pos;
         tbl->parse = parse;          tbl->parse = parse;
Line 104  tbl_alloc(int pos, int line, struct mparse *parse)
Line 107  tbl_alloc(int pos, int line, struct mparse *parse)
 void  void
 tbl_free(struct tbl_node *tbl)  tbl_free(struct tbl_node *tbl)
 {  {
           struct tbl_node *old_tbl;
         struct tbl_row  *rp;          struct tbl_row  *rp;
         struct tbl_cell *cp;          struct tbl_cell *cp;
         struct tbl_span *sp;          struct tbl_span *sp;
         struct tbl_dat  *dp;          struct tbl_dat  *dp;
   
         while ((rp = tbl->first_row) != NULL) {          while (tbl != NULL) {
                 tbl->first_row = rp->next;                  while ((rp = tbl->first_row) != NULL) {
                 while (rp->first != NULL) {                          tbl->first_row = rp->next;
                         cp = rp->first;                          while (rp->first != NULL) {
                         rp->first = cp->next;                                  cp = rp->first;
                         free(cp->wstr);                                  rp->first = cp->next;
                         free(cp);                                  free(cp->wstr);
                                   free(cp);
                           }
                           free(rp);
                 }                  }
                 free(rp);                  while ((sp = tbl->first_span) != NULL) {
         }                          tbl->first_span = sp->next;
                           while (sp->first != NULL) {
         while ((sp = tbl->first_span) != NULL) {                                  dp = sp->first;
                 tbl->first_span = sp->next;                                  sp->first = dp->next;
                 while (sp->first != NULL) {                                  free(dp->string);
                         dp = sp->first;                                  free(dp);
                         sp->first = dp->next;                          }
                         free(dp->string);                          free(sp);
                         free(dp);  
                 }                  }
                 free(sp);                  old_tbl = tbl;
                   tbl = tbl->next;
                   free(old_tbl);
         }          }
   
         free(tbl);  
 }  }
   
 void  void
Line 146  tbl_restart(int line, int pos, struct tbl_node *tbl)
Line 152  tbl_restart(int line, int pos, struct tbl_node *tbl)
         tbl->pos = pos;          tbl->pos = pos;
 }  }
   
 const struct tbl_span *  struct tbl_span *
 tbl_span(struct tbl_node *tbl)  tbl_span(struct tbl_node *tbl)
 {  {
         struct tbl_span  *span;          struct tbl_span  *span;
   
         assert(tbl);  
         span = tbl->current_span ? tbl->current_span->next          span = tbl->current_span ? tbl->current_span->next
                                  : tbl->first_span;                                   : tbl->first_span;
         if (span)          if (span != NULL)
                 tbl->current_span = span;                  tbl->current_span = span;
         return span;          return span;
 }  }
   
 int  int
 tbl_end(struct tbl_node *tbl)  tbl_end(struct tbl_node *tbl, int still_open)
 {  {
         struct tbl_span *sp;          struct tbl_span *sp;
   
         if (tbl->part == TBL_PART_CDATA)          if (still_open)
                   mandoc_msg(MANDOCERR_BLK_NOEND, tbl->parse,
                       tbl->line, tbl->pos, "TS");
           else if (tbl->part == TBL_PART_CDATA)
                 mandoc_msg(MANDOCERR_TBLDATA_BLK, tbl->parse,                  mandoc_msg(MANDOCERR_TBLDATA_BLK, tbl->parse,
                     tbl->line, tbl->pos, "TE");                      tbl->line, tbl->pos, "TE");
   

Legend:
Removed from v.1.43  
changed lines
  Added in v.1.44

CVSweb