[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.181 and 1.182

version 1.181, 2010/08/09 00:00:37 version 1.182, 2010/08/20 22:51:29
Line 842  termp_it_pre(DECL_ARGS)
Line 842  termp_it_pre(DECL_ARGS)
                 if (MDOC_BODY == n->prev->type)                  if (MDOC_BODY == n->prev->type)
                         p->flags |= TERMP_NOLPAD;                          p->flags |= TERMP_NOLPAD;
   
                   p->flags |= TERMP_IGNDELIM;
   
                 break;                  break;
         case (LIST_diag):          case (LIST_diag):
                 if (MDOC_HEAD == n->type)                  if (MDOC_HEAD == n->type)
Line 1000  termp_it_post(DECL_ARGS)
Line 1002  termp_it_post(DECL_ARGS)
         p->flags &= ~TERMP_TWOSPACE;          p->flags &= ~TERMP_TWOSPACE;
         p->flags &= ~TERMP_NOLPAD;          p->flags &= ~TERMP_NOLPAD;
         p->flags &= ~TERMP_HANG;          p->flags &= ~TERMP_HANG;
   
           /*
            * TERMP_IGNDELIM is also set by `Pf', but it is safe
            * to clear it here because `Pf' cannot contain `It'.
            */
   
           p->flags &= ~TERMP_IGNDELIM;
 }  }
   
   
Line 1804  static void
Line 1813  static void
 termp_pf_post(DECL_ARGS)  termp_pf_post(DECL_ARGS)
 {  {
   
           /*
            * XXX Resetting TERMP_IGNDELIM here is not safe
            * because `Pf' can be used inside `Bl -column'.
            */
         p->flags &= ~TERMP_IGNDELIM;          p->flags &= ~TERMP_IGNDELIM;
         p->flags |= TERMP_NOSPACE;          p->flags |= TERMP_NOSPACE;
 }  }

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

CVSweb