#OTHER by cg
authorClaus Gittinger <cg@exept.de>
Wed, 22 Feb 2017 19:01:58 +0100
changeset 21539 8533ab5cdbf5
parent 21538 5b99fa1b2343
child 21540 e5668ba40af0
#OTHER by cg comment in: #displayOn:
ByteArray.st
--- a/ByteArray.st	Wed Feb 22 19:01:54 2017 +0100
+++ b/ByteArray.st	Wed Feb 22 19:01:58 2017 +0100
@@ -2694,19 +2694,20 @@
 displayOn:aGCOrStream
     "return a printed representation of the receiver for displaying"
 
+    |cls|
+
     "/ what a kludge - Dolphin and Squeak mean: printOn: a stream;
-    "/ ST/X (and some old ST80's) mean: draw-yourself on a GC.
-    |cls|
-
+    "/ old ST80 means: draw-yourself on a GC.
     cls := self class.
     ((cls == ByteArray or:[cls == ImmutableByteArray]) and:[aGCOrStream isStream]) ifTrue:[
-	self storeOn:aGCOrStream.
-	^ self
+        self storeOn:aGCOrStream.
+        ^ self
     ].
     ^ super displayOn:aGCOrStream
 
-    "Created: 25.10.1995 / 13:33:26 / cg"
-    "Modified: 22.4.1996 / 12:54:06 / cg"
+    "Created: / 25-10-1995 / 13:33:26 / cg"
+    "Modified: / 22-04-1996 / 12:54:06 / cg"
+    "Modified (comment): / 22-02-2017 / 16:54:27 / cg"
 !
 
 printOn:aStream