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

Diff for /mandoc/mdoc_macro.c between version 1.6 and 1.7

version 1.6, 2009/04/02 06:51:44 version 1.7, 2009/04/12 19:19:57
Line 871  in_line(MACRO_PROT_ARGS)
Line 871  in_line(MACRO_PROT_ARGS)
                                                         tok, arg))                                                          tok, arg))
                                         return(0);                                          return(0);
                                 mdoc->next = MDOC_NEXT_SIBLING;                                  mdoc->next = MDOC_NEXT_SIBLING;
                         } else if ( ! nc && 0 == cnt)                          } else if ( ! nc && 0 == cnt) {
                                   mdoc_argv_free(arg);
                                 if ( ! pwarn(mdoc, line, ppos, WIGNE))                                  if ( ! pwarn(mdoc, line, ppos, WIGNE))
                                         return(0);                                          return(0);
                           }
                         c = mdoc_macro(mdoc, c, line, la, pos, buf);                          c = mdoc_macro(mdoc, c, line, la, pos, buf);
                         if (0 == c)                          if (0 == c)
                                 return(0);                                  return(0);
Line 924  in_line(MACRO_PROT_ARGS)
Line 926  in_line(MACRO_PROT_ARGS)
                 if (0 == c)                  if (0 == c)
                         return(0);                          return(0);
                 mdoc->next = MDOC_NEXT_SIBLING;                  mdoc->next = MDOC_NEXT_SIBLING;
         } else if ( ! nc && 0 == cnt)          } else if ( ! nc && 0 == cnt) {
                   mdoc_argv_free(arg);
                 if ( ! pwarn(mdoc, line, ppos, WIGNE))                  if ( ! pwarn(mdoc, line, ppos, WIGNE))
                         return(0);                          return(0);
           }
   
         if (ppos > 1)          if (ppos > 1)
                 return(1);                  return(1);

Legend:
Removed from v.1.6  
changed lines
  Added in v.1.7

CVSweb