aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--tactics/auto.ml4
1 files changed, 2 insertions, 2 deletions
diff --git a/tactics/auto.ml b/tactics/auto.ml
index 953f2f74a8..aeb0cfb595 100644
--- a/tactics/auto.ml
+++ b/tactics/auto.ml
@@ -475,7 +475,7 @@ let fmt_hint_list_for_head c =
[<'sTR "No hint declared for :"; pr_ref_label c >]
else
hOV 0
- [< 'sTR"For "; pr_ref_label c; 'sTR" -> ";
+ [< 'sTR"For "; pr_ref_label c; 'sTR" -> "; 'fNL;
prlist (fun (name,db,hintlist) ->
[< 'sTR " In the database "; 'sTR name; 'sTR " :"; 'fNL;
fmt_hint_list hintlist >])
@@ -535,7 +535,7 @@ let print_hint_db db =
Hint_db.iter
(fun head hintlist ->
mSG (hOV 0
- [< 'sTR "For "; pr_ref_label head; 'sTR " -> ";
+ [< 'sTR "For "; pr_ref_label head; 'sTR " -> ";
fmt_hint_list hintlist; 'fNL >]))
db