At 28 Jan 2000 13:41:11 +0100,
[EMAIL PROTECTED] wrote:
> > The line "TERM = (kterm)" is output of tset command. tset prints it
> > and wait for entering the terminal type.
>
> Hm. Can you change your shell init such that it doesn't ask the user
> for a term type setting when running under rcp.el?
Sorry for the delay.
I changed ~/.login as follow and rcp.el works well now.
--- /tmp/.login Tue Mar 14 11:52:17 2000
+++ .login Tue Mar 14 12:02:57 2000
@@ -8,7 +8,11 @@
set path=( $path )
#set up the terminal
-eval `tset -s -Q -m ':?kterm' `
+if ( $TERM == unknown ) then
+ eval `tset -s -Q -m ':?kterm' `
+else
+ echo "Terminal type is '$TERM'."
+endif
stty erase "^H" kill "^U" intr "^C" eof "^D" susp "^Z" hupcl ixon ixoff tostop
tabs
--
Yuji Yamano