This method is deprecated or moved on the latest stable version.
The last existing version (v1_9_3_392) is shown here.
pair_content(p1)
public
Returns a 2 item Array, with the foreground and
background color, in pair
static VALUE
curses_pair_content(VALUE obj, VALUE pair)
{
short f,b;
curses_stdscr();
pair_content(NUM2INT(pair),&f,&b);
return rb_ary_new3(2,INT2FIX(f),INT2FIX(b));
}