aboutsummaryrefslogtreecommitdiff
path: root/src/Util/Tactics/Revert.v
diff options
context:
space:
mode:
authorGravatar Jason Gross <jgross@mit.edu>2017-05-11 13:38:47 -0400
committerGravatar Jason Gross <jgross@mit.edu>2017-05-11 13:38:47 -0400
commit7146036f5a4555840a75b1fb564ee3c1b54623dc (patch)
treeded017dae3c8f0fb62f173d6f9baab338773a5e4 /src/Util/Tactics/Revert.v
parentdf5218b25d73bc95becc6d1c9db124951dccd925 (diff)
s/appcontext/context/
They mean the same thing since 8.5, and appcontext is deprecated.
Diffstat (limited to 'src/Util/Tactics/Revert.v')
-rw-r--r--src/Util/Tactics/Revert.v4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Util/Tactics/Revert.v b/src/Util/Tactics/Revert.v
index 5f549025d..78c94f956 100644
--- a/src/Util/Tactics/Revert.v
+++ b/src/Util/Tactics/Revert.v
@@ -3,8 +3,8 @@ Ltac revert_last_nondep :=
match goal with
| [ H : _ |- _ ]
=> lazymatch goal with
- | [ H' : appcontext[H] |- _ ] => fail
- | [ |- appcontext[H] ] => fail
+ | [ H' : context[H] |- _ ] => fail
+ | [ |- context[H] ] => fail
| _ => idtac
end;
revert H