From bd6167bb1439ceeb7e7511086e29a9992ac25dd2 Mon Sep 17 00:00:00 2001 From: Mischa POSLAWSKY Date: Sun, 22 Feb 2015 02:46:39 +0100 Subject: [PATCH] digraphs: fix unicode translation for J< in rfc Intended "LATIN CAPITAL LETTER J WITH CARON" is not in modern unicode as a single glyph, but can be composed using combining mark. --- tools/mkdigraphs-rfc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/mkdigraphs-rfc b/tools/mkdigraphs-rfc index 81df0a0..8db192c 100755 --- a/tools/mkdigraphs-rfc +++ b/tools/mkdigraphs-rfc @@ -47,7 +47,7 @@ my %replace = ( 0xE025 => "\x{20D7}", # also 20D1; non-spacing 0xE026 => "\x{1FEF}", 0xE027 => "\x{1FC0}", - 0xE028 => "\x{01F0}", #but uppercase + 0xE028 => "J̌", # uppercase U+01F0, no single character ); # expect input data source at command line -- 2.30.0