[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.185 and 1.187

version 1.185, 2010/09/23 20:40:00 version 1.187, 2010/09/25 16:41:33
Line 2130  termp____post(DECL_ARGS)
Line 2130  termp____post(DECL_ARGS)
   
         /* TODO: %U. */          /* TODO: %U. */
   
         p->flags |= TERMP_NOSPACE;          if (NULL == n->parent || MDOC_Rs != n->parent->tok)
         term_word(p, n->next ? "," : ".");                  return;
   
           if (NULL == n->next) {
                   term_word(p, ".");
                   p->flags |= TERMP_SENTENCE;
           } else
                   term_word(p, ",");
 }  }
   
   

Legend:
Removed from v.1.185  
changed lines
  Added in v.1.187

CVSweb