[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.195 and 1.196

version 1.195, 2017/05/05 02:06:19 version 1.196, 2017/05/05 13:17:55
Line 83  static int    pre_alternate(DECL_ARGS);
Line 83  static int    pre_alternate(DECL_ARGS);
 static  int               pre_ign(DECL_ARGS);  static  int               pre_ign(DECL_ARGS);
 static  int               pre_in(DECL_ARGS);  static  int               pre_in(DECL_ARGS);
 static  int               pre_literal(DECL_ARGS);  static  int               pre_literal(DECL_ARGS);
 static  int               pre_ll(DECL_ARGS);  
 static  int               pre_sp(DECL_ARGS);  static  int               pre_sp(DECL_ARGS);
   
 static  void              post_IP(DECL_ARGS);  static  void              post_IP(DECL_ARGS);
Line 130  static const struct termact __termacts[MAN_MAX - MAN_T
Line 129  static const struct termact __termacts[MAN_MAX - MAN_T
         { pre_literal, NULL, 0 }, /* EE */          { pre_literal, NULL, 0 }, /* EE */
         { pre_UR, post_UR, 0 }, /* UR */          { pre_UR, post_UR, 0 }, /* UR */
         { NULL, NULL, 0 }, /* UE */          { NULL, NULL, 0 }, /* UE */
         { pre_ll, NULL, MAN_NOTEXT }, /* ll */  
 };  };
 static  const struct termact *termacts = __termacts - MAN_TH;  static  const struct termact *termacts = __termacts - MAN_TH;
   
Line 213  static int
Line 211  static int
 pre_ign(DECL_ARGS)  pre_ign(DECL_ARGS)
 {  {
   
         return 0;  
 }  
   
 static int  
 pre_ll(DECL_ARGS)  
 {  
   
         term_setwidth(p, n->child != NULL ? n->child->string : NULL);  
         return 0;          return 0;
 }  }
   

Legend:
Removed from v.1.195  
changed lines
  Added in v.1.196

CVSweb