mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
* parse.y (yylex): commands after break/next/rescue can take
arguments. (ruby-bugs-ja:PR#265) git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@2582 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
eecf7fdcde
commit
de9251e2c7
2 changed files with 6 additions and 0 deletions
|
@ -1,3 +1,8 @@
|
|||
Wed Jun 19 00:39:52 2002 Nobuyoshi Nakada <nobu.nokada@softhome.net>
|
||||
|
||||
* parse.y (yylex): commands after break/next/rescue can take
|
||||
arguments. (ruby-bugs-ja:PR#265)
|
||||
|
||||
Tue Jun 18 19:20:16 2002 NAKAMURA Usaku <usa@ruby-lang.org>
|
||||
|
||||
* win32/mkexports.rb: remove unnecessary exports. (ruby-dev:17418)
|
||||
|
|
1
parse.y
1
parse.y
|
@ -4050,6 +4050,7 @@ yylex()
|
|||
}
|
||||
|
||||
if (lex_state == EXPR_BEG ||
|
||||
lex_state == EXPR_MID ||
|
||||
lex_state == EXPR_DOT ||
|
||||
lex_state == EXPR_ARG ||
|
||||
lex_state == EXPR_CMDARG) {
|
||||
|
|
Loading…
Add table
Reference in a new issue