2006-11-13 Denis Pilat <denis.pilat@st.com>

* terminal.c (_rl_get_screen_size): use wr and wc variable to store
	window size.
This commit is contained in:
Frederic Riss 2006-11-13 09:33:30 +00:00
parent 83fb162ab0
commit 10e14daab1
2 changed files with 7 additions and 2 deletions

View File

@ -1,3 +1,8 @@
2006-11-13 Denis Pilat <denis.pilat@st.com>
* terminal.c (_rl_get_screen_size): use wr and wc variable to store
window size.
2006-10-21 Ulrich Weigand <uweigand@de.ibm.com>
* callback.c: Include "xmalloc.h".

View File

@ -226,8 +226,8 @@ _rl_get_screen_size (tty, ignore_env)
CONSOLE_SCREEN_BUFFER_INFO scr;
if (GetConsoleScreenBufferInfo (hConOut, &scr))
{
_rl_screenwidth = scr.dwSize.X;
_rl_screenheight = scr.srWindow.Bottom - scr.srWindow.Top + 1;
wc = scr.dwSize.X;
wr = scr.srWindow.Bottom - scr.srWindow.Top + 1;
}
}
#endif