1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
|
goto checktrail;
}
p++;
len--;
while(0) {
checktrail:
if ((c>='0')&&(c<='9')||(c>='A')&&(c<='Z')||(c>='a')&&(c<='z')||(c=='_')) {
/* bareword prefixed by Nan, Inf, etc. */
acceptState = INITIAL;
}
goto endgame;
}
}
|
|
|
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
|
goto checktrail;
}
p++;
len--;
while(0) {
checktrail:
if (isalnum(UCHAR(c))||(c=='_')) {
/* bareword prefixed by Nan, Inf, etc. */
acceptState = INITIAL;
}
goto endgame;
}
}
|