diff options
| author | Théo Zimmermann | 2017-06-12 11:02:13 +0200 |
|---|---|---|
| committer | Théo Zimmermann | 2017-06-12 11:02:13 +0200 |
| commit | faa064c746e20a12b3c8f792f69537b18e387be6 (patch) | |
| tree | 7f2b03f6507f6f10dc482e4b1cea3d5f0223d92d | |
| parent | 79c42e22dd5106dcb85229ceec75331029ab5486 (diff) | |
Remove Show Goal "uid" command.
Introduced for Proof-General but unused at the current time,
undocumented and can raise anomalies.
| -rw-r--r-- | parsing/g_proofs.ml4 | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/parsing/g_proofs.ml4 b/parsing/g_proofs.ml4 index a3f9793bbd..e2d0aed73a 100644 --- a/parsing/g_proofs.ml4 +++ b/parsing/g_proofs.ml4 @@ -64,9 +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 "Goal" -> VernacShow (ShowGoal (GoalId (Names.Id.of_string "Goal"))) - | IDENT "Show"; IDENT "Goal"; n = string -> - VernacShow (ShowGoal (GoalUid n)) | IDENT "Show"; IDENT "Implicit"; IDENT "Arguments"; n = OPT natural -> VernacShow (ShowGoalImplicitly n) | IDENT "Show"; IDENT "Node" -> VernacShow ShowNode |
