Method: Curses::Window#idlok
- Defined in:
- curses.c
#idlok(bf) ⇒ Object
1222 1223 1224 1225 1226 1227 1228 1229 1230 |
# File 'curses.c', line 1222
static VALUE
window_idlok(VALUE obj, VALUE bf)
{
struct windata *winp;
GetWINDOW(obj, winp);
idlok(winp->window, RTEST(bf) ? TRUE : FALSE);
return Qnil;
}
|