aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
-rw-r--r--dev/base_include2
-rw-r--r--dev/include4
2 files changed, 4 insertions, 2 deletions
diff --git a/dev/base_include b/dev/base_include
index 829c5ea61..792330726 100644
--- a/dev/base_include
+++ b/dev/base_include
@@ -169,7 +169,7 @@ open Declarations;;
let constbody_of_string s =
let b = Global.lookup_constant (Nametab.locate_constant (qualid_of_sp (path_of_string s))) in
- Util.out_some b.const_body;;
+ Option.get b.const_body;;
(* Get the current goal *)
diff --git a/dev/include b/dev/include
index 1fc82be83..7d0bfdca5 100644
--- a/dev/include
+++ b/dev/include
@@ -1,6 +1,8 @@
(* File to include to install the pretty-printers in the ocaml toplevel *)
+(* clflags.cmi (a ocaml compilation by-product) must be in the library path *)
+Clflags.recursive_types := true;;
#cd ".";;
#use "base_include";;
@@ -17,7 +19,7 @@
#install_printer (* goal *) ppgoal;;
#install_printer (* sigma goal *) ppsigmagoal;;
#install_printer (* proof *) pproof;;
-#install_printer (* metaset.t *) ppmeta;;
+#install_printer (* metaset.t *) ppmetas;;
#install_printer (* evar_map *) ppevm;;
#install_printer (* evar_defs *) ppevd;;
#install_printer (* clenv *) ppclenv;;