StandaloneStartup.st
changeset 11358 c1f741e4aa34
parent 11357 0a710cf52bb4
child 11359 587f2a2aef0a
--- a/StandaloneStartup.st	Thu Nov 20 23:24:12 2008 +0100
+++ b/StandaloneStartup.st	Thu Nov 20 23:25:24 2008 +0100
@@ -486,7 +486,6 @@
     (self allowScriptingOption) ifTrue:[
         idx := argv indexOfAny:#('--scripting').
         idx ~~ 0 ifTrue:[
-            self verboseInfo:('scripting on').
             nextArg := argv at:(idx + 1) ifAbsent:nil.
             (nextArg notNil and:[ (nextArg startsWith:'-') not ]) ifTrue:[
                 portNr := nextArg asInteger.
@@ -498,6 +497,7 @@
         ].
     ].
     scripting ifTrue:[
+        self verboseInfo:('scripting on').
         STXScriptingServer notNil ifTrue:[
             "/ scripting on port/stdin_out/8008
             self verboseInfo:('start scripting').
@@ -616,7 +616,7 @@
 !StandaloneStartup class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libbasic/StandaloneStartup.st,v 1.22 2008-11-20 22:24:12 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic/StandaloneStartup.st,v 1.23 2008-11-20 22:25:24 cg Exp $'
 ! !
 
 StandaloneStartup initialize!