mirror of
https://github.com/bminor/binutils-gdb.git
synced 2025-11-16 12:34:43 +00:00
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:
@@ -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".
|
||||
|
||||
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user