lib/uri/mailto.rb (initialize): as previous commit, fix arg_check

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@46490 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
naruse 2014-06-22 00:22:15 +00:00
Родитель c56dab2ceb
Коммит 97d36e5bd0
2 изменённых файлов: 5 добавлений и 1 удалений

Просмотреть файл

@ -1,3 +1,7 @@
Sun Jun 22 09:04:50 2014 NARUSE, Yui <naruse@ruby-lang.org>
* lib/uri/mailto.rb (initialize): as previous commit, fix arg_check
Sun Jun 22 09:01:47 2014 NARUSE, Yui <naruse@ruby-lang.org>
* lib/uri/ftp.rb (initialize): argument checking flag is arg_check,

Просмотреть файл

@ -138,7 +138,7 @@ module URI
@headers = []
if MAILTO_REGEXP =~ @opaque
if arg[-1]
if arg[10] # arg_check
self.to = $1
self.headers = $2
else