diff options
author | Pierre-Marie Pédrot <pierre-marie.pedrot@inria.fr> | 2018-05-28 13:38:23 +0200 |
---|---|---|
committer | Pierre-Marie Pédrot <pierre-marie.pedrot@inria.fr> | 2018-05-28 13:38:23 +0200 |
commit | 81535edc4b21015bd63d23e57ca9d707b4b71f6b (patch) | |
tree | 6a76bc46b66cade1b53d2c878ae2aa7c5e1f5dc5 /plugins/firstorder | |
parent | b2f746e41abf53fc481f90804ba4d70edd73fc86 (diff) | |
parent | dfaf7e1ca5aebfdfbef5f32d235a948335f7fda0 (diff) |
Merge PR #7419: Remove 100 occurrences of Evd.empty
Diffstat (limited to 'plugins/firstorder')
-rw-r--r-- | plugins/firstorder/sequent.ml | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/plugins/firstorder/sequent.ml b/plugins/firstorder/sequent.ml index 0c752d4a4..2a527da9b 100644 --- a/plugins/firstorder/sequent.ml +++ b/plugins/firstorder/sequent.ml @@ -229,7 +229,9 @@ let extend_with_auto_hints env sigma l seq = let print_cmap map= let print_entry c l s= - let xc=Constrextern.extern_constr false (Global.env ()) Evd.empty (EConstr.of_constr c) in + let env = Global.env () in + let sigma = Evd.from_env env in + let xc=Constrextern.extern_constr false env sigma (EConstr.of_constr c) in str "| " ++ prlist Printer.pr_global l ++ str " : " ++ |