[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.305 and 1.306

version 1.305, 2015/01/31 00:12:41 version 1.306, 2015/02/01 23:10:35
Line 67  static void   termp__t_post(DECL_ARGS);
Line 67  static void   termp__t_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_bk_post(DECL_ARGS);
 static  void      termp_bl_post(DECL_ARGS);  static  void      termp_bl_post(DECL_ARGS);
   static  void      termp_eo_post(DECL_ARGS);
 static  void      termp_fd_post(DECL_ARGS);  static  void      termp_fd_post(DECL_ARGS);
 static  void      termp_fo_post(DECL_ARGS);  static  void      termp_fo_post(DECL_ARGS);
 static  void      termp_in_post(DECL_ARGS);  static  void      termp_in_post(DECL_ARGS);
Line 91  static int   termp_bt_pre(DECL_ARGS);
Line 92  static int   termp_bt_pre(DECL_ARGS);
 static  int       termp_bx_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_ex_pre(DECL_ARGS);  static  int       termp_ex_pre(DECL_ARGS);
 static  int       termp_fa_pre(DECL_ARGS);  static  int       termp_fa_pre(DECL_ARGS);
 static  int       termp_fd_pre(DECL_ARGS);  static  int       termp_fd_pre(DECL_ARGS);
Line 190  static const struct termact termacts[MDOC_MAX] = {
Line 192  static const struct termact termacts[MDOC_MAX] = {
         { NULL, NULL }, /* Ec */ /* FIXME: no space */          { NULL, NULL }, /* Ec */ /* FIXME: no space */
         { NULL, NULL }, /* Ef */          { NULL, NULL }, /* Ef */
         { termp_under_pre, NULL }, /* Em */          { termp_under_pre, NULL }, /* Em */
         { termp_quote_pre, termp_quote_post }, /* Eo */          { termp_eo_pre, termp_eo_post }, /* Eo */
         { termp_xx_pre, NULL }, /* Fx */          { termp_xx_pre, NULL }, /* Fx */
         { termp_bold_pre, NULL }, /* Ms */          { termp_bold_pre, NULL }, /* Ms */
         { termp_li_pre, NULL }, /* No */          { termp_li_pre, NULL }, /* No */
Line 1884  termp_quote_pre(DECL_ARGS)
Line 1886  termp_quote_pre(DECL_ARGS)
                         return(1);                          return(1);
                 term_word(p, n->norm->Es->child->string);                  term_word(p, n->norm->Es->child->string);
                 break;                  break;
         case MDOC_Eo:  
                 break;  
         case MDOC_Po:          case MDOC_Po:
                 /* FALLTHROUGH */                  /* FALLTHROUGH */
         case MDOC_Pq:          case MDOC_Pq:
Line 1921  termp_quote_post(DECL_ARGS)
Line 1921  termp_quote_post(DECL_ARGS)
         if (n->type != MDOC_BODY && n->type != MDOC_ELEM)          if (n->type != MDOC_BODY && n->type != MDOC_ELEM)
                 return;                  return;
   
         if ( ! (n->tok == MDOC_En ||          p->flags |= TERMP_NOSPACE;
             (n->tok == MDOC_Eo && n->end == ENDBODY_SPACE)))  
                 p->flags |= TERMP_NOSPACE;  
   
         switch (n->tok) {          switch (n->tok) {
         case MDOC_Ao:          case MDOC_Ao:
Line 1952  termp_quote_post(DECL_ARGS)
Line 1950  termp_quote_post(DECL_ARGS)
                 term_word(p, "\\(rq");                  term_word(p, "\\(rq");
                 break;                  break;
         case MDOC_En:          case MDOC_En:
                 if (NULL != n->norm->Es &&                  if (n->norm->Es == NULL ||
                     NULL != n->norm->Es->child &&                      n->norm->Es->child == NULL ||
                     NULL != n->norm->Es->child->next) {                      n->norm->Es->child->next == NULL)
                         p->flags |= TERMP_NOSPACE;                          p->flags &= ~TERMP_NOSPACE;
                   else
                         term_word(p, n->norm->Es->child->next->string);                          term_word(p, n->norm->Es->child->next->string);
                 }  
                 break;                  break;
         case MDOC_Eo:  
                 break;  
         case MDOC_Po:          case MDOC_Po:
                 /* FALLTHROUGH */                  /* FALLTHROUGH */
         case MDOC_Pq:          case MDOC_Pq:
Line 1984  termp_quote_post(DECL_ARGS)
Line 1980  termp_quote_post(DECL_ARGS)
                 abort();                  abort();
                 /* NOTREACHED */                  /* NOTREACHED */
         }          }
   }
   
   static int
   termp_eo_pre(DECL_ARGS)
   {
   
           if (n->type != MDOC_BODY)
                   return(1);
   
           if (n->end == ENDBODY_NOT &&
               n->parent->head->child == NULL &&
               n->child != NULL &&
               n->child->end != ENDBODY_NOT)
                   term_word(p, "\\&");
           else if (n->end != ENDBODY_NOT ? n->child != NULL :
                n->parent->head->child != NULL &&
                (n->parent->body->child != NULL ||
                 n->parent->tail->child != NULL))
                   p->flags |= TERMP_NOSPACE;
   
           return(1);
   }
   
   static void
   termp_eo_post(DECL_ARGS)
   {
           int      body, tail;
   
           if (n->type != MDOC_BODY)
                   return;
   
           if (n->end != ENDBODY_NOT) {
                   p->flags &= ~TERMP_NOSPACE;
                   return;
           }
   
           body = n->child != NULL || n->parent->head->child != NULL;
           tail = n->parent->tail != NULL && n->parent->tail->child != NULL;
   
           if (body && tail)
                   p->flags |= TERMP_NOSPACE;
           else if ( ! (body || tail))
                   term_word(p, "\\&");
           else if ( ! tail)
                   p->flags &= ~TERMP_NOSPACE;
 }  }
   
 static int  static int

Legend:
Removed from v.1.305  
changed lines
  Added in v.1.306

CVSweb