From 11304728b6607bc2a8d41a640308f3379a25b933 Mon Sep 17 00:00:00 2001 From: Titus Wormer Date: Mon, 25 Jul 2022 15:29:11 +0200 Subject: Improve performance w/ a single feed loop --- src/construct/html_flow.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/construct/html_flow.rs') diff --git a/src/construct/html_flow.rs b/src/construct/html_flow.rs index 7a7c25f..add2308 100644 --- a/src/construct/html_flow.rs +++ b/src/construct/html_flow.rs @@ -924,13 +924,13 @@ fn continuation_close(tokenizer: &mut Tokenizer, code: Code, info: Info) -> Stat /// > | /// ^ /// ``` -fn continuation_after(tokenizer: &mut Tokenizer, code: Code) -> State { +fn continuation_after(tokenizer: &mut Tokenizer, _code: Code) -> State { tokenizer.exit(Token::HtmlFlow); // Feel free to interrupt. tokenizer.interrupt = false; // No longer concrete. tokenizer.concrete = false; - State::Ok(if matches!(code, Code::None) { 0 } else { 1 }) + State::Ok(0) } /// Before a line ending, expecting a blank line. -- cgit