- Bump ACC version to 1.50.

- Finish incomplete commit from last time.

SVN r2421 (trunk)
This commit is contained in:
Randy Heit 2010-07-10 00:58:22 +00:00
parent e810579a68
commit 8f5f3b7d85
3 changed files with 3 additions and 1 deletions

2
acc.c
View file

@ -22,7 +22,7 @@
// MACROS ------------------------------------------------------------------
#define VERSION_TEXT "1.49"
#define VERSION_TEXT "1.50"
#define COPYRIGHT_YEARS_TEXT "1995"
// TYPES -------------------------------------------------------------------

View file

@ -155,6 +155,7 @@ static struct
{ ERR_EOF, "Unexpected end of file." },
{ ERR_UNDEFINED_FUNC, "Function %s is used but not defined." },
{ ERR_TOO_MANY_ARRAY_DIMS, "Too many array dimensions." },
{ ERR_TOO_MANY_ARRAY_INIT, "Too many initializers for array." },
{ ERR_MISSING_LBRACKET, "Missing '['." },
{ ERR_MISSING_RBRACKET, "Missing ']'." },
{ ERR_ZERO_DIMENSION, "Arrays cannot have a dimension of zero." },

View file

@ -125,6 +125,7 @@ typedef enum
ERR_MISSING_RBRACKET,
ERR_ZERO_DIMENSION,
ERR_TOO_MANY_DIM_USED,
ERR_TOO_MANY_ARRAY_INIT,
ERR_EOF,
ERR_ARRAY_MAPVAR_ONLY,
ERR_NOT_AN_ARRAY,