summaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authordave <dave@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2004-10-26 14:33:17 +0000
committerdave <dave@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2004-10-26 14:33:17 +0000
commitbf874974c7f71c52bb281ec5be38c5c6b0c2d376 (patch)
tree970b108b958cb2dac8a6330cbbe7cfa9d532c036 /lib
parentf2bd0cac3cf2732a0f711b082c3565e36a34ced1 (diff)
downloadruby-bf874974c7f71c52bb281ec5be38c5c6b0c2d376.tar.gz
ruby-bf874974c7f71c52bb281ec5be38c5c6b0c2d376.tar.xz
ruby-bf874974c7f71c52bb281ec5be38c5c6b0c2d376.zip
Restore correct :nodoc: behavior with nested classes
git-svn-id: http://svn.ruby-lang.org/repos/ruby/branches/ruby_1_8@7113 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'lib')
-rw-r--r--lib/rdoc/code_objects.rb3
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/rdoc/code_objects.rb b/lib/rdoc/code_objects.rb
index 55b1cfa65..bd713ab92 100644
--- a/lib/rdoc/code_objects.rb
+++ b/lib/rdoc/code_objects.rb
@@ -233,7 +233,8 @@ module RDoc
else
cls = class_type.new(name, superclass)
puts "Adding class/module #{name} to #@name" if $DEBUG
- collection[name] = cls if @document_self && !@done_documenting
+# collection[name] = cls if @document_self && !@done_documenting
+ collection[name] = cls if !@done_documenting
cls.parent = self
end
cls