[OpenBIOS] [PATCH 04/16] terminal.fs: Fix backspace sequence in Forth terminal.

Mark Cave-Ayland mark.cave-ayland at ilande.co.uk
Sun Mar 10 17:50:34 CET 2013


Signed-off-by: Mark Cave-Ayland <mark.cave-ayland at ilande.co.uk>
---
 openbios-devel/forth/device/terminal.fs |    4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/openbios-devel/forth/device/terminal.fs b/openbios-devel/forth/device/terminal.fs
index c9c7d59..82d3541 100644
--- a/openbios-devel/forth/device/terminal.fs
+++ b/openbios-devel/forth/device/terminal.fs
@@ -215,9 +215,9 @@
   endof
   8 of \ BS
     column# 0<> if
-      column# 1- dup 
+      column# dup 
       to column#
-      20 draw-character
+      20 draw-character 1-
       to column#
     then
   endof
-- 
1.7.10.4




More information about the OpenBIOS mailing list