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
This commit is contained in:
dave 2004-11-08 13:25:26 +00:00
Родитель d9bde4fcbe
Коммит 37abc5eaa3
2 изменённых файлов: 8 добавлений и 1 удалений

Просмотреть файл

@ -1,3 +1,9 @@
Mon Nov 8 22:20:19 2004 Dave Thomas <dave@pragprog.com>
* lib/rdoc/parsers/parse_rb.rb (RDoc::RubyParser::parse_class):
Fix bug where parent class wasn't being detected if the
child class was defined using the A::B notation.
Mon Nov 8 00:14:13 2004 WATANABE Hirofumi <eban@ruby-lang.org>
* configure.in: add setup for mignw32 cross compiling.

Просмотреть файл

@ -1826,6 +1826,7 @@ module RDoc
get_tk
name_t = get_tk
end
skip_tkspace(false)
return [container, name_t]
end