svn commit: r270232 - head/tools/tools/vt/keymaps

Stefan Esser se at freebsd.org
Thu Sep 4 17:22:52 UTC 2014


Am 04.09.2014 um 16:52 schrieb Jan Beich:
> Stefan Esser <se at FreeBSD.org> writes:
> 
>> Author: se
>> Date: Wed Aug 20 17:07:41 2014
>> New Revision: 270232
>> URL: http://svnweb.freebsd.org/changeset/base/270232
>>
>> Log:
>>   The conversion tools have been further improved and some erroneous
>>   conversions have been detected and fixed.
> [...]
>>  sub local_to_UCS_code
>>  {
>>      my ($char) = @_;
>>  
>> -    return prettyprint_token(ord(Encode::decode("UTF-8", local_to_UCS_string($char))));
>> +    my $ucs_char = ord(Encode::decode("UTF-8", local_to_UCS_string($char)));
>> +
>> +    $current_char = lc(chr($ucs_char)), print("SETCUR: $ucs_char\n")
>> +	if $current_char eq "";
> 
> The script now emits |SETCUR: 123| lines that kbdcontrol(1) doesn't like.
> Either removing debug |print| or adding STDERR seems to fix.

Hi Jan,

this is (obviously) a left-over from some tests, which I have now
removed again.

Thanks for reporting!

Best regards, STefan


More information about the svn-src-head mailing list