[Jifty-commit] r5586 - Runops-Trace/trunk/lib/Runops

Jifty commits jifty-commit at lists.jifty.org
Sat Jul 26 13:41:43 EDT 2008


Author: nothingmuch
Date: Sat Jul 26 13:41:43 2008
New Revision: 5586

Modified:
   Runops-Trace/trunk/lib/Runops/Trace.pm

Log:
make perl space's mask_op more useful

Modified: Runops-Trace/trunk/lib/Runops/Trace.pm
==============================================================================
--- Runops-Trace/trunk/lib/Runops/Trace.pm	(original)
+++ Runops-Trace/trunk/lib/Runops/Trace.pm	Sat Jul 26 13:41:43 2008
@@ -55,11 +55,11 @@
 }
 
 sub unmask_op {
-    unmask_op_type( _whatever_to_op_type(shift) );
+    unmask_op_type( _whatever_to_op_type($_) ) for @_;
 }
 
 sub mask_op {
-    mask_op_type( _whatever_to_op_type(shift) );
+    mask_op_type( _whatever_to_op_type($_) ) for @_;
 }
 
 sub _whatever_to_op_type {


More information about the Jifty-commit mailing list