qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
From: Dan Nelson <dnelson@allantgroup.com>
To: qemu-devel@nongnu.org
Subject: [Qemu-devel] [PATCH] typo in curses_keys.h
Date: Mon, 17 Mar 2008 17:46:33 -0500	[thread overview]
Message-ID: <20080317224633.GA43981@dan.emsphone.com> (raw)


Currently in -curses mode, pressing Ctrl-T sends a ^D to the guest, and
pressing Ctrl-D does nothing.  This fixes it:

Index: curses_keys.h
===================================================================
RCS file: /sources/qemu/qemu/curses_keys.h,v
retrieving revision 1.1
diff -u -p -r1.1 curses_keys.h
--- curses_keys.h	10 Feb 2008 16:33:13 -0000	1.1
+++ curses_keys.h	17 Mar 2008 22:24:30 -0000
@@ -198,7 +198,7 @@ int curses2keycode[CURSES_KEYS] = {
 
     [0x001] = 30 | CNTRL, /* Control + a */
     [0x013] = 31 | CNTRL, /* Control + s */
-    [0x014] = 32 | CNTRL, /* Control + d */
+    [0x004] = 32 | CNTRL, /* Control + d */
     [0x006] = 33 | CNTRL, /* Control + f */
     [0x007] = 34 | CNTRL, /* Control + g */
     [0x008] = 35 | CNTRL, /* Control + h */



-- 
	Dan Nelson
	dnelson@allantgroup.com

                 reply	other threads:[~2008-03-17 22:46 UTC|newest]

Thread overview: [no followups] expand[flat|nested]  mbox.gz  Atom feed

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20080317224633.GA43981@dan.emsphone.com \
    --to=dnelson@allantgroup.com \
    --cc=qemu-devel@nongnu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).