Skip to content

Commit

Permalink
Fix debug printer on binder with evars
Browse files Browse the repository at this point in the history
  • Loading branch information
SkySkimmer committed Dec 20, 2024
1 parent ee6fffd commit f33d20f
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion engine/eConstr.ml
Original file line number Diff line number Diff line change
Expand Up @@ -1020,7 +1020,9 @@ let noccurn sigma n term =
| _ -> Expand.iter_with_binders sigma succ occur_rec n h knd
in
let h, term = Expand.make term in
try occur_rec n h term; true with LocalOccur -> false
try occur_rec n h term; true with
| LocalOccur -> false
| _ when !Flags.in_debugger -> false

let noccur_between sigma n m term =
let rec occur_rec n h c =
Expand Down

0 comments on commit f33d20f

Please sign in to comment.