summaryrefslogtreecommitdiff
path: root/ext
diff options
context:
space:
mode:
authorakr <akr@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2008-08-30 05:48:09 +0000
committerakr <akr@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2008-08-30 05:48:09 +0000
commit86e45042cb8799ae79c52f10abc660c799adf113 (patch)
tree1ba3e5934859165c05758b917c3e655a548de025 /ext
parent375dbe3c7364a0c8cd1ed6d51c5f2cabe8fa001e (diff)
* ext/dl/mkcallback.rb: fix continuation line detection.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@18941 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'ext')
-rw-r--r--ext/dl/mkcallback.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/dl/mkcallback.rb b/ext/dl/mkcallback.rb
index 4dbd0d6ef6..89d3a1c10b 100644
--- a/ext/dl/mkcallback.rb
+++ b/ext/dl/mkcallback.rb
@@ -6,7 +6,7 @@ File.open($dl_h){|f|
pre = ""
f.each{|line|
line.chop!
- if( line[-1] == ?\ )
+ if( line[-1] == ?\\ )
line.chop!
line.concat(" ")
pre += line