diff options
Diffstat (limited to 'consts.cpp')
-rw-r--r-- | consts.cpp | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -1,6 +1,6 @@ #include "consts.h" -const char *SYN_ERR_MSG[] = { +const char *ERR_MSG[] = { "\"%s\" is not an valid identifier", "Cannot apply the operation \"%s\"", "Unbound variable: \"%s\"", @@ -9,5 +9,6 @@ const char *SYN_ERR_MSG[] = { "Wrong number of arguments to procedure (%s)", "Illegal empty combination ()", "Unexpected \")\"", - "Wrong type (expecting %s)" + "Wrong type (expecting %s)", + "Internal Error !!! File a bug please!" }; |