*** empty log message ***

This commit is contained in:
2007-03-04 15:04:41 +00:00
parent c71d350312
commit 45f2520578
17 changed files with 26 additions and 26 deletions

View File

@ -1,5 +1,5 @@
/*
* $Id: awk.c,v 1.114 2007-03-04 14:55:55 bacon Exp $
* $Id: awk.c,v 1.115 2007-03-04 15:04:40 bacon Exp $
*
* {License}
*/
@ -40,7 +40,7 @@ ase_awk_t* ase_awk_open (
prmfns->misc.dprintf == ASE_NULL ||
prmfns->misc.abort == ASE_NULL)
{
*errnum = ASE_AWK_ESYSFNS;
*errnum = ASE_AWK_EPRMFNS;
return ASE_NULL;
}

View File

@ -1,5 +1,5 @@
/*
* $Id: awk.h,v 1.200 2007-03-04 14:55:55 bacon Exp $
* $Id: awk.h,v 1.201 2007-03-04 15:04:40 bacon Exp $
*
* {License}
*/
@ -217,10 +217,9 @@ enum
ASE_AWK_EINTERN, /* internal error */
ASE_AWK_ERUNTIME, /* run-time error */
ASE_AWK_ERUNNING, /* there are running instances */
ASE_AWK_EBLKNST, /* blocke nested too deeply */
ASE_AWK_EEXPRNST, /* expression nested too deeply */
ASE_AWK_ESYSFNS, /* system functions not proper */
ASE_AWK_EPRMFNS, /* system functions not proper */
ASE_AWK_ESINOP,
ASE_AWK_ESINCL,

View File

@ -1,5 +1,5 @@
/*
* $Id: awk_i.h,v 1.110 2007-03-04 14:55:55 bacon Exp $
* $Id: awk_i.h,v 1.111 2007-03-04 15:04:40 bacon Exp $
*
* {License}
*/
@ -195,7 +195,7 @@ struct ase_awk_t
struct
{
ase_char_t* fmt[1024];
ase_char_t fmt[1024];
} tmp;
/* housekeeping */

View File

@ -1,5 +1,5 @@
/*
* $Id: err.c,v 1.83 2007-03-04 14:55:55 bacon Exp $
* $Id: err.c,v 1.84 2007-03-04 15:04:40 bacon Exp $
*
* {License}
*/
@ -30,7 +30,6 @@ static const ase_char_t* __geterrstr (int errnum)
ASE_T("internal error that should never have happened"),
ASE_T("general run-time error"),
ASE_T("one or more running instances"),
ASE_T("block nested too deeply"),
ASE_T("expressio nested too deeply"),
ASE_T("system functions not provided or not proper"),