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

Diff for /mandoc/man_term.c between version 1.28 and 1.29

version 1.28, 2009/08/21 08:41:05 version 1.29, 2009/08/22 09:10:38
Line 76  static int    pre_SS(DECL_ARGS);
Line 76  static int    pre_SS(DECL_ARGS);
 static  int               pre_TP(DECL_ARGS);  static  int               pre_TP(DECL_ARGS);
 static  int               pre_br(DECL_ARGS);  static  int               pre_br(DECL_ARGS);
 static  int               pre_fi(DECL_ARGS);  static  int               pre_fi(DECL_ARGS);
   static  int               pre_ign(DECL_ARGS);
 static  int               pre_nf(DECL_ARGS);  static  int               pre_nf(DECL_ARGS);
 static  int               pre_r(DECL_ARGS);  static  int               pre_r(DECL_ARGS);
 static  int               pre_sp(DECL_ARGS);  static  int               pre_sp(DECL_ARGS);
Line 120  static const struct termact termacts[MAN_MAX] = {
Line 121  static const struct termact termacts[MAN_MAX] = {
         { pre_r, NULL }, /* r */          { pre_r, NULL }, /* r */
         { NULL, NULL }, /* RE */          { NULL, NULL }, /* RE */
         { pre_RS, post_RS }, /* RS */          { pre_RS, post_RS }, /* RS */
         { NULL, NULL }, /* DT */          { pre_ign, NULL }, /* DT */
           { pre_ign, NULL }, /* UC */
 };  };
   
 #ifdef __linux__  #ifdef __linux__
Line 203  arg_width(const struct man_node *n)
Line 205  arg_width(const struct man_node *n)
                 return(atoi(p));                  return(atoi(p));
   
         return(-1);          return(-1);
   }
   
   
   /* ARGSUSED */
   static int
   pre_ign(DECL_ARGS)
   {
   
           return(0);
 }  }
   
   

Legend:
Removed from v.1.28  
changed lines
  Added in v.1.29

CVSweb