[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.87 and 1.88

version 1.87, 2012/05/27 17:39:28 version 1.88, 2012/06/02 20:16:23
Line 113  static const struct htmlman mans[MAN_MAX] = {
Line 113  static const struct htmlman mans[MAN_MAX] = {
         { man_in_pre, NULL }, /* in */          { man_in_pre, NULL }, /* in */
         { man_ign_pre, NULL }, /* ft */          { man_ign_pre, NULL }, /* ft */
         { man_OP_pre, NULL }, /* OP */          { man_OP_pre, NULL }, /* OP */
           { man_literal_pre, NULL }, /* EX */
           { man_literal_pre, NULL }, /* EE */
 };  };
   
 /*  /*
Line 638  static int
Line 640  static int
 man_literal_pre(MAN_ARGS)  man_literal_pre(MAN_ARGS)
 {  {
   
         if (MAN_nf != n->tok) {          if (MAN_fi == n->tok || MAN_EE == n->tok) {
                 print_otag(h, TAG_BR, 0, NULL);                  print_otag(h, TAG_BR, 0, NULL);
                 mh->fl &= ~MANH_LITERAL;                  mh->fl &= ~MANH_LITERAL;
         } else          } else

Legend:
Removed from v.1.87  
changed lines
  Added in v.1.88

CVSweb