diff options
| author | matz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2006-07-20 19:20:31 +0000 |
|---|---|---|
| committer | matz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2006-07-20 19:20:31 +0000 |
| commit | 98c5fe2038ab1121b096d1ec2a69d3cbb4a51d4b (patch) | |
| tree | 483ce6ec92eff562b527b549fd7372927f41e55d /test/rss | |
| parent | d596fadb735af6d4956d003a87be46d5c934d1c9 (diff) | |
| download | ruby-98c5fe2038ab1121b096d1ec2a69d3cbb4a51d4b.tar.gz ruby-98c5fe2038ab1121b096d1ec2a69d3cbb4a51d4b.tar.xz ruby-98c5fe2038ab1121b096d1ec2a69d3cbb4a51d4b.zip | |
* eval.c (rb_call): try local method look-up first for fcall, then
normal method look-up. [ruby-talk:202564]
* eval.c (rb_get_method_body): save local method cache separately.
* eval.c (search_method): export info whether method is local or
not.
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@10578 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'test/rss')
| -rw-r--r-- | test/rss/test_xml-stylesheet.rb | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/test/rss/test_xml-stylesheet.rb b/test/rss/test_xml-stylesheet.rb index 791fded60..c88a858f5 100644 --- a/test/rss/test_xml-stylesheet.rb +++ b/test/rss/test_xml-stylesheet.rb @@ -74,12 +74,10 @@ module RSS :media => "printer", :charset => "UTF-8", :alternate => "yes"},], ].each do |xsss| - p xsss doc = REXML::Document.new(make_sample_RDF) root = doc.root xsss.each do |xss| content = xss.collect do |key, name| - p [key, name] %Q[#{key}="#{name}"] end.join(" ") pi = REXML::Instruction.new("xml-stylesheet", content) |
