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

Diff for /mandoc/term.c between version 1.8 and 1.9

version 1.8, 2009/02/22 15:50:45 version 1.9, 2009/02/22 19:23:48
Line 319  word(struct termp *p, const char *word)
Line 319  word(struct termp *p, const char *word)
         len = strlen(word);          len = strlen(word);
         assert(len > 0);          assert(len > 0);
   
         if (mdoc_isdelim(word))          if (mdoc_isdelim(word)) {
                 p->flags |= TERMP_NOSPACE;                  if ( ! (p->flags & TERMP_IGNDELIM))
                           p->flags |= TERMP_NOSPACE;
                   p->flags &= ~TERMP_IGNDELIM;
           }
   
         /* LINTED */          /* LINTED */
         for (j = i = 0; i < len; i++) {          for (j = i = 0; i < len; i++) {

Legend:
Removed from v.1.8  
changed lines
  Added in v.1.9

CVSweb