diff --git a/ChangeLog b/ChangeLog index cec27ae47d..05e2f26456 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +Thu Dec 4 16:41:17 2003 Nobuyoshi Nakada + + * parse.y (exc_list): allow expanding list. [ruby-dev:22134] + Thu Dec 4 14:09:24 2003 Minero Aoki * test/fileutils/test_fileutils.rb (test_cp): test if the error is @@ -16,7 +20,7 @@ Thu Dec 4 13:17:45 2003 NAKAMURA, Hiroshi Thu Dec 4 13:04:44 2003 NAKAMURA, Hiroshi * 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. diff --git a/parse.y b/parse.y index a2c21aa25d..a8f70b92ed 100644 --- a/parse.y +++ b/parse.y @@ -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 ;