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

Diff for /mandoc/tbl_html.c between version 1.15 and 1.16

version 1.15, 2015/01/30 04:11:50 version 1.16, 2015/01/30 17:32:16
Line 54  html_tblopen(struct html *h, const struct tbl_span *sp
Line 54  html_tblopen(struct html *h, const struct tbl_span *sp
         struct roffcol  *col;          struct roffcol  *col;
         int              ic;          int              ic;
   
         if (sp->flags & TBL_SPAN_FIRST) {          if (h->tbl.cols == NULL) {
                 h->tbl.len = html_tbl_len;                  h->tbl.len = html_tbl_len;
                 h->tbl.slen = html_tbl_strlen;                  h->tbl.slen = html_tbl_strlen;
                 tblcalc(&h->tbl, sp, 0);                  tblcalc(&h->tbl, sp, 0);
Line 132  print_tbl(struct html *h, const struct tbl_span *sp)
Line 132  print_tbl(struct html *h, const struct tbl_span *sp)
   
         h->flags &= ~HTML_NONOSPACE;          h->flags &= ~HTML_NONOSPACE;
   
         if (sp->flags & TBL_SPAN_LAST) {          if (sp->next == NULL) {
                 assert(h->tbl.cols);                  assert(h->tbl.cols);
                 free(h->tbl.cols);                  free(h->tbl.cols);
                 h->tbl.cols = NULL;                  h->tbl.cols = NULL;

Legend:
Removed from v.1.15  
changed lines
  Added in v.1.16

CVSweb