diff options
| author | akr <akr@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2008-08-30 05:48:09 +0000 |
|---|---|---|
| committer | akr <akr@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2008-08-30 05:48:09 +0000 |
| commit | 3695844deadd90e1891b8952c849c18c76524bf9 (patch) | |
| tree | 1ba3e5934859165c05758b917c3e655a548de025 /ext/dl | |
| parent | 796cd8d2b393027449373ab35d32e531806c207c (diff) | |
| download | ruby-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.rb | 2 |
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 |
