FileApplicationNoteBook.st
changeset 4616 e877ab5a2237
parent 4612 d1f3cd90cb27
child 4620 59601a37cc0b
--- a/FileApplicationNoteBook.st	Wed Feb 26 15:48:58 2003 +0100
+++ b/FileApplicationNoteBook.st	Wed Feb 26 17:23:22 2003 +0100
@@ -3937,7 +3937,10 @@
     hashStream := MD5Stream new.
     contents isStringCollection ifTrue:[
         contents do:[:eachLine |
-            hashStream nextPutAll:(eachLine string withTabs).
+            eachLine notNil ifTrue:[
+                hashStream nextPutAll:(eachLine string withTabs).
+            ].
+            hashStream nextPut:Character cr.
         ].
     ] ifFalse:[
         hashStream nextPutAll:(contents string).
@@ -4965,5 +4968,5 @@
 !FileApplicationNoteBook class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libtool/FileApplicationNoteBook.st,v 1.63 2003-02-26 14:39:43 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libtool/FileApplicationNoteBook.st,v 1.64 2003-02-26 16:23:22 cg Exp $'
 ! !