aboutsummaryrefslogtreecommitdiffhomepage
path: root/contrib/xml
diff options
context:
space:
mode:
authorGravatar coq <coq@85f007b7-540e-0410-9357-904b9bb8a0f7>2002-10-07 16:56:17 +0000
committerGravatar coq <coq@85f007b7-540e-0410-9357-904b9bb8a0f7>2002-10-07 16:56:17 +0000
commit02ae9a0b28366372c9eaad1c25428c65314e6fcb (patch)
tree3526dd0b974d94975edab48075eb6b8117ff2ecb /contrib/xml
parentfb8c46171399af936caa3fbab8eff0cfc06ec94d (diff)
Lazy manuelles dans le code
git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/coq/trunk@3100 85f007b7-540e-0410-9357-904b9bb8a0f7
Diffstat (limited to 'contrib/xml')
-rw-r--r--contrib/xml/xmlcommand.ml44
1 files changed, 2 insertions, 2 deletions
diff --git a/contrib/xml/xmlcommand.ml4 b/contrib/xml/xmlcommand.ml4
index 8710a9e1f..5ca89dd3f 100644
--- a/contrib/xml/xmlcommand.ml4
+++ b/contrib/xml/xmlcommand.ml4
@@ -740,7 +740,7 @@ let print (_,qid as locqid) fn =
match val0 with
None -> print_axiom id typ [] hyps env inner_types
| Some lc ->
- let c = Lazy.force_val lc in
+ let c = Declarations.force lc in
print_definition id c typ [] hyps env inner_types
end
| Ln.IndRef (kn,_) ->
@@ -859,7 +859,7 @@ let print_object lobj id (sp,kn) dn fv env =
match val0 with
None -> print_axiom id typ fv hyps env inner_types
| Some lc ->
- let c = Lazy.force_val lc in
+ let c = Declarations.force lc in
print_definition id c typ fv hyps env inner_types
end
| "INDUCTIVE" ->