aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorherbelin2004-07-16 16:13:53 +0000
committerherbelin2004-07-16 16:13:53 +0000
commit08296b49c6c4b1c53b1f65abba071ac3ed3dddb8 (patch)
tree1cc5a5a96b4eb0daff4acf1fe54f1b992c1acd0c
parent4c91b0075850a5cd245a7c5917d2e036afa18c13 (diff)
Abstraction vis a vis de dummy_loc
git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/coq/trunk@5915 85f007b7-540e-0410-9357-904b9bb8a0f7
-rw-r--r--tactics/tacinterp.ml2
1 files changed, 1 insertions, 1 deletions
diff --git a/tactics/tacinterp.ml b/tactics/tacinterp.ml
index 4a395fa31e..4996687850 100644
--- a/tactics/tacinterp.ml
+++ b/tactics/tacinterp.ml
@@ -252,7 +252,7 @@ let _ =
if not !Options.v7 then
(let nocl = {onhyps=Some[];onconcl=true; concl_occs=[]} in
List.iter
- (fun (s,t) -> add_primitive_tactic s (TacAtom((0,0),t)))
+ (fun (s,t) -> add_primitive_tactic s (TacAtom(dummy_loc,t)))
[ "red", TacReduce(Red false,nocl);
"hnf", TacReduce(Hnf,nocl);
"simpl", TacReduce(Simpl None,nocl);