From patchwork Wed Feb 6 15:08:28 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Stefan Hajnoczi X-Patchwork-Id: 218669 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from lists.gnu.org (lists.gnu.org [208.118.235.17]) (using TLSv1 with cipher AES256-SHA (256/256 bits)) (Client did not present a certificate) by ozlabs.org (Postfix) with ESMTPS id 0E0B02C02F2 for ; Thu, 7 Feb 2013 02:09:26 +1100 (EST) Received: from localhost ([::1]:60120 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1U36cm-0007zS-3k for incoming@patchwork.ozlabs.org; Wed, 06 Feb 2013 10:09:24 -0500 Received: from eggs.gnu.org ([208.118.235.92]:43886) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1U36cB-0006Rz-Qt for qemu-devel@nongnu.org; Wed, 06 Feb 2013 10:08:54 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1U36c6-0000y4-1o for qemu-devel@nongnu.org; Wed, 06 Feb 2013 10:08:47 -0500 Received: from mx1.redhat.com ([209.132.183.28]:10921) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1U36c5-0000xz-QT for qemu-devel@nongnu.org; Wed, 06 Feb 2013 10:08:41 -0500 Received: from int-mx09.intmail.prod.int.phx2.redhat.com (int-mx09.intmail.prod.int.phx2.redhat.com [10.5.11.22]) by mx1.redhat.com (8.14.4/8.14.4) with ESMTP id r16F8e85030671 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK); Wed, 6 Feb 2013 10:08:41 -0500 Received: from localhost (ovpn-112-20.ams2.redhat.com [10.36.112.20]) by int-mx09.intmail.prod.int.phx2.redhat.com (8.14.4/8.14.4) with ESMTP id r16F8ce4025354; Wed, 6 Feb 2013 10:08:39 -0500 From: Stefan Hajnoczi To: Date: Wed, 6 Feb 2013 16:08:28 +0100 Message-Id: <1360163308-7466-3-git-send-email-stefanha@redhat.com> In-Reply-To: <1360163308-7466-1-git-send-email-stefanha@redhat.com> References: <1360163308-7466-1-git-send-email-stefanha@redhat.com> X-Scanned-By: MIMEDefang 2.68 on 10.5.11.22 X-detected-operating-system: by eggs.gnu.org: GNU/Linux 3.x X-Received-From: 209.132.183.28 Cc: Anthony Liguori , Michael Tokarev , Stefan Hajnoczi Subject: [Qemu-devel] [PATCH 2/2] vnc: recognize Hungarian doubleacutes X-BeenThere: qemu-devel@nongnu.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org Sender: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org From: Michael Tokarev As reported in http://bugs.debian.org/697641 , some Hungarian keys does not work with qemu when using vnc display. This is because while the Hungarian keymap mentions these symbols, qemu know nothing about them. So add them. This patch is applicable to -stable for all previous releases. Signed-off-by: Michael Tokarev Reviewed-by: Laszlo Ersek Signed-off-by: Stefan Hajnoczi --- ui/vnc_keysym.h | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/ui/vnc_keysym.h b/ui/vnc_keysym.h index df33cfe..6250bec 100644 --- a/ui/vnc_keysym.h +++ b/ui/vnc_keysym.h @@ -215,10 +215,14 @@ static const name2keysym_t name2keysym[]={ { "Zabovedot", 0x1af}, { "zacute", 0x1bc}, { "Zacute", 0x1ac}, +{ "Odoubleacute", 0x1d5}, +{ "Udoubleacute", 0x1db}, { "cacute", 0x1e6}, { "Cacute", 0x1c6}, { "nacute", 0x1f1}, { "Nacute", 0x1d1}, +{ "odoubleacute", 0x1f5}, +{ "udoubleacute", 0x1fb}, /* modifiers */ {"ISO_Level3_Shift", 0xfe03}, /* XK_ISO_Level3_Shift */