[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.7 and 1.10

version 1.7, 2011/01/13 14:30:13 version 1.10, 2012/05/27 17:54:54
Line 1 
Line 1 
 /*      $Id$ */  /*      $Id$ */
 /*  /*
  * Copyright (c) 2009 Kristaps Dzonsons <kristaps@kth.se>   * Copyright (c) 2011 Kristaps Dzonsons <kristaps@bsd.lv>
  *   *
  * Permission to use, copy, modify, and distribute this software for any   * Permission to use, copy, modify, and distribute this software for any
  * purpose with or without fee is hereby granted, provided that the above   * purpose with or without fee is hereby granted, provided that the above
Line 119  print_tbl(struct html *h, const struct tbl_span *sp)
Line 119  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);
   
                         switch (hp->pos) {                          if (NULL == dp)
                         case (TBL_HEAD_VERT):  
                                 /* FALLTHROUGH */  
                         case (TBL_HEAD_DVERT):  
                                 continue;  
                         case (TBL_HEAD_DATA):  
                                 if (NULL == dp)  
                                         break;  
                                 if (TBL_CELL_DOWN != dp->layout->pos)  
                                         if (dp->string)  
                                                 print_text(h, dp->string);  
                                 dp = dp->next;  
                                 break;                                  break;
                         }                          if (TBL_CELL_DOWN != dp->layout->pos)
                                   if (dp->string)
                                           print_text(h, dp->string);
                           dp = dp->next;
                 }                  }
                 break;                  break;
         }          }

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

CVSweb