X-Git-Url: http://git.shiar.nl/sheet.git/blobdiff_plain/99317852aa1e1dc5f4a07ed93b50c6dcb19b1565..v1.16-32-g23f7b10a84:/tools/mkcharinfo diff --git a/tools/mkcharinfo b/tools/mkcharinfo index 0f5d9bb..c04ca8a 100755 --- a/tools/mkcharinfo +++ b/tools/mkcharinfo @@ -4,7 +4,7 @@ use warnings; use utf8; no if $] >= 5.018, warnings => 'experimental::smartmatch'; -use open OUT => ':utf8', ':std'; +use open OUT => ':encoding(utf-8)', ':std'; use Data::Dump 'pp'; our $VERSION = '1.02'; @@ -34,6 +34,13 @@ eval { 1; } or warn "Failed reading unicode tables: $@"; +eval { + do './keyboard/altgr/macos-abc.eng.inc.pl' or die $@ || $!; + our %rows; + $info{$_} //= {} for values %rows; + 1; +} or warn "Failed reading additional keyboard map: $@"; + eval { require HTML::Entities; our %char2entity;