aboutsummaryrefslogtreecommitdiff
path: root/engine/proofview.ml
diff options
context:
space:
mode:
authorJim Fehrle2019-07-04 19:49:28 -0700
committerJim Fehrle2019-09-19 12:36:47 -0700
commit0074c7201e77ae27fa1bd79e05a084729266c55b (patch)
tree75b1301fa9a031d1588579aea4db2e8e675b016a /engine/proofview.ml
parentc5ecc185ccb804e02ef78012fc6ae38c092cc80a (diff)
Fix #10399: dependent evars line empty
This was broken by change 6608f64.
Diffstat (limited to 'engine/proofview.ml')
-rw-r--r--engine/proofview.ml2
1 files changed, 1 insertions, 1 deletions
diff --git a/engine/proofview.ml b/engine/proofview.ml
index 1f076470c1..d6f5aab1d1 100644
--- a/engine/proofview.ml
+++ b/engine/proofview.ml
@@ -1247,7 +1247,7 @@ module V82 = struct
let top_evars initial { solution=sigma; } =
let evars_of_initial (c,_) =
- Evar.Set.elements (Evd.evars_of_term sigma c)
+ Evar.Set.elements (Evd.evar_nodes_of_term c)
in
CList.flatten (CList.map evars_of_initial initial)