diff options
author | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2011-07-08 09:00:54 +0000 |
---|---|---|
committer | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2011-07-08 09:00:54 +0000 |
commit | 29e497d231b91237ca4a1b6d6eaaf7ace869508e (patch) | |
tree | 56c14ff945fddea8d764f7b4630b643bd8c1d265 /ext/json/parser/parser.rl | |
parent | bc1fd9458d6e168ab49f0b648a5fb1ba41702367 (diff) |
* ext/json/{generator/generator.c,parser/parser.rl}: fix indent.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@32460 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'ext/json/parser/parser.rl')
-rw-r--r-- | ext/json/parser/parser.rl | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/ext/json/parser/parser.rl b/ext/json/parser/parser.rl index 75889403c6..9531e3a966 100644 --- a/ext/json/parser/parser.rl +++ b/ext/json/parser/parser.rl @@ -457,13 +457,13 @@ static VALUE json_string_unescape(VALUE result, char *string, char *stringEnd) action parse_string { *result = json_string_unescape(*result, json->memo + 1, p); if (NIL_P(*result)) { - fhold; - fbreak; - } else { - FORCE_UTF8(*result); - fexec p + 1; - } - } + fhold; + fbreak; + } else { + FORCE_UTF8(*result); + fexec p + 1; + } + } action exit { fhold; fbreak; } |