diff options
| author | Pierre-Marie Pédrot | 2019-11-09 13:50:58 +0100 |
|---|---|---|
| committer | Pierre-Marie Pédrot | 2019-11-09 13:50:58 +0100 |
| commit | 69b91851ed5d18f1ca34ef2597f0cf342c10a124 (patch) | |
| tree | d0a8d17b85df7fff7e3dba7f58bd3a9bc58985df /vernac | |
| parent | f70ec9d4279f7b4b943eb28f15d6e4244bb82fc5 (diff) | |
| parent | 24dcc3e2aaa94ac42480c73a6e7e74f8a4aee3fe (diff) | |
Merge PR #11017: Make [Proof_global.closed_proof_output] opaque
Reviewed-by: ejgallego
Reviewed-by: gares
Reviewed-by: ppedrot
Diffstat (limited to 'vernac')
| -rw-r--r-- | vernac/lemmas.ml | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/vernac/lemmas.ml b/vernac/lemmas.ml index cf322c52d0..865eded545 100644 --- a/vernac/lemmas.ml +++ b/vernac/lemmas.ml @@ -295,16 +295,18 @@ let save_lemma_admitted ~(lemma : t) : unit = | _ -> CErrors.anomaly ~label:"Lemmas.save_proof" (Pp.str "more than one statement.") in let typ = EConstr.Unsafe.to_constr typ in - (* This will warn if the proof is complete *) - let pproofs, _univs = Proof_global.return_proof ~allow_partial:true lemma.proof in + let proof = Proof_global.get_proof lemma.proof in + let pproofs = Proof.partial_proof proof in let sec_vars = if not (get_keep_admitted_vars ()) then None else match Proof_global.get_used_variables lemma.proof, pproofs with | Some _ as x, _ -> x - | None, (pproof, _) :: _ -> + | None, pproof :: _ -> let env = Global.env () in let ids_typ = Environ.global_vars_set env typ in - let ids_def = Environ.global_vars_set env pproof in + (* [pproof] is evar-normalized by [partial_proof]. We don't + count variables appearing only in the type of evars. *) + let ids_def = Environ.global_vars_set env (EConstr.Unsafe.to_constr pproof) in Some (Environ.really_needed env (Id.Set.union ids_typ ids_def)) | _ -> None in let universes = Proof_global.get_initial_euctx lemma.proof in |
