aboutsummaryrefslogtreecommitdiff
path: root/src/Util/Tactics/ChangeInAll.v
diff options
context:
space:
mode:
Diffstat (limited to 'src/Util/Tactics/ChangeInAll.v')
-rw-r--r--src/Util/Tactics/ChangeInAll.v7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/Util/Tactics/ChangeInAll.v b/src/Util/Tactics/ChangeInAll.v
new file mode 100644
index 000000000..865a723da
--- /dev/null
+++ b/src/Util/Tactics/ChangeInAll.v
@@ -0,0 +1,7 @@
+(** Work around "Cannot create self-referring hypothesis" coming from
+ [change x with y in *] *)
+Local Ltac change_in_all from to :=
+ change from with to;
+ repeat match goal with
+ | [ H : _ |- _ ] => progress change from with to in H
+ end.