summaryrefslogtreecommitdiffstats
path: root/ext/dl
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
commit3695844deadd90e1891b8952c849c18c76524bf9 (patch)
tree1ba3e5934859165c05758b917c3e655a548de025 /ext/dl
parent796cd8d2b393027449373ab35d32e531806c207c (diff)
downloadruby-3695844deadd90e1891b8952c849c18c76524bf9.tar.gz
ruby-3695844deadd90e1891b8952c849c18c76524bf9.tar.xz
ruby-3695844deadd90e1891b8952c849c18c76524bf9.zip
* ext/dl/mkcallback.rb: fix continuation line detection.
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@18941 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'ext/dl')
-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 4dbd0d6ef..89d3a1c10 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