зеркало из https://github.com/github/ruby.git
* lib/net/protocol.rb (WriteAdapater#puts): must append "\n" to the string, don't prepend. (ruby-bugs:PR#1280)
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@5680 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
Родитель
8bc9475793
Коммит
d589b366bc
|
@ -1,3 +1,8 @@
|
|||
Thu Feb 12 20:45:01 2004 Minero Aoki <aamine@loveruby.net>
|
||||
|
||||
* lib/net/protocol.rb (WriteAdapater#puts): must append "\n" to
|
||||
the string, don't prepend. (ruby-bugs:PR#1280)
|
||||
|
||||
Thu Feb 12 20:31:43 2004 Nobuyoshi Nakada <nobu@ruby-lang.org>
|
||||
|
||||
* lib/mkmf.rb (create_tmpsrc): cpp32 of Borland C++ ignores #error
|
||||
|
|
|
@ -404,7 +404,7 @@ module Net # :nodoc:
|
|||
end
|
||||
|
||||
def puts( str = '' )
|
||||
write str.sub(/\n?/, "\n")
|
||||
write str.sub(/\n?\z/, "\n")
|
||||
end
|
||||
|
||||
def printf( *args )
|
||||
|
|
Загрузка…
Ссылка в новой задаче