Relay-Version: version B 2.10 5/3/83; site utzoo.UUCP Path: utzoo!mnetor!seismo!caip!sri-spam!parcvax!hplabs!pyramid!decwrl!wecker@cookie.dec.com From: wecker@cookie.dec.com (DAVE TANSTAAFL WECKER) Newsgroups: net.micro.amiga Subject: Problem with previous posting of VT100 emulator (V2.0 DBW 860823) Message-ID: <5032@decwrl.DEC.COM> Date: Thu, 28-Aug-86 17:04:24 EDT Article-I.D.: decwrl.5032 Posted: Thu Aug 28 17:04:24 1986 Date-Received: Fri, 29-Aug-86 21:32:37 EDT Sender: daemon@decwrl.DEC.COM Organization: Digital Equipment Corporation Lines: 37 I have now gotton through to the AMIGA SOURCE/BINARIES moderator and everything should be posted there, however... there was a problem with the SHAR files I sent out. They had a few embedded escape characters (that the mail gateways decided to eat!!), so here are the necessary patches: ------------------------------ CHANGES TO VT100.H: ------------------------------ 173c "\033OP","\033OQ","\033OR","\033OS", ------------------------------ CHANGES TO WINDOW.C: ------------------------------ 276,293c case 0x0f: c=0; sendstring("\033Op"); break; case 0x1d: c=0; sendstring("\033Oq"); break; case 0x1e: c=0; sendstring("\033Or"); break; case 0x1f: c=0; sendstring("\033Os"); break; case 0x2d: c=0; sendstring("\033Ot"); break; case 0x2e: c=0; sendstring("\033Ou"); break; case 0x2f: c=0; sendstring("\033Ov"); break; case 0x3d: c=0; sendstring("\033Ow"); break; case 0x3e: c=0; sendstring("\033Ox"); break; case 0x3f: c=0; sendstring("\033Oy"); break; case 0x43: c=0; sendstring("\033OM"); break; case 0x4a: c=0; sendstring("\033Ol"); break; case 0x5f: c=0; sendstring("\033Om"); break; case 0x3c: c=0; sendstring("\033On"); break; case 0x4c: c=0; sendstring("\033[A"); break; case 0x4d: c=0; sendstring("\033[B"); break; case 0x4e: c=0; sendstring("\033[C"); break; case 0x4f: c=0; sendstring("\033[D"); break; ------------------------------ P.S. I have no reason to beleive that changing escape to \033 will cause any problems, but since I haven't tried the code yet I won't claim anything works until I try it :-)