Commit in reactos/subsys/csrss/win32csr on MAIN
conio.c+2-21.13 -> 1.14
- Fixed the back-space-handling in ConioWriteConsole.

reactos/subsys/csrss/win32csr
conio.c 1.13 -> 1.14
diff -u -r1.13 -r1.14
--- conio.c	24 Aug 2004 17:25:17 -0000	1.13
+++ conio.c	25 Aug 2004 10:37:14 -0000	1.14
@@ -1,4 +1,4 @@
-/* $Id: conio.c,v 1.13 2004/08/24 17:25:17 navaraf Exp $
+/* $Id: conio.c,v 1.14 2004/08/25 10:37:14 hbirr Exp $
  *
  * reactos/subsys/csrss/win32csr/conio.c
  *
@@ -405,7 +405,7 @@
               continue;
             }
           /* --- BS --- */
-          else if (Buffer[i] == '\n')
+          else if (Buffer[i] == '\b')
             {
               /* Only handle BS if we're not on the first pos of the first line */
               if (0 != Buff->CurrentX || Buff->ShowY != Buff->CurrentY)
CVSspam 0.2.8