PositionableStream.st
changeset 1086 7b0641a2e1ef
parent 975 716245c81bc0
child 1295 83f594f05c52
--- a/PositionableStream.st	Thu Mar 07 19:00:58 1996 +0100
+++ b/PositionableStream.st	Thu Mar 07 19:32:41 1996 +0100
@@ -301,14 +301,14 @@
      occurs while filing in"
 
     Smalltalk isInitialized ifFalse:[
-        'fileIn error during startup: ' errorPrint. message errorPrintNL.
+        'POSSTREAM: fileIn error during startup: ' errorPrint. message errorPrintNL.
         ^ #debug
     ].
     "/
     "/ are we in the startup sequence of an image restart ?
     "/
     Processor activeProcessIsSystemProcess ifTrue:[
-        'fileIn error during startup: ' errorPrint. message errorPrintNL.
+        'POSSTREAM: fileIn error during startup: ' errorPrint. message errorPrintNL.
         ^ #continue
     ].
 
@@ -320,7 +320,7 @@
           values:#(#abort #debug #continue)
           default:#continue.
 
-    "Modified: 20.2.1996 / 20:48:45 / cg"
+    "Modified: 7.3.1996 / 19:21:36 / cg"
 !
 
 fileIn
@@ -559,6 +559,6 @@
 !PositionableStream class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libbasic/PositionableStream.st,v 1.40 1996-02-20 19:50:25 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic/PositionableStream.st,v 1.41 1996-03-07 18:32:41 cg Exp $'
 ! !
 PositionableStream initialize!