> Hi All, > We have moved our universe development environment from one server to > other server. Now at the new server, we are facing problem with "CS" > (Clear screen) command. > Whenever we do "CS", the screen is cleared but at the top right corner > there is "$<20>>" prompt. We are using "wyse50" terminals as it is > required by our application. At "vt100" terminals, "CS" works fine. > > Please tell me which settings are responsible for this problem. > > Regards, > > Pankaj Gupta >
If you want to keep your existing term setting without adding/removing whatever is in terminfo.src (I checked, the clear is incorrect there, too), you could sh out (Unix; I don't know for Win32). cd ~/uv/sample, then do: # export TERM=wy50 # uvtidc > wy50.tmp # vi wy50.tmp find clear=\E\40\... or whatever is there now change it to clear=\E; There's a comma after each command, so make sure it's there. Then do: # uvtic -a -v wy50.tmp # exit > OFF Login and see how it works. There is one more advantage to this. On emulation programs that have a scroll back function, this method of clearing the screen allows the scroll back function to work properly. HTH Karl ------- u2-users mailing list [email protected] To unsubscribe please visit http://listserver.u2ug.org/
