[11070] in Athena Bugs
Re: Zephyr
daemon@ATHENA.MIT.EDU (svalente@MIT.EDU)
Mon Sep 27 04:35:39 1993
From: svalente@MIT.EDU
Date: Mon, 27 Sep 93 04:35:32 -0400
To: aragorn@MIT.EDU
Cc: bugs@MIT.EDU
> Inside the zephyr message "editor" you can not use the "backspace"
> key on the SUNS.
You have to tell the computer what code your backspace key delivers.
This is true on any platform that doesn't correctly guess, and it's
true for any program that reads standard input (for example, "cat".)
You use "stty" to tell it. I have the following in my .cshrc:
if ( "$hosttype" == "rsaix" ) stty erase "^?"
if ( "$hosttype" == "sun4" ) stty erase "^?"
if ( "$hosttype" == "linux" ) stty erase "^H"
Hope this helps.
-Sal.