aboutsummaryrefslogtreecommitdiff
path: root/consts.cpp
diff options
context:
space:
mode:
authorTeddy <ted.sybil@gmail.com>2013-08-05 23:11:39 +0800
committerTeddy <ted.sybil@gmail.com>2013-08-05 23:11:39 +0800
commit5dab7df6830018c5c28ebcc7cc3b242ccad2736b (patch)
treeae6a0cbc8c63c10185047abdd218f9f3b1d30bb6 /consts.cpp
parent45dec735ec131c18d70ad202ed1446982b99ed9f (diff)
added string quoting support in the parsernumeric_types
Diffstat (limited to 'consts.cpp')
-rw-r--r--consts.cpp5
1 files changed, 3 insertions, 2 deletions
diff --git a/consts.cpp b/consts.cpp
index e41c981..51267a1 100644
--- a/consts.cpp
+++ b/consts.cpp
@@ -3,12 +3,13 @@
const char *ERR_MSG[] = {
"\"%s\" is not an valid identifier",
"Cannot apply the operation \"%s\"",
- "Unbound variable: \"%s\"",
+ "Unbound variable: %s",
"Missing or extra expression in (%s)",
"Empty parameter list in (%s)",
"Wrong number of arguments to procedure (%s)",
"Illegal empty combination ()",
"Unexpected \")\"",
"Wrong type (expecting %s)",
- "Internal Error !!! File a bug please!"
+ "Internal Error !!! File a bug please!",
+ "Illegal character in escape sequence: #\\%s"
};