Method: Curses::Window#refresh

Defined in:
ext/curses/curses.c

#refreshObject

Refreshes the windows and lines.



1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
# File 'ext/curses/curses.c', line 1980

static VALUE
window_refresh(VALUE obj)
{
    struct windata *winp;

    GetWINDOW(obj, winp);
    wrefresh(winp->window);

    return Qnil;
}