*** empty log message ***

This commit is contained in:
2006-12-23 06:33:47 +00:00
parent 5082a77c2e
commit eaf49fce98
12 changed files with 27 additions and 23 deletions

View File

@ -1,5 +1,5 @@
/*
* $Id: rex.c,v 1.52 2006-12-13 14:16:12 bacon Exp $
* $Id: rex.c,v 1.53 2006-12-23 06:33:47 bacon Exp $
*/
#include <ase/awk/awk_i.h>
@ -410,7 +410,7 @@ static int __build_pattern (__builder_t* builder)
if (builder->depth.max > 0 && builder->depth.cur >= builder->depth.max)
{
builder->errnum = ASE_AWK_ERECURSION;
builder->errnum = ASE_AWK_ERECUR;
return -1;
}
@ -1076,7 +1076,7 @@ static const ase_byte_t* __match_branch_body (
if (matcher->depth.max > 0 && matcher->depth.cur >= matcher->depth.max)
{
matcher->errnum = ASE_AWK_ERECURSION;
matcher->errnum = ASE_AWK_ERECUR;
return ASE_NULL;
}

View File

@ -1,5 +1,5 @@
/*
* $Id: run.c,v 1.305 2006-12-19 14:20:30 bacon Exp $
* $Id: run.c,v 1.306 2006-12-23 06:33:47 bacon Exp $
*/
#include <ase/awk/awk_i.h>
@ -1660,7 +1660,7 @@ static int __run_block (ase_awk_run_t* run, ase_awk_nde_blk_t* nde)
if (run->depth.max.block > 0 &&
run->depth.cur.block >= run->depth.max.block)
{
run->errnum = ASE_AWK_ERECURSION;
run->errnum = ASE_AWK_ERECUR;
return -1;;
}