From fb185e801e7d2002948d0b4e91ee06767e13ed00 Mon Sep 17 00:00:00 2001 From: Titus Wormer Date: Wed, 13 Jul 2022 11:26:22 +0200 Subject: Fix lists in lists and some other bugs --- src/util/skip.rs | 6 ------ 1 file changed, 6 deletions(-) (limited to 'src/util') diff --git a/src/util/skip.rs b/src/util/skip.rs index d7b3896..10ba364 100644 --- a/src/util/skip.rs +++ b/src/util/skip.rs @@ -59,17 +59,11 @@ fn skip_opt_with_direction( }; if events[index].token_type == *current && balance == 0 { - println!( - "close:it! {:?} {:?} {:?}", - events[index].token_type, balance, index - ); index = if forward { index + 1 } else { index - 1 }; - println!("index:break: {:?}", index); break; } index = if forward { index + 1 } else { index - 1 }; - println!("index:loop: {:?}", index); } } -- cgit