On 2004/07/20, at 10:03, Ilia Alshanetsky wrote:
return; \ switch (Z_TYPE_P(c)) { \ case IS_LONG: \ - RETURN_BOOL(iswhat(Z_LVAL_P(c))); \ + if (Z_LVAL_P(c) < 255 && Z_LVAL_P(c) > -127)
This doesn't seem right.
Most likely: Z_LVAL_P(c) <= 255 && Z_LVAL_P(c) >= -127 ?
Moriyoshi
-- PHP CVS Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php