Skip to content

Commit

Permalink
#323: fixes a problem of a comment end.
Browse files Browse the repository at this point in the history
  • Loading branch information
Kray-G committed Aug 20, 2021
1 parent 768e2f1 commit 647a778
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/lexer.c
Original file line number Diff line number Diff line change
Expand Up @@ -1144,8 +1144,9 @@ int kx_yylex()
kx_lex_next(kx_lexinfo);
break;
}
} else {
kx_lex_next(kx_lexinfo);
}
kx_lex_next(kx_lexinfo);
}
goto HEAD_OF_YYLEX;
}
Expand Down

0 comments on commit 647a778

Please sign in to comment.