FileStream.st
changeset 23045 774a133e168c
parent 22944 0f5a7faced80
child 23165 0a6eb6d342d8
--- a/FileStream.st	Thu May 31 11:56:57 2018 +0200
+++ b/FileStream.st	Thu May 31 12:17:03 2018 +0200
@@ -397,7 +397,7 @@
     "create atomically a new file and return the file stream - use this for temporary files.
      The created file has the name '/tmp/stxtmp_xx_nn' where xx is our
      unix process id, and nn is a unique number, incremented with every call to this method.
-     If any of the environment variables ST_TMPDIR or TMPDIR is set,
+     If any of the environment variables STX_TMPDIR, ST_TMPDIR, TMPDIR is set,
      its value defines the temp directory."
 
     ^ self newTemporaryIn:Filename tempDirectory
@@ -406,6 +406,8 @@
      FileStream newTemporary
      FileStream newTemporary
     "
+
+    "Modified (comment): / 31-05-2018 / 09:58:04 / Claus Gittinger"
 !
 
 newTemporaryIn:aDirectoryOrNil
@@ -532,7 +534,7 @@
     "create atomically a new file and return the file stream - use this for temporary files.
      The created file has the name '/tmp/stxtmp_xx_nn' where xx is our
      unix process id, and nn is a unique number, incremented with every call to this method.
-     If any of the environment variables ST_TMPDIR or TMPDIR is set,
+     If any of the environment variables STX_TMPDIR, ST_TMPDIR, TMPDIR is set,
      its value defines the temp directory."
 
     ^ self newTemporaryIn:Filename tempDirectory withSuffix:aString
@@ -540,6 +542,8 @@
     "
      FileStream newTemporaryWithSuffix:'txt'
     "
+
+    "Modified (comment): / 31-05-2018 / 09:58:01 / Claus Gittinger"
 !
 
 oldFileNamed:filename