aboutsummaryrefslogtreecommitdiff
path: root/contrib/xml
diff options
context:
space:
mode:
authorherbelin2006-03-01 17:34:36 +0000
committerherbelin2006-03-01 17:34:36 +0000
commit2292dd89b9b36ec8c865ab67e5291088bfcc4806 (patch)
tree8f3b52d8ed240ae3f1994085872c7d9416098004 /contrib/xml
parent60dc2f1f6f6b0ec0d9c0826c320e08930f3a4d93 (diff)
Correction bug #842 (rename d'une hyp du contexte)
git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/coq/trunk@8107 85f007b7-540e-0410-9357-904b9bb8a0f7
Diffstat (limited to 'contrib/xml')
-rw-r--r--contrib/xml/proof2aproof.ml2
1 files changed, 1 insertions, 1 deletions
diff --git a/contrib/xml/proof2aproof.ml b/contrib/xml/proof2aproof.ml
index f78df74789..dff546c948 100644
--- a/contrib/xml/proof2aproof.ml
+++ b/contrib/xml/proof2aproof.ml
@@ -117,7 +117,7 @@ let extract_open_proof sigma pf =
(fun id ->
(* Section variables are in the [id] list but are not *)
(* lambda abstracted in the term [vl] *)
- try let n = Util.list_index id vl in (n,id)
+ try let n = Logic.proof_variable_index id vl in (n,id)
with Not_found -> failwith "caught")
(*CSC: the above function must be modified such that when it is found *)
(*CSC: it becomes a Rel; otherwise a Var. Then it can be already used *)