* lib/shellwords.rb (shellwords): A backslash ('\') in single

quotes should not be regarded as meta character.  This bug or
  maybe feature was inherited from Perl's shellwords.pl.


git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@3357 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
knu 2003-01-19 14:13:01 +00:00
Родитель 02e3fb8cf6
Коммит 4ae8470a48
2 изменённых файлов: 7 добавлений и 2 удалений

Просмотреть файл

@ -1,3 +1,9 @@
Sun Jan 19 23:08:18 2003 Akinori MUSHA <knu@iDaemons.org>
* lib/shellwords.rb (shellwords): A backslash ('\') in single
quotes should not be regarded as meta character. This bug or
maybe feature was inherited from Perl's shellwords.pl.
Sat Jan 18 14:53:49 2003 Nobuyoshi Nakada <nobu.nokada@softhome.net>
* bignum.c (rb_cstr_to_inum): should not erase all 0s, but

Просмотреть файл

@ -26,9 +26,8 @@ module Shellwords
snippet.gsub!(/\\(.)/, '\1')
elsif line =~ /\A"/ then #"
raise ArgumentError, "Unmatched double quote: #{line}"
elsif line.sub!(/\A'(([^'\\]|\\.)*)'/, '') then #'
elsif line.sub!(/\A'([^']*)'/, '') then #'
snippet = $1
snippet.gsub!(/\\(.)/, '\1')
elsif line =~ /\A'/ then #'
raise ArgumentError, "Unmatched single quote: #{line}"
elsif line.sub!(/\A\\(.)/, '') then