Relay-Version: version B 2.10 5/3/83; site utzoo.UUCP Path: utzoo!mnetor!seismo!lll-crg!nike!ucbcad!ucbvax!hplabs!tektronix!tekgen!tekigm!phils From: phils@tekigm.UUCP (Phil Staub) Newsgroups: net.micro.amiga Subject: Re: VT100 terminal emulator (V2.0 DBW 860823) Part 1 of 2 Message-ID: <904@tekigm.UUCP> Date: Sat, 30-Aug-86 01:09:10 EDT Article-I.D.: tekigm.904 Posted: Sat Aug 30 01:09:10 1986 Date-Received: Sat, 30-Aug-86 21:30:47 EDT References: <4992@decwrl.DEC.COM> <269@pttesac.UUCP> Reply-To: phils@tekigm.UUCP (Phil Staub) Organization: Tektronix, Inc., Beaverton, OR. Lines: 44 In article <269@pttesac.UUCP> vanam@pttesac.UUCP (Marnix van Ammers) writes: > >Great program! I am absolutely delighted with it. I liked >the first version, but this is getting really good. > I fully agree. > >When I first noticed that my vt100 arrow keys and PF keys weren't >working right, I tried to set them in the init file but somehow >that didn't work. I was able to set the other variables in my >init file (except for cursor color which always remained blue). > The cursor color problem is in init.c. Beginning about line 69 is a section which is used to set the cursor color. There is a "sscanf" call which has a "%d" which should be "%x", because it is looking for a *hex* value in the vt100.init file, not decimal. Thus, if (sscanf(line,"%s %d",scr,&i) == 2) p_cursor = i; Should look like: if (sscanf(line,"%s %x",scr,&i) == 2) p_cursor = i; ^ > >I used Xmodem to receive a file successfully. I didn't try >sending and I didn't try KERMIT. > I have used KERMIT successfully, but I don't remember if I used the "receive" function. I do know that "get" and "send" work properly, and binary file transfer works properly. Phil Staub Tektronix, Inc. ISI Engineering P.O. Box 3500 Vancouver, Washington 98668 C1-904, (206) 253-5634 ..tektronix!tekigm!phils