From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([208.118.235.92]:49984) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Sx7w0-00074K-J7 for qemu-devel@nongnu.org; Thu, 02 Aug 2012 22:48:17 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1Sx7vz-0001iX-MG for qemu-devel@nongnu.org; Thu, 02 Aug 2012 22:48:16 -0400 Received: from mx1.redhat.com ([209.132.183.28]:49797) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Sx7vz-0001iT-EG for qemu-devel@nongnu.org; Thu, 02 Aug 2012 22:48:15 -0400 From: Amos Kong Date: Fri, 3 Aug 2012 10:48:36 +0800 Message-Id: <1343962122-26696-2-git-send-email-akong@redhat.com> In-Reply-To: <1343962122-26696-1-git-send-email-akong@redhat.com> References: <1343962122-26696-1-git-send-email-akong@redhat.com> Subject: [Qemu-devel] [PATCH v6 1/7] fix doc of using raw values with sendkey List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: aliguori@us.ibm.com, Amos Kong , eblake@redhat.com, lcapitulino@redhat.com (qemu) sendkey a (qemu) sendkey 0x1e (qemu) sendkey #0x1e unknown key: '#0x1e' The last command doesn't work, '#' is not requested before raw values. And the raw value in decimal format is also not supported. Signed-off-by: Amos Kong --- hmp-commands.hx | 6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) diff --git a/hmp-commands.hx b/hmp-commands.hx index eea8b32..4041a9b 100644 --- a/hmp-commands.hx +++ b/hmp-commands.hx @@ -512,9 +512,9 @@ STEXI @item sendkey @var{keys} @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: +Send @var{keys} to the guest. @var{keys} could be the name of the +key or the raw value in hexadecimal format. Use @code{-} to press +several keys simultaneously. Example: @example sendkey ctrl-alt-f1 @end example -- 1.7.1