mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
* lib/shellwords.rb: don't destroy argument.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@1491 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
7dc25230be
commit
bfd441db8f
2 changed files with 5 additions and 1 deletions
|
@ -1,3 +1,7 @@
|
|||
Mon Jun 4 04:14:53 2001 Wakou Aoyama <wakou@fsinet.or.jp>
|
||||
|
||||
* lib/shellwords.rb: don't destroy argument.
|
||||
|
||||
Sat Jun 2 23:05:20 2001 Shugo Maeda <shugo@ruby-lang.org>
|
||||
|
||||
* lib/cgi/session.rb: don't use module_function for Class.
|
||||
|
|
|
@ -16,7 +16,7 @@ module Shellwords
|
|||
unless line.kind_of?(String)
|
||||
raise ArgumentError, "Argument must be String class object."
|
||||
end
|
||||
line.sub!(/\A\s+/, '')
|
||||
line = line.sub(/\A\s+/, '')
|
||||
words = []
|
||||
while line != ''
|
||||
field = ''
|
||||
|
|
Loading…
Reference in a new issue