From 3b885ac18df69b301488fd57ed5b9d7efe7b3080 Mon Sep 17 00:00:00 2001 From: akr Date: Wed, 12 Dec 2007 14:30:54 +0000 Subject: * re.c, regerror.c, string.c, parse.y, ruby.c, file.c: use capital letter for \xHH notation. [ruby-dev:32511] git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@14202 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- parse.y | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'parse.y') diff --git a/parse.y b/parse.y index a57a0f407..43d386455 100644 --- a/parse.y +++ b/parse.y @@ -7070,7 +7070,7 @@ parser_yylex(struct parser_params *parser) default: if (!parser_is_identchar()) { - rb_compile_error(PARSER_ARG "Invalid char `\\x%02x' in expression", c); + rb_compile_error(PARSER_ARG "Invalid char `\\x%02X' in expression", c); goto retry; } -- cgit