Browse Source

disable lithuanian lowercase conversion of U+0307 by default, it broke case conversion test

pull/1/head
Sami Vaarala 12 years ago
parent
commit
64a496e8db
  1. 2
      src/duk_unicode_support.c

2
src/duk_unicode_support.c

@ -727,7 +727,7 @@ static int case_transform_helper(duk_hthread *thr,
}
/* FIXME: lithuanian */
if (1 /* language == 'lt' */ &&
if (0 /* language == 'lt' */ &&
x == 0x0307) { /* U+0307 = COMBINING DOT ABOVE */
goto nochar;
}

Loading…
Cancel
Save