diff options
| author | herbelin | 2009-08-13 19:10:11 +0000 |
|---|---|---|
| committer | herbelin | 2009-08-13 19:10:11 +0000 |
| commit | 79a25a71dd3519d8e7a6bd9f3a004c7c0da3a1b5 (patch) | |
| tree | 949401f9c40c65a0a6bb3f8aa14a97428649451a /plugins/dp | |
| parent | 6366dec0a76dbaf100907b2d4cd4da84a2ba7fef (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 'plugins/dp')
| -rw-r--r-- | plugins/dp/dp.ml | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/plugins/dp/dp.ml b/plugins/dp/dp.ml index 3a408909d0..17d41ee8b1 100644 --- a/plugins/dp/dp.ml +++ b/plugins/dp/dp.ml @@ -203,9 +203,7 @@ let () = { Summary.freeze_function = (fun () -> !globals, !globals_stack); Summary.unfreeze_function = (fun (g,s) -> globals := g; globals_stack := s); - Summary.init_function = (fun () -> ()); - Summary.survive_module = false; - Summary.survive_section = false } + Summary.init_function = (fun () -> ()) } let add_global r d = globals := Refmap.add r d !globals let mem_global r = Refmap.mem r !globals @@ -986,6 +984,4 @@ let _ = declare_summary "Dp options" init_function = (fun () -> debug := false; trace := false; timeout := 10; - prelude_files := []); - survive_module = true; - survive_section = true } + prelude_files := []) } |
