From 94faf2cb81ca64615817255df4a022cb659d6875 Mon Sep 17 00:00:00 2001 From: drbrain Date: Sun, 9 Mar 2008 00:59:23 +0000 Subject: * lib/rdoc/code_objects.rb: Remove debugging Kernel#p. Patch by Lincoln Stoll * lib/rdoc/generator/html.rb: Fully qualify AllReferences. Patch by Lincoln Stoll * lib/rdoc/ri/writer.rb: Fix 1.8 backwards compatibility. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@15733 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- lib/rdoc/generator/html.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lib/rdoc/generator') diff --git a/lib/rdoc/generator/html.rb b/lib/rdoc/generator/html.rb index 95617725e..f035857af 100644 --- a/lib/rdoc/generator/html.rb +++ b/lib/rdoc/generator/html.rb @@ -247,7 +247,7 @@ class RDoc::Generator::HTML @main_page = @options.main_page @main_page_ref = nil if @main_page - @main_page_ref = AllReferences[@main_page] + @main_page_ref = RDoc::Generator::AllReferences[@main_page] if @main_page_ref then @main_page_path = @main_page_ref.path else -- cgit