Author: leo
Date: Fri Nov 11 03:03:20 2005
New Revision: 9900

Modified:
   trunk/encodings/fixed_8.c
Log:
add some unimplemented exceptions to fixed_8 encoding

Modified: trunk/encodings/fixed_8.c
==============================================================================
--- trunk/encodings/fixed_8.c   (original)
+++ trunk/encodings/fixed_8.c   Fri Nov 11 03:03:20 2005
@@ -17,11 +17,14 @@ This file implements the encoding functi
 #include "parrot/parrot.h"
 #include "fixed_8.h"
 
+#define UNIMPL internal_exception(UNIMPLEMENTED, "unimpl fixed_8")
+
 /* This function needs to go through and get all the code points one
    by one and turn them into a byte */
 static void
 to_encoding(Interp *interpreter, STRING *source_string)
 {
+    UNIMPL;
 }
 
 static STRING *
@@ -29,6 +32,7 @@ copy_to_encoding(Interp *interpreter, ST
 {
     STRING *return_string = NULL;
 
+    UNIMPL;
     return return_string;
 }
 
@@ -148,6 +152,7 @@ set_bytes(Interp *interpreter, STRING *s
 static void
 become_encoding(Interp *interpreter, STRING *source_string)
 {
+    UNIMPL;
 }
 
 

Reply via email to