aboutsummaryrefslogtreecommitdiffhomepage
path: root/tactics/auto.ml
diff options
context:
space:
mode:
authorGravatar Hugo Herbelin <Hugo.Herbelin@inria.fr>2016-10-14 20:17:48 +0200
committerGravatar Hugo Herbelin <Hugo.Herbelin@inria.fr>2016-11-19 17:43:25 +0100
commit1559f734060e49fe09d7221f63dd66e8e7d565a4 (patch)
tree6f7317ec11a7f49d32fb5c03f717775b6ed2c671 /tactics/auto.ml
parent80cfb61c8c497a2d33a6b47fcdaa9d071223a502 (diff)
Tests for info/debug auto/eauto.
This is while waiting for a deeper uniformization of auto, eauto, and typeclasses eauto. Incidentally includes a little fix in harmonizing auto/eauto printing.
Diffstat (limited to 'tactics/auto.ml')
-rw-r--r--tactics/auto.ml2
1 files changed, 1 insertions, 1 deletions
diff --git a/tactics/auto.ml b/tactics/auto.ml
index d4251555d..7558a707e 100644
--- a/tactics/auto.ml
+++ b/tactics/auto.ml
@@ -259,7 +259,7 @@ and erase_subtree depth = function
| (d,_) :: l -> if Int.equal d depth then l else erase_subtree depth l
let pr_info_atom (d,pp) =
- str (String.make d ' ') ++ pp () ++ str "."
+ str (String.make (d-1) ' ') ++ pp () ++ str "."
let pr_info_trace = function
| (Info,_,{contents=(d,Some pp)::l}) ->