diff options
| author | herbelin | 2013-01-29 18:15:16 +0000 |
|---|---|---|
| committer | herbelin | 2013-01-29 18:15:16 +0000 |
| commit | 95a75639355c20cb39528f4a9b68f3060a659f88 (patch) | |
| tree | a80a77a0ba7171fe5f0ad05a9c7f97121ec4dbed /proofs | |
| parent | fc6496dcc326852533ea4d860cdea85c6ee79b3b (diff) | |
Fixing bug #2969 (admit failing after Grab Existential Variables due
to inconsistency in using evar_hyps which is unfiltered and evar_env
which is filtered).
git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/coq/trunk@16175 85f007b7-540e-0410-9357-904b9bb8a0f7
Diffstat (limited to 'proofs')
| -rw-r--r-- | proofs/goal.ml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/proofs/goal.ml b/proofs/goal.ml index 1a7e9a9830..a2efc10f02 100644 --- a/proofs/goal.ml +++ b/proofs/goal.ml @@ -474,7 +474,7 @@ module V82 = struct (* Old style hyps primitive *) let hyps evars gl = let evi = content evars gl in - Evd.evar_hyps evi + Evd.evar_filtered_hyps evi (* Access to ".evar_concl" *) let concl evars gl = |
