From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1JbO6J-0005Uq-TM for qemu-devel@nongnu.org; Mon, 17 Mar 2008 18:46:39 -0400 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1JbO6I-0005UO-8n for qemu-devel@nongnu.org; Mon, 17 Mar 2008 18:46:39 -0400 Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1JbO6I-0005UE-00 for qemu-devel@nongnu.org; Mon, 17 Mar 2008 18:46:38 -0400 Received: from dan.emsphone.com ([199.67.51.101]) by monty-python.gnu.org with esmtps (TLS-1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.60) (envelope-from ) id 1JbO6H-0007Zu-L4 for qemu-devel@nongnu.org; Mon, 17 Mar 2008 18:46:37 -0400 Received: (from dan@localhost) by dan.emsphone.com (8.14.2/8.14.2) id m2HMkXB8090064 for qemu-devel@nongnu.org; Mon, 17 Mar 2008 17:46:33 -0500 (CDT) (envelope-from dan) Date: Mon, 17 Mar 2008 17:46:33 -0500 From: Dan Nelson Message-ID: <20080317224633.GA43981@dan.emsphone.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Subject: [Qemu-devel] [PATCH] typo in curses_keys.h Reply-To: qemu-devel@nongnu.org List-Id: qemu-devel.nongnu.org List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org 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