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

Diff for /mandoc/mdoc_man.c between version 1.56 and 1.57

version 1.56, 2013/12/25 00:39:31 version 1.57, 2013/12/25 22:00:45
Line 1030  post_eo(DECL_ARGS)
Line 1030  post_eo(DECL_ARGS)
 static int  static int
 pre_fa(DECL_ARGS)  pre_fa(DECL_ARGS)
 {  {
           int      am_Fa;
   
         if (MDOC_Fa == n->tok)          am_Fa = MDOC_Fa == n->tok;
   
           if (am_Fa)
                 n = n->child;                  n = n->child;
   
         while (NULL != n) {          while (NULL != n) {
                 font_push('I');                  font_push('I');
                 if (MDOC_SYNPRETTY & n->flags)                  if (am_Fa || MDOC_SYNPRETTY & n->flags)
                         outflags |= MMAN_nbrword;                          outflags |= MMAN_nbrword;
                 print_node(meta, n);                  print_node(meta, n);
                 font_pop();                  font_pop();
Line 1137  pre_fo(DECL_ARGS)
Line 1140  pre_fo(DECL_ARGS)
                 pre_syn(n);                  pre_syn(n);
                 break;                  break;
         case (MDOC_HEAD):          case (MDOC_HEAD):
                   if (MDOC_SYNPRETTY & n->flags)
                           print_block(".HP 4n", MMAN_nl);
                 font_push('B');                  font_push('B');
                 break;                  break;
         case (MDOC_BODY):          case (MDOC_BODY):
Line 1149  pre_fo(DECL_ARGS)
Line 1154  pre_fo(DECL_ARGS)
         }          }
         return(1);          return(1);
 }  }
   
 static void  static void
 post_fo(DECL_ARGS)  post_fo(DECL_ARGS)
 {  {

Legend:
Removed from v.1.56  
changed lines
  Added in v.1.57

CVSweb