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

Diff for /src/usr.bin/mandoc/man_macro.c between version 1.46 and 1.47

version 1.46, 2014/07/07 19:17:39 version 1.47, 2014/07/07 21:35:42
Line 106 
Line 106 
                     MAN_BLOCK == n->type &&                      MAN_BLOCK == n->type &&
                     0 == (MAN_VALID & n->flags) &&                      0 == (MAN_VALID & n->flags) &&
                     MAN_EXPLICIT & man_macros[n->tok].flags)                      MAN_EXPLICIT & man_macros[n->tok].flags)
                         mandoc_msg(MANDOCERR_SCOPEEXIT,                          mandoc_msg(MANDOCERR_BLK_NOEND,
                             man->parse, n->line, n->pos,                              man->parse, n->line, n->pos,
                             man_macronames[n->tok]);                              man_macronames[n->tok]);
                 /*                  /*
Line 266 
Line 266 
                         break;                          break;
   
         if (NULL == nn) {          if (NULL == nn) {
                 man_pmsg(man, line, ppos, MANDOCERR_NOSCOPE);                  mandoc_msg(MANDOCERR_BLK_NOTOPEN, man->parse,
                       line, ppos, man_macronames[tok]);
                 if ( ! rew_scope(MAN_BLOCK, man, MAN_PP))                  if ( ! rew_scope(MAN_BLOCK, man, MAN_PP))
                         return(0);                          return(0);
         } else          } else

Legend:
Removed from v.1.46  
changed lines
  Added in v.1.47