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

Diff for /mandoc/tbl_layout.c between version 1.7 and 1.12

version 1.7, 2011/01/02 12:04:23 version 1.12, 2011/01/07 14:59:52
Line 29  struct tbl_phrase {
Line 29  struct tbl_phrase {
         enum tbl_cellt   key;          enum tbl_cellt   key;
 };  };
   
   /*
    * FIXME: we can make this parse a lot nicer by, when an error is
    * encountered in a layout key, bailing to the next key (i.e. to the
    * next whitespace then continuing).
    */
   
 #define KEYS_MAX         11  #define KEYS_MAX         11
   
 static  const struct tbl_phrase keys[KEYS_MAX] = {  static  const struct tbl_phrase keys[KEYS_MAX] = {
Line 84  mod:
Line 90  mod:
                 break;                  break;
         }          }
   
           /* Throw away parenthesised expression. */
   
           if ('(' == p[*pos]) {
                   (*pos)++;
                   while (p[*pos] && ')' != p[*pos])
                           (*pos)++;
                   if (')' == p[*pos]) {
                           (*pos)++;
                           goto mod;
                   }
                   TBL_MSG(tbl, MANDOCERR_TBLLAYOUT, ln, *pos);
                   return(0);
           }
   
         /* Parse numerical spacing from modifier string. */          /* Parse numerical spacing from modifier string. */
   
         if (isdigit((unsigned char)p[*pos])) {          if (isdigit((unsigned char)p[*pos])) {
Line 126  mod:
Line 146  mod:
         case ('d'):          case ('d'):
                 cp->flags |= TBL_CELL_BALIGN;                  cp->flags |= TBL_CELL_BALIGN;
                 goto mod;                  goto mod;
           case ('w'):  /* XXX for now, ignore minimal column width */
                   goto mod;
         case ('f'):          case ('f'):
                 break;                  break;
         case ('b'):          case ('b'):
Line 171  cell(struct tbl_node *tbl, struct tbl_row *rp, 
Line 193  cell(struct tbl_node *tbl, struct tbl_row *rp, 
                 return(0);                  return(0);
         }          }
   
         (*pos)++;  
         c = keys[i].key;          c = keys[i].key;
   
           /*
            * If a span cell is found first, raise a warning and abort the
            * parse.  FIXME: recover from this somehow?
            */
   
           if (NULL == rp->first && TBL_CELL_SPAN == c) {
                   TBL_MSG(tbl, MANDOCERR_TBLLAYOUT, ln, *pos);
                   return(0);
           }
   
           (*pos)++;
   
         /* Extra check for the double-vertical. */          /* Extra check for the double-vertical. */
   
         if (TBL_CELL_VERT == c && '|' == p[*pos]) {          if (TBL_CELL_VERT == c && '|' == p[*pos]) {
Line 294  cell_alloc(struct tbl_node *tbl, struct tbl_row *rp, e
Line 327  cell_alloc(struct tbl_node *tbl, struct tbl_row *rp, e
          * ones.           * ones.
          */           */
   
         h = pp ? pp->head->prev : tbl->first_head;          h = pp ? pp->head->next : tbl->first_head;
   
         if (h) {          if (h) {
                 /* Re-use data header. */                  /* Re-use data header. */
Line 319  cell_alloc(struct tbl_node *tbl, struct tbl_row *rp, e
Line 352  cell_alloc(struct tbl_node *tbl, struct tbl_row *rp, e
                                 (TBL_CELL_VERT == p->pos ||                                  (TBL_CELL_VERT == p->pos ||
                                  TBL_CELL_DVERT == p->pos)) {                                   TBL_CELL_DVERT == p->pos)) {
                         hp = mandoc_calloc(1, sizeof(struct tbl_head));                          hp = mandoc_calloc(1, sizeof(struct tbl_head));
                           hp->ident = tbl->opts.cols++;
                         hp->prev = h->prev;                          hp->prev = h->prev;
                         if (h->prev)                          if (h->prev)
                                 h->prev->next = hp;                                  h->prev->next = hp;
Line 341  cell_alloc(struct tbl_node *tbl, struct tbl_row *rp, e
Line 375  cell_alloc(struct tbl_node *tbl, struct tbl_row *rp, e
         }          }
   
         hp = mandoc_calloc(1, sizeof(struct tbl_head));          hp = mandoc_calloc(1, sizeof(struct tbl_head));
           hp->ident = tbl->opts.cols++;
   
         if (tbl->last_head) {          if (tbl->last_head) {
                 hp->prev = tbl->last_head;                  hp->prev = tbl->last_head;

Legend:
Removed from v.1.7  
changed lines
  Added in v.1.12

CVSweb