Relay-Version: version B 2.10 5/3/83; site utzoo.UUCP
Path: utzoo!mnetor!uunet!husc6!bbn!uwmcsd1!ig!jade!ucbvax!CORY.BERKELEY.EDU!dillon
From: dillon@CORY.BERKELEY.EDU (Matt Dillon)
Newsgroups: comp.sys.amiga
Subject: Re: UW Bug
Message-ID: <8712081934.AA17909@cory.Berkeley.EDU>
Date: Tue, 8-Dec-87 14:34:24 EST
Article-I.D.: cory.8712081934.AA17909
Posted: Tue Dec  8 14:34:24 1987
Date-Received: Sun, 13-Dec-87 12:58:10 EST
Sender: daemon@ucbvax.BERKELEY.EDU
Lines: 15

>Whenever UW receives a LF, it moves the cursor down AND TO THE LEFT COLUMN.
>This isn't UW's fault, really, it is just passing the LF through to Amigados,
>which is interpreting it as a newline.

	Console windows have the following escape sequences:

	SETMODE:    CSI20h   (9B 32 30 68)   LF = CR LF
	RESETMODE:  CSI20l   (9B 32 30 6C)   LF = LF

	CSI = 0x9B  or ESC open-bracket (^[[) can be used.


	Thus, simply send the proper sequence to the console device .
	
				-Matt