# HG changeset patch # User Stefan Vogel # Date 1237384012 -3600 # Node ID e086e0cb081420bcde01d888334dbc8d053affd9 # Parent 1d9d6c39b0502beb341e3890a46d6f310fbd8475 new: #sync and #syncData diff -r 1d9d6c39b050 -r e086e0cb0814 Stream.st --- a/Stream.st Wed Mar 18 14:46:36 2009 +0100 +++ b/Stream.st Wed Mar 18 14:46:52 2009 +0100 @@ -194,7 +194,6 @@ ^ ChunkSeparator ! ! - !Stream methodsFor:'accessing'! contents @@ -2783,6 +2782,11 @@ to make internalStreams protocol compatible with externalStreams" ! +syncData + "write out all unbuffered data - ignored here, but added + to make internalStreams protocol compatible with externalStreams" +! + tab "append a tab-character to the stream. This is only allowed, if the receiver supports writing." @@ -2907,7 +2911,7 @@ !Stream class methodsFor:'documentation'! version - ^ '$Header: /cvs/stx/stx/libbasic/Stream.st,v 1.162 2009-03-05 19:13:39 cg Exp $' + ^ '$Header: /cvs/stx/stx/libbasic/Stream.st,v 1.163 2009-03-18 13:46:52 stefan Exp $' ! ! Stream initialize!