[Mono-bugs] [Bug 51833][Min] Changed - Backspace character fails to work at the end of a string.

bugzilla-daemon@bugzilla.ximian.com bugzilla-daemon@bugzilla.ximian.com
Tue, 9 Dec 2003 10:16:55 -0500 (EST)


Please do not reply to this email- if you want to comment on the bug, go to the
URL shown below and enter your comments there.

Changed by lastfuture@lastfuture.de.

http://bugzilla.ximian.com/show_bug.cgi?id=51833

--- shadow/51833	2003-12-09 08:27:01.000000000 -0500
+++ shadow/51833.tmp.16597	2003-12-09 10:16:55.000000000 -0500
@@ -56,6 +56,15 @@
 ------- Additional Comments From vargaz@freemail.hu  2003-12-09 08:27 -------
 Backspace is defined in most systems as 'replace the character before
 the backspace with the character after the backspace'. This means that
 if the backspace is followed by a newline, it has no effect. It works
 this way in C (printf), python, MS.NET etc. So this is not a bug.
 
+
+------- Additional Comments From lastfuture@lastfuture.de  2003-12-09 10:16 -------
+I see your point, however I fail to understand why it is that way...
+
+if a backspace replaces the character before it with the character
+after it, shouldn't "hello\b\n" replace the "o" with the linefeed,
+thus erasing it?
+
+does it exclude format effectors? if yes, why?