This method is deprecated or moved on the latest stable version.
The last existing version (v1_9_3_392) is shown here.
setpos(p1, p2)
public
A setter for the position of the cursor in the current window, using
coordinates x and y
static VALUE
window_setpos(VALUE obj, VALUE y, VALUE x)
{
struct windata *winp;
GetWINDOW(obj, winp);
wmove(winp->window, NUM2INT(y), NUM2INT(x));
return Qnil;
}