[svn:parrot] r42239 - trunk/src

allison at svn.parrot.org allison at svn.parrot.org
Tue Nov 3 19:01:52 UTC 2009


Author: allison
Date: Tue Nov  3 19:01:52 2009
New Revision: 42239
URL: https://trac.parrot.org/parrot/changeset/42239

Log:
[cage] Refer to actual ticket for deprecated calling API functions.

Modified:
   trunk/src/extend.c

Modified: trunk/src/extend.c
==============================================================================
--- trunk/src/extend.c	Tue Nov  3 17:22:22 2009	(r42238)
+++ trunk/src/extend.c	Tue Nov  3 19:01:52 2009	(r42239)
@@ -1182,7 +1182,7 @@
 
     /* Add the return argument onto the call signature object (a bit
      * hackish, added for backward compatibility in deprecated API function,
-     * see TT #XXX). */
+     * see TT #1145). */
     switch (return_sig) {
         case 'v':
         {
@@ -1243,7 +1243,7 @@
 
     /* Add the return argument onto the call signature object (a bit
      * hackish, added for backward compatibility in deprecated API function,
-     * see TT #XXX). */
+     * see TT #1145). */
     append_result(interp, sig_object, Parrot_str_new_constant(interp, "I"), &result);
     Parrot_pcc_invoke_from_sig_object(interp, sub_pmc, sig_object);
 
@@ -1281,7 +1281,7 @@
 
     /* Add the return argument onto the call signature object (a bit
      * hackish, added for backward compatibility in deprecated API function,
-     * see TT #XXX). */
+     * see TT #1145). */
     append_result(interp, sig_object, Parrot_str_new_constant(interp, "N"), &result);
     PMC_get_sub(interp, sub_pmc, sub);
     Parrot_pcc_set_constants(interp, CURRENT_CONTEXT(interp), sub->seg->const_table->constants);
@@ -1330,7 +1330,7 @@
 
     /* Add the return argument onto the call signature object (a bit
      * hackish, added for backward compatibility in deprecated API function,
-     * see TT #XXX). */
+     * see TT #1145). */
     switch (return_sig) {
         case 'v':
         {


More information about the parrot-commits mailing list