Date: Thu, 04 Sep 2014 19:22:28 +0200 From: Stefan Esser <se@freebsd.org> To: Jan Beich <jbeich@vfemail.net> Cc: svn-src-head@freebsd.org, svn-src-all@freebsd.org, src-committers@freebsd.org Subject: Re: svn commit: r270232 - head/tools/tools/vt/keymaps Message-ID: <54089FD4.9030002@freebsd.org> In-Reply-To: <ha0n-cua1-wny@vfemail.net> References: <201408201707.s7KH7gtX009303@svn.freebsd.org> <ha0n-cua1-wny@vfemail.net>
next in thread | previous in thread | raw e-mail | index | archive | help
Am 04.09.2014 um 16:52 schrieb Jan Beich: > Stefan Esser <se@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
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?54089FD4.9030002>