[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.104 and 1.105

version 1.104, 2010/09/04 20:18:53 version 1.105, 2010/09/25 15:51:30
Line 2108  static int
Line 2108  static int
 mdoc_rs_pre(MDOC_ARGS)  mdoc_rs_pre(MDOC_ARGS)
 {  {
         struct htmlpair  tag;          struct htmlpair  tag;
         struct roffsu    su;  
   
         if (MDOC_BLOCK != n->type)          if (MDOC_BLOCK != n->type)
                 return(1);                  return(1);
   
         if (n->prev && SEC_SEE_ALSO == n->sec) {          if (n->prev && SEC_SEE_ALSO == n->sec) {
                 SCALE_VS_INIT(&su, 1);                  print_otag(h, TAG_BR, 0, NULL);
                 bufcat_su(h, "margin-top", &su);                  print_otag(h, TAG_BR, 0, NULL);
                 PAIR_STYLE_INIT(&tag, h);          }
                 print_otag(h, TAG_DIV, 1, &tag);  
         }  
   
         PAIR_CLASS_INIT(&tag, "ref");          PAIR_CLASS_INIT(&tag, "ref");
         print_otag(h, TAG_SPAN, 1, &tag);          print_otag(h, TAG_SPAN, 1, &tag);

Legend:
Removed from v.1.104  
changed lines
  Added in v.1.105

CVSweb