ruby-changes:8723
From: yugui <ko1@a...>
Date: Wed, 19 Nov 2008 01:46:57 +0900 (JST)
Subject: [ruby-changes:8723] Ruby:r20258 (ruby_1_9_1): merges r20222 from trunk into ruby_1_9_1.
yugui 2008-11-19 01:46:16 +0900 (Wed, 19 Nov 2008) New Revision: 20258 http://svn.ruby-lang.org/cgi-bin/viewvc.cgi?view=rev&revision=20258 Log: merges r20222 from trunk into ruby_1_9_1. * lib/uri/generic.rb (URI::Generic#check_path): REL_PATH should a symbol. [ruby-core:19805] Modified files: branches/ruby_1_9_1/ChangeLog branches/ruby_1_9_1/lib/uri/generic.rb Index: ruby_1_9_1/ChangeLog =================================================================== --- ruby_1_9_1/ChangeLog (revision 20257) +++ ruby_1_9_1/ChangeLog (revision 20258) @@ -1,3 +1,14 @@ +Tue Nov 11 21:22:28 2008 Yukihiro Matsumoto <matz@r...> + + * lib/uri/generic.rb (URI::Generic#check_path): REL_PATH should a + symbol. [ruby-core:19805] + +Tue Nov 11 23:02:27 2008 Yuki Sonoda (Yugui) <yugui@y...> + + * man/ruby.1 (RUBYOPT): wrote which option can appear. + (--yydebug): wrote "do not use". + (--dump): wrote "do not use". + Tue Nov 11 20:49:29 2008 Kazuhiro NISHIYAMA <zn@m...> * configure.in: fix SEGV on Mac OS X 10.5.3 with pthread. Index: ruby_1_9_1/lib/uri/generic.rb =================================================================== --- ruby_1_9_1/lib/uri/generic.rb (revision 20257) +++ ruby_1_9_1/lib/uri/generic.rb (revision 20258) @@ -481,7 +481,7 @@ "bad component(expected absolute path component): #{v}" end else - if v && v != '' && @parser.regexp[:ABS_PATH] !~ v && @parser.regexp[REL_PATH] !~ v + if v && v != '' && @parser.regexp[:ABS_PATH] !~ v && @parser.regexp[:REL_PATH] !~ v raise InvalidComponentError, "bad component(expected relative path component): #{v}" end -- ML: ruby-changes@q... Info: http://www.atdot.net/~ko1/quickml/