aboutsummaryrefslogtreecommitdiffstats
path: root/parse.y
diff options
context:
space:
mode:
authornormal <normal@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2015-07-20 03:27:50 +0000
committernormal <normal@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2015-07-20 03:27:50 +0000
commit12652453b2fc6498a95a491fc0aa5fc059fe9fff (patch)
tree0500fa20122569763477a0dd6a56df1933809740 /parse.y
parent3114f4a2cabaf0a275289f734b87d971db40bc1b (diff)
downloadruby-12652453b2fc6498a95a491fc0aa5fc059fe9fff.tar.gz
parse.y (ripper_initialize): fixup r51302
Missed eofp bitfield change in ripper_initialize in r51302 :x ("parse.y (struct parser_params): pack to 4 cache lines on x86-64") git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@51303 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'parse.y')
-rw-r--r--parse.y2
1 files changed, 1 insertions, 1 deletions
diff --git a/parse.y b/parse.y
index 7977db111d..9cf30baf1c 100644
--- a/parse.y
+++ b/parse.y
@@ -11167,7 +11167,7 @@ ripper_initialize(int argc, VALUE *argv, VALUE self)
parser->parser_lex_gets = lex_get_str;
}
parser->parser_lex_input = src;
- parser->eofp = Qfalse;
+ parser->eofp = 0;
if (NIL_P(fname)) {
fname = STR_NEW2("(ripper)");
OBJ_FREEZE(fname);