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

Diff for /mandoc/man_html.c between version 1.47 and 1.51

version 1.47, 2010/12/06 13:53:07 version 1.51, 2010/12/06 15:31:44
Line 114  static const struct htmlman mans[MAN_MAX] = {
Line 114  static const struct htmlman mans[MAN_MAX] = {
         { man_ign_pre, NULL }, /* PD */          { man_ign_pre, NULL }, /* PD */
         { man_ign_pre, NULL }, /* AT */          { man_ign_pre, NULL }, /* AT */
         { man_in_pre, NULL }, /* in */          { man_in_pre, NULL }, /* in */
           { man_ign_pre, NULL }, /* ft */
 };  };
   
   
Line 362  man_br_pre(MAN_ARGS)
Line 363  man_br_pre(MAN_ARGS)
   
         SCALE_VS_INIT(&su, 1);          SCALE_VS_INIT(&su, 1);
   
         switch (n->tok) {          if (MAN_sp == n->tok) {
         case (MAN_sp):  
                 if (n->child)                  if (n->child)
                         a2roffsu(n->child->string, &su, SCALE_VS);                          a2roffsu(n->child->string, &su, SCALE_VS);
                 break;          } else
         default:  
                 su.scale = 0;                  su.scale = 0;
                 break;  
         }  
   
         bufcat_su(h, "height", &su);          bufcat_su(h, "height", &su);
         PAIR_STYLE_INIT(&tag, h);          PAIR_STYLE_INIT(&tag, h);
Line 733  static int
Line 730  static int
 man_literal_pre(MAN_ARGS)  man_literal_pre(MAN_ARGS)
 {  {
   
         switch (n->tok) {          if (MAN_nf == n->tok) {
         case (MAN_nf):  
                 print_otag(h, TAG_BR, 0, NULL);                  print_otag(h, TAG_BR, 0, NULL);
                 mh->fl |= MANH_LITERAL;                  mh->fl |= MANH_LITERAL;
                 break;          } else
         default:  
                 mh->fl &= ~MANH_LITERAL;                  mh->fl &= ~MANH_LITERAL;
                 break;  
         }  
   
         return(1);          return(1);
 }  }

Legend:
Removed from v.1.47  
changed lines
  Added in v.1.51

CVSweb