Skip to content

Commit

Permalink
quiet overactive assert failing on dirty paths (fix #34)
Browse files Browse the repository at this point in the history
  • Loading branch information
dm0n3y committed Nov 4, 2024
1 parent 9d478a1 commit d7793b0
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions src/core/structure/Cell.re
Original file line number Diff line number Diff line change
Expand Up @@ -290,10 +290,9 @@ module Space = {
let shift = 2 * List.length(Meld.tokens(m));
Marks.map_paths(
fun
| [] => {
assert(r.meld == None);
[shift];
}
| [] =>
// assert(r.meld == None);
[shift]
| [hd, ...tl] => [hd + shift, ...tl],
);
}
Expand Down

0 comments on commit d7793b0

Please sign in to comment.