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

Diff for /mandoc/man.c between version 1.131 and 1.132

version 1.131, 2014/07/06 19:09:00 version 1.132, 2014/07/07 19:18:15
Line 392  man_descope(struct man *man, int line, int offs)
Line 392  man_descope(struct man *man, int line, int offs)
   
         if (MAN_ELINE & man->flags) {          if (MAN_ELINE & man->flags) {
                 man->flags &= ~MAN_ELINE;                  man->flags &= ~MAN_ELINE;
                 if ( ! man_unscope(man, man->last->parent, MANDOCERR_MAX))                  if ( ! man_unscope(man, man->last->parent))
                         return(0);                          return(0);
         }          }
   
Line 400  man_descope(struct man *man, int line, int offs)
Line 400  man_descope(struct man *man, int line, int offs)
                 return(1);                  return(1);
         man->flags &= ~MAN_BLINE;          man->flags &= ~MAN_BLINE;
   
         if ( ! man_unscope(man, man->last->parent, MANDOCERR_MAX))          if ( ! man_unscope(man, man->last->parent))
                 return(0);                  return(0);
         return(man_body_alloc(man, line, offs, man->last->tok));          return(man_body_alloc(man, line, offs, man->last->tok));
 }  }
Line 639  man_pmacro(struct man *man, int ln, char *buf, int off
Line 639  man_pmacro(struct man *man, int ln, char *buf, int off
         assert(MAN_BLINE & man->flags);          assert(MAN_BLINE & man->flags);
         man->flags &= ~MAN_BLINE;          man->flags &= ~MAN_BLINE;
   
         if ( ! man_unscope(man, man->last->parent, MANDOCERR_MAX))          if ( ! man_unscope(man, man->last->parent))
                 return(0);                  return(0);
         return(man_body_alloc(man, ln, ppos, man->last->tok));          return(man_body_alloc(man, ln, ppos, man->last->tok));
   

Legend:
Removed from v.1.131  
changed lines
  Added in v.1.132

CVSweb