diff options
author | matz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 1999-09-01 09:48:03 +0000 |
---|---|---|
committer | matz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 1999-09-01 09:48:03 +0000 |
commit | 1f72ff9b643dff5f4c5a40bf672a2525d66bd99f (patch) | |
tree | f83116ebca291337b9948831c617217c18f6a317 /lib/jcode.rb | |
parent | aeb066503409062fc8fe8b241e512f5f6aebb128 (diff) | |
download | ruby-1f72ff9b643dff5f4c5a40bf672a2525d66bd99f.tar.gz ruby-1f72ff9b643dff5f4c5a40bf672a2525d66bd99f.tar.xz ruby-1f72ff9b643dff5f4c5a40bf672a2525d66bd99f.zip |
regexp literal (e.g. \202) match, etc.
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@526 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'lib/jcode.rb')
-rw-r--r-- | lib/jcode.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/jcode.rb b/lib/jcode.rb index 92b928447..6e5bc9e99 100644 --- a/lib/jcode.rb +++ b/lib/jcode.rb @@ -104,7 +104,7 @@ class String self.gsub!(pattern, last) else h = HashCache[from + "::" + to] ||= expand_ch_hash(from, to) - self.gsub!(pattern) do |c| h[c] end + self.gsub!(pattern) do |c| p [c,h[c]]; h[c] end end end |