Smalltalk.st
changeset 23679 3f4a3d56ed3e
parent 23678 acb36818ea6b
child 23683 05f38e32876b
--- a/Smalltalk.st	Wed Feb 06 20:40:27 2019 +0100
+++ b/Smalltalk.st	Wed Feb 06 21:17:00 2019 +0100
@@ -751,10 +751,11 @@
     (idx := CommandLineArguments indexOf:'--infoPrint') ~~ 0 ifTrue:[
         CommandLineArguments removeIndex:idx.
         ObjectMemory infoPrinting:true.
+        Object infoPrinting:true.
     ].
 
     (idx := CommandLineArguments indexOf:'--verbose') ~~ 0 ifTrue:[
-        CommandLineArguments removeIndex:idx.
+        StandAlone ifFalse:[ CommandLineArguments removeIndex:idx ].
         Object infoPrinting:true.
         Verbose := true.
         VerboseLoading := true.
@@ -766,7 +767,7 @@
 
     Silent := false.
     (idx := CommandLineArguments indexOf:'--silent') ~~ 0 ifTrue:[
-        CommandLineArguments removeIndex:idx.
+        StandAlone ifFalse:[ CommandLineArguments removeIndex:idx ].
         Silent := SilentLoading := true.
         Object infoPrinting:false.
         ObjectMemory infoPrinting:false.
@@ -798,7 +799,7 @@
     ].
 
     "Modified: / 12-10-2017 / 17:48:11 / cg"
-    "Modified: / 06-02-2019 / 20:35:38 / Claus Gittinger"
+    "Modified: / 06-02-2019 / 21:15:30 / Claus Gittinger"
 !
 
 isInitialized