Method: Curses.standend

Defined in:
ext/curses/curses.c

.standendObject

Enables the Normal display (no highlight)

This is equivalent to Curses.attron(A_NORMAL)

see also Curses::Window.attrset for additional information.



765
766
767
768
769
770
771
# File 'ext/curses/curses.c', line 765

static VALUE
curses_standend(VALUE obj)
{
    curses_stdscr();
    standend();
    return Qnil;
}