From a670571ad3ceab1ac1f1266f2b263640f2b11cc6 Mon Sep 17 00:00:00 2001 From: nobu Date: Thu, 5 Jul 2007 02:02:30 +0000 Subject: * parse.y (parser_parse_string): fix indent. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@12696 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- parse.y | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) (limited to 'parse.y') diff --git a/parse.y b/parse.y index 4a93ec5653..c1b74fa074 100644 --- a/parse.y +++ b/parse.y @@ -5227,16 +5227,16 @@ parser_parse_string(struct parser_params *parser, NODE *quote) } pushback(c); if (tokadd_string(func, term, paren, "e->nd_nest) == -1) { - if (func & STR_FUNC_REGEXP) { - ruby_sourceline = nd_line(quote); - rb_compile_error(PARSER_ARG "unterminated regexp meets end of file"); - return tREGEXP_END; - } - else { - ruby_sourceline = nd_line(quote); - rb_compile_error(PARSER_ARG "unterminated string meets end of file"); - return tSTRING_END; - } + if (func & STR_FUNC_REGEXP) { + ruby_sourceline = nd_line(quote); + rb_compile_error(PARSER_ARG "unterminated regexp meets end of file"); + return tREGEXP_END; + } + else { + ruby_sourceline = nd_line(quote); + rb_compile_error(PARSER_ARG "unterminated string meets end of file"); + return tSTRING_END; + } } tokfix(); -- cgit v1.2.3