diff -r 1232fc152674 -r 9d906f0b71eb SmallInteger.st --- a/SmallInteger.st Sun Apr 26 13:23:27 2015 +0200 +++ b/SmallInteger.st Sun Apr 26 13:30:22 2015 +0200 @@ -4590,7 +4590,6 @@ %{ /* NOCONTEXT */ #ifndef __SCHTEAM__ - if (__bothSmallInteger(min, max)) { # if TAG_INT == 1 // tag bit does not change the magnitude order @@ -4614,7 +4613,7 @@ RETURN ( true ); # endif } -#endif +#endif /* not SCHTEAM */ %}. (self < min) ifTrue:[^ false]. (self > max) ifTrue:[^ false]. @@ -4835,11 +4834,11 @@ !SmallInteger class methodsFor:'documentation'! version - ^ '$Header: /cvs/stx/stx/libbasic/SmallInteger.st,v 1.233 2015-04-21 19:41:11 cg Exp $' + ^ '$Header: /cvs/stx/stx/libbasic/SmallInteger.st,v 1.234 2015-04-26 11:30:22 cg Exp $' ! version_CVS - ^ '$Header: /cvs/stx/stx/libbasic/SmallInteger.st,v 1.233 2015-04-21 19:41:11 cg Exp $' + ^ '$Header: /cvs/stx/stx/libbasic/SmallInteger.st,v 1.234 2015-04-26 11:30:22 cg Exp $' ! !