aboutsummaryrefslogtreecommitdiff
path: root/tactics
diff options
context:
space:
mode:
authorherbelin2000-11-29 11:32:32 +0000
committerherbelin2000-11-29 11:32:32 +0000
commitb8e689a57740fc8f4c881e9ad9c63966cc39e4c7 (patch)
tree7375be4a80a7340b37203655311f7d7ae2693096 /tactics
parentadf159a7711efae7bff6a07943b9854639cac9e2 (diff)
Nouveau long long avec Coq en tĂȘte
git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/coq/trunk@1015 85f007b7-540e-0410-9357-904b9bb8a0f7
Diffstat (limited to 'tactics')
-rw-r--r--tactics/equality.ml2
-rw-r--r--tactics/tactics.ml7
2 files changed, 5 insertions, 4 deletions
diff --git a/tactics/equality.ml b/tactics/equality.ml
index 2e8ce398ee..6ba9f0076f 100644
--- a/tactics/equality.ml
+++ b/tactics/equality.ml
@@ -671,7 +671,7 @@ let existT_pattern = put_pat mmk "(existT ?1 ?2 ?3 ?4)"
let constant dir s =
Declare.global_absolute_reference
- (make_path ("Init"::dir) (id_of_string s) CCI)
+ (make_path ("Coq"::"Init"::dir) (id_of_string s) CCI)
let build_sigma_set () =
{ proj1 = constant ["Specif"] "projS1";
diff --git a/tactics/tactics.ml b/tactics/tactics.ml
index b1eb7b6efd..9dd71b75d2 100644
--- a/tactics/tactics.ml
+++ b/tactics/tactics.ml
@@ -1525,10 +1525,11 @@ let contradiction_on_hyp id gl =
error "Not a contradiction"
let constant dir s =
- Declare.global_absolute_reference (make_path dir (id_of_string s) CCI)
+ Declare.global_absolute_reference
+ (make_path ("Coq"::"Init"::dir) (id_of_string s) CCI)
-let coq_False = lazy (constant ["Init";"Logic"] "False")
-let coq_not = lazy (constant ["Init";"Logic"] "not")
+let coq_False = lazy (constant ["Logic"] "False")
+let coq_not = lazy (constant ["Logic"] "not")
(* Absurd *)
let absurd c gls =