Method: Curses::Window#standend

Defined in:
ext/curses/curses.c

#standendObject

Enables the Normal display (no highlight)

This is equivalent to Curses::Window.attron(A_NORMAL)

see also Curses::Window.attrset



2405
2406
2407
2408
2409
2410
2411
2412
2413
# File 'ext/curses/curses.c', line 2405

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

    GetWINDOW(obj, winp);
    wstandend(winp->window);
    return Qnil;
}