diff options
| author | herbelin | 2005-03-15 16:53:43 +0000 |
|---|---|---|
| committer | herbelin | 2005-03-15 16:53:43 +0000 |
| commit | 74a7a5a01427c92ec036f3870cbd0309dabd725f (patch) | |
| tree | 5e5897464cb5e8a5ec25808f08e75bb4c47949fb | |
| parent | 4a3a43565c54c3d987b57ecc4a8062777937222b (diff) | |
Unsharing before exportation to ensure uniqueness of xml id's
git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/coq/trunk@6837 85f007b7-540e-0410-9357-904b9bb8a0f7
| -rw-r--r-- | contrib/xml/cic2Xml.ml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/contrib/xml/cic2Xml.ml b/contrib/xml/cic2Xml.ml index 2e187ecc73..f04a03f9fd 100644 --- a/contrib/xml/cic2Xml.ml +++ b/contrib/xml/cic2Xml.ml @@ -8,7 +8,7 @@ let print_xml_term ch env sigma cic = let acic = Cic2acic.acic_of_cic_context' true seed ids_to_terms constr_to_ids ids_to_father_ids ids_to_inner_sorts ids_to_inner_types [] - env [] sigma cic None in + env [] sigma (Unshare.unshare cic) None in let xml = Acic2Xml.print_term ids_to_inner_sorts acic in Xml.pp_ch xml ch ;; |
