aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHugo Herbelin2014-12-06 15:51:40 +0100
committerHugo Herbelin2014-12-07 15:14:38 +0100
commit3e5b9ab9f75e4102068230769861fc875be0e306 (patch)
tree2444de98fb62e84db814b4838457f6146fd85b23
parente4f9b2a8af4489b9d7fb27dcd2f919a54491c402 (diff)
Improving e11854569b8 on when to print goals in coqtop mode.
-rw-r--r--stm/stm.ml2
1 files changed, 1 insertions, 1 deletions
diff --git a/stm/stm.ml b/stm/stm.ml
index 94987bdb91..6babc3e42f 100644
--- a/stm/stm.ml
+++ b/stm/stm.ml
@@ -2324,7 +2324,7 @@ let interp verb (_,e as lexpr) =
let print_goals =
verb && match clas with
| VtQuery _, _ -> false
- | VtProofStep _, _ -> true
+ | (VtProofStep _ | VtStm (VtBack _, _)), _ -> true
| _ -> not !Flags.coqtop_ui || !Flags.print_emacs in
try finish ~print_goals ()
with e ->