[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.102 and 1.103

version 1.102, 2014/09/27 09:26:01 version 1.103, 2014/09/27 10:56:18
Line 142  print_bvspace(struct html *h, const struct man_node *n
Line 142  print_bvspace(struct html *h, const struct man_node *n
                 if (NULL == n->prev)                  if (NULL == n->prev)
                         return;                          return;
   
         print_otag(h, TAG_P, 0, NULL);          print_paragraph(h);
 }  }
   
 void  void
Line 219  print_man_node(MAN_ARGS)
Line 219  print_man_node(MAN_ARGS)
                  * before printing the line's data.                   * before printing the line's data.
                  */                   */
                 if ('\0' == *n->string) {                  if ('\0' == *n->string) {
                         print_otag(h, TAG_P, 0, NULL);                          print_paragraph(h);
                         return;                          return;
                 }                  }
   
Line 538  man_IP_pre(MAN_ARGS)
Line 538  man_IP_pre(MAN_ARGS)
 static int  static int
 man_HP_pre(MAN_ARGS)  man_HP_pre(MAN_ARGS)
 {  {
         struct htmlpair  tag;          struct htmlpair  tag[2];
         struct roffsu    su;          struct roffsu    su;
         const struct man_node *np;          const struct man_node *np;
   
Line 558  man_HP_pre(MAN_ARGS)
Line 558  man_HP_pre(MAN_ARGS)
         bufcat_su(h, "margin-left", &su);          bufcat_su(h, "margin-left", &su);
         su.scale = -su.scale;          su.scale = -su.scale;
         bufcat_su(h, "text-indent", &su);          bufcat_su(h, "text-indent", &su);
         PAIR_STYLE_INIT(&tag, h);          PAIR_STYLE_INIT(&tag[0], h);
         print_otag(h, TAG_P, 1, &tag);          PAIR_CLASS_INIT(&tag[1], "spacer");
           print_otag(h, TAG_DIV, 2, tag);
         return(1);          return(1);
 }  }
   

Legend:
Removed from v.1.102  
changed lines
  Added in v.1.103

CVSweb