# HG changeset patch # User Claus Gittinger # Date 1378036990 -7200 # Node ID ff46ea29cb9a3fce11c6b2f6fbc9390eb94e56f8 # Parent 510fbf53592c1ea0dc6c65aefd50f1c1da15981c class: Tools::CodeView2 diff -r 510fbf53592c -r ff46ea29cb9a Tools__CodeView2.st --- a/Tools__CodeView2.st Sun Sep 01 14:02:40 2013 +0200 +++ b/Tools__CodeView2.st Sun Sep 01 14:03:10 2013 +0200 @@ -3159,7 +3159,7 @@ line notNil ifTrue:[ indent := line indexOfNonSeparatorStartingAt:1. - "beggining od block" + "beggining of block" line notEmptyOrNil ifTrue:[ line last == $[ ifTrue:[ indent := indent + 4. @@ -3171,7 +3171,7 @@ ]. ]. indent ~~ 0 ifTrue:[ - ^ indent - 1 + ^ indent - 1 ] ] ]. @@ -3614,15 +3614,15 @@ !CodeView2 class methodsFor:'documentation'! version - ^ '$Header: /cvs/stx/stx/libtool/Tools__CodeView2.st,v 1.115 2013-08-31 22:34:01 cg Exp $' + ^ '$Header: /cvs/stx/stx/libtool/Tools__CodeView2.st,v 1.116 2013-09-01 12:03:10 cg Exp $' ! version_CVS - ^ '$Header: /cvs/stx/stx/libtool/Tools__CodeView2.st,v 1.115 2013-08-31 22:34:01 cg Exp $' + ^ '$Header: /cvs/stx/stx/libtool/Tools__CodeView2.st,v 1.116 2013-09-01 12:03:10 cg Exp $' ! version_SVN - ^ '$Id: Tools__CodeView2.st,v 1.115 2013-08-31 22:34:01 cg Exp $' + ^ '$Id: Tools__CodeView2.st,v 1.116 2013-09-01 12:03:10 cg Exp $' ! !