diff options
author | usa <usa@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2009-06-25 04:10:21 +0000 |
---|---|---|
committer | usa <usa@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2009-06-25 04:10:21 +0000 |
commit | 0ce43d461eed3f963f51b9df905e37895a71ab7c (patch) | |
tree | 2b569b597c0d1fa8707fdf27e13c4b0175111cf9 | |
parent | c28e627757d467d0499972be97ef8f7b75c42a4a (diff) | |
download | ruby-0ce43d461eed3f963f51b9df905e37895a71ab7c.tar.gz ruby-0ce43d461eed3f963f51b9df905e37895a71ab7c.tar.xz ruby-0ce43d461eed3f963f51b9df905e37895a71ab7c.zip |
* instruby.rb: '&' in sed s command's replacement is '\&' in ruby.
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@23850 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r-- | ChangeLog | 6 | ||||
-rwxr-xr-x | tool/instruby.rb | 2 |
2 files changed, 6 insertions, 2 deletions
@@ -1,3 +1,7 @@ +Thu Jun 25 13:04:58 2009 NAKAMURA Usaku <usa@ruby-lang.org> + + * instruby.rb: '&' in sed s command's replacement is '\&' in ruby. + Thu Jun 25 06:50:23 2009 Yukihiro Matsumoto <matz@ruby-lang.org> * io.c (rb_io_each_codepoint): uninitialized local variable enc. @@ -18,7 +22,7 @@ Wed Jun 24 16:08:03 2009 NAKAMURA Usaku <usa@ruby-lang.org> Wed Jun 24 16:07:04 2009 NAKAMURA Usaku <usa@ruby-lang.org> - * win32/mkexports.rb: rbconfig.rb exists on ".". + * win32/mkexports.rb: rbconfig.rb exists at ".". Wed Jun 24 15:02:29 2009 Nobuyoshi Nakada <nobu@ruby-lang.org> diff --git a/tool/instruby.rb b/tool/instruby.rb index 3c277720d..730a9151d 100755 --- a/tool/instruby.rb +++ b/tool/instruby.rb @@ -391,7 +391,7 @@ install?(:local, :comm, :bin, :'bin-comm') do when 's' next if pat == '^' and rep.empty? exp << [addr, (opt.include?('g') ? :gsub! : :sub!), - Regexp.new(pat, opt.include?('i')), rep] + Regexp.new(pat, opt.include?('i')), rep.gsub(/&/){'\&'}] when 'y' exp << [addr, :tr!, Regexp.quote(pat), rep] end |