summaryrefslogtreecommitdiff
path: root/lib/rss/rss.rb
diff options
context:
space:
mode:
authorkou <kou@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2005-11-23 08:44:05 +0000
committerkou <kou@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2005-11-23 08:44:05 +0000
commitf988ceb53b731f7465f8ace09c76cd69e9abef22 (patch)
tree17c03351ecc7943e1baf9c5fa43074b7b5c015af /lib/rss/rss.rb
parent7ff5d02f8b7d5af37032b55e2066245914c9a6cb (diff)
* lib/rss/rss.rb: fixed a indentation bug.
* lib/rss/taxonomy.rb: fixed <taxo:topic> #to_s bug. * test/rss/test_taxonomy.rb: added a #to_s test. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@9595 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'lib/rss/rss.rb')
-rw-r--r--lib/rss/rss.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/rss/rss.rb b/lib/rss/rss.rb
index d2b7604488..7ccf1aefa1 100644
--- a/lib/rss/rss.rb
+++ b/lib/rss/rss.rb
@@ -725,8 +725,8 @@ EOC
private_methods.each do |meth|
if /\A([^_]+)_[^_]+_elements?\z/ =~ meth and
self.class::NSPOOL.has_key?($1)
- res = __send__(meth, need_convert)
- rv << "#{indent}#{res}" if /\A\s*\z/ !~ res
+ res = __send__(meth, need_convert, indent)
+ rv << res if /\A\s*\z/ !~ res
end
end
rv.join("\n")