[svn:parrot] r46535 - trunk/src/ops

NotFound at svn.parrot.org NotFound at svn.parrot.org
Wed May 12 15:12:38 UTC 2010


Author: NotFound
Date: Wed May 12 15:12:37 2010
New Revision: 46535
URL: https://trac.parrot.org/parrot/changeset/46535

Log:
fix no ICU branch of find_codepoint, ttbot++

Modified:
   trunk/src/ops/experimental.ops

Modified: trunk/src/ops/experimental.ops
==============================================================================
--- trunk/src/ops/experimental.ops	Wed May 12 15:03:13 2010	(r46534)
+++ trunk/src/ops/experimental.ops	Wed May 12 15:12:37 2010	(r46535)
@@ -361,7 +361,8 @@
     Parrot_str_free_cstring(cstr);
     $1 = U_SUCCESS(err) ? (INTVAL) codepoint : -1;
 #else
-    Parrot_ex_throw_from_op_args(INTERP, NULL, EXCEPTION_LIBRARY_ERROR,
+    opcode_t * const dest = expr NEXT();
+    Parrot_ex_throw_from_op_args(interp, dest, EXCEPTION_LIBRARY_ERROR,
         "no ICU lib loaded");
 #endif
 }


More information about the parrot-commits mailing list