Project

General

Profile

Bug #6066 » digest.return.patch

ext/digest patch - drbrain (Eric Hodel), 02/23/2012 09:39 AM

View differences:

ext/digest/digest.c (working copy)
rb_digest_instance_update(VALUE self, VALUE str)
{
rb_digest_instance_method_unimpl(self, "update");
return Qnil; /* not reached */
}
/*
......
rb_digest_instance_finish(VALUE self)
{
rb_digest_instance_method_unimpl(self, "finish");
return Qnil; /* not reached */
}
/*
......
rb_digest_instance_reset(VALUE self)
{
rb_digest_instance_method_unimpl(self, "reset");
return Qnil; /* not reached */
}
/*
......
rb_digest_instance_block_length(VALUE self)
{
rb_digest_instance_method_unimpl(self, "block_length");
return Qnil; /* not reached */
}
/*
(8-8/11)