From 4b824cbb7c2b971a8651db5b3a3319079a92f9f6 Mon Sep 17 00:00:00 2001 From: Michael Sippel <micha@fragmental.art> Date: Thu, 20 Mar 2025 17:26:18 +0100 Subject: [PATCH] unicode morphisms: remove LE- suffix from UTF32 since we are using native.UInt32 --- morphisms/unicode.morphism-base | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/morphisms/unicode.morphism-base b/morphisms/unicode.morphism-base index 63f32be..c2854e5 100644 --- a/morphisms/unicode.morphism-base +++ b/morphisms/unicode.morphism-base @@ -34,7 +34,7 @@ morph_string_as_utf8_to_ascii () morph_string_as_ascii_to_utf32 () <Seq ~ <ValueTerminated 0> Char~Ascii~native.UInt8> --> <Seq Char~Unicode> - ~ UTF-32LE + ~ UTF-32 ~ <Seq~<ValueTerminated 0> native.UInt32> ``` while( *src ) { *dst++ = *src++; } @@ -49,7 +49,7 @@ morph_string_as_utf8_to_utf32 () ~ <Seq~<ValueTerminated 0> native.UInt8> --> <Seq Char~Unicode> - ~ UTF-32LE + ~ UTF-32 ~ <Seq~<ValueTerminated 0> native.UInt32> ```