[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.127 and 1.129

version 1.127, 2010/12/17 10:43:51 version 1.129, 2010/12/17 11:19:42
Line 945  mdoc_bl_pre(MDOC_ARGS)
Line 945  mdoc_bl_pre(MDOC_ARGS)
         PAIR_STYLE_INIT(&tag[0], h);          PAIR_STYLE_INIT(&tag[0], h);
   
         assert(lists[n->data.Bl->type]);          assert(lists[n->data.Bl->type]);
         PAIR_CLASS_INIT(&tag[1], lists[n->data.Bl->type]);          bufinit(h);
           bufcat(h, "list ");
           bufcat(h, lists[n->data.Bl->type]);
           PAIR_INIT(&tag[1], ATTR_CLASS, h->buf);
         i = 2;          i = 2;
   
         /* Set the block's left-hand margin. */          /* Set the block's left-hand margin. */
Line 1061  mdoc_d1_pre(MDOC_ARGS)
Line 1064  mdoc_d1_pre(MDOC_ARGS)
   
         /* BLOCKQUOTE needs a block body. */          /* BLOCKQUOTE needs a block body. */
   
         if (MDOC_Dl == n->tok) {          if (MDOC_Dl == n->tok)
                 PAIR_CLASS_INIT(&tag[0], "lit display");                  PAIR_CLASS_INIT(&tag[0], "lit display");
                 print_otag(h, TAG_DIV, 1, tag);          else
         } else  
                 PAIR_CLASS_INIT(&tag[0], "display");                  PAIR_CLASS_INIT(&tag[0], "display");
                 print_otag(h, TAG_DIV, 1, tag);  
   
           print_otag(h, TAG_DIV, 1, tag);
         return(1);          return(1);
 }  }
   

Legend:
Removed from v.1.127  
changed lines
  Added in v.1.129

CVSweb