summaryrefslogtreecommitdiff
path: root/parse.y
diff options
context:
space:
mode:
authormatz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2000-07-12 06:06:50 +0000
committermatz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2000-07-12 06:06:50 +0000
commitb8e9c32d17b0fdafc8bfdeab7226e4bdeb1b7577 (patch)
treea6d8875b358d977d674a83d08c204c71da255b0d /parse.y
parentbeffb7f8357091b17d5783d6f1b921c4d8727250 (diff)
matz
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@827 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'parse.y')
-rw-r--r--parse.y2
1 files changed, 1 insertions, 1 deletions
diff --git a/parse.y b/parse.y
index eb9c5e6198..e6f2cff3ab 100644
--- a/parse.y
+++ b/parse.y
@@ -3443,7 +3443,7 @@ yylex()
default:
if (!is_identchar(c) || ISDIGIT(c)) {
- rb_compile_error("Invalid char '%c'(%03o) in expression", c, c);
+ rb_compile_error("Invalid char `\\%03o' in expression", c);
goto retry;
}