[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.13 and 1.14

version 1.13, 2014/10/14 02:16:06 version 1.14, 2015/01/30 02:09:04
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 roffsu    su;          struct roffsu    su;
         struct roffcol  *col;          struct roffcol  *col;
   
         if (TBL_SPAN_FIRST & sp->flags) {          if (sp->flags & TBL_SPAN_FIRST) {
                 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 95  print_tbl(struct html *h, const struct tbl_span *sp)
Line 95  print_tbl(struct html *h, const struct tbl_span *sp)
   
         /* Inhibit printing of spaces: we do padding ourselves. */          /* Inhibit printing of spaces: we do padding ourselves. */
   
         if (NULL == h->tblt)          if (h->tblt == NULL)
                 html_tblopen(h, sp);                  html_tblopen(h, sp);
   
         assert(h->tblt);          assert(h->tblt);
Line 118  print_tbl(struct html *h, const struct tbl_span *sp)
Line 118  print_tbl(struct html *h, const struct tbl_span *sp)
                         print_stagq(h, tt);                          print_stagq(h, tt);
                         print_otag(h, TAG_TD, 0, NULL);                          print_otag(h, TAG_TD, 0, NULL);
   
                         if (NULL == dp)                          if (dp == NULL)
                                 break;                                  break;
                         if (TBL_CELL_DOWN != dp->layout->pos)                          if (dp->layout->pos != TBL_CELL_DOWN)
                                 if (dp->string)                                  if (dp->string != NULL)
                                         print_text(h, dp->string);                                          print_text(h, dp->string);
                         dp = dp->next;                          dp = dp->next;
                 }                  }
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 (TBL_SPAN_LAST & sp->flags) {          if (sp->flags & TBL_SPAN_LAST) {
                 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.13  
changed lines
  Added in v.1.14

CVSweb