[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.149 and 1.151

version 1.149, 2011/01/29 14:49:44 version 1.151, 2011/02/06 21:44:36
Line 432  print_mdoc_node(MDOC_ARGS)
Line 432  print_mdoc_node(MDOC_ARGS)
                                 print_otag(h, TAG_BR, 0, NULL);                                  print_otag(h, TAG_BR, 0, NULL);
                 print_text(h, n->string);                  print_text(h, n->string);
                 return;                  return;
           case (MDOC_EQN):
                   return;
         case (MDOC_TBL):          case (MDOC_TBL):
                 /*                  /*
                  * This will take care of initialising all of the table                   * This will take care of initialising all of the table
Line 780  static int
Line 782  static int
 mdoc_ns_pre(MDOC_ARGS)  mdoc_ns_pre(MDOC_ARGS)
 {  {
   
         h->flags |= HTML_NOSPACE;          if ( ! (MDOC_LINE & n->flags))
                   h->flags |= HTML_NOSPACE;
         return(1);          return(1);
 }  }
   

Legend:
Removed from v.1.149  
changed lines
  Added in v.1.151

CVSweb