From f914b5a7c212d52aa6b77bb666d132e8f6f397a8 Mon Sep 17 00:00:00 2001 From: nobu Date: Sun, 11 Jan 2009 00:53:03 +0000 Subject: * ext/socket/mkconstants.rb (c_str): get rid of a 1.9 feature for cross compile. [ruby-core:21243] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@21425 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- ext/socket/mkconstants.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'ext/socket/mkconstants.rb') diff --git a/ext/socket/mkconstants.rb b/ext/socket/mkconstants.rb index 5bedbac5ac..518618c45e 100644 --- a/ext/socket/mkconstants.rb +++ b/ext/socket/mkconstants.rb @@ -24,7 +24,7 @@ C_ESC = { C_ESC_PAT = Regexp.union(*C_ESC.keys) def c_str(str) - '"' + str.gsub(C_ESC_PAT, C_ESC) + '"' + '"' + str.gsub(C_ESC_PAT) {|s| C_ESC[s]} + '"' end opt.parse! -- cgit v1.2.3