summaryrefslogtreecommitdiff
path: root/lib/rdoc
diff options
context:
space:
mode:
authordave <dave@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2004-11-08 13:25:26 +0000
committerdave <dave@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2004-11-08 13:25:26 +0000
commit37abc5eaa3303c83f790c6727f3af2860ebdf2fd (patch)
tree7602a9d2e8541d9ef478ea6f0dca7118b1d297c4 /lib/rdoc
parentd9bde4fcbec4232ec6e90e2b056ca55b839f9fdb (diff)
Fix bug where parent class wasn't being detected if the
child class was defined using the A::B notation. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@7226 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'lib/rdoc')
-rw-r--r--lib/rdoc/parsers/parse_rb.rb3
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/rdoc/parsers/parse_rb.rb b/lib/rdoc/parsers/parse_rb.rb
index 5a98258f7e..b8367b5641 100644
--- a/lib/rdoc/parsers/parse_rb.rb
+++ b/lib/rdoc/parsers/parse_rb.rb
@@ -1747,7 +1747,7 @@ module RDoc
when TkCONSTANT
name = name_t.name
superclass = "Object"
-
+
if peek_tk.kind_of?(TkLT)
get_tk
skip_tkspace(true)
@@ -1826,6 +1826,7 @@ module RDoc
get_tk
name_t = get_tk
end
+ skip_tkspace(false)
return [container, name_t]
end