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

Diff for /mandoc/term.c between version 1.132 and 1.133

version 1.132, 2010/05/07 04:50:44 version 1.133, 2010/05/12 16:01:01
Line 445  term_word(struct termp *p, const char *word)
Line 445  term_word(struct termp *p, const char *word)
                         break;                          break;
                 }                  }
   
         if ( ! (TERMP_NOSPACE & p->flags))          if ( ! (TERMP_NOSPACE & p->flags)) {
                 bufferc(p, ' ');                  bufferc(p, ' ');
                   if (TERMP_SENTENCE & p->flags)
                           bufferc(p, ' ');
           }
   
         if ( ! (p->flags & TERMP_NONOSPACE))          if ( ! (p->flags & TERMP_NONOSPACE))
                 p->flags &= ~TERMP_NOSPACE;                  p->flags &= ~TERMP_NOSPACE;
   
           p->flags &= ~TERMP_SENTENCE;
   
         /* FIXME: use strcspn. */          /* FIXME: use strcspn. */
   

Legend:
Removed from v.1.132  
changed lines
  Added in v.1.133

CVSweb