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

Diff for /mandoc/Attic/macro.c between version 1.25 and 1.26

version 1.25, 2009/01/07 15:53:00 version 1.26, 2009/01/07 15:57:14
Line 314  macro_close_explicit(MACRO_PROT_ARGS)
Line 314  macro_close_explicit(MACRO_PROT_ARGS)
                                         return(0);                                          return(0);
                                 flushed = 1;                                  flushed = 1;
                         }                          }
                         if ( ! mdoc_macro(mdoc, c, lastarg, pos, buf))                          if ( ! mdoc_macro(mdoc, c, line, lastarg, pos, buf))
                                 return(0);                                  return(0);
                         break;                          break;
                 }                  }
Line 405  macro_text(MACRO_PROT_ARGS)
Line 405  macro_text(MACRO_PROT_ARGS)
                                 return(0);                                  return(0);
                         }                          }
                         mdoc_argv_free(argc, argv);                          mdoc_argv_free(argc, argv);
                         if ( ! mdoc_macro(mdoc, c, lastarg, pos, buf))                          if ( ! mdoc_macro(mdoc, c, line, lastarg, pos, buf))
                                 return(0);                                  return(0);
                         if (ppos > 1)                          if (ppos > 1)
                                 return(1);                                  return(1);
Line 504  macro_scoped(MACRO_PROT_ARGS)
Line 504  macro_scoped(MACRO_PROT_ARGS)
                         continue;                          continue;
                 }                  }
   
                 if ( ! mdoc_macro(mdoc, c, lastarg, pos, buf))                  if ( ! mdoc_macro(mdoc, c, line, lastarg, pos, buf))
                         return(0);                          return(0);
                 break;                  break;
         }          }
Line 565  macro_scoped_line(MACRO_PROT_ARGS)
Line 565  macro_scoped_line(MACRO_PROT_ARGS)
                         continue;                          continue;
                 }                  }
   
                 if ( ! mdoc_macro(mdoc, c, lastarg, pos, buf))                  if ( ! mdoc_macro(mdoc, c, line, lastarg, pos, buf))
                         return(0);                          return(0);
                 break;                  break;
         }          }
Line 645  macro_constant_scoped(MACRO_PROT_ARGS)
Line 645  macro_constant_scoped(MACRO_PROT_ARGS)
                                 mdoc_body_alloc(mdoc, ppos, tok);                                  mdoc_body_alloc(mdoc, ppos, tok);
                                 mdoc->next = MDOC_NEXT_CHILD;                                  mdoc->next = MDOC_NEXT_CHILD;
                         }                          }
                         if ( ! mdoc_macro(mdoc, c, lastarg, pos, buf))                          if ( ! mdoc_macro(mdoc, c, line, lastarg, pos, buf))
                                 return(0);                                  return(0);
                         break;                          break;
                 }                  }
Line 751  macro_constant_delimited(MACRO_PROT_ARGS)
Line 751  macro_constant_delimited(MACRO_PROT_ARGS)
                         if ( ! flushed && ! rewind_elem(mdoc, ppos, tok))                          if ( ! flushed && ! rewind_elem(mdoc, ppos, tok))
                                 return(0);                                  return(0);
                         flushed = 1;                          flushed = 1;
                         if ( ! mdoc_macro(mdoc, c, lastarg, pos, buf))                          if ( ! mdoc_macro(mdoc, c, line, lastarg, pos, buf))
                                 return(0);                                  return(0);
                         break;                          break;
                 }                  }

Legend:
Removed from v.1.25  
changed lines
  Added in v.1.26

CVSweb