# HG changeset patch # User Stefan Vogel # Date 1050079637 -7200 # Node ID 903fef64420c9c19669f1fcd780f9d600a2ac6bb # Parent e968d992340891dce9683c9471e434455934b7dd #errorSignal -> #description diff -r e968d9923408 -r 903fef64420c PositionableStream.st --- a/PositionableStream.st Fri Apr 11 15:32:14 2003 +0200 +++ b/PositionableStream.st Fri Apr 11 18:47:17 2003 +0200 @@ -707,7 +707,7 @@ ] ]. - what := ex errorString. + what := ex description. what isNil ifTrue:[ what := ex signal notifierString. ]. @@ -785,7 +785,7 @@ ]. action == #debug ifTrue:[ Debugger enter:ex suspendedContext - withMessage:ex errorString + withMessage:ex description mayProceed:true. ex proceedWith:proceedValue ]. @@ -1193,7 +1193,7 @@ !PositionableStream class methodsFor:'documentation'! version - ^ '$Header: /cvs/stx/stx/libbasic/PositionableStream.st,v 1.125 2003-03-17 16:46:27 cg Exp $' + ^ '$Header: /cvs/stx/stx/libbasic/PositionableStream.st,v 1.126 2003-04-11 16:47:17 stefan Exp $' ! ! PositionableStream initialize!