Date: Thu, 2 Aug 2001 09:53:20 +0300 (IDT) From: Eli Zaretskii X-Sender: eliz AT is To: djgpp-workers AT delorie DOT com Subject: Re: djgpp: djgpp/src/libc/posix/termios/tmwrite.c In-Reply-To: <200108012154.RAA26948@delorie.com> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Reply-To: djgpp-workers AT delorie DOT com Errors-To: nobody AT delorie DOT com X-Mailing-List: djgpp-workers AT delorie DOT com X-Unsubscribes-To: listserv AT delorie DOT com Precedence: bulk On Wed, 1 Aug 2001, cvs-snowball AT delorie DOT com wrote: > ! else if (ch == '\b') > ! { > ! if (*col > 0) > ! --(*col); > ! else if (*row > 0) > ! { > ! --(*row); > ! *col = screen.max_col; > ! } > ! } Should Backspace merely move the cursor, or should it also erase the character to the left of the cursor? What happens if the user presses the Backspace key?