#FEATURE by cg
authorClaus Gittinger <cg@exept.de>
Tue, 22 May 2018 12:05:07 +0200
changeset 22984 e8fd046ea3ba
parent 22983 954925788d5d
child 22985 da550df21477
#FEATURE by cg class: OSProcess changed: #startProcess
OSProcess.st
--- a/OSProcess.st	Tue May 22 12:04:11 2018 +0200
+++ b/OSProcess.st	Tue May 22 12:05:07 2018 +0200
@@ -3,19 +3,19 @@
 "{ NameSpace: Smalltalk }"
 
 Object subclass:#OSProcess
-	instanceVariableNames:'pid command environment directory inStream outStream errorStream
-		auxStream showWindow lineWise newPgrp exitStatus finishSema
-		shufflerProcesses streamsToClose terminateActionBlock'
-	classVariableNames:''
-	poolDictionaries:''
-	category:'System-Support'
+        instanceVariableNames:'pid command environment directory inStream outStream errorStream
+                auxStream showWindow lineWise newPgrp exitStatus finishSema
+                shufflerProcesses streamsToClose terminateActionBlock'
+        classVariableNames:''
+        poolDictionaries:''
+        category:'System-Support'
 !
 
 OSProcess subclass:#RemoteOSProcess
-	instanceVariableNames:'host'
-	classVariableNames:'MethodPerHost'
-	poolDictionaries:''
-	privateIn:OSProcess
+        instanceVariableNames:'host'
+        classVariableNames:'MethodPerHost'
+        poolDictionaries:''
+        privateIn:OSProcess
 !
 
 !OSProcess class methodsFor:'documentation'!
@@ -695,7 +695,7 @@
 
     "/ UserPreferences current logExecutedOSCommands:true
     UserPreferences current logExecutedOSCommands ifTrue:[
-        Transcript showCR:('OS command: ',self startCommand).  
+        Transcript showCR:('OS command: ',self startCommand asString).  
     ].
     
     Processor