Skip to content

Commit 193b48e

Browse files
committed
Merge branch 'master' into blind-zippers
2 parents 11ac984 + af08039 commit 193b48e

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

src/product_zipper.rs

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -266,7 +266,9 @@ impl<'trie, V: Clone + Send + Sync + Unpin + 'trie, A: Allocator + 'trie> Zipper
266266
ascended
267267
}
268268
fn ascend_byte(&mut self) -> bool {
269-
self.ascend(1) == 1
269+
let ascended = self.z.ascend_byte();
270+
self.fix_after_ascend();
271+
ascended
270272
}
271273
fn ascend_until(&mut self) -> usize {
272274
let ascended = self.z.ascend_until();

0 commit comments

Comments
 (0)