From patchwork Fri May 25 03:32:00 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Amos Kong X-Patchwork-Id: 161239 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 AE365B6EF3 for ; Fri, 25 May 2012 13:32:28 +1000 (EST) Received: from localhost ([::1]:36027 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1SXlGM-0006ah-IQ for incoming@patchwork.ozlabs.org; Thu, 24 May 2012 23:32:26 -0400 Received: from eggs.gnu.org ([208.118.235.92]:34577) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1SXlG9-0006OL-Hd for qemu-devel@nongnu.org; Thu, 24 May 2012 23:32:15 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1SXlG7-00079P-RW for qemu-devel@nongnu.org; Thu, 24 May 2012 23:32:13 -0400 Received: from mx1.redhat.com ([209.132.183.28]:2093) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1SXlG7-00079I-K5 for qemu-devel@nongnu.org; Thu, 24 May 2012 23:32:11 -0400 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 q4P3WAS7005812 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK); Thu, 24 May 2012 23:32:10 -0400 Received: from dhcp-8-167.nay.redhat.com (dhcp-8-167.nay.redhat.com [10.66.8.167]) by int-mx09.intmail.prod.int.phx2.redhat.com (8.14.4/8.14.4) with ESMTP id q4P3Vuvo029220; Thu, 24 May 2012 23:32:03 -0400 From: Amos Kong To: aliguori@us.ibm.com, eblake@redhat.com, berrange@redhat.com, lcapitulino@redhat.com, qemu-devel@nongnu.org Date: Fri, 25 May 2012 11:32:00 +0800 Message-Id: <1337916721-14308-2-git-send-email-akong@redhat.com> In-Reply-To: <1337916721-14308-1-git-send-email-akong@redhat.com> References: <1337916721-14308-1-git-send-email-akong@redhat.com> X-Scanned-By: MIMEDefang 2.68 on 10.5.11.22 X-detected-operating-system: by eggs.gnu.org: Genre and OS details not recognized. X-Received-From: 209.132.183.28 Cc: Amos Kong Subject: [Qemu-devel] [PATCH 2/3] fix doc of using raw values with sendkey 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 (qemu) sendkey a (qemu) sendkey 0x1e (qemu) sendkey #0x1e unknown key: '#0x1e' The last command doesn't work, '#' is not request before raw values. Signed-off-by: Amos Kong --- hmp-commands.hx | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/hmp-commands.hx b/hmp-commands.hx index 18cb415..af18156 100644 --- a/hmp-commands.hx +++ b/hmp-commands.hx @@ -513,8 +513,8 @@ STEXI @findex sendkey Send @var{keys} to the emulator. @var{keys} could be the name of the -key or @code{#} followed by the raw value in either decimal or hexadecimal -format. Use @code{-} to press several keys simultaneously. Example: +key or the raw value in either decimal or hexadecimal format. Use +@code{-} to press several keys simultaneously. Example: @example sendkey ctrl-alt-f1 @end example