preset: fix multiline comments
This commit is contained in:
parent
2cb41d16b2
commit
88080fe059
|
@ -120,9 +120,11 @@ fn parse_tokens(mut span: Span) -> IResult<Span, Vec<Token>> {
|
|||
}
|
||||
if let Ok((input, _)) = multiline_comment(span) {
|
||||
span = input;
|
||||
continue;
|
||||
}
|
||||
if let Ok((input, _)) = single_comment(span) {
|
||||
span = input;
|
||||
continue;
|
||||
}
|
||||
let (input, token) = parse_key_value(span)?;
|
||||
span = input;
|
||||
|
|
Loading…
Reference in a new issue