diff options
| author | herbelin | 2011-07-16 20:35:23 +0000 |
|---|---|---|
| committer | herbelin | 2011-07-16 20:35:23 +0000 |
| commit | 1ea5bb84b302b8518ad37cef2cb05a52e73ade56 (patch) | |
| tree | 7d5367ec017e01b7d952f7fc91f7677cf418effa /lib | |
| parent | fae8ea1520b03578aff7de10d6e59f08bb85ecb6 (diff) | |
This option disables the use of the '{| field := ... |}' notation
when printing.
Signed-off-by: Tom Prince <tom.prince@ualberta.net>
git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/coq/trunk@14284 85f007b7-540e-0410-9357-904b9bb8a0f7
Diffstat (limited to 'lib')
| -rw-r--r-- | lib/flags.ml | 2 | ||||
| -rw-r--r-- | lib/flags.mli | 1 |
2 files changed, 3 insertions, 0 deletions
diff --git a/lib/flags.ml b/lib/flags.ml index b9965af5dd..9b19efea78 100644 --- a/lib/flags.ml +++ b/lib/flags.ml @@ -34,6 +34,8 @@ let load_proofs = ref Lazy let raw_print = ref false +let record_print = ref true + (* Compatibility mode *) type compat_version = V8_2 | V8_3 diff --git a/lib/flags.mli b/lib/flags.mli index 4fd042e225..da43c86782 100644 --- a/lib/flags.mli +++ b/lib/flags.mli @@ -24,6 +24,7 @@ type load_proofs = Force | Lazy | Dont val load_proofs : load_proofs ref val raw_print : bool ref +val record_print : bool ref type compat_version = V8_2 | V8_3 val compat_version : compat_version option ref |
