aboutsummaryrefslogtreecommitdiff
path: root/contrib/xml/xmlcommand.ml
diff options
context:
space:
mode:
authorherbelin2000-12-14 22:27:52 +0000
committerherbelin2000-12-14 22:27:52 +0000
commitebeb914c115092c21012ebaa260e09113c44bbd1 (patch)
tree72aaeb6354a46ade7b720f04c09b5bb59033d264 /contrib/xml/xmlcommand.ml
parented20a4e9c320ae4bb2f724d181fbb351079d00b2 (diff)
Bug sur commit précédent
git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/coq/trunk@1114 85f007b7-540e-0410-9357-904b9bb8a0f7
Diffstat (limited to 'contrib/xml/xmlcommand.ml')
-rw-r--r--contrib/xml/xmlcommand.ml16
1 files changed, 8 insertions, 8 deletions
diff --git a/contrib/xml/xmlcommand.ml b/contrib/xml/xmlcommand.ml
index d053ed7453..cbb25bed67 100644
--- a/contrib/xml/xmlcommand.ml
+++ b/contrib/xml/xmlcommand.ml
@@ -45,12 +45,12 @@ let ext_of_tag =
| Variable -> "var"
;;
-(* Internally, for Coq V7, params of inductive types are associated
- not to the whole block of mutual inductive (as it was in V6) but to
- each member of the block; but externally, params remain shared by
- all members in the concrete syntax; the following function checks
- that the parameters of each inductive of a same block are all the
- same, then returns this number; it fails otherwise *)
+(* Internally, for Coq V7, params of inductive types are associated *)
+(* not to the whole block of mutual inductive (as it was in V6) but to *)
+(* each member of the block; but externally, all params are required *)
+(* to be the same; the following function checks that the parameters *)
+(* of each inductive of a same block are all the same, then returns *)
+(* this number; it fails otherwise *)
let extract_nparams pack =
let module D = Declarations in
let module U = Util in
@@ -58,11 +58,11 @@ let extract_nparams pack =
let {D.mind_nparams=nparams0} = pack.(0) in
let arity0 = D.mind_user_arity pack.(0) in
- let params0 = S.decompose_prod_n_assum nparams0 arity0 in
+ let params0, _ = S.decompose_prod_n_assum nparams0 arity0 in
for i = 1 to Array.length pack - 1 do
let {D.mind_nparams=nparamsi} = pack.(i) in
let arityi = D.mind_user_arity pack.(i) in
- let paramsi = S.decompose_prod_n_assum nparamsi arityi in
+ let paramsi, _ = S.decompose_prod_n_assum nparamsi arityi in
if params0 <> paramsi then U.error "Cannot convert a block of inductive definitions with parameters specific to each inductive to a block of mutual inductive definitions with parameters global to the whole block"
done;
nparams0