From 280f93ec96dcb0dabf14b2c630e85d100578e4fe Mon Sep 17 00:00:00 2001 From: matz Date: Tue, 19 Sep 2000 07:54:28 +0000 Subject: 000919 git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@946 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- parse.y | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'parse.y') diff --git a/parse.y b/parse.y index 39ac6f6f6..cf0687609 100644 --- a/parse.y +++ b/parse.y @@ -3398,8 +3398,6 @@ yylex() newtok(); c = nextc(); switch (c) { - case '~': /* $~: match-data */ - /* fall through */ case '_': /* $_: last read line string */ c = nextc(); if (is_identchar(c)) { @@ -3409,7 +3407,9 @@ yylex() } pushback(c); c = '_'; - local_cnt('_'); + /* fall through */ + case '~': /* $~: match-data */ + local_cnt(c); /* fall through */ case '*': /* $*: argv */ case '$': /* $$: pid */ -- cgit