Skip to content

Commit

Permalink
* ext/json/{generator/generator.c,parser/parser.rl}: fix indent.
Browse files Browse the repository at this point in the history
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@32460 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
  • Loading branch information
nobu committed Jul 8, 2011
1 parent bc1fd94 commit 29e497d
Show file tree
Hide file tree
Showing 3 changed files with 24 additions and 24 deletions.
20 changes: 10 additions & 10 deletions ext/json/generator/generator.c
Expand Up @@ -62,7 +62,7 @@ static const char trailingBytesForUTF8[256] = {
* in a UTF-8 sequence.
*/
static const UTF32 offsetsFromUTF8[6] = { 0x00000000UL, 0x00003080UL, 0x000E2080UL,
0x03C82080UL, 0xFA082080UL, 0x82082080UL };
0x03C82080UL, 0xFA082080UL, 0x82082080UL };

/*
* Utility routine to tell whether a sequence of bytes is legal UTF-8.
Expand Down Expand Up @@ -358,23 +358,23 @@ static void fbuffer_append_char(FBuffer *fb, char newchr)

static void freverse(char *start, char *end)
{
char c;
char c;

while (end > start) {
c = *end, *end-- = *start, *start++ = c;
while (end > start) {
c = *end, *end-- = *start, *start++ = c;
}
}

static long fltoa(long number, char *buf)
{
static char digits[] = "0123456789";
long sign = number;
char* tmp = buf;
static char digits[] = "0123456789";
long sign = number;
char* tmp = buf;

if (sign < 0) number = -number;
if (sign < 0) number = -number;
do *tmp++ = digits[number % 10]; while (number /= 10);
if (sign < 0) *tmp++ = '-';
freverse(buf, tmp - 1);
if (sign < 0) *tmp++ = '-';
freverse(buf, tmp - 1);
return tmp - buf;
}

Expand Down
14 changes: 7 additions & 7 deletions ext/json/parser/parser.c
Expand Up @@ -1404,13 +1404,13 @@ case 2:
{
*result = json_string_unescape(*result, json->memo + 1, p);
if (NIL_P(*result)) {
p--;
{p++; cs = 8; goto _out;}
} else {
FORCE_UTF8(*result);
{p = (( p + 1))-1;}
}
}
p--;
{p++; cs = 8; goto _out;}
} else {
FORCE_UTF8(*result);
{p = (( p + 1))-1;}
}
}
#line 468 "parser.rl"
{ p--; {p++; cs = 8; goto _out;} }
goto st8;
Expand Down
14 changes: 7 additions & 7 deletions ext/json/parser/parser.rl
Expand Up @@ -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; }

Expand Down

0 comments on commit 29e497d

Please sign in to comment.