summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorChristopher Aue <[email protected]>2017-08-09 21:42:42 +0200
committerChristopher Aue <[email protected]>2017-08-09 21:56:27 +0200
commit2fadddcd20a16afe0e710d07288e106993a43a07 (patch)
treea2b928be7c8dd7103aded1df6ce547ad18aef54e
parent24c345fe5c68a3f0cd4d16e84c8bf6ed93cedce8 (diff)
downloadmruby-2fadddcd20a16afe0e710d07288e106993a43a07.tar.gz
mruby-2fadddcd20a16afe0e710d07288e106993a43a07.zip
Replaced tabs with spaces
-rw-r--r--include/mrbconf.h4
-rw-r--r--include/mruby/common.h2
-rw-r--r--include/mruby/compile.h2
-rw-r--r--mrbgems/mruby-compiler/core/parse.y2
-rw-r--r--mrbgems/mruby-random/src/mt19937ar.c6
-rw-r--r--mrbgems/mruby-sprintf/src/sprintf.c2
-rw-r--r--src/string.c230
-rw-r--r--src/vm.c8
8 files changed, 127 insertions, 129 deletions
diff --git a/include/mrbconf.h b/include/mrbconf.h
index b246b970c..7559dca05 100644
--- a/include/mrbconf.h
+++ b/include/mrbconf.h
@@ -87,10 +87,10 @@
//#define MRB_FIXED_STATE_ATEXIT_STACK
/* -DMRB_DISABLE_XXXX to drop following features */
-//#define MRB_DISABLE_STDIO /* use of stdio */
+//#define MRB_DISABLE_STDIO /* use of stdio */
/* -DMRB_ENABLE_XXXX to enable following features */
-//#define MRB_ENABLE_DEBUG_HOOK /* hooks for debugger */
+//#define MRB_ENABLE_DEBUG_HOOK /* hooks for debugger */
/* end of configuration */
diff --git a/include/mruby/common.h b/include/mruby/common.h
index 160639922..d6ec78b0d 100644
--- a/include/mruby/common.h
+++ b/include/mruby/common.h
@@ -14,7 +14,7 @@
#define MRB_END_DECL
#else
# define MRB_BEGIN_DECL extern "C" {
-# define MRB_END_DECL }
+# define MRB_END_DECL }
#endif
#else
/** Start declarations in C mode */
diff --git a/include/mruby/compile.h b/include/mruby/compile.h
index 13e04d0fc..a888aae0c 100644
--- a/include/mruby/compile.h
+++ b/include/mruby/compile.h
@@ -138,7 +138,7 @@ struct mrb_parser_state {
int tidx;
int tsiz;
- mrb_ast_node *all_heredocs; /* list of mrb_parser_heredoc_info* */
+ mrb_ast_node *all_heredocs; /* list of mrb_parser_heredoc_info* */
mrb_ast_node *heredocs_from_nextline;
mrb_ast_node *parsing_heredoc;
mrb_ast_node *lex_strterm_before_heredoc;
diff --git a/mrbgems/mruby-compiler/core/parse.y b/mrbgems/mruby-compiler/core/parse.y
index c82a93932..b7d0d904c 100644
--- a/mrbgems/mruby-compiler/core/parse.y
+++ b/mrbgems/mruby-compiler/core/parse.y
@@ -1384,7 +1384,7 @@ command_asgn : lhs '=' command_rhs
backref_error(p, $1);
$$ = new_begin(p, 0);
}
- ;
+ ;
command_rhs : command_call %prec tOP_ASGN
| command_call modifier_rescue stmt
diff --git a/mrbgems/mruby-random/src/mt19937ar.c b/mrbgems/mruby-random/src/mt19937ar.c
index bee06b574..405bd5c20 100644
--- a/mrbgems/mruby-random/src/mt19937ar.c
+++ b/mrbgems/mruby-random/src/mt19937ar.c
@@ -52,8 +52,7 @@ void mrb_random_init_genrand(mt_state *t, unsigned long s)
{
t->mt[0]= s & 0xffffffffUL;
for (t->mti=1; t->mti<N; t->mti++) {
- t->mt[t->mti] =
- (1812433253UL * (t->mt[t->mti-1] ^ (t->mt[t->mti-1] >> 30)) + t->mti);
+ t->mt[t->mti] = (1812433253UL * (t->mt[t->mti-1] ^ (t->mt[t->mti-1] >> 30)) + t->mti);
t->mt[t->mti] &= 0xffffffffUL;
}
}
@@ -111,8 +110,7 @@ void init_genrand(unsigned long s)
{
mt[0]= s & 0xffffffffUL;
for (mti=1; mti<N; mti++) {
- mt[mti] =
- (1812433253UL * (mt[mti-1] ^ (mt[mti-1] >> 30)) + mti);
+ mt[mti] = (1812433253UL * (mt[mti-1] ^ (mt[mti-1] >> 30)) + mti);
/* See Knuth TAOCP Vol2. 3rd Ed. P.106 for multiplier. */
/* In the previous versions, MSBs of the seed affect */
/* only MSBs of the array mt[]. */
diff --git a/mrbgems/mruby-sprintf/src/sprintf.c b/mrbgems/mruby-sprintf/src/sprintf.c
index 7b8201736..788617cda 100644
--- a/mrbgems/mruby-sprintf/src/sprintf.c
+++ b/mrbgems/mruby-sprintf/src/sprintf.c
@@ -1020,7 +1020,7 @@ retry:
else if (flags & (FPLUS|FSPACE))
sign = (flags & FPLUS) ? '+' : ' ';
if (sign)
- ++need;
+ ++need;
if ((flags & FWIDTH) && need < width)
need = width;
diff --git a/src/string.c b/src/string.c
index 6fdb7fe72..5abc5c4cf 100644
--- a/src/string.c
+++ b/src/string.c
@@ -2786,7 +2786,7 @@ mrb_init_string(mrb_state *mrb)
}
/*
- * Source code for the "strtod" library procedure.
+ * Source code for the "strtod" library procedure.
*
* Copyright (c) 1988-1993 The Regents of the University of California.
* Copyright (c) 1994 Sun Microsystems, Inc.
@@ -2812,7 +2812,7 @@ static const int maxExponent = 511; /* Largest possible base 10 exponent. Any
*/
static const double powersOf10[] = {/* Table giving binary powers of 10. Entry */
10., /* is 10^2^i. Used to convert decimal */
- 100., /* exponents into floating-point numbers. */
+ 100., /* exponents into floating-point numbers. */
1.0e4,
1.0e8,
1.0e16,
@@ -2824,41 +2824,41 @@ static const double powersOf10[] = {/* Table giving binary powers of 10. Entry
MRB_API double
mrb_float_read(const char *string, char **endPtr)
-/* const char *string; A decimal ASCII floating-point number,
- * optionally preceded by white space.
- * Must have form "-I.FE-X", where I is the
- * integer part of the mantissa, F is the
- * fractional part of the mantissa, and X
- * is the exponent. Either of the signs
- * may be "+", "-", or omitted. Either I
- * or F may be omitted, or both. The decimal
- * point isn't necessary unless F is present.
- * The "E" may actually be an "e". E and X
- * may both be omitted (but not just one).
- */
-/* char **endPtr; If non-NULL, store terminating character's
- * address here. */
+/* const char *string; A decimal ASCII floating-point number,
+ * optionally preceded by white space.
+ * Must have form "-I.FE-X", where I is the
+ * integer part of the mantissa, F is the
+ * fractional part of the mantissa, and X
+ * is the exponent. Either of the signs
+ * may be "+", "-", or omitted. Either I
+ * or F may be omitted, or both. The decimal
+ * point isn't necessary unless F is present.
+ * The "E" may actually be an "e". E and X
+ * may both be omitted (but not just one).
+ */
+/* char **endPtr; If non-NULL, store terminating character's
+ * address here. */
{
int sign, expSign = FALSE;
double fraction, dblExp;
const double *d;
register const char *p;
register int c;
- int exp = 0; /* Exponent read from "EX" field. */
- int fracExp = 0; /* Exponent that derives from the fractional
- * part. Under normal circumstatnces, it is
- * the negative of the number of digits in F.
- * However, if I is very long, the last digits
- * of I get dropped (otherwise a long I with a
- * large negative exponent could cause an
- * unnecessary overflow on I alone). In this
- * case, fracExp is incremented one for each
- * dropped digit. */
- int mantSize; /* Number of digits in mantissa. */
- int decPt; /* Number of mantissa digits BEFORE decimal
- * point. */
- const char *pExp; /* Temporarily holds location of exponent
- * in string. */
+ int exp = 0; /* Exponent read from "EX" field. */
+ int fracExp = 0; /* Exponent that derives from the fractional
+ * part. Under normal circumstatnces, it is
+ * the negative of the number of digits in F.
+ * However, if I is very long, the last digits
+ * of I get dropped (otherwise a long I with a
+ * large negative exponent could cause an
+ * unnecessary overflow on I alone). In this
+ * case, fracExp is incremented one for each
+ * dropped digit. */
+ int mantSize; /* Number of digits in mantissa. */
+ int decPt; /* Number of mantissa digits BEFORE decimal
+ * point. */
+ const char *pExp; /* Temporarily holds location of exponent
+ * in string. */
/*
* Strip off leading blanks and check for a sign.
@@ -2866,17 +2866,17 @@ mrb_float_read(const char *string, char **endPtr)
p = string;
while (isspace(*p)) {
- p += 1;
+ p += 1;
}
if (*p == '-') {
- sign = TRUE;
- p += 1;
+ sign = TRUE;
+ p += 1;
}
else {
- if (*p == '+') {
- p += 1;
- }
- sign = FALSE;
+ if (*p == '+') {
+ p += 1;
+ }
+ sign = FALSE;
}
/*
@@ -2887,14 +2887,14 @@ mrb_float_read(const char *string, char **endPtr)
decPt = -1;
for (mantSize = 0; ; mantSize += 1)
{
- c = *p;
- if (!isdigit(c)) {
- if ((c != '.') || (decPt >= 0)) {
- break;
- }
- decPt = mantSize;
- }
- p += 1;
+ c = *p;
+ if (!isdigit(c)) {
+ if ((c != '.') || (decPt >= 0)) {
+ break;
+ }
+ decPt = mantSize;
+ }
+ p += 1;
}
/*
@@ -2907,53 +2907,53 @@ mrb_float_read(const char *string, char **endPtr)
pExp = p;
p -= mantSize;
if (decPt < 0) {
- decPt = mantSize;
+ decPt = mantSize;
}
else {
- mantSize -= 1; /* One of the digits was the point. */
+ mantSize -= 1; /* One of the digits was the point. */
}
if (mantSize > 18) {
- if (decPt - 18 > 29999) {
- fracExp = 29999;
- }
- else {
- fracExp = decPt - 18;
- }
- mantSize = 18;
+ if (decPt - 18 > 29999) {
+ fracExp = 29999;
+ }
+ else {
+ fracExp = decPt - 18;
+ }
+ mantSize = 18;
}
else {
- fracExp = decPt - mantSize;
+ fracExp = decPt - mantSize;
}
if (mantSize == 0) {
- fraction = 0.0;
- p = string;
- goto done;
+ fraction = 0.0;
+ p = string;
+ goto done;
}
else {
- int frac1, frac2;
- frac1 = 0;
- for ( ; mantSize > 9; mantSize -= 1)
- {
- c = *p;
- p += 1;
- if (c == '.') {
- c = *p;
- p += 1;
- }
- frac1 = 10*frac1 + (c - '0');
- }
- frac2 = 0;
- for (; mantSize > 0; mantSize -= 1)
- {
- c = *p;
- p += 1;
- if (c == '.') {
- c = *p;
- p += 1;
- }
- frac2 = 10*frac2 + (c - '0');
- }
- fraction = (1.0e9 * frac1) + frac2;
+ int frac1, frac2;
+ frac1 = 0;
+ for ( ; mantSize > 9; mantSize -= 1)
+ {
+ c = *p;
+ p += 1;
+ if (c == '.') {
+ c = *p;
+ p += 1;
+ }
+ frac1 = 10*frac1 + (c - '0');
+ }
+ frac2 = 0;
+ for (; mantSize > 0; mantSize -= 1)
+ {
+ c = *p;
+ p += 1;
+ if (c == '.') {
+ c = *p;
+ p += 1;
+ }
+ frac2 = 10*frac2 + (c - '0');
+ }
+ fraction = (1.0e9 * frac1) + frac2;
}
/*
@@ -2962,30 +2962,30 @@ mrb_float_read(const char *string, char **endPtr)
p = pExp;
if ((*p == 'E') || (*p == 'e')) {
- p += 1;
- if (*p == '-') {
- expSign = TRUE;
- p += 1;
- }
- else {
- if (*p == '+') {
- p += 1;
- }
- expSign = FALSE;
- }
- while (isdigit(*p)) {
- exp = exp * 10 + (*p - '0');
- if (exp > 19999) {
- exp = 19999;
- }
- p += 1;
- }
+ p += 1;
+ if (*p == '-') {
+ expSign = TRUE;
+ p += 1;
+ }
+ else {
+ if (*p == '+') {
+ p += 1;
+ }
+ expSign = FALSE;
+ }
+ while (isdigit(*p)) {
+ exp = exp * 10 + (*p - '0');
+ if (exp > 19999) {
+ exp = 19999;
+ }
+ p += 1;
+ }
}
if (expSign) {
- exp = fracExp - exp;
+ exp = fracExp - exp;
}
else {
- exp = fracExp + exp;
+ exp = fracExp + exp;
}
/*
@@ -2996,36 +2996,36 @@ mrb_float_read(const char *string, char **endPtr)
*/
if (exp < 0) {
- expSign = TRUE;
- exp = -exp;
+ expSign = TRUE;
+ exp = -exp;
}
else {
- expSign = FALSE;
+ expSign = FALSE;
}
if (exp > maxExponent) {
- exp = maxExponent;
- errno = ERANGE;
+ exp = maxExponent;
+ errno = ERANGE;
}
dblExp = 1.0;
for (d = powersOf10; exp != 0; exp >>= 1, d += 1) {
- if (exp & 01) {
- dblExp *= *d;
- }
+ if (exp & 01) {
+ dblExp *= *d;
+ }
}
if (expSign) {
- fraction /= dblExp;
+ fraction /= dblExp;
}
else {
- fraction *= dblExp;
+ fraction *= dblExp;
}
done:
if (endPtr != NULL) {
- *endPtr = (char *) p;
+ *endPtr = (char *) p;
}
if (sign) {
- return -fraction;
+ return -fraction;
}
return fraction;
}
diff --git a/src/vm.c b/src/vm.c
index f1dc471cc..171776807 100644
--- a/src/vm.c
+++ b/src/vm.c
@@ -1934,13 +1934,13 @@ RETRY_TRY_BLOCK:
}
/* call ensure only when we skip this callinfo */
if (ci[0].ridx == ci[-1].ridx) {
- mrb_value *org_stbase = mrb->c->stbase;
+ mrb_value *org_stbase = mrb->c->stbase;
while (mrb->c->eidx > ci->epos) {
ecall(mrb, --mrb->c->eidx);
ci = mrb->c->ci;
- if (org_stbase != mrb->c->stbase) {
- stk = mrb->c->stack;
- }
+ if (org_stbase != mrb->c->stbase) {
+ stk = mrb->c->stack;
+ }
}
}
}