/*
* call-seq:
* iw.max_buffered_docs -> number
*
* Return the current value of max_buffered_docs
*/
static VALUE
frt_iw_get_max_buffered_docs(VALUE self)
{
IndexWriter *iw = (IndexWriter *)DATA_PTR(self);
return INT2FIX(iw->config.max_buffered_docs);
}