diff options
Diffstat (limited to 'toplevel/minicoq.ml')
-rw-r--r-- | toplevel/minicoq.ml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/toplevel/minicoq.ml b/toplevel/minicoq.ml index a3b51a11..e688d50e 100644 --- a/toplevel/minicoq.ml +++ b/toplevel/minicoq.ml @@ -6,7 +6,7 @@ (* * GNU Lesser General Public License Version 2.1 *) (************************************************************************) -(* $Id: minicoq.ml 8752 2006-04-27 19:37:33Z herbelin $ *) +(* $Id: minicoq.ml 10346 2007-12-05 21:11:19Z aspiwack $ *) open Pp open Util @@ -54,7 +54,7 @@ let check c = let definition id ty c = let c = globalize [] c in - let ty = option_map (globalize []) ty in + let ty = Option.map (globalize []) ty in let ce = { const_entry_body = c; const_entry_type = ty } in let sp = make_path [] id CCI in env := add_constant sp ce (locals()) !env; |