Date: Thu, 29 Jan 1998 17:59:52 -0500 From: Randall Hopper <rhh@ct.picker.com> To: emulation@FreeBSD.ORG Subject: doscmd: Back-TAB patch Message-ID: <19980129175952.14780@ct.picker.com>
next in thread | raw e-mail | index | archive | help
--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--
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?19980129175952.14780>