aboutsummaryrefslogtreecommitdiff
path: root/mathcomp
diff options
context:
space:
mode:
authorEnrico2017-04-17 20:55:26 +0200
committerGitHub2017-04-17 20:55:26 +0200
commita9ec3525dd993f9d55afa897fe10bf2fc0a4b030 (patch)
tree9b602cbabecd670d312809ff12ea3ae2f171b250 /mathcomp
parent954284b661a7e8e01195c92388ae053108222cee (diff)
parentabf8a848e24e8cd5747be801ae940c3503cf02c0 (diff)
Merge pull request #120 from SkySkimmer/remove-vernacerror
Coq PR #565: G_vernac.subgoal_command is replaced by query_command
Diffstat (limited to 'mathcomp')
-rw-r--r--mathcomp/ssreflect/plugin/trunk/ssreflect.ml46
1 files changed, 3 insertions, 3 deletions
diff --git a/mathcomp/ssreflect/plugin/trunk/ssreflect.ml4 b/mathcomp/ssreflect/plugin/trunk/ssreflect.ml4
index b6ba5ec..b5c54dc 100644
--- a/mathcomp/ssreflect/plugin/trunk/ssreflect.ml4
+++ b/mathcomp/ssreflect/plugin/trunk/ssreflect.ml4
@@ -1748,9 +1748,9 @@ GEXTEND Gram
| "*"; tac = ssrtclarg -> ssrtac_expr !@loc "tclstar" [gen_tclarg tac]
] ];
tactic_mode: [
- [ "+"; tac = G_vernac.subgoal_command -> tac None
- | "-"; tac = G_vernac.subgoal_command -> tac None
- | "*"; tac = G_vernac.subgoal_command -> tac None
+ [ "+"; tac = G_vernac.query_command -> tac None
+ | "-"; tac = G_vernac.query_command -> tac None
+ | "*"; tac = G_vernac.query_command -> tac None
] ];
END