summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authordave <dave@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2003-12-31 02:28:11 +0000
committerdave <dave@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2003-12-31 02:28:11 +0000
commit6ca63fe204152bf1c06a71cf76d7b0c3d5a2eeaa (patch)
tree6044e09b2bf6510365bdf3dfa4f74d504dfdde10 /lib
parent394f0d42b1076e7fb1422d26d185b8cb536f45da (diff)
Fix problem with "// in sss.c" filenames not being relative
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_8@5357 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'lib')
-rw-r--r--lib/rdoc/parsers/parse_c.rb4
1 files changed, 3 insertions, 1 deletions
diff --git a/lib/rdoc/parsers/parse_c.rb b/lib/rdoc/parsers/parse_c.rb
index 0ecd1ce39b..4aca5eeb67 100644
--- a/lib/rdoc/parsers/parse_c.rb
+++ b/lib/rdoc/parsers/parse_c.rb
@@ -133,6 +133,7 @@ module RDoc
@options = options
@top_level = top_level
@classes = Hash.new
+ @file_dir = File.dirname(file_name)
end
# Extract the classes/modules and methods from a C file
@@ -326,7 +327,8 @@ module RDoc
end
if source_file
- body = (@@known_bodies[source_file] ||= File.read(source_file))
+ file_name = File.join(@file_dir, source_file)
+ body = (@@known_bodies[source_file] ||= File.read(file_name))
else
body = @body
end