aboutsummaryrefslogtreecommitdiff
path: root/tactics
diff options
context:
space:
mode:
authorherbelin2009-08-13 19:10:11 +0000
committerherbelin2009-08-13 19:10:11 +0000
commit79a25a71dd3519d8e7a6bd9f3a004c7c0da3a1b5 (patch)
tree949401f9c40c65a0a6bb3f8aa14a97428649451a /tactics
parent6366dec0a76dbaf100907b2d4cd4da84a2ba7fef (diff)
Death of "survive_module" and "survive_section" (the first one was
only used to allow a module to be ended before the summaries were restored what can be solved by moving upwards the place where the summaries are restored). git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/coq/trunk@12275 85f007b7-540e-0410-9357-904b9bb8a0f7
Diffstat (limited to 'tactics')
-rw-r--r--tactics/auto.ml4
-rw-r--r--tactics/autorewrite.ml4
-rw-r--r--tactics/dhyp.ml4
-rw-r--r--tactics/extratactics.ml44
-rw-r--r--tactics/tacinterp.ml4
5 files changed, 5 insertions, 15 deletions
diff --git a/tactics/auto.ml b/tactics/auto.ml
index b998daa742..c62824d4b6 100644
--- a/tactics/auto.ml
+++ b/tactics/auto.ml
@@ -235,9 +235,7 @@ let unfreeze fs = searchtable := fs
let _ = Summary.declare_summary "search"
{ Summary.freeze_function = freeze;
Summary.unfreeze_function = unfreeze;
- Summary.init_function = init;
- Summary.survive_module = false;
- Summary.survive_section = false }
+ Summary.init_function = init }
(**************************************************************************)
diff --git a/tactics/autorewrite.ml b/tactics/autorewrite.ml
index 63481abde4..0d5a4ba25b 100644
--- a/tactics/autorewrite.ml
+++ b/tactics/autorewrite.ml
@@ -73,9 +73,7 @@ let _ =
Summary.declare_summary "autorewrite"
{ Summary.freeze_function = freeze;
Summary.unfreeze_function = unfreeze;
- Summary.init_function = init;
- Summary.survive_module = false;
- Summary.survive_section = false }
+ Summary.init_function = init }
let find_base bas =
try Stringmap.find bas !rewtab
diff --git a/tactics/dhyp.ml b/tactics/dhyp.ml
index be4343b4f0..c28a87f0e7 100644
--- a/tactics/dhyp.ml
+++ b/tactics/dhyp.ml
@@ -191,9 +191,7 @@ let _ =
Summary.declare_summary "destruct-hyp-concl"
{ Summary.freeze_function = freeze;
Summary.unfreeze_function = unfreeze;
- Summary.init_function = init;
- Summary.survive_module = false;
- Summary.survive_section = false }
+ Summary.init_function = init }
let forward_subst_tactic =
ref (fun _ -> failwith "subst_tactic is not installed for DHyp")
diff --git a/tactics/extratactics.ml4 b/tactics/extratactics.ml4
index c6c9bdd105..f03084d4d0 100644
--- a/tactics/extratactics.ml4
+++ b/tactics/extratactics.ml4
@@ -427,9 +427,7 @@ let _ =
declare_summary "transitivity-steps"
{ freeze_function = freeze;
unfreeze_function = unfreeze;
- init_function = init;
- survive_module = false;
- survive_section = false }
+ init_function = init }
(* Main entry points *)
diff --git a/tactics/tacinterp.ml b/tactics/tacinterp.ml
index e79174c66b..9da5678cf0 100644
--- a/tactics/tacinterp.ml
+++ b/tactics/tacinterp.ml
@@ -229,9 +229,7 @@ let _ =
Summary.declare_summary "tactic-definition"
{ Summary.freeze_function = freeze;
Summary.unfreeze_function = unfreeze;
- Summary.init_function = init;
- Summary.survive_module = false;
- Summary.survive_section = false }
+ Summary.init_function = init }
(* Tactics table (TacExtend). *)