aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/construct/partial_label.rs3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/construct/partial_label.rs b/src/construct/partial_label.rs
index 255fde1..f56a591 100644
--- a/src/construct/partial_label.rs
+++ b/src/construct/partial_label.rs
@@ -197,8 +197,9 @@ pub fn eol_after(tokenizer: &mut Tokenizer) -> State {
/// | b]
/// ```
pub fn at_blank_line(tokenizer: &mut Tokenizer) -> State {
- tokenizer.tokenize_state.marker = 0;
tokenizer.tokenize_state.connect = false;
+ tokenizer.tokenize_state.seen = false;
+ tokenizer.tokenize_state.size = 0;
State::Nok
}