From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([208.118.235.92]:34700) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ScKmg-0000yr-Ts for qemu-devel@nongnu.org; Wed, 06 Jun 2012 14:16:47 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1ScKmZ-0002Fb-AD for qemu-devel@nongnu.org; Wed, 06 Jun 2012 14:16:42 -0400 Received: from mx1.redhat.com ([209.132.183.28]:22256) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ScKmZ-0002FD-1s for qemu-devel@nongnu.org; Wed, 06 Jun 2012 14:16:35 -0400 Date: Wed, 6 Jun 2012 15:16:53 -0300 From: Luiz Capitulino Message-ID: <20120606151653.72e5141d@doriath.home> In-Reply-To: <1338591268-23962-3-git-send-email-akong@redhat.com> References: <1338591268-23962-1-git-send-email-akong@redhat.com> <1338591268-23962-3-git-send-email-akong@redhat.com> Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Subject: Re: [Qemu-devel] [PATCH v2 2/6] fix doc of using raw values with sendkey List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Amos Kong Cc: aliguori@us.ibm.com, eblake@redhat.com, qemu-devel@nongnu.org On Sat, 2 Jun 2012 06:54:24 +0800 Amos Kong wrote: > (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 I think we should do: s/emulator/guest Also applies to the schema doc. > -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