win: Use full console width for status messages.
authorNico Weber <thakis@chromium.org>
Tue, 2 Dec 2014 06:21:54 +0000 (22:21 -0800)
committerNico Weber <thakis@chromium.org>
Tue, 2 Dec 2014 06:21:54 +0000 (22:21 -0800)
commitf2a905b9350fa07e7ec91ab3d43a362938637205
tree454548f50011d4b28765c630a58c09abd63f4ad3
parent2786f6f8de711251646daca957dbd02d2a95833e
win: Use full console width for status messages.

The original overprinting code, added in 7b3d8c8e, used printf for printing
the status.  printf needs one column for the cursor, so the status message
could only take up `width - 1` columns.  fc554c22 changed Windows from printf
to WriteConsoleOutput which doesn't move the cursor, so keeping one column
empty is no longer needed. So stop doing that.

Also remove a duplicate call to GetConsoleScreenBufferInfo.
src/line_printer.cc