class: VT100TerminalView
authorClaus Gittinger <cg@exept.de>
Sat, 20 Jul 2013 12:29:32 +0200
changeset 4283 0d1120e6734b
parent 4282 94d7a67aa24f
child 4284 a0dd80311c40
class: VT100TerminalView comment/format in: #processState0:
VT100TerminalView.st
--- a/VT100TerminalView.st	Sat Jul 20 11:08:09 2013 +0200
+++ b/VT100TerminalView.st	Sat Jul 20 12:29:32 2013 +0200
@@ -627,7 +627,7 @@
         ].
 
         (    char == Character nl   "nl or '\n'"
-        or:[(char == (Character value:16rb))]) ifTrue:[
+        or:[(char == (Character value:16r0b))]) ifTrue:[
             translateNLToCRNL == true ifTrue:[
                 self endEntry.
                 self cursorToBeginOfLine.
@@ -1021,6 +1021,6 @@
 !VT100TerminalView class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libwidg2/VT100TerminalView.st,v 1.48 2013-07-10 16:41:41 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libwidg2/VT100TerminalView.st,v 1.49 2013-07-20 10:29:32 cg Exp $'
 ! !