ReadEvalPrintLoop.st
changeset 20892 765ca5daafd7
parent 20891 8d94557ec419
child 20900 f2e647fa7eb1
--- a/ReadEvalPrintLoop.st	Tue Nov 08 14:41:41 2016 +0100
+++ b/ReadEvalPrintLoop.st	Tue Nov 08 14:42:49 2016 +0100
@@ -387,10 +387,10 @@
         (showAll or:[ what startsWith:'flag' ]) ifTrue:[
             showAll ifTrue:[ errStream cr; nextPutLine:'Flags:'; nextPutLine:'------' ].
             errStream
-                nextPutLine:('trace :      ',traceFlag printString);
-                nextPutLine:('timing:      ',timingFlag printString);
-                nextPutLine:('profiling:   ',profilingFlag printString);
-                nextPutLine:('chunkFormat: ',doChunkFormat printString).
+                nextPutLine:('trace :      ',(traceFlag ? false) printString);
+                nextPutLine:('timing:      ',(timingFlag ? false) printString);
+                nextPutLine:('profiling:   ',(profilingFlag ? false) printString);
+                nextPutLine:('chunkFormat: ',(doChunkFormat ? false) printString).
             ok := true.
         ].
     ].