Author: jonathan
Date: Mon Apr 16 14:10:23 2007
New Revision: 18239
Modified:
trunk/src/pmc/object.pmc
Log:
[PDD15]: Fix can vtable method on Object PMC. Patch courtesy of Alek Storm.
Modified: trunk/src/pmc/object.pmc
==============================================================================
--- trunk/src/pmc/object.pmc (original)
+++ trunk/src/pmc/object.pmc Mon Apr 16 14:10:23 2007
@@ -184,7 +184,7 @@
{
/* Just use find_method and see it if finds anything. */
PMC *method = VTABLE_find_method(interp, SELF, method_name);
- return PMC_IS_NULL(method);
+ return !PMC_IS_NULL(method);
}
}