#OTHER by mawalch
authormawalch
Mon, 11 Jul 2016 14:58:16 +0200
changeset 5155 7053555ceac7
parent 5153 32e47e338a49
child 5156 5d9fc3da65f1
#OTHER by mawalch class: Workflow::NamedElementsLibrary changed: #workflowFileSaveEncodingVector_V1 (send #elementDescriptorForNonNilInstanceVariables instead of #encodingVectorForNonNilInstanceVariables) Move away from deprecated API (Character asciiValue -> Character codePoint)
VT100TerminalView.st
--- a/VT100TerminalView.st	Thu Jul 07 20:21:37 2016 +0200
+++ b/VT100TerminalView.st	Mon Jul 11 14:58:16 2016 +0200
@@ -675,7 +675,7 @@
 
 traceCSI:char
     state infoPrint. '-' infoPrint. 
-    char asciiValue > 32 ifTrue:[
+    char codePoint > 32 ifTrue:[
         char infoPrint. 
     ] ifFalse:[
         '0x' infoPrint. char codePoint hexPrintString infoPrint. 
@@ -862,7 +862,7 @@
     #unknown - unknown character for this state
 "
 
-    char asciiValue < 32 ifTrue:[
+    char codePoint < 32 ifTrue:[
         (char == Character esc) ifTrue:[
             state := #gotESC.
             ^ #waitForNextChar
@@ -927,7 +927,7 @@
         Character value:16r13   ->Device control 3
         ".
         char ~~ Character tab ifTrue:[
-            char asciiValue ~~ 0 ifTrue:[
+            char codePoint ~~ 0 ifTrue:[
                 ('VT100 [info]: unhandled control key: ' , char storeString) infoPrintCR.
             ].
             ^ #waitForNextChar.