aboutsummaryrefslogtreecommitdiffhomepage
path: root/tactics/newtauto.ml4
diff options
context:
space:
mode:
authorGravatar herbelin <herbelin@85f007b7-540e-0410-9357-904b9bb8a0f7>2003-04-07 17:19:41 +0000
committerGravatar herbelin <herbelin@85f007b7-540e-0410-9357-904b9bb8a0f7>2003-04-07 17:19:41 +0000
commit928287134ab9dd23258c395589f8633e422e939f (patch)
tree192971793635b1057b78004b14df4ad5dfac9561 /tactics/newtauto.ml4
parentc4ef643444acecdb4c08a74f37b9006ae060c5af (diff)
Globalisation des noms de tactiques dans les définitions de tactiques
pour compatibilité avec les modules. Globalisation partielle des invocations de tactiques hors définitions (partielle car noms des Intros/Assert/Inversion/... non connus). git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/coq/trunk@3857 85f007b7-540e-0410-9357-904b9bb8a0f7
Diffstat (limited to 'tactics/newtauto.ml4')
-rw-r--r--tactics/newtauto.ml44
1 files changed, 2 insertions, 2 deletions
diff --git a/tactics/newtauto.ml4 b/tactics/newtauto.ml4
index 11958a0ea..0c8f9bb4a 100644
--- a/tactics/newtauto.ml4
+++ b/tactics/newtauto.ml4
@@ -226,12 +226,12 @@ let lfo_wrap n gl=
TACTIC EXTEND NewIntuition
[ "NewIntuition" ] -> [ newtauto true default_stac ]
- |[ "NewIntuition" tactic(t)] -> [ newtauto true (interp t) ]
+ |[ "NewIntuition" tactic(t)] -> [ newtauto true (snd t) ]
END
TACTIC EXTEND Intuition1
[ "Intuition1" ] -> [ newtauto false default_stac ]
- |[ "Intuition1" tactic(t)] -> [ newtauto false (interp t) ]
+ |[ "Intuition1" tactic(t)] -> [ newtauto false (snd t) ]
END
TACTIC EXTEND NewTauto