adjust iswalnum to admit tail call to iswalpha
use of || forces the caller to boolean-normalize the result of iswalpha to 0 or 1, requiring code after the call returns and thus precluding a tail call. since this isn't actually needed, don't write it that way.
R
Rich Felker committed
d2f20c49dfb556d9096251aa0acd92ca907b3400
Parent: 67219f0