mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
* instruby.rb: '&' in sed s command's replacement is '\&' in ruby.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@23850 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
42c6cc841c
commit
7a45306dc6
2 changed files with 6 additions and 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>
|
Thu Jun 25 06:50:23 2009 Yukihiro Matsumoto <matz@ruby-lang.org>
|
||||||
|
|
||||||
* io.c (rb_io_each_codepoint): uninitialized local variable enc.
|
* 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>
|
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>
|
Wed Jun 24 15:02:29 2009 Nobuyoshi Nakada <nobu@ruby-lang.org>
|
||||||
|
|
||||||
|
|
|
@ -391,7 +391,7 @@ install?(:local, :comm, :bin, :'bin-comm') do
|
||||||
when 's'
|
when 's'
|
||||||
next if pat == '^' and rep.empty?
|
next if pat == '^' and rep.empty?
|
||||||
exp << [addr, (opt.include?('g') ? :gsub! : :sub!),
|
exp << [addr, (opt.include?('g') ? :gsub! : :sub!),
|
||||||
Regexp.new(pat, opt.include?('i')), rep]
|
Regexp.new(pat, opt.include?('i')), rep.gsub(/&/){'\&'}]
|
||||||
when 'y'
|
when 'y'
|
||||||
exp << [addr, :tr!, Regexp.quote(pat), rep]
|
exp << [addr, :tr!, Regexp.quote(pat), rep]
|
||||||
end
|
end
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue