CVSROOT: /cvs Module name: src Changes by: mill...@cvs.openbsd.org 2021/03/10 13:16:09
Modified files: lib/libcurses : curs_getch.3 curses.priv.h resizeterm.3 lib/libcurses/base: lib_set_term.c resizeterm.c lib/libcurses/tinfo: lib_setup.c Log message: Don't return ERR if resize didn't change size This is a backport of the ncurses 5.9 20120707 patch. Previously, getch() would return ERR if SIGWINCH was received but the window didn't actually change size. This can happen, for example, when the xterm font is changed. OK tb@