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

Diff for /mandoc/tbl_data.c between version 1.17 and 1.18

version 1.17, 2011/01/10 14:56:06 version 1.18, 2011/01/10 15:31:00
Line 188  tbl_data(struct tbl_node *tbl, int ln, const char *p)
Line 188  tbl_data(struct tbl_node *tbl, int ln, const char *p)
          * If there's no last parsed span, use the first row.  Lastly,           * If there's no last parsed span, use the first row.  Lastly,
          * if the last span was a horizontal line, use the same layout           * if the last span was a horizontal line, use the same layout
          * (it doesn't "consume" the layout).           * (it doesn't "consume" the layout).
          *  
          * In the end, this can be NULL!  
          */           */
   
         if (tbl->last_span) {          if (tbl->last_span) {
Line 198  tbl_data(struct tbl_node *tbl, int ln, const char *p)
Line 196  tbl_data(struct tbl_node *tbl, int ln, const char *p)
                         rp = tbl->last_span->layout->next;                          rp = tbl->last_span->layout->next;
                 else                  else
                         rp = tbl->last_span->layout;                          rp = tbl->last_span->layout;
   
                 if (NULL == rp)                  if (NULL == rp)
                         rp = tbl->last_span->layout;                          rp = tbl->last_span->layout;
         } else          } else
                 rp = tbl->first_row;                  rp = tbl->first_row;
   
           assert(rp);
   
         dp = mandoc_calloc(1, sizeof(struct tbl_span));          dp = mandoc_calloc(1, sizeof(struct tbl_span));
         dp->tbl = &tbl->opts;          dp->tbl = &tbl->opts;

Legend:
Removed from v.1.17  
changed lines
  Added in v.1.18

CVSweb