ruby-changes:70298
From: aycabta <ko1@a...>
Date: Sat, 18 Dec 2021 10:18:42 +0900 (JST)
Subject: [ruby-changes:70298] 7f2123bc08 (master): [ruby/reline] Add a space after a comma
https://git.ruby-lang.org/ruby.git/commit/?id=7f2123bc08 From 7f2123bc080ef2d439e231c23e3f083edc0cb552 Mon Sep 17 00:00:00 2001 From: aycabta <aycabta@g...> Date: Sun, 12 Dec 2021 10:17:06 +0900 Subject: [ruby/reline] Add a space after a comma https://github.com/ruby/reline/commit/6009b3ef7a --- lib/reline/windows.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/reline/windows.rb b/lib/reline/windows.rb index e44ba040c22..82fa72fc259 100644 --- a/lib/reline/windows.rb +++ b/lib/reline/windows.rb @@ -383,7 +383,7 @@ class Reline::Windows https://github.com/ruby/ruby/blob/trunk/lib/reline/windows.rb#L383 return unless csbi = get_console_screen_buffer_info buffer_width = csbi[0, 2].unpack1('S') attributes = csbi[8, 2].unpack1('S') - _window_left, window_top, _window_right, window_bottom = *csbi[10,8].unpack('S*') + _window_left, window_top, _window_right, window_bottom = *csbi[10, 8].unpack('S*') fill_length = buffer_width * (window_bottom - window_top + 1) screen_topleft = window_top * 65536 written = 0.chr * 4 -- cgit v1.2.1 -- ML: ruby-changes@q... Info: http://www.atdot.net/~ko1/quickml/