Relay-Version: version B 2.10 5/3/83; site utzoo.UUCP Path: utzoo!mnetor!seismo!lll-crg!nike!ucbcad!ucbvax!decwrl!cookie.dec.com!wecker From: wecker@cookie.dec.com (DAVE TANSTAAFL WECKER) Newsgroups: net.micro.amiga Subject: PATCHES to VT100 (V2.2 DBW 861012) .. bugs while you wait! Message-ID: <5980@decwrl.DEC.COM> Date: Thu, 16-Oct-86 12:54:22 EDT Article-I.D.: decwrl.5980 Posted: Thu Oct 16 12:54:22 1986 Date-Received: Thu, 16-Oct-86 23:47:28 EDT Sender: daemon@decwrl.DEC.COM Organization: Digital Equipment Corporation Lines: 36 Patches to VT100 (V2.2 DBW 861012) Note: some or all may already have been done by the MOD.AMIGA.SOURCE moderator -------------------- Remove from VT100.H: -------------------- extern struct MenuItem WrdItem[WRDMAX]; extern struct IntuiText WrdText[WRDMAX]; -------------------------------- Add line (as noted) to SCRIPT.C: -------------------------------- void cmd_done(option) char *option; { char *p; int l; if (*option) { p = next_wrd(option,&l); *(p+l) = '\000'; if (strcmp(p,"vt100") == 0 || strcmp(p,"VT100") == 0) cleanup("Exit vt100 from script",0); exit_script(); script_start(p); } else exit_script(); <============ ADD THIS LINE } -------------------------------------------------------------- Fix 2 compares with p_parity from ">= 0" to "> 0" in KERMIT.C: -------------------------------------------------------------- if ((p_parity > 0) || ebqflg) { /* 8-bit quoting... */ else if (((p_parity > 0) || ebqflg) && (ebq == 'Y')) {