dave@arnold.UUCP (Dave Arnold) (08/25/87)
In regards to me posting my changes to uemacs3.8 for the UNIXpc, I have
received 5 YES's and 0 NO's. Not overwhelming! Before I do post it, could
somebody tell me why using the tam library on remote logins crashes uemacs?
I get "core dumped". According to the doc. it should work! Anybody else
have similar problems? I suppose all the ua stuff uses the tam library,
and it works for remote logins, why doesn't mine? I'm not doing anything
unusual, here is a cutup look at the calls I'm making, any help would be
appreciated! Thanks in advance.
Dave Arnold
------------
static int TamOpen()
{
winit();
wn = wcreate(1, 0, NROW, NCOL, NBORDER);
return(1);
}
static int TamKbdOpen()
{
if(iswind())
keypad(0, 1);
bufi = 0;
return(1);
}
static int TamGetchar()
{
int c;
c = wgetc(wn);
return(c);
}
static int TamFlush()
{
buf[bufi] = 0;
wputs(wn, buf);
bufi = 0;
return(1);
}
static int TamMove(row, col)
int row;
int col;
{
TamFlush();
wgoto(wn, row, col);
return(1);
}
--
Name: Dave Arnold
USmail: 26561 Fresno, Mission Viejo, Ca, 92691 USA
DDD: Home: +1 714 586 5894, Work: +1 714 999 3482
UUCP: ...!seismo!uunet!arnold!dave