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) {
|
if let Ok((input, _)) = multiline_comment(span) {
|
||||||
span = input;
|
span = input;
|
||||||
|
continue;
|
||||||
}
|
}
|
||||||
if let Ok((input, _)) = single_comment(span) {
|
if let Ok((input, _)) = single_comment(span) {
|
||||||
span = input;
|
span = input;
|
||||||
|
continue;
|
||||||
}
|
}
|
||||||
let (input, token) = parse_key_value(span)?;
|
let (input, token) = parse_key_value(span)?;
|
||||||
span = input;
|
span = input;
|
||||||
|
|
Loading…
Reference in a new issue