Author: leo
Date: Wed Nov 16 10:30:03 2005
New Revision: 10030

Modified:
   trunk/charset/iso-8859-1.c
Log:
unicode charsets - fail decompose latin1 

* iso-8859-1.decompose isn't a noop as the c&p comment indicated
* unimplemented so fat


Modified: trunk/charset/iso-8859-1.c
==============================================================================
--- trunk/charset/iso-8859-1.c  (original)
+++ trunk/charset/iso-8859-1.c  Wed Nov 16 10:30:03 2005
@@ -123,11 +123,11 @@ compose(Interp *interpreter, STRING *src
     return string_copy(interpreter, src);
 }
 
-/* A noop. can't decompose iso-8859-1 */
 static STRING*
 decompose(Interp *interpreter, STRING *src)
 {
-    return string_copy(interpreter, src);
+    internal_exception(UNIMPLEMENTED,
+            "decompose for iso-8859-1 not implemented");
 }
 
 static void

Reply via email to