summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAmos Kong <akong@redhat.com>2012-08-31 10:56:20 +0800
committerDoug Goldstein <cardoe@cardoe.com>2012-10-24 02:04:00 -0500
commit5720ce61fbd5a35bb8d91b9fe462bedefee9c6ea (patch)
tree53575b5ddf11a3958f4a8f780304684aa8b13f7b
parentuse --libexecdir instead of ignoring it first and reinventing it later (diff)
downloadqemu-kvm-5720ce61fbd5a35bb8d91b9fe462bedefee9c6ea.tar.gz
qemu-kvm-5720ce61fbd5a35bb8d91b9fe462bedefee9c6ea.tar.bz2
qemu-kvm-5720ce61fbd5a35bb8d91b9fe462bedefee9c6ea.zip
fix doc of using raw values with sendkey
(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 not supported. Signed-off-by: Amos Kong <akong@redhat.com> Signed-off-by: Luiz Capitulino <lcapitulino@redhat.com> (cherry picked from commit 886cc706ce5d4d3d1c296f028ddc2991cfbe3bbe)
-rw-r--r--hmp-commands.hx6
1 files changed, 3 insertions, 3 deletions
diff --git a/hmp-commands.hx b/hmp-commands.hx
index 969f51208..6567c9f06 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