[Jifty-commit] r5380 - Runops-Hook/trunk

Jifty commits jifty-commit at lists.jifty.org
Wed May 7 08:51:18 EDT 2008


Author: nothingmuch
Date: Wed May  7 08:51:17 2008
New Revision: 5380

Modified:
   Runops-Hook/trunk/Hook.xs

Log:
aha! found OP_AASSIGN

Modified: Runops-Hook/trunk/Hook.xs
==============================================================================
--- Runops-Hook/trunk/Hook.xs	(original)
+++ Runops-Hook/trunk/Hook.xs	Wed May  7 08:51:17 2008
@@ -120,7 +120,7 @@
 		default:
 			switch (PL_opargs[o->op_type] & OA_CLASS_MASK) {
 				case OA_BINOP:
-					if ( !strcmp(PL_op_name[o->op_type], "aassign") ) {
+					if ( o->op_type == OP_AASSIGN ) {
 						return ARITY_UNKNOWN;
 					} else {
 						return ARITY_BINARY;


More information about the Jifty-commit mailing list