[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.38 and 1.39

version 1.38, 2021/09/09 16:52:52 version 1.39, 2022/01/12 04:43:26
Line 1 
Line 1 
 /*      $Id$ */  /* $Id$ */
 /*  /*
  * Copyright (c) 2011 Kristaps Dzonsons <kristaps@bsd.lv>   * Copyright (c) 2011 Kristaps Dzonsons <kristaps@bsd.lv>
  * Copyright (c) 2014,2015,2017,2018,2021 Ingo Schwarze <schwarze@openbsd.org>   * Copyright (c) 2014,2015,2017,2018,2021 Ingo Schwarze <schwarze@openbsd.org>
Line 247  print_tbl(struct html *h, const struct tbl_span *sp)
Line 247  print_tbl(struct html *h, const struct tbl_span *sp)
                 if (dp->layout->pos == TBL_CELL_HORIZ ||                  if (dp->layout->pos == TBL_CELL_HORIZ ||
                     dp->layout->pos == TBL_CELL_DHORIZ ||                      dp->layout->pos == TBL_CELL_DHORIZ ||
                     dp->pos == TBL_DATA_HORIZ ||                      dp->pos == TBL_DATA_HORIZ ||
                     dp->pos == TBL_DATA_DHORIZ)                      dp->pos == TBL_DATA_NHORIZ ||
                       dp->pos == TBL_DATA_DHORIZ ||
                       dp->pos == TBL_DATA_NDHORIZ)
                         print_otag(h, TAG_HR, "");                          print_otag(h, TAG_HR, "");
                 else if (dp->string != NULL) {                  else if (dp->string != NULL) {
                         save_font = h->metac;                          save_font = h->metac;

Legend:
Removed from v.1.38  
changed lines
  Added in v.1.39

CVSweb