Skip to content

Commit b81500b

Browse files
committed
fix bug in SimpleTextLexer
1 parent 89fc0da commit b81500b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

library/core/TextLexer.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ namespace gf {
9393

9494
const char* word_start = current();
9595

96-
while (!at_end() && !is_space(peek()) && peek() != '\n' && peek() != '<') {
96+
while (!at_end() && !is_space(peek()) && peek() != '\n') {
9797
advance();
9898
}
9999

0 commit comments

Comments
 (0)