1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

use __send! instead of funcall.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@11107 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
tadf 2006-10-09 13:44:26 +00:00
parent d2133ab996
commit 616044e47e

View file

@ -767,14 +767,14 @@ class Date
when :civil
g[1].each do |e|
break if elem[e]
elem[e] = d.funcall(e)
elem[e] = d.__send!(e)
end
elem[:mon] ||= 1
elem[:mday] ||= 1
when :commercial
g[1].each do |e|
break if elem[e]
elem[e] = d.funcall(e)
elem[e] = d.__send!(e)
end
elem[:cweek] ||= 1
elem[:cwday] ||= 1
@ -783,14 +783,14 @@ class Date
when :wnum0
g[1].each do |e|
break if elem[e]
elem[e] = d.funcall(e)
elem[e] = d.__send!(e)
end
elem[:wnum0] ||= 0
elem[:wday] ||= 0
when :wnum1
g[1].each do |e|
break if elem[e]
elem[e] = d.funcall(e)
elem[e] = d.__send!(e)
end
elem[:wnum1] ||= 0
elem[:wday] ||= 0