diff options
author | Hugo Herbelin <Hugo.Herbelin@inria.fr> | 2015-11-10 18:17:37 +0100 |
---|---|---|
committer | Hugo Herbelin <Hugo.Herbelin@inria.fr> | 2015-11-10 18:18:14 +0100 |
commit | e67760138af866b788db7b43a8e93c5f65a9a84e (patch) | |
tree | c3fed35702c34dd5837818cadd50f2d3357c6e6f /theories | |
parent | d57e30cfe8f68987ed216415079f4dab42065408 (diff) |
Updating Compat85.v after bd1c97653 on bracketing last or-and
introduction pattern by default.
Diffstat (limited to 'theories')
-rw-r--r-- | theories/Compat/Coq85.v | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/theories/Compat/Coq85.v b/theories/Compat/Coq85.v index 1622f2aed..7ce04a662 100644 --- a/theories/Compat/Coq85.v +++ b/theories/Compat/Coq85.v @@ -7,3 +7,10 @@ (************************************************************************) (** Compatibility file for making Coq act similar to Coq v8.5 *) + +(* In 8.5, "intros [|]", taken e.g. on a goal "A\/B->C", does not + behave as "intros [H|H]" but leave instead hypotheses quantified in + the goal, here producing subgoals A->C and B->C. *) + +Unset Bracketing Last Introduction Pattern. + |