[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.183 and 1.184

version 1.183, 2010/08/21 14:04:13 version 1.184, 2010/09/04 19:01:52
Line 92  static void   termp_sh_post(DECL_ARGS);
Line 92  static void   termp_sh_post(DECL_ARGS);
 static  void      termp_sq_post(DECL_ARGS);  static  void      termp_sq_post(DECL_ARGS);
 static  void      termp_ss_post(DECL_ARGS);  static  void      termp_ss_post(DECL_ARGS);
   
   static  int       termp__a_pre(DECL_ARGS);
 static  int       termp_an_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);
Line 178  static const struct termact termacts[MDOC_MAX] = {
Line 179  static const struct termact termacts[MDOC_MAX] = {
         { termp_under_pre, NULL }, /* Va */          { termp_under_pre, NULL }, /* Va */
         { termp_vt_pre, NULL }, /* Vt */          { termp_vt_pre, NULL }, /* Vt */
         { termp_xr_pre, NULL }, /* Xr */          { termp_xr_pre, NULL }, /* Xr */
         { NULL, termp____post }, /* %A */          { termp__a_pre, termp____post }, /* %A */
         { termp_under_pre, termp____post }, /* %B */          { termp_under_pre, termp____post }, /* %B */
         { NULL, termp____post }, /* %D */          { NULL, termp____post }, /* %D */
         { termp_under_pre, termp____post }, /* %I */          { termp_under_pre, termp____post }, /* %I */
Line 1079  termp_fl_pre(DECL_ARGS)
Line 1080  termp_fl_pre(DECL_ARGS)
   
 /* ARGSUSED */  /* ARGSUSED */
 static int  static int
   termp__a_pre(DECL_ARGS)
   {
   
           if (n->prev && MDOC__A == n->prev->tok)
                   if (NULL == n->next || MDOC__A != n->next->tok)
                           term_word(p, "and");
   
           return(1);
   }
   
   
   /* ARGSUSED */
   static int
 termp_an_pre(DECL_ARGS)  termp_an_pre(DECL_ARGS)
 {  {
   
Line 2097  termp_ap_pre(DECL_ARGS)
Line 2111  termp_ap_pre(DECL_ARGS)
 static void  static void
 termp____post(DECL_ARGS)  termp____post(DECL_ARGS)
 {  {
   
           /*
            * Handle lists of authors.  In general, print each followed by
            * a comma.  Don't print the comma if there are only two
            * authors.
            */
           if (MDOC__A == n->tok && n->next && MDOC__A == n->next->tok)
                   if (NULL == n->next->next || MDOC__A != n->next->next->tok)
                           if (NULL == n->prev || MDOC__A != n->prev->tok)
                                   return;
   
         /* TODO: %U. */          /* TODO: %U. */
   

Legend:
Removed from v.1.183  
changed lines
  Added in v.1.184

CVSweb