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

Diff for /mandoc/mdoc_html.c between version 1.240 and 1.241

version 1.240, 2016/01/08 17:48:09 version 1.241, 2017/01/08 22:51:55
Line 1 
Line 1 
 /*      $Id$ */  /*      $Id$ */
 /*  /*
  * Copyright (c) 2008-2011, 2014 Kristaps Dzonsons <kristaps@bsd.lv>   * Copyright (c) 2008-2011, 2014 Kristaps Dzonsons <kristaps@bsd.lv>
  * Copyright (c) 2014, 2015, 2016 Ingo Schwarze <schwarze@openbsd.org>   * Copyright (c) 2014, 2015, 2016, 2017 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 1121  mdoc_bd_pre(MDOC_ARGS)
Line 1121  mdoc_bd_pre(MDOC_ARGS)
         bufcat_su(h, "margin-left", &su);          bufcat_su(h, "margin-left", &su);
         PAIR_STYLE_INIT(&tag[0], h);          PAIR_STYLE_INIT(&tag[0], h);
   
         if (DISP_unfilled != n->norm->Bd.type &&          PAIR_CLASS_INIT(&tag[1], "display");
             DISP_literal != n->norm->Bd.type) {          print_otag(h, TAG_DIV, 2, tag);
                 PAIR_CLASS_INIT(&tag[1], "display");  
                 print_otag(h, TAG_DIV, 2, tag);          if (n->norm->Bd.type != DISP_unfilled &&
               n->norm->Bd.type != DISP_literal)
                 return 1;                  return 1;
         }  
   
         PAIR_CLASS_INIT(&tag[1], "lit display");          PAIR_CLASS_INIT(&tag[0], "lit");
         print_otag(h, TAG_PRE, 2, tag);          print_otag(h, TAG_PRE, 1, tag);
   
         /* This can be recursive: save & set our literal state. */          /* This can be recursive: save & set our literal state. */
   

Legend:
Removed from v.1.240  
changed lines
  Added in v.1.241

CVSweb