From owner-svn-src-all@FreeBSD.ORG Thu Sep 4 17:22:52 2014 Return-Path: Delivered-To: svn-src-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 316EAB5A; Thu, 4 Sep 2014 17:22:52 +0000 (UTC) Received: from mailout02.t-online.de (mailout02.t-online.de [194.25.134.17]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mailout00.t-online.de", Issuer "TeleSec ServerPass DE-1" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 6A1DB1A0E; Thu, 4 Sep 2014 17:22:51 +0000 (UTC) Received: from fwd03.aul.t-online.de (fwd03.aul.t-online.de [172.20.27.148]) by mailout02.t-online.de (Postfix) with SMTP id 31F9840E502; Thu, 4 Sep 2014 19:22:43 +0200 (CEST) Received: from [192.168.119.33] (VyC95ZZYZhvspndnCSeyqB1zwNcDQvO6SGYscLGaFjXdo60v3WZnbuGlzAop1cWw4t@[84.154.101.219]) by fwd03.t-online.de with (TLSv1.2:ECDHE-RSA-AES256-SHA encrypted) esmtp id 1XPak0-3K8d7I0; Thu, 4 Sep 2014 19:22:36 +0200 Message-ID: <54089FD4.9030002@freebsd.org> Date: Thu, 04 Sep 2014 19:22:28 +0200 From: Stefan Esser User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:31.0) Gecko/20100101 Thunderbird/31.1.0 MIME-Version: 1.0 To: Jan Beich Subject: Re: svn commit: r270232 - head/tools/tools/vt/keymaps References: <201408201707.s7KH7gtX009303@svn.freebsd.org> In-Reply-To: Content-Type: text/plain; charset=windows-1252 Content-Transfer-Encoding: 8bit X-ID: VyC95ZZYZhvspndnCSeyqB1zwNcDQvO6SGYscLGaFjXdo60v3WZnbuGlzAop1cWw4t X-TOI-MSGID: 267dcd3f-7457-46c1-8b49-67ae1781ae1e Cc: svn-src-head@freebsd.org, svn-src-all@freebsd.org, src-committers@freebsd.org X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 04 Sep 2014 17:22:52 -0000 Am 04.09.2014 um 16:52 schrieb Jan Beich: > Stefan Esser 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