[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.60 and 1.61

version 1.60, 2009/07/24 11:54:54 version 1.61, 2009/07/24 12:47:35
Line 98  struct termact {
Line 98  struct termact {
 };  };
   
 static  void      termp____post(DECL_ARGS);  static  void      termp____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_bl_post(DECL_ARGS);  static  void      termp_bl_post(DECL_ARGS);
Line 124  static void   termp_vt_post(DECL_ARGS);
Line 125  static void   termp_vt_post(DECL_ARGS);
   
 static  int       termp__j_pre(DECL_ARGS);  static  int       termp__j_pre(DECL_ARGS);
 static  int       termp__t_pre(DECL_ARGS);  static  int       termp__t_pre(DECL_ARGS);
   static  int       termp_an_pre(DECL_ARGS);
 static  int       termp_ap_pre(DECL_ARGS);  static  int       termp_ap_pre(DECL_ARGS);
 static  int       termp_aq_pre(DECL_ARGS);  static  int       termp_aq_pre(DECL_ARGS);
 static  int       termp_ar_pre(DECL_ARGS);  static  int       termp_ar_pre(DECL_ARGS);
Line 191  static const struct termact termacts[MDOC_MAX] = {
Line 193  static const struct termact termacts[MDOC_MAX] = {
         { NULL, NULL }, /* El */          { NULL, NULL }, /* El */
         { termp_it_pre, termp_it_post }, /* It */          { termp_it_pre, termp_it_post }, /* It */
         { NULL, NULL }, /* Ad */          { NULL, NULL }, /* Ad */
         { NULL, NULL }, /* An */          { termp_an_pre, termp_an_post }, /* An */
         { termp_ar_pre, NULL }, /* Ar */          { termp_ar_pre, NULL }, /* Ar */
         { termp_cd_pre, NULL }, /* Cd */          { termp_cd_pre, NULL }, /* Cd */
         { termp_cm_pre, NULL }, /* Cm */          { termp_cm_pre, NULL }, /* Cm */
Line 1125  termp_fl_pre(DECL_ARGS)
Line 1127  termp_fl_pre(DECL_ARGS)
         term_word(p, "\\-");          term_word(p, "\\-");
         p->flags |= TERMP_NOSPACE;          p->flags |= TERMP_NOSPACE;
         return(1);          return(1);
   }
   
   
   /* ARGSUSED */
   static int
   termp_an_pre(DECL_ARGS)
   {
   
           if (NULL == node->child)
                   return(1);
   
           /*
            * XXX: this is poorly documented.  If not in the AUTHORS
            * section, `An -split' will cause newlines to occur before the
            * author name.  If in the AUTHORS section, by default, the
            * first `An' invocation is nosplit, then all subsequent ones,
            * regardless of whether interspersed with other macros/text,
            * are split.  -split, in this case, will override the condition
            * of the implied first -nosplit.
            */
   
           if (node->sec == SEC_AUTHORS) {
                   if ( ! (TERMP_ANPREC & p->flags)) {
                           if (TERMP_SPLIT & p->flags)
                                   term_newln(p);
                           return(1);
                   }
                   if (TERMP_NOSPLIT & p->flags)
                           return(1);
                   term_newln(p);
                   return(1);
           }
   
           if (TERMP_SPLIT & p->flags)
                   term_newln(p);
   
           return(1);
   }
   
   
   /* ARGSUSED */
   static void
   termp_an_post(DECL_ARGS)
   {
   
           if (node->child) {
                   if (SEC_AUTHORS == node->sec)
                           p->flags |= TERMP_ANPREC;
                   return;
           }
   
           if (arg_getattr(MDOC_Split, node) > -1) {
                   p->flags &= ~TERMP_NOSPLIT;
                   p->flags |= TERMP_SPLIT;
           } else {
                   p->flags &= ~TERMP_SPLIT;
                   p->flags |= TERMP_NOSPLIT;
           }
   
 }  }
   
   

Legend:
Removed from v.1.60  
changed lines
  Added in v.1.61

CVSweb