ISALNUM 467 encoding.c if (!ISALNUM(*s)) *s = '_';
ISALNUM 1246 encoding.c while (*++s && (ISALNUM(*s) || *s == '_')) {
ISALNUM 1267 encoding.c if (!ISALNUM(*s)) *s = '_';
ISALNUM 11727 ext/ripper/ripper.c while ((*str == '-' || *str == '_' || ISALNUM(*str)) && ++str < send);
ISALNUM 12696 ext/ripper/ripper.c if (c == -1 || !ISALNUM(c)) {
ISALNUM 6327 ext/ripper/ripper.y while ((*str == '-' || *str == '_' || ISALNUM(*str)) && ++str < send);
ISALNUM 7296 ext/ripper/ripper.y if (c == -1 || !ISALNUM(c)) {
ISALNUM 11659 parse.c while ((*str == '-' || *str == '_' || ISALNUM(*str)) && ++str < send);
ISALNUM 12628 parse.c if (c == -1 || !ISALNUM(c)) {
ISALNUM 6327 parse.y while ((*str == '-' || *str == '_' || ISALNUM(*str)) && ++str < send);
ISALNUM 7296 parse.y if (c == -1 || !ISALNUM(c)) {
ISALNUM 507 ruby.c else if (*p != '_' && !ISALNUM(*p)) {
ISALNUM 1161 win32/win32.c while (*++ptr == '_' || ISALNUM(*ptr));