[BACK]Return to roff.c CVS log [TXT][DIR] Up to [local] / src / usr.bin / mandoc

Diff for /src/usr.bin/mandoc/roff.c between version 1.3 and 1.4

version 1.3, 2010/06/06 18:08:41 version 1.4, 2010/06/06 20:30:08
Line 666 
Line 666 
                 return(ROFFRULE_DENY == rr ? ROFF_IGN : ROFF_CONT);                  return(ROFFRULE_DENY == rr ? ROFF_IGN : ROFF_CONT);
         }          }
   
         if (ep > st && '\\' != *(ep - 1)) {          if (ep == st || (ep > st && '\\' != *(ep - 1)))
                 ep = '\0';  
                 roffnode_pop(r);                  roffnode_pop(r);
         }  
   
         roffnode_cleanscope(r);          roffnode_cleanscope(r);
         return(ROFFRULE_DENY == rr ? ROFF_IGN : ROFF_CONT);          return(ROFFRULE_DENY == rr ? ROFF_IGN : ROFF_CONT);

Legend:
Removed from v.1.3  
changed lines
  Added in v.1.4