# HG changeset patch # User Claus Gittinger # Date 1526983507 -7200 # Node ID e8fd046ea3ba7e447f29ad0bc70c71d58388dbf1 # Parent 954925788d5d4fc36aa424aaef08cccb652ee893 #FEATURE by cg class: OSProcess changed: #startProcess diff -r 954925788d5d -r e8fd046ea3ba 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