summaryrefslogtreecommitdiffhomepage
path: root/src/parse.y
diff options
context:
space:
mode:
authorYukihiro "Matz" Matsumoto <[email protected]>2014-08-26 02:25:05 +0900
committerYukihiro "Matz" Matsumoto <[email protected]>2014-08-26 02:25:05 +0900
commit73a012c80806c5891579903d1bc1f51b424ce0bf (patch)
tree06a818f4acc7b4ef2fd0954439421532a080bc39 /src/parse.y
parentecc77829ce76ad18995095bd39ffeae3e3663fac (diff)
parent6961317fb3b4fa30cdb591f568777101720bdb41 (diff)
downloadmruby-73a012c80806c5891579903d1bc1f51b424ce0bf.tar.gz
mruby-73a012c80806c5891579903d1bc1f51b424ce0bf.zip
Merge pull request #2561 from cubicdaiya/issues/space_EOL
Remove spaces in end-of-line.
Diffstat (limited to 'src/parse.y')
-rw-r--r--src/parse.y2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/parse.y b/src/parse.y
index 03333e808..832689bae 100644
--- a/src/parse.y
+++ b/src/parse.y
@@ -253,7 +253,7 @@ local_var_p(parser_state *p, mrb_sym sym)
static void
local_add_f(parser_state *p, mrb_sym sym)
{
- p->locals->car = push(p->locals->car, nsym(sym));
+ p->locals->car = push(p->locals->car, nsym(sym));
}
static void