aboutsummaryrefslogtreecommitdiffstats
path: root/vendor/github.com/peterh/liner/output_windows.go
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/github.com/peterh/liner/output_windows.go')
-rw-r--r--vendor/github.com/peterh/liner/output_windows.go4
1 files changed, 0 insertions, 4 deletions
diff --git a/vendor/github.com/peterh/liner/output_windows.go b/vendor/github.com/peterh/liner/output_windows.go
index 63c9c5d75..45cd978c9 100644
--- a/vendor/github.com/peterh/liner/output_windows.go
+++ b/vendor/github.com/peterh/liner/output_windows.go
@@ -69,8 +69,4 @@ func (s *State) getColumns() {
var sbi consoleScreenBufferInfo
procGetConsoleScreenBufferInfo.Call(uintptr(s.hOut), uintptr(unsafe.Pointer(&sbi)))
s.columns = int(sbi.dwSize.x)
- if s.columns > 1 {
- // Windows 10 needs a spare column for the cursor
- s.columns--
- }
}