Skip to content

Commit

Permalink
[ruby/reline] Revert "Add a space after a comma"
Browse files Browse the repository at this point in the history
This reverts commit ruby/reline@6009b3ef7ab7.

To merge a Pull Request...

ruby/reline@83021f4267
  • Loading branch information
aycabta authored and matzbot committed Dec 20, 2021
1 parent 7dd0e91 commit a856489
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/reline/windows.rb
Expand Up @@ -383,7 +383,7 @@ def self.clear_screen
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
Expand Down

0 comments on commit a856489

Please sign in to comment.