aboutsummaryrefslogtreecommitdiffhomepage
path: root/library
diff options
context:
space:
mode:
authorGravatar filliatr <filliatr@85f007b7-540e-0410-9357-904b9bb8a0f7>2001-03-06 16:25:58 +0000
committerGravatar filliatr <filliatr@85f007b7-540e-0410-9357-904b9bb8a0f7>2001-03-06 16:25:58 +0000
commitd06d546cd9ce633b498dae647fd041cc290ca91d (patch)
tree9af5f1423584f914574e03aab641aa29d2fcc276 /library
parent9364feb6d0b3ea51b864870a4adc0eb707314524 (diff)
on gele apres un Require => meilleures performances memoire, en particulier pour Proof General
git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/coq/trunk@1433 85f007b7-540e-0410-9357-904b9bb8a0f7
Diffstat (limited to 'library')
-rw-r--r--library/library.ml3
1 files changed, 2 insertions, 1 deletions
diff --git a/library/library.ml b/library/library.ml
index d1e162aff..ba41615a9 100644
--- a/library/library.ml
+++ b/library/library.ml
@@ -191,7 +191,8 @@ let require_module spec name fileopt export =
| None -> name
| Some f -> f
in
- add_anonymous_leaf (in_require (name,file,export))
+ add_anonymous_leaf (in_require (name,file,export));
+ add_frozen_state ()
(*s [save_module s] saves the module [m] to the disk. *)