[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.15 and 1.19

version 1.15, 2011/01/09 23:14:41 version 1.19, 2011/01/11 14:12:01
Line 37  data(struct tbl_node *tbl, struct tbl_span *dp, 
Line 37  data(struct tbl_node *tbl, struct tbl_span *dp, 
 {  {
         struct tbl_dat  *dat;          struct tbl_dat  *dat;
         struct tbl_cell *cp;          struct tbl_cell *cp;
         int              sv;          int              sv, spans;
   
         cp = NULL;          cp = NULL;
         if (dp->last && dp->last->layout)          if (dp->last && dp->last->layout)
Line 55  data(struct tbl_node *tbl, struct tbl_span *dp, 
Line 55  data(struct tbl_node *tbl, struct tbl_span *dp, 
                                 TBL_CELL_SPAN == cp->pos))                                  TBL_CELL_SPAN == cp->pos))
                 cp = cp->next;                  cp = cp->next;
   
           /*
            * Stop processing when we reach the end of the available layout
            * cells.  This means that we have extra input.
            */
   
           if (NULL == cp) {
                   TBL_MSG(tbl, MANDOCERR_TBLEXTRADAT, ln, *pos);
                   /* Skip to the end... */
                   while (p[*pos])
                           (*pos)++;
                   return(1);
           }
   
         dat = mandoc_calloc(1, sizeof(struct tbl_dat));          dat = mandoc_calloc(1, sizeof(struct tbl_dat));
         dat->layout = cp;          dat->layout = cp;
         dat->pos = TBL_DATA_NONE;          dat->pos = TBL_DATA_NONE;
   
         if (NULL == dat->layout)          assert(TBL_CELL_SPAN != cp->pos);
                 TBL_MSG(tbl, MANDOCERR_TBLEXTRADAT, ln, *pos);  
   
           for (spans = 0, cp = cp->next; cp; cp = cp->next)
                   if (TBL_CELL_SPAN == cp->pos)
                           spans++;
                   else
                           break;
   
           dat->spans = spans;
   
         if (dp->last) {          if (dp->last) {
                 dp->last->next = dat;                  dp->last->next = dat;
                 dp->last = dat;                  dp->last = dat;
Line 101  data(struct tbl_node *tbl, struct tbl_span *dp, 
Line 121  data(struct tbl_node *tbl, struct tbl_span *dp, 
         else          else
                 dat->pos = TBL_DATA_DATA;                  dat->pos = TBL_DATA_DATA;
   
         if (NULL == dat->layout)  
                 return(1);  
   
         if (TBL_CELL_HORIZ == dat->layout->pos ||          if (TBL_CELL_HORIZ == dat->layout->pos ||
                         TBL_CELL_DHORIZ == dat->layout->pos)                          TBL_CELL_DHORIZ == dat->layout->pos ||
                           TBL_CELL_DOWN == dat->layout->pos)
                 if (TBL_DATA_DATA == dat->pos && '\0' != *dat->string)                  if (TBL_DATA_DATA == dat->pos && '\0' != *dat->string)
                         TBL_MSG(tbl, MANDOCERR_TBLIGNDATA, ln, sv);                          TBL_MSG(tbl, MANDOCERR_TBLIGNDATA, ln, sv);
   
Line 123  tbl_cdata(struct tbl_node *tbl, int ln, const char *p)
Line 141  tbl_cdata(struct tbl_node *tbl, int ln, const char *p)
         pos = 0;          pos = 0;
   
         dat = tbl->last_span->last;          dat = tbl->last_span->last;
         dat->pos = TBL_DATA_DATA;  
   
         if (p[pos] == 'T' && p[pos + 1] == '}') {          if (p[pos] == 'T' && p[pos + 1] == '}') {
                 pos += 2;                  pos += 2;
Line 139  tbl_cdata(struct tbl_node *tbl, int ln, const char *p)
Line 156  tbl_cdata(struct tbl_node *tbl, int ln, const char *p)
                 /* Fallthrough: T} is part of a word. */                  /* Fallthrough: T} is part of a word. */
         }          }
   
           dat->pos = TBL_DATA_DATA;
   
         if (dat->string) {          if (dat->string) {
                 sz = strlen(p) + strlen(dat->string) + 2;                  sz = strlen(p) + strlen(dat->string) + 2;
                 dat->string = mandoc_realloc(dat->string, sz);                  dat->string = mandoc_realloc(dat->string, sz);
Line 147  tbl_cdata(struct tbl_node *tbl, int ln, const char *p)
Line 166  tbl_cdata(struct tbl_node *tbl, int ln, const char *p)
         } else          } else
                 dat->string = mandoc_strdup(p);                  dat->string = mandoc_strdup(p);
   
           if (TBL_CELL_DOWN == dat->layout->pos)
                   TBL_MSG(tbl, MANDOCERR_TBLIGNDATA, ln, pos);
   
         return(0);          return(0);
 }  }
   
Line 170  tbl_data(struct tbl_node *tbl, int ln, const char *p)
Line 192  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 180  tbl_data(struct tbl_node *tbl, int ln, const char *p)
Line 200  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.15  
changed lines
  Added in v.1.19

CVSweb