aboutsummaryrefslogtreecommitdiffhomepage
path: root/translate/pptacticnew.ml
diff options
context:
space:
mode:
Diffstat (limited to 'translate/pptacticnew.ml')
-rw-r--r--translate/pptacticnew.ml3
1 files changed, 2 insertions, 1 deletions
diff --git a/translate/pptacticnew.ml b/translate/pptacticnew.ml
index 7b9ba49d8..a0ef088f7 100644
--- a/translate/pptacticnew.ml
+++ b/translate/pptacticnew.ml
@@ -678,7 +678,8 @@ let rec pr_tac env inherited tac =
str "first" ++ spc () ++ pr_seq_body (pr_tac env ltop) tl, llet
| TacSolve tl ->
str "solve" ++ spc () ++ pr_seq_body (pr_tac env ltop) tl, llet
- | TacId -> str "idtac", latom
+ | TacId "" -> str "idtac", latom
+ | TacId s -> str "idtac" ++ (qsnew s), latom
| TacAtom (loc,t) ->
pr_with_comments loc (hov 1 (pr_atom1 env t)), ltatom
| TacArg(Tacexp e) -> pr_tac0 env e, latom