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 /plugins/field | |
| 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 'plugins/field')
| -rw-r--r-- | plugins/field/field.ml4 | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/plugins/field/field.ml4 b/plugins/field/field.ml4 index 2b4651dfb9..7ac5f4e89e 100644 --- a/plugins/field/field.ml4 +++ b/plugins/field/field.ml4 @@ -65,7 +65,6 @@ let subst_addfield (_,subst,(typ,th as obj)) = let th' = subst_mps subst th in if typ' == typ && th' == th then obj else (typ',th') -let export_addfield x = Some x (* Declaration of the Add Field library object *) let (in_addfield,out_addfield)= @@ -73,8 +72,7 @@ let (in_addfield,out_addfield)= Libobject.open_function = (fun i o -> if i=1 then cache_addfield o); Libobject.cache_function = cache_addfield; Libobject.subst_function = subst_addfield; - Libobject.classify_function = (fun a -> Libobject.Substitute a); - Libobject.export_function = export_addfield } + Libobject.classify_function = (fun a -> Libobject.Substitute a)} (* Adds a theory to the table *) let add_field a aplus amult aone azero aopp aeq ainv aminus_o adiv_o rth |
