From patchwork Sun Feb 3 20:36:25 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Michael Tokarev X-Patchwork-Id: 217804 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 C470F2C0095 for ; Mon, 4 Feb 2013 07:36:48 +1100 (EST) Received: from localhost ([::1]:54121 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1U26Ix-0007tY-0B for incoming@patchwork.ozlabs.org; Sun, 03 Feb 2013 15:36:47 -0500 Received: from eggs.gnu.org ([208.118.235.92]:56436) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1U26Ip-0007tG-Kc for qemu-devel@nongnu.org; Sun, 03 Feb 2013 15:36:40 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1U26Im-0006ZO-DL for qemu-devel@nongnu.org; Sun, 03 Feb 2013 15:36:39 -0500 Received: from isrv.corpit.ru ([86.62.121.231]:55588) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1U26Im-0006Y1-6J for qemu-devel@nongnu.org; Sun, 03 Feb 2013 15:36:36 -0500 Received: from gandalf.tls.msk.ru (mjt.vpn.tls.msk.ru [192.168.177.99]) by isrv.corpit.ru (Postfix) with ESMTP id 78ED3A0276; Mon, 4 Feb 2013 00:36:28 +0400 (MSK) Received: by gandalf.tls.msk.ru (Postfix, from userid 1000) id A9AD251B; Mon, 4 Feb 2013 00:36:26 +0400 (MSK) From: Michael Tokarev To: Anthony Liguori Date: Mon, 4 Feb 2013 00:36:25 +0400 Message-Id: <1359923785-3820-1-git-send-email-mjt@msgid.tls.msk.ru> X-Mailer: git-send-email 1.7.10.4 X-detected-operating-system: by eggs.gnu.org: GNU/Linux 3.x X-Received-From: 86.62.121.231 Cc: Michael Tokarev , qemu-devel Subject: [Qemu-devel] [PATCH] 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 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 --- 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 */