aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorGravatar herbelin <herbelin@85f007b7-540e-0410-9357-904b9bb8a0f7>2001-12-17 19:35:34 +0000
committerGravatar herbelin <herbelin@85f007b7-540e-0410-9357-904b9bb8a0f7>2001-12-17 19:35:34 +0000
commitb75ec1ff2208f833fca4fb86ca0d8196e08a033e (patch)
tree34c4144428340eb56025672a09c49630c1c8ce90
parent0926a792f695d8ab9bcd4125156d97d8938c6e76 (diff)
Mauvais nom d'erreur d'échec de nth
git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/coq/trunk@2302 85f007b7-540e-0410-9357-904b9bb8a0f7
-rw-r--r--proofs/clenv.ml4
1 files changed, 2 insertions, 2 deletions
diff --git a/proofs/clenv.ml b/proofs/clenv.ml
index 1a2ebd32f..43a07aa1a 100644
--- a/proofs/clenv.ml
+++ b/proofs/clenv.ml
@@ -936,8 +936,8 @@ let clenv_match_args s clause =
str " occurs more than once in binding");
(try
List.nth mvs (n-1)
- with Failure "item" -> errorlabstrm "clenv_match_args"
- (str"No such binder"))
+ with Failure "nth" -> errorlabstrm "clenv_match_args"
+ (str "No such binder"))
| Com -> anomaly "No free term in clenv_match_args")
in
let k_typ = w_hnf_constr clause.hook (clenv_instance_type clause k)