[net.micro.amiga] Problem with previous posting of VT100 emulator

wecker@cookie.dec.com (DAVE TANSTAAFL WECKER) (08/29/86)

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 :-)