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

Diff for /mandoc/tbl_term.c between version 1.9 and 1.10

version 1.9, 2011/01/04 13:21:45 version 1.10, 2011/01/04 15:02:00
Line 253  tbl_data(struct termp *tp, const struct tbl *tbl,
Line 253  tbl_data(struct termp *tp, const struct tbl *tbl,
         }          }
   
         switch (dp->pos) {          switch (dp->pos) {
           case (TBL_DATA_NONE):
                   tbl_char(tp, ASCII_NBRSP, tbp->width);
                   return;
         case (TBL_DATA_HORIZ):          case (TBL_DATA_HORIZ):
                 /* FALLTHROUGH */                  /* FALLTHROUGH */
         case (TBL_DATA_NHORIZ):          case (TBL_DATA_NHORIZ):
Line 420  tbl_calc(struct termp *tp, const struct tbl_span *sp)
Line 423  tbl_calc(struct termp *tp, const struct tbl_span *sp)
         hp = sp->head;          hp = sp->head;
   
         for ( ; sp; sp = sp->next) {          for ( ; sp; sp = sp->next) {
                 switch (sp->pos) {                  if (TBL_SPAN_DATA != sp->pos)
                 case (TBL_DATA_HORIZ):  
                         /* FALLTHROUGH */  
                 case (TBL_DATA_DHORIZ):  
                         continue;                          continue;
                 default:  
                         break;  
                 }  
                 for (dp = sp->first; dp; dp = dp->next) {                  for (dp = sp->first; dp; dp = dp->next) {
                         if (NULL == dp->layout)                          if (NULL == dp->layout)
                                 continue;                                  continue;

Legend:
Removed from v.1.9  
changed lines
  Added in v.1.10

CVSweb