Skip to content

Commit

Permalink
Add a space after a comma
Browse files Browse the repository at this point in the history
  • Loading branch information
aycabta committed Dec 12, 2021
1 parent d014cc8 commit 6009b3e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/reline/windows.rb
Original file line number Diff line number Diff line change
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 6009b3e

Please sign in to comment.