Skip to content
Snippets Groups Projects
Commit 97a5b852 authored by dcw's avatar dcw
Browse files

added underscore in tID at solly's request.

parent 48d76596
No related branches found
No related tags found
No related merge requests found
......@@ -114,7 +114,7 @@ TOKEN nexttok()
if( isalpha( c ) )
{
curtok = tID;
for( pos=0; isalpha(c) || isdigit(c); )
for( pos=0; isalpha(c)||isdigit(c)||c=='_'; )
{
if( pos<MAXIDSIZE-1 )
lexidval[pos++] = c;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment