[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.217 and 1.218

version 1.217, 2011/02/06 22:33:38 version 1.218, 2011/02/06 23:02:31
Line 1713  static int
Line 1713  static int
 termp_xx_pre(DECL_ARGS)  termp_xx_pre(DECL_ARGS)
 {  {
         const char      *pp;          const char      *pp;
           int              flags;
   
         pp = NULL;          pp = NULL;
         switch (n->tok) {          switch (n->tok) {
Line 1740  termp_xx_pre(DECL_ARGS)
Line 1741  termp_xx_pre(DECL_ARGS)
   
         term_word(p, pp);          term_word(p, pp);
         if (n->child) {          if (n->child) {
                   flags = p->flags;
                 p->flags |= TERMP_KEEP;                  p->flags |= TERMP_KEEP;
                 term_word(p, n->child->string);                  term_word(p, n->child->string);
                 p->flags &= ~TERMP_KEEP;                  p->flags = flags;
         }          }
         return(0);          return(0);
 }  }

Legend:
Removed from v.1.217  
changed lines
  Added in v.1.218

CVSweb