Method: Curses::Window#scroll
- Defined in:
- curses.c
#scroll ⇒ Object
1261 1262 1263 1264 1265 1266 1267 1268 1269 |
# File 'curses.c', line 1261
static VALUE
window_scroll(VALUE obj)
{
struct windata *winp;
GetWINDOW(obj, winp);
/* may have to raise exception on ERR */
return (scroll(winp->window) == OK) ? Qtrue : Qfalse;
}
|