<div dir="ltr">Sorry that it took so long to reply. As mentioned in an earlier mail my first bisect session wasn't accurate. I've done a new one: <div><br></div><div><div>git bisect bad</div><div>d0c219f1978dbaa00a063ac82aa75c8af152cbbb is the first bad commit</div>
<div>commit d0c219f1978dbaa00a063ac82aa75c8af152cbbb</div><div>Author: Erik de Castro Lopo <<a href="mailto:erikd@mega-nerd.com">erikd@mega-nerd.com</a>></div><div>Date: Sun Apr 21 16:16:44 2013 +1000</div><div><br>
</div><div> A set of windows utf8 patches fromJanne Hyvärinen <<a href="mailto:cse@sci.fi">cse@sci.fi</a>>.</div><div><br></div><div>:040000 040000 a95dce6a0693a0a234673783b0223d71f2b25b02 21c7a6e2ba38b7dba2c700b999240b82f93a3b65 M src</div>
</div><div><br></div><div><div><br></div><div style>The relevant part seems to be this one:</div><div><br></div><div>+int get_console_width()</div><div>+{</div><div>+ int width = 80;</div><div>+#ifdef _WIN32</div><div>
+ width = win_get_console_width();</div><div>+#else</div><div>+ struct winsize w;</div><div>+ if (ioctl(STDOUT_FILENO, TIOCGWINSZ, &w) != -1) width = w.ws_col;</div><div>+#endif</div><div>+ return width;</div>
<div>+}</div></div><div class="gmail_extra"><br><br></div></div>