aboutsummaryrefslogtreecommitdiff
path: root/doc/changelog
diff options
context:
space:
mode:
authorJason Gross2019-09-19 16:31:33 -0400
committerJason Gross2019-11-26 14:14:04 -0500
commit8d9afb9c459ed7affdf6c0752ff6397e0281e0c3 (patch)
tree4f3efc331b48d3068e8e9b340e7ae46db56e4c26 /doc/changelog
parentb09444fdaee1cf608dd40465d5e400fbd46ef6ad (diff)
Remove `rapply` tactic notation in favor of just the tactic
This increases backwards compatibility. If desired, we can add a tactic notation to simplify the spec of `rapply` in the future if we want.
Diffstat (limited to 'doc/changelog')
-rw-r--r--doc/changelog/04-tactics/10760-more-rapply.rst14
1 files changed, 1 insertions, 13 deletions
diff --git a/doc/changelog/04-tactics/10760-more-rapply.rst b/doc/changelog/04-tactics/10760-more-rapply.rst
index e11a93d654..2815f8af8a 100644
--- a/doc/changelog/04-tactics/10760-more-rapply.rst
+++ b/doc/changelog/04-tactics/10760-more-rapply.rst
@@ -3,17 +3,5 @@
rare cases where users were relying on :tacn:`rapply` inserting
exactly 15 underscores and no more, due to the lemma having a
completely unspecified codomain (and thus allowing for any number of
- underscores), the tactic will now instead loop. Additional
- incompatibility may occur in cases where it was important to
- interpret the lemma passed in to :tacn:`rapply` as a :g:`constr`
- (thus failing on unresolved holes and resolving typeclasses before
- adding arguments) before refining with it. Users may work around
- this by replacing all invocations of :tacn:`rapply` with the
- qualified :g:`Tactics.rapply` to get the underlying tactic rather
- than the tactic notation. Finally, any users who defined their own
- tactic :tacn:`rapply` and also imported :g:`Coq.Program.Tactics` may
- see incompatibilities due to the fact that :g:`Coq.Program.Tactics`
- now defines an :tacn:`rapply` as a :cmd:`Tactic Notation`. Users
- can work around this by defining their :tacn:`rapply` as a
- :cmd:`Tactic Notation` as well. (`#10760
+ underscores), the tactic will now instead loop. (`#10760
<https://github.com/coq/coq/pull/10760>`_, by Jason Gross)