Method: Curses::Window#untouch
- Defined in:
- ext/curses/curses.c
#untouch ⇒ Object
Treat the window as if it has not been modified since the last call of refresh.
2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 |
# File 'ext/curses/curses.c', line 2061
static VALUE
window_untouch(VALUE obj)
{
struct windata *winp;
GetWINDOW(obj, winp);
untouchwin(winp->window);
return Qnil;
}
|