aboutsummaryrefslogtreecommitdiff
path: root/parsing
diff options
context:
space:
mode:
authorThéo Zimmermann2017-06-12 11:08:12 +0200
committerThéo Zimmermann2017-06-12 11:08:12 +0200
commit2253d2eb4f892f932332358be8537fdb5552ef87 (patch)
tree78825c9f5c9db43fc1e1b03ca26ba73cbdd98cfd /parsing
parentfaa064c746e20a12b3c8f792f69537b18e387be6 (diff)
Remove Show Implicit Arguments command.
The command has been broken for 15 years. It is basically dead code. Its former behavior can be mimicked with Set Printing Implicit. Show.
Diffstat (limited to 'parsing')
-rw-r--r--parsing/g_proofs.ml42
1 files changed, 0 insertions, 2 deletions
diff --git a/parsing/g_proofs.ml4 b/parsing/g_proofs.ml4
index e2d0aed73a..8c270d8024 100644
--- a/parsing/g_proofs.ml4
+++ b/parsing/g_proofs.ml4
@@ -64,8 +64,6 @@ GEXTEND Gram
| IDENT "Show" -> VernacShow (ShowGoal OpenSubgoals)
| IDENT "Show"; n = natural -> VernacShow (ShowGoal (NthGoal n))
| IDENT "Show"; id = ident -> VernacShow (ShowGoal (GoalId id))
- | IDENT "Show"; IDENT "Implicit"; IDENT "Arguments"; n = OPT natural ->
- VernacShow (ShowGoalImplicitly n)
| IDENT "Show"; IDENT "Node" -> VernacShow ShowNode
| IDENT "Show"; IDENT "Script" -> VernacShow ShowScript
| IDENT "Show"; IDENT "Existentials" -> VernacShow ShowExistentials