DiffTextView.st
changeset 12383 d1476f5b8c95
parent 8934 7cc2affd9bb9
child 12405 76f9a872362b
child 12455 dab98ae0d660
--- a/DiffTextView.st	Fri Feb 01 16:11:58 2013 +0100
+++ b/DiffTextView.st	Fri Feb 01 16:13:02 2013 +0100
@@ -184,8 +184,8 @@
 
     |text1 text2 diffList|
 
-    text1 := (t1 copyReplaceAll:Character return with:Character cr) asStringCollection.
-    text2 := (t2 copyReplaceAll:Character return with:Character cr) asStringCollection.
+    text1 := t1 asStringCollection.
+    text2 := t2 asStringCollection.
 
     diffList := self diffListFor:text1 and:text2.
 
@@ -583,9 +583,10 @@
 !DiffTextView class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libtool/DiffTextView.st,v 1.56 2009-10-10 10:09:23 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libtool/DiffTextView.st,v 1.57 2013-02-01 15:13:02 cg Exp $'
 !
 
 version_CVS
-    ^ '$Header: /cvs/stx/stx/libtool/DiffTextView.st,v 1.56 2009-10-10 10:09:23 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libtool/DiffTextView.st,v 1.57 2013-02-01 15:13:02 cg Exp $'
 ! !
+