Am 04.09.2014 um 16:52 schrieb Jan Beich: > Stefan Esser <s...@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 _______________________________________________ svn-src-head@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/svn-src-head To unsubscribe, send any mail to "svn-src-head-unsubscr...@freebsd.org"