# HG changeset patch # User Claus Gittinger # Date 1573562337 -3600 # Node ID 34cfc2fb225832351e25b19735045b5ee7d392a5 # Parent 70c345c1114576d11407696c467d30fa06652bf6 #BUGFIX by exept class: ShowMeHowItWorks changed: #showing:saying:do: diff -r 70c345c11145 -r 34cfc2fb2258 ShowMeHowItWorks.st --- a/ShowMeHowItWorks.st Fri Nov 08 09:06:39 2019 +0100 +++ b/ShowMeHowItWorks.st Tue Nov 12 13:38:57 2019 +0100 @@ -475,7 +475,8 @@ [ |sentence| sentence := (sentenceOrNil ? xLatedMessage) copy withCRs replaceAny:c'\t' with:(Character space). - self tell:(sentenceOrNil ? xLatedMessage). + sentence := sentence copy withCRs replaceAny:c'\n\r' with:(Character space). + self tell:sentence. talkDone signal ] fork.