On Feb 28, 2010, at 10:28 PM, Lukas Renggli wrote:

>>> I've commented
>> 
>> commited :) I guess I saw in on the rss feed :)
> 
> Yeah.
> 
>> can we get rid of the
>> 
>> :ind |
> 
> Select 'ind', in the context menu select 'refactor source', 'rename
> temporary'. Then give the new name 'index', press 'ok'. Done.

no i meant

self class isVariable & anotherObject class isVariable
                ifTrue: [ 1 to: (self basicSize min: anotherObject basicSize) 
do: [
:ind | self basicAt: ind put: (anotherObject basicAt: ind) ] ]

->

self class isVariable & anotherObject class isVariable
                ifTrue: [ 1 to: (self basicSize min: anotherObject basicSize) 
                                do: [ :ind | self basicAt: ind put: 
(anotherObject basicAt: ind) ] ]

or 

self class isVariable & anotherObject class isVariable
                ifTrue: [ 1 to: (self basicSize min: anotherObject basicSize) 
do: [:ind | 
                                                self basicAt: ind put: 
(anotherObject basicAt: ind) ] ]

but not starting 

:ind | at the beginning of the line.


> 
> Lukas
> 
> -- 
> Lukas Renggli
> http://www.lukas-renggli.ch
> 
> _______________________________________________
> Pharo-project mailing list
> [email protected]
> http://lists.gforge.inria.fr/cgi-bin/mailman/listinfo/pharo-project


_______________________________________________
Pharo-project mailing list
[email protected]
http://lists.gforge.inria.fr/cgi-bin/mailman/listinfo/pharo-project

Reply via email to