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

Diff for /mandoc/term.c between version 1.181 and 1.182

version 1.181, 2011/03/22 10:13:01 version 1.182, 2011/03/22 14:05:45
Line 462  term_word(struct termp *p, const char *word)
Line 462  term_word(struct termp *p, const char *word)
   
         sv = word;          sv = word;
   
         if (DELIM_CLOSE == mandoc_isdelim(word))  
                 if ( ! (TERMP_IGNDELIM & p->flags))  
                         p->flags |= TERMP_NOSPACE;  
   
         if ( ! (TERMP_NOSPACE & p->flags)) {          if ( ! (TERMP_NOSPACE & p->flags)) {
                 if ( ! (TERMP_KEEP & p->flags)) {                  if ( ! (TERMP_KEEP & p->flags)) {
                         if (TERMP_PREKEEP & p->flags)                          if (TERMP_PREKEEP & p->flags)
Line 526  term_word(struct termp *p, const char *word)
Line 522  term_word(struct termp *p, const char *word)
                 if (DECO_NOSPACE == deco && '\0' == *word)                  if (DECO_NOSPACE == deco && '\0' == *word)
                         p->flags |= TERMP_NOSPACE;                          p->flags |= TERMP_NOSPACE;
         }          }
   
         if (DELIM_OPEN == mandoc_isdelim(sv))  
                 p->flags |= TERMP_NOSPACE;  
 }  }
   
   

Legend:
Removed from v.1.181  
changed lines
  Added in v.1.182

CVSweb