diff options
| author | Hugo Herbelin | 2014-08-21 13:08:08 +0200 |
|---|---|---|
| committer | Hugo Herbelin | 2014-09-12 10:47:32 +0200 |
| commit | 8326639ef45b22cb066f65d17f27a77a678eb694 (patch) | |
| tree | 911e1ea019b7dc3412071743573590053e181f2d /printing | |
| parent | d542746c848d4795d4af97874a30fa5e98c8a6b2 (diff) | |
Add syntax [id]: to apply tactic to goal named id.
Diffstat (limited to 'printing')
| -rw-r--r-- | printing/ppvernac.ml | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/printing/ppvernac.ml b/printing/ppvernac.ml index 930166524c..b7ac274b7f 100644 --- a/printing/ppvernac.ml +++ b/printing/ppvernac.ml @@ -769,6 +769,7 @@ let rec pr_vernac = function | VernacSolve (i,tac,deftac) -> let pr_goal_selector = function | SelectNth i -> int i ++ str":" + | SelectId id -> pr_id id ++ str":" | SelectAll -> str"all" ++ str":" | SelectAllParallel -> str"par" in |
