зеркало из https://github.com/github/ruby.git
[ruby/reline] Remove unnecessary "*"
https://github.com/ruby/reline/commit/7b50638e24
This commit is contained in:
Родитель
7f2123bc08
Коммит
1c49d809f4
|
@ -329,8 +329,8 @@ class Reline::Windows
|
|||
unless csbi = get_console_screen_buffer_info
|
||||
return Reline::CursorPos.new(0, 0)
|
||||
end
|
||||
x = csbi[4, 2].unpack1('s*')
|
||||
y = csbi[6, 2].unpack1('s*')
|
||||
x = csbi[4, 2].unpack1('s')
|
||||
y = csbi[6, 2].unpack1('s')
|
||||
Reline::CursorPos.new(x, y)
|
||||
end
|
||||
|
||||
|
|
Загрузка…
Ссылка в новой задаче