aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/construct/code_indented.rs2
-rw-r--r--src/tokenizer.rs2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/construct/code_indented.rs b/src/construct/code_indented.rs
index f2644d4..ec55aa6 100644
--- a/src/construct/code_indented.rs
+++ b/src/construct/code_indented.rs
@@ -146,7 +146,7 @@ pub fn after(tokenizer: &mut Tokenizer) -> State {
/// | bbb
/// ```
pub fn further_start(tokenizer: &mut Tokenizer) -> State {
- if tokenizer.lazy {
+ if tokenizer.lazy || tokenizer.pierce {
return State::Nok;
}
diff --git a/src/tokenizer.rs b/src/tokenizer.rs
index aca8ec2..5095abb 100644
--- a/src/tokenizer.rs
+++ b/src/tokenizer.rs
@@ -372,7 +372,7 @@ impl<'a> Tokenizer<'a> {
},
map: EditMap::new(),
interrupt: false,
- pierce: true,
+ pierce: false,
concrete: false,
lazy: false,
resolvers: vec![],