Gentoo Archives: gentoo-commits

From: Doug Goldstein <cardoe@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/qemu-kvm:qemu-kvm-1.1.2-gentoo commit in: /
Date: Wed, 21 Nov 2012 20:50:45
Message-Id: 1351062240.5720ce61fbd5a35bb8d91b9fe462bedefee9c6ea.cardoe@gentoo
1 commit: 5720ce61fbd5a35bb8d91b9fe462bedefee9c6ea
2 Author: Amos Kong <akong <AT> redhat <DOT> com>
3 AuthorDate: Fri Aug 31 02:56:20 2012 +0000
4 Commit: Doug Goldstein <cardoe <AT> gentoo <DOT> org>
5 CommitDate: Wed Oct 24 07:04:00 2012 +0000
6 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/qemu-kvm.git;a=commit;h=5720ce61
7
8 fix doc of using raw values with sendkey
9
10 (qemu) sendkey a
11 (qemu) sendkey 0x1e
12 (qemu) sendkey #0x1e
13 unknown key: '#0x1e'
14
15 The last command doesn't work, '#' is not requested before
16 raw values, and the raw value in decimal format is not supported.
17
18 Signed-off-by: Amos Kong <akong <AT> redhat.com>
19 Signed-off-by: Luiz Capitulino <lcapitulino <AT> redhat.com>
20 (cherry picked from commit 886cc706ce5d4d3d1c296f028ddc2991cfbe3bbe)
21
22 ---
23 hmp-commands.hx | 6 +++---
24 1 files changed, 3 insertions(+), 3 deletions(-)
25
26 diff --git a/hmp-commands.hx b/hmp-commands.hx
27 index 969f512..6567c9f 100644
28 --- a/hmp-commands.hx
29 +++ b/hmp-commands.hx
30 @@ -512,9 +512,9 @@ STEXI
31 @item sendkey @var{keys}
32 @findex sendkey
33
34 -Send @var{keys} to the emulator. @var{keys} could be the name of the
35 -key or @code{#} followed by the raw value in either decimal or hexadecimal
36 -format. Use @code{-} to press several keys simultaneously. Example:
37 +Send @var{keys} to the guest. @var{keys} could be the name of the
38 +key or the raw value in hexadecimal format. Use @code{-} to press
39 +several keys simultaneously. Example:
40 @example
41 sendkey ctrl-alt-f1
42 @end example