[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.173 and 1.174

version 1.173, 2010/07/07 15:04:54 version 1.174, 2010/07/16 00:03:37
Line 2066  termp_sm_pre(DECL_ARGS)
Line 2066  termp_sm_pre(DECL_ARGS)
 {  {
   
         assert(n->child && MDOC_TEXT == n->child->type);          assert(n->child && MDOC_TEXT == n->child->type);
         if (0 == strcmp("on", n->child->string))          if (0 == strcmp("on", n->child->string)) {
                   if (p->col)
                           p->flags &= ~TERMP_NOSPACE;
                 p->flags &= ~TERMP_NONOSPACE;                  p->flags &= ~TERMP_NONOSPACE;
         else          } else
                 p->flags |= TERMP_NONOSPACE;                  p->flags |= TERMP_NONOSPACE;
   
         return(0);          return(0);

Legend:
Removed from v.1.173  
changed lines
  Added in v.1.174

CVSweb