aboutsummaryrefslogtreecommitdiff
path: root/contrib/xml/xmlcommand.ml
diff options
context:
space:
mode:
authorherbelin2004-10-11 10:25:50 +0000
committerherbelin2004-10-11 10:25:50 +0000
commita807069e370eb1a8f4d7f4e8b72449017a68d891 (patch)
treea885a083ea60f74a29c72b7bac0217d403c5621d /contrib/xml/xmlcommand.ml
parent60fd16e201817751f500c25852c0835150cab528 (diff)
Suppression IsConjecture redondant avec Conjectural
git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/coq/trunk@6198 85f007b7-540e-0410-9357-904b9bb8a0f7
Diffstat (limited to 'contrib/xml/xmlcommand.ml')
-rw-r--r--contrib/xml/xmlcommand.ml2
1 files changed, 0 insertions, 2 deletions
diff --git a/contrib/xml/xmlcommand.ml b/contrib/xml/xmlcommand.ml
index 2157dab56f..ba9e87e0ba 100644
--- a/contrib/xml/xmlcommand.ml
+++ b/contrib/xml/xmlcommand.ml
@@ -455,7 +455,6 @@ let kind_of_variable id =
| DK.IsAssumption DK.Logical -> "VARIABLE","Hypothesis"
| DK.IsAssumption DK.Conjectural -> "VARIABLE","Conjecture"
| DK.IsDefinition -> "VARIABLE","LocalDefinition"
- | DK.IsConjecture -> "VARIABLE","Conjecture"
| DK.IsProof DK.LocalStatement -> "VARIABLE","LocalFact"
;;
@@ -466,7 +465,6 @@ let kind_of_constant kn =
| DK.IsAssumption DK.Logical -> "AXIOM","Axiom"
| DK.IsAssumption DK.Conjectural -> "AXIOM","Conjecture"
| DK.IsDefinition -> "DEFINITION","Definition"
- | DK.IsConjecture -> "THEOREM","Conjecture"
| DK.IsProof thm -> "THEOREM",kind_of_theorem thm
;;