[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.135 and 1.136

version 1.135, 2010/12/22 11:15:16 version 1.136, 2010/12/23 00:45:03
Line 1096  mdoc_d1_pre(MDOC_ARGS)
Line 1096  mdoc_d1_pre(MDOC_ARGS)
   
         /* BLOCKQUOTE needs a block body. */          /* BLOCKQUOTE needs a block body. */
   
           PAIR_CLASS_INIT(&tag[0], "display");
           print_otag(h, TAG_DIV, 1, tag);
   
         if (MDOC_Dl == n->tok) {          if (MDOC_Dl == n->tok) {
                 PAIR_CLASS_INIT(&tag[0], "lit display");                  PAIR_CLASS_INIT(&tag[0], "lit");
                 print_otag(h, TAG_CODE, 1, tag);                  print_otag(h, TAG_CODE, 1, tag);
         } else {          }
                 PAIR_CLASS_INIT(&tag[0], "display");  
                 print_otag(h, TAG_DIV, 1, tag);  
         }  
   
         return(1);          return(1);
 }  }

Legend:
Removed from v.1.135  
changed lines
  Added in v.1.136

CVSweb