git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@932 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
wakou 2000-09-11 22:37:27 +00:00
Родитель e2adc86984
Коммит 9d823983dc
1 изменённых файлов: 11 добавлений и 8 удалений

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

@ -510,12 +510,7 @@ module Net
end
end
def print(string)
if $VERBOSE
$stderr.puts 'WARNING: Telnet#print("string") NOT adds "\n" to the last of "string", in the future.'
$stderr.puts ' cf. Telnet#puts().'
end
string = string + "\n"
def _print(string)
string = string.gsub(/#{IAC}/no, IAC + IAC) if @options["Telnetmode"]
if @options["Binmode"]
@ -535,7 +530,15 @@ module Net
end
def puts(string)
self.print(string)
self._print(string + "\n")
end
def print(string)
if $VERBOSE
$stderr.puts 'WARNING: Telnet#print("string") NOT adds "\n" to the last of "string", in the future.'
$stderr.puts ' cf. Telnet#puts().'
end
self.puts(string)
end
def cmd(options)
@ -550,7 +553,7 @@ module Net
string = options
end
self.print(string)
self.puts(string)
if iterator?
waitfor({"Prompt" => match, "Timeout" => time_out}){|c| yield c }
else