Skip to content

Commit

Permalink
XS: static string normalize fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Patrick Soquet committed Sep 8, 2023
1 parent 6dc575f commit f506446
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion xs/sources/xsString.c
Expand Up @@ -983,7 +983,7 @@ void fx_String_prototype_normalize(txMachine* the)
}
mxMeterSome(fxUnicodeLength(mxThis->value.string));
mxResult->value.string = mxThis->value.string;
mxResult->kind = XS_STRING_KIND;
mxResult->kind = mxThis->kind;
#ifdef mxStringNormalize
fxNormalizeString(the, mxResult, form);
#else
Expand Down

0 comments on commit f506446

Please sign in to comment.