#BUGFIX by exept
authorClaus Gittinger <cg@exept.de>
Sat, 10 Aug 2019 17:32:19 +0200
changeset 5075 18cba5cb7d94
parent 5074 7eaede72d204
child 5076 185b8f374d44
#BUGFIX by exept class: QuadFloat changed: #* (send #error instead of #halt)
QuadFloat.st
--- a/QuadFloat.st	Sat Aug 10 17:31:50 2019 +0200
+++ b/QuadFloat.st	Sat Aug 10 17:32:19 2019 +0200
@@ -1,3 +1,5 @@
+"{ Encoding: utf8 }"
+
 "{ Package: 'stx:libbasic2' }"
 
 "{ NameSpace: Smalltalk }"
@@ -2600,7 +2602,7 @@
         ^ aNumber productFromQuadFloat:self
     ].
 
-thisContext isReallyRecursive ifTrue:[self halt].
+    thisContext isReallyRecursive ifTrue:[self error].
     ^ aNumber productFromQuadFloat:self
 !