aboutsummaryrefslogtreecommitdiffhomepage
path: root/proofs/goal.ml
diff options
context:
space:
mode:
authorGravatar herbelin <herbelin@85f007b7-540e-0410-9357-904b9bb8a0f7>2013-01-29 18:15:05 +0000
committerGravatar herbelin <herbelin@85f007b7-540e-0410-9357-904b9bb8a0f7>2013-01-29 18:15:05 +0000
commit4929fa8a5b65bd90207f3a943227ed09a7ed0b6c (patch)
treeaad22ead3b6b4f7abbf16c7eb70daec19abab457 /proofs/goal.ml
parent250a3dfc1f46f9f705c471445a416476099ecc5d (diff)
Renaming evar_env/evar_unfiltered_env into evar_filtered_env/evar_env
for better uniformity of naming policy. git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/coq/trunk@16172 85f007b7-540e-0410-9357-904b9bb8a0f7
Diffstat (limited to 'proofs/goal.ml')
-rw-r--r--proofs/goal.ml6
1 files changed, 3 insertions, 3 deletions
diff --git a/proofs/goal.ml b/proofs/goal.ml
index a9aa4fa59..df3f6e0db 100644
--- a/proofs/goal.ml
+++ b/proofs/goal.ml
@@ -464,17 +464,17 @@ module V82 = struct
(* Old style env primitive *)
let env evars gl =
let evi = content evars gl in
- Evd.evar_env evi
+ Evd.evar_filtered_env evi
(* For printing *)
let unfiltered_env evars gl =
let evi = content evars gl in
- Evd.evar_unfiltered_env evi
+ Evd.evar_env evi
(* Old style hyps primitive *)
let hyps evars gl =
let evi = content evars gl in
- evi.Evd.evar_hyps
+ Evd.evar_hyps evi
(* Access to ".evar_concl" *)
let concl evars gl =