diff options
author | Enrico Tassi <Enrico.Tassi@inria.fr> | 2015-02-14 18:35:04 +0100 |
---|---|---|
committer | Enrico Tassi <Enrico.Tassi@inria.fr> | 2015-02-14 18:50:58 +0100 |
commit | 4a53151f846476f2fbe038a4ecb8e84256a26ba9 (patch) | |
tree | 8b37e319015557cbec25b6058d366e4abbc74c94 /intf | |
parent | 9c5db70b891bf6c3e173a31d4e8761e586c7814a (diff) |
Abstract: "Qed export ident, .., ident" to preserve v8.4 behavior
Of course such proofs cannot be processed asynchronously
Diffstat (limited to 'intf')
-rw-r--r-- | intf/vernacexpr.mli | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/intf/vernacexpr.mli b/intf/vernacexpr.mli index 3f2d002c7..07891d0b4 100644 --- a/intf/vernacexpr.mli +++ b/intf/vernacexpr.mli @@ -135,7 +135,7 @@ type search_restriction = type rec_flag = bool (* true = Rec; false = NoRec *) type verbose_flag = bool (* true = Verbose; false = Silent *) -type opacity_flag = bool (* true = Opaque; false = Transparent *) +type opacity_flag = Opaque of lident list option | Transparent type coercion_flag = bool (* true = AddCoercion false = NoCoercion *) type instance_flag = bool option (* Some true = Backward instance; Some false = Forward instance, None = NoInstance *) |