#REFACTORING by cg
authorClaus Gittinger <cg@exept.de>
Tue, 08 Nov 2016 14:38:17 +0100
changeset 20890 935d14488b6d
parent 20889 15225da02dc3
child 20891 8d94557ec419
#REFACTORING by cg class: ReadEvalPrintLoop changed: #basicReadEvalPrintLoopWithInput:output:error:compiler:prompt:print:
ReadEvalPrintLoop.st
--- a/ReadEvalPrintLoop.st	Tue Nov 08 11:42:02 2016 +0100
+++ b/ReadEvalPrintLoop.st	Tue Nov 08 14:38:17 2016 +0100
@@ -520,7 +520,10 @@
             chunk := lines asStringWith:Character cr.
         ].
 
-        (chunk notEmptyOrNil and:[chunk withoutSeparators notEmpty]) ifTrue:[
+        (chunk notEmptyOrNil 
+          and:[chunk withoutSeparators notEmpty
+          and:[chunk withoutSeparators ~= '.']]
+        ) ifTrue:[
             "abortAll is handled, but not asked for here!!"
             AbortAllOperationRequest handle:[:ex |
                 error nextPutLine:('Evaluation aborted: ', ex description)