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

Diff for /mandoc/term.c between version 1.150 and 1.151

version 1.150, 2010/06/26 15:36:37 version 1.151, 2010/06/27 01:26:20
Line 480  term_word(struct termp *p, const char *word)
Line 480  term_word(struct termp *p, const char *word)
                 }                  }
   
         if ( ! (TERMP_NOSPACE & p->flags)) {          if ( ! (TERMP_NOSPACE & p->flags)) {
                 bufferc(p, ' ');                  if ( ! (TERMP_KEEP & p->flags)) {
                 if (TERMP_SENTENCE & p->flags)                          if (TERMP_PREKEEP & p->flags)
                                   p->flags |= TERMP_KEEP;
                         bufferc(p, ' ');                          bufferc(p, ' ');
                           if (TERMP_SENTENCE & p->flags)
                                   bufferc(p, ' ');
                   } else
                           bufferc(p, ASCII_NBRSP);
         }          }
   
         if ( ! (p->flags & TERMP_NONOSPACE))          if ( ! (p->flags & TERMP_NONOSPACE))

Legend:
Removed from v.1.150  
changed lines
  Added in v.1.151

CVSweb