[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.41

version 1.38, 2021/09/09 16:52:52 version 1.41, 2022/04/23 14:02:17
Line 1 
Line 1 
 /*      $Id$ */  /* $Id$ */
 /*  /*
    * Copyright (c) 2014, 2015, 2017, 2018, 2021, 2022
    *               Ingo Schwarze <schwarze@openbsd.org>
  * 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>  
  *   *
  * 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 24 
Line 25 
 #include <stdlib.h>  #include <stdlib.h>
 #include <string.h>  #include <string.h>
   
   #if DEBUG_MEMORY
   #include "mandoc_dbg.h"
   #endif
 #include "mandoc.h"  #include "mandoc.h"
 #include "roff.h"  #include "roff.h"
 #include "tbl.h"  #include "tbl.h"
Line 134  print_tbl(struct html *h, const struct tbl_span *sp)
Line 138  print_tbl(struct html *h, const struct tbl_span *sp)
          */           */
   
         if (sp->pos != TBL_SPAN_DATA)          if (sp->pos != TBL_SPAN_DATA)
                 return;                  goto out;
   
         /* Inhibit printing of spaces: we do padding ourselves. */          /* Inhibit printing of spaces: we do padding ourselves. */
   
Line 247  print_tbl(struct html *h, const struct tbl_span *sp)
Line 251  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;
Line 284  print_tbl(struct html *h, const struct tbl_span *sp)
Line 290  print_tbl(struct html *h, const struct tbl_span *sp)
   
         h->flags &= ~HTML_NONOSPACE;          h->flags &= ~HTML_NONOSPACE;
   
   out:
         if (sp->next == NULL) {          if (sp->next == NULL) {
                 assert(h->tbl.cols);                  assert(h->tbl.cols);
                 free(h->tbl.cols);                  free(h->tbl.cols);

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

CVSweb