diff options
| author | matz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2000-09-19 07:54:28 +0000 |
|---|---|---|
| committer | matz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2000-09-19 07:54:28 +0000 |
| commit | 280f93ec96dcb0dabf14b2c630e85d100578e4fe (patch) | |
| tree | 0e2fa33a858e6237dd6e9b81d83c8a9b2b9c632a /parse.y | |
| parent | 2a44154755988b960cf636d620bed7ec39a99a62 (diff) | |
| download | ruby-280f93ec96dcb0dabf14b2c630e85d100578e4fe.tar.gz ruby-280f93ec96dcb0dabf14b2c630e85d100578e4fe.tar.xz ruby-280f93ec96dcb0dabf14b2c630e85d100578e4fe.zip | |
000919
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@946 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'parse.y')
| -rw-r--r-- | parse.y | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -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 */ |
