X-Git-Url: http://git.shiar.nl/sheet.git/blobdiff_plain/70e3b473d744176d9692900114c8beefc0527150..e30aa694fe516c176faaae6472e42297f6577fa6:/tools/mkcharinfo diff --git a/tools/mkcharinfo b/tools/mkcharinfo index c6c8900..27c11d9 100755 --- a/tools/mkcharinfo +++ b/tools/mkcharinfo @@ -105,7 +105,9 @@ for my $chr (keys %info) { ? '<'.$info->{unicode10}.'>' # the old name was much more useful : sprintf('', $cp); # at least identify by value # show descriptive symbols instead of control chars themselves - $info->{string} = $cp < 32 ? chr($cp + 0x2400) : chr(0xFFFD); + $info->{string} = $cp < 32 ? chr($cp + 0x2400) : + $cp == 127 ? chr(0x2421) : + chr(0xFFFD); } }