Method: Curses.attroff

Defined in:
ext/curses/curses.c

.attroff(attrs) ⇒ Object

Turns off the named attributes attrs without affecting any others.

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



1081
1082
1083
1084
1085
1086
1087
# File 'ext/curses/curses.c', line 1081

static VALUE
curses_attroff(VALUE obj, VALUE attrs)
{
    curses_stdscr();
    return window_attroff(rb_stdscr,attrs);
    /* return INT2FIX(attroff(NUM2INT(attrs))); */
}