Daniele Sciascia wrote:
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 ].
Good eye! Paolo _______________________________________________ help-smalltalk mailing list [email protected] http://lists.gnu.org/mailman/listinfo/help-smalltalk
