diff options
| author | glondu | 2009-09-17 15:58:38 +0000 |
|---|---|---|
| committer | glondu | 2009-09-17 15:58:38 +0000 |
| commit | f8a790f577366f74645d15e767ce827dfa1f0908 (patch) | |
| tree | 1a0482bea0ff9a62525df9a5d73a6bc4dfe5c3d3 /proofs/redexpr.ml | |
| parent | 61ccbc81a2f3b4662ed4a2bad9d07d2003dda3a2 (diff) | |
Remove useless Liboject.export_function field
git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/coq/trunk@12338 85f007b7-540e-0410-9357-904b9bb8a0f7
Diffstat (limited to 'proofs/redexpr.ml')
| -rw-r--r-- | proofs/redexpr.ml | 9 |
1 files changed, 1 insertions, 8 deletions
diff --git a/proofs/redexpr.ml b/proofs/redexpr.ml index 880efc2d04..d12b5f8e5c 100644 --- a/proofs/redexpr.ml +++ b/proofs/redexpr.ml @@ -71,12 +71,6 @@ let map_strategy f l = if ql'=[] then str else (lev,ql')::str) l [] in if l'=[] then None else Some (false,l') -let export_strategy (local,obj) = - if local then None else - map_strategy (function - EvalVarRef _ -> None - | EvalConstRef _ as q -> Some q) obj - let classify_strategy (local,_ as obj) = if local then Dispose else Substitute obj @@ -97,8 +91,7 @@ let (inStrategy,outStrategy) = load_function = (fun _ (_,obj) -> cache_strategy obj); subst_function = subst_strategy; discharge_function = discharge_strategy; - classify_function = classify_strategy; - export_function = export_strategy } + classify_function = classify_strategy } let set_strategy local str = |
