[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.186

version 1.185, 2010/09/23 20:40:00 version 1.186, 2010/09/25 15:51:30
Line 2131  termp____post(DECL_ARGS)
Line 2131  termp____post(DECL_ARGS)
         /* TODO: %U. */          /* TODO: %U. */
   
         p->flags |= TERMP_NOSPACE;          p->flags |= TERMP_NOSPACE;
         term_word(p, n->next ? "," : ".");          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.186

CVSweb