#FEATURE by exept
authorClaus Gittinger <cg@exept.de>
Fri, 09 Aug 2019 10:52:31 +0200
changeset 24515 a0ef6ba53250
parent 24514 302407b6b342
child 24516 cf8d5e5d542f
#FEATURE by exept class: Character changed: #storeOn:
Character.st
--- a/Character.st	Fri Aug 09 10:52:18 2019 +0200
+++ b/Character.st	Fri Aug 09 10:52:31 2019 +0200
@@ -1849,13 +1849,15 @@
             special := #lf.
         ] ifFalse:[(self == Character return) ifTrue:[
             special := #return.
+        ] ifFalse:[(self == Character backspace) ifTrue:[
+            special := #backspace.
         ] ifFalse:[(self == Character tab) ifTrue:[
             special := #tab.
         ] ifFalse:[(self == Character esc) ifTrue:[
             special := #esc.
         ] ifFalse:[(self == Character bell) ifTrue:[
             special := #bell.
-        ]]]]]].
+        ]]]]]]].
 
         special notNil ifTrue:[
             aStream nextPutAll:'(Character '; nextPutAll:special; nextPut:$).