From: John Lam Date: 2005-09-24T22:27:45+09:00 Subject: Re: Implementing method_missing in C and blocks ------=_Part_4300_9997234.1127568462063 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable Content-Disposition: inline Thanks Nobu! That's exactly what I needed. -John static VALUE method_missing(int argc, VALUE *argv, VALUE self) { VALUE block =3D rb_block_given_p() ? rb_block_proc() : Qnil; ... } -- Nobu Nakada ------=_Part_4300_9997234.1127568462063--