[svn:parrot] r46827 - in branches/ucs4_encoding: include/parrot src/ops

darbelo at svn.parrot.org darbelo at svn.parrot.org
Thu May 20 20:49:34 UTC 2010


Author: darbelo
Date: Thu May 20 20:49:34 2010
New Revision: 46827
URL: https://trac.parrot.org/parrot/changeset/46827

Log:
Undo r46821, those pointers aren't telling us anything new.

Modified:
   branches/ucs4_encoding/include/parrot/string.h
   branches/ucs4_encoding/src/ops/string.ops

Modified: branches/ucs4_encoding/include/parrot/string.h
==============================================================================
--- branches/ucs4_encoding/include/parrot/string.h	Thu May 20 20:26:49 2010	(r46826)
+++ branches/ucs4_encoding/include/parrot/string.h	Thu May 20 20:49:34 2010	(r46827)
@@ -51,8 +51,6 @@
 #define STRINGINFO_FLAGS    4
 #define STRINGINFO_BUFUSED  5
 #define STRINGINFO_STRLEN   6
-#define STRINGINFO_ENCODING 7
-#define STRINGINFO_CHARSET  8
 
 /* &end_gen */
 

Modified: branches/ucs4_encoding/src/ops/string.ops
==============================================================================
--- branches/ucs4_encoding/src/ops/string.ops	Thu May 20 20:26:49 2010	(r46826)
+++ branches/ucs4_encoding/src/ops/string.ops	Thu May 20 20:49:34 2010	(r46827)
@@ -379,12 +379,6 @@
           case STRINGINFO_STRLEN:
             $1 = $2->strlen;
             break;
-          case STRINGINFO_CHARSET:
-            $1 = $2->charset;
-            break;
-          case STRINGINFO_ENCODING:
-            $1 = $2->encoding;
-            break;
           default:
             {
                 opcode_t *handler = Parrot_ex_throw_from_op_args(interp, NULL,


More information about the parrot-commits mailing list