/*
* call-seq:
* phrase_query.slop -> integer
*
* Return the slop set for this phrase query. See the PhraseQuery
* description for more information on slop
*/
static VALUE
frt_phq_get_slop(VALUE self)
{
GET_Q();
return INT2FIX(((PhraseQuery *)q)->slop);
}