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

Diff for /mandoc/mdoc_term.c between version 1.158 and 1.159

version 1.158, 2010/06/26 15:36:37 version 1.159, 2010/06/27 01:26:20
Line 73  static void   termp____post(DECL_ARGS);
Line 73  static void   termp____post(DECL_ARGS);
 static  void      termp_an_post(DECL_ARGS);  static  void      termp_an_post(DECL_ARGS);
 static  void      termp_aq_post(DECL_ARGS);  static  void      termp_aq_post(DECL_ARGS);
 static  void      termp_bd_post(DECL_ARGS);  static  void      termp_bd_post(DECL_ARGS);
   static  void      termp_bk_post(DECL_ARGS);
 static  void      termp_bl_post(DECL_ARGS);  static  void      termp_bl_post(DECL_ARGS);
 static  void      termp_bq_post(DECL_ARGS);  static  void      termp_bq_post(DECL_ARGS);
 static  void      termp_brq_post(DECL_ARGS);  static  void      termp_brq_post(DECL_ARGS);
Line 97  static int   termp_ap_pre(DECL_ARGS);
Line 98  static int   termp_ap_pre(DECL_ARGS);
 static  int       termp_aq_pre(DECL_ARGS);  static  int       termp_aq_pre(DECL_ARGS);
 static  int       termp_bd_pre(DECL_ARGS);  static  int       termp_bd_pre(DECL_ARGS);
 static  int       termp_bf_pre(DECL_ARGS);  static  int       termp_bf_pre(DECL_ARGS);
   static  int       termp_bk_pre(DECL_ARGS);
 static  int       termp_bl_pre(DECL_ARGS);  static  int       termp_bl_pre(DECL_ARGS);
 static  int       termp_bold_pre(DECL_ARGS);  static  int       termp_bold_pre(DECL_ARGS);
 static  int       termp_bq_pre(DECL_ARGS);  static  int       termp_bq_pre(DECL_ARGS);
Line 236  static const struct termact termacts[MDOC_MAX] = {
Line 238  static const struct termact termacts[MDOC_MAX] = {
         { NULL, NULL }, /* Fc */          { NULL, NULL }, /* Fc */
         { termp_op_pre, termp_op_post }, /* Oo */          { termp_op_pre, termp_op_post }, /* Oo */
         { NULL, NULL }, /* Oc */          { NULL, NULL }, /* Oc */
         { NULL, NULL }, /* Bk */          { termp_bk_pre, termp_bk_post }, /* Bk */
         { NULL, NULL }, /* Ek */          { NULL, NULL }, /* Ek */
         { termp_bt_pre, NULL }, /* Bt */          { termp_bt_pre, NULL }, /* Bt */
         { NULL, NULL }, /* Hf */          { NULL, NULL }, /* Hf */
Line 2101  termp_lk_pre(DECL_ARGS)
Line 2103  termp_lk_pre(DECL_ARGS)
         return(0);          return(0);
 }  }
   
   
   /* ARGSUSED */
   static int
   termp_bk_pre(DECL_ARGS)
   {
   
           p->flags |= TERMP_PREKEEP;
           return(1);
   }
   
   
   /* ARGSUSED */
   static void
   termp_bk_post(DECL_ARGS)
   {
   
           p->flags &= ~(TERMP_KEEP | TERMP_PREKEEP);
   }
   
 /* ARGSUSED */  /* ARGSUSED */
 static int  static int

Legend:
Removed from v.1.158  
changed lines
  Added in v.1.159

CVSweb