diff options
author | herbelin <herbelin@85f007b7-540e-0410-9357-904b9bb8a0f7> | 2007-09-06 07:41:09 +0000 |
---|---|---|
committer | herbelin <herbelin@85f007b7-540e-0410-9357-904b9bb8a0f7> | 2007-09-06 07:41:09 +0000 |
commit | 80dd95f745068cd9a5f3b39746c4aed60a37c6ac (patch) | |
tree | efcf2b637a17147f77ce871a847a853973213645 /proofs | |
parent | cea1b255c95d9fa6cc6c2a391c50e9280066fd8c (diff) |
Uniformisation politique de nommage evd/isevars (evd si evar_defs,
evdref si evar_defs ref)
git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/coq/trunk@10115 85f007b7-540e-0410-9357-904b9bb8a0f7
Diffstat (limited to 'proofs')
-rw-r--r-- | proofs/logic.ml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/proofs/logic.ml b/proofs/logic.ml index d664013c7..4c6e5bacf 100644 --- a/proofs/logic.ml +++ b/proofs/logic.ml @@ -70,9 +70,9 @@ let with_check = Options.with_option check (instead of iterating on the list of identifier to be removed, which forces the user to give them in order). *) let clear_hyps sigma ids gl = - let evd = ref (Evd.create_goal_evar_defs sigma) in - let ngl = Evarutil.clear_hyps_in_evi evd gl ids in - (ngl, evars_of !evd) + let evdref = ref (Evd.create_goal_evar_defs sigma) in + let ngl = Evarutil.clear_hyps_in_evi evdref gl ids in + (ngl, evars_of !evdref) (* The ClearBody tactic *) |