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

Diff for /mandoc/mdoc_macro.c between version 1.124 and 1.126

version 1.124, 2013/12/24 19:11:46 version 1.126, 2013/12/31 22:40:12
Line 713  blk_exp_close(MACRO_PROT_ARGS)
Line 713  blk_exp_close(MACRO_PROT_ARGS)
                 maxargs = 1;                  maxargs = 1;
                 break;                  break;
         case (MDOC_Ek):          case (MDOC_Ek):
                 if ( ! (MDOC_SYNOPSIS & mdoc->flags))                  mdoc->flags &= ~MDOC_KEEP;
                         mdoc->flags &= ~MDOC_KEEP;  
         default:          default:
                 maxargs = 0;                  maxargs = 0;
                 break;                  break;
Line 1348  blk_part_imp(MACRO_PROT_ARGS)
Line 1347  blk_part_imp(MACRO_PROT_ARGS)
                 if ( ! mdoc_body_alloc(mdoc, line, ppos, tok))                  if ( ! mdoc_body_alloc(mdoc, line, ppos, tok))
                         return(0);                          return(0);
                 body = mdoc->last;                  body = mdoc->last;
         }  
   
         for (n = body->child; n && n->next; n = n->next)  
                 /* Do nothing. */ ;  
   
         /*  
          * End of sentence spacing: if the last node is a text node and  
          * has a trailing period, then mark it as being end-of-sentence.  
          */  
   
         if (n && MDOC_TEXT == n->type && n->string)  
                 if (mandoc_eos(n->string, strlen(n->string), 1))  
                         n->flags |= MDOC_EOS;  
   
         /* Up-propagate the end-of-space flag. */  
   
         if (n && (MDOC_EOS & n->flags)) {  
                 body->flags |= MDOC_EOS;  
                 body->parent->flags |= MDOC_EOS;  
         }          }
   
         /*          /*

Legend:
Removed from v.1.124  
changed lines
  Added in v.1.126

CVSweb