Method: Curses::Window#touch
- Defined in:
- ext/curses/curses.c
#touch ⇒ Object
Treat the window as if it has been modified since the last call of refresh.
2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 |
# File 'ext/curses/curses.c', line 2040
static VALUE
window_touch(VALUE obj)
{
struct windata *winp;
GetWINDOW(obj, winp);
touchwin(winp->window);
return Qnil;
}
|