Skip to content

Commit ee3bb38

Browse files
committed
lexer: do not fold semicolons
1 parent 38779a4 commit ee3bb38

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

lexer/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -225,7 +225,7 @@ pub enum Token<'a> {
225225
Record,
226226
#[regex(r"\n+", accept_expression)]
227227
Newline,
228-
#[regex(";+", accept_expression)]
228+
#[regex(";", accept_expression)]
229229
Semicolon,
230230
}
231231

0 commit comments

Comments
 (0)