From owner-freebsd-emulation Thu Jan 29 15:00:34 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id PAA11165 for freebsd-emulation-outgoing; Thu, 29 Jan 1998 15:00:34 -0800 (PST) (envelope-from owner-freebsd-emulation@FreeBSD.ORG) Received: from whqvax.picker.com (whqvax.picker.com [144.54.1.1]) by hub.freebsd.org (8.8.8/8.8.8) with SMTP id PAA11127 for ; Thu, 29 Jan 1998 15:00:28 -0800 (PST) (envelope-from rhh@ct.picker.com) Received: from ct.picker.com by whqvax.picker.com with SMTP; Thu, 29 Jan 1998 17:59:57 -0500 (EST) Received: from elmer.ct.picker.com by ct.picker.com (4.1/SMI-4.1) id AA25192; Thu, 29 Jan 98 17:59:56 EST Received: by elmer.ct.picker.com (SMI-8.6/SMI-SVR4) id RAA08882; Thu, 29 Jan 1998 17:59:52 -0500 Message-Id: <19980129175952.14780@ct.picker.com> Date: Thu, 29 Jan 1998 17:59:52 -0500 From: Randall Hopper To: emulation@FreeBSD.ORG Subject: doscmd: Back-TAB patch Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="k+w/mQv8wyuph6w0" X-Mailer: Mutt 0.88 Sender: owner-freebsd-emulation@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org X-To-Unsubscribe: mail to majordomo@FreeBSD.org "unsubscribe freebsd-emulation" --k+w/mQv8wyuph6w0 Content-Type: text/plain; charset=us-ascii Simple patch I found I needed yesterday in Quicken. Randall --k+w/mQv8wyuph6w0 Content-Type: text/plain; charset=us-ascii Content-Disposition: attachment; filename="doscmd-backtab.patch" --- ORIG.2/tty.c Wed Jan 28 18:44:52 1998 +++ tty.c Wed Jan 28 20:32:24 1998 @@ -573,7 +573,7 @@ { 0x0c2d, 0x0c5f, 0x0c1f, 0x8200 }, /* key 12 - '-' */ { 0x0d3d, 0x0d2b, 0xffff, 0x8300 }, /* key 13 - '=' */ { 0x0e08, 0x0e08, 0x0e7f, 0xffff }, /* key 14 - backspace */ - { 0x0f09, 0xffff, 0xffff, 0xffff }, /* key 15 - tab */ + { 0x0f09, 0x0f00, 0xffff, 0xffff }, /* key 15 - tab */ { 0x1071, 0x1051, 0x1011, 0x1000 }, /* key 16 - 'Q' */ { 0x1177, 0x1157, 0x1117, 0x1100 }, /* key 17 - 'W' */ { 0x1265, 0x1245, 0x1205, 0x1200 }, /* key 18 - 'E' */ @@ -1328,6 +1330,7 @@ goto docode; case XK_Tab: + case XK_ISO_Left_Tab: scan = 15; goto docode; --k+w/mQv8wyuph6w0--