summaryrefslogtreecommitdiff
path: root/lib/rdoc
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
commit8a0d7d99aecac37ea0235c0714c22e17de858903 (patch)
tree970b108b958cb2dac8a6330cbbe7cfa9d532c036 /lib/rdoc
parentdfd322b36cd023ab603efd0652aa84c3fc98a43e (diff)
Restore correct :nodoc: behavior with nested classes
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_8@7113 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'lib/rdoc')
-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 55b1cfa656..bd713ab92b 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