diff options
author | Samuel Mimram <smimram@debian.org> | 2008-07-25 15:12:53 +0200 |
---|---|---|
committer | Samuel Mimram <smimram@debian.org> | 2008-07-25 15:12:53 +0200 |
commit | a0cfa4f118023d35b767a999d5a2ac4b082857b4 (patch) | |
tree | dabcac548e299fee1da464c93b3dba98484f45b1 /dev/include | |
parent | 2281410e38ef99d025ea77194585a9bc019fdaa9 (diff) |
Imported Upstream version 8.2~beta3+dfsgupstream/8.2.beta3+dfsg
Diffstat (limited to 'dev/include')
-rw-r--r-- | dev/include | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/dev/include b/dev/include index 42d2a017..ccb75edd 100644 --- a/dev/include +++ b/dev/include @@ -1,9 +1,17 @@ (* 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. + On Debian, install ocaml-compiler-libs, and uncomment the following: + #directory "+compiler-libs/utils";; +*) + +(* Clflags.recursive_types := true;;*) #cd ".";; #use "base_include";; +#install_printer (* pp_stdcmds *) pppp;; + #install_printer (* pattern *) pppattern;; #install_printer (* rawconstr *) pprawconstr;; @@ -17,6 +25,7 @@ #install_printer (* goal *) ppgoal;; #install_printer (* sigma goal *) ppsigmagoal;; #install_printer (* proof *) pproof;; +#install_printer (* metaset.t *) ppmetas;; #install_printer (* evar_map *) ppevm;; #install_printer (* evar_defs *) ppevd;; #install_printer (* clenv *) ppclenv;; |