[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.52 and 1.53

version 1.52, 2009/11/12 05:50:12 version 1.53, 2009/11/12 08:00:21
Line 104  static void    post_RS(DECL_ARGS);
Line 104  static void    post_RS(DECL_ARGS);
 static  void              post_SH(DECL_ARGS);  static  void              post_SH(DECL_ARGS);
 static  void              post_SS(DECL_ARGS);  static  void              post_SS(DECL_ARGS);
 static  void              post_TP(DECL_ARGS);  static  void              post_TP(DECL_ARGS);
 static  void              post_i(DECL_ARGS);  
   
 static  const struct termact termacts[MAN_MAX] = {  static  const struct termact termacts[MAN_MAX] = {
         { pre_br, NULL }, /* br */          { pre_br, NULL }, /* br */
Line 129  static const struct termact termacts[MAN_MAX] = {
Line 128  static const struct termact termacts[MAN_MAX] = {
         { pre_RI, NULL }, /* IR */          { pre_RI, NULL }, /* IR */
         { pre_RI, NULL }, /* RI */          { pre_RI, NULL }, /* RI */
         { NULL, NULL }, /* na */          { NULL, NULL }, /* na */
         { pre_I, post_i }, /* i */          { pre_I, NULL }, /* i */
         { pre_sp, NULL }, /* sp */          { pre_sp, NULL }, /* sp */
         { pre_nf, NULL }, /* nf */          { pre_nf, NULL }, /* nf */
         { pre_fi, NULL }, /* fi */          { pre_fi, NULL }, /* fi */
Line 240  pre_I(DECL_ARGS)
Line 239  pre_I(DECL_ARGS)
   
         term_fontrepl(p, TERMFONT_UNDER);          term_fontrepl(p, TERMFONT_UNDER);
         return(1);          return(1);
 }  
   
   
 /* ARGSUSED */  
 static void  
 post_i(DECL_ARGS)  
 {  
   
         /* FIXME */  
         /*if (n->nchild)  
                 p->under--;*/  
 }  }
   
   

Legend:
Removed from v.1.52  
changed lines
  Added in v.1.53

CVSweb