PipeStream.st
changeset 21791 cec9749a6781
parent 21231 985ae4f2c424
child 22440 a5f9b3aed756
--- a/PipeStream.st	Mon Jun 12 12:41:34 2017 +0200
+++ b/PipeStream.st	Mon Jun 12 12:41:35 2017 +0200
@@ -1,5 +1,3 @@
-"{ Encoding: utf8 }"
-
 "
  COPYRIGHT (c) 1989 by Claus Gittinger
 	      All Rights Reserved
@@ -224,7 +222,7 @@
 	|p|
 
 	p := PipeStream bidirectionalFor:'cat -u'.
-	p nextPutAll:'Wer ist der Bürgermeister von Wesel'; cr.
+	p nextPutAll:'Wer ist der Bürgermeister von Wesel'; cr.
 	Transcript showCR:p nextLine.
 	p close
     "
@@ -616,7 +614,7 @@
     hitEOF := false.
     binary := false.
 
-    osProcess := OSProcess new 
+    osProcess := OSProcess new
                     command:aCommandString;
                     directory:aDirectory.
 
@@ -685,7 +683,7 @@
     ].
 
     result ifTrue:[
-        "successfull creation of subprocesss"
+        "successful creation of subprocess"
         handle := myPipeEnd handle.
         handleType := myPipeEnd handleType.
         myPipeEnd unregisterForFinalization.    "make sure filedesciptor is not closed by finalizer"
@@ -702,9 +700,10 @@
 
     self registerForFinalization.
 
-    "Modified: / 23.4.1996 / 17:05:59 / stefan"
-    "Modified: / 28.1.1998 / 14:47:34 / md"
-    "Created: / 19.5.1999 / 12:28:54 / cg"
+    "Modified: / 23-04-1996 / 17:05:59 / stefan"
+    "Modified: / 28-01-1998 / 14:47:34 / md"
+    "Created: / 19-05-1999 / 12:28:54 / cg"
+    "Modified (format): / 12-06-2017 / 12:31:24 / mawalch"
 !
 
 terminatePipeCommand