Skip to content

Commit

Permalink
* parse.y (exc_list): allow expanding list. [ruby-dev:22134]
Browse files Browse the repository at this point in the history
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@5109 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
  • Loading branch information
nobu committed Dec 4, 2003
1 parent 8c95664 commit 05f6ee2
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 2 deletions.
6 changes: 5 additions & 1 deletion ChangeLog
@@ -1,3 +1,7 @@
Thu Dec 4 16:41:17 2003 Nobuyoshi Nakada <nobu@ruby-lang.org>

* parse.y (exc_list): allow expanding list. [ruby-dev:22134]

Thu Dec 4 14:09:24 2003 Minero Aoki <aamine@loveruby.net>

* test/fileutils/test_fileutils.rb (test_cp): test if the error is
Expand All @@ -16,7 +20,7 @@ Thu Dec 4 13:17:45 2003 NAKAMURA, Hiroshi <nahi@ruby-lang.org>
Thu Dec 4 13:04:44 2003 NAKAMURA, Hiroshi <nahi@ruby-lang.org>

* lib/soap/soap.rb: add SOAP::Env module for environment repository
such as HTTP_PROXY.
such as HTTP_PROXY.

* lib/soap/property.rb: property implementation.

Expand Down
6 changes: 5 additions & 1 deletion parse.y
Expand Up @@ -1859,7 +1859,11 @@ opt_rescue : kRESCUE exc_list exc_var then
| none
;

exc_list : args
exc_list : arg_value
{
$$ = NEW_LIST($1);
}
| mrhs
| none
;

Expand Down

0 comments on commit 05f6ee2

Please sign in to comment.