[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.339 and 1.340

version 1.339, 2017/01/10 21:59:47 version 1.340, 2017/01/10 23:36:34
Line 92  static int   termp_bk_pre(DECL_ARGS);
Line 92  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_bt_pre(DECL_ARGS);  static  int       termp_bt_pre(DECL_ARGS);
 static  int       termp_bx_pre(DECL_ARGS);  
 static  int       termp_cd_pre(DECL_ARGS);  static  int       termp_cd_pre(DECL_ARGS);
 static  int       termp_d1_pre(DECL_ARGS);  static  int       termp_d1_pre(DECL_ARGS);
 static  int       termp_eo_pre(DECL_ARGS);  static  int       termp_eo_pre(DECL_ARGS);
Line 191  static const struct termact termacts[MDOC_MAX] = {
Line 190  static const struct termact termacts[MDOC_MAX] = {
         { termp_quote_pre, termp_quote_post }, /* Bo */          { termp_quote_pre, termp_quote_post }, /* Bo */
         { termp_quote_pre, termp_quote_post }, /* Bq */          { termp_quote_pre, termp_quote_post }, /* Bq */
         { termp_xx_pre, termp_xx_post }, /* Bsx */          { termp_xx_pre, termp_xx_post }, /* Bsx */
         { termp_bx_pre, NULL }, /* Bx */          { NULL, NULL }, /* Bx */
         { termp_skip_pre, NULL }, /* Db */          { termp_skip_pre, NULL }, /* Db */
         { NULL, NULL }, /* Dc */          { NULL, NULL }, /* Dc */
         { termp_quote_pre, termp_quote_post }, /* Do */          { termp_quote_pre, termp_quote_post }, /* Do */
Line 1650  termp_bd_post(DECL_ARGS)
Line 1649  termp_bd_post(DECL_ARGS)
   
         p->rmargin = rm;          p->rmargin = rm;
         p->maxrmargin = rmax;          p->maxrmargin = rmax;
 }  
   
 static int  
 termp_bx_pre(DECL_ARGS)  
 {  
   
         if (NULL != (n = n->child)) {  
                 term_word(p, n->string);  
                 p->flags |= TERMP_NOSPACE;  
                 term_word(p, "BSD");  
         } else {  
                 term_word(p, "BSD");  
                 return 0;  
         }  
   
         if (NULL != (n = n->next)) {  
                 p->flags |= TERMP_NOSPACE;  
                 term_word(p, "-");  
                 p->flags |= TERMP_NOSPACE;  
                 term_word(p, n->string);  
         }  
   
         return 0;  
 }  }
   
 static int  static int

Legend:
Removed from v.1.339  
changed lines
  Added in v.1.340

CVSweb