Files

Readline

Public Class Methods

old_readline(*a) click to toggle source
Alias for: readline
readline(*a) click to toggle source
# File lib/termtter/system_extensions/windows.rb, line 9
def readline(*a)
  str = old_readline(*a)
  out = ''
  loop do
    begin
      out << $iconv_sj_to_u8.iconv(str)
      break
    rescue Iconv::Failure
      out << "#{$!.success}?"
      str = $!.failed[1..-1]
    end
  end
  return out
end
Also aliased as: old_readline

[Validate]

Generated with the Darkfish Rdoc Generator 2.