]> git.proxmox.com Git - mirror_ubuntu-artful-kernel.git/commit - scripts/kconfig/nconf.c
nconf: use function calls instead of ncurses' variables LINES and COLS
authorDirk Gouders <dirk@gouders.net>
Mon, 13 May 2013 09:23:58 +0000 (11:23 +0200)
committerYann E. MORIN <yann.morin.1998@free.fr>
Tue, 18 Jun 2013 21:58:58 +0000 (23:58 +0200)
commite0b42605e685a0833303e1d4dde277c99d9e17b5
treeb6f1c8101c404a11d2dccfabfd2141b3e3e6799f
parent4f2de3e19983dafca264b672152b36e4962ca1c3
nconf: use function calls instead of ncurses' variables LINES and COLS

According to the documentation [1], LINES and COLS are initialized by
initscr(); it does not say anything about the behavior when windows are
resized.

Do not rely on the current implementation of ncurses that updates
these variables on resize, but use the propper function calls or macros
to get window dimensions.

The use of the variables in main() was OK, but for the sake of
consistency it was modified to use the macro getmaxyx().

[1] ncurses(3X)

Signed-off-by: Dirk Gouders <dirk@gouders.net>
Reviewed-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
[yann.morin.1998@free.fr: declare 'lines' and 'columns' on a single line]
Signed-off-by: Yann E. MORIN <yann.morin.1998@free.fr>
scripts/kconfig/nconf.c
scripts/kconfig/nconf.gui.c