Probably is obvious, or I don't seeing something but.....

I don't know, if quite is True, why you set quiet to true, and why change verbose when verbose is not necessary.

If quiet is false, directly is verbose.

                        

El 31/05/2008, a las 18:00, Daniele Sciascia escribió:

I noticed noticed a small error (probably a copy paste error) in Convert.st. When parsing arguments it sets wrong values for quiet and verbose variables:

opt = 'quiet' ifTrue: [
                quiet := false.
                verbose := true ].

while it should be:

opt = 'quiet' ifTrue: [
                quiet := true.
                verbose := false ].



Daniele



_______________________________________________
help-smalltalk mailing list
[email protected]
http://lists.gnu.org/mailman/listinfo/help-smalltalk



_______________________________________________
help-smalltalk mailing list
[email protected]
http://lists.gnu.org/mailman/listinfo/help-smalltalk

Reply via email to