[BACK]Return to tbl_html.c CVS log [TXT][DIR] Up to [local] / src / usr.bin / mandoc

Diff for /src/usr.bin/mandoc/tbl_html.c between version 1.22 and 1.23

version 1.22, 2018/11/25 21:17:30 version 1.23, 2018/11/26 01:51:41
Line 173 
Line 173 
   
                         /* Print the element and the attributes. */                          /* Print the element and the attributes. */
   
                         if (halign == NULL && valign == NULL)                          print_otag(h, TAG_TD, "??ss",
                                 print_otag(h, TAG_TD, "??",                              "colspan", hspans, "rowspan", vspans,
                                     "colspan", hspans, "rowspan", vspans);                              "vertical-align", valign,
                         else if (halign == NULL)                              "text-align", halign);
                                 print_otag(h, TAG_TD, "??s",  
                                     "colspan", hspans, "rowspan", vspans,  
                                     "vertical-align", valign);  
                         else if (valign == NULL)  
                                 print_otag(h, TAG_TD, "??s",  
                                     "colspan", hspans, "rowspan", vspans,  
                                     "text-align", halign);  
                         else  
                                 print_otag(h, TAG_TD, "??ss",  
                                     "colspan", hspans, "rowspan", vspans,  
                                     "vertical-align", valign,  
                                     "text-align", halign);  
                         if (dp->string != NULL)                          if (dp->string != NULL)
                                 print_text(h, dp->string);                                  print_text(h, dp->string);
                 }                  }

Legend:
Removed from v.1.22  
changed lines
  Added in v.1.23