# HG changeset patch # User Stefan Vogel # Date 1170688934 -3600 # Node ID 95943c1bc2894211451813c6c88fd0f4d3a88e37 # Parent 92c7128604a4c10171e411733027b3e132e8cf3e Ignore empty chunks when reading from changes file (the last chunk - newline after last ! is empty). diff -r 92c7128604a4 -r 95943c1bc289 ChangesBrowser.st --- a/ChangesBrowser.st Mon Feb 05 14:06:06 2007 +0100 +++ b/ChangesBrowser.st Mon Feb 05 16:22:14 2007 +0100 @@ -5909,7 +5909,7 @@ sawExcla := inStream peekFor:excla. chunkText := fullChunkText := inStream nextChunk. - chunkText notNil ifTrue:[ + chunkText notEmptyOrNil ifTrue:[ self processChunk. ] ]. @@ -5921,5 +5921,5 @@ !ChangesBrowser class methodsFor:'documentation'! version - ^ '$Header: /cvs/stx/stx/libtool/ChangesBrowser.st,v 1.363 2007-02-05 13:06:06 stefan Exp $' + ^ '$Header: /cvs/stx/stx/libtool/ChangesBrowser.st,v 1.364 2007-02-05 15:22:14 stefan Exp $' ! !